From 0c01c1b5471d686c1cdf6424d2924185623bfdff Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Wed, 13 Oct 2021 16:27:47 +0200 Subject: [PATCH] Enhance build process & update artifacts --- .eslintrc.cjs | 14 + bin/build.js | 297 +- bin/header.css | 6 + css/iconoir.css | 3915 +---------------- meta-data.json | 2 +- package-lock.json | 1159 ++++- package.json | 10 +- .../iconoir-react-native/package-lock.json | 258 +- packages/iconoir-react-native/package.json | 8 +- .../iconoir-react-native/src/AppleWallet.tsx | 32 + packages/iconoir-react-native/src/Atom.tsx | 42 + .../src/Backward15Seconds.tsx | 36 + packages/iconoir-react-native/src/Bonfire.tsx | 41 + packages/iconoir-react-native/src/Book.tsx | 36 + .../iconoir-react-native/src/BookStack.tsx | 35 + .../iconoir-react-native/src/BookmarkBook.tsx | 42 + packages/iconoir-react-native/src/Carbon.tsx | 36 + .../iconoir-react-native/src/CardWallet.tsx | 35 + .../iconoir-react-native/src/CodeBrackets.tsx | 30 + .../src/CodeBracketsSquare.tsx | 36 + .../src/FavouriteBook.tsx | 41 + .../iconoir-react-native/src/FireFlame.tsx | 36 + packages/iconoir-react-native/src/Flask.tsx | 31 + .../iconoir-react-native/src/Fluorine.tsx | 36 + .../src/Forward15Seconds.tsx | 36 + .../iconoir-react-native/src/HdDisplay.tsx | 34 + .../iconoir-react-native/src/Hydrogen.tsx | 30 + .../iconoir-react-native/src/LockedBook.tsx | 42 + packages/iconoir-react-native/src/Magnet.tsx | 36 + .../iconoir-react-native/src/MagnetEnergy.tsx | 47 + .../iconoir-react-native/src/MathBook.tsx | 42 + .../iconoir-react-native/src/Nitrogen.tsx | 36 + .../src/NumberedListLeft.tsx | 30 + .../src/NumberedListRight.tsx | 30 + packages/iconoir-react-native/src/Oxygen.tsx | 36 + .../iconoir-react-native/src/PageEdit.tsx | 43 + .../iconoir-react-native/src/RoundFlask.tsx | 31 + .../src/SidebarCollapse.tsx | 36 + .../src/SidebarExpand.tsx | 36 + .../iconoir-react-native/src/TaskList.tsx | 30 + .../iconoir-react-native/src/TestTube.tsx | 30 + packages/iconoir-react-native/src/Wallet.tsx | 39 + packages/iconoir-react-native/src/index.tsx | 33 + packages/iconoir-react-native/tsconfig.json | 1 - .../iconoir-react-native/tsup.config.json | 1 - packages/iconoir-react/package-lock.json | 240 +- packages/iconoir-react/package.json | 6 +- packages/iconoir-react/src/AppleWallet.tsx | 32 + packages/iconoir-react/src/Atom.tsx | 42 + .../iconoir-react/src/Backward15Seconds.tsx | 36 + packages/iconoir-react/src/Bonfire.tsx | 41 + packages/iconoir-react/src/Book.tsx | 36 + packages/iconoir-react/src/BookStack.tsx | 35 + packages/iconoir-react/src/BookmarkBook.tsx | 42 + packages/iconoir-react/src/Carbon.tsx | 36 + packages/iconoir-react/src/CardWallet.tsx | 35 + packages/iconoir-react/src/CodeBrackets.tsx | 30 + .../iconoir-react/src/CodeBracketsSquare.tsx | 36 + packages/iconoir-react/src/FavouriteBook.tsx | 41 + packages/iconoir-react/src/FireFlame.tsx | 36 + packages/iconoir-react/src/Flask.tsx | 31 + packages/iconoir-react/src/Fluorine.tsx | 36 + .../iconoir-react/src/Forward15Seconds.tsx | 36 + packages/iconoir-react/src/HdDisplay.tsx | 34 + packages/iconoir-react/src/Hydrogen.tsx | 30 + packages/iconoir-react/src/LockedBook.tsx | 42 + packages/iconoir-react/src/Magnet.tsx | 36 + packages/iconoir-react/src/MagnetEnergy.tsx | 47 + packages/iconoir-react/src/MathBook.tsx | 42 + packages/iconoir-react/src/Nitrogen.tsx | 36 + .../iconoir-react/src/NumberedListLeft.tsx | 30 + .../iconoir-react/src/NumberedListRight.tsx | 30 + packages/iconoir-react/src/Oxygen.tsx | 36 + packages/iconoir-react/src/PageEdit.tsx | 43 + packages/iconoir-react/src/RoundFlask.tsx | 31 + .../iconoir-react/src/SidebarCollapse.tsx | 36 + packages/iconoir-react/src/SidebarExpand.tsx | 36 + packages/iconoir-react/src/TaskList.tsx | 30 + packages/iconoir-react/src/TestTube.tsx | 30 + packages/iconoir-react/src/Wallet.tsx | 39 + packages/iconoir-react/src/index.tsx | 33 + packages/iconoir-react/tsconfig.json | 1 - packages/iconoir-react/tsup.config.json | 1 - 83 files changed, 4193 insertions(+), 4170 deletions(-) create mode 100644 .eslintrc.cjs create mode 100644 bin/header.css create mode 100644 packages/iconoir-react-native/src/AppleWallet.tsx create mode 100644 packages/iconoir-react-native/src/Atom.tsx create mode 100644 packages/iconoir-react-native/src/Backward15Seconds.tsx create mode 100644 packages/iconoir-react-native/src/Bonfire.tsx create mode 100644 packages/iconoir-react-native/src/Book.tsx create mode 100644 packages/iconoir-react-native/src/BookStack.tsx create mode 100644 packages/iconoir-react-native/src/BookmarkBook.tsx create mode 100644 packages/iconoir-react-native/src/Carbon.tsx create mode 100644 packages/iconoir-react-native/src/CardWallet.tsx create mode 100644 packages/iconoir-react-native/src/CodeBrackets.tsx create mode 100644 packages/iconoir-react-native/src/CodeBracketsSquare.tsx create mode 100644 packages/iconoir-react-native/src/FavouriteBook.tsx create mode 100644 packages/iconoir-react-native/src/FireFlame.tsx create mode 100644 packages/iconoir-react-native/src/Flask.tsx create mode 100644 packages/iconoir-react-native/src/Fluorine.tsx create mode 100644 packages/iconoir-react-native/src/Forward15Seconds.tsx create mode 100644 packages/iconoir-react-native/src/HdDisplay.tsx create mode 100644 packages/iconoir-react-native/src/Hydrogen.tsx create mode 100644 packages/iconoir-react-native/src/LockedBook.tsx create mode 100644 packages/iconoir-react-native/src/Magnet.tsx create mode 100644 packages/iconoir-react-native/src/MagnetEnergy.tsx create mode 100644 packages/iconoir-react-native/src/MathBook.tsx create mode 100644 packages/iconoir-react-native/src/Nitrogen.tsx create mode 100644 packages/iconoir-react-native/src/NumberedListLeft.tsx create mode 100644 packages/iconoir-react-native/src/NumberedListRight.tsx create mode 100644 packages/iconoir-react-native/src/Oxygen.tsx create mode 100644 packages/iconoir-react-native/src/PageEdit.tsx create mode 100644 packages/iconoir-react-native/src/RoundFlask.tsx create mode 100644 packages/iconoir-react-native/src/SidebarCollapse.tsx create mode 100644 packages/iconoir-react-native/src/SidebarExpand.tsx create mode 100644 packages/iconoir-react-native/src/TaskList.tsx create mode 100644 packages/iconoir-react-native/src/TestTube.tsx create mode 100644 packages/iconoir-react-native/src/Wallet.tsx create mode 100644 packages/iconoir-react/src/AppleWallet.tsx create mode 100644 packages/iconoir-react/src/Atom.tsx create mode 100644 packages/iconoir-react/src/Backward15Seconds.tsx create mode 100644 packages/iconoir-react/src/Bonfire.tsx create mode 100644 packages/iconoir-react/src/Book.tsx create mode 100644 packages/iconoir-react/src/BookStack.tsx create mode 100644 packages/iconoir-react/src/BookmarkBook.tsx create mode 100644 packages/iconoir-react/src/Carbon.tsx create mode 100644 packages/iconoir-react/src/CardWallet.tsx create mode 100644 packages/iconoir-react/src/CodeBrackets.tsx create mode 100644 packages/iconoir-react/src/CodeBracketsSquare.tsx create mode 100644 packages/iconoir-react/src/FavouriteBook.tsx create mode 100644 packages/iconoir-react/src/FireFlame.tsx create mode 100644 packages/iconoir-react/src/Flask.tsx create mode 100644 packages/iconoir-react/src/Fluorine.tsx create mode 100644 packages/iconoir-react/src/Forward15Seconds.tsx create mode 100644 packages/iconoir-react/src/HdDisplay.tsx create mode 100644 packages/iconoir-react/src/Hydrogen.tsx create mode 100644 packages/iconoir-react/src/LockedBook.tsx create mode 100644 packages/iconoir-react/src/Magnet.tsx create mode 100644 packages/iconoir-react/src/MagnetEnergy.tsx create mode 100644 packages/iconoir-react/src/MathBook.tsx create mode 100644 packages/iconoir-react/src/Nitrogen.tsx create mode 100644 packages/iconoir-react/src/NumberedListLeft.tsx create mode 100644 packages/iconoir-react/src/NumberedListRight.tsx create mode 100644 packages/iconoir-react/src/Oxygen.tsx create mode 100644 packages/iconoir-react/src/PageEdit.tsx create mode 100644 packages/iconoir-react/src/RoundFlask.tsx create mode 100644 packages/iconoir-react/src/SidebarCollapse.tsx create mode 100644 packages/iconoir-react/src/SidebarExpand.tsx create mode 100644 packages/iconoir-react/src/TaskList.tsx create mode 100644 packages/iconoir-react/src/TestTube.tsx create mode 100644 packages/iconoir-react/src/Wallet.tsx diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 00000000..982b2fa1 --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,14 @@ +module.exports = { + env: { + es2021: true, + node: true, + }, + extends: ['eslint:recommended', 'plugin:prettier/recommended'], + parserOptions: { + ecmaVersion: 13, + sourceType: 'module', + }, + rules: { + 'prettier/prettier': ['error'], + }, +}; diff --git a/bin/build.js b/bin/build.js index 68fc45ae..6f9cb566 100644 --- a/bin/build.js +++ b/bin/build.js @@ -27,8 +27,13 @@ const incompatibleNames = { // Targets for building icons const targets = { - 'iconoir-react': 'packages/iconoir-react', - 'iconoir-react-native': 'packages/iconoir-react-native', + 'meta-data': { path: 'meta-data.json' }, + css: { path: 'css/iconoir.css' }, + 'iconoir-react': { react: true, path: 'packages/iconoir-react' }, + 'iconoir-react-native': { + react: true, + path: 'packages/iconoir-react-native', + }, }; // Get targets from command line arguments @@ -51,149 +56,213 @@ args.forEach((target) => { const tasks = new Listr( [ { - title: 'Fetching icon files', + title: 'Fetching icons', task: async (ctx) => { - try { - ctx.iconoirIconsFiles = await fs.readdir(iconoirIconsDir); - } catch (err) { - ctx.skip = true; - throw new Error(err.message); - } + ctx.iconoirIconsFiles = await fs.readdir(iconoirIconsDir); }, }, { - title: 'Generating meta-data.json file', - skip: (ctx) => ctx.skip, - task: async (ctx) => { - await fs.writeFile( - path.join(rootDir, 'meta-data.json'), - JSON.stringify({ icons: ctx.iconoirIconsFiles }) - ); - }, - }, - { - title: 'Creating temporary directory', - skip: (ctx) => ctx.skip, - task: async (ctx) => { - try { - ctx.tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), 'iconoir-')); - } catch (err) { - ctx.skip = true; - throw new Error(err.message); - } - }, - }, - { - title: - 'Copying icon files to temporary directory, while renaming icons with incompatible names', - skip: (ctx) => ctx.skip, - task: async (ctx) => { - try { - const promises = ctx.iconoirIconsFiles.map((file) => { - const srcFilePath = path.join(iconoirIconsDir, file); - const iconName = file.split('.')[0]; - const dstFileName = - iconName in incompatibleNames - ? incompatibleNames[iconName] - : iconName; - const dstFilePath = path.join(ctx.tmpDir, `${dstFileName}.svg`); - - return fs.copyFile(srcFilePath, dstFilePath); - }); - return Promise.all(promises).catch((err) => { - ctx.skip = true; - throw new Error(err.message); - }); - } catch (err) { - ctx.skip = true; - throw new Error(err.message); - } - }, - }, - { - title: 'Generating icons', - skip: (ctx) => ctx.skip, - task: (_, task) => { - const tasks = Object.entries(targets) - .filter( - ([targetName]) => - cliTargets.length === 0 || cliTargets.includes(targetName) - ) - .map(([targetName, targetDir]) => { - const builtIconsDir = path.join(rootDir, targetDir, 'src'); - return { - title: targetName, + title: 'Building targets', + skip: (ctx) => !ctx.iconoirIconsFiles, + task: (_, task) => + task.newListr( + [ + { + title: 'Building meta-data file', + enabled: () => + cliTargets.length === 0 || cliTargets.includes('meta-data'), + task: async (ctx) => { + await fs.writeFile( + path.join(rootDir, targets['meta-data'].path), + JSON.stringify({ icons: ctx.iconoirIconsFiles }) + ); + }, + }, + { + title: 'Building CSS file', + enabled: () => + cliTargets.length === 0 || cliTargets.includes('css'), + task: async (ctx) => { + const content = [ + await fs.readFile(path.join(__dirname, 'header.css'), 'utf8'), + ]; + content.push( + 'i[class*=" iconoir-"]::before,i[class^=iconoir-]::before{line-height:1;position:relative;top:4px}' + ); + ctx.iconoirIconsFiles.forEach((file) => { + content.push( + `.iconoir-${ + path.parse(file).name + }::before{content:url(../icons/${file})}` + ); + }); + await fs.writeFile( + path.join(rootDir, targets.css.path), + content + ); + }, + }, + { + title: 'Building React libraries', + enabled: () => + cliTargets.length === 0 || + cliTargets.filter((cliTarget) => targets[cliTarget]?.react) + .length > 0, task: (_, task) => task.newListr( [ { - title: 'Cleaning target directory', + title: 'Creating temporary directory', task: async (ctx) => { try { - const files = await fs.readdir(builtIconsDir); - const promises = files.map((file) => { - return fs.unlink(path.join(builtIconsDir, file)); - }); - return Promise.all(promises).catch((err) => { - ctx[targetName] = { skip: true }; - throw new Error(err.message); - }); + ctx.tmpDir = await fs.mkdtemp( + path.join(os.tmpdir(), 'iconoir-') + ); } catch (err) { - ctx[targetName] = { skip: true }; + ctx.skip = true; throw new Error(err.message); } }, }, { - title: 'Generating icons', - skip: (ctx) => ctx[targetName] && ctx[targetName].skip, + title: + 'Copying icon files to temporary directory, while renaming icons with incompatible names', + skip: (ctx) => ctx.skip, task: async (ctx) => { try { - await execa( - 'svgr', - [ - '--config-file', - path.join(targetDir, '.svgrrc.json'), - '--prettier-config', - path.join(rootDir, '.prettierrc.json'), - '--out-dir', - builtIconsDir, + const promises = ctx.iconoirIconsFiles.map((file) => { + const srcFilePath = path.join( + iconoirIconsDir, + file + ); + const iconName = file.split('.')[0]; + const dstFileName = + iconName in incompatibleNames + ? incompatibleNames[iconName] + : iconName; + const dstFilePath = path.join( ctx.tmpDir, - ], - { preferLocal: true } - ); + `${dstFileName}.svg` + ); + + return fs.copyFile(srcFilePath, dstFilePath); + }); + return Promise.all(promises).catch((err) => { + ctx.skip = true; + throw new Error(err.message); + }); } catch (err) { + ctx.skip = true; throw new Error(err.message); } }, }, + { + skip: (ctx) => ctx.skip, + task: (_, task) => { + const targetsToBuild = + cliTargets.length > 0 + ? cliTargets.filter( + (cliTarget) => targets[cliTarget]?.react + ) + : Object.keys(targets).filter( + (target) => targets[target].react + ); + const tasks = targetsToBuild.map((target) => { + const builtIconsDir = path.join( + rootDir, + targets[target].path, + 'src' + ); + return { + title: `Building ${target}`, + task: (_, task) => + task.newListr( + [ + { + title: 'Cleaning target directory', + task: async (ctx) => { + try { + const files = await fs.readdir( + builtIconsDir + ); + const promises = files.map((file) => { + return fs.unlink( + path.join(builtIconsDir, file) + ); + }); + return Promise.all(promises).catch( + (err) => { + ctx[target] = { skip: true }; + throw new Error(err.message); + } + ); + } catch (err) { + ctx[target] = { skip: true }; + throw new Error(err.message); + } + }, + }, + { + title: 'Building icon files', + skip: (ctx) => ctx[target]?.skip, + task: async (ctx) => { + try { + await execa( + 'svgr', + [ + '--config-file', + path.join( + targets[target].path, + '.svgrrc.json' + ), + '--prettier-config', + path.join( + rootDir, + '.prettierrc.json' + ), + '--out-dir', + builtIconsDir, + ctx.tmpDir, + ], + { preferLocal: true } + ); + } catch (err) { + throw new Error(err.message); + } + }, + }, + ], + { concurrent: false, exitOnError: false } + ), + }; + }); + return task.newListr(tasks, { + concurrent: true, + rendererOptions: { collapse: false }, + }); + }, + }, + { + title: 'Removing temporary directory', + skip: (ctx) => !ctx.tmpDir, + task: async (ctx) => { + await fs.rm(ctx.tmpDir, { recursive: true }); + }, + }, ], - { concurrent: false, exitOnError: false } + { concurrent: false } ), - }; - }); - return task.newListr(tasks, { - concurrent: true, - rendererOptions: { collapse: false }, - }); - }, - }, - { - title: 'Removing temporary directory', - skip: (ctx) => !ctx.tmpDir, - task: async (ctx) => { - try { - await fs.rm(ctx.tmpDir, { recursive: true }); - } catch (err) { - throw new Error(err.message); - } - }, + }, + ], + { concurrent: true } + ), }, ], { concurrent: false, exitOnError: false, - rendererOptions: { collapseErrors: false }, + rendererOptions: { collapse: false, collapseErrors: false }, } ); diff --git a/bin/header.css b/bin/header.css new file mode 100644 index 00000000..9d95c3c5 --- /dev/null +++ b/bin/header.css @@ -0,0 +1,6 @@ +/*! + * Iconoir + * Copyright (c) 2021 Luca Burgio - https://iconoir.com + * License - https://github.com/lucaburgio/iconoir/blob/master/LICENSE (Code: MIT License) + * CSS file created by Till Esser (@Wiwaltill) and automated by Pascal Jufer (@paescuj) + */ diff --git a/css/iconoir.css b/css/iconoir.css index e3ef0406..b242fcf4 100644 --- a/css/iconoir.css +++ b/css/iconoir.css @@ -2,3917 +2,6 @@ * Iconoir * Copyright (c) 2021 Luca Burgio - https://iconoir.com * License - https://github.com/lucaburgio/iconoir/blob/master/LICENSE (Code: MIT License) - * CSS-File created by Till Esser @Wiwaltill + * CSS file created by Till Esser (@Wiwaltill) and automated by Pascal Jufer (@paescuj) */ - -i[class^="iconoir-"]::before, i[class*=" iconoir-"]::before{ - line-height:1; - position: relative; - top: 4px; -} - -.iconoir-hand-brake::before { - content: url('../icons/hand-brake.svg'); -} - -.iconoir-on-rounded::before { - content: url('../icons/on-rounded.svg'); -} - -.iconoir-off-rounded::before { - content: url('../icons/off-rounded.svg'); -} - -.iconoir-fx-rounded::before { - content: url('../icons/fx-rounded.svg'); -} - -.iconoir-hat::before { - content: url('../icons/hat.svg'); -} - -.iconoir-beach-bag-big::before { - content: url('../icons/beach-bag-big.svg'); -} - -.iconoir-beach-bag::before { - content: url('../icons/beach-bag.svg'); -} - -.iconoir-golf::before { - content: url('../icons/golf.svg'); -} - -.iconoir-health-shield::before { - content: url('../icons/health-shield.svg'); -} - -.iconoir-hospital-sign::before { - content: url('../icons/hospital-sign.svg'); -} - -.iconoir-pharmacy-circled-cross::before { - content: url('../icons/pharmacy-circled-cross.svg'); -} - -.iconoir-pharmacy-squared-cross::before { - content: url('../icons/pharmacy-squared-cross.svg'); -} - -.iconoir-pin::before { - content: url('../icons/pin.svg'); -} - -.iconoir-input-search::before { - content: url('../icons/input-search.svg'); -} - -.iconoir-cursor-pointer::before { - content: url('../icons/cursor-pointer.svg'); -} - -.iconoir-bin-half::before { - content: url('../icons/bin-half.svg'); -} - -.iconoir-bin-full::before { - content: url('../icons/bin-full.svg'); -} - -.iconoir-bin::before { - content: url('../icons/bin.svg'); -} - -.iconoir-grid-remove::before { - content: url('../icons/grid-remove.svg'); -} - -.iconoir-grid-add::before { - content: url('../icons/grid-add.svg'); -} - -.iconoir-grid-minus::before { - content: url('../icons/grid-minus.svg'); -} - -.iconoir-shield-alt::before { - content: url('../icons/shield-alt.svg'); -} - -.iconoir-shield-question::before { - content: url('../icons/shield-question.svg'); -} - -.iconoir-shield-upload::before { - content: url('../icons/shield-upload.svg'); -} - -.iconoir-shield-download::before { - content: url('../icons/shield-download.svg'); -} - -.iconoir-shield-eye::before { - content: url('../icons/shield-eye.svg'); -} - -.iconoir-shield-search::before { - content: url('../icons/shield-search.svg'); -} - -.iconoir-shield-minus::before { - content: url('../icons/shield-minus.svg'); -} - -.iconoir-shield-add::before { - content: url('../icons/shield-add.svg'); -} - -.iconoir-shield-broken::before { - content: url('../icons/shield-broken.svg'); -} - -.iconoir-shield-loading::before { - content: url('../icons/shield-loading.svg'); -} - -.iconoir-shield-check::before { - content: url('../icons/shield-check.svg'); -} - -.iconoir-shield-cross::before { - content: url('../icons/shield-cross.svg'); -} - -.iconoir-shield-alert::before { - content: url('../icons/shield-alert.svg'); -} - -.iconoir-bin-minus::before { - content: url('../icons/bin-minus.svg'); -} - -.iconoir-bin-add::before { - content: url('../icons/bin-add.svg'); -} - -.iconoir-shield::before { - content: url('../icons/shield.svg'); -} - -.iconoir-historic-shield::before { - content: url('../icons/historic-shield.svg'); -} - -.iconoir-navigator-alt::before { - content: url('../icons/navigator-alt.svg'); -} - -.iconoir-navigator::before { - content: url('../icons/navigator.svg'); -} - -.iconoir-user-circle-alt::before { - content: url('../icons/user-circle-alt.svg'); -} - -.iconoir-user-square-alt::before { - content: url('../icons/user-square-alt.svg'); -} - -.iconoir-octagon::before { - content: url('../icons/octagon.svg'); -} - -.iconoir-settings-profiles::before { - content: url('../icons/settings-profiles.svg'); -} - -.iconoir-flare::before { - content: url('../icons/flare.svg'); -} - -.iconoir-twitter-verified-badge::before { - content: url('../icons/twitter-verified-badge.svg'); -} - -.iconoir-verified-badge::before { - content: url('../icons/verified-badge.svg'); -} - -.iconoir-heptagon::before { - content: url('../icons/heptagon.svg'); -} - -.iconoir-minus-hexagon::before { - content: url('../icons/minus-hexagon.svg'); -} - -.iconoir-male::before { - content: url('../icons/male.svg'); -} - -.iconoir-female::before { - content: url('../icons/female.svg'); -} - -.iconoir-add-hexagon::before { - content: url('../icons/add-hexagon.svg'); -} - -.iconoir-hexagon-alt::before { - content: url('../icons/hexagon-alt.svg'); -} - -.iconoir-hexagon::before { - content: url('../icons/hexagon.svg'); -} - -.iconoir-pentagon::before { - content: url('../icons/pentagon.svg'); -} - -.iconoir-priority-down::before { - content: url('../icons/priority-down.svg'); -} - -.iconoir-priority-up::before { - content: url('../icons/priority-up.svg'); -} - -.iconoir-high-priority::before { - content: url('../icons/high-priority.svg'); -} - -.iconoir-rhombus::before { - content: url('../icons/rhombus.svg'); -} - -.iconoir-copyright::before { - content: url('../icons/copyright.svg'); -} - -.iconoir-trademark::before { - content: url('../icons/trademark.svg'); -} - -.iconoir-circle::before { - content: url('../icons/circle.svg'); -} - -.iconoir-weight-alt::before { - content: url('../icons/weight-alt.svg'); -} - -.iconoir-weight::before { - content: url('../icons/weight.svg'); -} - -.iconoir-key-alt-remove::before { - content: url('../icons/key-alt-remove.svg'); -} - -.iconoir-key-alt-minus::before { - content: url('../icons/key-alt-minus.svg'); -} - -.iconoir-key-alt-plus::before { - content: url('../icons/key-alt-plus.svg'); -} - -.iconoir-key-alt::before { - content: url('../icons/key-alt.svg'); -} - -.iconoir-key-alt-back::before { - content: url('../icons/key-alt-back.svg'); -} - -.iconoir-square::before { - content: url('../icons/square.svg'); -} - -.iconoir-triangle::before { - content: url('../icons/triangle.svg'); -} - -.iconoir-flower::before { - content: url('../icons/flower.svg'); -} - -.iconoir-palette::before { - content: url('../icons/palette.svg'); -} - -.iconoir-corner-top-left::before { - content: url('../icons/corner-top-left.svg'); -} - -.iconoir-corner-top-right::before { - content: url('../icons/corner-top-right.svg'); -} - -.iconoir-corner-bottom-right::before { - content: url('../icons/corner-bottom-right.svg'); -} - -.iconoir-corner-bottom-left::before { - content: url('../icons/corner-bottom-left.svg'); -} - -.iconoir-panorama-enlarge::before { - content: url('../icons/panorama-enlarge.svg'); -} - -.iconoir-panorama-reduce::before { - content: url('../icons/panorama-reduce.svg'); -} - -.iconoir-mac-dock::before { - content: url('../icons/mac-dock.svg'); -} - -.iconoir-import::before { - content: url('../icons/import.svg'); -} - -.iconoir-metro::before { - content: url('../icons/metro.svg'); -} - -.iconoir-fast-arrow-down::before { - content: url('../icons/fast-arrow-down.svg'); -} - -.iconoir-fast-arrow-top::before { - content: url('../icons/fast-arrow-top.svg'); -} - -.iconoir-fast-arrow-left::before { - content: url('../icons/fast-arrow-left.svg'); -} - -.iconoir-light-bulb-on::before { - content: url('../icons/light-bulb-on.svg'); -} - -.iconoir-light-bulb-off::before { - content: url('../icons/light-bulb-off.svg'); -} - -.iconoir-light-bulb::before { - content: url('../icons/light-bulb.svg'); -} - -.iconoir-arrow-separate-vertical::before { - content: url('../icons/arrow-separate-vertical.svg'); -} - -.iconoir-arrow-separate::before { - content: url('../icons/arrow-separate.svg'); -} - -.iconoir-arrow-union-vertical::before { - content: url('../icons/arrow-union-vertical.svg'); -} - -.iconoir-arrow-union::before { - content: url('../icons/arrow-union.svg'); -} - -.iconoir-fast-arrow-down-box::before { - content: url('../icons/fast-arrow-down-box.svg'); -} - -.iconoir-fast-arrow-up-box::before { - content: url('../icons/fast-arrow-up-box.svg'); -} - -.iconoir-fast-arrow-left-box::before { - content: url('../icons/fast-arrow-left-box.svg'); -} - -.iconoir-cpu-warning::before { - content: url('../icons/cpu-warning.svg'); -} - -.iconoir-cpu::before { - content: url('../icons/cpu.svg'); -} - -.iconoir-enlarge-round-arrow::before { - content: url('../icons/enlarge-round-arrow.svg'); -} - -.iconoir-left-round-arrow::before { - content: url('../icons/left-round-arrow.svg'); -} - -.iconoir-right-round-arrow::before { - content: url('../icons/right-round-arrow.svg'); -} - -.iconoir-fast-arrow-right-box::before { - content: url('../icons/fast-arrow-right-box.svg'); -} - -.iconoir-fast-bottom-circle::before { - content: url('../icons/fast-bottom-circle.svg'); -} - -.iconoir-fast-top-circle::before { - content: url('../icons/fast-top-circle.svg'); -} - -.iconoir-fast-left-circle::before { - content: url('../icons/fast-left-circle.svg'); -} - -.iconoir-fast-right-circle::before { - content: url('../icons/fast-right-circle.svg'); -} - -.iconoir-fast-arrow-right::before { - content: url('../icons/fast-arrow-right.svg'); -} - -.iconoir-tower-warning::before { - content: url('../icons/tower-warning.svg'); -} - -.iconoir-tower-check::before { - content: url('../icons/tower-check.svg'); -} - -.iconoir-tower-no-access::before { - content: url('../icons/tower-no-access.svg'); -} - -.iconoir-tower::before { - content: url('../icons/tower.svg'); -} - -.iconoir-translate::before { - content: url('../icons/translate.svg'); -} - -.iconoir-battery-50::before { - content: url('../icons/battery-50.svg'); -} - -.iconoir-battery-full::before { - content: url('../icons/battery-full.svg'); -} - -.iconoir-battery-75::before { - content: url('../icons/battery-75.svg'); -} - -.iconoir-battery-25::before { - content: url('../icons/battery-25.svg'); -} - -.iconoir-battery-warning::before { - content: url('../icons/battery-warning.svg'); -} - -.iconoir-no-battery::before { - content: url('../icons/no-battery.svg'); -} - -.iconoir-mac-os-window::before { - content: url('../icons/mac-os-window.svg'); -} - -.iconoir-web-window-energy-consumption::before { - content: url('../icons/web-window-energy-consumption.svg'); -} - -.iconoir-web-window-close::before { - content: url('../icons/web-window-close.svg'); -} - -.iconoir-multi-mac-os-window::before { - content: url('../icons/multi-mac-os-window.svg'); -} - -.iconoir-multi-window::before { - content: url('../icons/multi-window.svg'); -} - -.iconoir-web-window::before { - content: url('../icons/web-window.svg'); -} - -.iconoir-ev-rounded::before { - content: url('../icons/ev-rounded.svg'); -} - -.iconoir-ev-charge-alt::before { - content: url('../icons/ev-charge-alt.svg'); -} - -.iconoir-ev-plug-error::before { - content: url('../icons/ev-plug-error.svg'); -} - -.iconoir-ev-plug-charging::before { - content: url('../icons/ev-plug-charging.svg'); -} - -.iconoir-ev-plug::before { - content: url('../icons/ev-plug.svg'); -} - -.iconoir-ev-charge::before { - content: url('../icons/ev-charge.svg'); -} - -.iconoir-ev-station::before { - content: url('../icons/ev-station.svg'); -} - -.iconoir-battery-charging::before { - content: url('../icons/battery-charging.svg'); -} - -.iconoir-battery-empty::before { - content: url('../icons/battery-empty.svg'); -} - -.iconoir-remove-selection::before { - content: url('../icons/remove-selection.svg'); -} - -.iconoir-add-selection::before { - content: url('../icons/add-selection.svg'); -} - -.iconoir-4x4-cell::before { - content: url('../icons/4x4-cell.svg'); -} - -.iconoir-remove-user::before { - content: url('../icons/remove-user.svg'); -} - -.iconoir-add-user::before { - content: url('../icons/add-user.svg'); -} - -.iconoir-group::before { - content: url('../icons/group.svg'); -} - -.iconoir-shopping-code-error::before { - content: url('../icons/shopping-code-error.svg'); -} - -.iconoir-shopping-code-check::before { - content: url('../icons/shopping-code-check.svg'); -} - -.iconoir-shopping-code::before { - content: url('../icons/shopping-code.svg'); -} - -.iconoir-user-bag::before { - content: url('../icons/user-bag.svg'); -} - -.iconoir-user-cart::before { - content: url('../icons/user-cart.svg'); -} - -.iconoir-verified-user::before { - content: url('../icons/verified-user.svg'); -} - -.iconoir-user::before { - content: url('../icons/user.svg'); -} - -.iconoir-planet-alt::before { - content: url('../icons/planet-alt.svg'); -} - -.iconoir-moon-sat::before { - content: url('../icons/moon-sat.svg'); -} - -.iconoir-planet-sat::before { - content: url('../icons/planet-sat.svg'); -} - -.iconoir-planet::before { - content: url('../icons/planet.svg'); -} - -.iconoir-bicycle::before { - content: url('../icons/bicycle.svg'); -} - -.iconoir-nav-arrow-down::before { - content: url('../icons/nav-arrow-down.svg'); -} - -.iconoir-nav-arrow-left::before { - content: url('../icons/nav-arrow-left.svg'); -} - -.iconoir-nav-arrow-right::before { - content: url('../icons/nav-arrow-right.svg'); -} - -.iconoir-nav-arrow-up::before { - content: url('../icons/nav-arrow-up.svg'); -} - -.iconoir-de-compress::before { - content: url('../icons/de-compress.svg'); -} - -.iconoir-control-slider::before { - content: url('../icons/control-slider.svg'); -} - -.iconoir-accessibility-sign::before { - content: url('../icons/accessibility-sign.svg'); -} - -.iconoir-accessibility-tech::before { - content: url('../icons/accessibility-tech.svg'); -} - -.iconoir-system-shut::before { - content: url('../icons/system-shut.svg'); -} - -.iconoir-system-restart::before { - content: url('../icons/system-restart.svg'); -} - -.iconoir-mac-control-key::before { - content: url('../icons/mac-control-key.svg'); -} - -.iconoir-mac-option-key::before { - content: url('../icons/mac-option-key.svg'); -} - -.iconoir-calculator::before { - content: url('../icons/calculator.svg'); -} - -.iconoir-ios-settings::before { - content: url('../icons/ios-settings.svg'); -} - -.iconoir-accessibility::before { - content: url('../icons/accessibility.svg'); -} - -.iconoir-finder::before { - content: url('../icons/finder.svg'); -} - -.iconoir-terminal-simple::before { - content: url('../icons/terminal-simple.svg'); -} - -.iconoir-terminal-outline::before { - content: url('../icons/terminal-outline.svg'); -} - -.iconoir-compress::before { - content: url('../icons/compress.svg'); -} - -.iconoir-camera::before { - content: url('../icons/camera.svg'); -} - -.iconoir-compact-disc::before { - content: url('../icons/compact-disc.svg'); -} - -.iconoir-view-structure-up::before { - content: url('../icons/view-structure-up.svg'); -} - -.iconoir-view-structure-down::before { - content: url('../icons/view-structure-down.svg'); -} - -.iconoir-view-grid::before { - content: url('../icons/view-grid.svg'); -} - -.iconoir-album-open::before { - content: url('../icons/album-open.svg'); -} - -.iconoir-album-list::before { - content: url('../icons/album-list.svg'); -} - -.iconoir-music-1-add::before { - content: url('../icons/music-1-add.svg'); -} - -.iconoir-music-1::before { - content: url('../icons/music-1.svg'); -} - -.iconoir-snow::before { - content: url('../icons/snow.svg'); -} - -.iconoir-fog::before { - content: url('../icons/fog.svg'); -} - -.iconoir-thunderstorm::before { - content: url('../icons/thunderstorm.svg'); -} - -.iconoir-rain::before { - content: url('../icons/rain.svg'); -} - -.iconoir-snow-flake::before { - content: url('../icons/snow-flake.svg'); -} - -.iconoir-wind::before { - content: url('../icons/wind.svg'); -} - -.iconoir-heavy-rain::before { - content: url('../icons/heavy-rain.svg'); -} - -.iconoir-cloud-sunny::before { - content: url('../icons/cloud-sunny.svg'); -} - -.iconoir-cloud::before { - content: url('../icons/cloud.svg'); -} - -.iconoir-sun-light::before { - content: url('../icons/sun-light.svg'); -} - -.iconoir-tram::before { - content: url('../icons/tram.svg'); -} - -.iconoir-train-outline::before { - content: url('../icons/train-outline.svg'); -} - -.iconoir-airplane-off::before { - content: url('../icons/airplane-off.svg'); -} - -.iconoir-airplane::before { - content: url('../icons/airplane.svg'); -} - -.iconoir-bus-stop::before { - content: url('../icons/bus-stop.svg'); -} - -.iconoir-bus-outline::before { - content: url('../icons/bus-outline.svg'); -} - -.iconoir-settings::before { - content: url('../icons/settings.svg'); -} - -.iconoir-rotate-camera-left::before { - content: url('../icons/rotate-camera-left.svg'); -} - -.iconoir-rotate-camera-right::before { - content: url('../icons/rotate-camera-right.svg'); -} - -.iconoir-maps-arrow-diagonal::before { - content: url('../icons/maps-arrow-diagonal.svg'); -} - -.iconoir-maps-turn-back::before { - content: url('../icons/maps-turn-back.svg'); -} - -.iconoir-maps-go-straight::before { - content: url('../icons/maps-go-straight.svg'); -} - -.iconoir-maps-turn-left::before { - content: url('../icons/maps-turn-left.svg'); -} - -.iconoir-maps-turn-right::before { - content: url('../icons/maps-turn-right.svg'); -} - -.iconoir-maps-arrow-issue::before { - content: url('../icons/maps-arrow-issue.svg'); -} - -.iconoir-maps-arrow::before { - content: url('../icons/maps-arrow.svg'); -} - -.iconoir-video-camera-off::before { - content: url('../icons/video-camera-off.svg'); -} - -.iconoir-video-camera::before { - content: url('../icons/video-camera.svg'); -} - -.iconoir-mouse-button-right::before { - content: url('../icons/mouse-button-right.svg'); -} - -.iconoir-mouse-button-left::before { - content: url('../icons/mouse-button-left.svg'); -} - -.iconoir-mouse-scroll-wheel::before { - content: url('../icons/mouse-scroll-wheel.svg'); -} - -.iconoir-pc-mouse::before { - content: url('../icons/pc-mouse.svg'); -} - -.iconoir-switch-on-outline::before { - content: url('../icons/switch-on-outline.svg'); -} - -.iconoir-switch-off-outline::before { - content: url('../icons/switch-off-outline.svg'); -} - -.iconoir-layout-right::before { - content: url('../icons/layout-right.svg'); -} - -.iconoir-layout-left::before { - content: url('../icons/layout-left.svg'); -} - -.iconoir-heart::before { - content: url('../icons/heart.svg'); -} - -.iconoir-view-columns-3::before { - content: url('../icons/view-columns-3.svg'); -} - -.iconoir-view-columns-2::before { - content: url('../icons/view-columns-2.svg'); -} - -.iconoir-repeat-once::before { - content: url('../icons/repeat-once.svg'); -} - -.iconoir-repeat::before { - content: url('../icons/repeat.svg'); -} - -.iconoir-shuffle::before { - content: url('../icons/shuffle.svg'); -} - -.iconoir-calendar::before { - content: url('../icons/calendar.svg'); -} - -.iconoir-playlist-play::before { - content: url('../icons/playlist-play.svg'); -} - -.iconoir-arrow-down::before { - content: url('../icons/arrow-down.svg'); -} - -.iconoir-arrow-up::before { - content: url('../icons/arrow-up.svg'); -} - -.iconoir-long-arrow-up-left::before { - content: url('../icons/long-arrow-up-left.svg'); -} - -.iconoir-long-arrow-up-right::before { - content: url('../icons/long-arrow-up-right.svg'); -} - -.iconoir-long-arrow-right-up::before { - content: url('../icons/long-arrow-right-up.svg'); -} - -.iconoir-long-arrow-left-up::before { - content: url('../icons/long-arrow-left-up.svg'); -} - -.iconoir-long-arrow-left-down::before { - content: url('../icons/long-arrow-left-down.svg'); -} - -.iconoir-long-arrow-right-down::before { - content: url('../icons/long-arrow-right-down.svg'); -} - -.iconoir-long-arrow-down-left::before { - content: url('../icons/long-arrow-down-left.svg'); -} - -.iconoir-long-arrow-down-right::before { - content: url('../icons/long-arrow-down-right.svg'); -} - -.iconoir-arrow-right::before { - content: url('../icons/arrow-right.svg'); -} - -.iconoir-arrow-left::before { - content: url('../icons/arrow-left.svg'); -} - -.iconoir-people-rounded::before { - content: url('../icons/people-rounded.svg'); -} - -.iconoir-instagram::before { - content: url('../icons/instagram.svg'); -} - -.iconoir-album::before { - content: url('../icons/album.svg'); -} - -.iconoir-album-carousel::before { - content: url('../icons/album-carousel.svg'); -} - -.iconoir-divide-selection-2::before { - content: url('../icons/divide-selection-2.svg'); -} - -.iconoir-divide-selection-1::before { - content: url('../icons/divide-selection-1.svg'); -} - -.iconoir-selection::before { - content: url('../icons/selection.svg'); -} - -.iconoir-maximize::before { - content: url('../icons/maximize.svg'); -} - -.iconoir-playlist::before { - content: url('../icons/playlist.svg'); -} - -.iconoir-telegram-circled::before { - content: url('../icons/telegram-circled.svg'); -} - -.iconoir-telegram::before { - content: url('../icons/telegram.svg'); -} - -.iconoir-pocket::before { - content: url('../icons/pocket.svg'); -} - -.iconoir-facebook-squared::before { - content: url('../icons/facebook-squared.svg'); -} - -.iconoir-linkedin::before { - content: url('../icons/linkedin.svg'); -} - -.iconoir-twitter::before { - content: url('../icons/twitter.svg'); -} - -.iconoir-facebook::before { - content: url('../icons/facebook.svg'); -} - -.iconoir-medium::before { - content: url('../icons/medium.svg'); -} - -.iconoir-dribbble::before { - content: url('../icons/dribbble.svg'); -} - -.iconoir-google-circled::before { - content: url('../icons/google-circled.svg'); -} - -.iconoir-google::before { - content: url('../icons/google.svg'); -} - -.iconoir-suggestion::before { - content: url('../icons/suggestion.svg'); -} - -.iconoir-remove-pin-alt::before { - content: url('../icons/remove-pin-alt.svg'); -} - -.iconoir-minus-pin-alt::before { - content: url('../icons/minus-pin-alt.svg'); -} - -.iconoir-add-pin-alt::before { - content: url('../icons/add-pin-alt.svg'); -} - -.iconoir-pin-alt::before { - content: url('../icons/pin-alt.svg'); -} - -.iconoir-gas::before { - content: url('../icons/gas.svg'); -} - -.iconoir-soap::before { - content: url('../icons/soap.svg'); -} - -.iconoir-type::before { - content: url('../icons/type.svg'); -} - -.iconoir-dash-flag::before { - content: url('../icons/dash-flag.svg'); -} - -.iconoir-white-flag::before { - content: url('../icons/white-flag.svg'); -} - -.iconoir-historic-shield-alt::before { - content: url('../icons/historic-shield-alt.svg'); -} - -.iconoir-down-round-arrow::before { - content: url('../icons/down-round-arrow.svg'); -} - -.iconoir-up-round-arrow::before { - content: url('../icons/up-round-arrow.svg'); -} - -.iconoir-reduce-round-arrow::before { - content: url('../icons/reduce-round-arrow.svg'); -} - -.iconoir-battery-indicator::before { - content: url('../icons/battery-indicator.svg'); -} - -.iconoir-file-not-found::before { - content: url('../icons/file-not-found.svg'); -} - -.iconoir-table-rows::before { - content: url('../icons/table-rows.svg'); -} - -.iconoir-log-denied::before { - content: url('../icons/log-denied.svg'); -} - -.iconoir-log-in::before { - content: url('../icons/log-in.svg'); -} - -.iconoir-log-out::before { - content: url('../icons/log-out.svg'); -} - -.iconoir-table-2-columns::before { - content: url('../icons/table-2-columns.svg'); -} - -.iconoir-fx::before { - content: url('../icons/fx.svg'); -} - -.iconoir-hd::before { - content: url('../icons/hd.svg'); -} - -.iconoir-hdr::before { - content: url('../icons/hdr.svg'); -} - -.iconoir-gps::before { - content: url('../icons/gps.svg'); -} - -.iconoir-table::before { - content: url('../icons/table.svg'); -} - -.iconoir-more-vert::before { - content: url('../icons/more-vert.svg'); -} - -.iconoir-more-horiz::before { - content: url('../icons/more-horiz.svg'); -} - -.iconoir-link::before { - content: url('../icons/link.svg'); -} - -.iconoir-arrow-right-circled::before { - content: url('../icons/arrow-right-circled.svg'); -} - -.iconoir-arrow-left-circled::before { - content: url('../icons/arrow-left-circled.svg'); -} - -.iconoir-arrow-up-circled::before { - content: url('../icons/arrow-up-circled.svg'); -} - -.iconoir-arrow-down-circled::before { - content: url('../icons/arrow-down-circled.svg'); -} - -.iconoir-triangle-flag-circle::before { - content: url('../icons/triangle-flag-circle.svg'); -} - -.iconoir-lifebelt::before { - content: url('../icons/lifebelt.svg'); -} - -.iconoir-flash-off::before { - content: url('../icons/flash-off.svg'); -} - -.iconoir-auto-flash::before { - content: url('../icons/auto-flash.svg'); -} - -.iconoir-flash::before { - content: url('../icons/flash.svg'); -} - -.iconoir-tiktok::before { - content: url('../icons/tiktok.svg'); -} - -.iconoir-rss-feed-squared::before { - content: url('../icons/rss-feed-squared.svg'); -} - -.iconoir-rss-feed::before { - content: url('../icons/rss-feed.svg'); -} - -.iconoir-youtube::before { - content: url('../icons/youtube.svg'); -} - -.iconoir-timer-off::before { - content: url('../icons/timer-off.svg'); -} - -.iconoir-alarm::before { - content: url('../icons/alarm.svg'); -} - -.iconoir-music-2-add::before { - content: url('../icons/music-2-add.svg'); -} - -.iconoir-music-2::before { - content: url('../icons/music-2.svg'); -} - -.iconoir-more-vert-circled-outline::before { - content: url('../icons/more-vert-circled-outline.svg'); -} - -.iconoir-more-horiz-circled-outline::before { - content: url('../icons/more-horiz-circled-outline.svg'); -} - -.iconoir-map-issue::before { - content: url('../icons/map-issue.svg'); -} - -.iconoir-map::before { - content: url('../icons/map.svg'); -} - -.iconoir-gas-tank-drop::before { - content: url('../icons/gas-tank-drop.svg'); -} - -.iconoir-gas-tank::before { - content: url('../icons/gas-tank.svg'); -} - -.iconoir-airplane-helix-45deg::before { - content: url('../icons/airplane-helix-45deg.svg'); -} - -.iconoir-airplane-helix::before { - content: url('../icons/airplane-helix.svg'); -} - -.iconoir-airplane-rotation::before { - content: url('../icons/airplane-rotation.svg'); -} - -.iconoir-car-outline::before { - content: url('../icons/car-outline.svg'); -} - -.iconoir-position::before { - content: url('../icons/position.svg'); -} - -.iconoir-eject::before { - content: url('../icons/eject.svg'); -} - -.iconoir-triangle-flag-full::before { - content: url('../icons/triangle-flag-full.svg'); -} - -.iconoir-triangle-flag::before { - content: url('../icons/triangle-flag.svg'); -} - -.iconoir-page-flip::before { - content: url('../icons/flip.svg'); -} - -.iconoir-dialpad::before { - content: url('../icons/dialpad.svg'); -} - -.iconoir-password-error::before { - content: url('../icons/password-error.svg'); -} - -.iconoir-security-pass::before { - content: url('../icons/security-pass.svg'); -} - -.iconoir-input-field::before { - content: url('../icons/input-field.svg'); -} - -.iconoir-password-cursor::before { - content: url('../icons/password-cursor.svg'); -} - -.iconoir-password-pass::before { - content: url('../icons/password-pass.svg'); -} - -.iconoir-no-lock::before { - content: url('../icons/no-lock.svg'); -} - -.iconoir-lock-key::before { - content: url('../icons/lock-key.svg'); -} - -.iconoir-lock::before { - content: url('../icons/lock.svg'); -} - -.iconoir-half-moon::before { - content: url('../icons/half-moon.svg'); -} - -.iconoir-activity::before { - content: url('../icons/activity.svg'); -} - -.iconoir-pause-outline::before { - content: url('../icons/pause-outline.svg'); -} - -.iconoir-language::before { - content: url('../icons/language.svg'); -} - -.iconoir-gifts::before { - content: url('../icons/gift.svg'); -} - -.iconoir-notes::before { - content: url('../icons/notes.svg'); -} - -.iconoir-skip-next-outline::before { - content: url('../icons/skip-next-outline.svg'); -} - -.iconoir-skip-prev-outline::before { - content: url('../icons/skip-prev-outline.svg'); -} - -.iconoir-rewind-outline::before { - content: url('../icons/rewind-outline.svg'); -} - -.iconoir-forward-outline::before { - content: url('../icons/forward-outline.svg'); -} - -.iconoir-play-outline::before { - content: url('../icons/play-outline.svg'); -} - -.iconoir-reduce::before { - content: url('../icons/reduce.svg'); -} - -.iconoir-collapse::before { - content: url('../icons/collapse.svg'); -} - -.iconoir-enlarge::before { - content: url('../icons/enlarge.svg'); -} - -.iconoir-expand::before { - content: url('../icons/expand.svg'); -} - -.iconoir-profile-circled::before { - content: url('../icons/profile-circled.svg'); -} - -.iconoir-timer::before { - content: url('../icons/timer.svg'); -} - -.iconoir-clock-outline::before { - content: url('../icons/clock-outline.svg'); -} - -.iconoir-playlist-add::before { - content: url('../icons/playlist-add.svg'); -} - -.iconoir-open-vpn::before { - content: url('../icons/open-vpn.svg'); -} - -.iconoir-google-home::before { - content: url('../icons/google-home.svg'); -} - -.iconoir-glass-half::before { - content: url('../icons/glass-half.svg'); -} - -.iconoir-glass-half-alt::before { - content: url('../icons/glass-half-alt.svg'); -} - -.iconoir-pizza-slice::before { - content: url('../icons/pizza-slice.svg'); -} - -.iconoir-apple-half-alt::before { - content: url('../icons/apple-half-alt.svg'); -} - -.iconoir-apple-half::before { - content: url('../icons/apple-half.svg'); -} - -.iconoir-apple::before { - content: url('../icons/apple.svg'); -} - -.iconoir-donate::before { - content: url('../icons/donate.svg'); -} - -.iconoir-healthcare::before { - content: url('../icons/healthcare.svg'); -} - -.iconoir-home-hospital::before { - content: url('../icons/home-hospital.svg'); -} - -.iconoir-home-simple-door::before { - content: url('../icons/home-simple-door.svg'); -} - -.iconoir-home-simple::before { - content: url('../icons/home-simple.svg'); -} - -.iconoir-home-alt-slim-horiz::before { - content: url('../icons/home-alt-slim-horiz.svg'); -} - -.iconoir-home-alt-slim::before { - content: url('../icons/home-alt-slim.svg'); -} - -.iconoir-glass-empty::before { - content: url('../icons/glass-empty.svg'); -} - -.iconoir-home-user::before { - content: url('../icons/home-user.svg'); -} - -.iconoir-cracked-egg::before { - content: url('../icons/cracked-egg.svg'); -} - -.iconoir-egg::before { - content: url('../icons/egg.svg'); -} - -.iconoir-chocolate::before { - content: url('../icons/chocolate.svg'); -} - -.iconoir-home-alt::before { - content: url('../icons/home-alt.svg'); -} - -.iconoir-github-outline::before { - content: url('../icons/github-outline.svg'); -} - -.iconoir-fingerprint-circled-error::before { - content: url('../icons/fingerprint-circled-error.svg'); -} - -.iconoir-fingerprint-circled-ok::before { - content: url('../icons/fingerprint-circled-ok.svg'); -} - -.iconoir-face-id::before { - content: url('../icons/face-id.svg'); -} - -.iconoir-user-scan::before { - content: url('../icons/user-scan.svg'); -} - -.iconoir-voice-scan::before { - content: url('../icons/voice-scan.svg'); -} - -.iconoir-voice-circled::before { - content: url('../icons/voice-circled.svg'); -} - -.iconoir-voice-squared::before { - content: url('../icons/voice-squared.svg'); -} - -.iconoir-voice-phone::before { - content: url('../icons/voice-phone.svg'); -} - -.iconoir-fingerprint-phone::before { - content: url('../icons/fingerprint-phone.svg'); -} - -.iconoir-scanning::before { - content: url('../icons/scanning.svg'); -} - -.iconoir-iris-scan::before { - content: url('../icons/iris-scan.svg'); -} - -.iconoir-fingerprint-scan::before { - content: url('../icons/fingerprint-scan.svg'); -} - -.iconoir-fingerprint-squared::before { - content: url('../icons/fingerprint-squared.svg'); -} - -.iconoir-voice-circled-lock::before { - content: url('../icons/voice-circled-lock.svg'); -} - -.iconoir-fingerprint-circled-lock::before { - content: url('../icons/fingerprint-circled-lock.svg'); -} - -.iconoir-fingerprint-circled::before { - content: url('../icons/fingerprint-circled.svg'); -} - -.iconoir-fingerprint::before { - content: url('../icons/fingerprint.svg'); -} - -.iconoir-voice-error::before { - content: url('../icons/voice-error.svg'); -} - -.iconoir-voice-ok::before { - content: url('../icons/voice-ok.svg'); -} - -.iconoir-voice::before { - content: url('../icons/voice.svg'); -} - -.iconoir-domotic-issue::before { - content: url('../icons/domotic-issue.svg'); -} - -.iconoir-home::before { - content: url('../icons/home.svg'); -} - -.iconoir-orange-slice-alt::before { - content: url('../icons/orange-slice-alt.svg'); -} - -.iconoir-orange-slice::before { - content: url('../icons/orange-slice.svg'); -} - -.iconoir-orange-half::before { - content: url('../icons/orange-half.svg'); -} - -.iconoir-box::before { - content: url('../icons/box.svg'); -} - -.iconoir-git-branch::before { - content: url('../icons/git-branch.svg'); -} - -.iconoir-git-merge::before { - content: url('../icons/git-merge.svg'); -} - -.iconoir-git-commit::before { - content: url('../icons/git-commit.svg'); -} - -.iconoir-no-coin::before { - content: url('../icons/no-coin.svg'); -} - -.iconoir-coin::before { - content: url('../icons/coin.svg'); -} - -.iconoir-lamp::before { - content: url('../icons/lamp.svg'); -} - -.iconoir-drawer::before { - content: url('../icons/drawer.svg'); -} - -.iconoir-closet::before { - content: url('../icons/closet.svg'); -} - -.iconoir-box-iso::before { - content: url('../icons/box-iso.svg'); -} - -.iconoir-fridge::before { - content: url('../icons/fridge.svg'); -} - -.iconoir-drag-hand-gesture::before { - content: url('../icons/drag-hand-gesture.svg'); -} - -.iconoir-reminder-hand-gesture::before { - content: url('../icons/reminder-hand-gesture.svg'); -} - -.iconoir-one-finger-select-hand-gesture::before { - content: url('../icons/one-finger-select-hand-gesture.svg'); -} - -.iconoir-swipe-right-gesture::before { - content: url('../icons/swipe-right-gesture.svg'); -} - -.iconoir-swipe-left-gesture::before { - content: url('../icons/swipe-left-gesture.svg'); -} - -.iconoir-swipe-down-gesture::before { - content: url('../icons/swipe-down-gesture.svg'); -} - -.iconoir-swipe-two-fingers-left-gesture::before { - content: url('../icons/swipe-two-fingers-left-gesture.svg'); -} - -.iconoir-swipe-two-fingers-right-gesture::before { - content: url('../icons/swipe-two-fingers-right-gesture.svg'); -} - -.iconoir-swipe-two-fingers-down-gesture::before { - content: url('../icons/swipe-two-fingers-down-gesture.svg'); -} - -.iconoir-swipe-two-fingers-up-gesture::before { - content: url('../icons/swipe-two-fingers-up-gesture.svg'); -} - -.iconoir-swipe-up-gesture::before { - content: url('../icons/swipe-up-gesture.svg'); -} - -.iconoir-single-tap-gesture::before { - content: url('../icons/single-tap-gesture.svg'); -} - -.iconoir-spock-hand-gesture::before { - content: url('../icons/spock-hand-gesture.svg'); -} - -.iconoir-open-select-hand-gesture::before { - content: url('../icons/open-select-hand-gesture.svg'); -} - -.iconoir-github::before { - content: url('../icons/github.svg'); -} - -.iconoir-gitlab-full::before { - content: url('../icons/gitlab-full.svg'); -} - -.iconoir-frame-alt::before { - content: url('../icons/frame-alt.svg'); -} - -.iconoir-airplay::before { - content: url('../icons/airplay.svg'); -} - -.iconoir-frame-alt-empty::before { - content: url('../icons/frame-alt-empty.svg'); -} - -.iconoir-missing-font::before { - content: url('../icons/missing-font.svg'); -} - -.iconoir-chat-bubble-check-1::before { - content: url('../icons/chat-bubble-check-1.svg'); -} - -.iconoir-short-pants::before { - content: url('../icons/short-pants.svg'); -} - -.iconoir-short-pants-alt::before { - content: url('../icons/short-pants-alt.svg'); -} - -.iconoir-pants-alt::before { - content: url('../icons/pants-alt.svg'); -} - -.iconoir-pants::before { - content: url('../icons/pants.svg'); -} - -.iconoir-network-left::before { - content: url('../icons/network-left.svg'); -} - -.iconoir-network-right::before { - content: url('../icons/network-right.svg'); -} - -.iconoir-network-alt::before { - content: url('../icons/network-alt.svg'); -} - -.iconoir-network::before { - content: url('../icons/network.svg'); -} - -.iconoir-transition-bottom::before { - content: url('../icons/transition-bottom.svg'); -} - -.iconoir-transition-top::before { - content: url('../icons/transition-top.svg'); -} - -.iconoir-transition-left::before { - content: url('../icons/transition-left.svg'); -} - -.iconoir-transition-right::before { - content: url('../icons/transition-right.svg'); -} - -.iconoir-remove-keyframes::before { - content: url('../icons/remove-keyframes.svg'); -} - -.iconoir-add-keyframes::before { - content: url('../icons/add-keyframes.svg'); -} - -.iconoir-keyframes::before { - content: url('../icons/keyframes.svg'); -} - -.iconoir-keyframes-couple::before { - content: url('../icons/keyframes-couple.svg'); -} - -.iconoir-linear::before { - content: url('../icons/linear.svg'); -} - -.iconoir-ease-out-control-point::before { - content: url('../icons/ease-out-control-point.svg'); -} - -.iconoir-ease-out::before { - content: url('../icons/ease-out.svg'); -} - -.iconoir-ease-in-control-point::before { - content: url('../icons/ease-in-control-point.svg'); -} - -.iconoir-ease-in::before { - content: url('../icons/ease-in.svg'); -} - -.iconoir-ease-in-out::before { - content: url('../icons/ease-in-out.svg'); -} - -.iconoir-ease-curve-control-points::before { - content: url('../icons/ease-curve-control-points.svg'); -} - -.iconoir-keyframe-align-horizontal-1::before { - content: url('../icons/keyframe-align-horizontal-1.svg'); -} - -.iconoir-keyframe-align-horizontal::before { - content: url('../icons/keyframe-align-horizontal.svg'); -} - -.iconoir-keyframe-align-center::before { - content: url('../icons/keyframe-align-center.svg'); -} - -.iconoir-keyframe-position::before { - content: url('../icons/keyframe-position.svg'); -} - -.iconoir-remove-keyframe-alt::before { - content: url('../icons/remove-keyframe-alt.svg'); -} - -.iconoir-add-keyframe-alt::before { - content: url('../icons/add-keyframe-alt.svg'); -} - -.iconoir-keyframe::before { - content: url('../icons/keyframe.svg'); -} - -.iconoir-remove-keyframe::before { - content: url('../icons/remove-keyframe.svg'); -} - -.iconoir-add-keyframe::before { - content: url('../icons/add-keyframe.svg'); -} - -.iconoir-move-down::before { - content: url('../icons/move-down.svg'); -} - -.iconoir-move-up::before { - content: url('../icons/move-up.svg'); -} - -.iconoir-move-left::before { - content: url('../icons/move-left.svg'); -} - -.iconoir-move-right::before { - content: url('../icons/move-right.svg'); -} - -.iconoir-bounce-left::before { - content: url('../icons/bounce-left.svg'); -} - -.iconoir-bounce-right::before { - content: url('../icons/bounce-right.svg'); -} - -.iconoir-church-alt::before { - content: url('../icons/church-alt.svg'); -} - -.iconoir-cart-alt::before { - content: url('../icons/cart-alt.svg'); -} -/* -.iconoir-cart-1::before { - content: url('../icons/cart-1.svg'); -} -*/ -.iconoir-remove-from-cart::before { - content: url('../icons/remove-from-cart.svg'); -} - -.iconoir-add-to-cart::before { - content: url('../icons/add-to-cart.svg'); -} - -.iconoir-simple-cart::before { - content: url('../icons/simple-cart.svg'); -} - -.iconoir-cart::before { - content: url('../icons/cart.svg'); -} - -.iconoir-bag::before { - content: url('../icons/bag.svg'); -} - -.iconoir-shopping-bag-alt::before { - content: url('../icons/shopping-bag-alt.svg'); -} - -.iconoir-shopping-bag-issue::before { - content: url('../icons/shopping-bag-issue.svg'); -} - -.iconoir-shopping-bag-check::before { - content: url('../icons/shopping-bag-check.svg'); -} - -.iconoir-shopping-bag-arrow-up::before { - content: url('../icons/shopping-bag-arrow-up.svg'); -} - -.iconoir-shopping-bag-arrow-down::before { - content: url('../icons/shopping-bag-arrow-down.svg'); -} - -.iconoir-shopping-bag-remove::before { - content: url('../icons/shopping-bag-remove.svg'); -} - -.iconoir-shopping-bag-add::before { - content: url('../icons/shopping-bag-add.svg'); -} - -.iconoir-shopping-bag::before { - content: url('../icons/shopping-bag.svg'); -} - -.iconoir-small-shop-alt::before { - content: url('../icons/small-shop-alt.svg'); -} - -.iconoir-small-shop::before { - content: url('../icons/small-shop.svg'); -} - -.iconoir-shop-alt::before { - content: url('../icons/shop-alt.svg'); -} - -.iconoir-shop::before { - content: url('../icons/shop.svg'); -} - -.iconoir-church::before { - content: url('../icons/church.svg'); -} - -.iconoir-hospital::before { - content: url('../icons/hospital.svg'); -} - -.iconoir-basket-ball-alt::before { - content: url('../icons/basket-ball-alt.svg'); -} - -.iconoir-basket-ball::before { - content: url('../icons/basket-ball.svg'); -} - -.iconoir-printing-page::before { - content: url('../icons/printing-page.svg'); -} - -.iconoir-printer-alt::before { - content: url('../icons/printer-alt.svg'); -} - -.iconoir-printer::before { - content: url('../icons/printer.svg'); -} - -.iconoir-refresh-circular::before { - content: url('../icons/refresh-circular.svg'); -} - -.iconoir-eye-alt::before { - content: url('../icons/eye-alt.svg'); -} - -.iconoir-eye-close::before { - content: url('../icons/eye-close.svg'); -} - -.iconoir-tunnel::before { - content: url('../icons/tunnel.svg'); -} - -.iconoir-garage::before { - content: url('../icons/garage.svg'); -} - -.iconoir-farm::before { - content: url('../icons/farm.svg'); -} - -.iconoir-oil-industry::before { - content: url('../icons/oil-industry.svg'); -} - -.iconoir-industry::before { - content: url('../icons/industry.svg'); -} - -.iconoir-city::before { - content: url('../icons/city.svg'); -} - -.iconoir-building::before { - content: url('../icons/building.svg'); -} - -.iconoir-union-alt::before { - content: url('../icons/union-alt.svg'); -} - -.iconoir-union-horiz-alt::before { - content: url('../icons/union-horiz-alt.svg'); -} - -.iconoir-creative-commons::before { - content: url('../icons/creative-commons.svg'); -} - -.iconoir-remove-square::before { - content: url('../icons/remove-square.svg'); -} - -.iconoir-minus-square::before { - content: url('../icons/minus-square.svg'); -} - -.iconoir-add-square::before { - content: url('../icons/add-square.svg'); -} - -.iconoir-cut::before { - content: url('../icons/cut.svg'); -} - -.iconoir-scissor-alt::before { - content: url('../icons/scissor-alt.svg'); -} - -.iconoir-cut-alt::before { - content: url('../icons/cut-alt.svg'); -} - -.iconoir-scissor::before { - content: url('../icons/scissor.svg'); -} - -.iconoir-page-search::before { - content: url('../icons/page-search.svg'); -} - -.iconoir-doc-star-alt::before { - content: url('../icons/doc-star-alt.svg'); -} - -.iconoir-doc-search-alt::before { - content: url('../icons/doc-search-alt.svg'); -} - -.iconoir-page-star::before { - content: url('../icons/page-star.svg'); -} - -.iconoir-doc-star::before { - content: url('../icons/doc-star.svg'); -} - -.iconoir-area-search::before { - content: url('../icons/area-search.svg'); -} - -.iconoir-doc-search::before { - content: url('../icons/doc-search.svg'); -} - -.iconoir-zoom-out::before { - content: url('../icons/zoom-out.svg'); -} - -.iconoir-zoom-in::before { - content: url('../icons/zoom-in.svg'); -} - -.iconoir-chat-lines::before { - content: url('../icons/chat-lines.svg'); -} - -.iconoir-chat-remove::before { - content: url('../icons/chat-remove.svg'); -} - -.iconoir-chat-add::before { - content: url('../icons/chat-add.svg'); -} - -.iconoir-bubble-star::before { - content: url('../icons/bubble-star.svg'); -} - -.iconoir-bubble-upload::before { - content: url('../icons/bubble-upload.svg'); -} - -.iconoir-bubble-search::before { - content: url('../icons/bubble-search.svg'); -} - -.iconoir-bubble-download::before { - content: url('../icons/bubble-download.svg'); -} - -.iconoir-bubble-icome::before { - content: url('../icons/bubble-income.svg'); -} - -.iconoir-bubble-outcome::before { - content: url('../icons/bubble-outcome.svg'); -} - -.iconoir-bubble-warning::before { - content: url('../icons/bubble-warning.svg'); -} - -.iconoir-bubble-error::before { - content: url('../icons/bubble-error.svg'); -} - -.iconoir-remove-database-script::before { - content: url('../icons/remove-database-script.svg'); -} - -.iconoir-add-database-script::before { - content: url('../icons/add-database-script.svg'); -} - -.iconoir-database-script::before { - content: url('../icons/database-script.svg'); -} - -.iconoir-database-star::before { - content: url('../icons/database-star.svg'); -} - -.iconoir-database-backup::before { - content: url('../icons/database-backup.svg'); -} - -.iconoir-database-monitor::before { - content: url('../icons/database-monitor.svg'); -} - -.iconoir-database-stats::before { - content: url('../icons/database-stats.svg'); -} - -.iconoir-database-export::before { - content: url('../icons/database-export.svg'); -} - -.iconoir-database-restore::before { - content: url('../icons/database-restore.svg'); -} - -.iconoir-database-settings::before { - content: url('../icons/database-settings.svg'); -} - -.iconoir-db-search::before { - content: url('../icons/db-search.svg'); -} - -.iconoir-db-warning::before { - content: url('../icons/db-warning.svg'); -} - -.iconoir-db-error::before { - content: url('../icons/db-error.svg'); -} - -.iconoir-db-check::before { - content: url('../icons/db-check.svg'); -} - -.iconoir-db::before { - content: url('../icons/db.svg'); -} - -.iconoir-cloud-book-alt::before { - content: url('../icons/cloud-book-alt.svg'); -} - -.iconoir-crop-rotate-br::before { - content: url('../icons/crop-rotate-br.svg'); -} - -.iconoir-crop-rotate-tl::before { - content: url('../icons/crop-rotate-tl.svg'); -} - -.iconoir-crop-rotate-bl::before { - content: url('../icons/crop-rotate-bl.svg'); -} - -.iconoir-crop-rotate-tr::before { - content: url('../icons/crop-rotate-tr.svg'); -} - -.iconoir-ruler-combine::before { - content: url('../icons/ruler-combine.svg'); -} - -.iconoir-server-connection::before { - content: url('../icons/server-connection.svg'); -} - -.iconoir-align-top-box::before { - content: url('../icons/align-top-box.svg'); -} - -.iconoir-align-bottom-box::before { - content: url('../icons/align-bottom-box.svg'); -} - -.iconoir-align-right-box::before { - content: url('../icons/align-right-box.svg'); -} - -.iconoir-text-size::before { - content: url('../icons/text-size.svg'); -} - -.iconoir-search-font::before { - content: url('../icons/search-font.svg'); -} - -.iconoir-text::before { - content: url('../icons/text.svg'); -} - -.iconoir-border-left::before { - content: url('../icons/border-left.svg'); -} - -.iconoir-border-right::before { - content: url('../icons/border-right.svg'); -} - -.iconoir-border-top::before { - content: url('../icons/border-top.svg'); -} - -.iconoir-border-bottom::before { - content: url('../icons/border-bottom.svg'); -} - -.iconoir-border-inner::before { - content: url('../icons/border-inner.svg'); -} - -.iconoir-scale-frame-reduce::before { - content: url('../icons/scale-frame-reduce.svg'); -} - -.iconoir-scale-frame-enlarge::before { - content: url('../icons/scale-frame-enlarge.svg'); -} -/* -.iconoir-scale-frame::before { - content: url('../icons/scale-frame.svg'); -} -*/ -.iconoir-border-out::before { - content: url('../icons/border-out.svg'); -} - -.iconoir-iconoir::before { - content: url('../icons/iconoir.svg'); -} - -.iconoir-figma::before { - content: url('../icons/figma.svg'); -} - -.iconoir-asana::before { - content: url('../icons/asana.svg'); -} - -.iconoir-google-docs::before { - content: url('../icons/google-docs.svg'); -} - -.iconoir-trello::before { - content: url('../icons/trello.svg'); -} - -.iconoir-align-left-box::before { - content: url('../icons/align-left.svg'); -} - -.iconoir-position-align::before { - content: url('../icons/position-align.svg'); -} - -.iconoir-border-bl::before { - content: url('../icons/border-bl.svg'); -} - -.iconoir-border-br::before { - content: url('../icons/border-br.svg'); -} - -.iconoir-border-tr::before { - content: url('../icons/border-tr.svg'); -} - -.iconoir-border-tl::before { - content: url('../icons/border-tl.svg'); -} - -.iconoir-center-align::before { - content: url('../icons/center-align.svg'); -} - -.iconoir-combine::before { - content: url('../icons/combine.svg'); -} - -.iconoir-intersect-alt::before { - content: url('../icons/intersect-alt.svg'); -} - -.iconoir-substract::before { - content: url('../icons/substract.svg'); -} - -.iconoir-exclude::before { - content: url('../icons/exclude.svg'); -} - -.iconoir-intersect::before { - content: url('../icons/intersect.svg'); -} - -.iconoir-union::before { - content: url('../icons/union.svg'); -} - -.iconoir-horiz-distribution-right::before { - content: url('../icons/horiz-distribution-right.svg'); -} - -.iconoir-horiz-distribution-left::before { - content: url('../icons/horiz-distribution-left.svg'); -} - -.iconoir-wrap-text::before { - content: url('../icons/wrap-text.svg'); -} - -.iconoir-line-space::before { - content: url('../icons/line-space.svg'); -} - -.iconoir-move-ruler::before { - content: url('../icons/move-ruler.svg'); -} - -.iconoir-ruler-remove::before { - content: url('../icons/ruler-remove.svg'); -} - -.iconoir-ruler-add::before { - content: url('../icons/ruler-add.svg'); -} - -.iconoir-ruler::before { - content: url('../icons/ruler.svg'); -} - -.iconoir-expand-lines::before { - content: url('../icons/expand-lines.svg'); -} - -.iconoir-compress-lines::before { - content: url('../icons/compress-lines.svg'); -} - -.iconoir-phone-delete::before { - content: url('../icons/phone-delete.svg'); -} - -.iconoir-phone-remove::before { - content: url('../icons/phone-remove.svg'); -} - -.iconoir-phone-add::before { - content: url('../icons/phone-add.svg'); -} - -.iconoir-phone-income::before { - content: url('../icons/phone-income.svg'); -} - -.iconoir-phone-disabled::before { - content: url('../icons/phone-disabled.svg'); -} - -.iconoir-phone-outcome::before { - content: url('../icons/phone-outcome.svg'); -} - -.iconoir-multiple-pages::before { - content: url('../icons/multiple-pages.svg'); -} - -.iconoir-multiple-pages-delete::before { - content: url('../icons/multiple-pages-delete.svg'); -} - -.iconoir-multiple-pages-remove::before { - content: url('../icons/multiple-pages-remove.svg'); -} - -.iconoir-multiple-pages-add::before { - content: url('../icons/multiple-pages-add.svg'); -} - -.iconoir-multiple-pages-empty::before { - content: url('../icons/multiple-pages-empty.svg'); -} - -.iconoir-archive::before { - content: url('../icons/archive.svg'); -} - -.iconoir-frame-tool::before { - content: url('../icons/frame-tool.svg'); -} - -.iconoir-undo::before { - content: url('../icons/undo.svg'); -} - -.iconoir-undo-action::before { - content: url('../icons/undo-action.svg'); -} - -.iconoir-redo-action::before { - content: url('../icons/redo-action.svg'); -} - -.iconoir-undo-circle::before { - content: url('../icons/undo-circle.svg'); -} - -.iconoir-redo-circle::before { - content: url('../icons/redo-circle.svg'); -} - -.iconoir-redo::before { - content: url('../icons/redo.svg'); -} - -.iconoir-question-mark-circle::before { - content: url('../icons/question-mark-circle.svg'); -} - -.iconoir-chat-bubble-translate::before { - content: url('../icons/chat-bubble-translate.svg'); -} - -.iconoir-chat-bubble-question::before { - content: url('../icons/chat-bubble-question.svg'); -} - -.iconoir-headset-issue::before { - content: url('../icons/headset-issue.svg'); -} - -.iconoir-headset-charge::before { - content: url('../icons/headset-charge.svg'); -} - -.iconoir-headset::before { - content: url('../icons/headset.svg'); -} - -.iconoir-headset-help::before { - content: url('../icons/headset-help.svg'); -} - -.iconoir-multi-bubble::before { - content: url('../icons/multi-bubble.svg'); -} - -.iconoir-chat-bubble-empty::before { - content: url('../icons/chat-bubble-empty.svg'); -} - -.iconoir-chat-bubble-warning::before { - content: url('../icons/chat-bubble-warning.svg'); -} - -.iconoir-chat-bubble-check::before { - content: url('../icons/chat-bubble-check.svg'); -} - -.iconoir-chat-bubble-error::before { - content: url('../icons/chat-bubble-error.svg'); -} - -.iconoir-chat-bubble::before { - content: url('../icons/chat-bubble.svg'); -} - -.iconoir-bookmark-empty::before { - content: url('../icons/bookmark-empty.svg'); -} - -.iconoir-handbag::before { - content: url('../icons/handbag.svg'); -} - -.iconoir-large-suitcase::before { - content: url('../icons/large-suitcase.svg'); -} - -.iconoir-eye-off::before { - content: url('../icons/eye-off.svg'); -} - -.iconoir-smartphone-device::before { - content: url('../icons/smartphone-device.svg'); -} - -.iconoir-sandals::before { - content: url('../icons/sandals.svg'); -} - -.iconoir-scarf::before { - content: url('../icons/scarf.svg'); -} - -.iconoir-collage-frame::before { - content: url('../icons/collage-frame.svg'); -} - -.iconoir-upload-square-outline::before { - content: url('../icons/upload-square-outline.svg'); -} - -.iconoir-upload::before { - content: url('../icons/upload.svg'); -} - -.iconoir-attachment::before { - content: url('../icons/attachment.svg'); -} - -.iconoir-phone-paused::before { - content: url('../icons/phone-paused.svg'); -} - -.iconoir-hesa-warning-outline::before { - content: url('../icons/hesa-warning-outline.svg'); -} - -.iconoir-message-alert::before { - content: url('../icons/message-alert.svg'); -} - -.iconoir-message-text::before { - content: url('../icons/message-text.svg'); -} - -.iconoir-message::before { - content: url('../icons/message.svg'); -} - -.iconoir-phone::before { - content: url('../icons/phone.svg'); -} - -.iconoir-edit::before { - content: url('../icons/edit.svg'); -} - -.iconoir-edit-pencil::before { - content: url('../icons/edit-pencil.svg'); -} - -.iconoir-cable-rounded::before { - content: url('../icons/cable-rounded.svg'); -} - -.iconoir-wifi-rounded::before { - content: url('../icons/wifi-rounded.svg'); -} - -.iconoir-antenna-signal-rounded::before { - content: url('../icons/antenna-signal-rounded.svg'); -} - -.iconoir-bluetooth-rounded::before { - content: url('../icons/bluetooth-rounded.svg'); -} - -.iconoir-bluetooth::before { - content: url('../icons/bluetooth.svg'); -} - -.iconoir-warning-triangle-outline::before { - content: url('../icons/warning-triangle-outline.svg'); -} - -.iconoir-warning-circled-outline::before { - content: url('../icons/warning-circled-outline.svg'); -} - -.iconoir-precision-tool::before { - content: url('../icons/precision-tool.svg'); -} - -.iconoir-emoji-think-left::before { - content: url('../icons/emoji-think-left.svg'); -} - -.iconoir-emoji-think-right::before { - content: url('../icons/emoji-think-right.svg'); -} - -.iconoir-emoji-quite::before { - content: url('../icons/emoji-quite.svg'); -} - -.iconoir-emoji-sing-left::before { - content: url('../icons/emoji-sing-left.svg'); -} - -.iconoir-emoji-sing-left-note::before { - content: url('../icons/emoji-sing-left-note.svg'); -} - -.iconoir-emoji-sing-right-note::before { - content: url('../icons/emoji-sing-right-note.svg'); -} - -.iconoir-emoji-sing-right::before { - content: url('../icons/emoji-sing-right.svg'); -} - -.iconoir-emoji-surprise-alt::before { - content: url('../icons/emoji-surprise-alt.svg'); -} - -.iconoir-emoji-surprise::before { - content: url('../icons/emoji-surprise.svg'); -} - -.iconoir-emoji-talking-angry::before { - content: url('../icons/emoji-talking-angry.svg'); -} - -.iconoir-emoji-talking-happy::before { - content: url('../icons/emoji-talking-happy.svg'); -} - -.iconoir-emoji-ball::before { - content: url('../icons/emoji-ball.svg'); -} - -.iconoir-emoji-ball-alt::before { - content: url('../icons/tennis-ball-alt.svg'); -} - -.iconoir-tennis-ball::before { - content: url('../icons/tennis-ball.svg'); -} - -.iconoir-emoji-really::before { - content: url('../icons/emoji-really.svg'); -} - -.iconoir-emoji-satisfied::before { - content: url('../icons/emoji-satisfied.svg'); -} - -.iconoir-emoji-look-bottom::before { - content: url('../icons/emoji-look-bottom.svg'); -} - -.iconoir-emoji-look-top::before { - content: url('../icons/emoji-look-top.svg'); -} - -.iconoir-emoji-look-left::before { - content: url('../icons/emoji-look-left.svg'); -} - -.iconoir-emoji-look-right::before { - content: url('../icons/emoji-look-right.svg'); -} - -.iconoir-emoji-blink-left::before { - content: url('../icons/emoji-blink-left.svg'); -} - -.iconoir-emoji-blink-right::before { - content: url('../icons/emoji-blink-right.svg'); -} - -.iconoir-emoji-sad::before { - content: url('../icons/emoji-sad.svg'); -} - -.iconoir-emoji::before { - content: url('../icons/emoji.svg'); -} - -.iconoir-unity-5::before { - content: url('../icons/unity\ 5.svg'); -} - -.iconoir-unity::before { - content: url('../icons/unity.svg'); -} - -.iconoir-code::before { - content: url('../icons/code.svg'); -} - -.iconoir-no-smoking::before { - content: url('../icons/no-smoking.svg'); -} - -.iconoir-smoking::before { - content: url('../icons/smoking.svg'); -} - -.iconoir-mask-square::before { - content: url('../icons/mask-square.svg'); -} - -.iconoir-copy::before { - content: url('../icons/copy.svg'); -} - -.iconoir-umbrella-full::before { - content: url('../icons/umbrella-full.svg'); -} - -.iconoir-antenna-signal::before { - content: url('../icons/antenna-signal.svg'); -} - -.iconoir-antenna-off::before { - content: url('../icons/antenna-off.svg'); -} - -.iconoir-antenna::before { - content: url('../icons/antenna.svg'); -} - -.iconoir-color-picker::before { - content: url('../icons/color-picker.svg'); -} - -.iconoir-color-picker-empty::before { - content: url('../icons/color-picker-empty.svg'); -} - -.iconoir-add-lens::before { - content: url('../icons/add-lens.svg'); -} - -.iconoir-plug-type-g::before { - content: url('../icons/plug-type-g.svg'); -} - -.iconoir-plug-type-l::before { - content: url('../icons/plug-type-l.svg'); -} - -.iconoir-plug-type-c::before { - content: url('../icons/plug-type-c.svg'); -} - -.iconoir-plug-type-a::before { - content: url('../icons/plug-type-a.svg'); -} - -.iconoir-lens::before { - content: url('../icons/lens.svg'); -} - -.iconoir-color-filter::before { - content: url('../icons/color-filter.svg'); -} - -.iconoir-stat-down::before { - content: url('../icons/stat-down.svg'); -} - -.iconoir-stat-up::before { - content: url('../icons/stat-up.svg'); -} - -.iconoir-graph-down::before { - content: url('../icons/graph-down.svg'); -} - -.iconoir-graph-up::before { - content: url('../icons/graph-up.svg'); -} - -.iconoir-eye-empty::before { - content: url('../icons/eye-empty.svg'); -} - -.iconoir-wristwatch::before { - content: url('../icons/wristwatch.svg'); -} - -.iconoir-hourglass::before { - content: url('../icons/hourglass.svg'); -} - -.iconoir-movie::before { - content: url('../icons/movie.svg'); -} - -.iconoir-page::before { - content: url('../icons/page.svg'); -} - -.iconoir-remove-page::before { - content: url('../icons/remove-page.svg'); -} - -.iconoir-droplet-half::before { - content: url('../icons/droplet-half.svg'); -} - -.iconoir-google-drive-warning::before { - content: url('../icons/google-drive-warning.svg'); -} - -.iconoir-google-drive-check::before { - content: url('../icons/google-drive-check.svg'); -} - -.iconoir-google-drive-sync::before { - content: url('../icons/google-drive-sync.svg'); -} - -.iconoir-google-drive::before { - content: url('../icons/google-drive.svg'); -} - -.iconoir-google-one::before { - content: url('../icons/google-one.svg'); -} - -.iconoir-cloud-check::before { - content: url('../icons/cloud-check.svg'); -} - -.iconoir-cloud-desync::before { - content: url('../icons/cloud-desync.svg'); -} - -.iconoir-cloud-sync::before { - content: url('../icons/cloud-sync.svg'); -} - -.iconoir-cloud-error::before { - content: url('../icons/cloud-error.svg'); -} - -.iconoir-cloud-download::before { - content: url('../icons/cloud-download.svg'); -} - -.iconoir-cloud-upload::before { - content: url('../icons/cloud-upload.svg'); -} - -.iconoir-prohibition::before { - content: url('../icons/prohibition.svg'); -} - -.iconoir-trash::before { - content: url('../icons/trash.svg'); -} - -.iconoir-cinema-old::before { - content: url('../icons/cinema-old.svg'); -} - -.iconoir-check-circled-outline::before { - content: url('../icons/check-circled-outline.svg'); -} - -.iconoir-double-check::before { - content: url('../icons/double-check.svg'); -} - -.iconoir-check::before { - content: url('../icons/check.svg'); -} - -.iconoir-glasses::before { - content: url('../icons/glasses.svg'); -} - -.iconoir-text-alt::before { - content: url('../icons/text-alt.svg'); -} - -.iconoir-report-columns::before { - content: url('../icons/report-columns.svg'); -} - -.iconoir-stats-report::before { - content: url('../icons/stats-report.svg'); -} - -.iconoir-settings-cloud::before { - content: url('../icons/settings-cloud.svg'); -} - -.iconoir-stats-square-down::before { - content: url('../icons/stats-square-down.svg'); -} - -.iconoir-pound::before { - content: url('../icons/pound.svg'); -} - -.iconoir-yen::before { - content: url('../icons/yen.svg'); -} - -.iconoir-euro::before { - content: url('../icons/euro.svg'); -} - -.iconoir-receive-dollars::before { - content: url('../icons/receive-dollars.svg'); -} - -.iconoir-receive-yens::before { - content: url('../icons/receive-yens.svg'); -} - -.iconoir-receive-pounds::before { - content: url('../icons/receive-pounds.svg'); -} - -.iconoir-receive-euros::before { - content: url('../icons/receive-euros.svg'); -} - -.iconoir-send-yens::before { - content: url('../icons/send-yens.svg'); -} - -.iconoir-send-pounds::before { - content: url('../icons/send-pounds.svg'); -} - -.iconoir-send-euros::before { - content: url('../icons/send-euros.svg'); -} - -.iconoir-send-dollars::before { - content: url('../icons/send-dollars.svg'); -} - -.iconoir-dollar::before { - content: url('../icons/dollar.svg'); -} - -.iconoir-yen-square::before { - content: url('../icons/yen-square.svg'); -} - -.iconoir-euro-square::before { - content: url('../icons/euro-square.svg'); -} - -.iconoir-money-square::before { - content: url('../icons/money-square.svg'); -} - -.iconoir-stats-square-up::before { - content: url('../icons/stats-square-up.svg'); -} - -.iconoir-font-size::before { - content: url('../icons/font-size.svg'); -} - -.iconoir-gym::before { - content: url('../icons/gym.svg'); -} - -.iconoir-refresh-double::before { - content: url('../icons/refresh-double.svg'); -} - -.iconoir-refresh::before { - content: url('../icons/refresh.svg'); -} - -.iconoir-wifi-off::before { - content: url('../icons/wifi-off.svg'); -} - -.iconoir-wifi-issue::before { - content: url('../icons/wifi-issue.svg'); -} - -.iconoir-wifi-signal-none::before { - content: url('../icons/wifi-signal-none.svg'); -} - -.iconoir-wifi::before { - content: url('../icons/wifi.svg'); -} - -.iconoir-tv-issue::before { - content: url('../icons/tv-issue.svg'); -} - -.iconoir-apple-imac-2021-side::before { - content: url('../icons/apple-imac-2021-side.svg'); -} - -.iconoir-computer::before { - content: url('../icons/computer.svg'); -} - -.iconoir-bookmark-circled::before { - content: url('../icons/bookmark-circled.svg'); -} - -.iconoir-laptop-charging::before { - content: url('../icons/laptop-charging.svg'); -} - -.iconoir-laptop-issue::before { - content: url('../icons/laptop-issue.svg'); -} - -.iconoir-laptop-fix::before { - content: url('../icons/laptop-fix.svg'); -} - -.iconoir-laptop::before { - content: url('../icons/laptop.svg'); -} - -.iconoir-4k-display::before { - content: url('../icons/4k-display.svg'); -} - -.iconoir-modern-tv-4k::before { - content: url('../icons/modern-tv-4k.svg'); -} - -.iconoir-mail-opened::before { - content: url('../icons/mail-opened.svg'); -} - -.iconoir-sound-high::before { - content: url('../icons/sound-high.svg'); -} - -.iconoir-dashboard-dots::before { - content: url('../icons/dashboard-dots.svg'); -} - -.iconoir-dashboard-speed::before { - content: url('../icons/dashboard-speed.svg'); -} - -.iconoir-dashboard::before { - content: url('../icons/dashboard.svg'); -} - -.iconoir-sound-low::before { - content: url('../icons/sound-low.svg'); -} - -.iconoir-mic-mute::before { - content: url('../icons/mic-mute.svg'); -} - -.iconoir-data-transfer-warning::before { - content: url('../icons/data-transfer-warning.svg'); -} - -.iconoir-data-transfer-down::before { - content: url('../icons/data-transfer-down.svg'); -} - -.iconoir-data-transfer-up::before { - content: url('../icons/data-transfer-up.svg'); -} - -.iconoir-data-transfer-check::before { - content: url('../icons/data-transfer-check.svg'); -} - -.iconoir-data-transfer-both::before { - content: url('../icons/data-transfer-both.svg'); -} - -.iconoir-mic-warning::before { - content: url('../icons/mic-warning.svg'); -} - -.iconoir-mic-check::before { - content: url('../icons/mic-check.svg'); -} - -.iconoir-mic-remove::before { - content: url('../icons/mic-remove.svg'); -} - -.iconoir-mic-add::before { - content: url('../icons/mic-add.svg'); -} - -.iconoir-mic-speaking::before { - content: url('../icons/mic-speaking.svg'); -} - -.iconoir-mic::before { - content: url('../icons/mic.svg'); -} - -.iconoir-sound-off::before { - content: url('../icons/sound-off.svg'); -} - -.iconoir-sound-min::before { - content: url('../icons/sound-min.svg'); -} - -.iconoir-bell-off::before { - content: url('../icons/bell-off.svg'); -} - -.iconoir-app-notification::before { - content: url('../icons/app-notification.svg'); -} - -.iconoir-bell-notification::before { - content: url('../icons/bell-notification.svg'); -} - -.iconoir-bell::before { - content: url('../icons/bell.svg'); -} - -.iconoir-mail::before { - content: url('../icons/mail.svg'); -} - -.iconoir-lot-of-cash::before { - content: url('../icons/lot-of-cash.svg'); -} - -.iconoir-cash::before { - content: url('../icons/cash.svg'); -} - -.iconoir-credit-card-2::before { - content: url('../icons/credit-card-2.svg'); -} - -.iconoir-no-credit-card::before { - content: url('../icons/no-credit-card.svg'); -} - -.iconoir-credit-card::before { - content: url('../icons/credit-card.svg'); -} - -.iconoir-question-mark::before { - content: url('../icons/question-mark.svg'); -} - -.iconoir-bold::before { - content: url('../icons/bold.svg'); -} - -.iconoir-filter-alt::before { - content: url('../icons/filter-alt.svg'); -} - -.iconoir-filter::before { - content: url('../icons/filter.svg'); -} - -.iconoir-label-outline::before { - content: url('../icons/label-outline.svg'); -} - -.iconoir-remove-folder::before { - content: url('../icons/remove-folder.svg'); -} - -.iconoir-add-folder::before { - content: url('../icons/add-folder.svg'); -} - -.iconoir-folder-alert::before { - content: url('../icons/folder-alert.svg'); -} - -.iconoir-folder::before { - content: url('../icons/folder.svg'); -} - -.iconoir-reports::before { - content: url('../icons/reports.svg'); -} - -.iconoir-percentage-square::before { - content: url('../icons/percentage-square.svg'); -} - -.iconoir-sea-and-sun::before { - content: url('../icons/sea-and-sun.svg'); -} - -.iconoir-trophy::before { - content: url('../icons/trophy.svg'); -} - -.iconoir-medal::before { - content: url('../icons/medal.svg'); -} - -.iconoir-1st-medal::before { - content: url('../icons/1st-medal.svg'); -} - -.iconoir-leaderboard-star::before { - content: url('../icons/leaderboard-star.svg'); -} - -.iconoir-leaderboard::before { - content: url('../icons/leaderboard.svg'); -} - -.iconoir-trekking::before { - content: url('../icons/trekking.svg'); -} - -.iconoir-skateboarding::before { - content: url('../icons/skateboarding.svg'); -} - -.iconoir-skateboard::before { - content: url('../icons/skateboard.svg'); -} - -.iconoir-Fishing::before { - content: url('../icons/Fishing.svg'); -} - -.iconoir-bowling-ball::before { - content: url('../icons/bowling-ball.svg'); -} - -.iconoir-waist::before { - content: url('../icons/waist.svg'); -} - -.iconoir-yoga::before { - content: url('../icons/yoga.svg'); -} - -.iconoir-boxing-glove::before { - content: url('../icons/boxing-glove.svg'); -} - -.iconoir-stretching::before { - content: url('../icons/stretching.svg'); -} - -.iconoir-treadmill::before { - content: url('../icons/treadmill.svg'); -} - -.iconoir-running::before { - content: url('../icons/running.svg'); -} - -.iconoir-cycling::before { - content: url('../icons/cycling.svg'); -} - -.iconoir-walking::before { - content: url('../icons/walking.svg'); -} - -.iconoir-rings::before { - content: url('../icons/rings.svg'); -} - -.iconoir-archery::before { - content: url('../icons/archery.svg'); -} - -.iconoir-arrow-archery::before { - content: url('../icons/arrow-archery.svg'); -} - -.iconoir-football-ball::before { - content: url('../icons/football-ball.svg'); -} - -.iconoir-football::before { - content: url('../icons/football.svg'); -} - -.iconoir-swimming::before { - content: url('../icons/swimming.svg'); -} - -.iconoir-sea-waves::before { - content: url('../icons/sea-waves.svg'); -} - -.iconoir-soccer-ball::before { - content: url('../icons/soccer-ball.svg'); -} - -.iconoir-percentage-round::before { - content: url('../icons/percentage-round.svg'); -} - -.iconoir-percentage::before { - content: url('../icons/percentage.svg'); -} - -.iconoir-usb::before { - content: url('../icons/usb.svg'); -} - -.iconoir-electronics-chip::before { - content: url('../icons/electronics-chip.svg'); -} - -.iconoir-codepen::before { - content: url('../icons/codepen.svg'); -} - -.iconoir-apple-swift::before { - content: url('../icons/apple-swift.svg'); -} - -.iconoir-electronics-transister::before { - content: url('../icons/electronics-transister.svg'); -} - -.iconoir-server::before { - content: url('../icons/server.svg'); -} - -.iconoir-hard-drive::before { - content: url('../icons/hard-drive.svg'); -} - -.iconoir-apple-imac-2021::before { - content: url('../icons/apple-imac-2021.svg'); -} - -.iconoir-modern-tv::before { - content: url('../icons/modern-tv.svg'); -} - -.iconoir-megaphone::before { - content: url('../icons/megaphone.svg'); -} - -.iconoir-ar-symbol::before { - content: url('../icons/ar-symbol.svg'); -} - -.iconoir-pen-connect-bluetooth::before { - content: url('../icons/pen-connect-bluetooth.svg'); -} - -.iconoir-pen-connect-wifi::before { - content: url('../icons/pen-connect-wifi.svg'); -} - -.iconoir-pen-tablet-connect-wifi::before { - content: url('../icons/pen-tablet-connect-wifi.svg'); -} - -/* -.iconoir-::before { - content: "\ec4f"; -} - -.iconoir-::before { - content: "\ec50"; -} -*/ - -.iconoir-pen-tablet::before { - content: url('../icons/pen-tablet.svg'); -} - -.iconoir-database-rounded::before { - content: url('../icons/database-rounded.svg'); -} - -.iconoir-vr-symbol::before { - content: url('../icons/vr-symbol.svg'); -} - -.iconoir-tv-fix::before { - content: url('../icons/tv-fix.svg'); -} - -.iconoir-tv::before { - content: url('../icons/tv.svg'); -} - -.iconoir-droplet::before { - content: url('../icons/droplet.svg'); -} - -.iconoir-star-half-dashed::before { - content: url('../icons/star-half-dashed.svg'); -} - -.iconoir-star-dashed::before { - content: url('../icons/star-dashed.svg'); -} - -.iconoir-three-stars::before { - content: url('../icons/three-stars.svg'); -} - -.iconoir-star-outline::before { - content: url('../icons/star-outline.svg'); -} - -.iconoir-add-page::before { - content: url('../icons/add-page.svg'); -} - -.iconoir-empty-page::before { - content: url('../icons/empty-page.svg'); -} - -.iconoir-journal-page::before { - content: url('../icons/journal-page.svg'); -} - -.iconoir-journal::before { - content: url('../icons/journal.svg'); -} - -.iconoir-chromecast-active::before { - content: url('../icons/chromecast-active.svg'); -} - -.iconoir-chromecast::before { - content: url('../icons/chromecast.svg'); -} - -.iconoir-flip-reverse::before { - content: url('../icons/flip-reverse.svg'); -} - -.iconoir-flip::before { - content: url('../icons/flip.svg'); -} - -.iconoir-cancel::before { - content: url('../icons/cancel.svg'); -} - -.iconoir-sort-up::before { - content: url('../icons/sort-up.svg'); -} - -.iconoir-sort-down::before { - content: url('../icons/sort-down.svg'); -} - -.iconoir-bold-square-outline::before { - content: url('../icons/bold-square-outline.svg'); -} - -.iconoir-open-in-browser::before { - content: url('../icons/open-in-browser.svg'); -} - -.iconoir-open-in-window::before { - content: url('../icons/open-in-window.svg'); -} - -.iconoir-question-square-outline::before { - content: url('../icons/question-square-outline.svg'); -} - -.iconoir-basketball-field::before { - content: url('../icons/basketball-field.svg'); -} - -.iconoir-save-floppy-disk::before { - content: url('../icons/save-floppy-disk.svg'); -} - -.iconoir-load-action-floppy::before { - content: url('../icons/load-action-floppy.svg'); -} - -.iconoir-save-action-floppy::before { - content: url('../icons/save-action-floppy.svg'); -} - -.iconoir-warning-square-outline::before { - content: url('../icons/warning-square-outline.svg'); -} - -.iconoir-underline-square-outline::before { - content: url('../icons/underline-square-outline.svg'); -} - -.iconoir-italic-square-outline::before { - content: url('../icons/italic-square-outline.svg'); -} - -.iconoir-italic::before { - content: url('../icons/italic.svg'); -} - -.iconoir-style-border::before { - content: url('../icons/style-border.svg'); -} - -.iconoir-remove-frame::before { - content: url('../icons/remove-frame.svg'); -} - -.iconoir-add-frame::before { - content: url('../icons/add-frame.svg'); -} - -.iconoir-frame-select::before { - content: url('../icons/frame-select.svg'); -} - -.iconoir-frame::before { - content: url('../icons/frame.svg'); -} - -.iconoir-frame-simple::before { - content: url('../icons/frame-simple.svg'); -} - -.iconoir-design-pencil::before { - content: url('../icons/design-pencil.svg'); -} - -.iconoir-selective-tool::before { - content: url('../icons/selective-tool.svg'); -} - -.iconoir-download-square-outline::before { - content: url('../icons/download-square-outline.svg'); -} - -.iconoir-underline::before { - content: url('../icons/underline.svg'); -} - -.iconoir-download::before { - content: url('../icons/download.svg'); -} - -.iconoir-download-circled-outline::before { - content: url('../icons/download-circled-outline.svg'); -} - -.iconoir-search::before { - content: url('../icons/search.svg'); -} - -.iconoir-delete-circled-outline::before { - content: url('../icons/delete-circled-outline.svg'); -} - -.iconoir-add-circled-outline::before { - content: url('../icons/add-circled-outline.svg'); -} - -.iconoir-remove-empty::before { - content: url('../icons/remove-empty.svg'); -} - -.iconoir-info-empty::before { - content: url('../icons/info-empty.svg'); -} - -.iconoir-plus::before { - content: url('../icons/plus.svg'); -} - -.iconoir-minus-1::before { - content: url('../icons/minus-1.svg'); -} - -.iconoir-minus::before { - content: url('../icons/minus.svg'); -} - -.iconoir-align-right::before { - content: url('../icons/align-right.svg'); -} - -.iconoir-crop::before { - content: url('../icons/crop.svg'); -} - -.iconoir-align-justify::before { - content: url('../icons/align-justify.svg'); -} - -.iconoir-align-center::before { - content: url('../icons/align-center.svg'); -} - -.iconoir-align-left::before { - content: url('../icons/align-left.svg'); -} - -.iconoir-share-ios::before { - content: url('../icons/share-ios.svg'); -} - -.iconoir-share-android::before { - content: url('../icons/share-android.svg'); -} - -.iconoir-list::before { - content: url('../icons/list.svg'); -} - -.iconoir-menu::before { - content: url('../icons/menu.svg'); -} - -.iconoir-menu-scale::before { - content: url('../icons/menu-scale.svg'); -} - -.iconoir-css3::before { - content: url('../icons/css3.svg'); -} - -.iconoir-html5::before { - content: url('../icons/html5.svg'); -} - -.iconoir-her-slips::before { - content: url('../icons/her-slips.svg'); -} - -/*--- v4.4 ---*/ - -.iconoir-360-view::before { - content: url('../icons/360-view.svg'); -} - -.iconoir-add-media-image::before { - content: url('../icons/add-media-image.svg'); -} - -.iconoir-add-media-video::before { - content: url('../icons/add-media-video.svg'); -} - -.iconoir-air-conditioner::before { - content: url('../icons/air-conditioner.svg'); -} - -.iconoir-apple-mac::before { - content: url('../icons/apple-mac.svg'); -} - -.iconoir-bank::before { - content: url('../icons/bank.svg'); -} - -.iconoir-bbq::before { - content: url('../icons/bbq.svg'); -} - -.iconoir-cookie::before { - content: url('../icons/cookie.svg'); -} - -.iconoir-facetime::before { - content: url('../icons/facetime.svg'); -} - -.iconoir-half-cookie::before { - content: url('../icons/half-cookie.svg'); -} - -.iconoir-linux::before { - content: url('../icons/linux.svg'); -} - -.iconoir-media-image-folder::before { - content: url('../icons/media-image-folder.svg'); -} - -.iconoir-media-image-list::before { - content: url('../icons/media-image-list.svg'); -} - -.iconoir-media-image::before { - content: url('../icons/media-image.svg'); -} - -.iconoir-media-video-folder::before { - content: url('../icons/media-video-folder.svg'); -} - -.iconoir-media-video-list::before { - content: url('../icons/media-video-list.svg'); -} - -.iconoir-media-video::before { - content: url('../icons/media-video.svg'); -} - -.iconoir-parking::before { - content: url('../icons/parking.svg'); -} - -.iconoir-piggy-bank::before { - content: url('../icons/piggy-bank.svg'); -} - -.iconoir-qr-code::before { - content: url('../icons/qr-code.svg'); -} - -.iconoir-remove-media-image::before { - content: url('../icons/remove-media-image.svg'); -} - -.iconoir-remove-media-video::before { - content: url('../icons/remove-media-video.svg'); -} - -.iconoir-safari::before { - content: url('../icons/safari.svg'); -} - -.iconoir-scan-qr-code::before { - content: url('../icons/scan-qr-code.svg'); -} - -.iconoir-snapchat::before { - content: url('../icons/snapchat.svg'); -} - -.iconoir-stroller::before { - content: url('../icons/stroller.svg'); -} - -.iconoir-windows::before { - content: url('../icons/windows.svg'); -} - -/*--- v4.5 ---*/ - -.iconoir-apple-wallet::before { - content: url('../icons/apple-wallet.svg'); -} - -.iconoir-atom::before { - content: url('../icons/atom.svg'); -} - -.iconoir-backward-15-seconds::before { - content: url('../icons/backward-15-seconds.svg'); -} - -.iconoir-bonfire::before { - content: url('../icons/bonfire.svg'); -} - -.iconoir-book-stack::before { - content: url('../icons/book-stack.svg'); -} - -.iconoir-book::before { - content: url('../icons/book.svg'); -} - -.iconoir-bookmark-book::before { - content: url('../icons/bookmark-book.svg'); -} - -.iconoir-carbon::before { - content: url('../icons/carbon.svg'); -} - -.iconoir-card-wallet::before { - content: url('../icons/card-wallet.svg'); -} - -.iconoir-code-brackets-square::before { - content: url('../icons/code-brackets-square.svg'); -} - -.iconoir-code-brackets::before { - content: url('../icons/code-brackets.svg'); -} - -.iconoir-favourite-book::before { - content: url('../icons/favourite-book.svg'); -} - -.iconoir-fire-flame::before { - content: url('../icons/fire-flame.svg'); -} - -.iconoir-flask::before { - content: url('../icons/flask.svg'); -} - -.iconoir-fluorine::before { - content: url('../icons/fluorine.svg'); -} - -.iconoir-forward-15-seconds::before { - content: url('../icons/forward-15-seconds.svg'); -} - -.iconoir-hd-display::before { - content: url('../icons/hd-display.svg'); -} - -.iconoir-hydrogen::before { - content: url('../icons/hydrogen.svg'); -} - -.iconoir-locked-book::before { - content: url('../icons/locked-book.svg'); -} - -.iconoir-magnet-energy::before { - content: url('../icons/magnet-energy.svg'); -} - -.iconoir-magnet::before { - content: url('../icons/magnet.svg'); -} - -.iconoir-math-book::before { - content: url('../icons/math-book.svg'); -} - -.iconoir-nitrogen::before { - content: url('../icons/nitrogen.svg'); -} - -.iconoir-numbered-list-left::before { - content: url('../icons/numbered-list-left.svg'); -} - -.iconoir-numbered-list-right::before { - content: url('../icons/numbered-list-right.svg'); -} - -.iconoir-oxygen::before { - content: url('../icons/oxygen.svg'); -} - -.iconoir-page-edit::before { - content: url('../icons/page-edit.svg'); -} - -.iconoir-round-flask::before { - content: url('../icons/round-flask.svg'); -} - -.iconoir-sidebar-collapse::before { - content: url('../icons/sidebar-collapse.svg'); -} - -.iconoir-sidebar-expand::before { - content: url('../icons/sidebar-expand.svg'); -} - -.iconoir-task-list::before { - content: url('../icons/task-list.svg'); -} - -.iconoir-test-tube::before { - content: url('../icons/test-tube.svg'); -} - -.iconoir-wallet::before { - content: url('../icons/wallet.svg'); -} +i[class*=" iconoir-"]::before,i[class^=iconoir-]::before{line-height:1;position:relative;top:4px}.iconoir-1st-medal::before{content:url(../icons/1st-medal.svg)}.iconoir-360-view::before{content:url(../icons/360-view.svg)}.iconoir-4k-display::before{content:url(../icons/4k-display.svg)}.iconoir-4x4-cell::before{content:url(../icons/4x4-cell.svg)}.iconoir-Fishing::before{content:url(../icons/Fishing.svg)}.iconoir-accessibility-sign::before{content:url(../icons/accessibility-sign.svg)}.iconoir-accessibility-tech::before{content:url(../icons/accessibility-tech.svg)}.iconoir-accessibility::before{content:url(../icons/accessibility.svg)}.iconoir-activity::before{content:url(../icons/activity.svg)}.iconoir-add-circled-outline::before{content:url(../icons/add-circled-outline.svg)}.iconoir-add-database-script::before{content:url(../icons/add-database-script.svg)}.iconoir-add-folder::before{content:url(../icons/add-folder.svg)}.iconoir-add-frame::before{content:url(../icons/add-frame.svg)}.iconoir-add-hexagon::before{content:url(../icons/add-hexagon.svg)}.iconoir-add-keyframe-alt::before{content:url(../icons/add-keyframe-alt.svg)}.iconoir-add-keyframe::before{content:url(../icons/add-keyframe.svg)}.iconoir-add-keyframes::before{content:url(../icons/add-keyframes.svg)}.iconoir-add-lens::before{content:url(../icons/add-lens.svg)}.iconoir-add-media-image::before{content:url(../icons/add-media-image.svg)}.iconoir-add-media-video::before{content:url(../icons/add-media-video.svg)}.iconoir-add-page::before{content:url(../icons/add-page.svg)}.iconoir-add-pin-alt::before{content:url(../icons/add-pin-alt.svg)}.iconoir-add-selection::before{content:url(../icons/add-selection.svg)}.iconoir-add-square::before{content:url(../icons/add-square.svg)}.iconoir-add-to-cart::before{content:url(../icons/add-to-cart.svg)}.iconoir-add-user::before{content:url(../icons/add-user.svg)}.iconoir-air-conditioner::before{content:url(../icons/air-conditioner.svg)}.iconoir-airplane-helix-45deg::before{content:url(../icons/airplane-helix-45deg.svg)}.iconoir-airplane-helix::before{content:url(../icons/airplane-helix.svg)}.iconoir-airplane-off::before{content:url(../icons/airplane-off.svg)}.iconoir-airplane-rotation::before{content:url(../icons/airplane-rotation.svg)}.iconoir-airplane::before{content:url(../icons/airplane.svg)}.iconoir-airplay::before{content:url(../icons/airplay.svg)}.iconoir-alarm::before{content:url(../icons/alarm.svg)}.iconoir-album-carousel::before{content:url(../icons/album-carousel.svg)}.iconoir-album-list::before{content:url(../icons/album-list.svg)}.iconoir-album-open::before{content:url(../icons/album-open.svg)}.iconoir-album::before{content:url(../icons/album.svg)}.iconoir-align-bottom-box::before{content:url(../icons/align-bottom-box.svg)}.iconoir-align-center::before{content:url(../icons/align-center.svg)}.iconoir-align-justify::before{content:url(../icons/align-justify.svg)}.iconoir-align-left-box::before{content:url(../icons/align-left-box.svg)}.iconoir-align-left::before{content:url(../icons/align-left.svg)}.iconoir-align-right-box::before{content:url(../icons/align-right-box.svg)}.iconoir-align-right::before{content:url(../icons/align-right.svg)}.iconoir-align-top-box::before{content:url(../icons/align-top-box.svg)}.iconoir-antenna-off::before{content:url(../icons/antenna-off.svg)}.iconoir-antenna-signal-rounded::before{content:url(../icons/antenna-signal-rounded.svg)}.iconoir-antenna-signal::before{content:url(../icons/antenna-signal.svg)}.iconoir-antenna::before{content:url(../icons/antenna.svg)}.iconoir-app-notification::before{content:url(../icons/app-notification.svg)}.iconoir-apple-half-alt::before{content:url(../icons/apple-half-alt.svg)}.iconoir-apple-half::before{content:url(../icons/apple-half.svg)}.iconoir-apple-imac-2021-side::before{content:url(../icons/apple-imac-2021-side.svg)}.iconoir-apple-imac-2021::before{content:url(../icons/apple-imac-2021.svg)}.iconoir-apple-mac::before{content:url(../icons/apple-mac.svg)}.iconoir-apple-swift::before{content:url(../icons/apple-swift.svg)}.iconoir-apple-wallet::before{content:url(../icons/apple-wallet.svg)}.iconoir-apple::before{content:url(../icons/apple.svg)}.iconoir-ar-symbol::before{content:url(../icons/ar-symbol.svg)}.iconoir-archery::before{content:url(../icons/archery.svg)}.iconoir-archive::before{content:url(../icons/archive.svg)}.iconoir-area-search::before{content:url(../icons/area-search.svg)}.iconoir-arrow-archery::before{content:url(../icons/arrow-archery.svg)}.iconoir-arrow-down-circled::before{content:url(../icons/arrow-down-circled.svg)}.iconoir-arrow-down::before{content:url(../icons/arrow-down.svg)}.iconoir-arrow-left-circled::before{content:url(../icons/arrow-left-circled.svg)}.iconoir-arrow-left::before{content:url(../icons/arrow-left.svg)}.iconoir-arrow-right-circled::before{content:url(../icons/arrow-right-circled.svg)}.iconoir-arrow-right::before{content:url(../icons/arrow-right.svg)}.iconoir-arrow-separate-vertical::before{content:url(../icons/arrow-separate-vertical.svg)}.iconoir-arrow-separate::before{content:url(../icons/arrow-separate.svg)}.iconoir-arrow-union-vertical::before{content:url(../icons/arrow-union-vertical.svg)}.iconoir-arrow-union::before{content:url(../icons/arrow-union.svg)}.iconoir-arrow-up-circled::before{content:url(../icons/arrow-up-circled.svg)}.iconoir-arrow-up::before{content:url(../icons/arrow-up.svg)}.iconoir-asana::before{content:url(../icons/asana.svg)}.iconoir-atom::before{content:url(../icons/atom.svg)}.iconoir-attachment::before{content:url(../icons/attachment.svg)}.iconoir-auto-flash::before{content:url(../icons/auto-flash.svg)}.iconoir-backward-15-seconds::before{content:url(../icons/backward-15-seconds.svg)}.iconoir-bag::before{content:url(../icons/bag.svg)}.iconoir-bank::before{content:url(../icons/bank.svg)}.iconoir-basket-ball-alt::before{content:url(../icons/basket-ball-alt.svg)}.iconoir-basket-ball::before{content:url(../icons/basket-ball.svg)}.iconoir-basketball-field::before{content:url(../icons/basketball-field.svg)}.iconoir-battery-25::before{content:url(../icons/battery-25.svg)}.iconoir-battery-50::before{content:url(../icons/battery-50.svg)}.iconoir-battery-75::before{content:url(../icons/battery-75.svg)}.iconoir-battery-charging::before{content:url(../icons/battery-charging.svg)}.iconoir-battery-empty::before{content:url(../icons/battery-empty.svg)}.iconoir-battery-full::before{content:url(../icons/battery-full.svg)}.iconoir-battery-indicator::before{content:url(../icons/battery-indicator.svg)}.iconoir-battery-warning::before{content:url(../icons/battery-warning.svg)}.iconoir-bbq::before{content:url(../icons/bbq.svg)}.iconoir-beach-bag-big::before{content:url(../icons/beach-bag-big.svg)}.iconoir-beach-bag::before{content:url(../icons/beach-bag.svg)}.iconoir-bell-notification::before{content:url(../icons/bell-notification.svg)}.iconoir-bell-off::before{content:url(../icons/bell-off.svg)}.iconoir-bell::before{content:url(../icons/bell.svg)}.iconoir-bicycle::before{content:url(../icons/bicycle.svg)}.iconoir-bin-add::before{content:url(../icons/bin-add.svg)}.iconoir-bin-full::before{content:url(../icons/bin-full.svg)}.iconoir-bin-half::before{content:url(../icons/bin-half.svg)}.iconoir-bin-minus::before{content:url(../icons/bin-minus.svg)}.iconoir-bin::before{content:url(../icons/bin.svg)}.iconoir-bluetooth-rounded::before{content:url(../icons/bluetooth-rounded.svg)}.iconoir-bluetooth::before{content:url(../icons/bluetooth.svg)}.iconoir-bold-square-outline::before{content:url(../icons/bold-square-outline.svg)}.iconoir-bold::before{content:url(../icons/bold.svg)}.iconoir-bonfire::before{content:url(../icons/bonfire.svg)}.iconoir-book-stack::before{content:url(../icons/book-stack.svg)}.iconoir-book::before{content:url(../icons/book.svg)}.iconoir-bookmark-book::before{content:url(../icons/bookmark-book.svg)}.iconoir-bookmark-circled::before{content:url(../icons/bookmark-circled.svg)}.iconoir-bookmark-empty::before{content:url(../icons/bookmark-empty.svg)}.iconoir-border-bl::before{content:url(../icons/border-bl.svg)}.iconoir-border-bottom::before{content:url(../icons/border-bottom.svg)}.iconoir-border-br::before{content:url(../icons/border-br.svg)}.iconoir-border-inner::before{content:url(../icons/border-inner.svg)}.iconoir-border-left::before{content:url(../icons/border-left.svg)}.iconoir-border-out::before{content:url(../icons/border-out.svg)}.iconoir-border-right::before{content:url(../icons/border-right.svg)}.iconoir-border-tl::before{content:url(../icons/border-tl.svg)}.iconoir-border-top::before{content:url(../icons/border-top.svg)}.iconoir-border-tr::before{content:url(../icons/border-tr.svg)}.iconoir-bounce-left::before{content:url(../icons/bounce-left.svg)}.iconoir-bounce-right::before{content:url(../icons/bounce-right.svg)}.iconoir-bowling-ball::before{content:url(../icons/bowling-ball.svg)}.iconoir-box-iso::before{content:url(../icons/box-iso.svg)}.iconoir-box::before{content:url(../icons/box.svg)}.iconoir-boxing-glove::before{content:url(../icons/boxing-glove.svg)}.iconoir-bubble-download::before{content:url(../icons/bubble-download.svg)}.iconoir-bubble-error::before{content:url(../icons/bubble-error.svg)}.iconoir-bubble-income::before{content:url(../icons/bubble-income.svg)}.iconoir-bubble-outcome::before{content:url(../icons/bubble-outcome.svg)}.iconoir-bubble-search::before{content:url(../icons/bubble-search.svg)}.iconoir-bubble-star::before{content:url(../icons/bubble-star.svg)}.iconoir-bubble-upload::before{content:url(../icons/bubble-upload.svg)}.iconoir-bubble-warning::before{content:url(../icons/bubble-warning.svg)}.iconoir-building::before{content:url(../icons/building.svg)}.iconoir-bus-outline::before{content:url(../icons/bus-outline.svg)}.iconoir-bus-stop::before{content:url(../icons/bus-stop.svg)}.iconoir-cable-rounded::before{content:url(../icons/cable-rounded.svg)}.iconoir-calculator::before{content:url(../icons/calculator.svg)}.iconoir-calendar::before{content:url(../icons/calendar.svg)}.iconoir-camera::before{content:url(../icons/camera.svg)}.iconoir-cancel::before{content:url(../icons/cancel.svg)}.iconoir-car-outline::before{content:url(../icons/car-outline.svg)}.iconoir-carbon::before{content:url(../icons/carbon.svg)}.iconoir-card-wallet::before{content:url(../icons/card-wallet.svg)}.iconoir-cart-alt::before{content:url(../icons/cart-alt.svg)}.iconoir-cart::before{content:url(../icons/cart.svg)}.iconoir-cash::before{content:url(../icons/cash.svg)}.iconoir-center-align::before{content:url(../icons/center-align.svg)}.iconoir-chat-add::before{content:url(../icons/chat-add.svg)}.iconoir-chat-bubble-check-1::before{content:url(../icons/chat-bubble-check-1.svg)}.iconoir-chat-bubble-check::before{content:url(../icons/chat-bubble-check.svg)}.iconoir-chat-bubble-empty::before{content:url(../icons/chat-bubble-empty.svg)}.iconoir-chat-bubble-error::before{content:url(../icons/chat-bubble-error.svg)}.iconoir-chat-bubble-question::before{content:url(../icons/chat-bubble-question.svg)}.iconoir-chat-bubble-translate::before{content:url(../icons/chat-bubble-translate.svg)}.iconoir-chat-bubble-warning::before{content:url(../icons/chat-bubble-warning.svg)}.iconoir-chat-bubble::before{content:url(../icons/chat-bubble.svg)}.iconoir-chat-lines::before{content:url(../icons/chat-lines.svg)}.iconoir-chat-remove::before{content:url(../icons/chat-remove.svg)}.iconoir-check-circled-outline::before{content:url(../icons/check-circled-outline.svg)}.iconoir-check::before{content:url(../icons/check.svg)}.iconoir-chocolate::before{content:url(../icons/chocolate.svg)}.iconoir-chromecast-active::before{content:url(../icons/chromecast-active.svg)}.iconoir-chromecast::before{content:url(../icons/chromecast.svg)}.iconoir-church-alt::before{content:url(../icons/church-alt.svg)}.iconoir-church::before{content:url(../icons/church.svg)}.iconoir-cinema-old::before{content:url(../icons/cinema-old.svg)}.iconoir-circle::before{content:url(../icons/circle.svg)}.iconoir-city::before{content:url(../icons/city.svg)}.iconoir-clock-outline::before{content:url(../icons/clock-outline.svg)}.iconoir-closet::before{content:url(../icons/closet.svg)}.iconoir-cloud-book-alt::before{content:url(../icons/cloud-book-alt.svg)}.iconoir-cloud-check::before{content:url(../icons/cloud-check.svg)}.iconoir-cloud-desync::before{content:url(../icons/cloud-desync.svg)}.iconoir-cloud-download::before{content:url(../icons/cloud-download.svg)}.iconoir-cloud-error::before{content:url(../icons/cloud-error.svg)}.iconoir-cloud-sunny::before{content:url(../icons/cloud-sunny.svg)}.iconoir-cloud-sync::before{content:url(../icons/cloud-sync.svg)}.iconoir-cloud-upload::before{content:url(../icons/cloud-upload.svg)}.iconoir-cloud::before{content:url(../icons/cloud.svg)}.iconoir-code-brackets-square::before{content:url(../icons/code-brackets-square.svg)}.iconoir-code-brackets::before{content:url(../icons/code-brackets.svg)}.iconoir-code::before{content:url(../icons/code.svg)}.iconoir-codepen::before{content:url(../icons/codepen.svg)}.iconoir-coin::before{content:url(../icons/coin.svg)}.iconoir-collage-frame::before{content:url(../icons/collage-frame.svg)}.iconoir-collapse::before{content:url(../icons/collapse.svg)}.iconoir-color-filter::before{content:url(../icons/color-filter.svg)}.iconoir-color-picker-empty::before{content:url(../icons/color-picker-empty.svg)}.iconoir-color-picker::before{content:url(../icons/color-picker.svg)}.iconoir-combine::before{content:url(../icons/combine.svg)}.iconoir-compact-disc::before{content:url(../icons/compact-disc.svg)}.iconoir-compress-lines::before{content:url(../icons/compress-lines.svg)}.iconoir-compress::before{content:url(../icons/compress.svg)}.iconoir-computer::before{content:url(../icons/computer.svg)}.iconoir-control-slider::before{content:url(../icons/control-slider.svg)}.iconoir-cookie::before{content:url(../icons/cookie.svg)}.iconoir-copy::before{content:url(../icons/copy.svg)}.iconoir-copyright::before{content:url(../icons/copyright.svg)}.iconoir-corner-bottom-left::before{content:url(../icons/corner-bottom-left.svg)}.iconoir-corner-bottom-right::before{content:url(../icons/corner-bottom-right.svg)}.iconoir-corner-top-left::before{content:url(../icons/corner-top-left.svg)}.iconoir-corner-top-right::before{content:url(../icons/corner-top-right.svg)}.iconoir-cpu-warning::before{content:url(../icons/cpu-warning.svg)}.iconoir-cpu::before{content:url(../icons/cpu.svg)}.iconoir-cracked-egg::before{content:url(../icons/cracked-egg.svg)}.iconoir-creative-commons::before{content:url(../icons/creative-commons.svg)}.iconoir-credit-card-2::before{content:url(../icons/credit-card-2.svg)}.iconoir-credit-card::before{content:url(../icons/credit-card.svg)}.iconoir-crop-rotate-bl::before{content:url(../icons/crop-rotate-bl.svg)}.iconoir-crop-rotate-br::before{content:url(../icons/crop-rotate-br.svg)}.iconoir-crop-rotate-tl::before{content:url(../icons/crop-rotate-tl.svg)}.iconoir-crop-rotate-tr::before{content:url(../icons/crop-rotate-tr.svg)}.iconoir-crop::before{content:url(../icons/crop.svg)}.iconoir-css3::before{content:url(../icons/css3.svg)}.iconoir-cursor-pointer::before{content:url(../icons/cursor-pointer.svg)}.iconoir-cut-alt::before{content:url(../icons/cut-alt.svg)}.iconoir-cut::before{content:url(../icons/cut.svg)}.iconoir-cycling::before{content:url(../icons/cycling.svg)}.iconoir-dash-flag::before{content:url(../icons/dash-flag.svg)}.iconoir-dashboard-dots::before{content:url(../icons/dashboard-dots.svg)}.iconoir-dashboard-speed::before{content:url(../icons/dashboard-speed.svg)}.iconoir-dashboard::before{content:url(../icons/dashboard.svg)}.iconoir-data-transfer-both::before{content:url(../icons/data-transfer-both.svg)}.iconoir-data-transfer-check::before{content:url(../icons/data-transfer-check.svg)}.iconoir-data-transfer-down::before{content:url(../icons/data-transfer-down.svg)}.iconoir-data-transfer-up::before{content:url(../icons/data-transfer-up.svg)}.iconoir-data-transfer-warning::before{content:url(../icons/data-transfer-warning.svg)}.iconoir-database-backup::before{content:url(../icons/database-backup.svg)}.iconoir-database-export::before{content:url(../icons/database-export.svg)}.iconoir-database-monitor::before{content:url(../icons/database-monitor.svg)}.iconoir-database-restore::before{content:url(../icons/database-restore.svg)}.iconoir-database-rounded::before{content:url(../icons/database-rounded.svg)}.iconoir-database-script::before{content:url(../icons/database-script.svg)}.iconoir-database-settings::before{content:url(../icons/database-settings.svg)}.iconoir-database-star::before{content:url(../icons/database-star.svg)}.iconoir-database-stats::before{content:url(../icons/database-stats.svg)}.iconoir-db-check::before{content:url(../icons/db-check.svg)}.iconoir-db-error::before{content:url(../icons/db-error.svg)}.iconoir-db-search::before{content:url(../icons/db-search.svg)}.iconoir-db-star::before{content:url(../icons/db-star.svg)}.iconoir-db-warning::before{content:url(../icons/db-warning.svg)}.iconoir-db::before{content:url(../icons/db.svg)}.iconoir-de-compress::before{content:url(../icons/de-compress.svg)}.iconoir-delete-circled-outline::before{content:url(../icons/delete-circled-outline.svg)}.iconoir-design-pencil::before{content:url(../icons/design-pencil.svg)}.iconoir-dialpad::before{content:url(../icons/dialpad.svg)}.iconoir-divide-selection-1::before{content:url(../icons/divide-selection-1.svg)}.iconoir-divide-selection-2::before{content:url(../icons/divide-selection-2.svg)}.iconoir-doc-search-alt::before{content:url(../icons/doc-search-alt.svg)}.iconoir-doc-search::before{content:url(../icons/doc-search.svg)}.iconoir-doc-star-alt::before{content:url(../icons/doc-star-alt.svg)}.iconoir-doc-star::before{content:url(../icons/doc-star.svg)}.iconoir-dollar::before{content:url(../icons/dollar.svg)}.iconoir-domotic-issue::before{content:url(../icons/domotic-issue.svg)}.iconoir-donate::before{content:url(../icons/donate.svg)}.iconoir-double-check::before{content:url(../icons/double-check.svg)}.iconoir-down-round-arrow::before{content:url(../icons/down-round-arrow.svg)}.iconoir-download-circled-outline::before{content:url(../icons/download-circled-outline.svg)}.iconoir-download-square-outline::before{content:url(../icons/download-square-outline.svg)}.iconoir-download::before{content:url(../icons/download.svg)}.iconoir-drag-hand-gesture::before{content:url(../icons/drag-hand-gesture.svg)}.iconoir-drawer::before{content:url(../icons/drawer.svg)}.iconoir-dribbble::before{content:url(../icons/dribbble.svg)}.iconoir-droplet-half::before{content:url(../icons/droplet-half.svg)}.iconoir-droplet::before{content:url(../icons/droplet.svg)}.iconoir-ease-curve-control-points::before{content:url(../icons/ease-curve-control-points.svg)}.iconoir-ease-in-control-point::before{content:url(../icons/ease-in-control-point.svg)}.iconoir-ease-in-out::before{content:url(../icons/ease-in-out.svg)}.iconoir-ease-in::before{content:url(../icons/ease-in.svg)}.iconoir-ease-out-control-point::before{content:url(../icons/ease-out-control-point.svg)}.iconoir-ease-out::before{content:url(../icons/ease-out.svg)}.iconoir-edit-pencil::before{content:url(../icons/edit-pencil.svg)}.iconoir-edit::before{content:url(../icons/edit.svg)}.iconoir-egg::before{content:url(../icons/egg.svg)}.iconoir-eject::before{content:url(../icons/eject.svg)}.iconoir-electronics-chip::before{content:url(../icons/electronics-chip.svg)}.iconoir-electronics-transister::before{content:url(../icons/electronics-transister.svg)}.iconoir-emoji-ball::before{content:url(../icons/emoji-ball.svg)}.iconoir-emoji-blink-left::before{content:url(../icons/emoji-blink-left.svg)}.iconoir-emoji-blink-right::before{content:url(../icons/emoji-blink-right.svg)}.iconoir-emoji-look-bottom::before{content:url(../icons/emoji-look-bottom.svg)}.iconoir-emoji-look-left::before{content:url(../icons/emoji-look-left.svg)}.iconoir-emoji-look-right::before{content:url(../icons/emoji-look-right.svg)}.iconoir-emoji-look-top::before{content:url(../icons/emoji-look-top.svg)}.iconoir-emoji-quite::before{content:url(../icons/emoji-quite.svg)}.iconoir-emoji-really::before{content:url(../icons/emoji-really.svg)}.iconoir-emoji-sad::before{content:url(../icons/emoji-sad.svg)}.iconoir-emoji-satisfied::before{content:url(../icons/emoji-satisfied.svg)}.iconoir-emoji-sing-left-note::before{content:url(../icons/emoji-sing-left-note.svg)}.iconoir-emoji-sing-left::before{content:url(../icons/emoji-sing-left.svg)}.iconoir-emoji-sing-right-note::before{content:url(../icons/emoji-sing-right-note.svg)}.iconoir-emoji-sing-right::before{content:url(../icons/emoji-sing-right.svg)}.iconoir-emoji-surprise-alt::before{content:url(../icons/emoji-surprise-alt.svg)}.iconoir-emoji-surprise::before{content:url(../icons/emoji-surprise.svg)}.iconoir-emoji-talking-angry::before{content:url(../icons/emoji-talking-angry.svg)}.iconoir-emoji-talking-happy::before{content:url(../icons/emoji-talking-happy.svg)}.iconoir-emoji-think-left::before{content:url(../icons/emoji-think-left.svg)}.iconoir-emoji-think-right::before{content:url(../icons/emoji-think-right.svg)}.iconoir-emoji::before{content:url(../icons/emoji.svg)}.iconoir-empty-page::before{content:url(../icons/empty-page.svg)}.iconoir-enlarge-round-arrow::before{content:url(../icons/enlarge-round-arrow.svg)}.iconoir-enlarge::before{content:url(../icons/enlarge.svg)}.iconoir-euro-square::before{content:url(../icons/euro-square.svg)}.iconoir-euro::before{content:url(../icons/euro.svg)}.iconoir-ev-charge-alt::before{content:url(../icons/ev-charge-alt.svg)}.iconoir-ev-charge::before{content:url(../icons/ev-charge.svg)}.iconoir-ev-plug-charging::before{content:url(../icons/ev-plug-charging.svg)}.iconoir-ev-plug-error::before{content:url(../icons/ev-plug-error.svg)}.iconoir-ev-plug::before{content:url(../icons/ev-plug.svg)}.iconoir-ev-rounded::before{content:url(../icons/ev-rounded.svg)}.iconoir-ev-station::before{content:url(../icons/ev-station.svg)}.iconoir-exclude::before{content:url(../icons/exclude.svg)}.iconoir-expand-lines::before{content:url(../icons/expand-lines.svg)}.iconoir-expand::before{content:url(../icons/expand.svg)}.iconoir-eye-alt::before{content:url(../icons/eye-alt.svg)}.iconoir-eye-close::before{content:url(../icons/eye-close.svg)}.iconoir-eye-empty::before{content:url(../icons/eye-empty.svg)}.iconoir-eye-off::before{content:url(../icons/eye-off.svg)}.iconoir-face-id::before{content:url(../icons/face-id.svg)}.iconoir-facebook-squared::before{content:url(../icons/facebook-squared.svg)}.iconoir-facebook::before{content:url(../icons/facebook.svg)}.iconoir-facetime::before{content:url(../icons/facetime.svg)}.iconoir-farm::before{content:url(../icons/farm.svg)}.iconoir-fast-arrow-down-box::before{content:url(../icons/fast-arrow-down-box.svg)}.iconoir-fast-arrow-down::before{content:url(../icons/fast-arrow-down.svg)}.iconoir-fast-arrow-left-box::before{content:url(../icons/fast-arrow-left-box.svg)}.iconoir-fast-arrow-left::before{content:url(../icons/fast-arrow-left.svg)}.iconoir-fast-arrow-right-box::before{content:url(../icons/fast-arrow-right-box.svg)}.iconoir-fast-arrow-right::before{content:url(../icons/fast-arrow-right.svg)}.iconoir-fast-arrow-top::before{content:url(../icons/fast-arrow-top.svg)}.iconoir-fast-arrow-up-box::before{content:url(../icons/fast-arrow-up-box.svg)}.iconoir-fast-bottom-circle::before{content:url(../icons/fast-bottom-circle.svg)}.iconoir-fast-left-circle::before{content:url(../icons/fast-left-circle.svg)}.iconoir-fast-right-circle::before{content:url(../icons/fast-right-circle.svg)}.iconoir-fast-top-circle::before{content:url(../icons/fast-top-circle.svg)}.iconoir-favourite-book::before{content:url(../icons/favourite-book.svg)}.iconoir-female::before{content:url(../icons/female.svg)}.iconoir-figma::before{content:url(../icons/figma.svg)}.iconoir-file-not-found::before{content:url(../icons/file-not-found.svg)}.iconoir-filter-alt::before{content:url(../icons/filter-alt.svg)}.iconoir-filter::before{content:url(../icons/filter.svg)}.iconoir-finder::before{content:url(../icons/finder.svg)}.iconoir-fingerprint-circled-error::before{content:url(../icons/fingerprint-circled-error.svg)}.iconoir-fingerprint-circled-lock::before{content:url(../icons/fingerprint-circled-lock.svg)}.iconoir-fingerprint-circled-ok::before{content:url(../icons/fingerprint-circled-ok.svg)}.iconoir-fingerprint-circled::before{content:url(../icons/fingerprint-circled.svg)}.iconoir-fingerprint-phone::before{content:url(../icons/fingerprint-phone.svg)}.iconoir-fingerprint-scan::before{content:url(../icons/fingerprint-scan.svg)}.iconoir-fingerprint-squared::before{content:url(../icons/fingerprint-squared.svg)}.iconoir-fingerprint::before{content:url(../icons/fingerprint.svg)}.iconoir-fire-flame::before{content:url(../icons/fire-flame.svg)}.iconoir-flare::before{content:url(../icons/flare.svg)}.iconoir-flash-off::before{content:url(../icons/flash-off.svg)}.iconoir-flash::before{content:url(../icons/flash.svg)}.iconoir-flask::before{content:url(../icons/flask.svg)}.iconoir-flip-reverse::before{content:url(../icons/flip-reverse.svg)}.iconoir-flip::before{content:url(../icons/flip.svg)}.iconoir-flower::before{content:url(../icons/flower.svg)}.iconoir-fluorine::before{content:url(../icons/fluorine.svg)}.iconoir-fog::before{content:url(../icons/fog.svg)}.iconoir-folder-alert::before{content:url(../icons/folder-alert.svg)}.iconoir-folder::before{content:url(../icons/folder.svg)}.iconoir-font-size::before{content:url(../icons/font-size.svg)}.iconoir-football-ball::before{content:url(../icons/football-ball.svg)}.iconoir-football::before{content:url(../icons/football.svg)}.iconoir-forward-15-seconds::before{content:url(../icons/forward-15-seconds.svg)}.iconoir-forward-outline::before{content:url(../icons/forward-outline.svg)}.iconoir-frame-alt-empty::before{content:url(../icons/frame-alt-empty.svg)}.iconoir-frame-alt::before{content:url(../icons/frame-alt.svg)}.iconoir-frame-select::before{content:url(../icons/frame-select.svg)}.iconoir-frame-simple::before{content:url(../icons/frame-simple.svg)}.iconoir-frame-tool::before{content:url(../icons/frame-tool.svg)}.iconoir-frame::before{content:url(../icons/frame.svg)}.iconoir-fridge::before{content:url(../icons/fridge.svg)}.iconoir-fx-rounded::before{content:url(../icons/fx-rounded.svg)}.iconoir-fx::before{content:url(../icons/fx.svg)}.iconoir-garage::before{content:url(../icons/garage.svg)}.iconoir-gas-tank-drop::before{content:url(../icons/gas-tank-drop.svg)}.iconoir-gas-tank::before{content:url(../icons/gas-tank.svg)}.iconoir-gas::before{content:url(../icons/gas.svg)}.iconoir-gift::before{content:url(../icons/gift.svg)}.iconoir-git-branch::before{content:url(../icons/git-branch.svg)}.iconoir-git-commit::before{content:url(../icons/git-commit.svg)}.iconoir-git-merge::before{content:url(../icons/git-merge.svg)}.iconoir-github-outline::before{content:url(../icons/github-outline.svg)}.iconoir-github::before{content:url(../icons/github.svg)}.iconoir-gitlab-full::before{content:url(../icons/gitlab-full.svg)}.iconoir-glass-empty::before{content:url(../icons/glass-empty.svg)}.iconoir-glass-half-alt::before{content:url(../icons/glass-half-alt.svg)}.iconoir-glass-half::before{content:url(../icons/glass-half.svg)}.iconoir-glasses::before{content:url(../icons/glasses.svg)}.iconoir-golf::before{content:url(../icons/golf.svg)}.iconoir-google-circled::before{content:url(../icons/google-circled.svg)}.iconoir-google-docs::before{content:url(../icons/google-docs.svg)}.iconoir-google-drive-check::before{content:url(../icons/google-drive-check.svg)}.iconoir-google-drive-sync::before{content:url(../icons/google-drive-sync.svg)}.iconoir-google-drive-warning::before{content:url(../icons/google-drive-warning.svg)}.iconoir-google-drive::before{content:url(../icons/google-drive.svg)}.iconoir-google-home::before{content:url(../icons/google-home.svg)}.iconoir-google-one::before{content:url(../icons/google-one.svg)}.iconoir-google::before{content:url(../icons/google.svg)}.iconoir-gps::before{content:url(../icons/gps.svg)}.iconoir-graph-down::before{content:url(../icons/graph-down.svg)}.iconoir-graph-up::before{content:url(../icons/graph-up.svg)}.iconoir-grid-add::before{content:url(../icons/grid-add.svg)}.iconoir-grid-minus::before{content:url(../icons/grid-minus.svg)}.iconoir-grid-remove::before{content:url(../icons/grid-remove.svg)}.iconoir-group::before{content:url(../icons/group.svg)}.iconoir-gym::before{content:url(../icons/gym.svg)}.iconoir-half-cookie::before{content:url(../icons/half-cookie.svg)}.iconoir-half-moon::before{content:url(../icons/half-moon.svg)}.iconoir-hand-brake::before{content:url(../icons/hand-brake.svg)}.iconoir-handbag::before{content:url(../icons/handbag.svg)}.iconoir-hard-drive::before{content:url(../icons/hard-drive.svg)}.iconoir-hat::before{content:url(../icons/hat.svg)}.iconoir-hd-display::before{content:url(../icons/hd-display.svg)}.iconoir-hd::before{content:url(../icons/hd.svg)}.iconoir-hdr::before{content:url(../icons/hdr.svg)}.iconoir-headset-charge::before{content:url(../icons/headset-charge.svg)}.iconoir-headset-help::before{content:url(../icons/headset-help.svg)}.iconoir-headset-issue::before{content:url(../icons/headset-issue.svg)}.iconoir-headset::before{content:url(../icons/headset.svg)}.iconoir-health-shield::before{content:url(../icons/health-shield.svg)}.iconoir-healthcare::before{content:url(../icons/healthcare.svg)}.iconoir-heart::before{content:url(../icons/heart.svg)}.iconoir-heavy-rain::before{content:url(../icons/heavy-rain.svg)}.iconoir-heptagon::before{content:url(../icons/heptagon.svg)}.iconoir-her-slips::before{content:url(../icons/her-slips.svg)}.iconoir-hesa-warning-outline::before{content:url(../icons/hesa-warning-outline.svg)}.iconoir-hexagon-alt::before{content:url(../icons/hexagon-alt.svg)}.iconoir-hexagon::before{content:url(../icons/hexagon.svg)}.iconoir-high-priority::before{content:url(../icons/high-priority.svg)}.iconoir-historic-shield-alt::before{content:url(../icons/historic-shield-alt.svg)}.iconoir-historic-shield::before{content:url(../icons/historic-shield.svg)}.iconoir-home-alt-slim-horiz::before{content:url(../icons/home-alt-slim-horiz.svg)}.iconoir-home-alt-slim::before{content:url(../icons/home-alt-slim.svg)}.iconoir-home-alt::before{content:url(../icons/home-alt.svg)}.iconoir-home-hospital::before{content:url(../icons/home-hospital.svg)}.iconoir-home-simple-door::before{content:url(../icons/home-simple-door.svg)}.iconoir-home-simple::before{content:url(../icons/home-simple.svg)}.iconoir-home-user::before{content:url(../icons/home-user.svg)}.iconoir-home::before{content:url(../icons/home.svg)}.iconoir-horiz-distribution-left::before{content:url(../icons/horiz-distribution-left.svg)}.iconoir-horiz-distribution-right::before{content:url(../icons/horiz-distribution-right.svg)}.iconoir-hospital-sign::before{content:url(../icons/hospital-sign.svg)}.iconoir-hospital::before{content:url(../icons/hospital.svg)}.iconoir-hourglass::before{content:url(../icons/hourglass.svg)}.iconoir-html5::before{content:url(../icons/html5.svg)}.iconoir-hydrogen::before{content:url(../icons/hydrogen.svg)}.iconoir-iconoir::before{content:url(../icons/iconoir.svg)}.iconoir-import::before{content:url(../icons/import.svg)}.iconoir-industry::before{content:url(../icons/industry.svg)}.iconoir-info-empty::before{content:url(../icons/info-empty.svg)}.iconoir-input-field::before{content:url(../icons/input-field.svg)}.iconoir-input-search::before{content:url(../icons/input-search.svg)}.iconoir-instagram::before{content:url(../icons/instagram.svg)}.iconoir-intersect-alt::before{content:url(../icons/intersect-alt.svg)}.iconoir-intersect::before{content:url(../icons/intersect.svg)}.iconoir-ios-settings::before{content:url(../icons/ios-settings.svg)}.iconoir-iris-scan::before{content:url(../icons/iris-scan.svg)}.iconoir-italic-square-outline::before{content:url(../icons/italic-square-outline.svg)}.iconoir-italic::before{content:url(../icons/italic.svg)}.iconoir-journal-page::before{content:url(../icons/journal-page.svg)}.iconoir-journal::before{content:url(../icons/journal.svg)}.iconoir-key-alt-back::before{content:url(../icons/key-alt-back.svg)}.iconoir-key-alt-minus::before{content:url(../icons/key-alt-minus.svg)}.iconoir-key-alt-plus::before{content:url(../icons/key-alt-plus.svg)}.iconoir-key-alt-remove::before{content:url(../icons/key-alt-remove.svg)}.iconoir-key-alt::before{content:url(../icons/key-alt.svg)}.iconoir-keyframe-align-center::before{content:url(../icons/keyframe-align-center.svg)}.iconoir-keyframe-align-horizontal-1::before{content:url(../icons/keyframe-align-horizontal-1.svg)}.iconoir-keyframe-align-horizontal::before{content:url(../icons/keyframe-align-horizontal.svg)}.iconoir-keyframe-position::before{content:url(../icons/keyframe-position.svg)}.iconoir-keyframe::before{content:url(../icons/keyframe.svg)}.iconoir-keyframes-couple::before{content:url(../icons/keyframes-couple.svg)}.iconoir-keyframes::before{content:url(../icons/keyframes.svg)}.iconoir-label-outline::before{content:url(../icons/label-outline.svg)}.iconoir-lamp::before{content:url(../icons/lamp.svg)}.iconoir-language::before{content:url(../icons/language.svg)}.iconoir-laptop-charging::before{content:url(../icons/laptop-charging.svg)}.iconoir-laptop-fix::before{content:url(../icons/laptop-fix.svg)}.iconoir-laptop-issue::before{content:url(../icons/laptop-issue.svg)}.iconoir-laptop::before{content:url(../icons/laptop.svg)}.iconoir-large-suitcase::before{content:url(../icons/large-suitcase.svg)}.iconoir-layout-left::before{content:url(../icons/layout-left.svg)}.iconoir-layout-right::before{content:url(../icons/layout-right.svg)}.iconoir-leaderboard-star::before{content:url(../icons/leaderboard-star.svg)}.iconoir-leaderboard::before{content:url(../icons/leaderboard.svg)}.iconoir-left-round-arrow::before{content:url(../icons/left-round-arrow.svg)}.iconoir-lens::before{content:url(../icons/lens.svg)}.iconoir-lifebelt::before{content:url(../icons/lifebelt.svg)}.iconoir-light-bulb-off::before{content:url(../icons/light-bulb-off.svg)}.iconoir-light-bulb-on::before{content:url(../icons/light-bulb-on.svg)}.iconoir-light-bulb::before{content:url(../icons/light-bulb.svg)}.iconoir-line-space::before{content:url(../icons/line-space.svg)}.iconoir-linear::before{content:url(../icons/linear.svg)}.iconoir-link::before{content:url(../icons/link.svg)}.iconoir-linkedin::before{content:url(../icons/linkedin.svg)}.iconoir-linux::before{content:url(../icons/linux.svg)}.iconoir-list::before{content:url(../icons/list.svg)}.iconoir-load-action-floppy::before{content:url(../icons/load-action-floppy.svg)}.iconoir-lock-key::before{content:url(../icons/lock-key.svg)}.iconoir-lock::before{content:url(../icons/lock.svg)}.iconoir-locked-book::before{content:url(../icons/locked-book.svg)}.iconoir-log-denied::before{content:url(../icons/log-denied.svg)}.iconoir-log-in::before{content:url(../icons/log-in.svg)}.iconoir-log-out::before{content:url(../icons/log-out.svg)}.iconoir-long-arrow-down-left::before{content:url(../icons/long-arrow-down-left.svg)}.iconoir-long-arrow-down-right::before{content:url(../icons/long-arrow-down-right.svg)}.iconoir-long-arrow-left-down::before{content:url(../icons/long-arrow-left-down.svg)}.iconoir-long-arrow-left-up::before{content:url(../icons/long-arrow-left-up.svg)}.iconoir-long-arrow-right-down::before{content:url(../icons/long-arrow-right-down.svg)}.iconoir-long-arrow-right-up-1::before{content:url(../icons/long-arrow-right-up-1.svg)}.iconoir-long-arrow-right-up::before{content:url(../icons/long-arrow-right-up.svg)}.iconoir-long-arrow-up-left::before{content:url(../icons/long-arrow-up-left.svg)}.iconoir-long-arrow-up-right::before{content:url(../icons/long-arrow-up-right.svg)}.iconoir-lot-of-cash::before{content:url(../icons/lot-of-cash.svg)}.iconoir-mac-control-key::before{content:url(../icons/mac-control-key.svg)}.iconoir-mac-dock::before{content:url(../icons/mac-dock.svg)}.iconoir-mac-option-key::before{content:url(../icons/mac-option-key.svg)}.iconoir-mac-os-window::before{content:url(../icons/mac-os-window.svg)}.iconoir-magnet-energy::before{content:url(../icons/magnet-energy.svg)}.iconoir-magnet::before{content:url(../icons/magnet.svg)}.iconoir-mail-opened::before{content:url(../icons/mail-opened.svg)}.iconoir-mail::before{content:url(../icons/mail.svg)}.iconoir-male::before{content:url(../icons/male.svg)}.iconoir-map-issue::before{content:url(../icons/map-issue.svg)}.iconoir-map::before{content:url(../icons/map.svg)}.iconoir-maps-arrow-diagonal::before{content:url(../icons/maps-arrow-diagonal.svg)}.iconoir-maps-arrow-issue::before{content:url(../icons/maps-arrow-issue.svg)}.iconoir-maps-arrow::before{content:url(../icons/maps-arrow.svg)}.iconoir-maps-go-straight::before{content:url(../icons/maps-go-straight.svg)}.iconoir-maps-turn-back::before{content:url(../icons/maps-turn-back.svg)}.iconoir-maps-turn-left::before{content:url(../icons/maps-turn-left.svg)}.iconoir-maps-turn-right::before{content:url(../icons/maps-turn-right.svg)}.iconoir-mask-square::before{content:url(../icons/mask-square.svg)}.iconoir-math-book::before{content:url(../icons/math-book.svg)}.iconoir-maximize::before{content:url(../icons/maximize.svg)}.iconoir-medal::before{content:url(../icons/medal.svg)}.iconoir-media-image-folder::before{content:url(../icons/media-image-folder.svg)}.iconoir-media-image-list::before{content:url(../icons/media-image-list.svg)}.iconoir-media-image::before{content:url(../icons/media-image.svg)}.iconoir-media-video-folder::before{content:url(../icons/media-video-folder.svg)}.iconoir-media-video-list::before{content:url(../icons/media-video-list.svg)}.iconoir-media-video::before{content:url(../icons/media-video.svg)}.iconoir-medium::before{content:url(../icons/medium.svg)}.iconoir-megaphone::before{content:url(../icons/megaphone.svg)}.iconoir-menu-scale::before{content:url(../icons/menu-scale.svg)}.iconoir-menu::before{content:url(../icons/menu.svg)}.iconoir-message-alert::before{content:url(../icons/message-alert.svg)}.iconoir-message-text::before{content:url(../icons/message-text.svg)}.iconoir-message::before{content:url(../icons/message.svg)}.iconoir-metro::before{content:url(../icons/metro.svg)}.iconoir-mic-add::before{content:url(../icons/mic-add.svg)}.iconoir-mic-check::before{content:url(../icons/mic-check.svg)}.iconoir-mic-mute::before{content:url(../icons/mic-mute.svg)}.iconoir-mic-remove::before{content:url(../icons/mic-remove.svg)}.iconoir-mic-speaking::before{content:url(../icons/mic-speaking.svg)}.iconoir-mic-warning::before{content:url(../icons/mic-warning.svg)}.iconoir-mic::before{content:url(../icons/mic.svg)}.iconoir-minus-1::before{content:url(../icons/minus-1.svg)}.iconoir-minus-hexagon::before{content:url(../icons/minus-hexagon.svg)}.iconoir-minus-pin-alt::before{content:url(../icons/minus-pin-alt.svg)}.iconoir-minus-square::before{content:url(../icons/minus-square.svg)}.iconoir-minus::before{content:url(../icons/minus.svg)}.iconoir-missing-font::before{content:url(../icons/missing-font.svg)}.iconoir-modern-tv-4k::before{content:url(../icons/modern-tv-4k.svg)}.iconoir-modern-tv::before{content:url(../icons/modern-tv.svg)}.iconoir-money-square::before{content:url(../icons/money-square.svg)}.iconoir-moon-sat::before{content:url(../icons/moon-sat.svg)}.iconoir-more-horiz-circled-outline::before{content:url(../icons/more-horiz-circled-outline.svg)}.iconoir-more-horiz::before{content:url(../icons/more-horiz.svg)}.iconoir-more-vert-circled-outline::before{content:url(../icons/more-vert-circled-outline.svg)}.iconoir-more-vert::before{content:url(../icons/more-vert.svg)}.iconoir-mouse-button-left::before{content:url(../icons/mouse-button-left.svg)}.iconoir-mouse-button-right::before{content:url(../icons/mouse-button-right.svg)}.iconoir-mouse-scroll-wheel::before{content:url(../icons/mouse-scroll-wheel.svg)}.iconoir-move-down::before{content:url(../icons/move-down.svg)}.iconoir-move-left::before{content:url(../icons/move-left.svg)}.iconoir-move-right::before{content:url(../icons/move-right.svg)}.iconoir-move-ruler::before{content:url(../icons/move-ruler.svg)}.iconoir-move-up::before{content:url(../icons/move-up.svg)}.iconoir-movie::before{content:url(../icons/movie.svg)}.iconoir-multi-bubble::before{content:url(../icons/multi-bubble.svg)}.iconoir-multi-mac-os-window::before{content:url(../icons/multi-mac-os-window.svg)}.iconoir-multi-window::before{content:url(../icons/multi-window.svg)}.iconoir-multiple-pages-add::before{content:url(../icons/multiple-pages-add.svg)}.iconoir-multiple-pages-delete::before{content:url(../icons/multiple-pages-delete.svg)}.iconoir-multiple-pages-empty::before{content:url(../icons/multiple-pages-empty.svg)}.iconoir-multiple-pages-remove::before{content:url(../icons/multiple-pages-remove.svg)}.iconoir-multiple-pages::before{content:url(../icons/multiple-pages.svg)}.iconoir-music-1-add::before{content:url(../icons/music-1-add.svg)}.iconoir-music-1::before{content:url(../icons/music-1.svg)}.iconoir-music-2-add::before{content:url(../icons/music-2-add.svg)}.iconoir-music-2::before{content:url(../icons/music-2.svg)}.iconoir-nav-arrow-down::before{content:url(../icons/nav-arrow-down.svg)}.iconoir-nav-arrow-left::before{content:url(../icons/nav-arrow-left.svg)}.iconoir-nav-arrow-right::before{content:url(../icons/nav-arrow-right.svg)}.iconoir-nav-arrow-up::before{content:url(../icons/nav-arrow-up.svg)}.iconoir-navigator-alt::before{content:url(../icons/navigator-alt.svg)}.iconoir-navigator::before{content:url(../icons/navigator.svg)}.iconoir-network-alt::before{content:url(../icons/network-alt.svg)}.iconoir-network-left::before{content:url(../icons/network-left.svg)}.iconoir-network-right::before{content:url(../icons/network-right.svg)}.iconoir-network::before{content:url(../icons/network.svg)}.iconoir-nitrogen::before{content:url(../icons/nitrogen.svg)}.iconoir-no-battery::before{content:url(../icons/no-battery.svg)}.iconoir-no-coin::before{content:url(../icons/no-coin.svg)}.iconoir-no-credit-card::before{content:url(../icons/no-credit-card.svg)}.iconoir-no-lock::before{content:url(../icons/no-lock.svg)}.iconoir-no-smoking::before{content:url(../icons/no-smoking.svg)}.iconoir-notes::before{content:url(../icons/notes.svg)}.iconoir-numbered-list-left::before{content:url(../icons/numbered-list-left.svg)}.iconoir-numbered-list-right::before{content:url(../icons/numbered-list-right.svg)}.iconoir-octagon::before{content:url(../icons/octagon.svg)}.iconoir-off-rounded::before{content:url(../icons/off-rounded.svg)}.iconoir-oil-industry::before{content:url(../icons/oil-industry.svg)}.iconoir-on-rounded::before{content:url(../icons/on-rounded.svg)}.iconoir-one-finger-select-hand-gesture::before{content:url(../icons/one-finger-select-hand-gesture.svg)}.iconoir-open-in-browser::before{content:url(../icons/open-in-browser.svg)}.iconoir-open-in-window::before{content:url(../icons/open-in-window.svg)}.iconoir-open-select-hand-gesture::before{content:url(../icons/open-select-hand-gesture.svg)}.iconoir-open-vpn::before{content:url(../icons/open-vpn.svg)}.iconoir-orange-half::before{content:url(../icons/orange-half.svg)}.iconoir-orange-slice-alt::before{content:url(../icons/orange-slice-alt.svg)}.iconoir-orange-slice::before{content:url(../icons/orange-slice.svg)}.iconoir-oxygen::before{content:url(../icons/oxygen.svg)}.iconoir-page-edit::before{content:url(../icons/page-edit.svg)}.iconoir-page-flip::before{content:url(../icons/page-flip.svg)}.iconoir-page-search::before{content:url(../icons/page-search.svg)}.iconoir-page-star::before{content:url(../icons/page-star.svg)}.iconoir-page::before{content:url(../icons/page.svg)}.iconoir-palette::before{content:url(../icons/palette.svg)}.iconoir-panorama-enlarge::before{content:url(../icons/panorama-enlarge.svg)}.iconoir-panorama-reduce::before{content:url(../icons/panorama-reduce.svg)}.iconoir-pants-alt::before{content:url(../icons/pants-alt.svg)}.iconoir-pants::before{content:url(../icons/pants.svg)}.iconoir-parking::before{content:url(../icons/parking.svg)}.iconoir-password-cursor::before{content:url(../icons/password-cursor.svg)}.iconoir-password-error::before{content:url(../icons/password-error.svg)}.iconoir-password-pass::before{content:url(../icons/password-pass.svg)}.iconoir-pause-outline::before{content:url(../icons/pause-outline.svg)}.iconoir-pc-mouse::before{content:url(../icons/pc-mouse.svg)}.iconoir-pen-connect-bluetooth::before{content:url(../icons/pen-connect-bluetooth.svg)}.iconoir-pen-connect-wifi::before{content:url(../icons/pen-connect-wifi.svg)}.iconoir-pen-tablet-connect-usb::before{content:url(../icons/pen-tablet-connect-usb.svg)}.iconoir-pen-tablet-connect-wifi::before{content:url(../icons/pen-tablet-connect-wifi.svg)}.iconoir-pen-tablet::before{content:url(../icons/pen-tablet.svg)}.iconoir-pentagon::before{content:url(../icons/pentagon.svg)}.iconoir-people-rounded::before{content:url(../icons/people-rounded.svg)}.iconoir-percentage-round::before{content:url(../icons/percentage-round.svg)}.iconoir-percentage-square::before{content:url(../icons/percentage-square.svg)}.iconoir-percentage::before{content:url(../icons/percentage.svg)}.iconoir-pharmacy-circled-cross::before{content:url(../icons/pharmacy-circled-cross.svg)}.iconoir-pharmacy-squared-cross::before{content:url(../icons/pharmacy-squared-cross.svg)}.iconoir-phone-add::before{content:url(../icons/phone-add.svg)}.iconoir-phone-delete::before{content:url(../icons/phone-delete.svg)}.iconoir-phone-disabled::before{content:url(../icons/phone-disabled.svg)}.iconoir-phone-income::before{content:url(../icons/phone-income.svg)}.iconoir-phone-outcome::before{content:url(../icons/phone-outcome.svg)}.iconoir-phone-paused::before{content:url(../icons/phone-paused.svg)}.iconoir-phone-remove::before{content:url(../icons/phone-remove.svg)}.iconoir-phone::before{content:url(../icons/phone.svg)}.iconoir-piggy-bank::before{content:url(../icons/piggy-bank.svg)}.iconoir-pin-alt::before{content:url(../icons/pin-alt.svg)}.iconoir-pin::before{content:url(../icons/pin.svg)}.iconoir-pizza-slice::before{content:url(../icons/pizza-slice.svg)}.iconoir-planet-alt::before{content:url(../icons/planet-alt.svg)}.iconoir-planet-sat::before{content:url(../icons/planet-sat.svg)}.iconoir-planet::before{content:url(../icons/planet.svg)}.iconoir-play-outline::before{content:url(../icons/play-outline.svg)}.iconoir-playlist-add::before{content:url(../icons/playlist-add.svg)}.iconoir-playlist-play::before{content:url(../icons/playlist-play.svg)}.iconoir-playlist::before{content:url(../icons/playlist.svg)}.iconoir-plug-type-a::before{content:url(../icons/plug-type-a.svg)}.iconoir-plug-type-c::before{content:url(../icons/plug-type-c.svg)}.iconoir-plug-type-g::before{content:url(../icons/plug-type-g.svg)}.iconoir-plug-type-l::before{content:url(../icons/plug-type-l.svg)}.iconoir-plus::before{content:url(../icons/plus.svg)}.iconoir-pocket::before{content:url(../icons/pocket.svg)}.iconoir-position-align::before{content:url(../icons/position-align.svg)}.iconoir-position::before{content:url(../icons/position.svg)}.iconoir-pound::before{content:url(../icons/pound.svg)}.iconoir-precision-tool::before{content:url(../icons/precision-tool.svg)}.iconoir-printer-alt::before{content:url(../icons/printer-alt.svg)}.iconoir-printer::before{content:url(../icons/printer.svg)}.iconoir-printing-page::before{content:url(../icons/printing-page.svg)}.iconoir-priority-down::before{content:url(../icons/priority-down.svg)}.iconoir-priority-up::before{content:url(../icons/priority-up.svg)}.iconoir-profile-circled::before{content:url(../icons/profile-circled.svg)}.iconoir-prohibition::before{content:url(../icons/prohibition.svg)}.iconoir-qr-code::before{content:url(../icons/qr-code.svg)}.iconoir-question-mark-circle::before{content:url(../icons/question-mark-circle.svg)}.iconoir-question-mark::before{content:url(../icons/question-mark.svg)}.iconoir-question-square-outline::before{content:url(../icons/question-square-outline.svg)}.iconoir-rain::before{content:url(../icons/rain.svg)}.iconoir-receive-dollars::before{content:url(../icons/receive-dollars.svg)}.iconoir-receive-euros::before{content:url(../icons/receive-euros.svg)}.iconoir-receive-pounds::before{content:url(../icons/receive-pounds.svg)}.iconoir-receive-yens::before{content:url(../icons/receive-yens.svg)}.iconoir-redo-action::before{content:url(../icons/redo-action.svg)}.iconoir-redo-circle::before{content:url(../icons/redo-circle.svg)}.iconoir-redo::before{content:url(../icons/redo.svg)}.iconoir-reduce-round-arrow::before{content:url(../icons/reduce-round-arrow.svg)}.iconoir-reduce::before{content:url(../icons/reduce.svg)}.iconoir-refresh-circular::before{content:url(../icons/refresh-circular.svg)}.iconoir-refresh-double::before{content:url(../icons/refresh-double.svg)}.iconoir-refresh::before{content:url(../icons/refresh.svg)}.iconoir-reminder-hand-gesture::before{content:url(../icons/reminder-hand-gesture.svg)}.iconoir-remove-database-script::before{content:url(../icons/remove-database-script.svg)}.iconoir-remove-empty::before{content:url(../icons/remove-empty.svg)}.iconoir-remove-folder::before{content:url(../icons/remove-folder.svg)}.iconoir-remove-frame::before{content:url(../icons/remove-frame.svg)}.iconoir-remove-from-cart::before{content:url(../icons/remove-from-cart.svg)}.iconoir-remove-keyframe-alt::before{content:url(../icons/remove-keyframe-alt.svg)}.iconoir-remove-keyframe::before{content:url(../icons/remove-keyframe.svg)}.iconoir-remove-keyframes::before{content:url(../icons/remove-keyframes.svg)}.iconoir-remove-media-image::before{content:url(../icons/remove-media-image.svg)}.iconoir-remove-media-video::before{content:url(../icons/remove-media-video.svg)}.iconoir-remove-page::before{content:url(../icons/remove-page.svg)}.iconoir-remove-pin-alt::before{content:url(../icons/remove-pin-alt.svg)}.iconoir-remove-selection::before{content:url(../icons/remove-selection.svg)}.iconoir-remove-square::before{content:url(../icons/remove-square.svg)}.iconoir-remove-user::before{content:url(../icons/remove-user.svg)}.iconoir-repeat-once::before{content:url(../icons/repeat-once.svg)}.iconoir-repeat::before{content:url(../icons/repeat.svg)}.iconoir-report-columns::before{content:url(../icons/report-columns.svg)}.iconoir-reports::before{content:url(../icons/reports.svg)}.iconoir-rewind-outline::before{content:url(../icons/rewind-outline.svg)}.iconoir-rhombus::before{content:url(../icons/rhombus.svg)}.iconoir-right-round-arrow::before{content:url(../icons/right-round-arrow.svg)}.iconoir-rings::before{content:url(../icons/rings.svg)}.iconoir-rotate-camera-left::before{content:url(../icons/rotate-camera-left.svg)}.iconoir-rotate-camera-right::before{content:url(../icons/rotate-camera-right.svg)}.iconoir-round-flask::before{content:url(../icons/round-flask.svg)}.iconoir-rss-feed-squared::before{content:url(../icons/rss-feed-squared.svg)}.iconoir-rss-feed::before{content:url(../icons/rss-feed.svg)}.iconoir-ruler-add::before{content:url(../icons/ruler-add.svg)}.iconoir-ruler-combine::before{content:url(../icons/ruler-combine.svg)}.iconoir-ruler-remove::before{content:url(../icons/ruler-remove.svg)}.iconoir-ruler::before{content:url(../icons/ruler.svg)}.iconoir-running::before{content:url(../icons/running.svg)}.iconoir-safari::before{content:url(../icons/safari.svg)}.iconoir-sandals::before{content:url(../icons/sandals.svg)}.iconoir-save-action-floppy::before{content:url(../icons/save-action-floppy.svg)}.iconoir-save-floppy-disk::before{content:url(../icons/save-floppy-disk.svg)}.iconoir-scale-frame-enlarge::before{content:url(../icons/scale-frame-enlarge.svg)}.iconoir-scale-frame-reduce::before{content:url(../icons/scale-frame-reduce.svg)}.iconoir-scan-qr-code::before{content:url(../icons/scan-qr-code.svg)}.iconoir-scanning::before{content:url(../icons/scanning.svg)}.iconoir-scarf::before{content:url(../icons/scarf.svg)}.iconoir-scissor-alt::before{content:url(../icons/scissor-alt.svg)}.iconoir-scissor::before{content:url(../icons/scissor.svg)}.iconoir-sea-and-sun::before{content:url(../icons/sea-and-sun.svg)}.iconoir-sea-waves::before{content:url(../icons/sea-waves.svg)}.iconoir-search-font::before{content:url(../icons/search-font.svg)}.iconoir-search::before{content:url(../icons/search.svg)}.iconoir-security-pass::before{content:url(../icons/security-pass.svg)}.iconoir-selection::before{content:url(../icons/selection.svg)}.iconoir-selective-tool::before{content:url(../icons/selective-tool.svg)}.iconoir-send-dollars::before{content:url(../icons/send-dollars.svg)}.iconoir-send-euros::before{content:url(../icons/send-euros.svg)}.iconoir-send-pounds::before{content:url(../icons/send-pounds.svg)}.iconoir-send-yens::before{content:url(../icons/send-yens.svg)}.iconoir-server-connection::before{content:url(../icons/server-connection.svg)}.iconoir-server::before{content:url(../icons/server.svg)}.iconoir-settings-cloud::before{content:url(../icons/settings-cloud.svg)}.iconoir-settings-profiles::before{content:url(../icons/settings-profiles.svg)}.iconoir-settings::before{content:url(../icons/settings.svg)}.iconoir-share-android::before{content:url(../icons/share-android.svg)}.iconoir-share-ios::before{content:url(../icons/share-ios.svg)}.iconoir-shield-add::before{content:url(../icons/shield-add.svg)}.iconoir-shield-alert::before{content:url(../icons/shield-alert.svg)}.iconoir-shield-alt::before{content:url(../icons/shield-alt.svg)}.iconoir-shield-broken::before{content:url(../icons/shield-broken.svg)}.iconoir-shield-check::before{content:url(../icons/shield-check.svg)}.iconoir-shield-cross::before{content:url(../icons/shield-cross.svg)}.iconoir-shield-download::before{content:url(../icons/shield-download.svg)}.iconoir-shield-eye::before{content:url(../icons/shield-eye.svg)}.iconoir-shield-loading::before{content:url(../icons/shield-loading.svg)}.iconoir-shield-minus::before{content:url(../icons/shield-minus.svg)}.iconoir-shield-question::before{content:url(../icons/shield-question.svg)}.iconoir-shield-search::before{content:url(../icons/shield-search.svg)}.iconoir-shield-upload::before{content:url(../icons/shield-upload.svg)}.iconoir-shield::before{content:url(../icons/shield.svg)}.iconoir-shop-alt::before{content:url(../icons/shop-alt.svg)}.iconoir-shop::before{content:url(../icons/shop.svg)}.iconoir-shopping-bag-add::before{content:url(../icons/shopping-bag-add.svg)}.iconoir-shopping-bag-alt::before{content:url(../icons/shopping-bag-alt.svg)}.iconoir-shopping-bag-arrow-down::before{content:url(../icons/shopping-bag-arrow-down.svg)}.iconoir-shopping-bag-arrow-up::before{content:url(../icons/shopping-bag-arrow-up.svg)}.iconoir-shopping-bag-check::before{content:url(../icons/shopping-bag-check.svg)}.iconoir-shopping-bag-issue::before{content:url(../icons/shopping-bag-issue.svg)}.iconoir-shopping-bag-remove::before{content:url(../icons/shopping-bag-remove.svg)}.iconoir-shopping-bag::before{content:url(../icons/shopping-bag.svg)}.iconoir-shopping-code-check::before{content:url(../icons/shopping-code-check.svg)}.iconoir-shopping-code-error::before{content:url(../icons/shopping-code-error.svg)}.iconoir-shopping-code::before{content:url(../icons/shopping-code.svg)}.iconoir-short-pants-alt::before{content:url(../icons/short-pants-alt.svg)}.iconoir-short-pants::before{content:url(../icons/short-pants.svg)}.iconoir-shuffle::before{content:url(../icons/shuffle.svg)}.iconoir-sidebar-collapse::before{content:url(../icons/sidebar-collapse.svg)}.iconoir-sidebar-expand::before{content:url(../icons/sidebar-expand.svg)}.iconoir-simple-cart::before{content:url(../icons/simple-cart.svg)}.iconoir-single-tap-gesture::before{content:url(../icons/single-tap-gesture.svg)}.iconoir-skateboard::before{content:url(../icons/skateboard.svg)}.iconoir-skateboarding::before{content:url(../icons/skateboarding.svg)}.iconoir-skip-next-outline::before{content:url(../icons/skip-next-outline.svg)}.iconoir-skip-prev-outline::before{content:url(../icons/skip-prev-outline.svg)}.iconoir-small-shop-alt::before{content:url(../icons/small-shop-alt.svg)}.iconoir-small-shop::before{content:url(../icons/small-shop.svg)}.iconoir-smartphone-device::before{content:url(../icons/smartphone-device.svg)}.iconoir-smoking::before{content:url(../icons/smoking.svg)}.iconoir-snapchat::before{content:url(../icons/snapchat.svg)}.iconoir-snow-flake::before{content:url(../icons/snow-flake.svg)}.iconoir-snow::before{content:url(../icons/snow.svg)}.iconoir-soap::before{content:url(../icons/soap.svg)}.iconoir-soccer-ball::before{content:url(../icons/soccer-ball.svg)}.iconoir-sort-down::before{content:url(../icons/sort-down.svg)}.iconoir-sort-up::before{content:url(../icons/sort-up.svg)}.iconoir-sound-high::before{content:url(../icons/sound-high.svg)}.iconoir-sound-low::before{content:url(../icons/sound-low.svg)}.iconoir-sound-min::before{content:url(../icons/sound-min.svg)}.iconoir-sound-off::before{content:url(../icons/sound-off.svg)}.iconoir-spock-hand-gesture::before{content:url(../icons/spock-hand-gesture.svg)}.iconoir-square::before{content:url(../icons/square.svg)}.iconoir-star-dashed::before{content:url(../icons/star-dashed.svg)}.iconoir-star-half-dashed::before{content:url(../icons/star-half-dashed.svg)}.iconoir-star-outline::before{content:url(../icons/star-outline.svg)}.iconoir-stat-down::before{content:url(../icons/stat-down.svg)}.iconoir-stat-up::before{content:url(../icons/stat-up.svg)}.iconoir-stats-report::before{content:url(../icons/stats-report.svg)}.iconoir-stats-square-down::before{content:url(../icons/stats-square-down.svg)}.iconoir-stats-square-up::before{content:url(../icons/stats-square-up.svg)}.iconoir-stretching::before{content:url(../icons/stretching.svg)}.iconoir-stroller::before{content:url(../icons/stroller.svg)}.iconoir-style-border::before{content:url(../icons/style-border.svg)}.iconoir-substract::before{content:url(../icons/substract.svg)}.iconoir-suggestion::before{content:url(../icons/suggestion.svg)}.iconoir-sun-light::before{content:url(../icons/sun-light.svg)}.iconoir-swimming::before{content:url(../icons/swimming.svg)}.iconoir-swipe-down-gesture::before{content:url(../icons/swipe-down-gesture.svg)}.iconoir-swipe-left-gesture::before{content:url(../icons/swipe-left-gesture.svg)}.iconoir-swipe-right-gesture::before{content:url(../icons/swipe-right-gesture.svg)}.iconoir-swipe-two-fingers-down-gesture::before{content:url(../icons/swipe-two-fingers-down-gesture.svg)}.iconoir-swipe-two-fingers-left-gesture::before{content:url(../icons/swipe-two-fingers-left-gesture.svg)}.iconoir-swipe-two-fingers-right-gesture::before{content:url(../icons/swipe-two-fingers-right-gesture.svg)}.iconoir-swipe-two-fingers-up-gesture::before{content:url(../icons/swipe-two-fingers-up-gesture.svg)}.iconoir-swipe-up-gesture::before{content:url(../icons/swipe-up-gesture.svg)}.iconoir-switch-off-outline::before{content:url(../icons/switch-off-outline.svg)}.iconoir-switch-on-outline::before{content:url(../icons/switch-on-outline.svg)}.iconoir-system-restart::before{content:url(../icons/system-restart.svg)}.iconoir-system-shut::before{content:url(../icons/system-shut.svg)}.iconoir-table-2-columns::before{content:url(../icons/table-2-columns.svg)}.iconoir-table-rows::before{content:url(../icons/table-rows.svg)}.iconoir-table::before{content:url(../icons/table.svg)}.iconoir-task-list::before{content:url(../icons/task-list.svg)}.iconoir-telegram-circled::before{content:url(../icons/telegram-circled.svg)}.iconoir-telegram::before{content:url(../icons/telegram.svg)}.iconoir-tennis-ball-alt::before{content:url(../icons/tennis-ball-alt.svg)}.iconoir-tennis-ball::before{content:url(../icons/tennis-ball.svg)}.iconoir-terminal-outline::before{content:url(../icons/terminal-outline.svg)}.iconoir-terminal-simple::before{content:url(../icons/terminal-simple.svg)}.iconoir-test-tube::before{content:url(../icons/test-tube.svg)}.iconoir-text-alt::before{content:url(../icons/text-alt.svg)}.iconoir-text-size::before{content:url(../icons/text-size.svg)}.iconoir-text::before{content:url(../icons/text.svg)}.iconoir-three-stars::before{content:url(../icons/three-stars.svg)}.iconoir-thunderstorm::before{content:url(../icons/thunderstorm.svg)}.iconoir-tiktok::before{content:url(../icons/tiktok.svg)}.iconoir-timer-off::before{content:url(../icons/timer-off.svg)}.iconoir-timer::before{content:url(../icons/timer.svg)}.iconoir-tower-check::before{content:url(../icons/tower-check.svg)}.iconoir-tower-no-access::before{content:url(../icons/tower-no-access.svg)}.iconoir-tower-warning::before{content:url(../icons/tower-warning.svg)}.iconoir-tower::before{content:url(../icons/tower.svg)}.iconoir-trademark::before{content:url(../icons/trademark.svg)}.iconoir-train-outline::before{content:url(../icons/train-outline.svg)}.iconoir-tram::before{content:url(../icons/tram.svg)}.iconoir-transition-bottom::before{content:url(../icons/transition-bottom.svg)}.iconoir-transition-left::before{content:url(../icons/transition-left.svg)}.iconoir-transition-right::before{content:url(../icons/transition-right.svg)}.iconoir-transition-top::before{content:url(../icons/transition-top.svg)}.iconoir-translate::before{content:url(../icons/translate.svg)}.iconoir-trash::before{content:url(../icons/trash.svg)}.iconoir-treadmill::before{content:url(../icons/treadmill.svg)}.iconoir-trekking::before{content:url(../icons/trekking.svg)}.iconoir-trello::before{content:url(../icons/trello.svg)}.iconoir-triangle-flag-circle::before{content:url(../icons/triangle-flag-circle.svg)}.iconoir-triangle-flag-full::before{content:url(../icons/triangle-flag-full.svg)}.iconoir-triangle-flag::before{content:url(../icons/triangle-flag.svg)}.iconoir-triangle::before{content:url(../icons/triangle.svg)}.iconoir-trophy::before{content:url(../icons/trophy.svg)}.iconoir-tunnel::before{content:url(../icons/tunnel.svg)}.iconoir-tv-fix::before{content:url(../icons/tv-fix.svg)}.iconoir-tv-issue::before{content:url(../icons/tv-issue.svg)}.iconoir-tv::before{content:url(../icons/tv.svg)}.iconoir-twitter-verified-badge::before{content:url(../icons/twitter-verified-badge.svg)}.iconoir-twitter::before{content:url(../icons/twitter.svg)}.iconoir-type::before{content:url(../icons/type.svg)}.iconoir-umbrella-full::before{content:url(../icons/umbrella-full.svg)}.iconoir-underline-square-outline::before{content:url(../icons/underline-square-outline.svg)}.iconoir-underline::before{content:url(../icons/underline.svg)}.iconoir-undo-action::before{content:url(../icons/undo-action.svg)}.iconoir-undo-circle::before{content:url(../icons/undo-circle.svg)}.iconoir-undo::before{content:url(../icons/undo.svg)}.iconoir-union-alt::before{content:url(../icons/union-alt.svg)}.iconoir-union-horiz-alt::before{content:url(../icons/union-horiz-alt.svg)}.iconoir-union::before{content:url(../icons/union.svg)}.iconoir-unity-5::before{content:url(../icons/unity-5.svg)}.iconoir-unity::before{content:url(../icons/unity.svg)}.iconoir-up-round-arrow::before{content:url(../icons/up-round-arrow.svg)}.iconoir-upload-square-outline::before{content:url(../icons/upload-square-outline.svg)}.iconoir-upload::before{content:url(../icons/upload.svg)}.iconoir-usb::before{content:url(../icons/usb.svg)}.iconoir-user-bag::before{content:url(../icons/user-bag.svg)}.iconoir-user-cart::before{content:url(../icons/user-cart.svg)}.iconoir-user-circle-alt::before{content:url(../icons/user-circle-alt.svg)}.iconoir-user-scan::before{content:url(../icons/user-scan.svg)}.iconoir-user-square-alt::before{content:url(../icons/user-square-alt.svg)}.iconoir-user::before{content:url(../icons/user.svg)}.iconoir-verified-badge::before{content:url(../icons/verified-badge.svg)}.iconoir-verified-user::before{content:url(../icons/verified-user.svg)}.iconoir-video-camera-off::before{content:url(../icons/video-camera-off.svg)}.iconoir-video-camera::before{content:url(../icons/video-camera.svg)}.iconoir-view-columns-2::before{content:url(../icons/view-columns-2.svg)}.iconoir-view-columns-3::before{content:url(../icons/view-columns-3.svg)}.iconoir-view-grid::before{content:url(../icons/view-grid.svg)}.iconoir-view-structure-down::before{content:url(../icons/view-structure-down.svg)}.iconoir-view-structure-up::before{content:url(../icons/view-structure-up.svg)}.iconoir-voice-circled-lock::before{content:url(../icons/voice-circled-lock.svg)}.iconoir-voice-circled::before{content:url(../icons/voice-circled.svg)}.iconoir-voice-error::before{content:url(../icons/voice-error.svg)}.iconoir-voice-ok::before{content:url(../icons/voice-ok.svg)}.iconoir-voice-phone::before{content:url(../icons/voice-phone.svg)}.iconoir-voice-scan::before{content:url(../icons/voice-scan.svg)}.iconoir-voice-squared::before{content:url(../icons/voice-squared.svg)}.iconoir-voice::before{content:url(../icons/voice.svg)}.iconoir-vr-symbol::before{content:url(../icons/vr-symbol.svg)}.iconoir-waist::before{content:url(../icons/waist.svg)}.iconoir-walking::before{content:url(../icons/walking.svg)}.iconoir-wallet::before{content:url(../icons/wallet.svg)}.iconoir-warning-circled-outline::before{content:url(../icons/warning-circled-outline.svg)}.iconoir-warning-square-outline::before{content:url(../icons/warning-square-outline.svg)}.iconoir-warning-triangle-outline::before{content:url(../icons/warning-triangle-outline.svg)}.iconoir-web-window-close::before{content:url(../icons/web-window-close.svg)}.iconoir-web-window-energy-consumption::before{content:url(../icons/web-window-energy-consumption.svg)}.iconoir-web-window::before{content:url(../icons/web-window.svg)}.iconoir-weight-alt::before{content:url(../icons/weight-alt.svg)}.iconoir-weight::before{content:url(../icons/weight.svg)}.iconoir-white-flag::before{content:url(../icons/white-flag.svg)}.iconoir-wifi-issue::before{content:url(../icons/wifi-issue.svg)}.iconoir-wifi-off::before{content:url(../icons/wifi-off.svg)}.iconoir-wifi-rounded::before{content:url(../icons/wifi-rounded.svg)}.iconoir-wifi-signal-none::before{content:url(../icons/wifi-signal-none.svg)}.iconoir-wifi::before{content:url(../icons/wifi.svg)}.iconoir-wind::before{content:url(../icons/wind.svg)}.iconoir-windows::before{content:url(../icons/windows.svg)}.iconoir-wrap-text::before{content:url(../icons/wrap-text.svg)}.iconoir-wristwatch::before{content:url(../icons/wristwatch.svg)}.iconoir-yen-square::before{content:url(../icons/yen-square.svg)}.iconoir-yen::before{content:url(../icons/yen.svg)}.iconoir-yoga::before{content:url(../icons/yoga.svg)}.iconoir-youtube::before{content:url(../icons/youtube.svg)}.iconoir-zoom-in::before{content:url(../icons/zoom-in.svg)}.iconoir-zoom-out::before{content:url(../icons/zoom-out.svg)} \ No newline at end of file diff --git a/meta-data.json b/meta-data.json index 1845567a..4a94a1e1 100644 --- a/meta-data.json +++ b/meta-data.json @@ -1 +1 @@ -{"icons":["1st-medal.svg","360-view.svg","4k-display.svg","4x4-cell.svg","Fishing.svg","accessibility-sign.svg","accessibility-tech.svg","accessibility.svg","activity.svg","add-circled-outline.svg","add-database-script.svg","add-folder.svg","add-frame.svg","add-hexagon.svg","add-keyframe-alt.svg","add-keyframe.svg","add-keyframes.svg","add-lens.svg","add-media-image.svg","add-media-video.svg","add-page.svg","add-pin-alt.svg","add-selection.svg","add-square.svg","add-to-cart.svg","add-user.svg","air-conditioner.svg","airplane-helix-45deg.svg","airplane-helix.svg","airplane-off.svg","airplane-rotation.svg","airplane.svg","airplay.svg","alarm.svg","album-carousel.svg","album-list.svg","album-open.svg","album.svg","align-bottom-box.svg","align-center.svg","align-justify.svg","align-left-box.svg","align-left.svg","align-right-box.svg","align-right.svg","align-top-box.svg","antenna-off.svg","antenna-signal-rounded.svg","antenna-signal.svg","antenna.svg","app-notification.svg","apple-half-alt.svg","apple-half.svg","apple-imac-2021-side.svg","apple-imac-2021.svg","apple-mac.svg","apple-swift.svg","apple.svg","ar-symbol.svg","archery.svg","archive.svg","area-search.svg","arrow-archery.svg","arrow-down-circled.svg","arrow-down.svg","arrow-left-circled.svg","arrow-left.svg","arrow-right-circled.svg","arrow-right.svg","arrow-separate-vertical.svg","arrow-separate.svg","arrow-union-vertical.svg","arrow-union.svg","arrow-up-circled.svg","arrow-up.svg","asana.svg","attachment.svg","auto-flash.svg","bag.svg","bank.svg","basket-ball-alt.svg","basket-ball.svg","basketball-field.svg","battery-25.svg","battery-50.svg","battery-75.svg","battery-charging.svg","battery-empty.svg","battery-full.svg","battery-indicator.svg","battery-warning.svg","bbq.svg","beach-bag-big.svg","beach-bag.svg","bell-notification.svg","bell-off.svg","bell.svg","bicycle.svg","bin-add.svg","bin-full.svg","bin-half.svg","bin-minus.svg","bin.svg","bluetooth-rounded.svg","bluetooth.svg","bold-square-outline.svg","bold.svg","bookmark-circled.svg","bookmark-empty.svg","border-bl.svg","border-bottom.svg","border-br.svg","border-inner.svg","border-left.svg","border-out.svg","border-right.svg","border-tl.svg","border-top.svg","border-tr.svg","bounce-left.svg","bounce-right.svg","bowling-ball.svg","box-iso.svg","box.svg","boxing-glove.svg","bubble-download.svg","bubble-error.svg","bubble-income.svg","bubble-outcome.svg","bubble-search.svg","bubble-star.svg","bubble-upload.svg","bubble-warning.svg","building.svg","bus-outline.svg","bus-stop.svg","cable-rounded.svg","calculator.svg","calendar.svg","camera.svg","cancel.svg","car-outline.svg","cart-alt.svg","cart.svg","cash.svg","center-align.svg","chat-add.svg","chat-bubble-check-1.svg","chat-bubble-check.svg","chat-bubble-empty.svg","chat-bubble-error.svg","chat-bubble-question.svg","chat-bubble-translate.svg","chat-bubble-warning.svg","chat-bubble.svg","chat-lines.svg","chat-remove.svg","check-circled-outline.svg","check.svg","chocolate.svg","chromecast-active.svg","chromecast.svg","church-alt.svg","church.svg","cinema-old.svg","circle.svg","city.svg","clock-outline.svg","closet.svg","cloud-book-alt.svg","cloud-check.svg","cloud-desync.svg","cloud-download.svg","cloud-error.svg","cloud-sunny.svg","cloud-sync.svg","cloud-upload.svg","cloud.svg","code.svg","codepen.svg","coin.svg","collage-frame.svg","collapse.svg","color-filter.svg","color-picker-empty.svg","color-picker.svg","combine.svg","compact-disc.svg","compress-lines.svg","compress.svg","computer.svg","control-slider.svg","cookie.svg","copy.svg","copyright.svg","corner-bottom-left.svg","corner-bottom-right.svg","corner-top-left.svg","corner-top-right.svg","cpu-warning.svg","cpu.svg","cracked-egg.svg","creative-commons.svg","credit-card-2.svg","credit-card.svg","crop-rotate-bl.svg","crop-rotate-br.svg","crop-rotate-tl.svg","crop-rotate-tr.svg","crop.svg","css3.svg","cursor-pointer.svg","cut-alt.svg","cut.svg","cycling.svg","dash-flag.svg","dashboard-dots.svg","dashboard-speed.svg","dashboard.svg","data-transfer-both.svg","data-transfer-check.svg","data-transfer-down.svg","data-transfer-up.svg","data-transfer-warning.svg","database-backup.svg","database-export.svg","database-monitor.svg","database-restore.svg","database-rounded.svg","database-script.svg","database-settings.svg","database-star.svg","database-stats.svg","db-check.svg","db-error.svg","db-search.svg","db-star.svg","db-warning.svg","db.svg","de-compress.svg","delete-circled-outline.svg","design-pencil.svg","dialpad.svg","divide-selection-1.svg","divide-selection-2.svg","doc-search-alt.svg","doc-search.svg","doc-star-alt.svg","doc-star.svg","dollar.svg","domotic-issue.svg","donate.svg","double-check.svg","down-round-arrow.svg","download-circled-outline.svg","download-square-outline.svg","download.svg","drag-hand-gesture.svg","drawer.svg","dribbble.svg","droplet-half.svg","droplet.svg","ease-curve-control-points.svg","ease-in-control-point.svg","ease-in-out.svg","ease-in.svg","ease-out-control-point.svg","ease-out.svg","edit-pencil.svg","edit.svg","egg.svg","eject.svg","electronics-chip.svg","electronics-transister.svg","emoji-ball.svg","emoji-blink-left.svg","emoji-blink-right.svg","emoji-look-bottom.svg","emoji-look-left.svg","emoji-look-right.svg","emoji-look-top.svg","emoji-quite.svg","emoji-really.svg","emoji-sad.svg","emoji-satisfied.svg","emoji-sing-left-note.svg","emoji-sing-left.svg","emoji-sing-right-note.svg","emoji-sing-right.svg","emoji-surprise-alt.svg","emoji-surprise.svg","emoji-talking-angry.svg","emoji-talking-happy.svg","emoji-think-left.svg","emoji-think-right.svg","emoji.svg","empty-page.svg","enlarge-round-arrow.svg","enlarge.svg","euro-square.svg","euro.svg","ev-charge-alt.svg","ev-charge.svg","ev-plug-charging.svg","ev-plug-error.svg","ev-plug.svg","ev-rounded.svg","ev-station.svg","exclude.svg","expand-lines.svg","expand.svg","eye-alt.svg","eye-close.svg","eye-empty.svg","eye-off.svg","face-id.svg","facebook-squared.svg","facebook.svg","facetime.svg","farm.svg","fast-arrow-down-box.svg","fast-arrow-down.svg","fast-arrow-left-box.svg","fast-arrow-left.svg","fast-arrow-right-box.svg","fast-arrow-right.svg","fast-arrow-top.svg","fast-arrow-up-box.svg","fast-bottom-circle.svg","fast-left-circle.svg","fast-right-circle.svg","fast-top-circle.svg","female.svg","figma.svg","file-not-found.svg","filter-alt.svg","filter.svg","finder.svg","fingerprint-circled-error.svg","fingerprint-circled-lock.svg","fingerprint-circled-ok.svg","fingerprint-circled.svg","fingerprint-phone.svg","fingerprint-scan.svg","fingerprint-squared.svg","fingerprint.svg","flare.svg","flash-off.svg","flash.svg","flip-reverse.svg","flip.svg","flower.svg","fog.svg","folder-alert.svg","folder.svg","font-size.svg","football-ball.svg","football.svg","forward-outline.svg","frame-alt-empty.svg","frame-alt.svg","frame-select.svg","frame-simple.svg","frame-tool.svg","frame.svg","fridge.svg","fx-rounded.svg","fx.svg","garage.svg","gas-tank-drop.svg","gas-tank.svg","gas.svg","gift.svg","git-branch.svg","git-commit.svg","git-merge.svg","github-outline.svg","github.svg","gitlab-full.svg","glass-empty.svg","glass-half-alt.svg","glass-half.svg","glasses.svg","golf.svg","google-circled.svg","google-docs.svg","google-drive-check.svg","google-drive-sync.svg","google-drive-warning.svg","google-drive.svg","google-home.svg","google-one.svg","google.svg","gps.svg","graph-down.svg","graph-up.svg","grid-add.svg","grid-minus.svg","grid-remove.svg","group.svg","gym.svg","half-cookie.svg","half-moon.svg","hand-brake.svg","handbag.svg","hard-drive.svg","hat.svg","hd.svg","hdr.svg","headset-charge.svg","headset-help.svg","headset-issue.svg","headset.svg","health-shield.svg","healthcare.svg","heart.svg","heavy-rain.svg","heptagon.svg","her-slips.svg","hesa-warning-outline.svg","hexagon-alt.svg","hexagon.svg","high-priority.svg","historic-shield-alt.svg","historic-shield.svg","home-alt-slim-horiz.svg","home-alt-slim.svg","home-alt.svg","home-hospital.svg","home-simple-door.svg","home-simple.svg","home-user.svg","home.svg","horiz-distribution-left.svg","horiz-distribution-right.svg","hospital-sign.svg","hospital.svg","hourglass.svg","html5.svg","iconoir.svg","import.svg","industry.svg","info-empty.svg","input-field.svg","input-search.svg","instagram.svg","intersect-alt.svg","intersect.svg","ios-settings.svg","iris-scan.svg","italic-square-outline.svg","italic.svg","journal-page.svg","journal.svg","key-alt-back.svg","key-alt-minus.svg","key-alt-plus.svg","key-alt-remove.svg","key-alt.svg","keyframe-align-center.svg","keyframe-align-horizontal-1.svg","keyframe-align-horizontal.svg","keyframe-position.svg","keyframe.svg","keyframes-couple.svg","keyframes.svg","label-outline.svg","lamp.svg","language.svg","laptop-charging.svg","laptop-fix.svg","laptop-issue.svg","laptop.svg","large-suitcase.svg","layout-left.svg","layout-right.svg","leaderboard-star.svg","leaderboard.svg","left-round-arrow.svg","lens.svg","lifebelt.svg","light-bulb-off.svg","light-bulb-on.svg","light-bulb.svg","line-space.svg","linear.svg","link.svg","linkedin.svg","linux.svg","list.svg","load-action-floppy.svg","lock-key.svg","lock.svg","log-denied.svg","log-in.svg","log-out.svg","long-arrow-down-left.svg","long-arrow-down-right.svg","long-arrow-left-down.svg","long-arrow-left-up.svg","long-arrow-right-down.svg","long-arrow-right-up-1.svg","long-arrow-right-up.svg","long-arrow-up-left.svg","long-arrow-up-right.svg","lot-of-cash.svg","mac-control-key.svg","mac-dock.svg","mac-option-key.svg","mac-os-window.svg","mail-opened.svg","mail.svg","male.svg","map-issue.svg","map.svg","maps-arrow-diagonal.svg","maps-arrow-issue.svg","maps-arrow.svg","maps-go-straight.svg","maps-turn-back.svg","maps-turn-left.svg","maps-turn-right.svg","mask-square.svg","maximize.svg","medal.svg","media-image-folder.svg","media-image-list.svg","media-image.svg","media-video-folder.svg","media-video-list.svg","media-video.svg","medium.svg","megaphone.svg","menu-scale.svg","menu.svg","message-alert.svg","message-text.svg","message.svg","metro.svg","mic-add.svg","mic-check.svg","mic-mute.svg","mic-remove.svg","mic-speaking.svg","mic-warning.svg","mic.svg","minus-1.svg","minus-hexagon.svg","minus-pin-alt.svg","minus-square.svg","minus.svg","missing-font.svg","modern-tv-4k.svg","modern-tv.svg","money-square.svg","moon-sat.svg","more-horiz-circled-outline.svg","more-horiz.svg","more-vert-circled-outline.svg","more-vert.svg","mouse-button-left.svg","mouse-button-right.svg","mouse-scroll-wheel.svg","move-down.svg","move-left.svg","move-right.svg","move-ruler.svg","move-up.svg","movie.svg","multi-bubble.svg","multi-mac-os-window.svg","multi-window.svg","multiple-pages-add.svg","multiple-pages-delete.svg","multiple-pages-empty.svg","multiple-pages-remove.svg","multiple-pages.svg","music-1-add.svg","music-1.svg","music-2-add.svg","music-2.svg","nav-arrow-down.svg","nav-arrow-left.svg","nav-arrow-right.svg","nav-arrow-up.svg","navigator-alt.svg","navigator.svg","network-alt.svg","network-left.svg","network-right.svg","network.svg","no-battery.svg","no-coin.svg","no-credit-card.svg","no-lock.svg","no-smoking.svg","notes.svg","octagon.svg","off-rounded.svg","oil-industry.svg","on-rounded.svg","one-finger-select-hand-gesture.svg","open-in-browser.svg","open-in-window.svg","open-select-hand-gesture.svg","open-vpn.svg","orange-half.svg","orange-slice-alt.svg","orange-slice.svg","page-flip.svg","page-search.svg","page-star.svg","page.svg","palette.svg","panorama-enlarge.svg","panorama-reduce.svg","pants-alt.svg","pants.svg","parking.svg","password-cursor.svg","password-error.svg","password-pass.svg","pause-outline.svg","pc-mouse.svg","pen-connect-bluetooth.svg","pen-connect-wifi.svg","pen-tablet-connect-usb.svg","pen-tablet-connect-wifi.svg","pen-tablet.svg","pentagon.svg","people-rounded.svg","percentage-round.svg","percentage-square.svg","percentage.svg","pharmacy-circled-cross.svg","pharmacy-squared-cross.svg","phone-add.svg","phone-delete.svg","phone-disabled.svg","phone-income.svg","phone-outcome.svg","phone-paused.svg","phone-remove.svg","phone.svg","piggy-bank.svg","pin-alt.svg","pin.svg","pizza-slice.svg","planet-alt.svg","planet-sat.svg","planet.svg","play-outline.svg","playlist-add.svg","playlist-play.svg","playlist.svg","plug-type-a.svg","plug-type-c.svg","plug-type-g.svg","plug-type-l.svg","plus.svg","pocket.svg","position-align.svg","position.svg","pound.svg","precision-tool.svg","printer-alt.svg","printer.svg","printing-page.svg","priority-down.svg","priority-up.svg","profile-circled.svg","prohibition.svg","qr-code.svg","question-mark-circle.svg","question-mark.svg","question-square-outline.svg","rain.svg","receive-dollars.svg","receive-euros.svg","receive-pounds.svg","receive-yens.svg","redo-action.svg","redo-circle.svg","redo.svg","reduce-round-arrow.svg","reduce.svg","refresh-circular.svg","refresh-double.svg","refresh.svg","reminder-hand-gesture.svg","remove-database-script.svg","remove-empty.svg","remove-folder.svg","remove-frame.svg","remove-from-cart.svg","remove-keyframe-alt.svg","remove-keyframe.svg","remove-keyframes.svg","remove-media-image.svg","remove-media-video.svg","remove-page.svg","remove-pin-alt.svg","remove-selection.svg","remove-square.svg","remove-user.svg","repeat-once.svg","repeat.svg","report-columns.svg","reports.svg","rewind-outline.svg","rhombus.svg","right-round-arrow.svg","rings.svg","rotate-camera-left.svg","rotate-camera-right.svg","rss-feed-squared.svg","rss-feed.svg","ruler-add.svg","ruler-combine.svg","ruler-remove.svg","ruler.svg","running.svg","safari.svg","sandals.svg","save-action-floppy.svg","save-floppy-disk.svg","scale-frame-enlarge.svg","scale-frame-reduce.svg","scan-qr-code.svg","scanning.svg","scarf.svg","scissor-alt.svg","scissor.svg","sea-and-sun.svg","sea-waves.svg","search-font.svg","search.svg","security-pass.svg","selection.svg","selective-tool.svg","send-dollars.svg","send-euros.svg","send-pounds.svg","send-yens.svg","server-connection.svg","server.svg","settings-cloud.svg","settings-profiles.svg","settings.svg","share-android.svg","share-ios.svg","shield-add.svg","shield-alert.svg","shield-alt.svg","shield-broken.svg","shield-check.svg","shield-cross.svg","shield-download.svg","shield-eye.svg","shield-loading.svg","shield-minus.svg","shield-question.svg","shield-search.svg","shield-upload.svg","shield.svg","shop-alt.svg","shop.svg","shopping-bag-add.svg","shopping-bag-alt.svg","shopping-bag-arrow-down.svg","shopping-bag-arrow-up.svg","shopping-bag-check.svg","shopping-bag-issue.svg","shopping-bag-remove.svg","shopping-bag.svg","shopping-code-check.svg","shopping-code-error.svg","shopping-code.svg","short-pants-alt.svg","short-pants.svg","shuffle.svg","simple-cart.svg","single-tap-gesture.svg","skateboard.svg","skateboarding.svg","skip-next-outline.svg","skip-prev-outline.svg","small-shop-alt.svg","small-shop.svg","smartphone-device.svg","smoking.svg","snapchat.svg","snow-flake.svg","snow.svg","soap.svg","soccer-ball.svg","sort-down.svg","sort-up.svg","sound-high.svg","sound-low.svg","sound-min.svg","sound-off.svg","spock-hand-gesture.svg","square.svg","star-dashed.svg","star-half-dashed.svg","star-outline.svg","stat-down.svg","stat-up.svg","stats-report.svg","stats-square-down.svg","stats-square-up.svg","stretching.svg","stroller.svg","style-border.svg","substract.svg","suggestion.svg","sun-light.svg","swimming.svg","swipe-down-gesture.svg","swipe-left-gesture.svg","swipe-right-gesture.svg","swipe-two-fingers-down-gesture.svg","swipe-two-fingers-left-gesture.svg","swipe-two-fingers-right-gesture.svg","swipe-two-fingers-up-gesture.svg","swipe-up-gesture.svg","switch-off-outline.svg","switch-on-outline.svg","system-restart.svg","system-shut.svg","table-2-columns.svg","table-rows.svg","table.svg","telegram-circled.svg","telegram.svg","tennis-ball-alt.svg","tennis-ball.svg","terminal-outline.svg","terminal-simple.svg","text-alt.svg","text-size.svg","text.svg","three-stars.svg","thunderstorm.svg","tiktok.svg","timer-off.svg","timer.svg","tower-check.svg","tower-no-access.svg","tower-warning.svg","tower.svg","trademark.svg","train-outline.svg","tram.svg","transition-bottom.svg","transition-left.svg","transition-right.svg","transition-top.svg","translate.svg","trash.svg","treadmill.svg","trekking.svg","trello.svg","triangle-flag-circle.svg","triangle-flag-full.svg","triangle-flag.svg","triangle.svg","trophy.svg","tunnel.svg","tv-fix.svg","tv-issue.svg","tv.svg","twitter-verified-badge.svg","twitter.svg","type.svg","umbrella-full.svg","underline-square-outline.svg","underline.svg","undo-action.svg","undo-circle.svg","undo.svg","union-alt.svg","union-horiz-alt.svg","union.svg","unity 5.svg","unity.svg","up-round-arrow.svg","upload-square-outline.svg","upload.svg","usb.svg","user-bag.svg","user-cart.svg","user-circle-alt.svg","user-scan.svg","user-square-alt.svg","user.svg","verified-badge.svg","verified-user.svg","video-camera-off.svg","video-camera.svg","view-columns-2.svg","view-columns-3.svg","view-grid.svg","view-structure-down.svg","view-structure-up.svg","voice-circled-lock.svg","voice-circled.svg","voice-error.svg","voice-ok.svg","voice-phone.svg","voice-scan.svg","voice-squared.svg","voice.svg","vr-symbol.svg","waist.svg","walking.svg","warning-circled-outline.svg","warning-square-outline.svg","warning-triangle-outline.svg","web-window-close.svg","web-window-energy-consumption.svg","web-window.svg","weight-alt.svg","weight.svg","white-flag.svg","wifi-issue.svg","wifi-off.svg","wifi-rounded.svg","wifi-signal-none.svg","wifi.svg","wind.svg","windows.svg","wrap-text.svg","wristwatch.svg","yen-square.svg","yen.svg","yoga.svg","youtube.svg","zoom-in.svg","zoom-out.svg"]} \ No newline at end of file +{"icons":["1st-medal.svg","360-view.svg","4k-display.svg","4x4-cell.svg","Fishing.svg","accessibility-sign.svg","accessibility-tech.svg","accessibility.svg","activity.svg","add-circled-outline.svg","add-database-script.svg","add-folder.svg","add-frame.svg","add-hexagon.svg","add-keyframe-alt.svg","add-keyframe.svg","add-keyframes.svg","add-lens.svg","add-media-image.svg","add-media-video.svg","add-page.svg","add-pin-alt.svg","add-selection.svg","add-square.svg","add-to-cart.svg","add-user.svg","air-conditioner.svg","airplane-helix-45deg.svg","airplane-helix.svg","airplane-off.svg","airplane-rotation.svg","airplane.svg","airplay.svg","alarm.svg","album-carousel.svg","album-list.svg","album-open.svg","album.svg","align-bottom-box.svg","align-center.svg","align-justify.svg","align-left-box.svg","align-left.svg","align-right-box.svg","align-right.svg","align-top-box.svg","antenna-off.svg","antenna-signal-rounded.svg","antenna-signal.svg","antenna.svg","app-notification.svg","apple-half-alt.svg","apple-half.svg","apple-imac-2021-side.svg","apple-imac-2021.svg","apple-mac.svg","apple-swift.svg","apple-wallet.svg","apple.svg","ar-symbol.svg","archery.svg","archive.svg","area-search.svg","arrow-archery.svg","arrow-down-circled.svg","arrow-down.svg","arrow-left-circled.svg","arrow-left.svg","arrow-right-circled.svg","arrow-right.svg","arrow-separate-vertical.svg","arrow-separate.svg","arrow-union-vertical.svg","arrow-union.svg","arrow-up-circled.svg","arrow-up.svg","asana.svg","atom.svg","attachment.svg","auto-flash.svg","backward-15-seconds.svg","bag.svg","bank.svg","basket-ball-alt.svg","basket-ball.svg","basketball-field.svg","battery-25.svg","battery-50.svg","battery-75.svg","battery-charging.svg","battery-empty.svg","battery-full.svg","battery-indicator.svg","battery-warning.svg","bbq.svg","beach-bag-big.svg","beach-bag.svg","bell-notification.svg","bell-off.svg","bell.svg","bicycle.svg","bin-add.svg","bin-full.svg","bin-half.svg","bin-minus.svg","bin.svg","bluetooth-rounded.svg","bluetooth.svg","bold-square-outline.svg","bold.svg","bonfire.svg","book-stack.svg","book.svg","bookmark-book.svg","bookmark-circled.svg","bookmark-empty.svg","border-bl.svg","border-bottom.svg","border-br.svg","border-inner.svg","border-left.svg","border-out.svg","border-right.svg","border-tl.svg","border-top.svg","border-tr.svg","bounce-left.svg","bounce-right.svg","bowling-ball.svg","box-iso.svg","box.svg","boxing-glove.svg","bubble-download.svg","bubble-error.svg","bubble-income.svg","bubble-outcome.svg","bubble-search.svg","bubble-star.svg","bubble-upload.svg","bubble-warning.svg","building.svg","bus-outline.svg","bus-stop.svg","cable-rounded.svg","calculator.svg","calendar.svg","camera.svg","cancel.svg","car-outline.svg","carbon.svg","card-wallet.svg","cart-alt.svg","cart.svg","cash.svg","center-align.svg","chat-add.svg","chat-bubble-check-1.svg","chat-bubble-check.svg","chat-bubble-empty.svg","chat-bubble-error.svg","chat-bubble-question.svg","chat-bubble-translate.svg","chat-bubble-warning.svg","chat-bubble.svg","chat-lines.svg","chat-remove.svg","check-circled-outline.svg","check.svg","chocolate.svg","chromecast-active.svg","chromecast.svg","church-alt.svg","church.svg","cinema-old.svg","circle.svg","city.svg","clock-outline.svg","closet.svg","cloud-book-alt.svg","cloud-check.svg","cloud-desync.svg","cloud-download.svg","cloud-error.svg","cloud-sunny.svg","cloud-sync.svg","cloud-upload.svg","cloud.svg","code-brackets-square.svg","code-brackets.svg","code.svg","codepen.svg","coin.svg","collage-frame.svg","collapse.svg","color-filter.svg","color-picker-empty.svg","color-picker.svg","combine.svg","compact-disc.svg","compress-lines.svg","compress.svg","computer.svg","control-slider.svg","cookie.svg","copy.svg","copyright.svg","corner-bottom-left.svg","corner-bottom-right.svg","corner-top-left.svg","corner-top-right.svg","cpu-warning.svg","cpu.svg","cracked-egg.svg","creative-commons.svg","credit-card-2.svg","credit-card.svg","crop-rotate-bl.svg","crop-rotate-br.svg","crop-rotate-tl.svg","crop-rotate-tr.svg","crop.svg","css3.svg","cursor-pointer.svg","cut-alt.svg","cut.svg","cycling.svg","dash-flag.svg","dashboard-dots.svg","dashboard-speed.svg","dashboard.svg","data-transfer-both.svg","data-transfer-check.svg","data-transfer-down.svg","data-transfer-up.svg","data-transfer-warning.svg","database-backup.svg","database-export.svg","database-monitor.svg","database-restore.svg","database-rounded.svg","database-script.svg","database-settings.svg","database-star.svg","database-stats.svg","db-check.svg","db-error.svg","db-search.svg","db-star.svg","db-warning.svg","db.svg","de-compress.svg","delete-circled-outline.svg","design-pencil.svg","dialpad.svg","divide-selection-1.svg","divide-selection-2.svg","doc-search-alt.svg","doc-search.svg","doc-star-alt.svg","doc-star.svg","dollar.svg","domotic-issue.svg","donate.svg","double-check.svg","down-round-arrow.svg","download-circled-outline.svg","download-square-outline.svg","download.svg","drag-hand-gesture.svg","drawer.svg","dribbble.svg","droplet-half.svg","droplet.svg","ease-curve-control-points.svg","ease-in-control-point.svg","ease-in-out.svg","ease-in.svg","ease-out-control-point.svg","ease-out.svg","edit-pencil.svg","edit.svg","egg.svg","eject.svg","electronics-chip.svg","electronics-transister.svg","emoji-ball.svg","emoji-blink-left.svg","emoji-blink-right.svg","emoji-look-bottom.svg","emoji-look-left.svg","emoji-look-right.svg","emoji-look-top.svg","emoji-quite.svg","emoji-really.svg","emoji-sad.svg","emoji-satisfied.svg","emoji-sing-left-note.svg","emoji-sing-left.svg","emoji-sing-right-note.svg","emoji-sing-right.svg","emoji-surprise-alt.svg","emoji-surprise.svg","emoji-talking-angry.svg","emoji-talking-happy.svg","emoji-think-left.svg","emoji-think-right.svg","emoji.svg","empty-page.svg","enlarge-round-arrow.svg","enlarge.svg","euro-square.svg","euro.svg","ev-charge-alt.svg","ev-charge.svg","ev-plug-charging.svg","ev-plug-error.svg","ev-plug.svg","ev-rounded.svg","ev-station.svg","exclude.svg","expand-lines.svg","expand.svg","eye-alt.svg","eye-close.svg","eye-empty.svg","eye-off.svg","face-id.svg","facebook-squared.svg","facebook.svg","facetime.svg","farm.svg","fast-arrow-down-box.svg","fast-arrow-down.svg","fast-arrow-left-box.svg","fast-arrow-left.svg","fast-arrow-right-box.svg","fast-arrow-right.svg","fast-arrow-top.svg","fast-arrow-up-box.svg","fast-bottom-circle.svg","fast-left-circle.svg","fast-right-circle.svg","fast-top-circle.svg","favourite-book.svg","female.svg","figma.svg","file-not-found.svg","filter-alt.svg","filter.svg","finder.svg","fingerprint-circled-error.svg","fingerprint-circled-lock.svg","fingerprint-circled-ok.svg","fingerprint-circled.svg","fingerprint-phone.svg","fingerprint-scan.svg","fingerprint-squared.svg","fingerprint.svg","fire-flame.svg","flare.svg","flash-off.svg","flash.svg","flask.svg","flip-reverse.svg","flip.svg","flower.svg","fluorine.svg","fog.svg","folder-alert.svg","folder.svg","font-size.svg","football-ball.svg","football.svg","forward-15-seconds.svg","forward-outline.svg","frame-alt-empty.svg","frame-alt.svg","frame-select.svg","frame-simple.svg","frame-tool.svg","frame.svg","fridge.svg","fx-rounded.svg","fx.svg","garage.svg","gas-tank-drop.svg","gas-tank.svg","gas.svg","gift.svg","git-branch.svg","git-commit.svg","git-merge.svg","github-outline.svg","github.svg","gitlab-full.svg","glass-empty.svg","glass-half-alt.svg","glass-half.svg","glasses.svg","golf.svg","google-circled.svg","google-docs.svg","google-drive-check.svg","google-drive-sync.svg","google-drive-warning.svg","google-drive.svg","google-home.svg","google-one.svg","google.svg","gps.svg","graph-down.svg","graph-up.svg","grid-add.svg","grid-minus.svg","grid-remove.svg","group.svg","gym.svg","half-cookie.svg","half-moon.svg","hand-brake.svg","handbag.svg","hard-drive.svg","hat.svg","hd-display.svg","hd.svg","hdr.svg","headset-charge.svg","headset-help.svg","headset-issue.svg","headset.svg","health-shield.svg","healthcare.svg","heart.svg","heavy-rain.svg","heptagon.svg","her-slips.svg","hesa-warning-outline.svg","hexagon-alt.svg","hexagon.svg","high-priority.svg","historic-shield-alt.svg","historic-shield.svg","home-alt-slim-horiz.svg","home-alt-slim.svg","home-alt.svg","home-hospital.svg","home-simple-door.svg","home-simple.svg","home-user.svg","home.svg","horiz-distribution-left.svg","horiz-distribution-right.svg","hospital-sign.svg","hospital.svg","hourglass.svg","html5.svg","hydrogen.svg","iconoir.svg","import.svg","industry.svg","info-empty.svg","input-field.svg","input-search.svg","instagram.svg","intersect-alt.svg","intersect.svg","ios-settings.svg","iris-scan.svg","italic-square-outline.svg","italic.svg","journal-page.svg","journal.svg","key-alt-back.svg","key-alt-minus.svg","key-alt-plus.svg","key-alt-remove.svg","key-alt.svg","keyframe-align-center.svg","keyframe-align-horizontal-1.svg","keyframe-align-horizontal.svg","keyframe-position.svg","keyframe.svg","keyframes-couple.svg","keyframes.svg","label-outline.svg","lamp.svg","language.svg","laptop-charging.svg","laptop-fix.svg","laptop-issue.svg","laptop.svg","large-suitcase.svg","layout-left.svg","layout-right.svg","leaderboard-star.svg","leaderboard.svg","left-round-arrow.svg","lens.svg","lifebelt.svg","light-bulb-off.svg","light-bulb-on.svg","light-bulb.svg","line-space.svg","linear.svg","link.svg","linkedin.svg","linux.svg","list.svg","load-action-floppy.svg","lock-key.svg","lock.svg","locked-book.svg","log-denied.svg","log-in.svg","log-out.svg","long-arrow-down-left.svg","long-arrow-down-right.svg","long-arrow-left-down.svg","long-arrow-left-up.svg","long-arrow-right-down.svg","long-arrow-right-up-1.svg","long-arrow-right-up.svg","long-arrow-up-left.svg","long-arrow-up-right.svg","lot-of-cash.svg","mac-control-key.svg","mac-dock.svg","mac-option-key.svg","mac-os-window.svg","magnet-energy.svg","magnet.svg","mail-opened.svg","mail.svg","male.svg","map-issue.svg","map.svg","maps-arrow-diagonal.svg","maps-arrow-issue.svg","maps-arrow.svg","maps-go-straight.svg","maps-turn-back.svg","maps-turn-left.svg","maps-turn-right.svg","mask-square.svg","math-book.svg","maximize.svg","medal.svg","media-image-folder.svg","media-image-list.svg","media-image.svg","media-video-folder.svg","media-video-list.svg","media-video.svg","medium.svg","megaphone.svg","menu-scale.svg","menu.svg","message-alert.svg","message-text.svg","message.svg","metro.svg","mic-add.svg","mic-check.svg","mic-mute.svg","mic-remove.svg","mic-speaking.svg","mic-warning.svg","mic.svg","minus-1.svg","minus-hexagon.svg","minus-pin-alt.svg","minus-square.svg","minus.svg","missing-font.svg","modern-tv-4k.svg","modern-tv.svg","money-square.svg","moon-sat.svg","more-horiz-circled-outline.svg","more-horiz.svg","more-vert-circled-outline.svg","more-vert.svg","mouse-button-left.svg","mouse-button-right.svg","mouse-scroll-wheel.svg","move-down.svg","move-left.svg","move-right.svg","move-ruler.svg","move-up.svg","movie.svg","multi-bubble.svg","multi-mac-os-window.svg","multi-window.svg","multiple-pages-add.svg","multiple-pages-delete.svg","multiple-pages-empty.svg","multiple-pages-remove.svg","multiple-pages.svg","music-1-add.svg","music-1.svg","music-2-add.svg","music-2.svg","nav-arrow-down.svg","nav-arrow-left.svg","nav-arrow-right.svg","nav-arrow-up.svg","navigator-alt.svg","navigator.svg","network-alt.svg","network-left.svg","network-right.svg","network.svg","nitrogen.svg","no-battery.svg","no-coin.svg","no-credit-card.svg","no-lock.svg","no-smoking.svg","notes.svg","numbered-list-left.svg","numbered-list-right.svg","octagon.svg","off-rounded.svg","oil-industry.svg","on-rounded.svg","one-finger-select-hand-gesture.svg","open-in-browser.svg","open-in-window.svg","open-select-hand-gesture.svg","open-vpn.svg","orange-half.svg","orange-slice-alt.svg","orange-slice.svg","oxygen.svg","page-edit.svg","page-flip.svg","page-search.svg","page-star.svg","page.svg","palette.svg","panorama-enlarge.svg","panorama-reduce.svg","pants-alt.svg","pants.svg","parking.svg","password-cursor.svg","password-error.svg","password-pass.svg","pause-outline.svg","pc-mouse.svg","pen-connect-bluetooth.svg","pen-connect-wifi.svg","pen-tablet-connect-usb.svg","pen-tablet-connect-wifi.svg","pen-tablet.svg","pentagon.svg","people-rounded.svg","percentage-round.svg","percentage-square.svg","percentage.svg","pharmacy-circled-cross.svg","pharmacy-squared-cross.svg","phone-add.svg","phone-delete.svg","phone-disabled.svg","phone-income.svg","phone-outcome.svg","phone-paused.svg","phone-remove.svg","phone.svg","piggy-bank.svg","pin-alt.svg","pin.svg","pizza-slice.svg","planet-alt.svg","planet-sat.svg","planet.svg","play-outline.svg","playlist-add.svg","playlist-play.svg","playlist.svg","plug-type-a.svg","plug-type-c.svg","plug-type-g.svg","plug-type-l.svg","plus.svg","pocket.svg","position-align.svg","position.svg","pound.svg","precision-tool.svg","printer-alt.svg","printer.svg","printing-page.svg","priority-down.svg","priority-up.svg","profile-circled.svg","prohibition.svg","qr-code.svg","question-mark-circle.svg","question-mark.svg","question-square-outline.svg","rain.svg","receive-dollars.svg","receive-euros.svg","receive-pounds.svg","receive-yens.svg","redo-action.svg","redo-circle.svg","redo.svg","reduce-round-arrow.svg","reduce.svg","refresh-circular.svg","refresh-double.svg","refresh.svg","reminder-hand-gesture.svg","remove-database-script.svg","remove-empty.svg","remove-folder.svg","remove-frame.svg","remove-from-cart.svg","remove-keyframe-alt.svg","remove-keyframe.svg","remove-keyframes.svg","remove-media-image.svg","remove-media-video.svg","remove-page.svg","remove-pin-alt.svg","remove-selection.svg","remove-square.svg","remove-user.svg","repeat-once.svg","repeat.svg","report-columns.svg","reports.svg","rewind-outline.svg","rhombus.svg","right-round-arrow.svg","rings.svg","rotate-camera-left.svg","rotate-camera-right.svg","round-flask.svg","rss-feed-squared.svg","rss-feed.svg","ruler-add.svg","ruler-combine.svg","ruler-remove.svg","ruler.svg","running.svg","safari.svg","sandals.svg","save-action-floppy.svg","save-floppy-disk.svg","scale-frame-enlarge.svg","scale-frame-reduce.svg","scan-qr-code.svg","scanning.svg","scarf.svg","scissor-alt.svg","scissor.svg","sea-and-sun.svg","sea-waves.svg","search-font.svg","search.svg","security-pass.svg","selection.svg","selective-tool.svg","send-dollars.svg","send-euros.svg","send-pounds.svg","send-yens.svg","server-connection.svg","server.svg","settings-cloud.svg","settings-profiles.svg","settings.svg","share-android.svg","share-ios.svg","shield-add.svg","shield-alert.svg","shield-alt.svg","shield-broken.svg","shield-check.svg","shield-cross.svg","shield-download.svg","shield-eye.svg","shield-loading.svg","shield-minus.svg","shield-question.svg","shield-search.svg","shield-upload.svg","shield.svg","shop-alt.svg","shop.svg","shopping-bag-add.svg","shopping-bag-alt.svg","shopping-bag-arrow-down.svg","shopping-bag-arrow-up.svg","shopping-bag-check.svg","shopping-bag-issue.svg","shopping-bag-remove.svg","shopping-bag.svg","shopping-code-check.svg","shopping-code-error.svg","shopping-code.svg","short-pants-alt.svg","short-pants.svg","shuffle.svg","sidebar-collapse.svg","sidebar-expand.svg","simple-cart.svg","single-tap-gesture.svg","skateboard.svg","skateboarding.svg","skip-next-outline.svg","skip-prev-outline.svg","small-shop-alt.svg","small-shop.svg","smartphone-device.svg","smoking.svg","snapchat.svg","snow-flake.svg","snow.svg","soap.svg","soccer-ball.svg","sort-down.svg","sort-up.svg","sound-high.svg","sound-low.svg","sound-min.svg","sound-off.svg","spock-hand-gesture.svg","square.svg","star-dashed.svg","star-half-dashed.svg","star-outline.svg","stat-down.svg","stat-up.svg","stats-report.svg","stats-square-down.svg","stats-square-up.svg","stretching.svg","stroller.svg","style-border.svg","substract.svg","suggestion.svg","sun-light.svg","swimming.svg","swipe-down-gesture.svg","swipe-left-gesture.svg","swipe-right-gesture.svg","swipe-two-fingers-down-gesture.svg","swipe-two-fingers-left-gesture.svg","swipe-two-fingers-right-gesture.svg","swipe-two-fingers-up-gesture.svg","swipe-up-gesture.svg","switch-off-outline.svg","switch-on-outline.svg","system-restart.svg","system-shut.svg","table-2-columns.svg","table-rows.svg","table.svg","task-list.svg","telegram-circled.svg","telegram.svg","tennis-ball-alt.svg","tennis-ball.svg","terminal-outline.svg","terminal-simple.svg","test-tube.svg","text-alt.svg","text-size.svg","text.svg","three-stars.svg","thunderstorm.svg","tiktok.svg","timer-off.svg","timer.svg","tower-check.svg","tower-no-access.svg","tower-warning.svg","tower.svg","trademark.svg","train-outline.svg","tram.svg","transition-bottom.svg","transition-left.svg","transition-right.svg","transition-top.svg","translate.svg","trash.svg","treadmill.svg","trekking.svg","trello.svg","triangle-flag-circle.svg","triangle-flag-full.svg","triangle-flag.svg","triangle.svg","trophy.svg","tunnel.svg","tv-fix.svg","tv-issue.svg","tv.svg","twitter-verified-badge.svg","twitter.svg","type.svg","umbrella-full.svg","underline-square-outline.svg","underline.svg","undo-action.svg","undo-circle.svg","undo.svg","union-alt.svg","union-horiz-alt.svg","union.svg","unity-5.svg","unity.svg","up-round-arrow.svg","upload-square-outline.svg","upload.svg","usb.svg","user-bag.svg","user-cart.svg","user-circle-alt.svg","user-scan.svg","user-square-alt.svg","user.svg","verified-badge.svg","verified-user.svg","video-camera-off.svg","video-camera.svg","view-columns-2.svg","view-columns-3.svg","view-grid.svg","view-structure-down.svg","view-structure-up.svg","voice-circled-lock.svg","voice-circled.svg","voice-error.svg","voice-ok.svg","voice-phone.svg","voice-scan.svg","voice-squared.svg","voice.svg","vr-symbol.svg","waist.svg","walking.svg","wallet.svg","warning-circled-outline.svg","warning-square-outline.svg","warning-triangle-outline.svg","web-window-close.svg","web-window-energy-consumption.svg","web-window.svg","weight-alt.svg","weight.svg","white-flag.svg","wifi-issue.svg","wifi-off.svg","wifi-rounded.svg","wifi-signal-none.svg","wifi.svg","wind.svg","windows.svg","wrap-text.svg","wristwatch.svg","yen-square.svg","yen.svg","yoga.svg","youtube.svg","zoom-in.svg","zoom-out.svg"]} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index bb2fbf2e..57224d39 100644 --- a/package-lock.json +++ b/package-lock.json @@ -248,6 +248,66 @@ "to-fast-properties": "^2.0.0" } }, + "@eslint/eslintrc": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.2.tgz", + "integrity": "sha512-x1ZXdEFsvTcnbTZgqcWUL9w2ybgZCw/qbKTPQnab+XnYA2bMQpJCh+/bBzCRfDJaJdlrrQlOk49jNtru9gL/6Q==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.0.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.6.0.tgz", + "integrity": "sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "dev": true + }, "@svgr/babel-plugin-add-jsx-attribute": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", @@ -382,6 +442,12 @@ "svgo": "^1.2.2" } }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, "@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", @@ -394,6 +460,18 @@ "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", "dev": true }, + "acorn": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz", + "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, "aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -404,6 +482,24 @@ "indent-string": "^4.0.0" } }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -437,6 +533,152 @@ "sprintf-js": "~1.0.2" } }, + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + } + } + }, + "array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + } + } + }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -639,6 +881,12 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==", + "dev": true + }, "convert-source-map": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", @@ -762,6 +1010,12 @@ "ms": "2.1.2" } }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, "deepmerge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", @@ -777,6 +1031,15 @@ "object-keys": "^1.0.12" } }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, "dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", @@ -823,6 +1086,15 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", @@ -885,12 +1157,374 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, + "eslint": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.0.0.tgz", + "integrity": "sha512-03spzPzMAO4pElm44m60Nj08nYonPGQXmw6Ceai/S4QK82IgwWO1EXx1s9namKzVlbVu3Jf81hb+N+8+v21/HQ==", + "dev": true, + "requires": { + "@eslint/eslintrc": "^1.0.2", + "@humanwhocodes/config-array": "^0.6.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^6.0.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.2.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-config-airbnb-base": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", + "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", + "dev": true, + "requires": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + } + }, + "eslint-config-prettier": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", + "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", + "dev": true + }, + "eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.0.tgz", + "integrity": "sha512-hqSE88MmHl3ru9SYvDyGrlo0JwROlf9fiEMplEV7j/EAuq9iSlIlyCFbBT6pdULQBSnBYtYKiMLps+hKkyP7Gg==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.25.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz", + "integrity": "sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.0", + "has": "^1.0.3", + "is-core-module": "^2.7.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + } + } + }, + "eslint-plugin-prettier": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz", + "integrity": "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-scope": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-6.0.0.tgz", + "integrity": "sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz", + "integrity": "sha512-mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q==", + "dev": true + }, + "espree": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.0.0.tgz", + "integrity": "sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==", + "dev": true, + "requires": { + "acorn": "^8.5.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.0.0" + } + }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -908,6 +1542,64 @@ "strip-final-newline": "^2.0.0" } }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -920,6 +1612,12 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -943,6 +1641,16 @@ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "glob": { "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", @@ -957,6 +1665,15 @@ "path-is-absolute": "^1.0.0" } }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -990,12 +1707,27 @@ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", @@ -1006,6 +1738,12 @@ "resolve-from": "^4.0.0" } }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, "indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", @@ -1028,6 +1766,17 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -1055,18 +1804,42 @@ "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", "dev": true }, + "is-core-module": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz", + "integrity": "sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, "is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", "dev": true }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, "is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -1089,6 +1862,12 @@ "has-symbols": "^1.0.2" } }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true + }, "is-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", @@ -1110,6 +1889,15 @@ "has-symbols": "^1.0.2" } }, + "is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -1144,6 +1932,18 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, "json5": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", @@ -1153,6 +1953,16 @@ "minimist": "^1.2.5" } }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, "lines-and-columns": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", @@ -1160,20 +1970,44 @@ "dev": true }, "listr2": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.11.0.tgz", - "integrity": "sha512-XLJVe2JgXCyQTa3FbSv11lkKExYmEyA4jltVo8z4FX10Vt1Yj8IMekBfwim0BSOM9uj1QMTJvDQQpHyuPbB/dQ==", + "version": "3.12.2", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.12.2.tgz", + "integrity": "sha512-64xC2CJ/As/xgVI3wbhlPWVPx0wfTqbUAkpb7bjDi0thSWMqrf07UFhrfsGoo8YSXmF049Rp9C0cjLC8rZxK9A==", "dev": true, "requires": { "cli-truncate": "^2.1.0", - "colorette": "^1.2.2", + "colorette": "^1.4.0", "log-update": "^4.0.0", "p-map": "^4.0.0", "rxjs": "^6.6.7", "through": "^2.3.8", "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "dev": true + } } }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, "log-update": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", @@ -1234,6 +2068,15 @@ } } }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", @@ -1282,6 +2125,12 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, "node-releases": { "version": "1.1.73", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", @@ -1330,6 +2179,78 @@ "object-keys": "^1.1.1" } }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + } + } + }, "object.getownpropertydescriptors": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", @@ -1370,6 +2291,38 @@ "mimic-fn": "^2.1.0" } }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, "p-map": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", @@ -1379,6 +2332,12 @@ "aggregate-error": "^3.0.0" } }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -1400,6 +2359,12 @@ "lines-and-columns": "^1.1.6" } }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -1412,16 +2377,58 @@ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "requires": { + "find-up": "^2.1.0" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, "prettier": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", - "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", + "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "q": { @@ -1430,6 +2437,22 @@ "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "dev": true }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -1446,6 +2469,15 @@ "signal-exit": "^3.0.2" } }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", @@ -1488,6 +2520,17 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", @@ -1550,14 +2593,31 @@ "dev": true }, "string-width": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", - "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } } }, "string.prototype.trimend": { @@ -1589,12 +2649,24 @@ "ansi-regex": "^5.0.0" } }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, "strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -1644,6 +2716,12 @@ } } }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -1656,12 +2734,44 @@ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, + "tsconfig-paths": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz", + "integrity": "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -1686,6 +2796,15 @@ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", "dev": true }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, "util.promisify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", @@ -1698,6 +2817,12 @@ "object.getownpropertydescriptors": "^2.1.0" } }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -1720,6 +2845,12 @@ "is-symbol": "^1.0.3" } }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -1763,6 +2894,12 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", diff --git a/package.json b/package.json index 814d34db..dfa60dd3 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,8 @@ "icons" ], "scripts": { + "lint": "eslint ./bin/build.js", + "lint:fix": "npm run lint -- --fix", "build": "node ./bin/build.js" }, "repository": { @@ -25,7 +27,13 @@ "homepage": "https://iconoir.com", "devDependencies": { "@svgr/cli": "^5.5.0", + "eslint": "^8.0.0", + "eslint-config-airbnb-base": "^14.2.1", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-prettier": "^4.0.0", "execa": "^5.1.1", - "listr2": "^3.11.0" + "listr2": "^3.12.2", + "prettier": "^2.4.1" } } diff --git a/packages/iconoir-react-native/package-lock.json b/packages/iconoir-react-native/package-lock.json index 8f180f3c..7540b954 100644 --- a/packages/iconoir-react-native/package-lock.json +++ b/packages/iconoir-react-native/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "@babel/runtime": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", - "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" @@ -30,9 +30,9 @@ "dev": true }, "@nodelib/fs.walk": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz", - "integrity": "sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", @@ -40,15 +40,15 @@ } }, "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==", + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==", "dev": true }, "@types/react": { - "version": "17.0.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.13.tgz", - "integrity": "sha512-D/G3PiuqTfE3IMNjLn/DCp6umjVCSvtZTPdtAFy5+Ved6CsdRvivfKeCzw79W4AatShtU4nGqgvOv5Gro534vQ==", + "version": "17.0.29", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.29.tgz", + "integrity": "sha512-HSenIfBEBZ70BLrrVhtEtHpqaP79waauPtA8XKlczTxL3hXrW/ElGNLTpD1TmqkykgGlOAK55+D3SmUHEirpFw==", "dev": true, "requires": { "@types/prop-types": "*", @@ -57,9 +57,9 @@ } }, "@types/scheduler": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", - "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==", + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "dev": true }, "ansi-styles": { @@ -131,15 +131,15 @@ } }, "cac": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.3.tgz", - "integrity": "sha512-ECVqVZh74qgSuZG9YOt2OJPI3wGcf+EwwuF/XIOYqZBD0KZYLtgPWqFPxmDPQ6joxI1nOlvVgRV6VT53Ooyocg==", + "version": "6.7.11", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.11.tgz", + "integrity": "sha512-m4xrA2MKfid6uDV2j2+0mXrtPGxlvAW0y+7Gnn2P8WVMSG+4e4tcoYX++94ZPblPfpBccJ5e7HvKdghlX5yiDA==", "dev": true }, "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -229,15 +229,15 @@ "dev": true }, "csstype": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz", - "integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", "dev": true }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "dev": true, "requires": { "ms": "2.1.2" @@ -293,10 +293,140 @@ "dev": true }, "esbuild": { - "version": "0.12.11", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.12.11.tgz", - "integrity": "sha512-h83GwI6lYOrnSv5hSY2i2XZ191v3haj2IGDzwrkfWHhuO/kVMX3RYjhwRNG9E5VSxVLPaUjTVwrv8HWLvhk2nQ==", - "dev": true + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.5.tgz", + "integrity": "sha512-Q9/f1njsZaO+Qqe3dqAdtu4zGHNZIbcEtdg44/NooyPhqCerns4FeC1UPYeB4pKD08iDuWcmyINFJTqpdN+pqg==", + "dev": true, + "requires": { + "esbuild-android-arm64": "0.13.5", + "esbuild-darwin-64": "0.13.5", + "esbuild-darwin-arm64": "0.13.5", + "esbuild-freebsd-64": "0.13.5", + "esbuild-freebsd-arm64": "0.13.5", + "esbuild-linux-32": "0.13.5", + "esbuild-linux-64": "0.13.5", + "esbuild-linux-arm": "0.13.5", + "esbuild-linux-arm64": "0.13.5", + "esbuild-linux-mips64le": "0.13.5", + "esbuild-linux-ppc64le": "0.13.5", + "esbuild-openbsd-64": "0.13.5", + "esbuild-sunos-64": "0.13.5", + "esbuild-windows-32": "0.13.5", + "esbuild-windows-64": "0.13.5", + "esbuild-windows-arm64": "0.13.5" + } + }, + "esbuild-android-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.13.5.tgz", + "integrity": "sha512-xaNH58b9XRAWT5q0rwA2GNTgJynb51JhdotlNKdLmSCyKXPVlF87yqNLNdmlX/zndzRDrZdtpCWSALdn/J63Ug==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.13.5.tgz", + "integrity": "sha512-ClGQeUObXIxEpZviGzjTinDikXy9XodojP9jLKwqLCBpZ9wdV3MW7JOmw60fgXgnbNRvkZCqM6uEi+ur8p80Ow==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.5.tgz", + "integrity": "sha512-qro6M/qzs1dBPh14Ca+5moIkLo2KE3ll3dOpiN7aAususkM1HmqQptCEchi0XwX+6nfqWI96YvVqPJ3DfUUK5A==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.5.tgz", + "integrity": "sha512-vklf7L7fghREEvS1sjAFcxcw/Qqt+Z+L0ySN+pEeb7rA8nPLfRBSFdXAru8UNuHsMWns6CrcZ5eDOKTerZZ5ng==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.5.tgz", + "integrity": "sha512-kJoouhbZt4QvjiPak7/Lz57Azok0CgFnNtixiOsqEQXTabIaKmMmnq4qgjD6EBFeU/hvSXDrPe6U8dWhBZOrWQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.13.5.tgz", + "integrity": "sha512-/QufG6tTGKAf42pIYkOVZzKBPxF01xH1kCPyOFJZukZBV/Tk3TeOZfhJIAf7pxl4jhfa+c4Jcdp7CvIAjXrmJg==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.5.tgz", + "integrity": "sha512-NmNFMXEthuFJTFaD4cLhAHCxg+y3uXzo7nqH/WNNSZ8PPY11jbeOvMbdArYlbo2Wy1N/mTHXMcK1synSJj+4Iw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.13.5.tgz", + "integrity": "sha512-69nQmbKLBRaAxf88diyaOyarrI7yIdBkZ8bmVzQ7XVWneY+nYIcGtugTSOs5znNGfPqGOElAjh1lX+0sGYHNpA==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.5.tgz", + "integrity": "sha512-dOS5EZsZj8Lw0TgEj3zy1/slTBbfBw4v7uHEqZXP34dUaRq2oltNaUYIj735CtgB7I5/MXrXEUYkXLqcVfzJQQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.5.tgz", + "integrity": "sha512-dmKA8ZI/nHwpxIQW/L5crk7Ac4wJJ2Kquvdo1CdXPW1UljMyKUDuHc4K7D1Iws5igqJmNO6U5vdRUKrdnIov6Q==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.5.tgz", + "integrity": "sha512-HkVGKkPL3XOhJqNOJ752Q1li5zeidrJHv+XWX6qCnCipNsVuGqaAGfxeWbL/+A/giolMlP7wvAuiKgoe+a5UAw==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.5.tgz", + "integrity": "sha512-BuOZzmdsdreSs0qDgbuiEhSbUDDW2Wyp4VtpNGBmaLwPMHftdprOJXLkeFud3HlnRB2n9qdiTVKg1B8YqMogSw==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.13.5.tgz", + "integrity": "sha512-YJNB6Og1QYAPikvYDbqvk5xCqr6WL2i5cRWPGGgWOEItQPnq6gFsWogS3DiYM8TQKe50KRiD3Lwu7eNYsdPO4w==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.13.5.tgz", + "integrity": "sha512-CigOlBSKsZ61IS+FyhD3luqCpl7LN9ntDaBZXumls/0IZ/8BJ5txqw4a6pv4LtnfIgt0ixGHSH7kAUmApw/HAw==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.13.5.tgz", + "integrity": "sha512-pg2BZXLpcPcrIcmToGapLRExzj6sm0VmQlqlmnMOtIJh0YQV9c0CRbhfIT0gYvJqCz5JEGiRvYpArRlxWADN3Q==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.5.tgz", + "integrity": "sha512-KKRDmUOIE4oCvJp0I4p4QyazK2X79spF29vsZr2U8qHhmxbTLSQWvYmb2WlF5Clb1URRsX0L013rhwHx1SEu0w==", + "dev": true, + "optional": true }, "execa": { "version": "5.1.1", @@ -316,9 +446,9 @@ } }, "fast-glob": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz", - "integrity": "sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -329,9 +459,9 @@ } }, "fastq": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", - "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -470,9 +600,9 @@ "dev": true }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -485,9 +615,9 @@ "dev": true }, "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "isexe": { @@ -723,9 +853,9 @@ } }, "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", "dev": true }, "resolve-from": { @@ -741,9 +871,9 @@ "dev": true }, "rollup": { - "version": "2.52.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.52.3.tgz", - "integrity": "sha512-QF3Sju8Kl2z0osI4unyOLyUudyhOMK6G0AeqJWgfiyigqLAlnNrfBcDWDx+f1cqn+JU2iIYVkDrgQ6/KtwEfrg==", + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz", + "integrity": "sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -774,9 +904,9 @@ "dev": true }, "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", "dev": true }, "slash": { @@ -798,9 +928,9 @@ "dev": true }, "sucrase": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.19.0.tgz", - "integrity": "sha512-FeMelydANPRMiOo/lxbf7NxN8bQmMVBQmKOa69BifwVhteMJzRoJNHaVBoCYmE/kpnx6VPg9ckaLumwtuAzmEA==", + "version": "3.20.2", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.20.2.tgz", + "integrity": "sha512-EdJ5M6VEvToIZwIWiZ71cxe4CklDRG8PdSjUSst+BZCUGlaEhnrdQo/LOXsuq3MjWRbfepg1XTffClK0Tmo0HQ==", "dev": true, "requires": { "commander": "^4.0.0", @@ -860,30 +990,30 @@ "dev": true }, "tsup": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/tsup/-/tsup-4.12.0.tgz", - "integrity": "sha512-TjODlDrJYcMHW8nRVbhf2PBelo2ew3s7zfSdp/17dXlPkMbnYs80ZmITPgR1KRa6cagSqU+9lYZZe/xbRqhWAQ==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-5.4.0.tgz", + "integrity": "sha512-wm52TUJzDCvF9dJ3TxYtoJg8L7EjSYsOsH+jZhMMXfk1qZn6CdxFStwzMnwhyducdMBXHQNl7wZn+ioIhJoCHA==", "dev": true, "requires": { "cac": "^6.7.2", "chalk": "^4.1.0", "chokidar": "^3.5.1", "debug": "^4.3.1", - "esbuild": "^0.12.9", + "esbuild": "^0.13.4", "execa": "^5.0.0", "globby": "^11.0.3", "joycon": "^3.0.1", "postcss-load-config": "^3.0.1", "resolve-from": "^5.0.0", - "rollup": "^2.45.2", - "sucrase": "^3.18.1", + "rollup": "^2.56.1", + "sucrase": "^3.20.1", "tree-kill": "^1.2.2" } }, "typescript": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", - "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz", + "integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==", "dev": true }, "which": { diff --git a/packages/iconoir-react-native/package.json b/packages/iconoir-react-native/package.json index e3490c40..59679474 100644 --- a/packages/iconoir-react-native/package.json +++ b/packages/iconoir-react-native/package.json @@ -33,11 +33,11 @@ "react-native-svg": "^12.1.1" }, "devDependencies": { - "@babel/runtime": "^7.14.6", - "@types/react": "^17.0.13", + "@babel/runtime": "^7.15.4", + "@types/react": "^17.0.29", "react": "^17.0.2", "react-native-svg": "^12.1.1", - "tsup": "^4.12.0", - "typescript": "^4.3.5" + "tsup": "^5.4.0", + "typescript": "^4.4.4" } } diff --git a/packages/iconoir-react-native/src/AppleWallet.tsx b/packages/iconoir-react-native/src/AppleWallet.tsx new file mode 100644 index 00000000..22b86525 --- /dev/null +++ b/packages/iconoir-react-native/src/AppleWallet.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgAppleWallet( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgAppleWallet); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Atom.tsx b/packages/iconoir-react-native/src/Atom.tsx new file mode 100644 index 00000000..81a4faac --- /dev/null +++ b/packages/iconoir-react-native/src/Atom.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgAtom( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgAtom); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Backward15Seconds.tsx b/packages/iconoir-react-native/src/Backward15Seconds.tsx new file mode 100644 index 00000000..cb41056a --- /dev/null +++ b/packages/iconoir-react-native/src/Backward15Seconds.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgBackward15Seconds( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBackward15Seconds); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bonfire.tsx b/packages/iconoir-react-native/src/Bonfire.tsx new file mode 100644 index 00000000..c36348bb --- /dev/null +++ b/packages/iconoir-react-native/src/Bonfire.tsx @@ -0,0 +1,41 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgBonfire( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBonfire); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Book.tsx b/packages/iconoir-react-native/src/Book.tsx new file mode 100644 index 00000000..3ed6b3df --- /dev/null +++ b/packages/iconoir-react-native/src/Book.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgBook( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBook); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookStack.tsx b/packages/iconoir-react-native/src/BookStack.tsx new file mode 100644 index 00000000..5671cf02 --- /dev/null +++ b/packages/iconoir-react-native/src/BookStack.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgBookStack( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBookStack); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookmarkBook.tsx b/packages/iconoir-react-native/src/BookmarkBook.tsx new file mode 100644 index 00000000..e7517f5d --- /dev/null +++ b/packages/iconoir-react-native/src/BookmarkBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgBookmarkBook( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBookmarkBook); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Carbon.tsx b/packages/iconoir-react-native/src/Carbon.tsx new file mode 100644 index 00000000..0b0762f8 --- /dev/null +++ b/packages/iconoir-react-native/src/Carbon.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgCarbon( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCarbon); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardWallet.tsx b/packages/iconoir-react-native/src/CardWallet.tsx new file mode 100644 index 00000000..72731d44 --- /dev/null +++ b/packages/iconoir-react-native/src/CardWallet.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgCardWallet( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCardWallet); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CodeBrackets.tsx b/packages/iconoir-react-native/src/CodeBrackets.tsx new file mode 100644 index 00000000..64deaf59 --- /dev/null +++ b/packages/iconoir-react-native/src/CodeBrackets.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgCodeBrackets( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCodeBrackets); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CodeBracketsSquare.tsx b/packages/iconoir-react-native/src/CodeBracketsSquare.tsx new file mode 100644 index 00000000..30ee2790 --- /dev/null +++ b/packages/iconoir-react-native/src/CodeBracketsSquare.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgCodeBracketsSquare( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCodeBracketsSquare); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FavouriteBook.tsx b/packages/iconoir-react-native/src/FavouriteBook.tsx new file mode 100644 index 00000000..bad92c82 --- /dev/null +++ b/packages/iconoir-react-native/src/FavouriteBook.tsx @@ -0,0 +1,41 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgFavouriteBook( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFavouriteBook); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FireFlame.tsx b/packages/iconoir-react-native/src/FireFlame.tsx new file mode 100644 index 00000000..dea2ea5f --- /dev/null +++ b/packages/iconoir-react-native/src/FireFlame.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgFireFlame( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFireFlame); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flask.tsx b/packages/iconoir-react-native/src/Flask.tsx new file mode 100644 index 00000000..7da73b24 --- /dev/null +++ b/packages/iconoir-react-native/src/Flask.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgFlask( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFlask); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fluorine.tsx b/packages/iconoir-react-native/src/Fluorine.tsx new file mode 100644 index 00000000..3a9bc87c --- /dev/null +++ b/packages/iconoir-react-native/src/Fluorine.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgFluorine( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFluorine); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Forward15Seconds.tsx b/packages/iconoir-react-native/src/Forward15Seconds.tsx new file mode 100644 index 00000000..25cdcd91 --- /dev/null +++ b/packages/iconoir-react-native/src/Forward15Seconds.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgForward15Seconds( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgForward15Seconds); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HdDisplay.tsx b/packages/iconoir-react-native/src/HdDisplay.tsx new file mode 100644 index 00000000..612d3ee4 --- /dev/null +++ b/packages/iconoir-react-native/src/HdDisplay.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgHdDisplay( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgHdDisplay); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hydrogen.tsx b/packages/iconoir-react-native/src/Hydrogen.tsx new file mode 100644 index 00000000..587cb906 --- /dev/null +++ b/packages/iconoir-react-native/src/Hydrogen.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgHydrogen( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgHydrogen); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LockedBook.tsx b/packages/iconoir-react-native/src/LockedBook.tsx new file mode 100644 index 00000000..61d63e2d --- /dev/null +++ b/packages/iconoir-react-native/src/LockedBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgLockedBook( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgLockedBook); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Magnet.tsx b/packages/iconoir-react-native/src/Magnet.tsx new file mode 100644 index 00000000..054970d7 --- /dev/null +++ b/packages/iconoir-react-native/src/Magnet.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgMagnet( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMagnet); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MagnetEnergy.tsx b/packages/iconoir-react-native/src/MagnetEnergy.tsx new file mode 100644 index 00000000..56384768 --- /dev/null +++ b/packages/iconoir-react-native/src/MagnetEnergy.tsx @@ -0,0 +1,47 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgMagnetEnergy( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMagnetEnergy); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MathBook.tsx b/packages/iconoir-react-native/src/MathBook.tsx new file mode 100644 index 00000000..c5307738 --- /dev/null +++ b/packages/iconoir-react-native/src/MathBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgMathBook( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMathBook); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Nitrogen.tsx b/packages/iconoir-react-native/src/Nitrogen.tsx new file mode 100644 index 00000000..b8afdec0 --- /dev/null +++ b/packages/iconoir-react-native/src/Nitrogen.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgNitrogen( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNitrogen); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NumberedListLeft.tsx b/packages/iconoir-react-native/src/NumberedListLeft.tsx new file mode 100644 index 00000000..9ff03384 --- /dev/null +++ b/packages/iconoir-react-native/src/NumberedListLeft.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgNumberedListLeft( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNumberedListLeft); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NumberedListRight.tsx b/packages/iconoir-react-native/src/NumberedListRight.tsx new file mode 100644 index 00000000..9458b9b2 --- /dev/null +++ b/packages/iconoir-react-native/src/NumberedListRight.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgNumberedListRight( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNumberedListRight); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Oxygen.tsx b/packages/iconoir-react-native/src/Oxygen.tsx new file mode 100644 index 00000000..731cd756 --- /dev/null +++ b/packages/iconoir-react-native/src/Oxygen.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgOxygen( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgOxygen); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageEdit.tsx b/packages/iconoir-react-native/src/PageEdit.tsx new file mode 100644 index 00000000..f80f1244 --- /dev/null +++ b/packages/iconoir-react-native/src/PageEdit.tsx @@ -0,0 +1,43 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgPageEdit( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgPageEdit); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RoundFlask.tsx b/packages/iconoir-react-native/src/RoundFlask.tsx new file mode 100644 index 00000000..c966e964 --- /dev/null +++ b/packages/iconoir-react-native/src/RoundFlask.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgRoundFlask( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgRoundFlask); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SidebarCollapse.tsx b/packages/iconoir-react-native/src/SidebarCollapse.tsx new file mode 100644 index 00000000..158bb808 --- /dev/null +++ b/packages/iconoir-react-native/src/SidebarCollapse.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgSidebarCollapse( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgSidebarCollapse); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SidebarExpand.tsx b/packages/iconoir-react-native/src/SidebarExpand.tsx new file mode 100644 index 00000000..eaade68f --- /dev/null +++ b/packages/iconoir-react-native/src/SidebarExpand.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgSidebarExpand( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgSidebarExpand); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TaskList.tsx b/packages/iconoir-react-native/src/TaskList.tsx new file mode 100644 index 00000000..498b0e2b --- /dev/null +++ b/packages/iconoir-react-native/src/TaskList.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgTaskList( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgTaskList); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TestTube.tsx b/packages/iconoir-react-native/src/TestTube.tsx new file mode 100644 index 00000000..ae8732f1 --- /dev/null +++ b/packages/iconoir-react-native/src/TestTube.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgTestTube( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgTestTube); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wallet.tsx b/packages/iconoir-react-native/src/Wallet.tsx new file mode 100644 index 00000000..05988b3e --- /dev/null +++ b/packages/iconoir-react-native/src/Wallet.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import Svg, { SvgProps, Path } from 'react-native-svg'; + +function SvgWallet( + props: SvgProps, + svgRef?: React.Ref> +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgWallet); +export default ForwardRef; diff --git a/packages/iconoir-react-native/src/index.tsx b/packages/iconoir-react-native/src/index.tsx index cad86add..fb27fa45 100644 --- a/packages/iconoir-react-native/src/index.tsx +++ b/packages/iconoir-react-native/src/index.tsx @@ -51,6 +51,7 @@ export { default as AppleImac2021Side } from './AppleImac2021Side' export { default as AppleImac2021 } from './AppleImac2021' export { default as AppleMac } from './AppleMac' export { default as AppleSwift } from './AppleSwift' +export { default as AppleWallet } from './AppleWallet' export { default as Apple } from './Apple' export { default as ArSymbol } from './ArSymbol' export { default as Archery } from './Archery' @@ -70,8 +71,10 @@ export { default as ArrowUnion } from './ArrowUnion' export { default as ArrowUpCircled } from './ArrowUpCircled' export { default as ArrowUp } from './ArrowUp' export { default as Asana } from './Asana' +export { default as Atom } from './Atom' export { default as Attachment } from './Attachment' export { default as AutoFlash } from './AutoFlash' +export { default as Backward15Seconds } from './Backward15Seconds' export { default as Bag } from './Bag' export { default as Bank } from './Bank' export { default as BasketBallAlt } from './BasketBallAlt' @@ -101,6 +104,10 @@ export { default as BluetoothRounded } from './BluetoothRounded' export { default as Bluetooth } from './Bluetooth' export { default as BoldSquareOutline } from './BoldSquareOutline' export { default as Bold } from './Bold' +export { default as Bonfire } from './Bonfire' +export { default as BookStack } from './BookStack' +export { default as Book } from './Book' +export { default as BookmarkBook } from './BookmarkBook' export { default as BookmarkCircled } from './BookmarkCircled' export { default as BookmarkEmpty } from './BookmarkEmpty' export { default as BorderBl } from './BorderBl' @@ -136,6 +143,8 @@ export { default as Calendar } from './Calendar' export { default as Camera } from './Camera' export { default as Cancel } from './Cancel' export { default as CarOutline } from './CarOutline' +export { default as Carbon } from './Carbon' +export { default as CardWallet } from './CardWallet' export { default as CartAlt } from './CartAlt' export { default as Cart } from './Cart' export { default as Cash } from './Cash' @@ -173,6 +182,8 @@ export { default as CloudSunny } from './CloudSunny' export { default as CloudSync } from './CloudSync' export { default as CloudUpload } from './CloudUpload' export { default as Cloud } from './Cloud' +export { default as CodeBracketsSquare } from './CodeBracketsSquare' +export { default as CodeBrackets } from './CodeBrackets' export { default as Code } from './Code' export { default as Codepen } from './Codepen' export { default as Coin } from './Coin' @@ -328,6 +339,7 @@ export { default as FastBottomCircle } from './FastBottomCircle' export { default as FastLeftCircle } from './FastLeftCircle' export { default as FastRightCircle } from './FastRightCircle' export { default as FastTopCircle } from './FastTopCircle' +export { default as FavouriteBook } from './FavouriteBook' export { default as Female } from './Female' export { default as Figma } from './Figma' export { default as FileNotFound } from './FileNotFound' @@ -342,18 +354,22 @@ export { default as FingerprintPhone } from './FingerprintPhone' export { default as FingerprintScan } from './FingerprintScan' export { default as FingerprintSquared } from './FingerprintSquared' export { default as Fingerprint } from './Fingerprint' +export { default as FireFlame } from './FireFlame' export { default as Flare } from './Flare' export { default as FlashOff } from './FlashOff' export { default as Flash } from './Flash' +export { default as Flask } from './Flask' export { default as FlipReverse } from './FlipReverse' export { default as Flip } from './Flip' export { default as Flower } from './Flower' +export { default as Fluorine } from './Fluorine' export { default as Fog } from './Fog' export { default as FolderAlert } from './FolderAlert' export { default as Folder } from './Folder' export { default as FontSize } from './FontSize' export { default as FootballBall } from './FootballBall' export { default as Football } from './Football' +export { default as Forward15Seconds } from './Forward15Seconds' export { default as ForwardOutline } from './ForwardOutline' export { default as FrameAltEmpty } from './FrameAltEmpty' export { default as FrameAlt } from './FrameAlt' @@ -403,6 +419,7 @@ export { default as HandBrake } from './HandBrake' export { default as Handbag } from './Handbag' export { default as HardDrive } from './HardDrive' export { default as Hat } from './Hat' +export { default as HdDisplay } from './HdDisplay' export { default as Hd } from './Hd' export { default as Hdr } from './Hdr' export { default as HeadsetCharge } from './HeadsetCharge' @@ -435,6 +452,7 @@ export { default as HospitalSign } from './HospitalSign' export { default as Hospital } from './Hospital' export { default as Hourglass } from './Hourglass' export { default as Html5 } from './Html5' +export { default as Hydrogen } from './Hydrogen' export { default as Iconoir } from './Iconoir' export { default as Import } from './Import' export { default as Industry } from './Industry' @@ -489,6 +507,7 @@ export { default as List } from './List' export { default as LoadActionFloppy } from './LoadActionFloppy' export { default as LockKey } from './LockKey' export { default as Lock } from './Lock' +export { default as LockedBook } from './LockedBook' export { default as LogDenied } from './LogDenied' export { default as LogIn } from './LogIn' export { default as LogOut } from './LogOut' @@ -506,6 +525,8 @@ export { default as MacControlKey } from './MacControlKey' export { default as MacDock } from './MacDock' export { default as MacOptionKey } from './MacOptionKey' export { default as MacOsWindow } from './MacOsWindow' +export { default as MagnetEnergy } from './MagnetEnergy' +export { default as Magnet } from './Magnet' export { default as MailOpened } from './MailOpened' export { default as Mail } from './Mail' export { default as Male } from './Male' @@ -519,6 +540,7 @@ export { default as MapsTurnBack } from './MapsTurnBack' export { default as MapsTurnLeft } from './MapsTurnLeft' export { default as MapsTurnRight } from './MapsTurnRight' export { default as MaskSquare } from './MaskSquare' +export { default as MathBook } from './MathBook' export { default as Maximize } from './Maximize' export { default as Medal1St } from './Medal1St' export { default as Medal } from './Medal' @@ -588,12 +610,15 @@ export { default as NetworkAlt } from './NetworkAlt' export { default as NetworkLeft } from './NetworkLeft' export { default as NetworkRight } from './NetworkRight' export { default as Network } from './Network' +export { default as Nitrogen } from './Nitrogen' export { default as NoBattery } from './NoBattery' export { default as NoCoin } from './NoCoin' export { default as NoCreditCard } from './NoCreditCard' export { default as NoLock } from './NoLock' export { default as NoSmoking } from './NoSmoking' export { default as Notes } from './Notes' +export { default as NumberedListLeft } from './NumberedListLeft' +export { default as NumberedListRight } from './NumberedListRight' export { default as Octagon } from './Octagon' export { default as OffRounded } from './OffRounded' export { default as OilIndustry } from './OilIndustry' @@ -606,6 +631,8 @@ export { default as OpenVpn } from './OpenVpn' export { default as OrangeHalf } from './OrangeHalf' export { default as OrangeSliceAlt } from './OrangeSliceAlt' export { default as OrangeSlice } from './OrangeSlice' +export { default as Oxygen } from './Oxygen' +export { default as PageEdit } from './PageEdit' export { default as PageFlip } from './PageFlip' export { default as PageSearch } from './PageSearch' export { default as PageStar } from './PageStar' @@ -712,6 +739,7 @@ export { default as RightRoundArrow } from './RightRoundArrow' export { default as Rings } from './Rings' export { default as RotateCameraLeft } from './RotateCameraLeft' export { default as RotateCameraRight } from './RotateCameraRight' +export { default as RoundFlask } from './RoundFlask' export { default as RssFeedSquared } from './RssFeedSquared' export { default as RssFeed } from './RssFeed' export { default as RulerAdd } from './RulerAdd' @@ -778,6 +806,8 @@ export { default as ShoppingCode } from './ShoppingCode' export { default as ShortPantsAlt } from './ShortPantsAlt' export { default as ShortPants } from './ShortPants' export { default as Shuffle } from './Shuffle' +export { default as SidebarCollapse } from './SidebarCollapse' +export { default as SidebarExpand } from './SidebarExpand' export { default as SimpleCart } from './SimpleCart' export { default as SingleTapGesture } from './SingleTapGesture' export { default as Skateboard } from './Skateboard' @@ -831,12 +861,14 @@ export { default as SystemShut } from './SystemShut' export { default as Table2Columns } from './Table2Columns' export { default as TableRows } from './TableRows' export { default as Table } from './Table' +export { default as TaskList } from './TaskList' export { default as TelegramCircled } from './TelegramCircled' export { default as Telegram } from './Telegram' export { default as TennisBallAlt } from './TennisBallAlt' export { default as TennisBall } from './TennisBall' export { default as TerminalOutline } from './TerminalOutline' export { default as TerminalSimple } from './TerminalSimple' +export { default as TestTube } from './TestTube' export { default as TextAlt } from './TextAlt' export { default as TextSize } from './TextSize' export { default as Text } from './Text' @@ -915,6 +947,7 @@ export { default as Voice } from './Voice' export { default as VrSymbol } from './VrSymbol' export { default as Waist } from './Waist' export { default as Walking } from './Walking' +export { default as Wallet } from './Wallet' export { default as WarningCircledOutline } from './WarningCircledOutline' export { default as WarningSquareOutline } from './WarningSquareOutline' export { default as WarningTriangleOutline } from './WarningTriangleOutline' diff --git a/packages/iconoir-react-native/tsconfig.json b/packages/iconoir-react-native/tsconfig.json index d30f6453..61052cf7 100644 --- a/packages/iconoir-react-native/tsconfig.json +++ b/packages/iconoir-react-native/tsconfig.json @@ -3,7 +3,6 @@ "target": "es5", "module": "esnext", "moduleResolution": "node", - "sourceMap": true, "jsx": "react", "strict": true, "esModuleInterop": true, diff --git a/packages/iconoir-react-native/tsup.config.json b/packages/iconoir-react-native/tsup.config.json index 317e7127..5bab89b2 100644 --- a/packages/iconoir-react-native/tsup.config.json +++ b/packages/iconoir-react-native/tsup.config.json @@ -2,7 +2,6 @@ "entryPoints": ["src/index.tsx"], "format": ["cjs"], "legacyOutput": true, - "sourcemap": true, "minify": true, "clean": true, "dts": true diff --git a/packages/iconoir-react/package-lock.json b/packages/iconoir-react/package-lock.json index 3de9f77a..a15264a2 100644 --- a/packages/iconoir-react/package-lock.json +++ b/packages/iconoir-react/package-lock.json @@ -21,9 +21,9 @@ "dev": true }, "@nodelib/fs.walk": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz", - "integrity": "sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", @@ -31,15 +31,15 @@ } }, "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==", + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==", "dev": true }, "@types/react": { - "version": "17.0.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.13.tgz", - "integrity": "sha512-D/G3PiuqTfE3IMNjLn/DCp6umjVCSvtZTPdtAFy5+Ved6CsdRvivfKeCzw79W4AatShtU4nGqgvOv5Gro534vQ==", + "version": "17.0.29", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.29.tgz", + "integrity": "sha512-HSenIfBEBZ70BLrrVhtEtHpqaP79waauPtA8XKlczTxL3hXrW/ElGNLTpD1TmqkykgGlOAK55+D3SmUHEirpFw==", "dev": true, "requires": { "@types/prop-types": "*", @@ -48,9 +48,9 @@ } }, "@types/scheduler": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", - "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==", + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "dev": true }, "ansi-styles": { @@ -116,15 +116,15 @@ } }, "cac": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.3.tgz", - "integrity": "sha512-ECVqVZh74qgSuZG9YOt2OJPI3wGcf+EwwuF/XIOYqZBD0KZYLtgPWqFPxmDPQ6joxI1nOlvVgRV6VT53Ooyocg==", + "version": "6.7.11", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.11.tgz", + "integrity": "sha512-m4xrA2MKfid6uDV2j2+0mXrtPGxlvAW0y+7Gnn2P8WVMSG+4e4tcoYX++94ZPblPfpBccJ5e7HvKdghlX5yiDA==", "dev": true }, "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -186,9 +186,9 @@ } }, "csstype": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz", - "integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", "dev": true }, "debug": { @@ -210,10 +210,140 @@ } }, "esbuild": { - "version": "0.12.14", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.12.14.tgz", - "integrity": "sha512-z8p+6FGiplR7a3pPonXREbm+8IeXjBGvDpVidZmGB/AJMsJSfGCU+n7KOMCazA9AwvagadRWBhiKorC0w9WJvw==", - "dev": true + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.5.tgz", + "integrity": "sha512-Q9/f1njsZaO+Qqe3dqAdtu4zGHNZIbcEtdg44/NooyPhqCerns4FeC1UPYeB4pKD08iDuWcmyINFJTqpdN+pqg==", + "dev": true, + "requires": { + "esbuild-android-arm64": "0.13.5", + "esbuild-darwin-64": "0.13.5", + "esbuild-darwin-arm64": "0.13.5", + "esbuild-freebsd-64": "0.13.5", + "esbuild-freebsd-arm64": "0.13.5", + "esbuild-linux-32": "0.13.5", + "esbuild-linux-64": "0.13.5", + "esbuild-linux-arm": "0.13.5", + "esbuild-linux-arm64": "0.13.5", + "esbuild-linux-mips64le": "0.13.5", + "esbuild-linux-ppc64le": "0.13.5", + "esbuild-openbsd-64": "0.13.5", + "esbuild-sunos-64": "0.13.5", + "esbuild-windows-32": "0.13.5", + "esbuild-windows-64": "0.13.5", + "esbuild-windows-arm64": "0.13.5" + } + }, + "esbuild-android-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.13.5.tgz", + "integrity": "sha512-xaNH58b9XRAWT5q0rwA2GNTgJynb51JhdotlNKdLmSCyKXPVlF87yqNLNdmlX/zndzRDrZdtpCWSALdn/J63Ug==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.13.5.tgz", + "integrity": "sha512-ClGQeUObXIxEpZviGzjTinDikXy9XodojP9jLKwqLCBpZ9wdV3MW7JOmw60fgXgnbNRvkZCqM6uEi+ur8p80Ow==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.5.tgz", + "integrity": "sha512-qro6M/qzs1dBPh14Ca+5moIkLo2KE3ll3dOpiN7aAususkM1HmqQptCEchi0XwX+6nfqWI96YvVqPJ3DfUUK5A==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.5.tgz", + "integrity": "sha512-vklf7L7fghREEvS1sjAFcxcw/Qqt+Z+L0ySN+pEeb7rA8nPLfRBSFdXAru8UNuHsMWns6CrcZ5eDOKTerZZ5ng==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.5.tgz", + "integrity": "sha512-kJoouhbZt4QvjiPak7/Lz57Azok0CgFnNtixiOsqEQXTabIaKmMmnq4qgjD6EBFeU/hvSXDrPe6U8dWhBZOrWQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.13.5.tgz", + "integrity": "sha512-/QufG6tTGKAf42pIYkOVZzKBPxF01xH1kCPyOFJZukZBV/Tk3TeOZfhJIAf7pxl4jhfa+c4Jcdp7CvIAjXrmJg==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.5.tgz", + "integrity": "sha512-NmNFMXEthuFJTFaD4cLhAHCxg+y3uXzo7nqH/WNNSZ8PPY11jbeOvMbdArYlbo2Wy1N/mTHXMcK1synSJj+4Iw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.13.5.tgz", + "integrity": "sha512-69nQmbKLBRaAxf88diyaOyarrI7yIdBkZ8bmVzQ7XVWneY+nYIcGtugTSOs5znNGfPqGOElAjh1lX+0sGYHNpA==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.5.tgz", + "integrity": "sha512-dOS5EZsZj8Lw0TgEj3zy1/slTBbfBw4v7uHEqZXP34dUaRq2oltNaUYIj735CtgB7I5/MXrXEUYkXLqcVfzJQQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.5.tgz", + "integrity": "sha512-dmKA8ZI/nHwpxIQW/L5crk7Ac4wJJ2Kquvdo1CdXPW1UljMyKUDuHc4K7D1Iws5igqJmNO6U5vdRUKrdnIov6Q==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.5.tgz", + "integrity": "sha512-HkVGKkPL3XOhJqNOJ752Q1li5zeidrJHv+XWX6qCnCipNsVuGqaAGfxeWbL/+A/giolMlP7wvAuiKgoe+a5UAw==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.5.tgz", + "integrity": "sha512-BuOZzmdsdreSs0qDgbuiEhSbUDDW2Wyp4VtpNGBmaLwPMHftdprOJXLkeFud3HlnRB2n9qdiTVKg1B8YqMogSw==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.13.5.tgz", + "integrity": "sha512-YJNB6Og1QYAPikvYDbqvk5xCqr6WL2i5cRWPGGgWOEItQPnq6gFsWogS3DiYM8TQKe50KRiD3Lwu7eNYsdPO4w==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.13.5.tgz", + "integrity": "sha512-CigOlBSKsZ61IS+FyhD3luqCpl7LN9ntDaBZXumls/0IZ/8BJ5txqw4a6pv4LtnfIgt0ixGHSH7kAUmApw/HAw==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.13.5.tgz", + "integrity": "sha512-pg2BZXLpcPcrIcmToGapLRExzj6sm0VmQlqlmnMOtIJh0YQV9c0CRbhfIT0gYvJqCz5JEGiRvYpArRlxWADN3Q==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.5.tgz", + "integrity": "sha512-KKRDmUOIE4oCvJp0I4p4QyazK2X79spF29vsZr2U8qHhmxbTLSQWvYmb2WlF5Clb1URRsX0L013rhwHx1SEu0w==", + "dev": true, + "optional": true }, "execa": { "version": "5.1.1", @@ -233,9 +363,9 @@ } }, "fast-glob": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz", - "integrity": "sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -246,9 +376,9 @@ } }, "fastq": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", - "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -387,9 +517,9 @@ "dev": true }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -402,9 +532,9 @@ "dev": true }, "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "isexe": { @@ -627,9 +757,9 @@ "dev": true }, "rollup": { - "version": "2.52.7", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.52.7.tgz", - "integrity": "sha512-55cSH4CCU6MaPr9TAOyrIC+7qFCHscL7tkNsm1MBfIJRRqRbCEY0mmeFn4Wg8FKsHtEH8r389Fz38r/o+kgXLg==", + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz", + "integrity": "sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -660,9 +790,9 @@ "dev": true }, "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", "dev": true }, "slash": { @@ -678,9 +808,9 @@ "dev": true }, "sucrase": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.19.0.tgz", - "integrity": "sha512-FeMelydANPRMiOo/lxbf7NxN8bQmMVBQmKOa69BifwVhteMJzRoJNHaVBoCYmE/kpnx6VPg9ckaLumwtuAzmEA==", + "version": "3.20.2", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.20.2.tgz", + "integrity": "sha512-EdJ5M6VEvToIZwIWiZ71cxe4CklDRG8PdSjUSst+BZCUGlaEhnrdQo/LOXsuq3MjWRbfepg1XTffClK0Tmo0HQ==", "dev": true, "requires": { "commander": "^4.0.0", @@ -740,30 +870,30 @@ "dev": true }, "tsup": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/tsup/-/tsup-4.12.0.tgz", - "integrity": "sha512-TjODlDrJYcMHW8nRVbhf2PBelo2ew3s7zfSdp/17dXlPkMbnYs80ZmITPgR1KRa6cagSqU+9lYZZe/xbRqhWAQ==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-5.4.0.tgz", + "integrity": "sha512-wm52TUJzDCvF9dJ3TxYtoJg8L7EjSYsOsH+jZhMMXfk1qZn6CdxFStwzMnwhyducdMBXHQNl7wZn+ioIhJoCHA==", "dev": true, "requires": { "cac": "^6.7.2", "chalk": "^4.1.0", "chokidar": "^3.5.1", "debug": "^4.3.1", - "esbuild": "^0.12.9", + "esbuild": "^0.13.4", "execa": "^5.0.0", "globby": "^11.0.3", "joycon": "^3.0.1", "postcss-load-config": "^3.0.1", "resolve-from": "^5.0.0", - "rollup": "^2.45.2", - "sucrase": "^3.18.1", + "rollup": "^2.56.1", + "sucrase": "^3.20.1", "tree-kill": "^1.2.2" } }, "typescript": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", - "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz", + "integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==", "dev": true }, "which": { diff --git a/packages/iconoir-react/package.json b/packages/iconoir-react/package.json index 3a9dc724..df5a1c7b 100644 --- a/packages/iconoir-react/package.json +++ b/packages/iconoir-react/package.json @@ -31,9 +31,9 @@ "react": "^16.8.6 || ^17" }, "devDependencies": { - "@types/react": "^17.0.13", + "@types/react": "^17.0.29", "react": "^17.0.2", - "tsup": "^4.12.0", - "typescript": "^4.3.5" + "tsup": "^5.4.0", + "typescript": "^4.4.4" } } diff --git a/packages/iconoir-react/src/AppleWallet.tsx b/packages/iconoir-react/src/AppleWallet.tsx new file mode 100644 index 00000000..9c50c36d --- /dev/null +++ b/packages/iconoir-react/src/AppleWallet.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; + +function SvgAppleWallet( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgAppleWallet); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Atom.tsx b/packages/iconoir-react/src/Atom.tsx new file mode 100644 index 00000000..2c0b8dc9 --- /dev/null +++ b/packages/iconoir-react/src/Atom.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; + +function SvgAtom( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgAtom); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Backward15Seconds.tsx b/packages/iconoir-react/src/Backward15Seconds.tsx new file mode 100644 index 00000000..b7aa892d --- /dev/null +++ b/packages/iconoir-react/src/Backward15Seconds.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgBackward15Seconds( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBackward15Seconds); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Bonfire.tsx b/packages/iconoir-react/src/Bonfire.tsx new file mode 100644 index 00000000..cbdf54d1 --- /dev/null +++ b/packages/iconoir-react/src/Bonfire.tsx @@ -0,0 +1,41 @@ +import * as React from 'react'; + +function SvgBonfire( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBonfire); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Book.tsx b/packages/iconoir-react/src/Book.tsx new file mode 100644 index 00000000..a03ee9ee --- /dev/null +++ b/packages/iconoir-react/src/Book.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgBook( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBook); +export default ForwardRef; diff --git a/packages/iconoir-react/src/BookStack.tsx b/packages/iconoir-react/src/BookStack.tsx new file mode 100644 index 00000000..ecff4f63 --- /dev/null +++ b/packages/iconoir-react/src/BookStack.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; + +function SvgBookStack( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBookStack); +export default ForwardRef; diff --git a/packages/iconoir-react/src/BookmarkBook.tsx b/packages/iconoir-react/src/BookmarkBook.tsx new file mode 100644 index 00000000..32462719 --- /dev/null +++ b/packages/iconoir-react/src/BookmarkBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; + +function SvgBookmarkBook( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgBookmarkBook); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Carbon.tsx b/packages/iconoir-react/src/Carbon.tsx new file mode 100644 index 00000000..8bf8103f --- /dev/null +++ b/packages/iconoir-react/src/Carbon.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgCarbon( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCarbon); +export default ForwardRef; diff --git a/packages/iconoir-react/src/CardWallet.tsx b/packages/iconoir-react/src/CardWallet.tsx new file mode 100644 index 00000000..bcf1dd61 --- /dev/null +++ b/packages/iconoir-react/src/CardWallet.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; + +function SvgCardWallet( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCardWallet); +export default ForwardRef; diff --git a/packages/iconoir-react/src/CodeBrackets.tsx b/packages/iconoir-react/src/CodeBrackets.tsx new file mode 100644 index 00000000..1ba8bba0 --- /dev/null +++ b/packages/iconoir-react/src/CodeBrackets.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgCodeBrackets( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCodeBrackets); +export default ForwardRef; diff --git a/packages/iconoir-react/src/CodeBracketsSquare.tsx b/packages/iconoir-react/src/CodeBracketsSquare.tsx new file mode 100644 index 00000000..21b651b9 --- /dev/null +++ b/packages/iconoir-react/src/CodeBracketsSquare.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgCodeBracketsSquare( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgCodeBracketsSquare); +export default ForwardRef; diff --git a/packages/iconoir-react/src/FavouriteBook.tsx b/packages/iconoir-react/src/FavouriteBook.tsx new file mode 100644 index 00000000..40a49460 --- /dev/null +++ b/packages/iconoir-react/src/FavouriteBook.tsx @@ -0,0 +1,41 @@ +import * as React from 'react'; + +function SvgFavouriteBook( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFavouriteBook); +export default ForwardRef; diff --git a/packages/iconoir-react/src/FireFlame.tsx b/packages/iconoir-react/src/FireFlame.tsx new file mode 100644 index 00000000..1ec72113 --- /dev/null +++ b/packages/iconoir-react/src/FireFlame.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgFireFlame( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFireFlame); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Flask.tsx b/packages/iconoir-react/src/Flask.tsx new file mode 100644 index 00000000..1597c59c --- /dev/null +++ b/packages/iconoir-react/src/Flask.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; + +function SvgFlask( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFlask); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Fluorine.tsx b/packages/iconoir-react/src/Fluorine.tsx new file mode 100644 index 00000000..a6d86a03 --- /dev/null +++ b/packages/iconoir-react/src/Fluorine.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgFluorine( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgFluorine); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Forward15Seconds.tsx b/packages/iconoir-react/src/Forward15Seconds.tsx new file mode 100644 index 00000000..ef13d157 --- /dev/null +++ b/packages/iconoir-react/src/Forward15Seconds.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgForward15Seconds( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgForward15Seconds); +export default ForwardRef; diff --git a/packages/iconoir-react/src/HdDisplay.tsx b/packages/iconoir-react/src/HdDisplay.tsx new file mode 100644 index 00000000..2a94b550 --- /dev/null +++ b/packages/iconoir-react/src/HdDisplay.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; + +function SvgHdDisplay( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgHdDisplay); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Hydrogen.tsx b/packages/iconoir-react/src/Hydrogen.tsx new file mode 100644 index 00000000..719a432e --- /dev/null +++ b/packages/iconoir-react/src/Hydrogen.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgHydrogen( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgHydrogen); +export default ForwardRef; diff --git a/packages/iconoir-react/src/LockedBook.tsx b/packages/iconoir-react/src/LockedBook.tsx new file mode 100644 index 00000000..1182b522 --- /dev/null +++ b/packages/iconoir-react/src/LockedBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; + +function SvgLockedBook( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgLockedBook); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Magnet.tsx b/packages/iconoir-react/src/Magnet.tsx new file mode 100644 index 00000000..4aa4f3e1 --- /dev/null +++ b/packages/iconoir-react/src/Magnet.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgMagnet( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMagnet); +export default ForwardRef; diff --git a/packages/iconoir-react/src/MagnetEnergy.tsx b/packages/iconoir-react/src/MagnetEnergy.tsx new file mode 100644 index 00000000..4fe5ccd1 --- /dev/null +++ b/packages/iconoir-react/src/MagnetEnergy.tsx @@ -0,0 +1,47 @@ +import * as React from 'react'; + +function SvgMagnetEnergy( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMagnetEnergy); +export default ForwardRef; diff --git a/packages/iconoir-react/src/MathBook.tsx b/packages/iconoir-react/src/MathBook.tsx new file mode 100644 index 00000000..32ba7a63 --- /dev/null +++ b/packages/iconoir-react/src/MathBook.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; + +function SvgMathBook( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgMathBook); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Nitrogen.tsx b/packages/iconoir-react/src/Nitrogen.tsx new file mode 100644 index 00000000..508b24fe --- /dev/null +++ b/packages/iconoir-react/src/Nitrogen.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgNitrogen( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNitrogen); +export default ForwardRef; diff --git a/packages/iconoir-react/src/NumberedListLeft.tsx b/packages/iconoir-react/src/NumberedListLeft.tsx new file mode 100644 index 00000000..81027c01 --- /dev/null +++ b/packages/iconoir-react/src/NumberedListLeft.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgNumberedListLeft( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNumberedListLeft); +export default ForwardRef; diff --git a/packages/iconoir-react/src/NumberedListRight.tsx b/packages/iconoir-react/src/NumberedListRight.tsx new file mode 100644 index 00000000..19467f4a --- /dev/null +++ b/packages/iconoir-react/src/NumberedListRight.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgNumberedListRight( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgNumberedListRight); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Oxygen.tsx b/packages/iconoir-react/src/Oxygen.tsx new file mode 100644 index 00000000..1c5e1e79 --- /dev/null +++ b/packages/iconoir-react/src/Oxygen.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgOxygen( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgOxygen); +export default ForwardRef; diff --git a/packages/iconoir-react/src/PageEdit.tsx b/packages/iconoir-react/src/PageEdit.tsx new file mode 100644 index 00000000..23fdda03 --- /dev/null +++ b/packages/iconoir-react/src/PageEdit.tsx @@ -0,0 +1,43 @@ +import * as React from 'react'; + +function SvgPageEdit( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgPageEdit); +export default ForwardRef; diff --git a/packages/iconoir-react/src/RoundFlask.tsx b/packages/iconoir-react/src/RoundFlask.tsx new file mode 100644 index 00000000..1bbce5fc --- /dev/null +++ b/packages/iconoir-react/src/RoundFlask.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; + +function SvgRoundFlask( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgRoundFlask); +export default ForwardRef; diff --git a/packages/iconoir-react/src/SidebarCollapse.tsx b/packages/iconoir-react/src/SidebarCollapse.tsx new file mode 100644 index 00000000..804a5425 --- /dev/null +++ b/packages/iconoir-react/src/SidebarCollapse.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgSidebarCollapse( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgSidebarCollapse); +export default ForwardRef; diff --git a/packages/iconoir-react/src/SidebarExpand.tsx b/packages/iconoir-react/src/SidebarExpand.tsx new file mode 100644 index 00000000..7453a080 --- /dev/null +++ b/packages/iconoir-react/src/SidebarExpand.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; + +function SvgSidebarExpand( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgSidebarExpand); +export default ForwardRef; diff --git a/packages/iconoir-react/src/TaskList.tsx b/packages/iconoir-react/src/TaskList.tsx new file mode 100644 index 00000000..4a14545e --- /dev/null +++ b/packages/iconoir-react/src/TaskList.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgTaskList( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgTaskList); +export default ForwardRef; diff --git a/packages/iconoir-react/src/TestTube.tsx b/packages/iconoir-react/src/TestTube.tsx new file mode 100644 index 00000000..e311cd39 --- /dev/null +++ b/packages/iconoir-react/src/TestTube.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +function SvgTestTube( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + ); +} + +const ForwardRef = React.forwardRef(SvgTestTube); +export default ForwardRef; diff --git a/packages/iconoir-react/src/Wallet.tsx b/packages/iconoir-react/src/Wallet.tsx new file mode 100644 index 00000000..2793eacf --- /dev/null +++ b/packages/iconoir-react/src/Wallet.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; + +function SvgWallet( + props: React.SVGProps, + svgRef?: React.Ref +) { + return ( + + + + + + ); +} + +const ForwardRef = React.forwardRef(SvgWallet); +export default ForwardRef; diff --git a/packages/iconoir-react/src/index.tsx b/packages/iconoir-react/src/index.tsx index cad86add..fb27fa45 100644 --- a/packages/iconoir-react/src/index.tsx +++ b/packages/iconoir-react/src/index.tsx @@ -51,6 +51,7 @@ export { default as AppleImac2021Side } from './AppleImac2021Side' export { default as AppleImac2021 } from './AppleImac2021' export { default as AppleMac } from './AppleMac' export { default as AppleSwift } from './AppleSwift' +export { default as AppleWallet } from './AppleWallet' export { default as Apple } from './Apple' export { default as ArSymbol } from './ArSymbol' export { default as Archery } from './Archery' @@ -70,8 +71,10 @@ export { default as ArrowUnion } from './ArrowUnion' export { default as ArrowUpCircled } from './ArrowUpCircled' export { default as ArrowUp } from './ArrowUp' export { default as Asana } from './Asana' +export { default as Atom } from './Atom' export { default as Attachment } from './Attachment' export { default as AutoFlash } from './AutoFlash' +export { default as Backward15Seconds } from './Backward15Seconds' export { default as Bag } from './Bag' export { default as Bank } from './Bank' export { default as BasketBallAlt } from './BasketBallAlt' @@ -101,6 +104,10 @@ export { default as BluetoothRounded } from './BluetoothRounded' export { default as Bluetooth } from './Bluetooth' export { default as BoldSquareOutline } from './BoldSquareOutline' export { default as Bold } from './Bold' +export { default as Bonfire } from './Bonfire' +export { default as BookStack } from './BookStack' +export { default as Book } from './Book' +export { default as BookmarkBook } from './BookmarkBook' export { default as BookmarkCircled } from './BookmarkCircled' export { default as BookmarkEmpty } from './BookmarkEmpty' export { default as BorderBl } from './BorderBl' @@ -136,6 +143,8 @@ export { default as Calendar } from './Calendar' export { default as Camera } from './Camera' export { default as Cancel } from './Cancel' export { default as CarOutline } from './CarOutline' +export { default as Carbon } from './Carbon' +export { default as CardWallet } from './CardWallet' export { default as CartAlt } from './CartAlt' export { default as Cart } from './Cart' export { default as Cash } from './Cash' @@ -173,6 +182,8 @@ export { default as CloudSunny } from './CloudSunny' export { default as CloudSync } from './CloudSync' export { default as CloudUpload } from './CloudUpload' export { default as Cloud } from './Cloud' +export { default as CodeBracketsSquare } from './CodeBracketsSquare' +export { default as CodeBrackets } from './CodeBrackets' export { default as Code } from './Code' export { default as Codepen } from './Codepen' export { default as Coin } from './Coin' @@ -328,6 +339,7 @@ export { default as FastBottomCircle } from './FastBottomCircle' export { default as FastLeftCircle } from './FastLeftCircle' export { default as FastRightCircle } from './FastRightCircle' export { default as FastTopCircle } from './FastTopCircle' +export { default as FavouriteBook } from './FavouriteBook' export { default as Female } from './Female' export { default as Figma } from './Figma' export { default as FileNotFound } from './FileNotFound' @@ -342,18 +354,22 @@ export { default as FingerprintPhone } from './FingerprintPhone' export { default as FingerprintScan } from './FingerprintScan' export { default as FingerprintSquared } from './FingerprintSquared' export { default as Fingerprint } from './Fingerprint' +export { default as FireFlame } from './FireFlame' export { default as Flare } from './Flare' export { default as FlashOff } from './FlashOff' export { default as Flash } from './Flash' +export { default as Flask } from './Flask' export { default as FlipReverse } from './FlipReverse' export { default as Flip } from './Flip' export { default as Flower } from './Flower' +export { default as Fluorine } from './Fluorine' export { default as Fog } from './Fog' export { default as FolderAlert } from './FolderAlert' export { default as Folder } from './Folder' export { default as FontSize } from './FontSize' export { default as FootballBall } from './FootballBall' export { default as Football } from './Football' +export { default as Forward15Seconds } from './Forward15Seconds' export { default as ForwardOutline } from './ForwardOutline' export { default as FrameAltEmpty } from './FrameAltEmpty' export { default as FrameAlt } from './FrameAlt' @@ -403,6 +419,7 @@ export { default as HandBrake } from './HandBrake' export { default as Handbag } from './Handbag' export { default as HardDrive } from './HardDrive' export { default as Hat } from './Hat' +export { default as HdDisplay } from './HdDisplay' export { default as Hd } from './Hd' export { default as Hdr } from './Hdr' export { default as HeadsetCharge } from './HeadsetCharge' @@ -435,6 +452,7 @@ export { default as HospitalSign } from './HospitalSign' export { default as Hospital } from './Hospital' export { default as Hourglass } from './Hourglass' export { default as Html5 } from './Html5' +export { default as Hydrogen } from './Hydrogen' export { default as Iconoir } from './Iconoir' export { default as Import } from './Import' export { default as Industry } from './Industry' @@ -489,6 +507,7 @@ export { default as List } from './List' export { default as LoadActionFloppy } from './LoadActionFloppy' export { default as LockKey } from './LockKey' export { default as Lock } from './Lock' +export { default as LockedBook } from './LockedBook' export { default as LogDenied } from './LogDenied' export { default as LogIn } from './LogIn' export { default as LogOut } from './LogOut' @@ -506,6 +525,8 @@ export { default as MacControlKey } from './MacControlKey' export { default as MacDock } from './MacDock' export { default as MacOptionKey } from './MacOptionKey' export { default as MacOsWindow } from './MacOsWindow' +export { default as MagnetEnergy } from './MagnetEnergy' +export { default as Magnet } from './Magnet' export { default as MailOpened } from './MailOpened' export { default as Mail } from './Mail' export { default as Male } from './Male' @@ -519,6 +540,7 @@ export { default as MapsTurnBack } from './MapsTurnBack' export { default as MapsTurnLeft } from './MapsTurnLeft' export { default as MapsTurnRight } from './MapsTurnRight' export { default as MaskSquare } from './MaskSquare' +export { default as MathBook } from './MathBook' export { default as Maximize } from './Maximize' export { default as Medal1St } from './Medal1St' export { default as Medal } from './Medal' @@ -588,12 +610,15 @@ export { default as NetworkAlt } from './NetworkAlt' export { default as NetworkLeft } from './NetworkLeft' export { default as NetworkRight } from './NetworkRight' export { default as Network } from './Network' +export { default as Nitrogen } from './Nitrogen' export { default as NoBattery } from './NoBattery' export { default as NoCoin } from './NoCoin' export { default as NoCreditCard } from './NoCreditCard' export { default as NoLock } from './NoLock' export { default as NoSmoking } from './NoSmoking' export { default as Notes } from './Notes' +export { default as NumberedListLeft } from './NumberedListLeft' +export { default as NumberedListRight } from './NumberedListRight' export { default as Octagon } from './Octagon' export { default as OffRounded } from './OffRounded' export { default as OilIndustry } from './OilIndustry' @@ -606,6 +631,8 @@ export { default as OpenVpn } from './OpenVpn' export { default as OrangeHalf } from './OrangeHalf' export { default as OrangeSliceAlt } from './OrangeSliceAlt' export { default as OrangeSlice } from './OrangeSlice' +export { default as Oxygen } from './Oxygen' +export { default as PageEdit } from './PageEdit' export { default as PageFlip } from './PageFlip' export { default as PageSearch } from './PageSearch' export { default as PageStar } from './PageStar' @@ -712,6 +739,7 @@ export { default as RightRoundArrow } from './RightRoundArrow' export { default as Rings } from './Rings' export { default as RotateCameraLeft } from './RotateCameraLeft' export { default as RotateCameraRight } from './RotateCameraRight' +export { default as RoundFlask } from './RoundFlask' export { default as RssFeedSquared } from './RssFeedSquared' export { default as RssFeed } from './RssFeed' export { default as RulerAdd } from './RulerAdd' @@ -778,6 +806,8 @@ export { default as ShoppingCode } from './ShoppingCode' export { default as ShortPantsAlt } from './ShortPantsAlt' export { default as ShortPants } from './ShortPants' export { default as Shuffle } from './Shuffle' +export { default as SidebarCollapse } from './SidebarCollapse' +export { default as SidebarExpand } from './SidebarExpand' export { default as SimpleCart } from './SimpleCart' export { default as SingleTapGesture } from './SingleTapGesture' export { default as Skateboard } from './Skateboard' @@ -831,12 +861,14 @@ export { default as SystemShut } from './SystemShut' export { default as Table2Columns } from './Table2Columns' export { default as TableRows } from './TableRows' export { default as Table } from './Table' +export { default as TaskList } from './TaskList' export { default as TelegramCircled } from './TelegramCircled' export { default as Telegram } from './Telegram' export { default as TennisBallAlt } from './TennisBallAlt' export { default as TennisBall } from './TennisBall' export { default as TerminalOutline } from './TerminalOutline' export { default as TerminalSimple } from './TerminalSimple' +export { default as TestTube } from './TestTube' export { default as TextAlt } from './TextAlt' export { default as TextSize } from './TextSize' export { default as Text } from './Text' @@ -915,6 +947,7 @@ export { default as Voice } from './Voice' export { default as VrSymbol } from './VrSymbol' export { default as Waist } from './Waist' export { default as Walking } from './Walking' +export { default as Wallet } from './Wallet' export { default as WarningCircledOutline } from './WarningCircledOutline' export { default as WarningSquareOutline } from './WarningSquareOutline' export { default as WarningTriangleOutline } from './WarningTriangleOutline' diff --git a/packages/iconoir-react/tsconfig.json b/packages/iconoir-react/tsconfig.json index d30f6453..61052cf7 100644 --- a/packages/iconoir-react/tsconfig.json +++ b/packages/iconoir-react/tsconfig.json @@ -3,7 +3,6 @@ "target": "es5", "module": "esnext", "moduleResolution": "node", - "sourceMap": true, "jsx": "react", "strict": true, "esModuleInterop": true, diff --git a/packages/iconoir-react/tsup.config.json b/packages/iconoir-react/tsup.config.json index 317e7127..5bab89b2 100644 --- a/packages/iconoir-react/tsup.config.json +++ b/packages/iconoir-react/tsup.config.json @@ -2,7 +2,6 @@ "entryPoints": ["src/index.tsx"], "format": ["cjs"], "legacyOutput": true, - "sourcemap": true, "minify": true, "clean": true, "dts": true