V15: Update Backoffice NPM dependencies (#18376)

* build(deps-dev): update storybook from 8.4.7 to 8.5.6

* build(deps): update tiptap from 2.11.2 to 2.11.5

* build(deps-dev): update eslint stuff to latest

* build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13

* build(deps): update marked from 15.0.6 to 15.0.7

* build(deps-dev): update vite from 5.4.14 to 6.1.0

* build(deps-dev): update globals to 15.15.0 (eslint dependency)

* build(deps): update icon libraries to latest

* build(deps-dev): update prettier from 3.4.2 to 3.5.1

* chore: generate consts

* build(deps-dev): update test-related libraries

* feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years

* build(deps-dev): remove dependency from base64-js

* build(deps-dev): upgrade rollup dependencies

* test: disable tests for tinyce

* build(deps-dev): update @babel/core to 7.26.9

* build(deps): update storybook to latest

* build(deps-dev): update types

* build(deps-dev): update typedoc from 0.27.6 to 0.27.7

* build(deps-dev): update @rollup/plugin-commonjs to latest

* build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls)

* build: remove dependency on commonjs to build externals

* build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed

* test: reenable tinymce tests

* fix: sets a default label

this mistake was highlighted by the test runner

* test: reenable tinymce tests

* build: ignores autogenerated test file

* build: adds github error logging to icon generator

* build: log as error

* build: adds tests for generate:* scripts

* build: optimises icons with svgo to remove useless things like comments

this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
This commit is contained in:
Jacob Overgaard
2025-02-20 11:29:54 +01:00
committed by GitHub
parent 5401a85828
commit 7a7602f1bb
682 changed files with 2976 additions and 11649 deletions

View File

@@ -43,6 +43,8 @@ jobs:
- name: Check for circular dependencies
run: node devops/circular/index.js src
- run: npm run lint:errors
- run: npm run generate:tsconfig
- run: npm run generate:icons
- run: npm run build:for:cms
- run: npm run check:paths
- run: npm run generate:jsonschema:dist

View File

@@ -18,6 +18,7 @@ dist-ssr
## testing
coverage/
utils/all-umb-consts/
# Editor directories and files
.vscode/*

View File

@@ -1,6 +1,7 @@
import { readFileSync, writeFile, mkdir, rmSync } from 'fs';
import * as globModule from 'tiny-glob';
import * as pathModule from 'path';
import { optimize } from 'svgo';
const path = pathModule.default;
const getDirName = path.dirname;
@@ -14,6 +15,10 @@ const iconMapJson = `${moduleDirectory}/icon-dictionary.json`;
const lucideSvgDirectory = 'node_modules/lucide-static/icons';
const simpleIconsSvgDirectory = 'node_modules/simple-icons/icons';
const IS_GITHUB_ACTIONS = process.env.GITHUB_ACTIONS === 'true';
const errors = [];
const run = async () => {
// Empty output directory:
rmSync(iconsOutputDirectory, { recursive: true });
@@ -55,6 +60,7 @@ const collectDictionaryIcons = async () => {
icons.push(icon);
} catch (e) {
errors.push(`[Lucide] Could not load file: '${path}'`);
console.log(`[Lucide] Could not load file: '${path}'`);
}
}
@@ -86,6 +92,7 @@ const collectDictionaryIcons = async () => {
icons.push(icon);
} catch (e) {
errors.push(`[SimpleIcons] Could not load file: '${path}'`);
console.log(`[SimpleIcons] Could not load file: '${path}'`);
}
}
@@ -111,6 +118,7 @@ const collectDictionaryIcons = async () => {
icons.push(icon);
} catch (e) {
errors.push(`[Umbraco] Could not load file: '${path}'`);
console.log(`[Umbraco] Could not load file: '${path}'`);
}
}
@@ -157,7 +165,9 @@ const collectDiskIcons = async (icons) => {
const writeIconsToDisk = (icons) => {
icons.forEach((icon) => {
const content = 'export default `' + icon.svg + '`;';
const optimizedResult = optimize(icon.svg);
const content = 'export default `' + optimizedResult.data + '`;';
writeFileWithDir(icon.output, content, (err) => {
if (err) {
@@ -199,10 +209,23 @@ const generateJS = (icons) => {
const writeFileWithDir = (path, contents, cb) => {
mkdir(getDirName(path), { recursive: true }, function (err) {
if (err) return cb(err);
if (err) {
errors.push(err);
return cb(err);
}
writeFile(path, contents, cb);
});
};
run();
await run();
if (errors.length > 0) {
if (IS_GITHUB_ACTIONS) {
const msg = errors.join('\n');
console.log(`::error title=Failed to generate all icons::${msg}`);
process.exit(1);
} else {
console.error('Failed to generate all icons, please see the error log');
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -200,29 +200,28 @@
"npm": ">=10.9"
},
"dependencies": {
"@tiptap/core": "2.11.2",
"@tiptap/extension-image": "2.11.2",
"@tiptap/extension-link": "2.11.2",
"@tiptap/extension-placeholder": "2.11.2",
"@tiptap/extension-subscript": "2.11.2",
"@tiptap/extension-superscript": "2.11.2",
"@tiptap/extension-table": "2.11.2",
"@tiptap/extension-table-cell": "2.11.2",
"@tiptap/extension-table-header": "2.11.2",
"@tiptap/extension-table-row": "2.11.2",
"@tiptap/extension-text-align": "2.11.2",
"@tiptap/extension-underline": "2.11.2",
"@tiptap/pm": "2.11.2",
"@tiptap/starter-kit": "2.11.2",
"@types/diff": "^6.0.0",
"@tiptap/core": "2.11.5",
"@tiptap/extension-image": "2.11.5",
"@tiptap/extension-link": "2.11.5",
"@tiptap/extension-placeholder": "2.11.5",
"@tiptap/extension-subscript": "2.11.5",
"@tiptap/extension-superscript": "2.11.5",
"@tiptap/extension-table": "2.11.5",
"@tiptap/extension-table-cell": "2.11.5",
"@tiptap/extension-table-header": "2.11.5",
"@tiptap/extension-table-row": "2.11.5",
"@tiptap/extension-text-align": "2.11.5",
"@tiptap/extension-underline": "2.11.5",
"@tiptap/pm": "2.11.5",
"@tiptap/starter-kit": "2.11.5",
"@types/diff": "^7.0.1",
"@umbraco-ui/uui": "^1.12.2",
"@umbraco-ui/uui-css": "^1.12.1",
"base64-js": "^1.5.1",
"diff": "^7.0.0",
"dompurify": "^3.2.4",
"element-internals-polyfill": "^1.3.12",
"element-internals-polyfill": "^1.3.13",
"lit": "^3.2.1",
"marked": "^15.0.6",
"marked": "^15.0.7",
"monaco-editor": "^0.52.2",
"rxjs": "^7.8.1",
"tinymce": "^6.8.5",
@@ -230,61 +229,60 @@
"uuid": "^11.0.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/js": "^9.18.0",
"@babel/core": "^7.26.9",
"@eslint/js": "^9.20.0",
"@hey-api/openapi-ts": "^0.61.3",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.49.1",
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"@storybook/addon-a11y": "^8.5.7",
"@storybook/addon-actions": "^8.5.7",
"@storybook/addon-essentials": "^8.5.7",
"@storybook/addon-links": "^8.5.7",
"@storybook/web-components": "^8.5.7",
"@storybook/web-components-vite": "^8.5.7",
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"@web/dev-server-esbuild": "^1.0.3",
"@web/dev-server-esbuild": "^1.0.4",
"@web/dev-server-import-maps": "^0.2.1",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"babel-loader": "^9.2.1",
"cross-env": "7.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-wc": "^2.2.0",
"glob": "^11.0.1",
"globals": "^15.14.0",
"lucide-static": "^0.471.0",
"globals": "^15.15.0",
"lucide-static": "^0.473.0",
"madge": "^8.0.0",
"msw": "^1.3.2",
"playwright-msw": "^3.0.1",
"prettier": "3.4.2",
"prettier": "3.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^4.0.0",
"rollup": "^4.30.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup": "^4.34.8",
"rollup-plugin-esbuild": "^6.2.0",
"rollup-plugin-import-css": "^3.5.8",
"simple-icons": "^14.2.0",
"storybook": "^8.4.7",
"simple-icons": "^14.7.0",
"storybook": "^8.5.7",
"svgo": "^3.3.2",
"tiny-glob": "^0.2.9",
"tsc-alias": "^1.8.10",
"typedoc": "^0.27.6",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"typescript-eslint": "^8.24.1",
"typescript-json-schema": "^0.65.1",
"vite": "^5.4.14",
"vite": "^6.1.0",
"vite-plugin-static-copy": "^2.2.0",
"vite-tsconfig-paths": "^5.1.4",
"web-component-analyzer": "^2.0.0"

View File

@@ -1 +1,146 @@
export { fromByteArray } from 'base64-js';
/*
* This Source Code has been derived from Jameson Little's base64-js.
* https://github.com/beatgammit/base64-js
* SPDX-License-Identifier: MIT
* Copyright © 2014 Jameson Little.
* Modifications are licensed under the MIT License.
*/
const lookup: string[] = [];
const revLookup: number[] = [];
const Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;
const code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
for (var i = 0, len = code.length; i < len; ++i) {
lookup[i] = code[i];
revLookup[code.charCodeAt(i)] = i;
}
// Support decoding URL-safe base64 strings, as Node.js does.
// See: https://en.wikipedia.org/wiki/Base64#URL_applications
revLookup['-'.charCodeAt(0)] = 62;
revLookup['_'.charCodeAt(0)] = 63;
function getLens(b64: string) {
var len = b64.length;
if (len % 4 > 0) {
throw new Error('Invalid string. Length must be a multiple of 4');
}
// Trim off extra bytes after placeholder bytes are found
// See: https://github.com/beatgammit/base64-js/issues/42
var validLen = b64.indexOf('=');
if (validLen === -1) validLen = len;
var placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4);
return [validLen, placeHoldersLen];
}
/**
* Get the byte length of a base64 string
* base64 is 4/3 + up to two characters of the original data
* @param {string} b64 - The base64 string to get the byte length of
* @returns {number} - The byte length
*/
export function byteLength(b64: string): number {
var lens = getLens(b64);
var validLen = lens[0];
var placeHoldersLen = lens[1];
return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen;
}
function _byteLength(b64: string, validLen: number, placeHoldersLen: number) {
return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen;
}
/**
* Convert a base64 string to a byte array
* @param {string} b64 - The base64 string to convert
* @returns {Uint8Array} - The byte array
*/
export function toByteArray(b64: string): Uint8Array {
var tmp;
var lens = getLens(b64);
var validLen = lens[0];
var placeHoldersLen = lens[1];
var arr: Uint8Array = new Arr(_byteLength(b64, validLen, placeHoldersLen)) as Uint8Array;
var curByte = 0;
// if there are placeholders, only get up to the last complete 4 chars
var len = placeHoldersLen > 0 ? validLen - 4 : validLen;
var i;
for (i = 0; i < len; i += 4) {
tmp =
(revLookup[b64.charCodeAt(i)] << 18) |
(revLookup[b64.charCodeAt(i + 1)] << 12) |
(revLookup[b64.charCodeAt(i + 2)] << 6) |
revLookup[b64.charCodeAt(i + 3)];
arr[curByte++] = (tmp >> 16) & 0xff;
arr[curByte++] = (tmp >> 8) & 0xff;
arr[curByte++] = tmp & 0xff;
}
if (placeHoldersLen === 2) {
tmp = (revLookup[b64.charCodeAt(i)] << 2) | (revLookup[b64.charCodeAt(i + 1)] >> 4);
arr[curByte++] = tmp & 0xff;
}
if (placeHoldersLen === 1) {
tmp =
(revLookup[b64.charCodeAt(i)] << 10) |
(revLookup[b64.charCodeAt(i + 1)] << 4) |
(revLookup[b64.charCodeAt(i + 2)] >> 2);
arr[curByte++] = (tmp >> 8) & 0xff;
arr[curByte++] = tmp & 0xff;
}
return arr;
}
function tripletToBase64(num: number) {
return lookup[(num >> 18) & 0x3f] + lookup[(num >> 12) & 0x3f] + lookup[(num >> 6) & 0x3f] + lookup[num & 0x3f];
}
function encodeChunk(uint8: Uint8Array, start: number, end: number) {
var tmp;
var output = [];
for (var i = start; i < end; i += 3) {
tmp = ((uint8[i] << 16) & 0xff0000) + ((uint8[i + 1] << 8) & 0xff00) + (uint8[i + 2] & 0xff);
output.push(tripletToBase64(tmp));
}
return output.join('');
}
/**
* Convert a byte array to a base64 string
* @param {Uint8Array} uint8 - The byte array to convert
* @returns {string} - The base64 string
*/
export function fromByteArray(uint8: Uint8Array): string {
var tmp;
var len = uint8.length;
var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes
var parts = [];
var maxChunkLength = 16383; // must be multiple of 3
// go through the array every three bytes, we'll deal with trailing stuff later
for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength));
}
// pad the end with zeros, but make sure to not forget the extra bytes
if (extraBytes === 1) {
tmp = uint8[len - 1];
parts.push(lookup[tmp >> 2] + lookup[(tmp << 4) & 0x3f] + '==');
} else if (extraBytes === 2) {
tmp = (uint8[len - 2] << 8) + uint8[len - 1];
parts.push(lookup[tmp >> 10] + lookup[(tmp >> 4) & 0x3f] + lookup[(tmp << 2) & 0x3f] + '=');
}
return parts.join('');
}

View File

@@ -1,25 +1,18 @@
/* eslint local-rules/enforce-umbraco-external-imports: 0 */
/**
* TinyMce is a CommonJS module, but in order to make @web/test-runner happy
* we need to load it as a module and then manually register it in the browser
* we need to load it as a default and then manually register it in the browser
* as a global variable, so that we can find it and use it in our tests.
* We are also loading the default icons, so that we can use them outside of a TinyMce instance.
*
* TODO: Load the plugins that we want to use in the editor.
*/
import tinymce, { type RawEditorOptions } from 'tinymce';
// Declare a global variable to hold the TinyMCE instance
declare global {
interface Window {
tinymce: typeof tinymce;
}
}
// Load default icons making them available to everyone
import 'tinymce';
import 'tinymce/icons/default/icons.js';
import type { RawEditorOptions, TinyMCE } from 'tinymce';
const defaultConfig: RawEditorOptions = {
export const tinymce = window.tinymce;
export type * from 'tinymce';
export const defaultConfig: RawEditorOptions = {
base_url: '/umbraco/backoffice/tinymce',
};
@@ -29,5 +22,9 @@ export function renderEditor(userConfig?: RawEditorOptions) {
return tinymce.init(config);
}
export { tinymce };
export type { RawEditorOptions, AstNode, EditorEvent, Editor } from 'tinymce';
// Declare a global variable to hold the TinyMCE instance
declare global {
interface Window {
tinymce: TinyMCE;
}
}

View File

@@ -1,14 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-activity"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-activity" viewBox="0 0 24 24"><path d="M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-plus"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14" />
<path d="M12 5v14" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-plus" viewBox="0 0 24 24"><path d="M5 12h14M12 5v14"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-book-user"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M15 13a3 3 0 1 0-6 0" />
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" />
<circle cx="12" cy="8" r="2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-book-user" viewBox="0 0 24 24"><path d="M15 13a3 3 0 1 0-6 0"/><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"/><circle cx="12" cy="8" r="2"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-alarm-clock"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="13" r="8" />
<path d="M12 9v4l2 2" />
<path d="M5 3 2 6" />
<path d="m22 6-3-3" />
<path d="M6.38 18.7 4 21" />
<path d="M17.64 18.67 20 21" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-alarm-clock" viewBox="0 0 24 24"><circle cx="12" cy="13" r="8"/><path d="M12 9v4l2 2M5 3 2 6M22 6l-3-3M6.38 18.7 4 21M17.64 18.67 20 21"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-triangle-alert"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" />
<path d="M12 9v4" />
<path d="M12 17h.01" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-triangle-alert" viewBox="0 0 24 24"><path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3M12 9v4M12 17h.01"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-triangle-alert"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" />
<path d="M12 9v4" />
<path d="M12 17h.01" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-triangle-alert" viewBox="0 0 24 24"><path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3M12 9v4M12 17h.01"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-option"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M3 3h6l6 18h6" />
<path d="M14 3h7" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-option" viewBox="0 0 24 24"><path d="M3 3h6l6 18h6M14 3h7"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-anchor"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 22V8" />
<path d="M5 12H2a10 10 0 0 0 20 0h-3" />
<circle cx="12" cy="5" r="3" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-anchor" viewBox="0 0 24 24"><path d="M12 22V8M5 12H2a10 10 0 0 0 20 0h-3"/><circle cx="12" cy="5" r="3"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-app-window"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="M10 4v4" />
<path d="M2 8h20" />
<path d="M6 4v4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-app-window" viewBox="0 0 24 24"><rect width="20" height="16" x="2" y="4" rx="2"/><path d="M10 4v4M2 8h20M6 4v4"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-circle-x"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="m15 9-6 6" />
<path d="m9 9 6 6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-circle-x" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6M9 9l6 6"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-app-window"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="M10 4v4" />
<path d="M2 8h20" />
<path d="M6 4v4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-app-window" viewBox="0 0 24 24"><rect width="20" height="16" x="2" y="4" rx="2"/><path d="M10 4v4M2 8h20M6 4v4"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-app-window"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="M10 4v4" />
<path d="M2 8h20" />
<path d="M6 4v4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-app-window" viewBox="0 0 24 24"><rect width="20" height="16" x="2" y="4" rx="2"/><path d="M10 4v4M2 8h20M6 4v4"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-plane-landing"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M2 22h20" />
<path d="M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-plane-landing" viewBox="0 0 24 24"><path d="M2 22h20M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-arrow-down"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 5v14" />
<path d="m19 12-7 7-7-7" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-arrow-down" viewBox="0 0 24 24"><path d="M12 5v14M19 12l-7 7-7-7"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-arrow-left"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m12 19-7-7 7-7" />
<path d="M19 12H5" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-arrow-left" viewBox="0 0 24 24"><path d="m12 19-7-7 7-7M19 12H5"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-arrow-right"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14" />
<path d="m12 5 7 7-7 7" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-arrow-right" viewBox="0 0 24 24"><path d="M5 12h14M12 5l7 7-7 7"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-arrow-up"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m5 12 7-7 7 7" />
<path d="M12 19V5" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-arrow-up" viewBox="0 0 24 24"><path d="m5 12 7-7 7 7M12 19V5"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M371.482 115.717H140.518v149.762h230.965V115.717zM270.553 49.373h-29.105v54.502h29.105V49.373zm128.449 232.268H112.998v37.012h56.242l-38.639 143.975h30.137l38.639-143.975h113.246l38.639 143.975h30.135l-38.639-143.975h56.244v-37.012zM241.447 431.604h29.105v-96.793h-29.105v96.793z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M371.482 115.717H140.518v149.762h230.965zM270.553 49.373h-29.105v54.502h29.105zm128.449 232.268H112.998v37.012h56.242l-38.639 143.975h30.137l38.639-143.975h113.246l38.639 143.975h30.135l-38.639-143.975h56.244zM241.447 431.604h29.105v-96.793h-29.105z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M87.887 74.772v361.521h336.958V74.772H87.887zm306.318 330.879H118.544V105.399h275.661v300.252zM262.693 137.497H149.04v130.742h113.653V137.497zm104.942.521h-79.221v24.951h79.221v-24.951zm0 107.328h-79.221v24.92h79.221v-24.92zm0-53.661h-79.221v24.948h79.221v-24.948zm-1.816 107.327H147.57v24.917h218.249v-24.917zm0 53.662H147.57v24.887h218.249v-24.887z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M87.887 74.772v361.521h336.958V74.772zm306.318 330.879H118.544V105.399h275.661zM262.693 137.497H149.04v130.742h113.653zm104.942.521h-79.221v24.951h79.221zm0 107.328h-79.221v24.92h79.221zm0-53.661h-79.221v24.948h79.221zm-1.816 107.327H147.57v24.917h218.249zm0 53.662H147.57v24.887h218.249z"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-paperclip"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M13.234 20.252 21 12.3" />
<path d="m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-paperclip" viewBox="0 0 24 24"><path d="M13.234 20.252 21 12.3M16 6l-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M194.166 390.957H78.85v38.906H49.789v32.613H226.42v-32.613h-32.254zm258.881-50.733l-91.314-91.314c-8.502-8.501-20.674-11.069-31.412-7.743l-53.164-53.161 32.635-32.633-59.498-59.5-85.842 85.842 59.498 59.497 32.627-32.626 53.164 53.161c-3.33 10.738-.762 22.913 7.742 31.414l91.314 91.315c6.109 6.107 14.117 9.163 22.125 9.163s16.016-3.056 22.125-9.163c12.219-12.221 12.219-32.032 0-44.252zM141.285 191.2l73.173 73.172-23.188 23.188-73.173-73.173zM282.968 49.52l73.172 73.172-23.187 23.187-73.172-73.173z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M194.166 390.957H78.85v38.906H49.789v32.613H226.42v-32.613h-32.254zm258.881-50.733-91.314-91.314c-8.502-8.501-20.674-11.069-31.412-7.743l-53.164-53.161 32.635-32.633-59.498-59.5-85.842 85.842 59.498 59.497 32.627-32.626 53.164 53.161c-3.33 10.738-.762 22.913 7.742 31.414l91.314 91.315c6.109 6.107 14.117 9.163 22.125 9.163s16.016-3.056 22.125-9.163c12.219-12.221 12.219-32.032 0-44.252M141.285 191.2l73.173 73.172-23.188 23.188-73.173-73.173zM282.968 49.52l73.172 73.172-23.187 23.187-73.172-73.173z"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-audio-lines"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M2 10v3" />
<path d="M6 6v11" />
<path d="M10 3v18" />
<path d="M14 8v7" />
<path d="M18 5v13" />
<path d="M22 10v3" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-audio-lines" viewBox="0 0 24 24"><path d="M2 10v3M6 6v11M10 3v18M14 8v7M18 5v13M22 10v3"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-text-cursor-input"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1" />
<path d="M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5" />
<path d="M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1" />
<path d="M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7" />
<path d="M9 7v10" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-text-cursor-input" viewBox="0 0 24 24"><path d="M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7M9 7v10"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-award"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526" />
<circle cx="12" cy="8" r="6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-award" viewBox="0 0 24 24"><path d="m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"/><circle cx="12" cy="8" r="6"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-refresh-ccw"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
<path d="M3 3v5h5" />
<path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" />
<path d="M16 16h5v5" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-refresh-ccw" viewBox="0 0 24 24"><path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"/><path d="M3 3v5h5M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"/><path d="M16 16h5v5"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-refresh-ccw"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
<path d="M3 3v5h5" />
<path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" />
<path d="M16 16h5v5" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-refresh-ccw" viewBox="0 0 24 24"><path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"/><path d="M3 3v5h5M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"/><path d="M16 16h5v5"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-refresh-ccw"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
<path d="M3 3v5h5" />
<path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" />
<path d="M16 16h5v5" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-refresh-ccw" viewBox="0 0 24 24"><path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"/><path d="M3 3v5h5M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"/><path d="M16 16h5v5"/></svg>`;

View File

@@ -1,6 +1 @@
export default `<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<title>Microsoft Azure</title>
<path fill="currentColor"
d="M22.379 23.343a1.62 1.62 0 0 0 1.536-2.14v.002L17.35 1.76A1.62 1.62 0 0 0 15.816.657H8.184A1.62 1.62 0 0 0 6.65 1.76L.086 21.204a1.62 1.62 0 0 0 1.536 2.139h4.741a1.62 1.62 0 0 0 1.535-1.103l.977-2.892 4.947 3.675c.28.208.618.32.966.32m-3.084-12.531 3.624 10.739a.54.54 0 0 1-.51.713v-.001h-.03a.54.54 0 0 1-.322-.106l-9.287-6.9h4.853m6.313 7.006c.116-.326.13-.694.007-1.058L9.79 1.76a1.722 1.722 0 0 0-.007-.02h6.034a.54.54 0 0 1 .512.366l6.562 19.445a.54.54 0 0 1-.338.684" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M22.379 23.343a1.62 1.62 0 0 0 1.536-2.14v.002L17.35 1.76A1.62 1.62 0 0 0 15.816.657H8.184A1.62 1.62 0 0 0 6.65 1.76L.086 21.204a1.62 1.62 0 0 0 1.536 2.139h4.741a1.62 1.62 0 0 0 1.535-1.103l.977-2.892 4.947 3.675c.28.208.618.32.966.32m-3.084-12.531 3.624 10.739a.54.54 0 0 1-.51.713v-.001h-.03a.54.54 0 0 1-.322-.106l-9.287-6.9h4.853m6.313 7.006c.116-.326.13-.694.007-1.058L9.79 1.76l-.007-.02h6.034a.54.54 0 0 1 .512.366l6.562 19.445a.54.54 0 0 1-.338.684"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M174.229 281.794h1.243l118.312-118.312h-64.293V59.815h-55.263c-61.315 0-110.989 49.675-110.989 110.976.001 61.297 49.675 111.003 110.99 111.003zM413.64 88.691L151.338 351.024l22.923 22.925 49.578-49.611 49.608 49.611 22.923-22.943-49.61-49.573 19.654-19.639h78.061c20.764 0 37.574-16.827 37.574-37.573v-78.092l45.031-44.996h21.222V88.691H413.64zm-84.863 283.457c-22.01 0-39.832 17.854-39.832 39.836 0 22.006 17.822 39.828 39.832 39.828s39.832-17.822 39.832-39.828c0-21.981-17.822-39.836-39.832-39.836zm-211.744 0c-22.008 0-39.83 17.854-39.83 39.836 0 22.006 17.822 39.828 39.83 39.828 22.01 0 39.832-17.822 39.832-39.828 0-21.981-17.822-39.836-39.832-39.836z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M174.229 281.794h1.243l118.312-118.312h-64.293V59.815h-55.263c-61.315 0-110.989 49.675-110.989 110.976.001 61.297 49.675 111.003 110.99 111.003M413.64 88.691 151.338 351.024l22.923 22.925 49.578-49.611 49.608 49.611 22.923-22.943-49.61-49.573 19.654-19.639h78.061c20.764 0 37.574-16.827 37.574-37.573v-78.092l45.031-44.996h21.222V88.691zm-84.863 283.457c-22.01 0-39.832 17.854-39.832 39.836 0 22.006 17.822 39.828 39.832 39.828s39.832-17.822 39.832-39.828c0-21.981-17.822-39.836-39.832-39.836m-211.744 0c-22.008 0-39.83 17.854-39.83 39.836 0 22.006 17.822 39.828 39.83 39.828 22.01 0 39.832-17.822 39.832-39.828 0-21.981-17.822-39.836-39.832-39.836"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-delete"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z" />
<path d="m12 9 6 6" />
<path d="m18 9-6 6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-delete" viewBox="0 0 24 24"><path d="M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zM12 9l6 6M18 9l-6 6"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-circle-plus"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="M8 12h8" />
<path d="M12 8v8" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-circle-plus" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M8 12h8M12 8v8"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M255.251 176.839c-43.353 0-78.501 35.146-78.501 78.503 0 43.354 35.148 78.504 78.501 78.504 43.358 0 78.505-35.15 78.505-78.504 0-43.357-35.147-78.503-78.505-78.503zM267.77 307.96h-20.948v-71.745h-24.466v-13.917c6.44-.292 10.95-.72 13.525-1.293 4.104-.907 7.444-2.724 10.021-5.453 1.766-1.866 3.102-4.35 4.008-7.46.525-1.863.786-3.252.786-4.16h17.075V307.96z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M255.251 176.839c-43.353 0-78.501 35.146-78.501 78.503 0 43.354 35.148 78.504 78.501 78.504 43.358 0 78.505-35.15 78.505-78.504 0-43.357-35.147-78.503-78.505-78.503M267.77 307.96h-20.948v-71.745h-24.466v-13.917c6.44-.292 10.95-.72 13.525-1.293q6.156-1.36 10.021-5.453 2.649-2.797 4.008-7.46.787-2.796.786-4.16h17.075V307.96z"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-circle-minus"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="M8 12h8" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-circle-minus" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M8 12h8"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-ban"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="m4.9 4.9 14.2 14.2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-ban" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="m4.9 4.9 14.2 14.2"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-dribbble"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" />
<path d="M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32" />
<path d="M8.56 2.75c4.37 6 6 9.42 8 17.72" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-dribbble" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"/><path d="M8.56 2.75c4.37 6 6 9.42 8 17.72"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M454.212 145.442l-87.051-87.068c-9.419-9.421-24.723-9.421-34.173.031l-73.154 73.186 121.193 121.194 73.185-73.183c9.453-9.423 9.453-24.728 0-34.16zM149.63 241.731L270.888 362.96l92.514-92.531-121.192-121.21-92.58 92.512zm73.219 20.868c-4.872 4.868-12.822 4.868-17.724 0-4.94-4.907-4.94-12.855 0-17.777 4.902-4.907 12.853-4.907 17.724 0 4.905 4.921 4.905 12.869 0 17.777zm67.333-13.019c4.904-4.907 12.852-4.907 17.757 0 4.904 4.906 4.904 12.854 0 17.754-4.905 4.906-12.853 4.906-17.757 0-4.872-4.9-4.872-12.848 0-17.754zm-22.403 57.909c-4.871 4.908-12.852 4.908-17.756 0-4.904-4.883-4.904-12.846 0-17.754 4.904-4.905 12.885-4.905 17.756 0 4.907 4.909 4.907 12.871 0 17.754zm-4.773-102.825a12.523 12.523 0 0 1 .035 17.755c-4.908 4.89-12.886 4.89-17.759 0-4.906-4.907-4.906-12.85 0-17.755 4.873-4.905 12.851-4.905 17.724 0zM58.816 332.561c-9.419 9.431-9.419 24.734.034 34.157l87.02 87.07c9.45 9.415 24.754 9.415 34.204 0l73.188-73.208-121.226-121.226-73.22 73.207z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="m454.212 145.442-87.051-87.068c-9.419-9.421-24.723-9.421-34.173.031l-73.154 73.186 121.193 121.194 73.185-73.183c9.453-9.423 9.453-24.728 0-34.16M149.63 241.731 270.888 362.96l92.514-92.531-121.192-121.21zm73.219 20.868c-4.872 4.868-12.822 4.868-17.724 0-4.94-4.907-4.94-12.855 0-17.777 4.902-4.907 12.853-4.907 17.724 0 4.905 4.921 4.905 12.869 0 17.777m67.333-13.019c4.904-4.907 12.852-4.907 17.757 0 4.904 4.906 4.904 12.854 0 17.754-4.905 4.906-12.853 4.906-17.757 0-4.872-4.9-4.872-12.848 0-17.754m-22.403 57.909c-4.871 4.908-12.852 4.908-17.756 0-4.904-4.883-4.904-12.846 0-17.754 4.904-4.905 12.885-4.905 17.756 0 4.907 4.909 4.907 12.871 0 17.754m-4.773-102.825a12.523 12.523 0 0 1 .035 17.755c-4.908 4.89-12.886 4.89-17.759 0-4.906-4.907-4.906-12.85 0-17.755 4.873-4.905 12.851-4.905 17.724 0M58.816 332.561c-9.419 9.431-9.419 24.734.034 34.157l87.02 87.07c9.45 9.415 24.754 9.415 34.204 0l73.188-73.208-121.226-121.226z"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-chart-no-axes-column"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="18" x2="18" y1="20" y2="10" />
<line x1="12" x2="12" y1="20" y2="4" />
<line x1="6" x2="6" y1="20" y2="14" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-chart-no-axes-column" viewBox="0 0 24 24"><path d="M18 20V10M12 20V4M6 20v-6"/></svg>`;

View File

@@ -1,20 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-scan-barcode"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
<path d="M8 7v10" />
<path d="M12 7v10" />
<path d="M17 7v10" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-scan-barcode" viewBox="0 0 24 24"><path d="M3 7V5a2 2 0 0 1 2-2h2M17 3h2a2 2 0 0 1 2 2v2M21 17v2a2 2 0 0 1-2 2h-2M7 21H5a2 2 0 0 1-2-2v-2M8 7v10M12 7v10M17 7v10"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-chart-no-axes-column-increasing"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="12" x2="12" y1="20" y2="10" />
<line x1="18" x2="18" y1="20" y2="4" />
<line x1="6" x2="6" y1="20" y2="16" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-chart-no-axes-column-increasing" viewBox="0 0 24 24"><path d="M12 20V10M18 20V4M6 20v-4"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-battery-full"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
<line x1="22" x2="22" y1="11" y2="13" />
<line x1="6" x2="6" y1="11" y2="13" />
<line x1="10" x2="10" y1="11" y2="13" />
<line x1="14" x2="14" y1="11" y2="13" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-battery-full" viewBox="0 0 24 24"><rect width="16" height="10" x="2" y="7" rx="2" ry="2"/><path d="M22 11v2M6 11v2M10 11v2M14 11v2"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-battery-low"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
<line x1="22" x2="22" y1="11" y2="13" />
<line x1="6" x2="6" y1="11" y2="13" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-battery-low" viewBox="0 0 24 24"><rect width="16" height="10" x="2" y="7" rx="2" ry="2"/><path d="M22 11v2M6 11v2"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-beer"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M17 11h1a3 3 0 0 1 0 6h-1" />
<path d="M9 12v6" />
<path d="M13 12v6" />
<path d="M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z" />
<path d="M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-beer" viewBox="0 0 24 24"><path d="M17 11h1a3 3 0 0 1 0 6h-1M9 12v6M13 12v6M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5"/><path d="M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bell-off"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M10.268 21a2 2 0 0 0 3.464 0" />
<path d="M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742" />
<path d="m2 2 20 20" />
<path d="M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bell-off" viewBox="0 0 24 24"><path d="M10.268 21a2 2 0 0 0 3.464 0M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742M2 2l20 20M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bell"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M10.268 21a2 2 0 0 0 3.464 0" />
<path d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bell" viewBox="0 0 24 24"><path d="M10.268 21a2 2 0 0 0 3.464 0M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M236.493 295.837c-3.531-3.76-5.233-8.83-5.103-15.305h-23.97c1.144 13.378 5.263 23.511 12.396 30.416 7.162 6.935 17.036 10.825 29.758 11.738v14.455h10.007v-14.455c8.503-.555 15.466-2.293 20.927-5.102 5.396-2.847 9.747-6.081 12.982-9.712 3.24-3.599 5.464-7.295 6.707-11.121 1.238-3.796 1.863-6.931 1.863-9.416 0-2.81-.197-6.052-.588-9.683-.393-3.657-1.67-7.258-3.826-10.888-2.127-3.629-5.496-7.098-10.007-10.431-4.548-3.371-10.989-6.185-19.392-8.407-1.604-.486-3.108-.85-4.482-1.21-1.439-.358-2.812-.653-4.185-1.011v-30.088c3.859 0 7.13 1.573 9.843 4.775 2.748 3.172 4.151 7 4.284 11.545h24.101c-.327-5.887-1.568-10.987-3.729-15.27-2.158-4.354-4.938-7.916-8.306-10.828-3.433-2.877-7.358-5.133-11.839-6.801-4.479-1.636-9.254-2.714-14.354-3.303V182.69h-10.007v13.045c-5.101.324-10.041 1.307-14.815 3.006-4.742 1.605-8.927 3.924-12.589 6.936-3.598 3.01-6.51 6.702-8.698 11.117-2.226 4.414-3.335 9.546-3.335 15.305 0 5.66.98 10.398 2.911 14.196 1.895 3.79 4.477 6.965 7.717 9.516 3.204 2.549 6.868 4.61 10.956 6.077a123.877 123.877 0 0 0 12.391 4.053c1.146.234 2.193.462 3.175.76.948.258 1.701.522 2.288.748v35.516c-5.233-1.014-9.616-3.367-13.081-7.128zm23.088-25.507c6.672 1.834 11.415 3.863 14.191 6.053 2.779 2.191 4.153 5.523 4.153 9.938 0 2.714-.555 5.07-1.701 7.031-1.144 1.995-2.55 3.664-4.314 5.006-1.768 1.373-3.762 2.418-5.953 3.175-2.191.716-4.351 1.208-6.376 1.435V270.33zm-21.748-31.951c-2.353-2.027-3.563-4.904-3.563-8.667 0-2.356.424-4.414 1.275-6.179.852-1.762 1.992-3.236 3.467-4.443a14.905 14.905 0 0 1 4.973-2.622c1.795-.586 3.662-.849 5.59-.849v27.699c-5.464-1.242-9.354-2.879-11.742-4.939zm186.073 112.889V160.812H306.443c19.716 21.971 32.471 56.443 32.471 95.229 0 38.783-12.755 73.252-32.471 95.227h117.463zM38.354 110.779v289.508H473.19V110.779H38.354zm410.47 265.407H62.715V135.863h386.109v240.323zM172.627 256.041c0-38.785 12.719-73.258 32.473-95.229H87.635v190.455H205.1c-19.754-21.974-32.473-56.443-32.473-95.226z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M236.493 295.837c-3.531-3.76-5.233-8.83-5.103-15.305h-23.97c1.144 13.378 5.263 23.511 12.396 30.416 7.162 6.935 17.036 10.825 29.758 11.738v14.455h10.007v-14.455c8.503-.555 15.466-2.293 20.927-5.102 5.396-2.847 9.747-6.081 12.982-9.712 3.24-3.599 5.464-7.295 6.707-11.121 1.238-3.796 1.863-6.931 1.863-9.416 0-2.81-.197-6.052-.588-9.683-.393-3.657-1.67-7.258-3.826-10.888-2.127-3.629-5.496-7.098-10.007-10.431-4.548-3.371-10.989-6.185-19.392-8.407-1.604-.486-3.108-.85-4.482-1.21-1.439-.358-2.812-.653-4.185-1.011v-30.088c3.859 0 7.13 1.573 9.843 4.775 2.748 3.172 4.151 7 4.284 11.545h24.101c-.327-5.887-1.568-10.987-3.729-15.27-2.158-4.354-4.938-7.916-8.306-10.828-3.433-2.877-7.358-5.133-11.839-6.801-4.479-1.636-9.254-2.714-14.354-3.303V182.69h-10.007v13.045c-5.101.324-10.041 1.307-14.815 3.006-4.742 1.605-8.927 3.924-12.589 6.936-3.598 3.01-6.51 6.702-8.698 11.117-2.226 4.414-3.335 9.546-3.335 15.305 0 5.66.98 10.398 2.911 14.196 1.895 3.79 4.477 6.965 7.717 9.516 3.204 2.549 6.868 4.61 10.956 6.077a124 124 0 0 0 12.391 4.053c1.146.234 2.193.462 3.175.76.948.258 1.701.522 2.288.748v35.516c-5.233-1.014-9.616-3.367-13.081-7.128m23.088-25.507c6.672 1.834 11.415 3.863 14.191 6.053 2.779 2.191 4.153 5.523 4.153 9.938 0 2.714-.555 5.07-1.701 7.031-1.144 1.995-2.55 3.664-4.314 5.006-1.768 1.373-3.762 2.418-5.953 3.175-2.191.716-4.351 1.208-6.376 1.435zm-21.748-31.951c-2.353-2.027-3.563-4.904-3.563-8.667q0-3.533 1.275-6.179c.852-1.762 1.992-3.236 3.467-4.443a14.9 14.9 0 0 1 4.973-2.622c1.795-.586 3.662-.849 5.59-.849v27.699c-5.464-1.242-9.354-2.879-11.742-4.939m186.073 112.889V160.812H306.443c19.716 21.971 32.471 56.443 32.471 95.229 0 38.783-12.755 73.252-32.471 95.227zM38.354 110.779v289.508H473.19V110.779zm410.47 265.407H62.715V135.863h386.109zM172.627 256.041c0-38.785 12.719-73.258 32.473-95.229H87.635v190.455H205.1c-19.754-21.974-32.473-56.443-32.473-95.226"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M212.925 255.197c-.101.229-.164 1.144-.164 2.746v4.385h-6.802l-5.267 12.229h13.08c2.389 14.846 7.522 26.423 15.466 34.662 8.734 9.193 20.244 13.766 34.502 13.766 9.843 0 18.575-2.187 26.159-6.6l.199-25.639c-8.959 7.125-17.69 10.661-26.193 10.661-13.146 0-21.518-8.929-25.15-26.851h29.597l5.23-12.229h-36.168l.165-7.131h38.066l5.262-12.229h-41.466c3.956-15.535 11.904-23.287 23.807-23.287 6.901 0 14.324 2.551 22.236 7.652l10.37-21.256c-11.12-5.656-21.389-8.501-30.904-8.501-13.506 0-24.724 4.351-33.649 12.914-8.502 7.948-14.128 18.769-16.809 32.478h-8.701l-5.264 12.229h12.398zm211.513 96.405V161.178H306.972c19.753 21.913 32.474 56.413 32.474 95.195 0 38.786-12.721 73.25-32.474 95.229h117.466zm-251.28-95.229c0-38.782 12.721-73.282 32.474-95.195H88.167v190.424h117.465c-19.754-21.979-32.474-56.443-32.474-95.229zM38.885 111.113v289.506h434.834V111.113H38.885zm410.504 265.405H63.215V136.193h386.174v240.325z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M212.925 255.197c-.101.229-.164 1.144-.164 2.746v4.385h-6.802l-5.267 12.229h13.08c2.389 14.846 7.522 26.423 15.466 34.662 8.734 9.193 20.244 13.766 34.502 13.766 9.843 0 18.575-2.187 26.159-6.6l.199-25.639c-8.959 7.125-17.69 10.661-26.193 10.661-13.146 0-21.518-8.929-25.15-26.851h29.597l5.23-12.229h-36.168l.165-7.131h38.066l5.262-12.229h-41.466c3.956-15.535 11.904-23.287 23.807-23.287 6.901 0 14.324 2.551 22.236 7.652l10.37-21.256c-11.12-5.656-21.389-8.501-30.904-8.501-13.506 0-24.724 4.351-33.649 12.914-8.502 7.948-14.128 18.769-16.809 32.478h-8.701l-5.264 12.229h12.398zm211.513 96.405V161.178H306.972c19.753 21.913 32.474 56.413 32.474 95.195 0 38.786-12.721 73.25-32.474 95.229zm-251.28-95.229c0-38.782 12.721-73.282 32.474-95.195H88.167v190.424h117.465c-19.754-21.979-32.474-56.443-32.474-95.229M38.885 111.113v289.506h434.834V111.113zm410.504 265.405H63.215V136.193h386.174z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M230.083 265.43c.637 1.898.93 3.763.93 5.687 0 3.077-.556 5.985-1.702 8.737a35.825 35.825 0 0 1-4.314 7.746 38.11 38.11 0 0 1-6.131 6.545 59.53 59.53 0 0 1-7.048 5.166l10.531 15.631c3.301-2.454 6.605-4.155 9.94-5.009 3.337-.847 6.559-1.239 9.617-1.239 3.744 0 6.849.297 9.319.981a90.441 90.441 0 0 1 7.489 2.391c2.387.817 5.002 1.474 7.831 2.025 2.829.584 6.392.851 10.71.851 4.301 0 8.763-.818 13.426-2.355 4.626-1.6 9.008-4.382 13.062-8.338l-10.186-17.169c-3.059 3.308-5.757 5.329-8.078 6.114-2.339.788-4.594 1.18-6.883 1.18-2.259 0-4.465-.166-6.607-.59-2.156-.426-4.381-.886-6.638-1.437-2.255-.426-4.497-.886-6.704-1.275a38.019 38.019 0 0 0-6.72-.589c-1.601 0-3.222.263-4.939.652-1.681.494-3.908 1.571-6.622 3.238l-.325-.295a53.027 53.027 0 0 0 9.744-10.137c2.797-3.797 4.186-8.338 4.186-13.672a56.91 56.91 0 0 0-.262-5.459 22.629 22.629 0 0 0-1.112-5.102h17.856v-14.426h-22.594c-1.702-3.07-3.043-5.654-3.991-7.814-.982-2.154-1.669-4.021-2.062-5.689-.391-1.635-.652-3.104-.751-4.312a38.558 38.558 0 0 1-.18-3.96c0-4.746 1.504-8.534 4.496-11.345 3.01-2.845 7.062-4.253 12.166-4.253 4.301 0 7.686.882 10.104 2.647 2.422 1.732 4.252 3.799 5.445 6.182a23.497 23.497 0 0 1 2.291 7.391c.342 2.549.572 4.672.67 6.374h22.957c0-13.831-3.631-24.36-10.891-31.587-7.227-7.262-17.398-10.893-30.414-10.893-7.129 0-13.424.887-18.85 2.719-5.445 1.795-9.993 4.283-13.604 7.387-3.631 3.145-6.377 6.707-8.241 10.795-1.88 4.086-2.813 8.372-2.813 12.918 0 5.102.867 9.744 2.567 13.924 1.701 4.191 3.4 7.364 5.102 9.518h-10.89v14.426h16.825c.898 1.961 1.681 3.858 2.288 5.72zm193.806 85.58V160.557H306.424c19.734 22.011 32.457 56.443 32.457 95.225 0 38.787-12.723 73.288-32.457 95.229h117.465zm-251.281-95.229c0-38.781 12.722-73.214 32.457-95.225H87.616V351.01h117.449c-19.735-21.941-32.457-56.442-32.457-95.229zM38.32 110.588v289.443h434.852V110.588H38.32zm410.504 265.377H62.698V135.64h386.126v240.325z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M230.083 265.43c.637 1.898.93 3.763.93 5.687 0 3.077-.556 5.985-1.702 8.737a35.8 35.8 0 0 1-4.314 7.746 38 38 0 0 1-6.131 6.545 59.5 59.5 0 0 1-7.048 5.166l10.531 15.631c3.301-2.454 6.605-4.155 9.94-5.009 3.337-.847 6.559-1.239 9.617-1.239 3.744 0 6.849.297 9.319.981a90 90 0 0 1 7.489 2.391c2.387.817 5.002 1.474 7.831 2.025 2.829.584 6.392.851 10.71.851 4.301 0 8.763-.818 13.426-2.355 4.626-1.6 9.008-4.382 13.062-8.338l-10.186-17.169c-3.059 3.308-5.757 5.329-8.078 6.114-2.339.788-4.594 1.18-6.883 1.18-2.259 0-4.465-.166-6.607-.59-2.156-.426-4.381-.886-6.638-1.437-2.255-.426-4.497-.886-6.704-1.275a38 38 0 0 0-6.72-.589c-1.601 0-3.222.263-4.939.652-1.681.494-3.908 1.571-6.622 3.238l-.325-.295a53 53 0 0 0 9.744-10.137c2.797-3.797 4.186-8.338 4.186-13.672a57 57 0 0 0-.262-5.459 22.6 22.6 0 0 0-1.112-5.102h17.856v-14.426h-22.594c-1.702-3.07-3.043-5.654-3.991-7.814-.982-2.154-1.669-4.021-2.062-5.689-.391-1.635-.652-3.104-.751-4.312a39 39 0 0 1-.18-3.96c0-4.746 1.504-8.534 4.496-11.345 3.01-2.845 7.062-4.253 12.166-4.253 4.301 0 7.686.882 10.104 2.647 2.422 1.732 4.252 3.799 5.445 6.182a23.5 23.5 0 0 1 2.291 7.391c.342 2.549.572 4.672.67 6.374h22.957q0-20.746-10.891-31.587c-7.227-7.262-17.398-10.893-30.414-10.893-7.129 0-13.424.887-18.85 2.719-5.445 1.795-9.993 4.283-13.604 7.387-3.631 3.145-6.377 6.707-8.241 10.795-1.88 4.086-2.813 8.372-2.813 12.918 0 5.102.867 9.744 2.567 13.924q2.55 6.287 5.102 9.518h-10.89v14.426h16.825c.898 1.961 1.681 3.858 2.288 5.72m193.806 85.58V160.557H306.424c19.734 22.011 32.457 56.443 32.457 95.225 0 38.787-12.723 73.288-32.457 95.229zm-251.281-95.229c0-38.781 12.722-73.214 32.457-95.225H87.616V351.01h117.449c-19.735-21.941-32.457-56.442-32.457-95.229M38.32 110.588v289.443h434.852V110.588zm410.504 265.377H62.698V135.64h386.126z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M216.269 251.881v16.153h24.299l2.353 4.939v7.8H216.27v16.154h26.651v23.448h25.838v-23.448h26.844v-16.154h-26.844v-7.8l2.549-4.939h24.295v-16.153H279.48l26.326-52.825H278.27l-21.911 52.825-22.431-52.825h-27.535l25.996 52.825h-16.12zm207.952 99.807v-190.44H306.789c19.751 21.962 32.437 56.428 32.437 95.212 0 38.783-12.686 73.253-32.437 95.229h117.432zM38.668 111.214v289.492h434.865V111.214H38.668zm410.5 265.41H63.031V136.299h386.137v240.325zM172.971 256.46c0-38.784 12.69-73.25 32.475-95.212H87.947v190.441h117.498c-19.784-21.976-32.474-56.446-32.474-95.229z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M216.269 251.881v16.153h24.299l2.353 4.939v7.8H216.27v16.154h26.651v23.448h25.838v-23.448h26.844v-16.154h-26.844v-7.8l2.549-4.939h24.295v-16.153H279.48l26.326-52.825H278.27l-21.911 52.825-22.431-52.825h-27.535l25.996 52.825zm207.952 99.807v-190.44H306.789c19.751 21.962 32.437 56.428 32.437 95.212 0 38.783-12.686 73.253-32.437 95.229zM38.668 111.214v289.492h434.865V111.214zm410.5 265.41H63.031V136.299h386.137zM172.971 256.46c0-38.784 12.69-73.25 32.475-95.212H87.947v190.441h117.498c-19.784-21.976-32.474-56.446-32.474-95.229"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M424.361 352.143V161.7h-117.5c19.752 21.968 32.475 56.434 32.475 95.218 0 38.783-12.723 73.244-32.475 95.224h117.5zM38.773 111.672v289.502h434.836V111.672H38.773zm410.506 265.4H63.138V136.758H449.28v240.314zm-276.23-120.154c0-38.785 12.752-73.25 32.471-95.218H88.058v190.442H205.52c-19.719-21.98-32.471-56.441-32.471-95.224zm78.318 64.603h24.103V202.577h-19.196c-.652 4.531-2.094 8.316-4.25 11.379-2.127 3.067-4.775 5.53-7.881 7.384-3.141 1.874-6.639 3.173-10.531 3.917-3.923.744-7.98 1.051-12.162.924v18.199h29.918v77.141z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M424.361 352.143V161.7h-117.5c19.752 21.968 32.475 56.434 32.475 95.218 0 38.783-12.723 73.244-32.475 95.224zM38.773 111.672v289.502h434.836V111.672zm410.506 265.4H63.138V136.758H449.28zm-276.23-120.154c0-38.785 12.752-73.25 32.471-95.218H88.058v190.442H205.52c-19.719-21.98-32.471-56.441-32.471-95.224m78.318 64.603h24.103V202.577h-19.196c-.652 4.531-2.094 8.316-4.25 11.379-2.127 3.067-4.775 5.53-7.881 7.384-3.141 1.874-6.639 3.173-10.531 3.917-3.923.744-7.98 1.051-12.162.924v18.199h29.918z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M153.537 329.843v62.41h23.68v-62.41h159.498v62.41h23.68v-62.41h89.076V61.513H60.359v268.33h93.178zM88.773 89.928h332.283v211.501H88.773V89.928zm28.416 28.415H392.64v154.671H117.189zM49.523 421.381h412.953v29.106H49.523z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M153.537 329.843v62.41h23.68v-62.41h159.498v62.41h23.68v-62.41h89.076V61.513H60.359v268.33zM88.773 89.928h332.283v211.501H88.773zm28.416 28.415H392.64v154.671H117.189zM49.523 421.381h412.953v29.106H49.523z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M188.488 338.922c-2.812-3.045-4.184-7.132-4.121-12.295h-19.194c.881 10.727 4.218 18.836 9.939 24.43 5.724 5.524 13.704 8.629 23.873 9.385v11.607h8.044v-11.607c6.802-.492 12.396-1.832 16.776-4.088 4.35-2.291 7.849-4.875 10.434-7.783 2.583-2.912 4.379-5.89 5.396-8.926.979-3.01 1.504-5.594 1.504-7.591 0-2.253-.165-4.872-.524-7.783-.294-2.878-1.306-5.755-3.041-8.667-1.732-2.908-4.413-5.719-8.044-8.402-3.632-2.68-8.828-4.938-15.531-6.77a52.339 52.339 0 0 0-3.631-.951 79.541 79.541 0 0 1-3.338-.849v-24.097c3.074 0 5.722 1.272 7.915 3.822 2.192 2.521 3.302 5.661 3.402 9.258h19.358c-.263-4.74-1.275-8.828-3.008-12.263-1.7-3.47-3.926-6.348-6.672-8.702-2.716-2.257-5.888-4.087-9.482-5.394-3.565-1.341-7.426-2.223-11.514-2.651v-10.562h-8.044v10.562c-4.088.265-8.074 1.047-11.869 2.389-3.794 1.276-7.196 3.141-10.072 5.562-2.942 2.417-5.264 5.396-7.031 8.96-1.767 3.527-2.65 7.613-2.65 12.262 0 4.51.754 8.303 2.288 11.345 1.571 3.04 3.633 5.624 6.215 7.653 2.586 2.059 5.527 3.666 8.795 4.906 3.273 1.244 6.608 2.29 9.943 3.204.915.166 1.768.429 2.55.624.753.229 1.374.422 1.832.619v28.484c-4.187-.816-7.685-2.713-10.498-5.691zm18.541-20.471c5.364 1.435 9.158 3.074 11.383 4.838 2.223 1.768 3.335 4.451 3.335 7.979 0 2.159-.458 4.058-1.343 5.663a14.175 14.175 0 0 1-3.499 4.016 16.05 16.05 0 0 1-4.773 2.521 25.466 25.466 0 0 1-5.103 1.146v-26.163zm-17.463-25.639c-1.896-1.669-2.843-3.956-2.843-6.963 0-1.931.326-3.567 1.013-4.971.688-1.407 1.604-2.616 2.812-3.535a11.624 11.624 0 0 1 3.956-2.122 14.675 14.675 0 0 1 4.48-.686v22.236c-4.38-.982-7.487-2.353-9.418-3.959zm-45.714-184.046v25.898h303.11v160.112h28.482v-186.01H143.852zM36.752 402.3h331.597V216.258H36.752V402.3zm165.799-167.923c32.015 0 57.945 33.059 57.945 73.871 0 40.781-25.931 73.838-57.945 73.838s-57.947-33.057-57.947-73.838c0-40.812 25.932-73.871 57.947-73.871zM90.154 188.364h303.113v160.104h28.483V162.464H90.154v25.9z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M188.488 338.922c-2.812-3.045-4.184-7.132-4.121-12.295h-19.194c.881 10.727 4.218 18.836 9.939 24.43 5.724 5.524 13.704 8.629 23.873 9.385v11.607h8.044v-11.607c6.802-.492 12.396-1.832 16.776-4.088 4.35-2.291 7.849-4.875 10.434-7.783 2.583-2.912 4.379-5.89 5.396-8.926.979-3.01 1.504-5.594 1.504-7.591 0-2.253-.165-4.872-.524-7.783-.294-2.878-1.306-5.755-3.041-8.667-1.732-2.908-4.413-5.719-8.044-8.402-3.632-2.68-8.828-4.938-15.531-6.77a52 52 0 0 0-3.631-.951 80 80 0 0 1-3.338-.849v-24.097c3.074 0 5.722 1.272 7.915 3.822 2.192 2.521 3.302 5.661 3.402 9.258h19.358c-.263-4.74-1.275-8.828-3.008-12.263-1.7-3.47-3.926-6.348-6.672-8.702-2.716-2.257-5.888-4.087-9.482-5.394-3.565-1.341-7.426-2.223-11.514-2.651v-10.562h-8.044v10.562c-4.088.265-8.074 1.047-11.869 2.389-3.794 1.276-7.196 3.141-10.072 5.562-2.942 2.417-5.264 5.396-7.031 8.96q-2.65 5.29-2.65 12.262c0 4.51.754 8.303 2.288 11.345 1.571 3.04 3.633 5.624 6.215 7.653 2.586 2.059 5.527 3.666 8.795 4.906 3.273 1.244 6.608 2.29 9.943 3.204.915.166 1.768.429 2.55.624.753.229 1.374.422 1.832.619v28.484q-6.28-1.224-10.498-5.691m18.541-20.471c5.364 1.435 9.158 3.074 11.383 4.838 2.223 1.768 3.335 4.451 3.335 7.979 0 2.159-.458 4.058-1.343 5.663a14.2 14.2 0 0 1-3.499 4.016 16 16 0 0 1-4.773 2.521 25.5 25.5 0 0 1-5.103 1.146zm-17.463-25.639c-1.896-1.669-2.843-3.956-2.843-6.963 0-1.931.326-3.567 1.013-4.971.688-1.407 1.604-2.616 2.812-3.535a11.6 11.6 0 0 1 3.956-2.122 14.7 14.7 0 0 1 4.48-.686v22.236c-4.38-.982-7.487-2.353-9.418-3.959m-45.714-184.046v25.898h303.11v160.112h28.482v-186.01zM36.752 402.3h331.597V216.258H36.752zm165.799-167.923c32.015 0 57.945 33.059 57.945 73.871 0 40.781-25.931 73.838-57.945 73.838s-57.947-33.057-57.947-73.838c0-40.812 25.932-73.871 57.947-73.871M90.154 188.364h303.113v160.104h28.483V162.464H90.154z"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M167.359 312.063h-5.444l-4.233 9.843h10.496c1.912 11.905 6.048 21.195 12.411 27.795 7.012 7.395 16.219 11.055 27.681 11.055 7.913 0 14.913-1.764 20.995-5.3l.147-20.599c-7.195 5.724-14.177 8.604-21.011 8.604-10.529 0-17.266-7.197-20.177-21.555h23.727l4.231-9.843h-29.038l.132-5.718h30.543l4.217-9.813h-33.257c3.173-12.458 9.532-18.671 19.082-18.671 5.544 0 11.496 2.057 17.873 6.109l8.304-17c-8.927-4.582-17.167-6.867-24.818-6.867-10.812 0-19.819 3.463-27.013 10.365-6.803 6.376-11.315 15.072-13.491 26.063h-6.947l-4.22 9.813h9.942c-.097.193-.131.912-.131 2.223v3.496zm-23.201-202.944v25.864h303.129v160.144h28.449V109.119H144.158zm-53.714 79.595h303.112V348.85h28.484V162.783H90.444v25.931zM37.043 402.619h331.596V216.61H37.043v186.009zm165.799-167.928c31.999 0 57.963 33.066 57.963 73.877 0 40.775-25.964 73.869-57.963 73.869-32.016 0-57.949-33.094-57.949-73.869 0-40.81 25.933-73.877 57.949-73.877z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M167.359 312.063h-5.444l-4.233 9.843h10.496c1.912 11.905 6.048 21.195 12.411 27.795 7.012 7.395 16.219 11.055 27.681 11.055 7.913 0 14.913-1.764 20.995-5.3l.147-20.599c-7.195 5.724-14.177 8.604-21.011 8.604-10.529 0-17.266-7.197-20.177-21.555h23.727l4.231-9.843h-29.038l.132-5.718h30.543l4.217-9.813h-33.257c3.173-12.458 9.532-18.671 19.082-18.671 5.544 0 11.496 2.057 17.873 6.109l8.304-17c-8.927-4.582-17.167-6.867-24.818-6.867-10.812 0-19.819 3.463-27.013 10.365-6.803 6.376-11.315 15.072-13.491 26.063h-6.947l-4.22 9.813h9.942c-.097.193-.131.912-.131 2.223v3.496zm-23.201-202.944v25.864h303.129v160.144h28.449V109.119zm-53.714 79.595h303.112V348.85h28.484V162.783H90.444zM37.043 402.619h331.596V216.61H37.043zm165.799-167.928c31.999 0 57.963 33.066 57.963 73.877 0 40.775-25.964 73.869-57.963 73.869-32.016 0-57.949-33.094-57.949-73.869 0-40.81 25.933-73.877 57.949-73.877"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M176.794 336.548c-1.389 1.917-3.042 3.666-4.888 5.249a49.323 49.323 0 0 1-5.66 4.171l8.438 12.538c2.633-2.006 5.298-3.332 7.979-4.019 2.684-.688 5.25-1.03 7.702-1.03 2.993 0 5.513.274 7.506.82 1.992.539 3.99 1.192 6.002 1.894 1.912.655 4.005 1.193 6.276 1.647 2.272.461 5.136.688 8.584.688 3.467 0 7.063-.648 10.776-1.912 3.729-1.289 7.245-3.494 10.496-6.686l-8.189-13.768c-2.439 2.632-4.595 4.266-6.476 4.907a16.814 16.814 0 0 1-5.51.943c-1.814 0-3.581-.146-5.314-.452a98.452 98.452 0 0 1-5.331-1.178c-1.813-.36-3.595-.703-5.377-1.015a29.864 29.864 0 0 0-5.378-.492c-1.296 0-2.586.18-3.959.538-1.373.376-3.14 1.245-5.331 2.599l-.262-.257a42.004 42.004 0 0 0 7.851-8.129c2.223-3.042 3.335-6.687 3.335-10.969 0-1.541-.064-2.994-.199-4.367-.145-1.371-.456-2.729-.881-4.086h14.307v-11.593h-18.133c-1.374-2.454-2.452-4.547-3.205-6.263-.785-1.731-1.34-3.254-1.634-4.579a24.511 24.511 0 0 1-.622-3.486 31.726 31.726 0 0 1-.132-3.104c0-3.84 1.193-6.883 3.6-9.156 2.419-2.272 5.656-3.401 9.759-3.401 3.452 0 6.167.686 8.096 2.097 1.962 1.419 3.433 3.072 4.382 4.982.948 1.913 1.57 3.895 1.831 5.938.279 2.043.457 3.744.555 5.118H236.2c0-11.086-2.913-19.557-8.732-25.359-5.819-5.838-13.948-8.731-24.413-8.731-5.72 0-10.775.719-15.14 2.17-4.364 1.459-7.995 3.44-10.905 5.938-2.913 2.501-5.101 5.381-6.622 8.649a24.764 24.764 0 0 0-2.242 10.366c0 4.091.69 7.833 2.045 11.187 1.356 3.368 2.731 5.899 4.09 7.637h-8.717v11.593h13.506a42.861 42.861 0 0 1 1.83 4.562c.49 1.501.752 3.022.752 4.555 0 2.475-.457 4.814-1.373 7.039a27.739 27.739 0 0 1-3.485 6.207zm-32.915-227.213v25.889H446.99v160.121h28.468v-186.01H143.879zm-53.696 79.581h303.113v160.142h28.448V163.034H90.183v25.882zm-53.416 213.92h331.576V216.811H36.767v186.025zm165.78-167.921c32.013 0 57.965 33.074 57.965 73.871 0 40.796-25.952 73.869-57.965 73.869-31.981 0-57.947-33.073-57.947-73.869 0-40.797 25.965-73.871 57.947-73.871z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M176.794 336.548c-1.389 1.917-3.042 3.666-4.888 5.249a49 49 0 0 1-5.66 4.171l8.438 12.538c2.633-2.006 5.298-3.332 7.979-4.019q4.025-1.031 7.702-1.03c2.993 0 5.513.274 7.506.82 1.992.539 3.99 1.192 6.002 1.894 1.912.655 4.005 1.193 6.276 1.647q3.41.69 8.584.688c3.467 0 7.063-.648 10.776-1.912 3.729-1.289 7.245-3.494 10.496-6.686l-8.189-13.768c-2.439 2.632-4.595 4.266-6.476 4.907a16.8 16.8 0 0 1-5.51.943c-1.814 0-3.581-.146-5.314-.452a99 99 0 0 1-5.331-1.178c-1.813-.36-3.595-.703-5.377-1.015a30 30 0 0 0-5.378-.492c-1.296 0-2.586.18-3.959.538-1.373.376-3.14 1.245-5.331 2.599l-.262-.257a42 42 0 0 0 7.851-8.129c2.223-3.042 3.335-6.687 3.335-10.969q.002-2.31-.199-4.367c-.145-1.371-.456-2.729-.881-4.086h14.307v-11.593h-18.133c-1.374-2.454-2.452-4.547-3.205-6.263-.785-1.731-1.34-3.254-1.634-4.579a24.5 24.5 0 0 1-.622-3.486 32 32 0 0 1-.132-3.104c0-3.84 1.193-6.883 3.6-9.156 2.419-2.272 5.656-3.401 9.759-3.401 3.452 0 6.167.686 8.096 2.097 1.962 1.419 3.433 3.072 4.382 4.982.948 1.913 1.57 3.895 1.831 5.938.279 2.043.457 3.744.555 5.118H236.2c0-11.086-2.913-19.557-8.732-25.359-5.819-5.838-13.948-8.731-24.413-8.731-5.72 0-10.775.719-15.14 2.17-4.364 1.459-7.995 3.44-10.905 5.938-2.913 2.501-5.101 5.381-6.622 8.649a24.8 24.8 0 0 0-2.242 10.366c0 4.091.69 7.833 2.045 11.187 1.356 3.368 2.731 5.899 4.09 7.637h-8.717v11.593h13.506a43 43 0 0 1 1.83 4.562c.49 1.501.752 3.022.752 4.555 0 2.475-.457 4.814-1.373 7.039a27.7 27.7 0 0 1-3.485 6.207m-32.915-227.213v25.889H446.99v160.121h28.468v-186.01zm-53.696 79.581h303.113v160.142h28.448V163.034H90.183zm-53.416 213.92h331.576V216.811H36.767zm165.78-167.921c32.013 0 57.965 33.074 57.965 73.871s-25.952 73.869-57.965 73.869c-31.981 0-57.947-33.073-57.947-73.869s25.965-73.871 57.947-73.871"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M169.763 308.701v12.949h19.523l1.93 3.961v6.273h-21.453v12.956h21.453v18.815h20.734V344.84h21.516v-12.956H211.95v-6.273l2.027-3.961h19.489v-12.949h-12.952l21.127-42.412h-22.106l-17.562 42.412-18.017-42.412H161.88l20.863 42.412h-12.98zm-25.638-199.513v25.883h303.146v160.126h28.483V109.188H144.125zM90.43 188.785h303.111V348.89h28.484V162.887H90.43v25.898zm-53.402 213.92h331.595V216.679H37.028v186.026zm165.795-167.922c32.018 0 57.95 33.057 57.95 73.87 0 40.796-25.933 73.856-57.95 73.856-31.981 0-57.915-33.061-57.915-73.856 0-40.813 25.934-73.87 57.915-73.87z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M169.763 308.701v12.949h19.523l1.93 3.961v6.273h-21.453v12.956h21.453v18.815h20.734V344.84h21.516v-12.956H211.95v-6.273l2.027-3.961h19.489v-12.949h-12.952l21.127-42.412h-22.106l-17.562 42.412-18.017-42.412H161.88l20.863 42.412zm-25.638-199.513v25.883h303.146v160.126h28.483V109.188zM90.43 188.785h303.111V348.89h28.484V162.887H90.43zm-53.402 213.92h331.595V216.679H37.028zm165.795-167.922c32.018 0 57.95 33.057 57.95 73.87 0 40.796-25.933 73.856-57.95 73.856-31.981 0-57.915-33.061-57.915-73.856 0-40.813 25.934-73.87 57.915-73.87"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M90.374 188.71h303.112v160.137h28.482V162.829H90.374v25.881zm53.695-79.581v25.883h303.113v160.126h28.482v-186.01H144.069zM36.94 402.625h331.594V216.621H36.94v186.004zm165.83-167.906c31.981 0 57.948 33.064 57.948 73.861 0 40.807-25.967 73.871-57.948 73.871s-57.98-33.064-57.98-73.871c0-40.797 25.999-73.861 57.98-73.861zm-3.894 124.547h19.328v-95.46h-15.37c-.556 3.649-1.702 6.692-3.433 9.143a20.852 20.852 0 0 1-6.312 5.935c-2.519 1.49-5.331 2.536-8.469 3.123-3.14.59-6.378.85-9.744.754v14.603h24v61.902z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M90.374 188.71h303.112v160.137h28.482V162.829H90.374zm53.695-79.581v25.883h303.113v160.126h28.482v-186.01zM36.94 402.625h331.594V216.621H36.94zm165.83-167.906c31.981 0 57.948 33.064 57.948 73.861 0 40.807-25.967 73.871-57.948 73.871s-57.98-33.064-57.98-73.871c0-40.797 25.999-73.861 57.98-73.861m-3.894 124.547h19.328v-95.46h-15.37c-.556 3.649-1.702 6.692-3.433 9.143a20.85 20.85 0 0 1-6.312 5.935c-2.519 1.49-5.331 2.536-8.469 3.123-3.14.59-6.378.85-9.744.754v14.603h24z"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-binary"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="14" y="14" width="4" height="6" rx="2" />
<rect x="6" y="4" width="4" height="6" rx="2" />
<path d="M6 20h4" />
<path d="M14 10h4" />
<path d="M6 14h2v6" />
<path d="M14 4h2v6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-binary" viewBox="0 0 24 24"><rect width="4" height="6" x="14" y="14" rx="2"/><rect width="4" height="6" x="6" y="4" rx="2"/><path d="M6 20h4M14 10h4M6 14h2v6M14 4h2v6"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-binoculars"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M10 10h4" />
<path d="M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3" />
<path d="M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z" />
<path d="M 22 16 L 2 16" />
<path d="M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z" />
<path d="M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-binoculars" viewBox="0 0 24 24"><path d="M10 10h4M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2zM22 16H2M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2zM9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bird"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M16 7h.01" />
<path d="M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" />
<path d="m20 7 2 .5-2 .5" />
<path d="M10 18v3" />
<path d="M14 17.75V21" />
<path d="M7 18a6 6 0 0 0 3.84-10.61" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bird" viewBox="0 0 24 24"><path d="M16 7h.01M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"/><path d="m20 7 2 .5-2 .5M10 18v3M14 17.75V21M7 18a6 6 0 0 0 3.84-10.61"/></svg>`;

View File

@@ -1,22 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-cake"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8" />
<path d="M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1" />
<path d="M2 21h20" />
<path d="M7 8v3" />
<path d="M12 8v3" />
<path d="M17 8v3" />
<path d="M7 4h.01" />
<path d="M12 4h.01" />
<path d="M17 4h.01" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-cake" viewBox="0 0 24 24"><path d="M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"/><path d="M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1M2 21h20M7 8v3M12 8v3M17 8v3M7 4h.01M12 4h.01M17 4h.01"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-ban"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="m4.9 4.9 14.2 14.2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-ban" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="m4.9 4.9 14.2 14.2"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-text-quote"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M17 6H3" />
<path d="M21 12H8" />
<path d="M21 18H8" />
<path d="M3 12v6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-text-quote" viewBox="0 0 24 24"><path d="M17 6H3M21 12H8M21 18H8M3 12v6"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M334.622 326.082h-23.67v23.678h23.67v13.785h21.311v-49.528h-21.311zM156.138 183.827h12.922v23.68h23.678v-23.68h12.924v-21.311h-49.524zm12.922 47.359h23.679v23.679H169.06zm0 47.357h23.679v23.68H169.06zm0 71.217h23.678v-23.858H169.06zm94.535-23.678h23.68v23.678h-23.68zm-47.359 0h23.68v23.678h-23.68zm173.77-180.749L310.575 65.9l-6.937-6.936H115.06v394.07h281.88V152.268l-6.934-6.935zm-16.744 284.026l-234.524-.002V82.644h133.921c35.181 0 18.229 83.393 18.229 83.393s81.329-19.766 82.374 17.526v245.796zM232.367 286.082h123.566L232.367 162.516z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M334.622 326.082h-23.67v23.678h23.67v13.785h21.311v-49.528h-21.311zM156.138 183.827h12.922v23.68h23.678v-23.68h12.924v-21.311h-49.524zm12.922 47.359h23.679v23.679H169.06zm0 47.357h23.679v23.68H169.06zm0 71.217h23.678v-23.858H169.06zm94.535-23.678h23.68v23.678h-23.68zm-47.359 0h23.68v23.678h-23.68zm173.77-180.749L310.575 65.9l-6.937-6.936H115.06v394.07h281.88V152.268zm-16.744 284.026-234.524-.002V82.644h133.921c35.181 0 18.229 83.393 18.229 83.393s81.329-19.766 82.374 17.526zM232.367 286.082h123.566L232.367 162.516z"/></svg>`;

View File

@@ -1,14 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bluetooth"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m7 7 10 10-5 5V2l5 5L7 17" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bluetooth" viewBox="0 0 24 24"><path d="m7 7 10 10-5 5V2l5 5L7 17"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-ship"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 10.189V14" />
<path d="M12 2v3" />
<path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6" />
<path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76" />
<path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-ship" viewBox="0 0 24 24"><path d="M12 10.189V14M12 2v3M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"/><path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"/><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"/></svg>`;

View File

@@ -1,14 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bold"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bold" viewBox="0 0 24 24"><path d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"/></svg>`;

View File

@@ -1 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M288 111.709a11.635 11.635 0 0 0-16.448.001l-17.182 17.186c-54.131-19.107-116.814-7.023-160.113 36.271-60.082 60.082-60.082 157.501 0 217.582 60.082 60.08 157.496 60.08 217.578-.003 43.301-43.298 55.385-105.981 36.275-160.112l17.182-17.184c4.543-4.541 4.543-11.903 0-16.445L288 111.709zm108.459-27.063c-27.244 3.242-46.768 23.429-55.844 34.934l19.766 19.767c5.002-6.903 19.822-24.942 39.471-27.213 13.863-1.604 28.449 5.151 43.369 20.069l19.582-19.584c-21.27-21.27-43.602-30.682-66.344-27.973z"/></svg>`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><path d="M288 111.709a11.635 11.635 0 0 0-16.448.001l-17.182 17.186c-54.131-19.107-116.814-7.023-160.113 36.271-60.082 60.082-60.082 157.501 0 217.582s157.496 60.08 217.578-.003c43.301-43.298 55.385-105.981 36.275-160.112l17.182-17.184c4.543-4.541 4.543-11.903 0-16.445zm108.459-27.063c-27.244 3.242-46.768 23.429-55.844 34.934l19.766 19.767c5.002-6.903 19.822-24.942 39.471-27.213 13.863-1.604 28.449 5.151 43.369 20.069l19.582-19.584c-21.27-21.27-43.602-30.682-66.344-27.973"/></svg>`;

View File

@@ -1,14 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bone"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bone" viewBox="0 0 24 24"><path d="M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-book-open-text"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 7v14" />
<path d="M16 12h2" />
<path d="M16 8h2" />
<path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z" />
<path d="M6 12h2" />
<path d="M6 8h2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-book-open-text" viewBox="0 0 24 24"><path d="M12 7v14M16 12h2M16 8h2M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3zM6 12h2M6 8h2"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-book-open"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 7v14" />
<path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-book-open" viewBox="0 0 24 24"><path d="M12 7v14M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-book-text"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" />
<path d="M8 11h8" />
<path d="M8 7h6" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-book-text" viewBox="0 0 24 24"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20M8 11h8M8 7h6"/></svg>`;

View File

@@ -1,14 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bookmark"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bookmark" viewBox="0 0 24 24"><path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-library"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m16 6 4 14" />
<path d="M12 6v14" />
<path d="M8 8v12" />
<path d="M4 4v16" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-library" viewBox="0 0 24 24"><path d="m16 6 4 14M12 6v14M8 8v12M4 4v16"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-archive"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="20" height="5" x="2" y="3" rx="1" />
<path d="M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" />
<path d="M10 12h4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-archive" viewBox="0 0 24 24"><rect width="20" height="5" x="2" y="3" rx="1"/><path d="M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8M10 12h4"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-package-open"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 22v-9" />
<path d="M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z" />
<path d="M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13" />
<path d="M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-package-open" viewBox="0 0 24 24"><path d="M12 22v-9M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.66 1.66 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"/><path d="M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"/><path d="M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.64 1.64 0 0 0 1.63 0z"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-package"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" />
<path d="M12 22V12" />
<path d="m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7" />
<path d="m7.5 4.27 9 5.15" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-package" viewBox="0 0 24 24"><path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73zM12 22V12"/><path d="M3.29 7 12 12l8.71-5M7.5 4.27l9 5.15"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-braces"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1" />
<path d="M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-braces" viewBox="0 0 24 24"><path d="M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-toy-brick"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="18" height="12" x="3" y="8" rx="1" />
<path d="M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3" />
<path d="M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-toy-brick" viewBox="0 0 24 24"><rect width="18" height="12" x="3" y="8" rx="1"/><path d="M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-briefcase"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
<rect width="20" height="14" x="2" y="6" rx="2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-briefcase" viewBox="0 0 24 24"><path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/><rect width="20" height="14" x="2" y="6" rx="2"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-app-window"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="M10 4v4" />
<path d="M2 8h20" />
<path d="M6 4v4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-app-window" viewBox="0 0 24 24"><rect width="20" height="16" x="2" y="4" rx="2"/><path d="M10 4v4M2 8h20M6 4v4"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-paintbrush-vertical"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M10 2v2" />
<path d="M14 2v4" />
<path d="M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z" />
<path d="M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-paintbrush-vertical" viewBox="0 0 24 24"><path d="M10 2v2M14 2v4M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1zM6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"/></svg>`;

View File

@@ -1,16 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-paintbrush"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m14.622 17.897-10.68-2.913" />
<path d="M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z" />
<path d="M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-paintbrush" viewBox="0 0 24 24"><path d="m14.622 17.897-10.68-2.913M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0zM9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-brush"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08" />
<path d="M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-brush" viewBox="0 0 24 24"><path d="m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02"/></svg>`;

View File

@@ -1,24 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bug"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m8 2 1.88 1.88" />
<path d="M14.12 3.88 16 2" />
<path d="M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" />
<path d="M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6" />
<path d="M12 20v-9" />
<path d="M6.53 9C4.6 8.8 3 7.1 3 5" />
<path d="M6 13H2" />
<path d="M3 21c0-2.1 1.7-3.9 3.8-4" />
<path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" />
<path d="M22 13h-4" />
<path d="M17.2 17c2.1.1 3.8 1.9 3.8 4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bug" viewBox="0 0 24 24"><path d="m8 2 1.88 1.88M14.12 3.88 16 2M9 7.13v-1a3.003 3.003 0 1 1 6 0v1"/><path d="M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6M12 20v-9"/><path d="M6.53 9C4.6 8.8 3 7.1 3 5M6 13H2M3 21c0-2.1 1.7-3.9 3.8-4M20.97 5c0 2.1-1.6 3.8-3.5 4M22 13h-4M17.2 17c2.1.1 3.8 1.9 3.8 4"/></svg>`;

View File

@@ -1,19 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-list"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M3 12h.01" />
<path d="M3 18h.01" />
<path d="M3 6h.01" />
<path d="M8 12h13" />
<path d="M8 18h13" />
<path d="M8 6h13" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-list" viewBox="0 0 24 24"><path d="M3 12h.01M3 18h.01M3 6h.01M8 12h13M8 18h13M8 6h13"/></svg>`;

View File

@@ -1,17 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-radiation"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M12 12h.01" />
<path d="M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4z" />
<path d="M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5h5z" />
<path d="M7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-radiation" viewBox="0 0 24 24"><path d="M12 12h.01M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5zM7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3"/></svg>`;

View File

@@ -1,20 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-bus"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M8 6v6" />
<path d="M15 6v6" />
<path d="M2 12h19.6" />
<path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3" />
<circle cx="7" cy="18" r="2" />
<path d="M9 18h5" />
<circle cx="16" cy="18" r="2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-bus" viewBox="0 0 24 24"><path d="M8 6v6M15 6v6M2 12h19.6M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2s-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"/><circle cx="7" cy="18" r="2"/><path d="M9 18h5"/><circle cx="16" cy="18" r="2"/></svg>`;

View File

@@ -1,23 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-calculator"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="16" height="20" x="4" y="2" rx="2" />
<line x1="8" x2="16" y1="6" y2="6" />
<line x1="16" x2="16" y1="14" y2="18" />
<path d="M16 10h.01" />
<path d="M12 10h.01" />
<path d="M8 10h.01" />
<path d="M12 14h.01" />
<path d="M8 14h.01" />
<path d="M12 18h.01" />
<path d="M8 18h.01" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-calculator" viewBox="0 0 24 24"><rect width="16" height="20" x="4" y="2" rx="2"/><path d="M8 6h8M16 14v4M16 10h.01M12 10h.01M8 10h.01M12 14h.01M8 14h.01M12 18h.01M8 18h.01"/></svg>`;

View File

@@ -1,23 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-calendar-days"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M8 2v4" />
<path d="M16 2v4" />
<rect width="18" height="18" x="3" y="4" rx="2" />
<path d="M3 10h18" />
<path d="M8 14h.01" />
<path d="M12 14h.01" />
<path d="M16 14h.01" />
<path d="M8 18h.01" />
<path d="M12 18h.01" />
<path d="M16 18h.01" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-calendar-days" viewBox="0 0 24 24"><path d="M8 2v4M16 2v4"/><rect width="18" height="18" x="3" y="4" rx="2"/><path d="M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-calendar-check"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M8 2v4" />
<path d="M16 2v4" />
<rect width="18" height="18" x="3" y="4" rx="2" />
<path d="M3 10h18" />
<path d="m9 16 2 2 4-4" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-calendar-check" viewBox="0 0 24 24"><path d="M8 2v4M16 2v4"/><rect width="18" height="18" x="3" y="4" rx="2"/><path d="M3 10h18M9 16l2 2 4-4"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-video"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" />
<rect x="2" y="6" width="14" height="12" rx="2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-video" viewBox="0 0 24 24"><path d="m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"/><rect width="14" height="12" x="2" y="6" rx="2"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-videotape"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect width="20" height="16" x="2" y="4" rx="2" />
<path d="M2 8h20" />
<circle cx="8" cy="14" r="2" />
<path d="M8 12h8" />
<circle cx="16" cy="14" r="2" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-videotape" viewBox="0 0 24 24"><rect width="20" height="16" x="2" y="4" rx="2"/><path d="M2 8h20"/><circle cx="8" cy="14" r="2"/><path d="M8 12h8"/><circle cx="16" cy="14" r="2"/></svg>`;

View File

@@ -1,18 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-candy"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z" />
<path d="M14 6.5v10" />
<path d="M10 7.5v10" />
<path d="m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1" />
<path d="m8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-candy" viewBox="0 0 24 24"><path d="m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7M14 6.5v10M10 7.5v10"/><path d="m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1M8 17l-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1"/></svg>`;

View File

@@ -1,15 +1 @@
export default `<!-- @license lucide-static v0.471.0 - ISC -->
<svg
class="lucide lucide-arrow-big-up-dash"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M9 19h6" />
<path d="M9 15v-3H5l7-7 7 7h-4v3H9z" />
</svg>
`;
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-arrow-big-up-dash" viewBox="0 0 24 24"><path d="M9 19h6M9 15v-3H5l7-7 7 7h-4v3z"/></svg>`;

Some files were not shown because too many files have changed in this diff Show More