diff --git a/.build/build-icons.mjs b/.build/build-icons.mjs new file mode 100644 index 000000000..91fb4501a --- /dev/null +++ b/.build/build-icons.mjs @@ -0,0 +1,107 @@ +import fs from 'fs-extra' +import path from 'path' +import { PACKAGES_DIR, readSvgs } from './helpers.mjs' +import { stringify } from 'svgson' +import prettier from 'prettier' + +import bundleSize from '@atomico/rollup-plugin-sizes' +import { visualizer } from 'rollup-plugin-visualizer' +import license from 'rollup-plugin-license' +import esbuild from 'rollup-plugin-esbuild'; + + +/** + * Build icons + * + * @param name + * @param componentTemplate + * @param indexIconTemplate + * @param typeDefinitionsTemplate + * @param indexTypeTemplate + * @param ext + * @param pretty + */ +export const buildIcons = ({ + name, + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate, + extension = 'js', + pretty = true, + key = true +}) => { + const DIST_DIR = path.resolve(PACKAGES_DIR, name), + svgFiles = readSvgs() + + let index = [] + let typings = [] + + svgFiles.forEach((svgFile, i) => { + const children = svgFile.obj.children + .map(({ + name, + attributes + }, i) => { + if (key) { + attributes.key = `svg-${i}` + } + + return [name, attributes] + }) + .filter((i) => { + const [name, attributes] = i + return !attributes.d || attributes.d !== 'M0 0h24v24H0z' + }) + + // process.stdout.write(`Building ${i}/${svgFiles.length}: ${svgFile.name.padEnd(42)}\r`) + + let component = componentTemplate({ + name: svgFile.name, + namePascal: svgFile.namePascal, + children, + stringify, + svg: svgFile + }) + + const output = pretty ? prettier.format(component, { + singleQuote: true, + trailingComma: 'all', + parser: 'babel' + }) : component + + let filePath = path.resolve(DIST_DIR, 'src/icons', `${svgFile.name}.${extension}`) + fs.writeFileSync(filePath, output, 'utf-8') + + index.push(indexItemTemplate({ + name: svgFile.name, + namePascal: svgFile.namePascal + })) + + typings.push(indexTypeTemplate({ + name: svgFile.name, + namePascal: svgFile.namePascal + })) + }) + + fs.writeFileSync(path.resolve(DIST_DIR, `./src/icons.js`), index.join('\n'), 'utf-8') + + fs.ensureDirSync(path.resolve(DIST_DIR, `./dist/`)) + fs.writeFileSync(path.resolve(DIST_DIR, `./dist/tabler-${name}.d.ts`), typeDefinitionsTemplate() + '\n' + typings.join('\n'), 'utf-8') +} + +export const getRollupPlugins = (pkg, minify) => { + return [ + esbuild({ + minify, + }), + license({ + banner: `${pkg.name} v${pkg.version} - ${pkg.license}` + }), + bundleSize(), + visualizer({ + sourcemap: false, + filename: `stats/${pkg.name}${minify ? '-min' : ''}.html` + }) + ].filter(Boolean) +} diff --git a/.build/changelog-commit.mjs b/.build/changelog-commit.mjs new file mode 100644 index 000000000..13ecf8be1 --- /dev/null +++ b/.build/changelog-commit.mjs @@ -0,0 +1,24 @@ +import cp from 'child_process' +import { printChangelog } from './helpers.mjs' + +cp.exec('git status', function(err, ret) { + let newIcons = [], modifiedIcons = [], renamedIcons = [] + + ret.replace(/new file:\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + newIcons.push(fileName) + }) + + ret.replace(/modified:\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + modifiedIcons.push(fileName) + }) + + ret.replace(/renamed:\s+src\/_icons\/([a-z0-9-]+).svg -> src\/_icons\/([a-z0-9-]+).svg/g, function(m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]) + }) + + modifiedIcons = modifiedIcons.filter(function(el) { + return newIcons.indexOf(el) < 0 + }) + + printChangelog(newIcons, modifiedIcons, renamedIcons) +}) diff --git a/.build/changelog-image.mjs b/.build/changelog-image.mjs new file mode 100644 index 000000000..ee86c4b9f --- /dev/null +++ b/.build/changelog-image.mjs @@ -0,0 +1,30 @@ +import cp from 'child_process' +import { generateIconsPreview, getArgvs, getPackageJson } from './helpers.mjs' + +const argv = getArgvs(), + p = getPackageJson() + +const version = argv['latest-version'] || `v${p.version}`, + newVersion = argv['new-version'] || `${p.version}` + +if (version) { + cp.exec(`git diff ${version} HEAD --name-status --diff-filter=A src/_icons`, function(err, ret) { + + let newIcons = [] + + ret.replace(/[A]\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + newIcons.push(fileName) + }) + + newIcons = newIcons.map(function(icon) { + return `./icons/${icon}.svg` + }) + + if (newIcons.length > 0) { + generateIconsPreview(newIcons, `.github/tabler-icons-${newVersion}.svg`, { + columnsCount: 6, + paddingOuter: 24 + }) + } + }) +} diff --git a/.build/changelog.mjs b/.build/changelog.mjs new file mode 100644 index 000000000..b087d5f30 --- /dev/null +++ b/.build/changelog.mjs @@ -0,0 +1,31 @@ +import cp from 'child_process' +import { getArgvs, getPackageJson, printChangelog } from './helpers.mjs' + +const p = getPackageJson(), + argv = getArgvs(), + version = argv['latest-version'] || `${p.version}` + +if (version) { + cp.exec(`git diff ${version} HEAD --name-status src/_icons`, function(err, ret) { + + let newIcons = [], modifiedIcons = [], renamedIcons = [] + + ret.replace(/A\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + newIcons.push(fileName) + }) + + ret.replace(/M\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + modifiedIcons.push(fileName) + }) + + ret.replace(/R[0-9]+\s+src\/_icons\/([a-z0-9-]+)\.svg\s+src\/_icons\/([a-z0-9-]+).svg/g, function(m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]) + }) + + modifiedIcons = modifiedIcons.filter(function(el) { + return newIcons.indexOf(el) < 0 + }) + + printChangelog(newIcons, modifiedIcons, renamedIcons, true) + }) +} diff --git a/.build/helpers.mjs b/.build/helpers.mjs new file mode 100644 index 000000000..6da48adc8 --- /dev/null +++ b/.build/helpers.mjs @@ -0,0 +1,353 @@ +import fs from 'fs' +import path, { resolve, basename } from 'path' +import { fileURLToPath } from 'url' +import svgParse from 'parse-svg-path' +import svgpath from 'svgpath' +import cheerio from 'cheerio'; +import { minify } from 'html-minifier'; +import { parseSync } from 'svgson' +import { optimize } from 'svgo' +import cp from 'child_process' +import minimist from 'minimist' + +export const getCurrentDirPath = () => { + return path.dirname(fileURLToPath(import.meta.url)); +} + +export const HOME_DIR = resolve(getCurrentDirPath(), '..') + +export const ICONS_SRC_DIR = resolve(HOME_DIR, 'src/_icons') +export const ICONS_DIR = resolve(HOME_DIR, 'icons') +export const PACKAGES_DIR = resolve(HOME_DIR, 'packages') + +export const getArgvs = () => { + return minimist(process.argv.slice(2)) +} + +export const getPackageDir = (packageName) => { + return `${PACKAGES_DIR}/${packageName}` +} + +/** + * Return project package.json + * @returns {any} + */ +export const getPackageJson = () => { + return JSON.parse(fs.readFileSync(resolve(HOME_DIR, 'package.json'), 'utf-8')) +} + +/** + * Reads SVGs from directory + * + * @param directory + * @returns {string[]} + */ +export const readSvgDirectory = (directory) => { + return fs.readdirSync(directory).filter((file) => path.extname(file) === '.svg') +} + +export const readSvgs = () => { + const svgFiles = readSvgDirectory(ICONS_DIR) + + return svgFiles.map(svgFile => { + const name = basename(svgFile, '.svg'), + namePascal = toPascalCase(`icon ${name}`), + contents = readSvg(svgFile, ICONS_DIR).trim(), + path = resolve(ICONS_DIR, svgFile), + obj = parseSync(contents.replace('', '')); + + return { + name, + namePascal, + contents, + obj, + path + }; + }); +} + +/** + * Read SVG + * + * @param fileName + * @param directory + * @returns {string} + */ +export const readSvg = (fileName, directory) => { + return fs.readFileSync(path.join(directory, fileName), 'utf-8') +} + +/** + * Create directory if not exists + * @param dir + */ +export const createDirectory = (dir) => { + if (!fs.existsSync(dir)) { + fs.mkdirSync(dir); + } +}; + +/** + * Get SVG name + * @param fileName + * @returns {string} + */ +export const getSvgName = (fileName) => { + return path.basename(fileName, '.svg') +} + +/** + * Convert string to CamelCase + * @param string + * @returns {*} + */ +export const toCamelCase = (string) => { + return string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase()) +} + +export const toPascalCase = (string) => { + const camelCase = toCamelCase(string); + + return camelCase.charAt(0).toUpperCase() + camelCase.slice(1); +} + + + +export const addFloats = function(n1, n2) { + return Math.round((parseFloat(n1) + parseFloat(n2)) * 1000) / 1000 +} + +export const optimizePath = function(path) { + let transformed = svgpath(path).rel().round(3).toString() + + return svgParse(transformed).map(function(a) { + return a.join(' ') + }).join(' ') +} + +export const optimizeSVG = (data) => { + return optimize(data, { + js2svg: { + indent: 2, + pretty: true + }, + plugins: [ + { + name: 'preset-default', + params: { + overrides: { + mergePaths: false + } + } + }] + }).data +} + +export function buildIconsObject(svgFiles, getSvg) { + return svgFiles + .map(svgFile => { + const name = path.basename(svgFile, '.svg'); + const svg = getSvg(svgFile); + const contents = getSvgContents(svg); + return { name, contents }; + }) + .reduce((icons, icon) => { + icons[icon.name] = icon.contents; + return icons; + }, {}); +} + +function getSvgContents(svg) { + const $ = cheerio.load(svg); + return minify($('svg').html(), { collapseWhitespace: true }); +} + +export const asyncForEach = async (array, callback) => { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index, array) + } +} + +export const createScreenshot = async (filePath) => { + await cp.exec(`rsvg-convert -x 2 -y 2 ${filePath} > ${filePath.replace('.svg', '.png')}`) + await cp.exec(`rsvg-convert -x 4 -y 4 ${filePath} > ${filePath.replace('.svg', '@2x.png')}`) +} + +export const generateIconsPreview = async function(files, destFile, { + columnsCount = 19, + paddingOuter = 7, + color = '#354052', + background = '#fff' +} = {}) { + + const padding = 20, + iconSize = 24 + + const iconsCount = files.length, + rowsCount = Math.ceil(iconsCount / columnsCount), + width = columnsCount * (iconSize + padding) + 2 * paddingOuter - padding, + height = rowsCount * (iconSize + padding) + 2 * paddingOuter - padding + + let svgContentSymbols = '', + svgContentIcons = '', + x = paddingOuter, + y = paddingOuter + + files.forEach(function(file, i) { + let name = path.basename(file, '.svg') + + let svgFile = fs.readFileSync(file), + svgFileContent = svgFile.toString() + + svgFileContent = svgFileContent.replace('', '') + .replace(/\n\s+/g, '') + + svgContentSymbols += `\t${svgFileContent}\n` + svgContentIcons += `\t\n` + + x += padding + iconSize + + if (i % columnsCount === columnsCount - 1) { + x = paddingOuter + y += padding + iconSize + } + }) + + const svgContent = `\n${svgContentSymbols}\n${svgContentIcons}\n` + + fs.writeFileSync(destFile, svgContent) + await createScreenshot(destFile) +} + + +export const printChangelog = function(newIcons, modifiedIcons, renamedIcons, pretty = false) { + if (newIcons.length > 0) { + if (pretty) { + console.log(`### ${newIcons.length} new icons:\n`) + + newIcons.forEach(function(icon, i) { + console.log(`- \`${icon}\``) + }) + } else { + let str = '' + str += `${newIcons.length} new icons: ` + + newIcons.forEach(function(icon, i) { + str += `\`${icon}\`` + + if ((i + 1) <= newIcons.length - 1) { + str += ', ' + } + }) + + console.log(str) + } + + console.log('') + } + + if (modifiedIcons.length > 0) { + let str = '' + str += `Fixed icons: ` + + modifiedIcons.forEach(function(icon, i) { + str += `\`${icon}\`` + + if ((i + 1) <= modifiedIcons.length - 1) { + str += ', ' + } + }) + + console.log(str) + console.log('') + } + + if (renamedIcons.length > 0) { + console.log(`Renamed icons: `) + + renamedIcons.forEach(function(icon, i) { + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``) + }) + } +} + + +export const getCompileOptions = () => { + const compileOptions = { + includeIcons: [], + strokeWidth: null, + fontForge: 'fontforge' + } + + if (fs.existsSync('../compile-options.json')) { + try { + const tempOptions = require('../compile-options.json') + + if (typeof tempOptions !== 'object') { + throw 'Compile options file does not contain an json object' + } + + if (typeof tempOptions.includeIcons !== 'undefined') { + if (!Array.isArray(tempOptions.includeIcons)) { + throw 'property inludeIcons is not an array' + } + compileOptions.includeIcons = tempOptions.includeIcons + } + + if (typeof tempOptions.includeCategories !== 'undefined') { + if (typeof tempOptions.includeCategories === 'string') { + tempOptions.includeCategories = tempOptions.includeCategories.split(' ') + } + if (!Array.isArray(tempOptions.includeCategories)) { + throw 'property includeCategories is not an array or string' + } + const tags = Object.entries(require('./tags.json')) + tempOptions.includeCategories.forEach(function(category) { + category = category.charAt(0).toUpperCase() + category.slice(1) + for (const [icon, data] of tags) { + if (data.category === category && compileOptions.includeIcons.indexOf(icon) === -1) { + compileOptions.includeIcons.push(icon) + } + } + }) + } + + if (typeof tempOptions.excludeIcons !== 'undefined') { + if (!Array.isArray(tempOptions.excludeIcons)) { + throw 'property excludeIcons is not an array' + } + compileOptions.includeIcons = compileOptions.includeIcons.filter(function(icon) { + return tempOptions.excludeIcons.indexOf(icon) === -1 + }) + } + + if (typeof tempOptions.excludeOffIcons !== 'undefined' && tempOptions.excludeOffIcons) { + // Exclude `*-off` icons + compileOptions.includeIcons = compileOptions.includeIcons.filter(function(icon) { + return !icon.endsWith('-off') + }) + } + + if (typeof tempOptions.strokeWidth !== 'undefined') { + if (typeof tempOptions.strokeWidth !== 'string' && typeof tempOptions.strokeWidth !== 'number') { + throw 'property strokeWidth is not a string or number' + } + compileOptions.strokeWidth = tempOptions.strokeWidth.toString() + } + + if (typeof tempOptions.fontForge !== 'undefined') { + if (typeof tempOptions.fontForge !== 'string') { + throw 'property fontForge is not a string' + } + compileOptions.fontForge = tempOptions.fontForge + } + + } catch (error) { + throw `Error reading compile-options.json: ${error}` + } + } + + return compileOptions +} diff --git a/.build/import-categories.mjs b/.build/import-categories.mjs new file mode 100644 index 000000000..f7dddadee --- /dev/null +++ b/.build/import-categories.mjs @@ -0,0 +1,38 @@ +import glob from 'glob' +import fs from 'fs' +import { resolve, join, basename } from 'path' +import { ICONS_SRC_DIR } from './helpers.mjs' + + +glob.sync(join(ICONS_SRC_DIR, '*-off.svg')).forEach(function(file, i) { + const fileOriginal = file.replace(/\-off.svg$/, '.svg') + + if (fs.existsSync(fileOriginal)) { + const dataOriginal = fs.readFileSync(fileOriginal).toString() + + const categoryOriginal = dataOriginal.match(/category: ([a-zA-Z-]+)/), + tagsOriginal = dataOriginal.match(/tags: (\[.*?\])/) + + if (categoryOriginal || tagsOriginal) { + + let data = fs.readFileSync(file).toString() + data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { + console.log('categoryOriginal', fileOriginal, categoryOriginal && categoryOriginal[1], tagsOriginal && tagsOriginal[1]) + + if (categoryOriginal) { + headerContent = headerContent.replace(/category: .*\n/, '') + headerContent = headerContent.replace(/---/, `---\ncategory: ${categoryOriginal[1]}`) + } + + if (tagsOriginal) { + headerContent = headerContent.replace(/tags: .*\n/, '') + headerContent = headerContent.replace(/---/, `---\ntags: ${tagsOriginal[1]}`) + } + + return headerContent + }) + + fs.writeFileSync(file, data) + } + } +}) diff --git a/.build/import-tags.mjs b/.build/import-tags.mjs new file mode 100644 index 000000000..7a3f8ecd6 --- /dev/null +++ b/.build/import-tags.mjs @@ -0,0 +1,30 @@ +import fs from 'fs' +import csv from 'csv-parser' +import { join } from 'path' +import { HOME_DIR } from './helpers.mjs' + + +fs.createReadStream(join(HOME_DIR, '_import.tsv')).pipe(csv({ + headers: false, + separator: '\t' +})).on('data', (row) => { + console.log(row[1], row[2]) + + const filename = join(HOME_DIR, `src/_icons/${row[1]}.svg`) + + if(row[2].length) { + let data = fs.readFileSync(filename).toString() + data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { + + headerContent = headerContent.replace(/tags: .*\n/, '') + headerContent = headerContent.replace(/---/, `---\ntags: [${row[2]}]`) + + return headerContent + }) + + fs.writeFileSync(filename, data) + } + +}).on('end', () => { + console.log('CSV file successfully processed') +}) diff --git a/.build/import.mjs b/.build/import.mjs new file mode 100644 index 000000000..3df42f4c7 --- /dev/null +++ b/.build/import.mjs @@ -0,0 +1,60 @@ +import fs from 'fs' +import glob from 'glob' +import { resolve, basename } from 'path' +import { HOME_DIR, optimizeSVG } from './helpers.mjs' + + +const files = glob.sync(resolve(HOME_DIR, './new/*.svg')) + +files.forEach(function(file, i) { + let fileData = fs.readFileSync(file).toString(), + filename = basename(file, '.svg') + + console.log(filename) + + fileData = optimizeSVG(fileData) + + if (fileData.match(/transform="/)) { + throw new Error(`File ${file} has \`transform\` in code!!`) + } + + if (filename.match(/\s/)) { + throw new Error(`File ${file} has space in name!!`) + } + + fileData = fileData.replace(/---/g, '') + .replace(/fill="none"/g, '') + .replace(/fill="#D8D8D8"/gi, '') + .replace(/fill-rule="evenodd"/g, '') + .replace(/stroke-linecap="round"/g, '') + .replace(/stroke-linejoin="round"/g, '') + .replace(/viewBox="0 0 24 24"/g, '') + .replace(/stroke="#000000"/g, '') + .replace(/stroke="#000"/g, '') + .replace(/stroke-width="2"/g, '') + .replace(/width="24"/g, '') + .replace(/width="24px"/g, '') + .replace(/height="24"/g, '') + .replace(/height="24px"/g, '') + .replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g, '') + .replace(/"/g, '') + .replace(//g, '') + .replace(/]*stroke="red"[^>]*\/>/gs, '') + .replace(/]*stroke="red"[^>]*\/>/gs, '') + .replace(/]*stroke="red"[^>]*>.*?<\/g>/gs, '') + + fileData = optimizeSVG(fileData) + + fileData = fileData.replace(//g, '---\n---\n') + + if (fs.existsSync(`./src/_icons/${filename}.svg`)) { + const newFileData = fs.readFileSync(`./src/_icons/${filename}.svg`).toString() + const m = newFileData.match(/(---.*---)/gms) + + if (m) { + fileData = fileData.replace('---\n---', m[0]) + } + } + + fs.writeFileSync(`./src/_icons/${filename}.svg`, fileData) +}) diff --git a/.build/optimize.mjs b/.build/optimize.mjs new file mode 100644 index 000000000..331c77fa1 --- /dev/null +++ b/.build/optimize.mjs @@ -0,0 +1,98 @@ +import glob from 'glob' +import { readFileSync, writeFileSync } from 'fs' +import { join, basename } from 'path' +import { optimizePath, ICONS_SRC_DIR } from './helpers.mjs' + + +glob(join(ICONS_SRC_DIR, '*.svg'), {}, function(er, files) { + + files.forEach(function(file, i) { + console.log(`Optimize ${basename(file)}`); + + let svgFile = readFileSync(file), + svgFileContent = svgFile.toString() + + svgFileContent = svgFileContent.replace(/><\/(polyline|line|rect|circle|path|ellipse)>/g, '/>') + .replace(/rx="([^"]+)"\s+ry="\1"/g, 'rx="$1"') + .replace(/]+)?\/>/g, '') + .replace(/\s?\/>/g, ' />') + .replace(/\n\s*<(line|circle|path|polyline|rect|ellipse)/g, '\n <$1') + // .replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"') + .replace(//g, function(f, x1, y1, x2, y2) { + return `` + }) + .replace(//g, function(f, cx, cy, r) { + return `` + }) + .replace(//g, function(f, cx, cy, rx) { + return `` + }) + .replace(//g, function(f, cx, cy, rx, ry) { + return `` + }) + .replace(//g, function(f, width, height, x, y, rx) { + return `` + }) + .replace(//g, function(f, x, y, rx, width, height) { + return `` + }) + .replace(//g, function(f, x, y, width, height, rx) { + return `` + }) + .replace(//g, function(f, x, y, width, height) { + return `` + }) + .replace(//g, function(f, points) { + const path = points.split(' ').reduce( + (accumulator, currentValue, currentIndex) => `${accumulator}${currentIndex % 2 === 0 ? (currentIndex === 0 ? 'M' : 'L') : ''}${currentValue} `, + '' + ) + return `` + }) + .replace(/ `${m}`) + .replace(/([0-9]+)+\.99[4-9]/g, (f, m) => `${parseInt(m) + 1}`) + .replace(/\.99[4-9]/g, (f, m) => `1`) + .replace(/-\.00[1-6]/g, (f, m) => `0`) + .replace(/\.00[1-6]/g, (f, m) => `0`) + .replace(/m0 0/g, (f, m) => ``) + + return `[\n\s\t]+[\n\t\s]*[\n\t\s]*<\/svg>/)) { + console.log(`Fix ${file}!`); + } + + if (svgFile.toString() !== svgFileContent) { + writeFileSync(file, svgFileContent) + } + }) +}) diff --git a/.build/preview-icons.mjs b/.build/preview-icons.mjs new file mode 100644 index 000000000..b2421c3bf --- /dev/null +++ b/.build/preview-icons.mjs @@ -0,0 +1,10 @@ +import glob from 'glob' +import { generateIconsPreview } from './helpers.mjs' + +glob('icons/*.svg', {}, async function(er, files) { + await generateIconsPreview(files, '.github/icons.svg') + await generateIconsPreview(files, '.github/icons-dark.svg', { + color: '#ffffff', + background: 'transparent' + }) +}) diff --git a/.build/preview-stroke.mjs b/.build/preview-stroke.mjs new file mode 100644 index 000000000..2b659dd91 --- /dev/null +++ b/.build/preview-stroke.mjs @@ -0,0 +1,36 @@ +import fs from 'fs' +import { createScreenshot } from './helpers.mjs' + +const icon = 'ghost', + strokes = ['.25', '.5', '.75', '1', '1.25', '1.5', '1.75', '2', '2.25', '2.5', '2.25'], + svgFileContent = fs.readFileSync(`icons/${icon}.svg`).toString(), + padding = 16, + paddingOuter = 3, + iconSize = 56, + width = 830, + height = iconSize + paddingOuter * 2 + +let svgContentSymbols = '', + svgContentIcons = '', + x = paddingOuter + +strokes.forEach(function(stroke) { + let svgFileContentStroked = svgFileContent.replace('', '') + .replace(/\n\s+/g, '') + + svgContentSymbols += `\t${svgFileContentStroked}\n` + svgContentIcons += `\t\n` + + x += padding + iconSize +}) + +const svgContent = `\n${svgContentSymbols}\n${svgContentIcons}\n` +const svgContentDark = `\n${svgContentSymbols}\n${svgContentIcons}\n` + +fs.writeFileSync('.github/icons-stroke.svg', svgContent) +fs.writeFileSync('.github/icons-stroke-dark.svg', svgContentDark) +await createScreenshot('.github/icons-stroke.svg') +await createScreenshot('.github/icons-stroke-dark.svg') diff --git a/.build/svgr-template.js b/.build/svgr-template.js deleted file mode 100644 index c8c413845..000000000 --- a/.build/svgr-template.js +++ /dev/null @@ -1,12 +0,0 @@ -function template( - { template }, - opts, - { imports, componentName, props, jsx, exports }, -) { - return template.ast` - ${imports} - function ${componentName}({ size = 24, color = "currentColor", stroke = 2, ...props }) { return (${jsx}); } - ${exports} - `; -} -module.exports = template; diff --git a/.build/update-icons-unicode.mjs b/.build/update-icons-unicode.mjs new file mode 100644 index 000000000..f21e67ce3 --- /dev/null +++ b/.build/update-icons-unicode.mjs @@ -0,0 +1,47 @@ +import glob from 'glob' +import fs from 'fs' +import path from 'path' +import { ICONS_SRC_DIR } from './helpers.mjs' + +const getMaxUnicode = () => { + const files = glob.sync(path.join(ICONS_SRC_DIR, '*.svg')) + let maxUnicode = 0 + + files.forEach(function(file) { + const svgFile = fs.readFileSync(file).toString() + + svgFile.replace(/unicode: "([a-f0-9.]+)"/i, function(m, unicode) { + const newUnicode = parseInt(unicode, 16) + + if (newUnicode) { + maxUnicode = Math.max(maxUnicode, newUnicode) + } + }) + }) + + return maxUnicode +} + +let maxUnicode = getMaxUnicode() + +glob(path.join(ICONS_SRC_DIR, '*.svg'), {}, function(er, files) { + for (const i in files) { + const file = files[i] + + let svgFile = fs.readFileSync(file).toString() + + if (!svgFile.match(/\nunicode: "?([a-f0-9.]+)"?/i)) { + maxUnicode++ + const unicode = maxUnicode.toString(16) + + if (unicode) { + svgFile = svgFile.replace(/---\n/i, function(m) { + return `unicode: "${unicode}"\n${m}` + }) + + console.log(`Add unicode "${unicode}" to "${file}"`) + fs.writeFileSync(file, svgFile) + } + } + } +}) diff --git a/.build/update-icons-version.mjs b/.build/update-icons-version.mjs new file mode 100644 index 000000000..ca5a00fab --- /dev/null +++ b/.build/update-icons-version.mjs @@ -0,0 +1,48 @@ +import cp from 'child_process' +import fs from 'fs' +import path from 'path' +import { getArgvs, getPackageJson, ICONS_SRC_DIR } from './helpers.mjs' + +const p = getPackageJson() + +const argv = getArgvs(), + version = argv['latest-version'] || `${p.version}`, + newVersion = argv['new-version'] || `${p.version}` + +const setVersions = function(version, files) { + for (const i in files) { + const file = files[i], + filePath = path.join(ICONS_SRC_DIR, `${file}.svg`) + + if (fs.existsSync(filePath)) { + let svgFile = fs.readFileSync(filePath).toString() + + if (!svgFile.match(/version: ([0-9.]+)/i)) { + svgFile = svgFile.replace(/---\n/i, function(m) { + return `version: "${version}"\n${m}` + }) + + fs.writeFileSync(filePath, svgFile) + } else { + console.log(`File ${file} already has version`) + } + + } else { + console.log(`File ${file} doesn't exists`) + } + } +} + +if (version) { + cp.exec(`grep -RiL "version: " ${ICONS_SRC_DIR}/*.svg`, function(err, ret) { + let newIcons = [] + + ret.replace(/src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { + newIcons.push(fileName) + }) + + if (newIcons.length) { + setVersions(newVersion.replace(/\.0$/, ''), newIcons) + } + }) +} diff --git a/.build/update-readme.mjs b/.build/update-readme.mjs new file mode 100644 index 000000000..fd252b4cf --- /dev/null +++ b/.build/update-readme.mjs @@ -0,0 +1,20 @@ +import { readFileSync, writeFileSync } from 'fs' +import glob from 'glob' +import { resolve } from 'path' +import { HOME_DIR } from './helpers.mjs' + +let count = glob.sync(resolve(HOME_DIR, 'icons/*.svg')).length + +console.log('count', count); + +const readmes = glob.sync(resolve(HOME_DIR, '{.,packages/*}/README.md')) + +readmes.forEach(readme => { + let fileData = readFileSync(readme).toString() + + fileData = fileData.replace(/(.*?)/, `${count}`) + + writeFileSync(readme, fileData) +}) + + diff --git a/.build/zip-files.mjs b/.build/zip-files.mjs new file mode 100644 index 000000000..fe7a5711b --- /dev/null +++ b/.build/zip-files.mjs @@ -0,0 +1,20 @@ +import Zip from 'adm-zip' +import { getPackageJson, HOME_DIR } from './helpers.mjs' +import { resolve } from 'path' + +const p = getPackageJson() +const zip = new Zip() + +zip.addLocalFile(resolve(HOME_DIR, `.github/og.png`), '.', 'tabler-icons.png') + +zip.addLocalFolder(resolve(HOME_DIR, `packages/icons/icons/`), 'svg') +zip.addLocalFolder(resolve(HOME_DIR, `packages/icons-png/icons/`), 'png') +zip.addLocalFolder(resolve(HOME_DIR, `packages/icons-pdf/icons/`), 'pdf') +zip.addLocalFolder(resolve(HOME_DIR, `packages/icons-eps/icons/`), 'eps') +zip.addLocalFolder(resolve(HOME_DIR, `packages/icons-webfont/fonts`), 'webfont/fonts') +zip.addLocalFile(resolve(HOME_DIR, `packages/icons-webfont/tabler-icons.html`), 'webfont') +zip.addLocalFile(resolve(HOME_DIR, `packages/icons-webfont/tabler-icons.scss`), 'webfont') +zip.addLocalFile(resolve(HOME_DIR, `packages/icons-webfont/tabler-icons.css`), 'webfont') +zip.addLocalFile(resolve(HOME_DIR, `packages/icons-webfont/tabler-icons.min.css`), 'webfont') + +zip.writeZip(resolve(HOME_DIR, `packages-zip/tabler-icons-${p.version}.zip`)); diff --git a/.github/icons-dark.png b/.github/icons-dark.png index b36418ae2..f418643fa 100644 Binary files a/.github/icons-dark.png and b/.github/icons-dark.png differ diff --git a/.github/icons-dark.svg b/.github/icons-dark.svg index f6297f04d..525f53c68 100644 --- a/.github/icons-dark.svg +++ b/.github/icons-dark.svg @@ -1,211 +1,211 @@ - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - \ No newline at end of file diff --git a/.github/icons-dark@2x.png b/.github/icons-dark@2x.png index e2c089f7a..d486977c4 100644 Binary files a/.github/icons-dark@2x.png and b/.github/icons-dark@2x.png differ diff --git a/.github/icons-stroke-dark.png b/.github/icons-stroke-dark.png index cfe6beaf8..950084b40 100644 Binary files a/.github/icons-stroke-dark.png and b/.github/icons-stroke-dark.png differ diff --git a/.github/icons-stroke-dark.svg b/.github/icons-stroke-dark.svg index b7f9c1276..929c33498 100644 --- a/.github/icons-stroke-dark.svg +++ b/.github/icons-stroke-dark.svg @@ -1,19 +1,37 @@ - - + + - + - + - + - + + + + + + + + + + + + + - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/.github/icons-stroke-dark@2x.png b/.github/icons-stroke-dark@2x.png index 36b50c49d..2c0703e5f 100644 Binary files a/.github/icons-stroke-dark@2x.png and b/.github/icons-stroke-dark@2x.png differ diff --git a/.github/icons-stroke.png b/.github/icons-stroke.png index 13cd1cffa..41e135ae8 100644 Binary files a/.github/icons-stroke.png and b/.github/icons-stroke.png differ diff --git a/.github/icons-stroke.svg b/.github/icons-stroke.svg index 5bd770dff..9d8b3b83e 100644 --- a/.github/icons-stroke.svg +++ b/.github/icons-stroke.svg @@ -1,19 +1,37 @@ - - + + - + - + - + - + + + + + + + + + + + + + - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/.github/icons-stroke@2x.png b/.github/icons-stroke@2x.png index 77e59856c..473865d39 100644 Binary files a/.github/icons-stroke@2x.png and b/.github/icons-stroke@2x.png differ diff --git a/.github/icons.png b/.github/icons.png index 907d473b4..72264b5b7 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/.github/icons.svg b/.github/icons.svg index bab24928e..3a8b79ab9 100644 --- a/.github/icons.svg +++ b/.github/icons.svg @@ -1,211 +1,211 @@ - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - \ No newline at end of file diff --git a/.github/icons@2x.png b/.github/icons@2x.png index 5a4035167..992390498 100644 Binary files a/.github/icons@2x.png and b/.github/icons@2x.png differ diff --git a/.gitignore b/.gitignore index e92f69b14..c4a77fd4e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,9 @@ -.idea/* -_site/ -node_modules/ +.idea +_site +node_modules .jekyll-cache/ package-lock.json Gemfile.lock -packages/* packages-zip/* .DS_Store icons-outlined/ @@ -23,3 +22,13 @@ dist/ _import.tsv .yarn .yarnrc.yml + +packages/icons*/icons/* +packages/icons*/src/icons/* +packages/icons*/src/icons.js +packages/icons*/LICENSE +packages/icons*/stats/* +packages/icons*/icons/* + +.turbo +.sass-cache diff --git a/README.md b/README.md index 0c156233e..4921a35df 100644 --- a/README.md +++ b/README.md @@ -3,18 +3,13 @@

- A set of 3128 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. + A set of 3204 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke.

Browse at tabler-icons.io →

-

- Latest Release - License -

- ## Sponsors diff --git a/babel.config.js b/babel.config.js index 9bd353014..e18d89652 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,19 @@ module.exports = { - presets: ["@babel/preset-env", "@babel/preset-react"] -}; + presets: ['@babel/env'], + env: { + test: { + presets: ['@babel/env'], + plugins: ['@babel/plugin-transform-runtime'] + }, + dev: { + plugins: [ + [ + 'transform-inline-environment-variables', + { + include: ['NODE_ENV'] + } + ] + ] + } + } +} diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index cb3753ce9..000000000 --- a/gulpfile.js +++ /dev/null @@ -1,935 +0,0 @@ -const gulp = require('gulp'), - cp = require('child_process'), - glob = require('glob'), - fs = require('fs'), - path = require('path'), - p = require('./package.json'), - csv = require('csv-parser'), - zip = require('gulp-zip'), - svgo = require('gulp-svgo'), - { optimize } = require('svgo'), - outlineStroke = require('svg-outline-stroke'), - iconfont = require('gulp-iconfont'), - template = require('lodash.template'), - sass = require('node-sass'), - cleanCSS = require('clean-css'), - argv = require('minimist')(process.argv.slice(2)), - svgParse = require('parse-svg-path'), - svgpath = require('svgpath'), - svgr = require('@svgr/core').default - -const compileOptions = { - includeIcons: [], - strokeWidth: null, - fontForge: 'fontforge' -} - -if (fs.existsSync('./compile-options.json')) { - try { - const tempOptions = require('./compile-options.json') - if (typeof tempOptions !== 'object') { - throw 'Compile options file does not contain an json object' - } - - if (typeof tempOptions.includeIcons !== 'undefined') { - if (!Array.isArray(tempOptions.includeIcons)) { - throw 'property inludeIcons is not an array' - } - compileOptions.includeIcons = tempOptions.includeIcons - } - - if (typeof tempOptions.includeCategories !== 'undefined') { - if (typeof tempOptions.includeCategories === 'string') { - tempOptions.includeCategories = tempOptions.includeCategories.split(' ') - } - if (!Array.isArray(tempOptions.includeCategories)) { - throw 'property includeCategories is not an array or string' - } - const tags = Object.entries(require('./tags.json')) - tempOptions.includeCategories.forEach(function(category) { - category = category.charAt(0).toUpperCase() + category.slice(1) - for (const [icon, data] of tags) { - if (data.category === category && compileOptions.includeIcons.indexOf(icon) === -1) { - compileOptions.includeIcons.push(icon) - } - } - }) - } - - if (typeof tempOptions.excludeIcons !== 'undefined') { - if (!Array.isArray(tempOptions.excludeIcons)) { - throw 'property excludeIcons is not an array' - } - compileOptions.includeIcons = compileOptions.includeIcons.filter(function(icon) { - return tempOptions.excludeIcons.indexOf(icon) === -1 - }) - } - - if (typeof tempOptions.excludeOffIcons !== 'undefined' && tempOptions.excludeOffIcons) { - // Exclude `*-off` icons - compileOptions.includeIcons = compileOptions.includeIcons.filter(function(icon) { - return !icon.endsWith('-off') - }) - } - - if (typeof tempOptions.strokeWidth !== 'undefined') { - if (typeof tempOptions.strokeWidth !== 'string' && typeof tempOptions.strokeWidth !== 'number') { - throw 'property strokeWidth is not a string or number' - } - compileOptions.strokeWidth = tempOptions.strokeWidth.toString() - } - - if (typeof tempOptions.fontForge !== 'undefined') { - if (typeof tempOptions.fontForge !== 'string') { - throw 'property fontForge is not a string' - } - compileOptions.fontForge = tempOptions.fontForge - } - - } catch (error) { - throw `Error reading compile-options.json: ${error}` - } - -} - -async function asyncForEach(array, callback) { - for (let index = 0; index < array.length; index++) { - await callback(array[index], index, array) - } -} - -const svgToPng = async (filePath, destination) => { - filePath = path.join(__dirname, filePath) - - await new Promise((resolve, reject) => { - cp.exec(`rsvg-convert -h 240 ${filePath} > ${destination}`, (error, stdout, stderr) => { - error ? reject() : resolve() - }) - }) -} - -const createScreenshot = async (filePath) => { - await cp.exec(`rsvg-convert -x 2 -y 2 ${filePath} > ${filePath.replace('.svg', '.png')}`) - await cp.exec(`rsvg-convert -x 4 -y 4 ${filePath} > ${filePath.replace('.svg', '@2x.png')}`) -} - -const printChangelog = function(newIcons, modifiedIcons, renamedIcons, pretty = false) { - if (newIcons.length > 0) { - if (pretty) { - console.log(`### ${newIcons.length} new icons:`) - - newIcons.forEach(function(icon, i) { - console.log(`- \`${icon}\``) - }) - } else { - let str = '' - str += `${newIcons.length} new icons: ` - - newIcons.forEach(function(icon, i) { - str += `\`${icon}\`` - - if ((i + 1) <= newIcons.length - 1) { - str += ', ' - } - }) - - console.log(str) - } - - console.log('') - } - - if (modifiedIcons.length > 0) { - let str = '' - str += `Fixed icons: ` - - modifiedIcons.forEach(function(icon, i) { - str += `\`${icon}\`` - - if ((i + 1) <= modifiedIcons.length - 1) { - str += ', ' - } - }) - - console.log(str) - console.log('') - } - - if (renamedIcons.length > 0) { - console.log(`Renamed icons: `) - - renamedIcons.forEach(function(icon, i) { - console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``) - }) - } -} - -const generateIconsPreview = function(files, destFile, cb, { - columnsCount = 19, - paddingOuter = 7, - color = '#354052', - background = '#fff' -} = {}) { - - const padding = 20, - iconSize = 24 - - const iconsCount = files.length, - rowsCount = Math.ceil(iconsCount / columnsCount), - width = columnsCount * (iconSize + padding) + 2 * paddingOuter - padding, - height = rowsCount * (iconSize + padding) + 2 * paddingOuter - padding - - let svgContentSymbols = '', - svgContentIcons = '', - x = paddingOuter, - y = paddingOuter - - files.forEach(function(file, i) { - let name = path.basename(file, '.svg') - - let svgFile = fs.readFileSync(file), - svgFileContent = svgFile.toString() - - svgFileContent = svgFileContent.replace('', '') - .replace(/\n\s+/g, '') - - svgContentSymbols += `\t${svgFileContent}\n` - svgContentIcons += `\t\n` - - x += padding + iconSize - - if (i % columnsCount === columnsCount - 1) { - x = paddingOuter - y += padding + iconSize - } - }) - - const svgContent = `\n${svgContentSymbols}\n${svgContentIcons}\n` - - fs.writeFileSync(destFile, svgContent) - createScreenshot(destFile) - - cb() -} - -//********************************************************************************************* - -gulp.task('iconfont-prepare', (cb) => { - cp.exec('mkdir -p icons-outlined/ && rm -fd ./icons-outlined/* && mkdir -p && rm -fd ./iconfont/*', () => { - cb() - }) -}) - -gulp.task('iconfont-clean', (cb) => { - cp.exec('rm -rf ./icons-outlined', () => { - cb() - }) -}) - -gulp.task('iconfont-svg-outline', (cb) => { - - cp.exec('mkdir -p icons-outlined/ && rm -fd ./icons-outlined/*', async () => { - let files = glob.sync('./icons/*.svg') - - const iconfontUnicode = require('./tags.json') - - await asyncForEach(files, async function(file) { - - const name = path.basename(file, '.svg') - - if (compileOptions.includeIcons.length === 0 || compileOptions.includeIcons.indexOf(name) >= 0) { - - const unicode = iconfontUnicode[name].unicode - await console.log('Stroke for:', file, unicode) - - let strokedSVG = fs.readFileSync(file).toString() - - strokedSVG = strokedSVG.replace('width="24"', 'width="1000"').replace('height="24"', 'height="1000"') - - if (compileOptions.strokeWidth) { - strokedSVG = strokedSVG.replace('stroke-width="2"', `stroke-width="${compileOptions.strokeWidth}"`) - } - - await outlineStroke(strokedSVG, { - optCurve: false, - steps: 4, - round: 0, - centerHorizontally: true, - fixedWidth: true, - color: 'black' - }).then(outlined => { - if (unicode) { - fs.writeFileSync(`icons-outlined/u${unicode.toUpperCase()}-${name}.svg`, outlined) - } else { - fs.writeFileSync(`icons-outlined/${name}.svg`, outlined) - } - }).catch(error => console.log(error)) - } - }) - - cb() - }) -}) - -gulp.task('iconfont-optimize', () => { - return gulp.src('icons-outlined/*').pipe(svgo()).pipe(gulp.dest('icons-outlined')) -}) - -gulp.task('iconfont-fix-outline', (cb) => { - var fontForge = compileOptions.fontForge - - // correct svg outline directions in a child process using fontforge - const generate = cp.spawn(fontForge, ['-lang=py', '-script', './fix-outline.py'], { stdio: 'inherit' }) - generate.on('close', function(code) { - console.log(`Correcting svg outline directions exited with code ${code}`) - if (!code) { - cb() - } - }) -}) - -gulp.task('iconfont', () => { - return gulp.src(['icons-outlined/*.svg']).pipe(iconfont({ - fontName: 'tabler-icons', - prependUnicode: true, - formats: ['ttf', 'eot', 'woff', 'woff2', 'svg'], - normalize: true, - fontHeight: 1000, - descent: 100, - ascent: 986.5 - })).on('glyphs', function(glyphs, options) { - //sort glypht - glyphs = glyphs.sort(function(a, b) { - return ('' + a.name).localeCompare(b.name) - }) - - //css - options['glyphs'] = glyphs - options['v'] = p.version - - const compiled = template(fs.readFileSync('.build/iconfont.scss').toString()) - const result = compiled(options) - - fs.writeFileSync('iconfont/tabler-icons.scss', result) - - //html - const compiledHtml = template(fs.readFileSync('.build/iconfont.html').toString()) - const resultHtml = compiledHtml(options) - - fs.writeFileSync('iconfont/tabler-icons.html', resultHtml) - }).pipe(gulp.dest('iconfont/fonts')) -}) - -gulp.task('iconfont-css', (cb) => { - sass.render({ - file: 'iconfont/tabler-icons.scss', - outputStyle: 'expanded' - }, function(err, result) { - fs.writeFileSync('iconfont/tabler-icons.css', result.css) - - const cleanOutput = new cleanCSS({}).minify(result.css) - fs.writeFileSync('iconfont/tabler-icons.min.css', cleanOutput.styles) - - cb() - }) -}) - -const getMaxUnicode = () => { - const path = 'src/_icons/*.svg' - const files = glob.sync(path) - let maxUnicode = 0 - - files.forEach(function(file) { - const svgFile = fs.readFileSync(file).toString() - - svgFile.replace(/unicode: "([a-f0-9.]+)"/i, function(m, unicode) { - const newUnicode = parseInt(unicode, 16) - - if (newUnicode) { - maxUnicode = Math.max(maxUnicode, newUnicode) - } - }) - }) - - return maxUnicode -} - -gulp.task('update-icons-unicode', (cb) => { - let maxUnicode = getMaxUnicode() - - glob('./src/_icons/*.svg', {}, function(er, files) { - for (const i in files) { - const file = files[i] - - let svgFile = fs.readFileSync(file).toString() - - if (!svgFile.match(/\nunicode: "?([a-f0-9.]+)"?/i)) { - maxUnicode++ - const unicode = maxUnicode.toString(16) - - if (unicode) { - svgFile = svgFile.replace(/---\n/i, function(m) { - return `unicode: "${unicode}"\n${m}` - }) - - console.log(`Add unicode "${unicode}" to "${file}"`) - fs.writeFileSync(file, svgFile) - } - } else { - console.log(`File ${file} already has unicode`) - } - } - - cb() - }) -}) - -gulp.task('build-iconfont', - gulp.series('iconfont-prepare', 'iconfont-svg-outline', 'iconfont-fix-outline', 'iconfont-optimize', 'iconfont', 'iconfont-css', 'iconfont-clean')) - -gulp.task('build-zip', () => { - const version = p.version - - return gulp.src('{icons/**/*,icons-png/**/*,icons-react/**/*,iconfont/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}') - .pipe(zip(`tabler-icons-${version}.zip`)) - .pipe(gulp.dest('packages-zip')) -}) - -gulp.task('build-jekyll', (cb) => { - const jekyll = cp.spawn('bundle', ['exec', 'jekyll', 'build'], { - stdio: 'inherit', - env: { - ...process.env, - JEKYLL_ENV: 'production' - } - }) - jekyll.on('close', function(code) { - console.log(`Jekyll build exited with code ${code}`) - if (!code) { - cb() - } - }) -}) - -gulp.task('build-copy', (cb) => { - cp.exec('mkdir -p icons/ && rm -fd ./icons/* && cp ./_site/icons/* ./icons && cp ./_site/tags.json .', () => { - cb() - }) -}) - -gulp.task('clean-png', (cb) => { - cp.exec('rm -fd ./icons-png/*', () => { - cb() - }) -}) - -gulp.task('icons-sprite', (cb) => { - glob('_site/icons/*.svg', {}, function(er, files) { - - let svgContent = '' - - files.forEach(function(file, i) { - let name = path.basename(file, '.svg'), - svgFile = fs.readFileSync(file), - svgFileContent = svgFile.toString() - - svgFileContent = svgFileContent.replace(/]+>/g, '').replace(/<\/svg>/g, '').replace(/\n+/g, '').replace(/>\s+<').trim() - - svgContent += `${svgFileContent}` - }) - - let svg = `${svgContent}` - - fs.writeFileSync('tabler-sprite.svg', svg) - fs.writeFileSync('tabler-sprite-nostroke.svg', svg.replace(/stroke-width="2"\s/g, '')) - cb() - }) -}) - -gulp.task('icons-preview', (cb) => { - glob('icons/*.svg', {}, function(er, files) { - generateIconsPreview(files, '.github/icons.svg', cb) - generateIconsPreview(files, '.github/icons-dark.svg', cb, { - color: '#ffffff', - background: 'transparent' - }) - }) -}) - -gulp.task('icons-stroke', gulp.series((cb) => { - - const icon = 'disabled', - strokes = ['.5', '1', '1.5', '2', '2.75'], - svgFileContent = fs.readFileSync(`icons/${icon}.svg`).toString(), - padding = 16, - paddingOuter = 3, - iconSize = 32, - width = 914, - height = iconSize + paddingOuter * 2 - - let svgContentSymbols = '', - svgContentIcons = '', - x = paddingOuter - - strokes.forEach(function(stroke) { - let svgFileContentStroked = svgFileContent.replace('', '') - .replace(/\n\s+/g, '') - - svgContentSymbols += `\t${svgFileContentStroked}\n` - svgContentIcons += `\t\n` - - x += padding + iconSize - }) - - const svgContent = `\n${svgContentSymbols}\n${svgContentIcons}\n` - const svgContentDark = `\n${svgContentSymbols}\n${svgContentIcons}\n` - - fs.writeFileSync('.github/icons-stroke.svg', svgContent) - fs.writeFileSync('.github/icons-stroke-dark.svg', svgContentDark) - createScreenshot('.github/icons-stroke.svg') - createScreenshot('.github/icons-stroke-dark.svg') - cb() -})) - -gulp.task('optimize', (cb) => { - const addFloats = function(n1, n2) { - return Math.round((parseFloat(n1) + parseFloat(n2)) * 1000) / 1000 - } - - const optimizePath = function(path) { - let transformed = svgpath(path).rel().round(3).toString() - - return svgParse(transformed).map(function(a) { - return a.join(' ') - }).join(' ') - } - - glob('src/_icons/*.svg', {}, function(er, files) { - - files.forEach(function(file, i) { - let svgFile = fs.readFileSync(file), - svgFileContent = svgFile.toString() - - svgFileContent = svgFileContent.replace(/><\/(polyline|line|rect|circle|path|ellipse)>/g, '/>') - .replace(/rx="([^"]+)"\s+ry="\1"/g, 'rx="$1"') - .replace(/]+)?\/>/g, '') - .replace(/\s?\/>/g, ' />') - .replace(/\n\s*<(line|circle|path|polyline|rect|ellipse)/g, '\n <$1') - .replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"') - // .replace(//g, function(f, x1, y1, x2, y2) { - // return `` - // }) - // .replace(//g, function(f, cx, cy, r) { - // return `` - // }) - // .replace(//g, function(f, rx, cx, ry, cy) { - // return `` - // }) - // .replace(/(?<=M[^"]+)"\s+\/>[\n\s\t]+ { - cp.exec('git status', function(err, ret) { - let newIcons = [], modifiedIcons = [], renamedIcons = [] - - ret.replace(/new file:\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - newIcons.push(fileName) - }) - - ret.replace(/modified:\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - modifiedIcons.push(fileName) - }) - - ret.replace(/renamed:\s+src\/_icons\/([a-z0-9-]+).svg -> src\/_icons\/([a-z0-9-]+).svg/g, function(m, fileNameBefore, fileNameAfter) { - renamedIcons.push([fileNameBefore, fileNameAfter]) - }) - - modifiedIcons = modifiedIcons.filter(function(el) { - return newIcons.indexOf(el) < 0 - }) - - printChangelog(newIcons, modifiedIcons, renamedIcons) - - cb() - }) -}) - -gulp.task('changelog', (cb) => { - const version = `v${p.version}` - - if (version) { - cp.exec(`git diff ${version} HEAD --name-status`, function(err, ret) { - - let newIcons = [], modifiedIcons = [], renamedIcons = [] - - ret.replace(/A\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - newIcons.push(fileName) - }) - - ret.replace(/M\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - modifiedIcons.push(fileName) - }) - - ret.replace(/R[0-9]+\s+src\/_icons\/([a-z0-9-]+)\.svg\s+src\/_icons\/([a-z0-9-]+).svg/g, function(m, fileNameBefore, fileNameAfter) { - renamedIcons.push([fileNameBefore, fileNameAfter]) - }) - - modifiedIcons = modifiedIcons.filter(function(el) { - return newIcons.indexOf(el) < 0 - }) - - printChangelog(newIcons, modifiedIcons, renamedIcons, true) - - cb() - }) - } -}) - -gulp.task('changelog-image', (cb) => { - const version = argv['latest-version'] || `${p.version}`, - newVersion = argv['new-version'] || `${p.version}` - - if (version) { - cp.exec(`git diff v${version} HEAD --name-status`, function(err, ret) { - - let newIcons = [] - - ret.replace(/[A]\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - newIcons.push(fileName) - }) - - newIcons = newIcons.map(function(icon) { - return `./icons/${icon}.svg` - }) - - if (newIcons.length > 0) { - generateIconsPreview(newIcons, `.github/tabler-icons-${newVersion}.svg`, cb, { - columnsCount: 6, - paddingOuter: 24 - }) - } else { - cb() - } - }) - } else { - cb() - } -}) - -gulp.task('svg-to-png', gulp.series('clean-png', async (cb) => { - let files = glob.sync('./icons/*.svg') - - await asyncForEach(files, async function(file, i) { - let name = path.basename(file, '.svg') - - console.log('name', name) - - await svgToPng(file, `icons-png/${name}.png`) - }) - - cb() -})) - -gulp.task('clean-react', (cb) => { - cp.exec('rm -fd ./icons-react/* && mkdir icons-react/icons-js', () => { - cb() - }) -}) - -gulp.task('svg-to-react', gulp.series('clean-react', async (cb) => { - let files = glob.sync('./icons/*.svg') - - const camelize = function(str) { - str = str.replace(/-/g, ' ') - - return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function(word, index) { - return word.toUpperCase() - }).replace(/\s+/g, '') - } - - const componentName = function(file) { - file = path.basename(file, '.svg') - file = camelize(`Icon ${file}`) - - return file - } - - const optimizeSvgCode = function(svgCode) { - return svgCode.replace('', '') - } - - let indexCode = '', - indexDCode = `import { FC, SVGAttributes } from 'react';\n\ntype TablerIconProps = Omit, 'color' | 'stroke'> & {\n color?: SVGAttributes['stroke'];\n size?: SVGAttributes['width'];\n stroke?: SVGAttributes['strokeWidth'];\n}\n\ntype TablerIcon = FC;\n\n` - - await asyncForEach(files, async function(file) { - const svgCode = optimizeSvgCode(fs.readFileSync(file).toString()), - fileName = path.basename(file, '.svg') + '.js', - iconComponentName = componentName(file) - - await svgr(svgCode, { - icon: false, - svgProps: { width: '{size}', height: '{size}', strokeWidth: '{stroke}', stroke: '{color}' }, - template: require('./.build/svgr-template') - }, { componentName: iconComponentName }).then(jsCode => { - fs.writeFileSync('icons-react/icons-js/' + fileName, jsCode) - indexCode += `export { default as ${iconComponentName} } from './icons-js/${fileName}';\n` - indexDCode += `export const ${iconComponentName}: TablerIcon;\n` - }) - - fs.writeFileSync('icons-react/index.js', indexCode) - fs.writeFileSync('icons-react/index.d.ts', indexDCode) - }) - - cb() -})) - -const setVersions = function(version, files) { - for (const i in files) { - const file = files[i] - - if (fs.existsSync(`src/_icons/${file}.svg`)) { - let svgFile = fs.readFileSync(`src/_icons/${file}.svg`).toString() - - if (!svgFile.match(/version: ([0-9.]+)/i)) { - svgFile = svgFile.replace(/---\n/i, function(m) { - return `version: "${version}"\n${m}` - }) - - fs.writeFileSync(`src/_icons/${file}.svg`, svgFile) - } else { - console.log(`File ${file} already has version`) - } - - } else { - console.log(`File ${file} doesn't exists`) - } - } -} - -gulp.task('update-icons-version', (cb) => { - - const version = argv['latest-version'] || `${p.version}`, - newVersion = argv['new-version'] || `${p.version}` - - if (version) { - cp.exec(`grep -RiL "version: " ./src/_icons/*.svg`, function(err, ret) { - - let newIcons = [] - - ret.replace(/src\/_icons\/([a-z0-9-]+)\.svg/g, function(m, fileName) { - newIcons.push(fileName) - }) - - if (newIcons.length) { - setVersions(newVersion.replace(/\.0$/, ''), newIcons) - } - }) - } - - cb() -}) - -gulp.task('import-categories', (cb) => { - let files = glob.sync('./src/_icons/*-off.svg') - - files.forEach(function(file, i) { - const fileOriginal = file.replace(/\-off.svg$/, '.svg') - - if (fs.existsSync(fileOriginal)) { - const dataOriginal = fs.readFileSync(fileOriginal).toString() - - const categoryOriginal = dataOriginal.match(/category: ([a-zA-Z-]+)/), - tagsOriginal = dataOriginal.match(/tags: (\[.*?\])/) - - if (categoryOriginal || tagsOriginal) { - - let data = fs.readFileSync(file).toString() - data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { - console.log('categoryOriginal', fileOriginal, categoryOriginal && categoryOriginal[1], tagsOriginal && tagsOriginal[1]) - - if (categoryOriginal) { - headerContent = headerContent.replace(/category: .*\n/, '') - headerContent = headerContent.replace(/---/, `---\ncategory: ${categoryOriginal[1]}`) - } - - if (tagsOriginal) { - headerContent = headerContent.replace(/tags: .*\n/, '') - headerContent = headerContent.replace(/---/, `---\ntags: ${tagsOriginal[1]}`) - } - - return headerContent - }) - - fs.writeFileSync(file, data) - } - } - }) - - cb() -}) - -gulp.task('import-tags', (cb) => { - fs.createReadStream('./_import.tsv').pipe(csv({ - headers: false, - separator: '\t' - })).on('data', (row) => { - console.log(row[1], row[2]) - - const filename = `src/_icons/${row[1]}.svg` - - if(row[2].length) { - let data = fs.readFileSync(filename).toString() - data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { - - headerContent = headerContent.replace(/tags: .*\n/, '') - headerContent = headerContent.replace(/---/, `---\ntags: [${row[2]}]`) - - return headerContent - }) - - fs.writeFileSync(filename, data) - } - - }).on('end', () => { - console.log('CSV file successfully processed') - }) - cb() -}) - -gulp.task('update-readme', (cb) => { - let fileData = fs.readFileSync('README.md').toString(), - count = glob.sync('./icons/*.svg').length - - fileData = fileData.replace(/(.*?)/, `${count}`) - - fs.writeFileSync('README.md', fileData) - - cb() -}) - -gulp.task('build-react', (cb) => { - cp.exec('npm run build-react', () => { - cb() - }) -}) - -gulp.task('build', - gulp.series('optimize', 'update-icons-version', 'update-icons-unicode', 'build-jekyll', 'build-copy', 'icons-sprite', 'svg-to-react', 'build-react', - 'icons-preview', 'svg-to-png', 'build-iconfont', 'changelog-image', 'build-zip', 'update-readme')) - -const optimizeSVG = (data) => { - return optimize(data, { - js2svg: { - indent: 2, - pretty: true - }, - plugins: [ - { - name: 'preset-default', - params: { - overrides: { - mergePaths: false - } - } - }] - }).data -} - -gulp.task('import', gulp.series((cb) => { - if (fs.existsSync('./new/Artboard.svg')) { - fs.unlinkSync('rm ./new/Artboard.svg') - } - - const files = glob.sync('./new/*.svg') - - files.forEach(function(file, i) { - let fileData = fs.readFileSync(file).toString(), - filename = path.basename(file, '.svg') - - console.log(filename) - - fileData = optimizeSVG(fileData) - - if (fileData.match(/transform="/)) { - throw new Error(`File ${file} has \`transform\` in code!!`) - } - - if (filename.match(/\s/)) { - throw new Error(`File ${file} has space in name!!`) - } - - fileData = fileData.replace(/---/g, '') - .replace(/fill="none"/g, '') - .replace(/fill="#D8D8D8"/gi, '') - .replace(/fill-rule="evenodd"/g, '') - .replace(/stroke-linecap="round"/g, '') - .replace(/stroke-linejoin="round"/g, '') - .replace(/viewBox="0 0 24 24"/g, '') - .replace(/stroke="#000000"/g, '') - .replace(/stroke="#000"/g, '') - .replace(/stroke-width="2"/g, '') - .replace(/width="24"/g, '') - .replace(/width="24px"/g, '') - .replace(/height="24"/g, '') - .replace(/height="24px"/g, '') - .replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g, '') - .replace(/"/g, '') - .replace(//g, '') - .replace(/]*stroke="red"[^>]*\/>/gs, '') - .replace(/]*stroke="red"[^>]*\/>/gs, '') - .replace(/]*stroke="red"[^>]*>.*?<\/g>/gs, '') - - fileData = optimizeSVG(fileData) - - fileData = fileData.replace(//g, '---\n---\n') - - if (fs.existsSync(`./src/_icons/${filename}.svg`)) { - const newFileData = fs.readFileSync(`./src/_icons/${filename}.svg`).toString() - const m = newFileData.match(/(---.*---)/gms) - - if (m) { - fileData = fileData.replace('---\n---', m[0]) - } - } - - fs.writeFileSync(`./src/_icons/${filename}.svg`, fileData) - }) - - cb() -}, 'optimize')) diff --git a/iconfont/fonts/tabler-icons.eot b/iconfont/fonts/tabler-icons.eot deleted file mode 100644 index f371235d8..000000000 Binary files a/iconfont/fonts/tabler-icons.eot and /dev/null differ diff --git a/iconfont/fonts/tabler-icons.svg b/iconfont/fonts/tabler-icons.svg deleted file mode 100644 index 7da0535a1..000000000 --- a/iconfont/fonts/tabler-icons.svg +++ /dev/null @@ -1,9396 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/iconfont/fonts/tabler-icons.ttf b/iconfont/fonts/tabler-icons.ttf deleted file mode 100644 index 0f014c3c5..000000000 Binary files a/iconfont/fonts/tabler-icons.ttf and /dev/null differ diff --git a/iconfont/fonts/tabler-icons.woff b/iconfont/fonts/tabler-icons.woff deleted file mode 100644 index cb277611f..000000000 Binary files a/iconfont/fonts/tabler-icons.woff and /dev/null differ diff --git a/iconfont/fonts/tabler-icons.woff2 b/iconfont/fonts/tabler-icons.woff2 deleted file mode 100644 index 3d7e089c7..000000000 Binary files a/iconfont/fonts/tabler-icons.woff2 and /dev/null differ diff --git a/iconfont/tabler-icons.min.css b/iconfont/tabler-icons.min.css deleted file mode 100644 index 050e81786..000000000 --- a/iconfont/tabler-icons.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Tabler Icons 1.119.0 by tabler - https://tabler.io - * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE - */@font-face{font-family:tabler-icons;font-style:normal;font-weight:400;src:url(fonts/tabler-icons.eot);src:url(fonts/tabler-icons.eot?#iefix) format("embedded-opentype"),url(fonts/tabler-icons.woff2) format("woff2"),url(fonts/tabler-icons.woff) format("woff"),url(fonts/tabler-icons.ttf) format("truetype"),url(fonts/tabler-icons.svg#tabler-icons) format("svg")}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-family:tabler-icons;src:url(fonts/tabler-icons.svg#tabler-icons) format("svg")}}.ti{font-family:tabler-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-123:before{content:"\f554"}.ti-24-hours:before{content:"\f5e7"}.ti-2fa:before{content:"\eca0"}.ti-360:before{content:"\f62f"}.ti-360-view:before{content:"\f566"}.ti-3d-cube-sphere:before{content:"\ecd7"}.ti-3d-cube-sphere-off:before{content:"\f3b5"}.ti-3d-rotate:before{content:"\f020"}.ti-a-b:before{content:"\ec36"}.ti-a-b-2:before{content:"\f25f"}.ti-a-b-off:before{content:"\f0a6"}.ti-abacus:before{content:"\f05c"}.ti-abacus-off:before{content:"\f3b6"}.ti-abc:before{content:"\f567"}.ti-access-point:before{content:"\ed1b"}.ti-access-point-off:before{content:"\ed1a"}.ti-accessible:before{content:"\eba9"}.ti-accessible-off:before{content:"\f0a7"}.ti-activity:before{content:"\ed23"}.ti-activity-heartbeat:before{content:"\f0db"}.ti-ad:before{content:"\ea02"}.ti-ad-2:before{content:"\ef1f"}.ti-ad-off:before{content:"\f3b7"}.ti-address-book:before{content:"\f021"}.ti-address-book-off:before{content:"\f3b8"}.ti-adjustments:before{content:"\ea03"}.ti-adjustments-alt:before{content:"\ec37"}.ti-adjustments-horizontal:before{content:"\ec38"}.ti-adjustments-off:before{content:"\f0a8"}.ti-aerial-lift:before{content:"\edfe"}.ti-affiliate:before{content:"\edff"}.ti-air-balloon:before{content:"\f4a6"}.ti-air-conditioning:before{content:"\f3a2"}.ti-air-conditioning-disabled:before{content:"\f542"}.ti-alarm:before{content:"\ea04"}.ti-alarm-minus:before{content:"\f630"}.ti-alarm-off:before{content:"\f0a9"}.ti-alarm-plus:before{content:"\f631"}.ti-alarm-snooze:before{content:"\f632"}.ti-album:before{content:"\f022"}.ti-album-off:before{content:"\f3b9"}.ti-alert-circle:before{content:"\ea05"}.ti-alert-octagon:before{content:"\ecc6"}.ti-alert-triangle:before{content:"\ea06"}.ti-alien:before{content:"\ebde"}.ti-align-box-bottom-center:before{content:"\f530"}.ti-align-box-bottom-left:before{content:"\f531"}.ti-align-box-bottom-right:before{content:"\f532"}.ti-align-box-left-bottom:before{content:"\f533"}.ti-align-box-left-middle:before{content:"\f534"}.ti-align-box-left-top:before{content:"\f535"}.ti-align-box-right-bottom:before{content:"\f536"}.ti-align-box-right-middle:before{content:"\f537"}.ti-align-box-right-top:before{content:"\f538"}.ti-align-box-top-center:before{content:"\f539"}.ti-align-box-top-left:before{content:"\f53a"}.ti-align-box-top-right:before{content:"\f53b"}.ti-align-center:before{content:"\ea07"}.ti-align-justified:before{content:"\ea08"}.ti-align-left:before{content:"\ea09"}.ti-align-right:before{content:"\ea0a"}.ti-alpha:before{content:"\f543"}.ti-alphabet-cyrillic:before{content:"\f1df"}.ti-alphabet-greek:before{content:"\f1e0"}.ti-alphabet-latin:before{content:"\f1e1"}.ti-ambulance:before{content:"\ebf5"}.ti-ampersand:before{content:"\f229"}.ti-analyze:before{content:"\f3a3"}.ti-analyze-off:before{content:"\f3ba"}.ti-anchor:before{content:"\eb76"}.ti-anchor-off:before{content:"\f0f7"}.ti-angle:before{content:"\ef20"}.ti-ankh:before{content:"\f1cd"}.ti-antenna:before{content:"\f094"}.ti-antenna-bars-1:before{content:"\ecc7"}.ti-antenna-bars-2:before{content:"\ecc8"}.ti-antenna-bars-3:before{content:"\ecc9"}.ti-antenna-bars-4:before{content:"\ecca"}.ti-antenna-bars-5:before{content:"\eccb"}.ti-antenna-bars-off:before{content:"\f0aa"}.ti-antenna-off:before{content:"\f3bb"}.ti-aperture:before{content:"\eb58"}.ti-aperture-off:before{content:"\f3bc"}.ti-api:before{content:"\effd"}.ti-api-app:before{content:"\effc"}.ti-api-app-off:before{content:"\f0ab"}.ti-api-off:before{content:"\f0f8"}.ti-app-window:before{content:"\efe6"}.ti-apple:before{content:"\ef21"}.ti-apps:before{content:"\ebb6"}.ti-apps-off:before{content:"\f0ac"}.ti-archive:before{content:"\ea0b"}.ti-archive-off:before{content:"\f0ad"}.ti-armchair:before{content:"\ef9e"}.ti-armchair-2:before{content:"\efe7"}.ti-armchair-2-off:before{content:"\f3bd"}.ti-armchair-off:before{content:"\f3be"}.ti-arrow-autofit-content:before{content:"\ef31"}.ti-arrow-autofit-down:before{content:"\ef32"}.ti-arrow-autofit-height:before{content:"\ef33"}.ti-arrow-autofit-left:before{content:"\ef34"}.ti-arrow-autofit-right:before{content:"\ef35"}.ti-arrow-autofit-up:before{content:"\ef36"}.ti-arrow-autofit-width:before{content:"\ef37"}.ti-arrow-back:before{content:"\ea0c"}.ti-arrow-back-up:before{content:"\eb77"}.ti-arrow-badge-down:before{content:"\f60b"}.ti-arrow-badge-left:before{content:"\f60c"}.ti-arrow-badge-right:before{content:"\f60d"}.ti-arrow-badge-up:before{content:"\f60e"}.ti-arrow-bar-down:before{content:"\ea0d"}.ti-arrow-bar-left:before{content:"\ea0e"}.ti-arrow-bar-right:before{content:"\ea0f"}.ti-arrow-bar-to-down:before{content:"\ec88"}.ti-arrow-bar-to-left:before{content:"\ec89"}.ti-arrow-bar-to-right:before{content:"\ec8a"}.ti-arrow-bar-to-up:before{content:"\ec8b"}.ti-arrow-bar-up:before{content:"\ea10"}.ti-arrow-bear-left:before{content:"\f045"}.ti-arrow-bear-left-2:before{content:"\f044"}.ti-arrow-bear-right:before{content:"\f047"}.ti-arrow-bear-right-2:before{content:"\f046"}.ti-arrow-big-down:before{content:"\edda"}.ti-arrow-big-down-line:before{content:"\efe8"}.ti-arrow-big-down-lines:before{content:"\efe9"}.ti-arrow-big-left:before{content:"\eddb"}.ti-arrow-big-left-line:before{content:"\efea"}.ti-arrow-big-left-lines:before{content:"\efeb"}.ti-arrow-big-right:before{content:"\eddc"}.ti-arrow-big-right-line:before{content:"\efec"}.ti-arrow-big-right-lines:before{content:"\efed"}.ti-arrow-big-top:before{content:"\eddd"}.ti-arrow-big-up-line:before{content:"\efee"}.ti-arrow-big-up-lines:before{content:"\efef"}.ti-arrow-bounce:before{content:"\f3a4"}.ti-arrow-curve-left:before{content:"\f048"}.ti-arrow-curve-right:before{content:"\f049"}.ti-arrow-down:before{content:"\ea16"}.ti-arrow-down-bar:before{content:"\ed98"}.ti-arrow-down-circle:before{content:"\ea11"}.ti-arrow-down-left:before{content:"\ea13"}.ti-arrow-down-left-circle:before{content:"\ea12"}.ti-arrow-down-rhombus:before{content:"\f61d"}.ti-arrow-down-right:before{content:"\ea15"}.ti-arrow-down-right-circle:before{content:"\ea14"}.ti-arrow-down-square:before{content:"\ed9a"}.ti-arrow-down-tail:before{content:"\ed9b"}.ti-arrow-fork:before{content:"\f04a"}.ti-arrow-forward:before{content:"\ea17"}.ti-arrow-forward-up:before{content:"\eb78"}.ti-arrow-guide:before{content:"\f22a"}.ti-arrow-iteration:before{content:"\f578"}.ti-arrow-left:before{content:"\ea19"}.ti-arrow-left-bar:before{content:"\ed9c"}.ti-arrow-left-circle:before{content:"\ea18"}.ti-arrow-left-rhombus:before{content:"\f61e"}.ti-arrow-left-right:before{content:"\f04b"}.ti-arrow-left-square:before{content:"\ed9d"}.ti-arrow-left-tail:before{content:"\ed9e"}.ti-arrow-loop-left:before{content:"\ed9f"}.ti-arrow-loop-left-2:before{content:"\f04c"}.ti-arrow-loop-right:before{content:"\eda0"}.ti-arrow-loop-right-2:before{content:"\f04d"}.ti-arrow-merge:before{content:"\f04e"}.ti-arrow-merge-both:before{content:"\f23b"}.ti-arrow-merge-left:before{content:"\f23c"}.ti-arrow-merge-right:before{content:"\f23d"}.ti-arrow-move-down:before{content:"\f2ba"}.ti-arrow-move-left:before{content:"\f2bb"}.ti-arrow-move-right:before{content:"\f2bc"}.ti-arrow-move-up:before{content:"\f2bd"}.ti-arrow-narrow-down:before{content:"\ea1a"}.ti-arrow-narrow-left:before{content:"\ea1b"}.ti-arrow-narrow-right:before{content:"\ea1c"}.ti-arrow-narrow-up:before{content:"\ea1d"}.ti-arrow-ramp-left:before{content:"\ed3c"}.ti-arrow-ramp-left-2:before{content:"\f04f"}.ti-arrow-ramp-left-3:before{content:"\f050"}.ti-arrow-ramp-right:before{content:"\ed3d"}.ti-arrow-ramp-right-2:before{content:"\f051"}.ti-arrow-ramp-right-3:before{content:"\f052"}.ti-arrow-right:before{content:"\ea1f"}.ti-arrow-right-bar:before{content:"\eda1"}.ti-arrow-right-circle:before{content:"\ea1e"}.ti-arrow-right-rhombus:before{content:"\f61f"}.ti-arrow-right-square:before{content:"\eda2"}.ti-arrow-right-tail:before{content:"\eda3"}.ti-arrow-rotary-first-left:before{content:"\f053"}.ti-arrow-rotary-first-right:before{content:"\f054"}.ti-arrow-rotary-last-left:before{content:"\f055"}.ti-arrow-rotary-last-right:before{content:"\f056"}.ti-arrow-rotary-left:before{content:"\f057"}.ti-arrow-rotary-right:before{content:"\f058"}.ti-arrow-rotary-straight:before{content:"\f059"}.ti-arrow-roundabout-left:before{content:"\f22b"}.ti-arrow-roundabout-right:before{content:"\f22c"}.ti-arrow-sharp-turn-left:before{content:"\f05a"}.ti-arrow-sharp-turn-right:before{content:"\f05b"}.ti-arrow-up:before{content:"\ea25"}.ti-arrow-up-bar:before{content:"\eda4"}.ti-arrow-up-circle:before{content:"\ea20"}.ti-arrow-up-left:before{content:"\ea22"}.ti-arrow-up-left-circle:before{content:"\ea21"}.ti-arrow-up-rhombus:before{content:"\f620"}.ti-arrow-up-right:before{content:"\ea24"}.ti-arrow-up-right-circle:before{content:"\ea23"}.ti-arrow-up-square:before{content:"\eda6"}.ti-arrow-up-tail:before{content:"\eda7"}.ti-arrow-wave-left-down:before{content:"\eda8"}.ti-arrow-wave-left-up:before{content:"\eda9"}.ti-arrow-wave-right-down:before{content:"\edaa"}.ti-arrow-wave-right-up:before{content:"\edab"}.ti-arrow-zig-zag:before{content:"\f4a7"}.ti-arrows-cross:before{content:"\effe"}.ti-arrows-diagonal:before{content:"\ea27"}.ti-arrows-diagonal-2:before{content:"\ea26"}.ti-arrows-diagonal-minimize:before{content:"\ef39"}.ti-arrows-diagonal-minimize-2:before{content:"\ef38"}.ti-arrows-diff:before{content:"\f296"}.ti-arrows-double-ne-sw:before{content:"\edde"}.ti-arrows-double-nw-se:before{content:"\eddf"}.ti-arrows-double-se-nw:before{content:"\ede0"}.ti-arrows-double-sw-ne:before{content:"\ede1"}.ti-arrows-down:before{content:"\edad"}.ti-arrows-down-up:before{content:"\edac"}.ti-arrows-exchange:before{content:"\f1f4"}.ti-arrows-exchange-2:before{content:"\f1f3"}.ti-arrows-horizontal:before{content:"\eb59"}.ti-arrows-join:before{content:"\edaf"}.ti-arrows-join-2:before{content:"\edae"}.ti-arrows-left:before{content:"\edb1"}.ti-arrows-left-down:before{content:"\ee00"}.ti-arrows-left-right:before{content:"\edb0"}.ti-arrows-maximize:before{content:"\ea28"}.ti-arrows-minimize:before{content:"\ea29"}.ti-arrows-move:before{content:"\f22f"}.ti-arrows-move-horizontal:before{content:"\f22d"}.ti-arrows-move-vertical:before{content:"\f22e"}.ti-arrows-random:before{content:"\f095"}.ti-arrows-right:before{content:"\edb3"}.ti-arrows-right-down:before{content:"\ee01"}.ti-arrows-right-left:before{content:"\edb2"}.ti-arrows-shuffle:before{content:"\f000"}.ti-arrows-shuffle-2:before{content:"\efff"}.ti-arrows-sort:before{content:"\eb5a"}.ti-arrows-split:before{content:"\edb5"}.ti-arrows-split-2:before{content:"\edb4"}.ti-arrows-transfer-down:before{content:"\f2cc"}.ti-arrows-transfer-up:before{content:"\f2cd"}.ti-arrows-up:before{content:"\edb7"}.ti-arrows-up-down:before{content:"\edb6"}.ti-arrows-up-left:before{content:"\ee02"}.ti-arrows-up-right:before{content:"\ee03"}.ti-arrows-vertical:before{content:"\eb5b"}.ti-artboard:before{content:"\ea2a"}.ti-artboard-off:before{content:"\f0ae"}.ti-article:before{content:"\f1e2"}.ti-article-off:before{content:"\f3bf"}.ti-aspect-ratio:before{content:"\ed30"}.ti-aspect-ratio-off:before{content:"\f0af"}.ti-assembly:before{content:"\f24d"}.ti-assembly-off:before{content:"\f3c0"}.ti-asset:before{content:"\f1ce"}.ti-asterisk:before{content:"\efd5"}.ti-asterisk-simple:before{content:"\efd4"}.ti-at:before{content:"\ea2b"}.ti-at-off:before{content:"\f0b0"}.ti-atom:before{content:"\eb79"}.ti-atom-2:before{content:"\ebdf"}.ti-atom-off:before{content:"\f0f9"}.ti-augmented-reality:before{content:"\f023"}.ti-augmented-reality-2:before{content:"\f37e"}.ti-augmented-reality-off:before{content:"\f3c1"}.ti-award:before{content:"\ea2c"}.ti-award-off:before{content:"\f0fa"}.ti-axe:before{content:"\ef9f"}.ti-axis-x:before{content:"\ef45"}.ti-axis-y:before{content:"\ef46"}.ti-baby-bottle:before{content:"\f5d2"}.ti-baby-carriage:before{content:"\f05d"}.ti-backhoe:before{content:"\ed86"}.ti-backpack:before{content:"\ef47"}.ti-backpack-off:before{content:"\f3c2"}.ti-backspace:before{content:"\ea2d"}.ti-badge:before{content:"\efc2"}.ti-badge-3d:before{content:"\f555"}.ti-badge-4k:before{content:"\f556"}.ti-badge-8k:before{content:"\f557"}.ti-badge-ad:before{content:"\f558"}.ti-badge-ar:before{content:"\f559"}.ti-badge-cc:before{content:"\f55a"}.ti-badge-hd:before{content:"\f55b"}.ti-badge-off:before{content:"\f0fb"}.ti-badge-sd:before{content:"\f55c"}.ti-badge-tm:before{content:"\f55d"}.ti-badge-vo:before{content:"\f55e"}.ti-badge-vr:before{content:"\f55f"}.ti-badge-wc:before{content:"\f560"}.ti-badges:before{content:"\efc3"}.ti-badges-off:before{content:"\f0fc"}.ti-baguette:before{content:"\f3a5"}.ti-ball-american-football:before{content:"\ee04"}.ti-ball-american-football-off:before{content:"\f3c3"}.ti-ball-baseball:before{content:"\efa0"}.ti-ball-basketball:before{content:"\ec28"}.ti-ball-bowling:before{content:"\ec29"}.ti-ball-football:before{content:"\ee06"}.ti-ball-football-off:before{content:"\ee05"}.ti-ball-tennis:before{content:"\ec2a"}.ti-ball-volleyball:before{content:"\ec2b"}.ti-ballon:before{content:"\ef3a"}.ti-ballon-off:before{content:"\f0fd"}.ti-ballpen:before{content:"\f06e"}.ti-ballpen-off:before{content:"\f0b1"}.ti-ban:before{content:"\ea2e"}.ti-bandage:before{content:"\eb7a"}.ti-bandage-off:before{content:"\f3c4"}.ti-barbell:before{content:"\eff0"}.ti-barbell-off:before{content:"\f0b2"}.ti-barcode:before{content:"\ebc6"}.ti-barcode-off:before{content:"\f0b3"}.ti-barrel:before{content:"\f0b4"}.ti-barrel-off:before{content:"\f0fe"}.ti-barrier-block:before{content:"\f00e"}.ti-barrier-block-off:before{content:"\f0b5"}.ti-baseline:before{content:"\f024"}.ti-basket:before{content:"\ebe1"}.ti-basket-off:before{content:"\f0b6"}.ti-bat:before{content:"\f284"}.ti-bath:before{content:"\ef48"}.ti-bath-off:before{content:"\f0ff"}.ti-battery:before{content:"\ea34"}.ti-battery-1:before{content:"\ea2f"}.ti-battery-2:before{content:"\ea30"}.ti-battery-3:before{content:"\ea31"}.ti-battery-4:before{content:"\ea32"}.ti-battery-automotive:before{content:"\ee07"}.ti-battery-charging:before{content:"\ea33"}.ti-battery-charging-2:before{content:"\ef3b"}.ti-battery-eco:before{content:"\ef3c"}.ti-battery-off:before{content:"\ed1c"}.ti-beach:before{content:"\ef3d"}.ti-beach-off:before{content:"\f0b7"}.ti-bed:before{content:"\eb5c"}.ti-bed-off:before{content:"\f100"}.ti-beer:before{content:"\efa1"}.ti-beer-off:before{content:"\f101"}.ti-bell:before{content:"\ea35"}.ti-bell-minus:before{content:"\ede2"}.ti-bell-off:before{content:"\ece9"}.ti-bell-plus:before{content:"\ede3"}.ti-bell-ringing:before{content:"\ed07"}.ti-bell-ringing-2:before{content:"\ede4"}.ti-bell-school:before{content:"\f05e"}.ti-bell-x:before{content:"\ede5"}.ti-bell-z:before{content:"\eff1"}.ti-beta:before{content:"\f544"}.ti-bible:before{content:"\efc4"}.ti-bike:before{content:"\ea36"}.ti-bike-off:before{content:"\f0b8"}.ti-binary:before{content:"\ee08"}.ti-binary-off:before{content:"\f3c5"}.ti-binary-tree:before{content:"\f5d4"}.ti-binary-tree-2:before{content:"\f5d3"}.ti-biohazard:before{content:"\ecb8"}.ti-biohazard-off:before{content:"\f0b9"}.ti-blade:before{content:"\f4bd"}.ti-bleach:before{content:"\f2f3"}.ti-bleach-chlorine:before{content:"\f2f0"}.ti-bleach-no-chlorine:before{content:"\f2f1"}.ti-bleach-off:before{content:"\f2f2"}.ti-blockquote:before{content:"\ee09"}.ti-bluetooth:before{content:"\ea37"}.ti-bluetooth-connected:before{content:"\ecea"}.ti-bluetooth-off:before{content:"\eceb"}.ti-bluetooth-x:before{content:"\f081"}.ti-blur:before{content:"\ef8c"}.ti-blur-off:before{content:"\f3c6"}.ti-bmp:before{content:"\f3a6"}.ti-bold:before{content:"\eb7b"}.ti-bold-off:before{content:"\f0ba"}.ti-bolt:before{content:"\ea38"}.ti-bolt-off:before{content:"\ecec"}.ti-bomb:before{content:"\f59c"}.ti-bone:before{content:"\edb8"}.ti-bone-off:before{content:"\f0bb"}.ti-bong:before{content:"\f3a7"}.ti-bong-off:before{content:"\f3c7"}.ti-book:before{content:"\ea39"}.ti-book-2:before{content:"\efc5"}.ti-book-download:before{content:"\f070"}.ti-book-off:before{content:"\f0bc"}.ti-book-upload:before{content:"\f071"}.ti-bookmark:before{content:"\ea3a"}.ti-bookmark-off:before{content:"\eced"}.ti-bookmarks:before{content:"\ed08"}.ti-bookmarks-off:before{content:"\f0bd"}.ti-books:before{content:"\eff2"}.ti-books-off:before{content:"\f0be"}.ti-border-all:before{content:"\ea3b"}.ti-border-bottom:before{content:"\ea3c"}.ti-border-horizontal:before{content:"\ea3d"}.ti-border-inner:before{content:"\ea3e"}.ti-border-left:before{content:"\ea3f"}.ti-border-none:before{content:"\ea40"}.ti-border-outer:before{content:"\ea41"}.ti-border-radius:before{content:"\eb7c"}.ti-border-right:before{content:"\ea42"}.ti-border-style:before{content:"\ee0a"}.ti-border-style-2:before{content:"\ef22"}.ti-border-top:before{content:"\ea43"}.ti-border-vertical:before{content:"\ea44"}.ti-bottle:before{content:"\ef0b"}.ti-bottle-off:before{content:"\f3c8"}.ti-bounce-left:before{content:"\f59d"}.ti-bounce-right:before{content:"\f59e"}.ti-bow:before{content:"\f096"}.ti-bowl:before{content:"\f4fa"}.ti-box:before{content:"\ea45"}.ti-box-align-bottom:before{content:"\f2a8"}.ti-box-align-bottom-left:before{content:"\f2ce"}.ti-box-align-bottom-right:before{content:"\f2cf"}.ti-box-align-left:before{content:"\f2a9"}.ti-box-align-right:before{content:"\f2aa"}.ti-box-align-top:before{content:"\f2ab"}.ti-box-align-top-left:before{content:"\f2d0"}.ti-box-align-top-right:before{content:"\f2d1"}.ti-box-margin:before{content:"\ee0b"}.ti-box-model:before{content:"\ee0c"}.ti-box-model-2:before{content:"\ef23"}.ti-box-model-2-off:before{content:"\f3c9"}.ti-box-model-off:before{content:"\f3ca"}.ti-box-multiple:before{content:"\ee17"}.ti-box-multiple-0:before{content:"\ee0d"}.ti-box-multiple-1:before{content:"\ee0e"}.ti-box-multiple-2:before{content:"\ee0f"}.ti-box-multiple-3:before{content:"\ee10"}.ti-box-multiple-4:before{content:"\ee11"}.ti-box-multiple-5:before{content:"\ee12"}.ti-box-multiple-6:before{content:"\ee13"}.ti-box-multiple-7:before{content:"\ee14"}.ti-box-multiple-8:before{content:"\ee15"}.ti-box-multiple-9:before{content:"\ee16"}.ti-box-off:before{content:"\f102"}.ti-box-padding:before{content:"\ee18"}.ti-box-seam:before{content:"\f561"}.ti-braces:before{content:"\ebcc"}.ti-braces-off:before{content:"\f0bf"}.ti-brackets:before{content:"\ebcd"}.ti-brackets-contain:before{content:"\f1e5"}.ti-brackets-contain-end:before{content:"\f1e3"}.ti-brackets-contain-start:before{content:"\f1e4"}.ti-brackets-off:before{content:"\f0c0"}.ti-braile:before{content:"\f545"}.ti-brain:before{content:"\f59f"}.ti-brand-4chan:before{content:"\f494"}.ti-brand-abstract:before{content:"\f495"}.ti-brand-adobe:before{content:"\f0dc"}.ti-brand-adonis-js:before{content:"\f496"}.ti-brand-airbnb:before{content:"\ed68"}.ti-brand-airtable:before{content:"\ef6a"}.ti-brand-algolia:before{content:"\f390"}.ti-brand-alpine-js:before{content:"\f324"}.ti-brand-amazon:before{content:"\f230"}.ti-brand-amd:before{content:"\f653"}.ti-brand-amigo:before{content:"\f5f9"}.ti-brand-amongus:before{content:"\f205"}.ti-brand-android:before{content:"\ec16"}.ti-brand-angular:before{content:"\ef6b"}.ti-brand-ao3:before{content:"\f5e8"}.ti-brand-appgallery:before{content:"\f231"}.ti-brand-apple:before{content:"\ec17"}.ti-brand-apple-arcade:before{content:"\ed69"}.ti-brand-apple-podcast:before{content:"\f1e6"}.ti-brand-appstore:before{content:"\ed24"}.ti-brand-asana:before{content:"\edc5"}.ti-brand-backbone:before{content:"\f325"}.ti-brand-badoo:before{content:"\f206"}.ti-brand-baidu:before{content:"\f5e9"}.ti-brand-bandcamp:before{content:"\f207"}.ti-brand-bandlab:before{content:"\f5fa"}.ti-brand-beats:before{content:"\f208"}.ti-brand-behance:before{content:"\ec6e"}.ti-brand-binance:before{content:"\f5a0"}.ti-brand-bing:before{content:"\edc6"}.ti-brand-bitbucket:before{content:"\edc7"}.ti-brand-blackbery:before{content:"\f568"}.ti-brand-blender:before{content:"\f326"}.ti-brand-blogger:before{content:"\f35a"}.ti-brand-booking:before{content:"\edc8"}.ti-brand-bootstrap:before{content:"\ef3e"}.ti-brand-bulma:before{content:"\f327"}.ti-brand-bumble:before{content:"\f5fb"}.ti-brand-bunpo:before{content:"\f4cf"}.ti-brand-campaignmonitor:before{content:"\f328"}.ti-brand-carbon:before{content:"\f348"}.ti-brand-cashapp:before{content:"\f391"}.ti-brand-chrome:before{content:"\ec18"}.ti-brand-citymapper:before{content:"\f5fc"}.ti-brand-codecov:before{content:"\f329"}.ti-brand-codepen:before{content:"\ec6f"}.ti-brand-codesandbox:before{content:"\ed6a"}.ti-brand-cohost:before{content:"\f5d5"}.ti-brand-coinbase:before{content:"\f209"}.ti-brand-comedy-central:before{content:"\f217"}.ti-brand-coreos:before{content:"\f5fd"}.ti-brand-couchdb:before{content:"\f60f"}.ti-brand-couchsurfing:before{content:"\f392"}.ti-brand-cpp:before{content:"\f5fe"}.ti-brand-css3:before{content:"\ed6b"}.ti-brand-ctemplar:before{content:"\f4d0"}.ti-brand-cucumber:before{content:"\ef6c"}.ti-brand-cupra:before{content:"\f4d1"}.ti-brand-cypress:before{content:"\f333"}.ti-brand-d3:before{content:"\f24e"}.ti-brand-days-counter:before{content:"\f4d2"}.ti-brand-dcos:before{content:"\f32a"}.ti-brand-debian:before{content:"\ef57"}.ti-brand-deliveroo:before{content:"\f4d3"}.ti-brand-deno:before{content:"\f24f"}.ti-brand-denodo:before{content:"\f610"}.ti-brand-deviantart:before{content:"\ecfb"}.ti-brand-dingtalk:before{content:"\f5ea"}.ti-brand-discord:before{content:"\ece3"}.ti-brand-disney:before{content:"\f20a"}.ti-brand-disqus:before{content:"\edc9"}.ti-brand-django:before{content:"\f349"}.ti-brand-docker:before{content:"\edca"}.ti-brand-doctrine:before{content:"\ef6d"}.ti-brand-dolby-digital:before{content:"\f4d4"}.ti-brand-douban:before{content:"\f5ff"}.ti-brand-dribbble:before{content:"\ec19"}.ti-brand-drops:before{content:"\f4d5"}.ti-brand-drupal:before{content:"\f393"}.ti-brand-edge:before{content:"\ecfc"}.ti-brand-elastic:before{content:"\f611"}.ti-brand-ember:before{content:"\f497"}.ti-brand-envato:before{content:"\f394"}.ti-brand-etsy:before{content:"\f654"}.ti-brand-evernote:before{content:"\f600"}.ti-brand-facebook:before{content:"\ec1a"}.ti-brand-figma:before{content:"\ec93"}.ti-brand-finder:before{content:"\f218"}.ti-brand-firebase:before{content:"\ef6e"}.ti-brand-firefox:before{content:"\ecfd"}.ti-brand-flickr:before{content:"\ecfe"}.ti-brand-flightradar24:before{content:"\f4d6"}.ti-brand-flipboard:before{content:"\f20b"}.ti-brand-flutter:before{content:"\f395"}.ti-brand-fortnite:before{content:"\f260"}.ti-brand-foursquare:before{content:"\ecff"}.ti-brand-framer:before{content:"\ec1b"}.ti-brand-funimation:before{content:"\f655"}.ti-brand-gatsby:before{content:"\f396"}.ti-brand-git:before{content:"\ef6f"}.ti-brand-github:before{content:"\ec1c"}.ti-brand-github-copilot:before{content:"\f4a8"}.ti-brand-gitlab:before{content:"\ec1d"}.ti-brand-gmail:before{content:"\efa2"}.ti-brand-google:before{content:"\ec1f"}.ti-brand-google-analytics:before{content:"\edcb"}.ti-brand-google-big-query:before{content:"\f612"}.ti-brand-google-drive:before{content:"\ec1e"}.ti-brand-google-fit:before{content:"\f297"}.ti-brand-google-home:before{content:"\f601"}.ti-brand-google-one:before{content:"\f232"}.ti-brand-google-photos:before{content:"\f20c"}.ti-brand-google-play:before{content:"\ed25"}.ti-brand-google-podcasts:before{content:"\f656"}.ti-brand-grammarly:before{content:"\f32b"}.ti-brand-graphql:before{content:"\f32c"}.ti-brand-gravatar:before{content:"\edcc"}.ti-brand-grindr:before{content:"\f20d"}.ti-brand-guardian:before{content:"\f4fb"}.ti-brand-gumroad:before{content:"\f5d6"}.ti-brand-hbo:before{content:"\f657"}.ti-brand-headlessui:before{content:"\f32d"}.ti-brand-hipchat:before{content:"\edcd"}.ti-brand-html5:before{content:"\ed6c"}.ti-brand-inertia:before{content:"\f34a"}.ti-brand-instagram:before{content:"\ec20"}.ti-brand-intercom:before{content:"\f1cf"}.ti-brand-javascript:before{content:"\ef0c"}.ti-brand-kickstarter:before{content:"\edce"}.ti-brand-kotlin:before{content:"\ed6d"}.ti-brand-laravel:before{content:"\f34b"}.ti-brand-lastfm:before{content:"\f001"}.ti-brand-linkedin:before{content:"\ec8c"}.ti-brand-linktree:before{content:"\f1e7"}.ti-brand-linqpad:before{content:"\f562"}.ti-brand-loom:before{content:"\ef70"}.ti-brand-mailgun:before{content:"\f32e"}.ti-brand-mantine:before{content:"\f32f"}.ti-brand-mastercard:before{content:"\ef49"}.ti-brand-mastodon:before{content:"\f250"}.ti-brand-matrix:before{content:"\f5eb"}.ti-brand-mcdonalds:before{content:"\f251"}.ti-brand-medium:before{content:"\ec70"}.ti-brand-mercedes:before{content:"\f072"}.ti-brand-messenger:before{content:"\ec71"}.ti-brand-meta:before{content:"\efb0"}.ti-brand-miniprogram:before{content:"\f602"}.ti-brand-mixpanel:before{content:"\f397"}.ti-brand-monday:before{content:"\f219"}.ti-brand-mongodb:before{content:"\f613"}.ti-brand-my-oppo:before{content:"\f4d7"}.ti-brand-mysql:before{content:"\f614"}.ti-brand-national-geographic:before{content:"\f603"}.ti-brand-nem:before{content:"\f5a1"}.ti-brand-netbeans:before{content:"\ef71"}.ti-brand-netease-music:before{content:"\f604"}.ti-brand-netflix:before{content:"\edcf"}.ti-brand-nexo:before{content:"\f5a2"}.ti-brand-nextcloud:before{content:"\f4d8"}.ti-brand-nextjs:before{content:"\f0dd"}.ti-brand-nord-vpn:before{content:"\f37f"}.ti-brand-notion:before{content:"\ef7b"}.ti-brand-npm:before{content:"\f569"}.ti-brand-nuxt:before{content:"\f0de"}.ti-brand-nytimes:before{content:"\ef8d"}.ti-brand-office:before{content:"\f398"}.ti-brand-ok-ru:before{content:"\f399"}.ti-brand-onedrive:before{content:"\f5d7"}.ti-brand-onlyfans:before{content:"\f605"}.ti-brand-open-source:before{content:"\edd0"}.ti-brand-openvpn:before{content:"\f39a"}.ti-brand-opera:before{content:"\ec21"}.ti-brand-pagekit:before{content:"\edd1"}.ti-brand-patreon:before{content:"\edd2"}.ti-brand-paypal:before{content:"\ec22"}.ti-brand-paypay:before{content:"\f5ec"}.ti-brand-peanut:before{content:"\f39b"}.ti-brand-pepsi:before{content:"\f261"}.ti-brand-php:before{content:"\ef72"}.ti-brand-picsart:before{content:"\f4d9"}.ti-brand-pinterest:before{content:"\ec8d"}.ti-brand-pocket:before{content:"\ed00"}.ti-brand-polymer:before{content:"\f498"}.ti-brand-powershell:before{content:"\f5ed"}.ti-brand-prisma:before{content:"\f499"}.ti-brand-producthunt:before{content:"\edd3"}.ti-brand-pushbullet:before{content:"\f330"}.ti-brand-pushover:before{content:"\f20e"}.ti-brand-python:before{content:"\ed01"}.ti-brand-qq:before{content:"\f606"}.ti-brand-react:before{content:"\f34c"}.ti-brand-react-native:before{content:"\ef73"}.ti-brand-reason:before{content:"\f49a"}.ti-brand-reddit:before{content:"\ec8e"}.ti-brand-redhat:before{content:"\f331"}.ti-brand-redux:before{content:"\f3a8"}.ti-brand-revolut:before{content:"\f4da"}.ti-brand-safari:before{content:"\ec23"}.ti-brand-samsungpass:before{content:"\f4db"}.ti-brand-sass:before{content:"\edd4"}.ti-brand-sentry:before{content:"\edd5"}.ti-brand-sharik:before{content:"\f4dc"}.ti-brand-shazam:before{content:"\edd6"}.ti-brand-shopee:before{content:"\f252"}.ti-brand-sketch:before{content:"\ec24"}.ti-brand-skype:before{content:"\ed02"}.ti-brand-slack:before{content:"\ec72"}.ti-brand-snapchat:before{content:"\ec25"}.ti-brand-snapseed:before{content:"\f253"}.ti-brand-snowflake:before{content:"\f615"}.ti-brand-socket-io:before{content:"\f49b"}.ti-brand-solidjs:before{content:"\f5ee"}.ti-brand-soundcloud:before{content:"\ed6e"}.ti-brand-spacehey:before{content:"\f4fc"}.ti-brand-spotify:before{content:"\ed03"}.ti-brand-stackoverflow:before{content:"\ef58"}.ti-brand-stackshare:before{content:"\f607"}.ti-brand-steam:before{content:"\ed6f"}.ti-brand-storybook:before{content:"\f332"}.ti-brand-storytel:before{content:"\f608"}.ti-brand-strava:before{content:"\f254"}.ti-brand-stripe:before{content:"\edd7"}.ti-brand-sublime-text:before{content:"\ef74"}.ti-brand-superhuman:before{content:"\f50c"}.ti-brand-supernova:before{content:"\f49c"}.ti-brand-surfshark:before{content:"\f255"}.ti-brand-svelte:before{content:"\f0df"}.ti-brand-symfony:before{content:"\f616"}.ti-brand-tabler:before{content:"\ec8f"}.ti-brand-tailwind:before{content:"\eca1"}.ti-brand-taobao:before{content:"\f5ef"}.ti-brand-ted:before{content:"\f658"}.ti-brand-telegram:before{content:"\ec26"}.ti-brand-tether:before{content:"\f5a3"}.ti-brand-threejs:before{content:"\f5f0"}.ti-brand-tidal:before{content:"\ed70"}.ti-brand-tiktok:before{content:"\ec73"}.ti-brand-tinder:before{content:"\ed71"}.ti-brand-topbuzz:before{content:"\f50d"}.ti-brand-torchain:before{content:"\f5a4"}.ti-brand-toyota:before{content:"\f262"}.ti-brand-trello:before{content:"\f39d"}.ti-brand-tripadvisor:before{content:"\f002"}.ti-brand-tumblr:before{content:"\ed04"}.ti-brand-twilio:before{content:"\f617"}.ti-brand-twitch:before{content:"\ed05"}.ti-brand-twitter:before{content:"\ec27"}.ti-brand-typescript:before{content:"\f5f1"}.ti-brand-uber:before{content:"\ef75"}.ti-brand-ubuntu:before{content:"\ef59"}.ti-brand-unity:before{content:"\f49d"}.ti-brand-unsplash:before{content:"\edd8"}.ti-brand-upwork:before{content:"\f39e"}.ti-brand-valorant:before{content:"\f39f"}.ti-brand-vercel:before{content:"\ef24"}.ti-brand-vimeo:before{content:"\ed06"}.ti-brand-vinted:before{content:"\f20f"}.ti-brand-visa:before{content:"\f380"}.ti-brand-visual-studio:before{content:"\ef76"}.ti-brand-vite:before{content:"\f5f2"}.ti-brand-vivaldi:before{content:"\f210"}.ti-brand-vk:before{content:"\ed72"}.ti-brand-volkswagen:before{content:"\f50e"}.ti-brand-vsco:before{content:"\f334"}.ti-brand-vscode:before{content:"\f3a0"}.ti-brand-vue:before{content:"\f0e0"}.ti-brand-walmart:before{content:"\f211"}.ti-brand-waze:before{content:"\f5d8"}.ti-brand-webflow:before{content:"\f2d2"}.ti-brand-wechat:before{content:"\f5f3"}.ti-brand-weibo:before{content:"\f609"}.ti-brand-whatsapp:before{content:"\ec74"}.ti-brand-windows:before{content:"\ecd8"}.ti-brand-windy:before{content:"\f4dd"}.ti-brand-wish:before{content:"\f212"}.ti-brand-wix:before{content:"\f3a1"}.ti-brand-wordpress:before{content:"\f2d3"}.ti-brand-xbox:before{content:"\f298"}.ti-brand-xing:before{content:"\f21a"}.ti-brand-yahoo:before{content:"\ed73"}.ti-brand-yatse:before{content:"\f213"}.ti-brand-ycombinator:before{content:"\edd9"}.ti-brand-youtube:before{content:"\ec90"}.ti-brand-youtube-kids:before{content:"\f214"}.ti-brand-zalando:before{content:"\f49e"}.ti-brand-zapier:before{content:"\f49f"}.ti-brand-zeit:before{content:"\f335"}.ti-brand-zhihu:before{content:"\f60a"}.ti-brand-zoom:before{content:"\f215"}.ti-brand-zulip:before{content:"\f4de"}.ti-brand-zwift:before{content:"\f216"}.ti-bread:before{content:"\efa3"}.ti-bread-off:before{content:"\f3cb"}.ti-briefcase:before{content:"\ea46"}.ti-briefcase-off:before{content:"\f3cc"}.ti-brightness:before{content:"\eb7f"}.ti-brightness-2:before{content:"\ee19"}.ti-brightness-down:before{content:"\eb7d"}.ti-brightness-half:before{content:"\ee1a"}.ti-brightness-off:before{content:"\f3cd"}.ti-brightness-up:before{content:"\eb7e"}.ti-broadcast:before{content:"\f1e9"}.ti-broadcast-off:before{content:"\f1e8"}.ti-browser:before{content:"\ebb7"}.ti-browser-check:before{content:"\efd6"}.ti-browser-off:before{content:"\f0c1"}.ti-browser-plus:before{content:"\efd7"}.ti-browser-x:before{content:"\efd8"}.ti-brush:before{content:"\ebb8"}.ti-brush-off:before{content:"\f0c2"}.ti-bucket:before{content:"\ea47"}.ti-bucket-droplet:before{content:"\f56a"}.ti-bucket-off:before{content:"\f103"}.ti-bug:before{content:"\ea48"}.ti-bug-off:before{content:"\f0c3"}.ti-building:before{content:"\ea4f"}.ti-building-arch:before{content:"\ea49"}.ti-building-bank:before{content:"\ebe2"}.ti-building-bridge:before{content:"\ea4b"}.ti-building-bridge-2:before{content:"\ea4a"}.ti-building-broadcast-tower:before{content:"\f4be"}.ti-building-carousel:before{content:"\ed87"}.ti-building-castle:before{content:"\ed88"}.ti-building-church:before{content:"\ea4c"}.ti-building-circus:before{content:"\f4bf"}.ti-building-community:before{content:"\ebf6"}.ti-building-cottage:before{content:"\ee1b"}.ti-building-estate:before{content:"\f5a5"}.ti-building-factory:before{content:"\ee1c"}.ti-building-factory-2:before{content:"\f082"}.ti-building-fortress:before{content:"\ed89"}.ti-building-hospital:before{content:"\ea4d"}.ti-building-lighthouse:before{content:"\ed8a"}.ti-building-monument:before{content:"\ed26"}.ti-building-pavilon:before{content:"\ebf7"}.ti-building-skyscraper:before{content:"\ec39"}.ti-building-stadium:before{content:"\f641"}.ti-building-store:before{content:"\ea4e"}.ti-building-tunnel:before{content:"\f5a6"}.ti-building-warehouse:before{content:"\ebe3"}.ti-building-wind-turbine:before{content:"\f4c0"}.ti-bulb:before{content:"\ea51"}.ti-bulb-off:before{content:"\ea50"}.ti-bulldozer:before{content:"\ee1d"}.ti-bus:before{content:"\ebe4"}.ti-bus-off:before{content:"\f3ce"}.ti-bus-stop:before{content:"\f2d4"}.ti-businessplan:before{content:"\ee1e"}.ti-butterfly:before{content:"\efd9"}.ti-c-sharp:before{content:"\f003"}.ti-cactus:before{content:"\f21b"}.ti-cactus-off:before{content:"\f3cf"}.ti-cake:before{content:"\f00f"}.ti-cake-off:before{content:"\f104"}.ti-calculator:before{content:"\eb80"}.ti-calculator-off:before{content:"\f0c4"}.ti-calendar:before{content:"\ea53"}.ti-calendar-due:before{content:"\f621"}.ti-calendar-event:before{content:"\ea52"}.ti-calendar-minus:before{content:"\ebb9"}.ti-calendar-off:before{content:"\ee1f"}.ti-calendar-plus:before{content:"\ebba"}.ti-calendar-stats:before{content:"\ee20"}.ti-calendar-time:before{content:"\ee21"}.ti-camera:before{content:"\ea54"}.ti-camera-minus:before{content:"\ec3a"}.ti-camera-off:before{content:"\ecee"}.ti-camera-plus:before{content:"\ec3b"}.ti-camera-rotate:before{content:"\ee22"}.ti-camera-selfie:before{content:"\ee23"}.ti-campfire:before{content:"\f5a7"}.ti-candle:before{content:"\efc6"}.ti-candy:before{content:"\ef0d"}.ti-candy-off:before{content:"\f0c5"}.ti-cane:before{content:"\f50f"}.ti-cannabis:before{content:"\f4c1"}.ti-capture:before{content:"\ec3c"}.ti-capture-off:before{content:"\f0c6"}.ti-car:before{content:"\ebbb"}.ti-car-crane:before{content:"\ef25"}.ti-car-crash:before{content:"\efa4"}.ti-car-off:before{content:"\f0c7"}.ti-car-turbine:before{content:"\f4fd"}.ti-caravan:before{content:"\ec7c"}.ti-cardboards:before{content:"\ed74"}.ti-cardboards-off:before{content:"\f0c8"}.ti-cards:before{content:"\f510"}.ti-caret-down:before{content:"\eb5d"}.ti-caret-left:before{content:"\eb5e"}.ti-caret-right:before{content:"\eb5f"}.ti-caret-up:before{content:"\eb60"}.ti-carousel-horizontal:before{content:"\f659"}.ti-carousel-vertical:before{content:"\f65a"}.ti-carrot:before{content:"\f21c"}.ti-carrot-off:before{content:"\f3d0"}.ti-cash:before{content:"\ea55"}.ti-cash-banknote:before{content:"\ee25"}.ti-cash-banknote-off:before{content:"\ee24"}.ti-cash-off:before{content:"\f105"}.ti-cast:before{content:"\ea56"}.ti-cast-off:before{content:"\f0c9"}.ti-cat:before{content:"\f65b"}.ti-category:before{content:"\f1f6"}.ti-category-2:before{content:"\f1f5"}.ti-ce:before{content:"\ed75"}.ti-ce-off:before{content:"\f0ca"}.ti-cell:before{content:"\f05f"}.ti-cell-signal-1:before{content:"\f083"}.ti-cell-signal-2:before{content:"\f084"}.ti-cell-signal-3:before{content:"\f085"}.ti-cell-signal-4:before{content:"\f086"}.ti-cell-signal-5:before{content:"\f087"}.ti-cell-signal-off:before{content:"\f088"}.ti-certificate:before{content:"\ed76"}.ti-certificate-2:before{content:"\f073"}.ti-certificate-2-off:before{content:"\f0cb"}.ti-certificate-off:before{content:"\f0cc"}.ti-chair-director:before{content:"\f2d5"}.ti-chalkboard:before{content:"\f34d"}.ti-chalkboard-off:before{content:"\f3d1"}.ti-charging-pile:before{content:"\ee26"}.ti-chart-arcs:before{content:"\ee28"}.ti-chart-arcs-3:before{content:"\ee27"}.ti-chart-area:before{content:"\ea58"}.ti-chart-area-line:before{content:"\ea57"}.ti-chart-arrows:before{content:"\ee2a"}.ti-chart-arrows-vertical:before{content:"\ee29"}.ti-chart-bar:before{content:"\ea59"}.ti-chart-bar-off:before{content:"\f3d2"}.ti-chart-bubble:before{content:"\ec75"}.ti-chart-candle:before{content:"\ea5a"}.ti-chart-circles:before{content:"\ee2b"}.ti-chart-donut:before{content:"\ea5b"}.ti-chart-donut-2:before{content:"\ee2c"}.ti-chart-donut-3:before{content:"\ee2d"}.ti-chart-donut-4:before{content:"\ee2e"}.ti-chart-dots:before{content:"\ee2f"}.ti-chart-dots-2:before{content:"\f097"}.ti-chart-dots-3:before{content:"\f098"}.ti-chart-grid-dots:before{content:"\f4c2"}.ti-chart-histogram:before{content:"\f65c"}.ti-chart-infographic:before{content:"\ee30"}.ti-chart-line:before{content:"\ea5c"}.ti-chart-pie:before{content:"\ea5d"}.ti-chart-pie-2:before{content:"\ee31"}.ti-chart-pie-3:before{content:"\ee32"}.ti-chart-pie-4:before{content:"\ee33"}.ti-chart-pie-off:before{content:"\f3d3"}.ti-chart-ppf:before{content:"\f618"}.ti-chart-radar:before{content:"\ed77"}.ti-chart-sankey:before{content:"\f619"}.ti-chart-treemap:before{content:"\f381"}.ti-check:before{content:"\ea5e"}.ti-checkbox:before{content:"\eba6"}.ti-checklist:before{content:"\f074"}.ti-checks:before{content:"\ebaa"}.ti-checkup-list:before{content:"\ef5a"}.ti-cheese:before{content:"\ef26"}.ti-chef-hat:before{content:"\f21d"}.ti-chef-hat-off:before{content:"\f3d4"}.ti-cherry:before{content:"\f511"}.ti-chess:before{content:"\f382"}.ti-chess-bishop:before{content:"\f56b"}.ti-chess-king:before{content:"\f56c"}.ti-chess-knight:before{content:"\f56d"}.ti-chess-queen:before{content:"\f56e"}.ti-chess-rook:before{content:"\f56f"}.ti-chevron-down:before{content:"\ea5f"}.ti-chevron-down-left:before{content:"\ed09"}.ti-chevron-down-right:before{content:"\ed0a"}.ti-chevron-left:before{content:"\ea60"}.ti-chevron-right:before{content:"\ea61"}.ti-chevron-up:before{content:"\ea62"}.ti-chevron-up-left:before{content:"\ed0b"}.ti-chevron-up-right:before{content:"\ed0c"}.ti-chevrons-down:before{content:"\ea63"}.ti-chevrons-down-left:before{content:"\ed0d"}.ti-chevrons-down-right:before{content:"\ed0e"}.ti-chevrons-left:before{content:"\ea64"}.ti-chevrons-right:before{content:"\ea65"}.ti-chevrons-up:before{content:"\ea66"}.ti-chevrons-up-left:before{content:"\ed0f"}.ti-chevrons-up-right:before{content:"\ed10"}.ti-chisel:before{content:"\f383"}.ti-christmas-tree:before{content:"\ed78"}.ti-christmas-tree-off:before{content:"\f3d5"}.ti-circle:before{content:"\ea6b"}.ti-circle-caret-down:before{content:"\f4a9"}.ti-circle-caret-left:before{content:"\f4aa"}.ti-circle-caret-right:before{content:"\f4ab"}.ti-circle-caret-up:before{content:"\f4ac"}.ti-circle-check:before{content:"\ea67"}.ti-circle-chevron-down:before{content:"\f622"}.ti-circle-chevron-left:before{content:"\f623"}.ti-circle-chevron-right:before{content:"\f624"}.ti-circle-chevron-up:before{content:"\f625"}.ti-circle-chevrons-down:before{content:"\f642"}.ti-circle-chevrons-left:before{content:"\f643"}.ti-circle-chevrons-right:before{content:"\f644"}.ti-circle-chevrons-up:before{content:"\f645"}.ti-circle-dashed:before{content:"\ed27"}.ti-circle-dot:before{content:"\efb1"}.ti-circle-dotted:before{content:"\ed28"}.ti-circle-half:before{content:"\ee3f"}.ti-circle-half-2:before{content:"\eff3"}.ti-circle-half-vertical:before{content:"\ee3e"}.ti-circle-key:before{content:"\f633"}.ti-circle-letter-a:before{content:"\f441"}.ti-circle-letter-b:before{content:"\f442"}.ti-circle-letter-c:before{content:"\f443"}.ti-circle-letter-d:before{content:"\f444"}.ti-circle-letter-e:before{content:"\f445"}.ti-circle-letter-f:before{content:"\f446"}.ti-circle-letter-g:before{content:"\f447"}.ti-circle-letter-h:before{content:"\f448"}.ti-circle-letter-i:before{content:"\f449"}.ti-circle-letter-j:before{content:"\f44a"}.ti-circle-letter-k:before{content:"\f44b"}.ti-circle-letter-l:before{content:"\f44c"}.ti-circle-letter-m:before{content:"\f44d"}.ti-circle-letter-n:before{content:"\f44e"}.ti-circle-letter-o:before{content:"\f44f"}.ti-circle-letter-p:before{content:"\f450"}.ti-circle-letter-q:before{content:"\f451"}.ti-circle-letter-r:before{content:"\f452"}.ti-circle-letter-s:before{content:"\f453"}.ti-circle-letter-t:before{content:"\f454"}.ti-circle-letter-u:before{content:"\f455"}.ti-circle-letter-v:before{content:"\f4ad"}.ti-circle-letter-w:before{content:"\f456"}.ti-circle-letter-x:before{content:"\f4ae"}.ti-circle-letter-y:before{content:"\f457"}.ti-circle-letter-z:before{content:"\f458"}.ti-circle-minus:before{content:"\ea68"}.ti-circle-number-0:before{content:"\ee34"}.ti-circle-number-1:before{content:"\ee35"}.ti-circle-number-2:before{content:"\ee36"}.ti-circle-number-3:before{content:"\ee37"}.ti-circle-number-4:before{content:"\ee38"}.ti-circle-number-5:before{content:"\ee39"}.ti-circle-number-6:before{content:"\ee3a"}.ti-circle-number-7:before{content:"\ee3b"}.ti-circle-number-8:before{content:"\ee3c"}.ti-circle-number-9:before{content:"\ee3d"}.ti-circle-off:before{content:"\ee40"}.ti-circle-plus:before{content:"\ea69"}.ti-circle-rectangle:before{content:"\f010"}.ti-circle-rectangle-off:before{content:"\f0cd"}.ti-circle-square:before{content:"\ece4"}.ti-circle-triangle:before{content:"\f011"}.ti-circle-x:before{content:"\ea6a"}.ti-circles:before{content:"\ece5"}.ti-circles-relation:before{content:"\f4c3"}.ti-circuit-ammeter:before{content:"\f271"}.ti-circuit-battery:before{content:"\f272"}.ti-circuit-bulb:before{content:"\f273"}.ti-circuit-capacitor:before{content:"\f275"}.ti-circuit-capacitor-polarized:before{content:"\f274"}.ti-circuit-cell:before{content:"\f277"}.ti-circuit-cell-plus:before{content:"\f276"}.ti-circuit-changeover:before{content:"\f278"}.ti-circuit-diode:before{content:"\f27a"}.ti-circuit-diode-zener:before{content:"\f279"}.ti-circuit-ground:before{content:"\f27c"}.ti-circuit-ground-digital:before{content:"\f27b"}.ti-circuit-inductor:before{content:"\f27d"}.ti-circuit-motor:before{content:"\f27e"}.ti-circuit-pushbutton:before{content:"\f27f"}.ti-circuit-resistor:before{content:"\f280"}.ti-circuit-switch-closed:before{content:"\f281"}.ti-circuit-switch-open:before{content:"\f282"}.ti-circuit-voltmeter:before{content:"\f283"}.ti-clear-all:before{content:"\ee41"}.ti-clear-formatting:before{content:"\ebe5"}.ti-click:before{content:"\ebbc"}.ti-clipboard:before{content:"\ea6f"}.ti-clipboard-check:before{content:"\ea6c"}.ti-clipboard-copy:before{content:"\f299"}.ti-clipboard-data:before{content:"\f563"}.ti-clipboard-heart:before{content:"\f34e"}.ti-clipboard-list:before{content:"\ea6d"}.ti-clipboard-off:before{content:"\f0ce"}.ti-clipboard-plus:before{content:"\efb2"}.ti-clipboard-text:before{content:"\f089"}.ti-clipboard-typography:before{content:"\f34f"}.ti-clipboard-x:before{content:"\ea6e"}.ti-clock:before{content:"\ea70"}.ti-clock-2:before{content:"\f099"}.ti-clock-cancel:before{content:"\f546"}.ti-clock-edit:before{content:"\f547"}.ti-clock-hour-1:before{content:"\f313"}.ti-clock-hour-10:before{content:"\f314"}.ti-clock-hour-11:before{content:"\f315"}.ti-clock-hour-12:before{content:"\f316"}.ti-clock-hour-2:before{content:"\f317"}.ti-clock-hour-3:before{content:"\f318"}.ti-clock-hour-4:before{content:"\f319"}.ti-clock-hour-5:before{content:"\f31a"}.ti-clock-hour-6:before{content:"\f31b"}.ti-clock-hour-7:before{content:"\f31c"}.ti-clock-hour-8:before{content:"\f31d"}.ti-clock-hour-9:before{content:"\f31e"}.ti-clock-off:before{content:"\f0cf"}.ti-clock-pause:before{content:"\f548"}.ti-clock-play:before{content:"\f549"}.ti-clock-record:before{content:"\f54a"}.ti-clock-stop:before{content:"\f54b"}.ti-clothes-rack:before{content:"\f285"}.ti-clothes-rack-off:before{content:"\f3d6"}.ti-cloud:before{content:"\ea76"}.ti-cloud-computing:before{content:"\f1d0"}.ti-cloud-data-connection:before{content:"\f1d1"}.ti-cloud-download:before{content:"\ea71"}.ti-cloud-fog:before{content:"\ecd9"}.ti-cloud-lock:before{content:"\efdb"}.ti-cloud-lock-open:before{content:"\efda"}.ti-cloud-off:before{content:"\ed3e"}.ti-cloud-rain:before{content:"\ea72"}.ti-cloud-snow:before{content:"\ea73"}.ti-cloud-storm:before{content:"\ea74"}.ti-cloud-upload:before{content:"\ea75"}.ti-clover:before{content:"\f1ea"}.ti-clover-2:before{content:"\f21e"}.ti-clubs:before{content:"\eff4"}.ti-code:before{content:"\ea77"}.ti-code-asterix:before{content:"\f312"}.ti-code-circle:before{content:"\f4ff"}.ti-code-circle-2:before{content:"\f4fe"}.ti-code-dots:before{content:"\f61a"}.ti-code-minus:before{content:"\ee42"}.ti-code-off:before{content:"\f0d0"}.ti-code-plus:before{content:"\ee43"}.ti-coffee:before{content:"\ef0e"}.ti-coffee-off:before{content:"\f106"}.ti-coffin:before{content:"\f579"}.ti-coin:before{content:"\eb82"}.ti-coin-bitcoin:before{content:"\f2be"}.ti-coin-euro:before{content:"\f2bf"}.ti-coin-monero:before{content:"\f4a0"}.ti-coin-off:before{content:"\f0d1"}.ti-coin-pound:before{content:"\f2c0"}.ti-coin-rupee:before{content:"\f2c1"}.ti-coin-yen:before{content:"\f2c2"}.ti-coin-yuan:before{content:"\f2c3"}.ti-coins:before{content:"\f65d"}.ti-color-filter:before{content:"\f5a8"}.ti-color-picker:before{content:"\ebe6"}.ti-color-picker-off:before{content:"\f0d2"}.ti-color-swatch:before{content:"\eb61"}.ti-color-swatch-off:before{content:"\f0d3"}.ti-column-insert-left:before{content:"\ee44"}.ti-column-insert-right:before{content:"\ee45"}.ti-columns:before{content:"\eb83"}.ti-columns-off:before{content:"\f0d4"}.ti-comet:before{content:"\ec76"}.ti-command:before{content:"\ea78"}.ti-command-off:before{content:"\f3d7"}.ti-compass:before{content:"\ea79"}.ti-compass-off:before{content:"\f0d5"}.ti-components:before{content:"\efa5"}.ti-components-off:before{content:"\f0d6"}.ti-cone:before{content:"\efdd"}.ti-cone-2:before{content:"\efdc"}.ti-cone-off:before{content:"\f3d8"}.ti-confetti:before{content:"\ee46"}.ti-confetti-off:before{content:"\f3d9"}.ti-confucius:before{content:"\f58a"}.ti-container:before{content:"\ee47"}.ti-container-off:before{content:"\f107"}.ti-contrast:before{content:"\ec4e"}.ti-contrast-2:before{content:"\efc7"}.ti-contrast-2-off:before{content:"\f3da"}.ti-contrast-off:before{content:"\f3db"}.ti-cooker:before{content:"\f57a"}.ti-cookie:before{content:"\ef0f"}.ti-cookie-man:before{content:"\f4c4"}.ti-cookie-off:before{content:"\f0d7"}.ti-copy:before{content:"\ea7a"}.ti-copy-off:before{content:"\f0d8"}.ti-copyleft:before{content:"\ec3d"}.ti-copyleft-off:before{content:"\f0d9"}.ti-copyright:before{content:"\ea7b"}.ti-copyright-off:before{content:"\f0da"}.ti-corner-down-left:before{content:"\ea7c"}.ti-corner-down-left-double:before{content:"\ee48"}.ti-corner-down-right:before{content:"\ea7d"}.ti-corner-down-right-double:before{content:"\ee49"}.ti-corner-left-down:before{content:"\ea7e"}.ti-corner-left-down-double:before{content:"\ee4a"}.ti-corner-left-up:before{content:"\ea7f"}.ti-corner-left-up-double:before{content:"\ee4b"}.ti-corner-right-down:before{content:"\ea80"}.ti-corner-right-down-double:before{content:"\ee4c"}.ti-corner-right-up:before{content:"\ea81"}.ti-corner-right-up-double:before{content:"\ee4d"}.ti-corner-up-left:before{content:"\ea82"}.ti-corner-up-left-double:before{content:"\ee4e"}.ti-corner-up-right:before{content:"\ea83"}.ti-corner-up-right-double:before{content:"\ee4f"}.ti-cpu:before{content:"\ef8e"}.ti-cpu-2:before{content:"\f075"}.ti-cpu-off:before{content:"\f108"}.ti-crane:before{content:"\ef27"}.ti-crane-off:before{content:"\f109"}.ti-creative-commons:before{content:"\efb3"}.ti-creative-commons-by:before{content:"\f21f"}.ti-creative-commons-nc:before{content:"\f220"}.ti-creative-commons-nd:before{content:"\f221"}.ti-creative-commons-off:before{content:"\f10a"}.ti-creative-commons-sa:before{content:"\f222"}.ti-creative-commons-zero:before{content:"\f223"}.ti-credit-card:before{content:"\ea84"}.ti-credit-card-off:before{content:"\ed11"}.ti-cricket:before{content:"\f09a"}.ti-crop:before{content:"\ea85"}.ti-cross:before{content:"\ef8f"}.ti-cross-off:before{content:"\f10b"}.ti-crosshair:before{content:"\ec3e"}.ti-crown:before{content:"\ed12"}.ti-crown-off:before{content:"\ee50"}.ti-crutches:before{content:"\ef5b"}.ti-crutches-off:before{content:"\f10c"}.ti-crystal-ball:before{content:"\f57b"}.ti-cube-send:before{content:"\f61b"}.ti-cube-unfolded:before{content:"\f61c"}.ti-cup:before{content:"\ef28"}.ti-cup-off:before{content:"\f10d"}.ti-curling:before{content:"\efc8"}.ti-curly-loop:before{content:"\ecda"}.ti-currency:before{content:"\efa6"}.ti-currency-afghani:before{content:"\f65e"}.ti-currency-bahraini:before{content:"\ee51"}.ti-currency-baht:before{content:"\f08a"}.ti-currency-bitcoin:before{content:"\ebab"}.ti-currency-cent:before{content:"\ee53"}.ti-currency-dinar:before{content:"\ee54"}.ti-currency-dirham:before{content:"\ee55"}.ti-currency-dogecoin:before{content:"\ef4b"}.ti-currency-dollar:before{content:"\eb84"}.ti-currency-dollar-australian:before{content:"\ee56"}.ti-currency-dollar-brunei:before{content:"\f36c"}.ti-currency-dollar-canadian:before{content:"\ee57"}.ti-currency-dollar-guyanese:before{content:"\f36d"}.ti-currency-dollar-off:before{content:"\f3dc"}.ti-currency-dollar-singapore:before{content:"\ee58"}.ti-currency-dollar-zimbabwean:before{content:"\f36e"}.ti-currency-dong:before{content:"\f36f"}.ti-currency-dram:before{content:"\f370"}.ti-currency-ethereum:before{content:"\ee59"}.ti-currency-euro:before{content:"\eb85"}.ti-currency-euro-off:before{content:"\f3dd"}.ti-currency-forint:before{content:"\ee5a"}.ti-currency-frank:before{content:"\ee5b"}.ti-currency-guarani:before{content:"\f371"}.ti-currency-hryvnia:before{content:"\f372"}.ti-currency-kip:before{content:"\f373"}.ti-currency-krone-czech:before{content:"\ee5c"}.ti-currency-krone-danish:before{content:"\ee5d"}.ti-currency-krone-swedish:before{content:"\ee5e"}.ti-currency-lari:before{content:"\f374"}.ti-currency-leu:before{content:"\ee5f"}.ti-currency-lira:before{content:"\ee60"}.ti-currency-litecoin:before{content:"\ee61"}.ti-currency-lyd:before{content:"\f375"}.ti-currency-manat:before{content:"\f376"}.ti-currency-monero:before{content:"\f377"}.ti-currency-naira:before{content:"\ee62"}.ti-currency-off:before{content:"\f3de"}.ti-currency-paanga:before{content:"\f378"}.ti-currency-peso:before{content:"\f65f"}.ti-currency-pound:before{content:"\ebac"}.ti-currency-pound-off:before{content:"\f3df"}.ti-currency-quetzal:before{content:"\f379"}.ti-currency-real:before{content:"\ee63"}.ti-currency-renminbi:before{content:"\ee64"}.ti-currency-ripple:before{content:"\ee65"}.ti-currency-riyal:before{content:"\ee66"}.ti-currency-rubel:before{content:"\ee67"}.ti-currency-rufiyaa:before{content:"\f37a"}.ti-currency-rupee:before{content:"\ebad"}.ti-currency-rupee-nepalese:before{content:"\f37b"}.ti-currency-shekel:before{content:"\ee68"}.ti-currency-solana:before{content:"\f4a1"}.ti-currency-som:before{content:"\f37c"}.ti-currency-taka:before{content:"\ee69"}.ti-currency-tenge:before{content:"\f37d"}.ti-currency-tugrik:before{content:"\ee6a"}.ti-currency-won:before{content:"\ee6b"}.ti-currency-yen:before{content:"\ebae"}.ti-currency-yen-off:before{content:"\f3e0"}.ti-currency-yuan:before{content:"\f29a"}.ti-currency-zloty:before{content:"\ee6c"}.ti-current-location:before{content:"\ecef"}.ti-current-location-off:before{content:"\f10e"}.ti-cursor-off:before{content:"\f10f"}.ti-cursor-text:before{content:"\ee6d"}.ti-cut:before{content:"\ea86"}.ti-cylinder:before{content:"\f54c"}.ti-dashboard:before{content:"\ea87"}.ti-dashboard-off:before{content:"\f3e1"}.ti-database:before{content:"\ea88"}.ti-database-export:before{content:"\ee6e"}.ti-database-import:before{content:"\ee6f"}.ti-database-off:before{content:"\ee70"}.ti-deer:before{content:"\f4c5"}.ti-delta:before{content:"\f53c"}.ti-dental:before{content:"\f025"}.ti-dental-broken:before{content:"\f286"}.ti-dental-off:before{content:"\f110"}.ti-details:before{content:"\ee71"}.ti-details-off:before{content:"\f3e2"}.ti-device-airpods:before{content:"\f5a9"}.ti-device-airpods-case:before{content:"\f646"}.ti-device-analytics:before{content:"\ee72"}.ti-device-audio-tape:before{content:"\ee73"}.ti-device-camera-phone:before{content:"\f233"}.ti-device-cctv:before{content:"\ee74"}.ti-device-cctv-off:before{content:"\f3e3"}.ti-device-computer-camera:before{content:"\ee76"}.ti-device-computer-camera-off:before{content:"\ee75"}.ti-device-desktop:before{content:"\ea89"}.ti-device-desktop-analytics:before{content:"\ee77"}.ti-device-desktop-off:before{content:"\ee78"}.ti-device-floppy:before{content:"\eb62"}.ti-device-gamepad:before{content:"\eb63"}.ti-device-gamepad-2:before{content:"\f1d2"}.ti-device-heart-monitor:before{content:"\f060"}.ti-device-ipad:before{content:"\f648"}.ti-device-ipad-horizontal:before{content:"\f647"}.ti-device-landline-phone:before{content:"\f649"}.ti-device-laptop:before{content:"\eb64"}.ti-device-laptop-off:before{content:"\f061"}.ti-device-mobile:before{content:"\ea8a"}.ti-device-mobile-charging:before{content:"\f224"}.ti-device-mobile-message:before{content:"\ee79"}.ti-device-mobile-off:before{content:"\f062"}.ti-device-mobile-rotated:before{content:"\ecdb"}.ti-device-mobile-vibration:before{content:"\eb86"}.ti-device-nintendo:before{content:"\f026"}.ti-device-nintendo-off:before{content:"\f111"}.ti-device-sd-card:before{content:"\f384"}.ti-device-sim:before{content:"\f4b2"}.ti-device-sim-1:before{content:"\f4af"}.ti-device-sim-2:before{content:"\f4b0"}.ti-device-sim-3:before{content:"\f4b1"}.ti-device-speaker:before{content:"\ea8b"}.ti-device-speaker-off:before{content:"\f112"}.ti-device-tablet:before{content:"\ea8c"}.ti-device-tablet-off:before{content:"\f063"}.ti-device-tv:before{content:"\ea8d"}.ti-device-tv-off:before{content:"\f064"}.ti-device-tv-old:before{content:"\f1d3"}.ti-device-watch:before{content:"\ebf9"}.ti-device-watch-off:before{content:"\f065"}.ti-device-watch-stats:before{content:"\ef7d"}.ti-device-watch-stats-2:before{content:"\ef7c"}.ti-devices:before{content:"\eb87"}.ti-devices-2:before{content:"\ed29"}.ti-devices-off:before{content:"\f3e4"}.ti-devices-pc:before{content:"\ee7a"}.ti-devices-pc-off:before{content:"\f113"}.ti-dialpad:before{content:"\f067"}.ti-dialpad-off:before{content:"\f114"}.ti-diamond:before{content:"\eb65"}.ti-diamond-off:before{content:"\f115"}.ti-diamonds:before{content:"\eff5"}.ti-dice:before{content:"\eb66"}.ti-dice-1:before{content:"\f08b"}.ti-dice-2:before{content:"\f08c"}.ti-dice-3:before{content:"\f08d"}.ti-dice-4:before{content:"\f08e"}.ti-dice-5:before{content:"\f08f"}.ti-dice-6:before{content:"\f090"}.ti-dimensions:before{content:"\ee7b"}.ti-direction:before{content:"\ebfb"}.ti-direction-horizontal:before{content:"\ebfa"}.ti-direction-sign:before{content:"\f1f7"}.ti-direction-sign-off:before{content:"\f3e5"}.ti-directions:before{content:"\ea8e"}.ti-directions-off:before{content:"\f116"}.ti-disabled:before{content:"\ea8f"}.ti-disabled-2:before{content:"\ebaf"}.ti-disabled-off:before{content:"\f117"}.ti-disc:before{content:"\ea90"}.ti-disc-golf:before{content:"\f385"}.ti-disc-off:before{content:"\f118"}.ti-discount:before{content:"\ebbd"}.ti-discount-2:before{content:"\ee7c"}.ti-discount-2-off:before{content:"\f3e6"}.ti-discount-check:before{content:"\f1f8"}.ti-discount-off:before{content:"\f3e7"}.ti-divide:before{content:"\ed5c"}.ti-dna:before{content:"\ee7d"}.ti-dna-2:before{content:"\ef5c"}.ti-dna-2-off:before{content:"\f119"}.ti-dna-off:before{content:"\f11a"}.ti-dog:before{content:"\f660"}.ti-dog-bowl:before{content:"\ef29"}.ti-door:before{content:"\ef4e"}.ti-door-enter:before{content:"\ef4c"}.ti-door-exit:before{content:"\ef4d"}.ti-door-off:before{content:"\f11b"}.ti-dots:before{content:"\ea95"}.ti-dots-circle-horizontal:before{content:"\ea91"}.ti-dots-diagonal:before{content:"\ea93"}.ti-dots-diagonal-2:before{content:"\ea92"}.ti-dots-vertical:before{content:"\ea94"}.ti-download:before{content:"\ea96"}.ti-download-off:before{content:"\f11c"}.ti-drag-drop:before{content:"\eb89"}.ti-drag-drop-2:before{content:"\eb88"}.ti-drone:before{content:"\ed79"}.ti-drone-off:before{content:"\ee7e"}.ti-drop-circle:before{content:"\efde"}.ti-droplet:before{content:"\ea97"}.ti-droplet-filled:before{content:"\ee80"}.ti-droplet-filled-2:before{content:"\ee7f"}.ti-droplet-half:before{content:"\ee82"}.ti-droplet-half-2:before{content:"\ee81"}.ti-droplet-off:before{content:"\ee83"}.ti-e-passport:before{content:"\f4df"}.ti-ear:before{content:"\ebce"}.ti-ear-off:before{content:"\ee84"}.ti-ease-in:before{content:"\f573"}.ti-ease-in-control-point:before{content:"\f570"}.ti-ease-in-out:before{content:"\f572"}.ti-ease-in-out-control-points:before{content:"\f571"}.ti-ease-out:before{content:"\f575"}.ti-ease-out-control-point:before{content:"\f574"}.ti-edit:before{content:"\ea98"}.ti-edit-circle:before{content:"\ee85"}.ti-edit-circle-off:before{content:"\f11d"}.ti-edit-off:before{content:"\f11e"}.ti-egg:before{content:"\eb8a"}.ti-egg-cracked:before{content:"\f2d6"}.ti-egg-fried:before{content:"\f386"}.ti-egg-off:before{content:"\f11f"}.ti-eggs:before{content:"\f500"}.ti-elevator:before{content:"\efdf"}.ti-elevator-off:before{content:"\f3e8"}.ti-emergency-bed:before{content:"\ef5d"}.ti-empathize:before{content:"\f29b"}.ti-empathize-off:before{content:"\f3e9"}.ti-emphasis:before{content:"\ebcf"}.ti-engine:before{content:"\ef7e"}.ti-engine-off:before{content:"\f120"}.ti-equal:before{content:"\ee87"}.ti-equal-double:before{content:"\f4e1"}.ti-equal-not:before{content:"\ee86"}.ti-eraser:before{content:"\eb8b"}.ti-eraser-off:before{content:"\f121"}.ti-error-404:before{content:"\f027"}.ti-error-404-off:before{content:"\f122"}.ti-exchange:before{content:"\ebe7"}.ti-exchange-off:before{content:"\f123"}.ti-exclamation-circle:before{content:"\f634"}.ti-exclamation-mark:before{content:"\efb4"}.ti-exclamation-mark-off:before{content:"\f124"}.ti-explicit:before{content:"\f256"}.ti-explicit-off:before{content:"\f3ea"}.ti-exposure:before{content:"\eb8c"}.ti-exposure-0:before{content:"\f29c"}.ti-exposure-minus-1:before{content:"\f29d"}.ti-exposure-minus-2:before{content:"\f29e"}.ti-exposure-off:before{content:"\f3eb"}.ti-exposure-plus-1:before{content:"\f29f"}.ti-exposure-plus-2:before{content:"\f2a0"}.ti-external-link:before{content:"\ea99"}.ti-external-link-off:before{content:"\f125"}.ti-eye:before{content:"\ea9a"}.ti-eye-check:before{content:"\ee88"}.ti-eye-off:before{content:"\ecf0"}.ti-eye-table:before{content:"\ef5e"}.ti-eyeglass:before{content:"\ee8a"}.ti-eyeglass-2:before{content:"\ee89"}.ti-eyeglass-off:before{content:"\f126"}.ti-face-id:before{content:"\ea9b"}.ti-face-id-error:before{content:"\efa7"}.ti-face-mask:before{content:"\efb5"}.ti-face-mask-off:before{content:"\f127"}.ti-fall:before{content:"\ecb9"}.ti-feather:before{content:"\ee8b"}.ti-feather-off:before{content:"\f128"}.ti-fence:before{content:"\ef2a"}.ti-fence-off:before{content:"\f129"}.ti-fidget-spinner:before{content:"\f068"}.ti-file:before{content:"\eaa4"}.ti-file-3d:before{content:"\f032"}.ti-file-alert:before{content:"\ede6"}.ti-file-analytics:before{content:"\ede7"}.ti-file-arrow-left:before{content:"\f033"}.ti-file-arrow-right:before{content:"\f034"}.ti-file-barcode:before{content:"\f035"}.ti-file-broken:before{content:"\f501"}.ti-file-certificate:before{content:"\ed4d"}.ti-file-chart:before{content:"\f036"}.ti-file-check:before{content:"\ea9c"}.ti-file-code:before{content:"\ebd0"}.ti-file-code-2:before{content:"\ede8"}.ti-file-database:before{content:"\f037"}.ti-file-delta:before{content:"\f53d"}.ti-file-description:before{content:"\f028"}.ti-file-diff:before{content:"\ecf1"}.ti-file-digit:before{content:"\efa8"}.ti-file-dislike:before{content:"\ed2a"}.ti-file-dollar:before{content:"\efe0"}.ti-file-dots:before{content:"\f038"}.ti-file-download:before{content:"\ea9d"}.ti-file-euro:before{content:"\efe1"}.ti-file-export:before{content:"\ede9"}.ti-file-function:before{content:"\f53e"}.ti-file-horizontal:before{content:"\ebb0"}.ti-file-import:before{content:"\edea"}.ti-file-infinity:before{content:"\f502"}.ti-file-info:before{content:"\edec"}.ti-file-invoice:before{content:"\eb67"}.ti-file-lambda:before{content:"\f53f"}.ti-file-like:before{content:"\ed2b"}.ti-file-minus:before{content:"\ea9e"}.ti-file-music:before{content:"\ea9f"}.ti-file-off:before{content:"\ecf2"}.ti-file-orientation:before{content:"\f2a1"}.ti-file-pencil:before{content:"\f039"}.ti-file-percent:before{content:"\f540"}.ti-file-phone:before{content:"\ecdc"}.ti-file-plus:before{content:"\eaa0"}.ti-file-power:before{content:"\f03a"}.ti-file-report:before{content:"\eded"}.ti-file-rss:before{content:"\f03b"}.ti-file-scissors:before{content:"\f03c"}.ti-file-search:before{content:"\ed5d"}.ti-file-settings:before{content:"\f029"}.ti-file-shredder:before{content:"\eaa1"}.ti-file-signal:before{content:"\f03d"}.ti-file-spreadsheet:before{content:"\f03e"}.ti-file-stack:before{content:"\f503"}.ti-file-star:before{content:"\f03f"}.ti-file-symlink:before{content:"\ed53"}.ti-file-text:before{content:"\eaa2"}.ti-file-time:before{content:"\f040"}.ti-file-typography:before{content:"\f041"}.ti-file-unknown:before{content:"\f042"}.ti-file-upload:before{content:"\ec91"}.ti-file-vector:before{content:"\f043"}.ti-file-x:before{content:"\eaa3"}.ti-file-zip:before{content:"\ed4e"}.ti-files:before{content:"\edef"}.ti-files-off:before{content:"\edee"}.ti-filter:before{content:"\eaa5"}.ti-filter-off:before{content:"\ed2c"}.ti-fingerprint:before{content:"\ebd1"}.ti-fingerprint-off:before{content:"\f12a"}.ti-fire-hydrant:before{content:"\f3a9"}.ti-fire-hydrant-off:before{content:"\f3ec"}.ti-firetruck:before{content:"\ebe8"}.ti-first-aid-kit:before{content:"\ef5f"}.ti-first-aid-kit-off:before{content:"\f3ed"}.ti-fish:before{content:"\ef2b"}.ti-fish-bone:before{content:"\f287"}.ti-fish-christianity:before{content:"\f58b"}.ti-fish-hook:before{content:"\f1f9"}.ti-fish-hook-off:before{content:"\f3ee"}.ti-fish-off:before{content:"\f12b"}.ti-flag:before{content:"\eaa6"}.ti-flag-2:before{content:"\ee8c"}.ti-flag-2-off:before{content:"\f12c"}.ti-flag-3:before{content:"\ee8d"}.ti-flag-off:before{content:"\f12d"}.ti-flame:before{content:"\ec2c"}.ti-flame-off:before{content:"\f12e"}.ti-flare:before{content:"\ee8e"}.ti-flask:before{content:"\ebd2"}.ti-flask-2:before{content:"\ef60"}.ti-flask-2-off:before{content:"\f12f"}.ti-flask-off:before{content:"\f130"}.ti-flip-flops:before{content:"\f564"}.ti-flip-horizontal:before{content:"\eaa7"}.ti-flip-vertical:before{content:"\eaa8"}.ti-float-center:before{content:"\ebb1"}.ti-float-left:before{content:"\ebb2"}.ti-float-none:before{content:"\ed13"}.ti-float-right:before{content:"\ebb3"}.ti-flower:before{content:"\eff6"}.ti-flower-off:before{content:"\f131"}.ti-focus:before{content:"\eb8d"}.ti-focus-2:before{content:"\ebd3"}.ti-focus-centered:before{content:"\f02a"}.ti-fold:before{content:"\ed56"}.ti-fold-down:before{content:"\ed54"}.ti-fold-up:before{content:"\ed55"}.ti-folder:before{content:"\eaad"}.ti-folder-minus:before{content:"\eaaa"}.ti-folder-off:before{content:"\ed14"}.ti-folder-plus:before{content:"\eaab"}.ti-folder-x:before{content:"\eaac"}.ti-folders:before{content:"\eaae"}.ti-folders-off:before{content:"\f133"}.ti-forbid:before{content:"\ebd5"}.ti-forbid-2:before{content:"\ebd4"}.ti-forklift:before{content:"\ebe9"}.ti-forms:before{content:"\ee8f"}.ti-fountain:before{content:"\f09b"}.ti-fountain-off:before{content:"\f134"}.ti-frame:before{content:"\eaaf"}.ti-frame-off:before{content:"\f135"}.ti-free-rights:before{content:"\efb6"}.ti-fridge:before{content:"\f1fa"}.ti-fridge-off:before{content:"\f3ef"}.ti-friends:before{content:"\eab0"}.ti-friends-off:before{content:"\f136"}.ti-function:before{content:"\f225"}.ti-function-off:before{content:"\f3f0"}.ti-garden-cart:before{content:"\f23e"}.ti-garden-cart-off:before{content:"\f3f1"}.ti-gas-station:before{content:"\ec7d"}.ti-gas-station-off:before{content:"\f137"}.ti-gauge:before{content:"\eab1"}.ti-gauge-off:before{content:"\f138"}.ti-gavel:before{content:"\ef90"}.ti-gender-agender:before{content:"\f0e1"}.ti-gender-androgyne:before{content:"\f0e2"}.ti-gender-bigender:before{content:"\f0e3"}.ti-gender-demiboy:before{content:"\f0e4"}.ti-gender-demigirl:before{content:"\f0e5"}.ti-gender-epicene:before{content:"\f0e6"}.ti-gender-female:before{content:"\f0e7"}.ti-gender-femme:before{content:"\f0e8"}.ti-gender-genderfluid:before{content:"\f0e9"}.ti-gender-genderless:before{content:"\f0ea"}.ti-gender-genderqueer:before{content:"\f0eb"}.ti-gender-hermaphrodite:before{content:"\f0ec"}.ti-gender-intergender:before{content:"\f0ed"}.ti-gender-male:before{content:"\f0ee"}.ti-gender-neutrois:before{content:"\f0ef"}.ti-gender-third:before{content:"\f0f0"}.ti-gender-transgender:before{content:"\f0f1"}.ti-gender-trasvesti:before{content:"\f0f2"}.ti-geometry:before{content:"\ee90"}.ti-ghost:before{content:"\eb8e"}.ti-ghost-2:before{content:"\f57c"}.ti-ghost-off:before{content:"\f3f2"}.ti-gif:before{content:"\f257"}.ti-gift:before{content:"\eb68"}.ti-gift-card:before{content:"\f3aa"}.ti-gift-off:before{content:"\f3f3"}.ti-git-branch:before{content:"\eab2"}.ti-git-branch-deleted:before{content:"\f57d"}.ti-git-cherry-pick:before{content:"\f57e"}.ti-git-commit:before{content:"\eab3"}.ti-git-compare:before{content:"\eab4"}.ti-git-fork:before{content:"\eb8f"}.ti-git-merge:before{content:"\eab5"}.ti-git-pull-request:before{content:"\eab6"}.ti-git-pull-request-closed:before{content:"\ef7f"}.ti-git-pull-request-draft:before{content:"\efb7"}.ti-gizmo:before{content:"\f02b"}.ti-glass:before{content:"\eab8"}.ti-glass-full:before{content:"\eab7"}.ti-glass-off:before{content:"\ee91"}.ti-globe:before{content:"\eab9"}.ti-globe-off:before{content:"\f139"}.ti-go-game:before{content:"\f512"}.ti-golf:before{content:"\ed8c"}.ti-golf-off:before{content:"\f13a"}.ti-gps:before{content:"\ed7a"}.ti-gradienter:before{content:"\f3ab"}.ti-grain:before{content:"\ee92"}.ti-graph:before{content:"\f288"}.ti-graph-off:before{content:"\f3f4"}.ti-grave:before{content:"\f580"}.ti-grave-2:before{content:"\f57f"}.ti-grid-dots:before{content:"\eaba"}.ti-grid-pattern:before{content:"\efc9"}.ti-grill:before{content:"\efa9"}.ti-grill-fork:before{content:"\f35b"}.ti-grill-off:before{content:"\f3f5"}.ti-grill-spatula:before{content:"\f35c"}.ti-grip-horizontal:before{content:"\ec00"}.ti-grip-vertical:before{content:"\ec01"}.ti-growth:before{content:"\ee93"}.ti-guitar-pick:before{content:"\f4c6"}.ti-h-1:before{content:"\ec94"}.ti-h-2:before{content:"\ec95"}.ti-h-3:before{content:"\ec96"}.ti-h-4:before{content:"\ec97"}.ti-h-5:before{content:"\ec98"}.ti-h-6:before{content:"\ec99"}.ti-hammer:before{content:"\ef91"}.ti-hammer-off:before{content:"\f13c"}.ti-hand-click:before{content:"\ef4f"}.ti-hand-finger:before{content:"\ee94"}.ti-hand-finger-off:before{content:"\f13d"}.ti-hand-grab:before{content:"\f091"}.ti-hand-little-finger:before{content:"\ee95"}.ti-hand-middle-finger:before{content:"\ec2d"}.ti-hand-move:before{content:"\ef50"}.ti-hand-off:before{content:"\ed15"}.ti-hand-ring-finger:before{content:"\ee96"}.ti-hand-rock:before{content:"\ee97"}.ti-hand-sanitizer:before{content:"\f5f4"}.ti-hand-stop:before{content:"\ec2e"}.ti-hand-three-fingers:before{content:"\ee98"}.ti-hand-two-fingers:before{content:"\ee99"}.ti-hanger:before{content:"\ee9a"}.ti-hanger-2:before{content:"\f09c"}.ti-hanger-off:before{content:"\f13e"}.ti-hash:before{content:"\eabc"}.ti-haze:before{content:"\efaa"}.ti-heading:before{content:"\ee9b"}.ti-heading-off:before{content:"\f13f"}.ti-headphones:before{content:"\eabd"}.ti-headphones-off:before{content:"\ed1d"}.ti-headset:before{content:"\eb90"}.ti-headset-off:before{content:"\f3f6"}.ti-health-recognition:before{content:"\f1fb"}.ti-heart:before{content:"\eabe"}.ti-heart-broken:before{content:"\ecba"}.ti-heart-handshake:before{content:"\f0f3"}.ti-heart-minus:before{content:"\f140"}.ti-heart-off:before{content:"\f141"}.ti-heart-plus:before{content:"\f142"}.ti-heart-rate-monitor:before{content:"\ef61"}.ti-heartbeat:before{content:"\ef92"}.ti-hearts:before{content:"\f387"}.ti-hearts-off:before{content:"\f3f7"}.ti-helicopter:before{content:"\ed8e"}.ti-helicopter-landing:before{content:"\ed8d"}.ti-helmet:before{content:"\efca"}.ti-helmet-off:before{content:"\f143"}.ti-help:before{content:"\eabf"}.ti-help-off:before{content:"\f3f8"}.ti-hexagon:before{content:"\ec02"}.ti-hexagon-3d:before{content:"\f4c7"}.ti-hexagon-letter-a:before{content:"\f463"}.ti-hexagon-letter-b:before{content:"\f464"}.ti-hexagon-letter-c:before{content:"\f465"}.ti-hexagon-letter-d:before{content:"\f466"}.ti-hexagon-letter-e:before{content:"\f467"}.ti-hexagon-letter-f:before{content:"\f468"}.ti-hexagon-letter-g:before{content:"\f469"}.ti-hexagon-letter-h:before{content:"\f46a"}.ti-hexagon-letter-i:before{content:"\f46b"}.ti-hexagon-letter-j:before{content:"\f46c"}.ti-hexagon-letter-k:before{content:"\f46d"}.ti-hexagon-letter-l:before{content:"\f46e"}.ti-hexagon-letter-m:before{content:"\f46f"}.ti-hexagon-letter-n:before{content:"\f470"}.ti-hexagon-letter-o:before{content:"\f471"}.ti-hexagon-letter-p:before{content:"\f472"}.ti-hexagon-letter-q:before{content:"\f473"}.ti-hexagon-letter-r:before{content:"\f474"}.ti-hexagon-letter-s:before{content:"\f475"}.ti-hexagon-letter-t:before{content:"\f476"}.ti-hexagon-letter-u:before{content:"\f477"}.ti-hexagon-letter-v:before{content:"\f4b3"}.ti-hexagon-letter-w:before{content:"\f478"}.ti-hexagon-letter-x:before{content:"\f479"}.ti-hexagon-letter-y:before{content:"\f47a"}.ti-hexagon-letter-z:before{content:"\f47b"}.ti-hexagon-number-0:before{content:"\f459"}.ti-hexagon-number-1:before{content:"\f45a"}.ti-hexagon-number-2:before{content:"\f45b"}.ti-hexagon-number-3:before{content:"\f45c"}.ti-hexagon-number-4:before{content:"\f45d"}.ti-hexagon-number-5:before{content:"\f45e"}.ti-hexagon-number-6:before{content:"\f45f"}.ti-hexagon-number-7:before{content:"\f460"}.ti-hexagon-number-8:before{content:"\f461"}.ti-hexagon-number-9:before{content:"\f462"}.ti-hexagon-off:before{content:"\ee9c"}.ti-hexagons:before{content:"\f09d"}.ti-hexagons-off:before{content:"\f3f9"}.ti-hierarchy:before{content:"\ee9e"}.ti-hierarchy-2:before{content:"\ee9d"}.ti-hierarchy-3:before{content:"\f289"}.ti-hierarchy-off:before{content:"\f3fa"}.ti-highlight:before{content:"\ef3f"}.ti-highlight-off:before{content:"\f144"}.ti-history:before{content:"\ebea"}.ti-history-off:before{content:"\f3fb"}.ti-history-toggle:before{content:"\f1fc"}.ti-home:before{content:"\eac1"}.ti-home-2:before{content:"\eac0"}.ti-home-bolt:before{content:"\f336"}.ti-home-cancel:before{content:"\f350"}.ti-home-check:before{content:"\f337"}.ti-home-cog:before{content:"\f338"}.ti-home-dollar:before{content:"\f339"}.ti-home-dot:before{content:"\f33a"}.ti-home-down:before{content:"\f33b"}.ti-home-eco:before{content:"\f351"}.ti-home-edit:before{content:"\f352"}.ti-home-exclamation:before{content:"\f33c"}.ti-home-hand:before{content:"\f504"}.ti-home-heart:before{content:"\f353"}.ti-home-infinity:before{content:"\f505"}.ti-home-link:before{content:"\f354"}.ti-home-minus:before{content:"\f33d"}.ti-home-move:before{content:"\f33e"}.ti-home-off:before{content:"\f145"}.ti-home-plus:before{content:"\f33f"}.ti-home-question:before{content:"\f340"}.ti-home-ribbon:before{content:"\f355"}.ti-home-search:before{content:"\f341"}.ti-home-share:before{content:"\f342"}.ti-home-shield:before{content:"\f343"}.ti-home-signal:before{content:"\f356"}.ti-home-star:before{content:"\f344"}.ti-home-stats:before{content:"\f345"}.ti-home-up:before{content:"\f346"}.ti-home-x:before{content:"\f347"}.ti-horse-toy:before{content:"\f28a"}.ti-hotel-service:before{content:"\ef80"}.ti-hourglass:before{content:"\ef93"}.ti-hourglass-empty:before{content:"\f146"}.ti-hourglass-high:before{content:"\f092"}.ti-hourglass-low:before{content:"\f093"}.ti-hourglass-off:before{content:"\f147"}.ti-ice-cream:before{content:"\eac2"}.ti-ice-cream-2:before{content:"\ee9f"}.ti-ice-cream-off:before{content:"\f148"}.ti-ice-skating:before{content:"\efcb"}.ti-icons:before{content:"\f1d4"}.ti-icons-off:before{content:"\f3fc"}.ti-id:before{content:"\eac3"}.ti-id-badge:before{content:"\eff7"}.ti-id-badge-2:before{content:"\f076"}.ti-id-badge-off:before{content:"\f3fd"}.ti-id-off:before{content:"\f149"}.ti-inbox:before{content:"\eac4"}.ti-inbox-off:before{content:"\f14a"}.ti-indent-decrease:before{content:"\eb91"}.ti-indent-increase:before{content:"\eb92"}.ti-infinity:before{content:"\eb69"}.ti-infinity-off:before{content:"\f3fe"}.ti-info-circle:before{content:"\eac5"}.ti-info-square:before{content:"\eac6"}.ti-info-square-rounded:before{content:"\f635"}.ti-inner-shadow-bottom:before{content:"\f520"}.ti-inner-shadow-bottom-left:before{content:"\f51e"}.ti-inner-shadow-bottom-right:before{content:"\f51f"}.ti-inner-shadow-left:before{content:"\f521"}.ti-inner-shadow-right:before{content:"\f522"}.ti-inner-shadow-top:before{content:"\f525"}.ti-inner-shadow-top-left:before{content:"\f523"}.ti-inner-shadow-top-right:before{content:"\f524"}.ti-input-search:before{content:"\f2a2"}.ti-ironing-1:before{content:"\f2f4"}.ti-ironing-2:before{content:"\f2f5"}.ti-ironing-3:before{content:"\f2f6"}.ti-ironing-off:before{content:"\f2f7"}.ti-ironing-steam:before{content:"\f2f9"}.ti-ironing-steam-off:before{content:"\f2f8"}.ti-italic:before{content:"\eb93"}.ti-jacket:before{content:"\f661"}.ti-jetpack:before{content:"\f581"}.ti-jewish-star:before{content:"\f3ff"}.ti-jpg:before{content:"\f3ac"}.ti-jump-rope:before{content:"\ed8f"}.ti-karate:before{content:"\ed32"}.ti-kayak:before{content:"\f1d6"}.ti-kering:before{content:"\efb8"}.ti-key:before{content:"\eac7"}.ti-key-off:before{content:"\f14b"}.ti-keyboard:before{content:"\ebd6"}.ti-keyboard-hide:before{content:"\ec7e"}.ti-keyboard-off:before{content:"\eea0"}.ti-keyboard-show:before{content:"\ec7f"}.ti-keyframe:before{content:"\f576"}.ti-keyframe-align-center:before{content:"\f582"}.ti-keyframe-align-horizontal:before{content:"\f583"}.ti-keyframe-align-vertical:before{content:"\f584"}.ti-keyframes:before{content:"\f585"}.ti-ladder:before{content:"\efe2"}.ti-ladder-off:before{content:"\f14c"}.ti-lambda:before{content:"\f541"}.ti-lamp:before{content:"\efab"}.ti-lamp-2:before{content:"\f09e"}.ti-lamp-off:before{content:"\f14d"}.ti-language:before{content:"\ebbe"}.ti-language-hiragana:before{content:"\ef77"}.ti-language-katakana:before{content:"\ef78"}.ti-language-off:before{content:"\f14e"}.ti-lasso:before{content:"\efac"}.ti-lasso-off:before{content:"\f14f"}.ti-lasso-polygon:before{content:"\f388"}.ti-layers-difference:before{content:"\eac8"}.ti-layers-intersect:before{content:"\eac9"}.ti-layers-intersect-2:before{content:"\eff8"}.ti-layers-linked:before{content:"\eea1"}.ti-layers-off:before{content:"\f150"}.ti-layers-subtract:before{content:"\eaca"}.ti-layers-union:before{content:"\eacb"}.ti-layout:before{content:"\eadb"}.ti-layout-2:before{content:"\eacc"}.ti-layout-align-bottom:before{content:"\eacd"}.ti-layout-align-center:before{content:"\eace"}.ti-layout-align-left:before{content:"\eacf"}.ti-layout-align-middle:before{content:"\ead0"}.ti-layout-align-right:before{content:"\ead1"}.ti-layout-align-top:before{content:"\ead2"}.ti-layout-board:before{content:"\ef95"}.ti-layout-board-split:before{content:"\ef94"}.ti-layout-bottombar:before{content:"\ead3"}.ti-layout-bottombar-collapse:before{content:"\f28b"}.ti-layout-bottombar-expand:before{content:"\f28c"}.ti-layout-cards:before{content:"\ec13"}.ti-layout-collage:before{content:"\f389"}.ti-layout-columns:before{content:"\ead4"}.ti-layout-dashboard:before{content:"\f02c"}.ti-layout-distribute-horizontal:before{content:"\ead5"}.ti-layout-distribute-vertical:before{content:"\ead6"}.ti-layout-grid:before{content:"\edba"}.ti-layout-grid-add:before{content:"\edb9"}.ti-layout-kanban:before{content:"\ec3f"}.ti-layout-list:before{content:"\ec14"}.ti-layout-navbar:before{content:"\ead7"}.ti-layout-navbar-collapse:before{content:"\f28d"}.ti-layout-navbar-expand:before{content:"\f28e"}.ti-layout-off:before{content:"\f151"}.ti-layout-rows:before{content:"\ead8"}.ti-layout-sidebar:before{content:"\eada"}.ti-layout-sidebar-left-collapse:before{content:"\f004"}.ti-layout-sidebar-left-expand:before{content:"\f005"}.ti-layout-sidebar-right:before{content:"\ead9"}.ti-layout-sidebar-right-collapse:before{content:"\f006"}.ti-layout-sidebar-right-expand:before{content:"\f007"}.ti-leaf:before{content:"\ed4f"}.ti-leaf-off:before{content:"\f400"}.ti-lego:before{content:"\eadc"}.ti-lego-off:before{content:"\f401"}.ti-lemon:before{content:"\ef10"}.ti-lemon-2:before{content:"\ef81"}.ti-letter-a:before{content:"\ec50"}.ti-letter-b:before{content:"\ec51"}.ti-letter-c:before{content:"\ec52"}.ti-letter-case:before{content:"\eea5"}.ti-letter-case-lower:before{content:"\eea2"}.ti-letter-case-toggle:before{content:"\eea3"}.ti-letter-case-upper:before{content:"\eea4"}.ti-letter-d:before{content:"\ec53"}.ti-letter-e:before{content:"\ec54"}.ti-letter-f:before{content:"\ec55"}.ti-letter-g:before{content:"\ec56"}.ti-letter-h:before{content:"\ec57"}.ti-letter-i:before{content:"\ec58"}.ti-letter-j:before{content:"\ec59"}.ti-letter-k:before{content:"\ec5a"}.ti-letter-l:before{content:"\ec5b"}.ti-letter-m:before{content:"\ec5c"}.ti-letter-n:before{content:"\ec5d"}.ti-letter-o:before{content:"\ec5e"}.ti-letter-p:before{content:"\ec5f"}.ti-letter-q:before{content:"\ec60"}.ti-letter-r:before{content:"\ec61"}.ti-letter-s:before{content:"\ec62"}.ti-letter-spacing:before{content:"\eea6"}.ti-letter-t:before{content:"\ec63"}.ti-letter-u:before{content:"\ec64"}.ti-letter-v:before{content:"\ec65"}.ti-letter-w:before{content:"\ec66"}.ti-letter-x:before{content:"\ec67"}.ti-letter-y:before{content:"\ec68"}.ti-letter-z:before{content:"\ec69"}.ti-license:before{content:"\ebc0"}.ti-license-off:before{content:"\f153"}.ti-lifebuoy:before{content:"\eadd"}.ti-lifebuoy-off:before{content:"\f154"}.ti-line:before{content:"\ec40"}.ti-line-dashed:before{content:"\eea7"}.ti-line-dotted:before{content:"\eea8"}.ti-line-height:before{content:"\eb94"}.ti-link:before{content:"\eade"}.ti-link-off:before{content:"\f402"}.ti-list:before{content:"\eb6b"}.ti-list-check:before{content:"\eb6a"}.ti-list-details:before{content:"\ef40"}.ti-list-numbers:before{content:"\ef11"}.ti-list-search:before{content:"\eea9"}.ti-live-photo:before{content:"\eadf"}.ti-live-photo-off:before{content:"\f403"}.ti-live-view:before{content:"\ec6b"}.ti-loader:before{content:"\eca3"}.ti-loader-2:before{content:"\f226"}.ti-loader-3:before{content:"\f513"}.ti-loader-quarter:before{content:"\eca2"}.ti-location:before{content:"\eae0"}.ti-location-broken:before{content:"\f2c4"}.ti-location-off:before{content:"\f155"}.ti-lock:before{content:"\eae2"}.ti-lock-access:before{content:"\eeaa"}.ti-lock-access-off:before{content:"\f404"}.ti-lock-off:before{content:"\ed1e"}.ti-lock-open:before{content:"\eae1"}.ti-lock-open-off:before{content:"\f156"}.ti-lock-square:before{content:"\ef51"}.ti-lock-square-rounded:before{content:"\f636"}.ti-logic-and:before{content:"\f240"}.ti-logic-buffer:before{content:"\f241"}.ti-logic-nand:before{content:"\f242"}.ti-logic-nor:before{content:"\f243"}.ti-logic-not:before{content:"\f244"}.ti-logic-or:before{content:"\f245"}.ti-logic-xnor:before{content:"\f246"}.ti-logic-xor:before{content:"\f247"}.ti-login:before{content:"\eba7"}.ti-logout:before{content:"\eba8"}.ti-lollipop:before{content:"\efcc"}.ti-lollipop-off:before{content:"\f157"}.ti-luggage:before{content:"\efad"}.ti-luggage-off:before{content:"\f158"}.ti-lungs:before{content:"\ef62"}.ti-lungs-off:before{content:"\f405"}.ti-macro:before{content:"\eeab"}.ti-macro-off:before{content:"\f406"}.ti-magnet:before{content:"\eae3"}.ti-magnet-off:before{content:"\f159"}.ti-mail:before{content:"\eae5"}.ti-mail-fast:before{content:"\f069"}.ti-mail-forward:before{content:"\eeac"}.ti-mail-off:before{content:"\f15a"}.ti-mail-opened:before{content:"\eae4"}.ti-mailbox:before{content:"\eead"}.ti-mailbox-off:before{content:"\f15b"}.ti-man:before{content:"\eae6"}.ti-manual-gearbox:before{content:"\ed7b"}.ti-map:before{content:"\eae9"}.ti-map-2:before{content:"\eae7"}.ti-map-off:before{content:"\f15c"}.ti-map-pin:before{content:"\eae8"}.ti-map-pin-off:before{content:"\ecf3"}.ti-map-pins:before{content:"\ed5e"}.ti-map-search:before{content:"\ef82"}.ti-markdown:before{content:"\ec41"}.ti-markdown-off:before{content:"\f407"}.ti-marquee:before{content:"\ec77"}.ti-marquee-2:before{content:"\eeae"}.ti-marquee-off:before{content:"\f15d"}.ti-mars:before{content:"\ec80"}.ti-mask:before{content:"\eeb0"}.ti-mask-off:before{content:"\eeaf"}.ti-masks-theater:before{content:"\f263"}.ti-masks-theater-off:before{content:"\f408"}.ti-massage:before{content:"\eeb1"}.ti-matchstick:before{content:"\f577"}.ti-math:before{content:"\ebeb"}.ti-math-1-divide-2:before{content:"\f4e2"}.ti-math-1-divide-3:before{content:"\f4e3"}.ti-math-avg:before{content:"\f0f4"}.ti-math-equal-greater:before{content:"\f4e4"}.ti-math-equal-lower:before{content:"\f4e5"}.ti-math-function:before{content:"\eeb2"}.ti-math-function-off:before{content:"\f15e"}.ti-math-function-y:before{content:"\f4e6"}.ti-math-greater:before{content:"\f4e7"}.ti-math-integral:before{content:"\f4e9"}.ti-math-integral-x:before{content:"\f4e8"}.ti-math-integrals:before{content:"\f4ea"}.ti-math-lower:before{content:"\f4eb"}.ti-math-max:before{content:"\f0f5"}.ti-math-min:before{content:"\f0f6"}.ti-math-not:before{content:"\f4ec"}.ti-math-off:before{content:"\f409"}.ti-math-pi:before{content:"\f4ee"}.ti-math-pi-divide-2:before{content:"\f4ed"}.ti-math-symbols:before{content:"\eeb3"}.ti-math-x-divide-2:before{content:"\f4ef"}.ti-math-x-divide-y:before{content:"\f4f1"}.ti-math-x-divide-y-2:before{content:"\f4f0"}.ti-math-x-minus-x:before{content:"\f4f2"}.ti-math-x-minus-y:before{content:"\f4f3"}.ti-math-x-plus-x:before{content:"\f4f4"}.ti-math-x-plus-y:before{content:"\f4f5"}.ti-math-xy:before{content:"\f4f6"}.ti-math-y-minus-y:before{content:"\f4f7"}.ti-math-y-plus-y:before{content:"\f4f8"}.ti-maximize:before{content:"\eaea"}.ti-maximize-off:before{content:"\f15f"}.ti-meat:before{content:"\ef12"}.ti-meat-off:before{content:"\f40a"}.ti-medal:before{content:"\ec78"}.ti-medal-2:before{content:"\efcd"}.ti-medical-cross:before{content:"\ec2f"}.ti-medical-cross-off:before{content:"\f160"}.ti-medicine-syrup:before{content:"\ef63"}.ti-meeple:before{content:"\f514"}.ti-menorah:before{content:"\f58c"}.ti-menu:before{content:"\eaeb"}.ti-menu-2:before{content:"\ec42"}.ti-menu-order:before{content:"\f5f5"}.ti-message:before{content:"\eaef"}.ti-message-2:before{content:"\eaec"}.ti-message-2-code:before{content:"\f012"}.ti-message-2-off:before{content:"\f40b"}.ti-message-2-share:before{content:"\f077"}.ti-message-chatbot:before{content:"\f38a"}.ti-message-circle:before{content:"\eaed"}.ti-message-circle-2:before{content:"\ed3f"}.ti-message-circle-off:before{content:"\ed40"}.ti-message-code:before{content:"\f013"}.ti-message-dots:before{content:"\eaee"}.ti-message-forward:before{content:"\f28f"}.ti-message-language:before{content:"\efae"}.ti-message-off:before{content:"\ed41"}.ti-message-plus:before{content:"\ec9a"}.ti-message-report:before{content:"\ec9b"}.ti-message-share:before{content:"\f078"}.ti-messages:before{content:"\eb6c"}.ti-messages-off:before{content:"\ed42"}.ti-meteor:before{content:"\f1fd"}.ti-meteor-off:before{content:"\f40c"}.ti-mickey:before{content:"\f2a3"}.ti-microphone:before{content:"\eaf0"}.ti-microphone-2:before{content:"\ef2c"}.ti-microphone-2-off:before{content:"\f40d"}.ti-microphone-off:before{content:"\ed16"}.ti-microscope:before{content:"\ef64"}.ti-microscope-off:before{content:"\f40e"}.ti-microwave:before{content:"\f248"}.ti-microwave-off:before{content:"\f264"}.ti-military-award:before{content:"\f079"}.ti-military-rank:before{content:"\efcf"}.ti-milk:before{content:"\ef13"}.ti-milk-off:before{content:"\f40f"}.ti-milkshake:before{content:"\f4c8"}.ti-minimize:before{content:"\eaf1"}.ti-minus:before{content:"\eaf2"}.ti-minus-vertical:before{content:"\eeb4"}.ti-mist:before{content:"\ec30"}.ti-mist-off:before{content:"\f410"}.ti-moneybag:before{content:"\f506"}.ti-mood-angry:before{content:"\f2de"}.ti-mood-annoyed:before{content:"\f2e0"}.ti-mood-annoyed-2:before{content:"\f2df"}.ti-mood-boy:before{content:"\ed2d"}.ti-mood-confuzed:before{content:"\eaf3"}.ti-mood-crazy-happy:before{content:"\ed90"}.ti-mood-cry:before{content:"\ecbb"}.ti-mood-empty:before{content:"\eeb5"}.ti-mood-happy:before{content:"\eaf4"}.ti-mood-kid:before{content:"\ec03"}.ti-mood-look-left:before{content:"\f2c5"}.ti-mood-look-right:before{content:"\f2c6"}.ti-mood-nerd:before{content:"\f2e1"}.ti-mood-nervous:before{content:"\ef96"}.ti-mood-neutral:before{content:"\eaf5"}.ti-mood-off:before{content:"\f161"}.ti-mood-sad:before{content:"\eaf6"}.ti-mood-sad-2:before{content:"\f2e2"}.ti-mood-sad-dizzy:before{content:"\f2e3"}.ti-mood-sad-squint:before{content:"\f2e4"}.ti-mood-sick:before{content:"\f2e5"}.ti-mood-silence:before{content:"\f2e6"}.ti-mood-sing:before{content:"\f2c7"}.ti-mood-smile:before{content:"\eaf7"}.ti-mood-smile-beam:before{content:"\f2e7"}.ti-mood-smile-dizzy:before{content:"\f2e8"}.ti-mood-suprised:before{content:"\ec04"}.ti-mood-tongue:before{content:"\eb95"}.ti-mood-tongue-wink:before{content:"\f2ea"}.ti-mood-tongue-wink-2:before{content:"\f2e9"}.ti-mood-unamused:before{content:"\f2eb"}.ti-mood-wink:before{content:"\f2ed"}.ti-mood-wink-2:before{content:"\f2ec"}.ti-mood-wrrr:before{content:"\f2ee"}.ti-mood-xd:before{content:"\f2ef"}.ti-moon:before{content:"\eaf8"}.ti-moon-2:before{content:"\ece6"}.ti-moon-off:before{content:"\f162"}.ti-moon-stars:before{content:"\ece7"}.ti-moped:before{content:"\ecbc"}.ti-motorbike:before{content:"\eeb6"}.ti-mountain:before{content:"\ef97"}.ti-mountain-off:before{content:"\f411"}.ti-mouse:before{content:"\eaf9"}.ti-mouse-2:before{content:"\f1d7"}.ti-mouse-off:before{content:"\f163"}.ti-moustache:before{content:"\f4c9"}.ti-movie:before{content:"\eafa"}.ti-movie-off:before{content:"\f164"}.ti-mug:before{content:"\eafb"}.ti-mug-off:before{content:"\f165"}.ti-multiplier-0-5x:before{content:"\ef41"}.ti-multiplier-1-5x:before{content:"\ef42"}.ti-multiplier-1x:before{content:"\ef43"}.ti-multiplier-2x:before{content:"\ef44"}.ti-mushroom:before{content:"\ef14"}.ti-mushroom-off:before{content:"\f412"}.ti-music:before{content:"\eafc"}.ti-music-off:before{content:"\f166"}.ti-navigation:before{content:"\f2c8"}.ti-navigation-off:before{content:"\f413"}.ti-needle:before{content:"\f508"}.ti-needle-thread:before{content:"\f507"}.ti-network:before{content:"\f09f"}.ti-network-off:before{content:"\f414"}.ti-new-section:before{content:"\ebc1"}.ti-news:before{content:"\eafd"}.ti-news-off:before{content:"\f167"}.ti-nfc:before{content:"\eeb7"}.ti-nfc-off:before{content:"\f168"}.ti-no-copyright:before{content:"\efb9"}.ti-no-creative-commons:before{content:"\efba"}.ti-no-derivatives:before{content:"\efbb"}.ti-north-star:before{content:"\f014"}.ti-note:before{content:"\eb6d"}.ti-note-off:before{content:"\f169"}.ti-notebook:before{content:"\eb96"}.ti-notebook-off:before{content:"\f415"}.ti-notes:before{content:"\eb6e"}.ti-notes-off:before{content:"\f16a"}.ti-notification:before{content:"\eafe"}.ti-notification-off:before{content:"\f16b"}.ti-number:before{content:"\f1fe"}.ti-number-0:before{content:"\edf0"}.ti-number-1:before{content:"\edf1"}.ti-number-2:before{content:"\edf2"}.ti-number-3:before{content:"\edf3"}.ti-number-4:before{content:"\edf4"}.ti-number-5:before{content:"\edf5"}.ti-number-6:before{content:"\edf6"}.ti-number-7:before{content:"\edf7"}.ti-number-8:before{content:"\edf8"}.ti-number-9:before{content:"\edf9"}.ti-numbers:before{content:"\f015"}.ti-nurse:before{content:"\ef65"}.ti-octagon:before{content:"\ecbd"}.ti-octagon-off:before{content:"\eeb8"}.ti-old:before{content:"\eeb9"}.ti-olympics:before{content:"\eeba"}.ti-olympics-off:before{content:"\f416"}.ti-om:before{content:"\f58d"}.ti-omega:before{content:"\eb97"}.ti-outbound:before{content:"\f249"}.ti-outlet:before{content:"\ebd7"}.ti-oval:before{content:"\f02e"}.ti-oval-vertical:before{content:"\f02d"}.ti-overline:before{content:"\eebb"}.ti-package:before{content:"\eaff"}.ti-package-off:before{content:"\f16c"}.ti-packages:before{content:"\f2c9"}.ti-packge-export:before{content:"\f07a"}.ti-packge-import:before{content:"\f07b"}.ti-pacman:before{content:"\eebc"}.ti-page-break:before{content:"\ec81"}.ti-paint:before{content:"\eb00"}.ti-paint-off:before{content:"\f16d"}.ti-palette:before{content:"\eb01"}.ti-palette-off:before{content:"\f16e"}.ti-panorama-horizontal:before{content:"\ed33"}.ti-panorama-horizontal-off:before{content:"\f417"}.ti-panorama-vertical:before{content:"\ed34"}.ti-panorama-vertical-off:before{content:"\f418"}.ti-paper-bag:before{content:"\f02f"}.ti-paper-bag-off:before{content:"\f16f"}.ti-paperclip:before{content:"\eb02"}.ti-parachute:before{content:"\ed7c"}.ti-parachute-off:before{content:"\f170"}.ti-parentheses:before{content:"\ebd8"}.ti-parentheses-off:before{content:"\f171"}.ti-parking:before{content:"\eb03"}.ti-parking-off:before{content:"\f172"}.ti-password:before{content:"\f4ca"}.ti-paw:before{content:"\eff9"}.ti-paw-off:before{content:"\f419"}.ti-peace:before{content:"\ecbe"}.ti-pencil:before{content:"\eb04"}.ti-pencil-minus:before{content:"\f1eb"}.ti-pencil-off:before{content:"\f173"}.ti-pencil-plus:before{content:"\f1ec"}.ti-pennant:before{content:"\ed7d"}.ti-pennant-2:before{content:"\f06a"}.ti-pennant-off:before{content:"\f174"}.ti-pentagon:before{content:"\efe3"}.ti-pentagon-off:before{content:"\f41a"}.ti-pentagram:before{content:"\f586"}.ti-pepper:before{content:"\ef15"}.ti-pepper-off:before{content:"\f175"}.ti-percentage:before{content:"\ecf4"}.ti-perfume:before{content:"\f509"}.ti-perspective:before{content:"\eebd"}.ti-perspective-off:before{content:"\f176"}.ti-phone:before{content:"\eb09"}.ti-phone-call:before{content:"\eb05"}.ti-phone-calling:before{content:"\ec43"}.ti-phone-check:before{content:"\ec05"}.ti-phone-incoming:before{content:"\eb06"}.ti-phone-off:before{content:"\ecf5"}.ti-phone-outgoing:before{content:"\eb07"}.ti-phone-pause:before{content:"\eb08"}.ti-phone-plus:before{content:"\ec06"}.ti-phone-x:before{content:"\ec07"}.ti-photo:before{content:"\eb0a"}.ti-photo-cancel:before{content:"\f35d"}.ti-photo-check:before{content:"\f35e"}.ti-photo-down:before{content:"\f35f"}.ti-photo-edit:before{content:"\f360"}.ti-photo-heart:before{content:"\f361"}.ti-photo-minus:before{content:"\f362"}.ti-photo-off:before{content:"\ecf6"}.ti-photo-plus:before{content:"\f363"}.ti-photo-search:before{content:"\f364"}.ti-photo-shield:before{content:"\f365"}.ti-photo-star:before{content:"\f366"}.ti-photo-up:before{content:"\f38b"}.ti-photo-x:before{content:"\f367"}.ti-physotherapist:before{content:"\eebe"}.ti-picture-in-picture:before{content:"\ed35"}.ti-picture-in-picture-off:before{content:"\ed43"}.ti-picture-in-picture-on:before{content:"\ed44"}.ti-picture-in-picture-top:before{content:"\efe4"}.ti-pig:before{content:"\ef52"}.ti-pig-money:before{content:"\f38c"}.ti-pig-off:before{content:"\f177"}.ti-pilcrow:before{content:"\f5f6"}.ti-pill:before{content:"\ec44"}.ti-pill-off:before{content:"\f178"}.ti-pills:before{content:"\ef66"}.ti-pin:before{content:"\ec9c"}.ti-ping-pong:before{content:"\f38d"}.ti-pinned:before{content:"\ed60"}.ti-pinned-off:before{content:"\ed5f"}.ti-pizza:before{content:"\edbb"}.ti-pizza-off:before{content:"\f179"}.ti-placeholder:before{content:"\f626"}.ti-plane:before{content:"\eb6f"}.ti-plane-arrival:before{content:"\eb99"}.ti-plane-departure:before{content:"\eb9a"}.ti-plane-inflight:before{content:"\ef98"}.ti-plane-off:before{content:"\f17a"}.ti-plane-tilt:before{content:"\f1ed"}.ti-planet:before{content:"\ec08"}.ti-planet-off:before{content:"\f17b"}.ti-plant:before{content:"\ed50"}.ti-plant-2:before{content:"\ed7e"}.ti-plant-2-off:before{content:"\f17c"}.ti-plant-off:before{content:"\f17d"}.ti-play-card:before{content:"\eebf"}.ti-play-card-off:before{content:"\f17e"}.ti-player-eject:before{content:"\efbc"}.ti-player-pause:before{content:"\ed45"}.ti-player-play:before{content:"\ed46"}.ti-player-record:before{content:"\ed47"}.ti-player-skip-back:before{content:"\ed48"}.ti-player-skip-forward:before{content:"\ed49"}.ti-player-stop:before{content:"\ed4a"}.ti-player-track-next:before{content:"\ed4b"}.ti-player-track-prev:before{content:"\ed4c"}.ti-playlist:before{content:"\eec0"}.ti-playlist-add:before{content:"\f008"}.ti-playlist-off:before{content:"\f17f"}.ti-playlist-x:before{content:"\f009"}.ti-playstation-circle:before{content:"\f2ad"}.ti-playstation-square:before{content:"\f2ae"}.ti-playstation-triangle:before{content:"\f2af"}.ti-playstation-x:before{content:"\f2b0"}.ti-plug:before{content:"\ebd9"}.ti-plug-connected:before{content:"\f00a"}.ti-plug-connected-x:before{content:"\f0a0"}.ti-plug-off:before{content:"\f180"}.ti-plug-x:before{content:"\f0a1"}.ti-plus:before{content:"\eb0b"}.ti-png:before{content:"\f3ad"}.ti-podium:before{content:"\f1d8"}.ti-podium-off:before{content:"\f41b"}.ti-point:before{content:"\eb0c"}.ti-point-off:before{content:"\f181"}.ti-pointer:before{content:"\f265"}.ti-pokeball:before{content:"\eec1"}.ti-pokeball-off:before{content:"\f41c"}.ti-poker-chip:before{content:"\f515"}.ti-polaroid:before{content:"\eec2"}.ti-polygon:before{content:"\efd0"}.ti-polygon-off:before{content:"\f182"}.ti-poo:before{content:"\f258"}.ti-pool:before{content:"\ed91"}.ti-pool-off:before{content:"\f41d"}.ti-power:before{content:"\eb0d"}.ti-pray:before{content:"\ecbf"}.ti-premium-rights:before{content:"\efbd"}.ti-prescription:before{content:"\ef99"}.ti-presentation:before{content:"\eb70"}.ti-presentation-analytics:before{content:"\eec3"}.ti-presentation-off:before{content:"\f183"}.ti-printer:before{content:"\eb0e"}.ti-printer-off:before{content:"\f184"}.ti-prison:before{content:"\ef79"}.ti-prompt:before{content:"\eb0f"}.ti-propeller:before{content:"\eec4"}.ti-propeller-off:before{content:"\f185"}.ti-pumpkin-scary:before{content:"\f587"}.ti-puzzle:before{content:"\eb10"}.ti-puzzle-2:before{content:"\ef83"}.ti-puzzle-off:before{content:"\f186"}.ti-pyramid:before{content:"\eec5"}.ti-pyramid-off:before{content:"\f187"}.ti-qrcode:before{content:"\eb11"}.ti-qrcode-off:before{content:"\f41e"}.ti-question-circle:before{content:"\f637"}.ti-question-mark:before{content:"\ec9d"}.ti-quote:before{content:"\efbe"}.ti-quote-off:before{content:"\f188"}.ti-radar:before{content:"\f017"}.ti-radar-2:before{content:"\f016"}.ti-radar-off:before{content:"\f41f"}.ti-radio:before{content:"\ef2d"}.ti-radio-off:before{content:"\f420"}.ti-radioactive:before{content:"\ecc0"}.ti-radioactive-off:before{content:"\f189"}.ti-radius-bottom-left:before{content:"\eec6"}.ti-radius-bottom-right:before{content:"\eec7"}.ti-radius-top-left:before{content:"\eec8"}.ti-radius-top-right:before{content:"\eec9"}.ti-rainbow:before{content:"\edbc"}.ti-rainbow-off:before{content:"\f18a"}.ti-rating-12-plus:before{content:"\f266"}.ti-rating-14-plus:before{content:"\f267"}.ti-rating-16-plus:before{content:"\f268"}.ti-rating-18-plus:before{content:"\f269"}.ti-rating-21-plus:before{content:"\f26a"}.ti-razor:before{content:"\f4b5"}.ti-razor-electric:before{content:"\f4b4"}.ti-receipt:before{content:"\edfd"}.ti-receipt-2:before{content:"\edfa"}.ti-receipt-off:before{content:"\edfb"}.ti-receipt-refund:before{content:"\edfc"}.ti-receipt-tax:before{content:"\edbd"}.ti-recharging:before{content:"\eeca"}.ti-record-mail:before{content:"\eb12"}.ti-record-mail-off:before{content:"\f18b"}.ti-rectangle:before{content:"\ed37"}.ti-rectangle-vertical:before{content:"\ed36"}.ti-recycle:before{content:"\eb9b"}.ti-recycle-off:before{content:"\f18c"}.ti-refresh:before{content:"\eb13"}.ti-refresh-alert:before{content:"\ed57"}.ti-refresh-dot:before{content:"\efbf"}.ti-refresh-off:before{content:"\f18d"}.ti-regex:before{content:"\f31f"}.ti-regex-off:before{content:"\f421"}.ti-registered:before{content:"\eb14"}.ti-relation-many-to-many:before{content:"\ed7f"}.ti-relation-one-to-many:before{content:"\ed80"}.ti-relation-one-to-one:before{content:"\ed81"}.ti-reload:before{content:"\f3ae"}.ti-repeat:before{content:"\eb72"}.ti-repeat-off:before{content:"\f18e"}.ti-repeat-once:before{content:"\eb71"}.ti-replace:before{content:"\ebc7"}.ti-replace-off:before{content:"\f422"}.ti-report:before{content:"\eece"}.ti-report-analytics:before{content:"\eecb"}.ti-report-medical:before{content:"\eecc"}.ti-report-money:before{content:"\eecd"}.ti-report-off:before{content:"\f18f"}.ti-report-search:before{content:"\ef84"}.ti-resize:before{content:"\eecf"}.ti-ribbon-health:before{content:"\f58e"}.ti-ripple:before{content:"\ed82"}.ti-ripple-off:before{content:"\f190"}.ti-road:before{content:"\f018"}.ti-road-off:before{content:"\f191"}.ti-road-sign:before{content:"\ecdd"}.ti-robot:before{content:"\f00b"}.ti-robot-off:before{content:"\f192"}.ti-rocket:before{content:"\ec45"}.ti-rocket-off:before{content:"\f193"}.ti-roller-skating:before{content:"\efd1"}.ti-rollercoaster:before{content:"\f0a2"}.ti-rollercoaster-off:before{content:"\f423"}.ti-rosette:before{content:"\f599"}.ti-rosette-number-0:before{content:"\f58f"}.ti-rosette-number-1:before{content:"\f590"}.ti-rosette-number-2:before{content:"\f591"}.ti-rosette-number-3:before{content:"\f592"}.ti-rosette-number-4:before{content:"\f593"}.ti-rosette-number-5:before{content:"\f594"}.ti-rosette-number-6:before{content:"\f595"}.ti-rosette-number-7:before{content:"\f596"}.ti-rosette-number-8:before{content:"\f597"}.ti-rosette-number-9:before{content:"\f598"}.ti-rotate:before{content:"\eb16"}.ti-rotate-2:before{content:"\ebb4"}.ti-rotate-360:before{content:"\ef85"}.ti-rotate-clockwise:before{content:"\eb15"}.ti-rotate-clockwise-2:before{content:"\ebb5"}.ti-rotate-dot:before{content:"\efe5"}.ti-rotate-rectangle:before{content:"\ec15"}.ti-route:before{content:"\eb17"}.ti-route-2:before{content:"\f4b6"}.ti-route-off:before{content:"\f194"}.ti-router:before{content:"\eb18"}.ti-router-off:before{content:"\f424"}.ti-row-insert-bottom:before{content:"\eed0"}.ti-row-insert-top:before{content:"\eed1"}.ti-rss:before{content:"\eb19"}.ti-rubber-stamp:before{content:"\f5ab"}.ti-rubber-stamp-off:before{content:"\f5aa"}.ti-ruler:before{content:"\eb1a"}.ti-ruler-2:before{content:"\eed2"}.ti-ruler-2-off:before{content:"\f195"}.ti-ruler-3:before{content:"\f290"}.ti-ruler-measure:before{content:"\f291"}.ti-ruler-off:before{content:"\f196"}.ti-run:before{content:"\ec82"}.ti-s-turn-down:before{content:"\f516"}.ti-s-turn-left:before{content:"\f517"}.ti-s-turn-right:before{content:"\f518"}.ti-s-turn-up:before{content:"\f519"}.ti-sailboat:before{content:"\ec83"}.ti-sailboat-2:before{content:"\f5f7"}.ti-sailboat-off:before{content:"\f425"}.ti-salad:before{content:"\f50a"}.ti-salt:before{content:"\ef16"}.ti-satellite:before{content:"\eed3"}.ti-satellite-off:before{content:"\f197"}.ti-sausage:before{content:"\ef17"}.ti-scale:before{content:"\ebc2"}.ti-scale-off:before{content:"\f198"}.ti-scale-outline:before{content:"\ef53"}.ti-scale-outline-off:before{content:"\f199"}.ti-scan:before{content:"\ebc8"}.ti-scan-eye:before{content:"\f1ff"}.ti-schema:before{content:"\f200"}.ti-schema-off:before{content:"\f426"}.ti-school:before{content:"\ecf7"}.ti-school-bell:before{content:"\f64a"}.ti-school-off:before{content:"\f19a"}.ti-scissors:before{content:"\eb1b"}.ti-scissors-off:before{content:"\f19b"}.ti-scooter:before{content:"\ec6c"}.ti-scooter-electric:before{content:"\ecc1"}.ti-screen-share:before{content:"\ed18"}.ti-screen-share-off:before{content:"\ed17"}.ti-screenshot:before{content:"\f201"}.ti-scribble:before{content:"\f0a3"}.ti-scribble-off:before{content:"\f427"}.ti-script:before{content:"\f2da"}.ti-script-minus:before{content:"\f2d7"}.ti-script-plus:before{content:"\f2d8"}.ti-script-x:before{content:"\f2d9"}.ti-scuba-mask:before{content:"\eed4"}.ti-scuba-mask-off:before{content:"\f428"}.ti-sdk:before{content:"\f3af"}.ti-search:before{content:"\eb1c"}.ti-search-off:before{content:"\f19c"}.ti-section:before{content:"\eed5"}.ti-section-sign:before{content:"\f019"}.ti-seeding:before{content:"\ed51"}.ti-seeding-off:before{content:"\f19d"}.ti-select:before{content:"\ec9e"}.ti-selector:before{content:"\eb1d"}.ti-send:before{content:"\eb1e"}.ti-send-off:before{content:"\f429"}.ti-seo:before{content:"\f26b"}.ti-separator:before{content:"\ebda"}.ti-separator-horizontal:before{content:"\ec79"}.ti-separator-vertical:before{content:"\ec7a"}.ti-server:before{content:"\eb1f"}.ti-server-2:before{content:"\f07c"}.ti-server-bolt:before{content:"\f320"}.ti-server-cog:before{content:"\f321"}.ti-server-off:before{content:"\f19e"}.ti-servicemark:before{content:"\ec09"}.ti-settings:before{content:"\eb20"}.ti-settings-2:before{content:"\f5ac"}.ti-settings-automation:before{content:"\eed6"}.ti-settings-off:before{content:"\f19f"}.ti-shadow:before{content:"\eed8"}.ti-shadow-off:before{content:"\eed7"}.ti-shape:before{content:"\eb9c"}.ti-shape-2:before{content:"\eed9"}.ti-shape-3:before{content:"\eeda"}.ti-shape-off:before{content:"\f1a0"}.ti-share:before{content:"\eb21"}.ti-share-off:before{content:"\f1a1"}.ti-shield:before{content:"\eb24"}.ti-shield-check:before{content:"\eb22"}.ti-shield-checkered:before{content:"\ef9a"}.ti-shield-chevron:before{content:"\ef9b"}.ti-shield-half:before{content:"\f358"}.ti-shield-half-filled:before{content:"\f357"}.ti-shield-lock:before{content:"\ed58"}.ti-shield-off:before{content:"\ecf8"}.ti-shield-x:before{content:"\eb23"}.ti-ship:before{content:"\ec84"}.ti-ship-off:before{content:"\f42a"}.ti-shirt:before{content:"\ec0a"}.ti-shirt-off:before{content:"\f1a2"}.ti-shirt-sport:before{content:"\f26c"}.ti-shoe:before{content:"\efd2"}.ti-shoe-off:before{content:"\f1a4"}.ti-shopping-bag:before{content:"\f5f8"}.ti-shopping-cart:before{content:"\eb25"}.ti-shopping-cart-discount:before{content:"\eedb"}.ti-shopping-cart-off:before{content:"\eedc"}.ti-shopping-cart-plus:before{content:"\eedd"}.ti-shopping-cart-x:before{content:"\eede"}.ti-shovel:before{content:"\f1d9"}.ti-shredder:before{content:"\eedf"}.ti-sign-left:before{content:"\f06b"}.ti-sign-right:before{content:"\f06c"}.ti-signal-3g:before{content:"\f1ee"}.ti-signal-4g:before{content:"\f1ef"}.ti-signal-4g-plus:before{content:"\f259"}.ti-signal-5g:before{content:"\f1f0"}.ti-signature:before{content:"\eee0"}.ti-signature-off:before{content:"\f1a5"}.ti-sitemap:before{content:"\eb9d"}.ti-sitemap-off:before{content:"\f1a6"}.ti-skateboard:before{content:"\ecc2"}.ti-skateboard-off:before{content:"\f42b"}.ti-skull:before{content:"\f292"}.ti-slash:before{content:"\f4f9"}.ti-slashes:before{content:"\f588"}.ti-sleigh:before{content:"\ef9c"}.ti-slice:before{content:"\ebdb"}.ti-slideshow:before{content:"\ebc9"}.ti-smart-home:before{content:"\ecde"}.ti-smart-home-off:before{content:"\f1a7"}.ti-smoking:before{content:"\ecc4"}.ti-smoking-no:before{content:"\ecc3"}.ti-snowflake:before{content:"\ec0b"}.ti-snowflake-off:before{content:"\f1a8"}.ti-snowman:before{content:"\f26d"}.ti-soccer-field:before{content:"\ed92"}.ti-social:before{content:"\ebec"}.ti-social-off:before{content:"\f1a9"}.ti-sock:before{content:"\eee1"}.ti-sofa:before{content:"\efaf"}.ti-sofa-off:before{content:"\f42c"}.ti-sort-0-9:before{content:"\f54d"}.ti-sort-9-0:before{content:"\f54e"}.ti-sort-a-z:before{content:"\f54f"}.ti-sort-ascending:before{content:"\eb26"}.ti-sort-ascending-2:before{content:"\eee2"}.ti-sort-ascending-letters:before{content:"\ef18"}.ti-sort-ascending-numbers:before{content:"\ef19"}.ti-sort-descending:before{content:"\eb27"}.ti-sort-descending-2:before{content:"\eee3"}.ti-sort-descending-letters:before{content:"\ef1a"}.ti-sort-descending-numbers:before{content:"\ef1b"}.ti-sort-z-a:before{content:"\f550"}.ti-sos:before{content:"\f24a"}.ti-soup:before{content:"\ef2e"}.ti-soup-off:before{content:"\f42d"}.ti-source-code:before{content:"\f4a2"}.ti-space:before{content:"\ec0c"}.ti-space-off:before{content:"\f1aa"}.ti-spacing-horizontal:before{content:"\ef54"}.ti-spacing-vertical:before{content:"\ef55"}.ti-spade:before{content:"\effa"}.ti-speakerphone:before{content:"\ed61"}.ti-speedboat:before{content:"\ed93"}.ti-spider:before{content:"\f293"}.ti-spiral:before{content:"\f294"}.ti-spiral-off:before{content:"\f42e"}.ti-sport-billard:before{content:"\eee4"}.ti-spray:before{content:"\f50b"}.ti-spy:before{content:"\f227"}.ti-spy-off:before{content:"\f42f"}.ti-square:before{content:"\eb2c"}.ti-square-arrow-down:before{content:"\f4b7"}.ti-square-arrow-left:before{content:"\f4b8"}.ti-square-arrow-right:before{content:"\f4b9"}.ti-square-arrow-up:before{content:"\f4ba"}.ti-square-asterisk:before{content:"\f01a"}.ti-square-check:before{content:"\eb28"}.ti-square-chevron-down:before{content:"\f627"}.ti-square-chevron-left:before{content:"\f628"}.ti-square-chevron-right:before{content:"\f629"}.ti-square-chevron-up:before{content:"\f62a"}.ti-square-chevrons-down:before{content:"\f64b"}.ti-square-chevrons-left:before{content:"\f64c"}.ti-square-chevrons-right:before{content:"\f64d"}.ti-square-chevrons-up:before{content:"\f64e"}.ti-square-dot:before{content:"\ed59"}.ti-square-f0:before{content:"\f526"}.ti-square-f1:before{content:"\f527"}.ti-square-f2:before{content:"\f528"}.ti-square-f3:before{content:"\f529"}.ti-square-f4:before{content:"\f52a"}.ti-square-f5:before{content:"\f52b"}.ti-square-f6:before{content:"\f52c"}.ti-square-f7:before{content:"\f52d"}.ti-square-f8:before{content:"\f52e"}.ti-square-f9:before{content:"\f52f"}.ti-square-forbid:before{content:"\ed5b"}.ti-square-forbid-2:before{content:"\ed5a"}.ti-square-half:before{content:"\effb"}.ti-square-key:before{content:"\f638"}.ti-square-letter-a:before{content:"\f47c"}.ti-square-letter-b:before{content:"\f47d"}.ti-square-letter-c:before{content:"\f47e"}.ti-square-letter-d:before{content:"\f47f"}.ti-square-letter-e:before{content:"\f480"}.ti-square-letter-f:before{content:"\f481"}.ti-square-letter-g:before{content:"\f482"}.ti-square-letter-h:before{content:"\f483"}.ti-square-letter-i:before{content:"\f484"}.ti-square-letter-j:before{content:"\f485"}.ti-square-letter-k:before{content:"\f486"}.ti-square-letter-l:before{content:"\f487"}.ti-square-letter-m:before{content:"\f488"}.ti-square-letter-n:before{content:"\f489"}.ti-square-letter-o:before{content:"\f48a"}.ti-square-letter-p:before{content:"\f48b"}.ti-square-letter-q:before{content:"\f48c"}.ti-square-letter-r:before{content:"\f48d"}.ti-square-letter-s:before{content:"\f48e"}.ti-square-letter-t:before{content:"\f48f"}.ti-square-letter-u:before{content:"\f490"}.ti-square-letter-v:before{content:"\f4bb"}.ti-square-letter-w:before{content:"\f491"}.ti-square-letter-x:before{content:"\f4bc"}.ti-square-letter-y:before{content:"\f492"}.ti-square-letter-z:before{content:"\f493"}.ti-square-minus:before{content:"\eb29"}.ti-square-number-0:before{content:"\eee5"}.ti-square-number-1:before{content:"\eee6"}.ti-square-number-2:before{content:"\eee7"}.ti-square-number-3:before{content:"\eee8"}.ti-square-number-4:before{content:"\eee9"}.ti-square-number-5:before{content:"\eeea"}.ti-square-number-6:before{content:"\eeeb"}.ti-square-number-7:before{content:"\eeec"}.ti-square-number-8:before{content:"\eeed"}.ti-square-number-9:before{content:"\eeee"}.ti-square-off:before{content:"\eeef"}.ti-square-plus:before{content:"\eb2a"}.ti-square-root:before{content:"\eef1"}.ti-square-root-2:before{content:"\eef0"}.ti-square-rotated:before{content:"\ecdf"}.ti-square-rotated-forbid:before{content:"\f01c"}.ti-square-rotated-forbid-2:before{content:"\f01b"}.ti-square-rotated-off:before{content:"\eef2"}.ti-square-rounded:before{content:"\f59a"}.ti-square-rounded-arrow-down:before{content:"\f639"}.ti-square-rounded-arrow-left:before{content:"\f63a"}.ti-square-rounded-arrow-right:before{content:"\f63b"}.ti-square-rounded-arrow-up:before{content:"\f63c"}.ti-square-rounded-check:before{content:"\f63d"}.ti-square-rounded-chevron-down:before{content:"\f62b"}.ti-square-rounded-chevron-left:before{content:"\f62c"}.ti-square-rounded-chevron-right:before{content:"\f62d"}.ti-square-rounded-chevron-up:before{content:"\f62e"}.ti-square-rounded-chevrons-down:before{content:"\f64f"}.ti-square-rounded-chevrons-left:before{content:"\f650"}.ti-square-rounded-chevrons-right:before{content:"\f651"}.ti-square-rounded-chevrons-up:before{content:"\f652"}.ti-square-rounded-letter-a:before{content:"\f5ae"}.ti-square-rounded-letter-b:before{content:"\f5af"}.ti-square-rounded-letter-c:before{content:"\f5b0"}.ti-square-rounded-letter-d:before{content:"\f5b1"}.ti-square-rounded-letter-e:before{content:"\f5b2"}.ti-square-rounded-letter-f:before{content:"\f5b3"}.ti-square-rounded-letter-g:before{content:"\f5b4"}.ti-square-rounded-letter-h:before{content:"\f5b5"}.ti-square-rounded-letter-i:before{content:"\f5b6"}.ti-square-rounded-letter-j:before{content:"\f5b7"}.ti-square-rounded-letter-k:before{content:"\f5b8"}.ti-square-rounded-letter-l:before{content:"\f5b9"}.ti-square-rounded-letter-m:before{content:"\f5ba"}.ti-square-rounded-letter-n:before{content:"\f5bb"}.ti-square-rounded-letter-o:before{content:"\f5bc"}.ti-square-rounded-letter-p:before{content:"\f5bd"}.ti-square-rounded-letter-q:before{content:"\f5be"}.ti-square-rounded-letter-r:before{content:"\f5bf"}.ti-square-rounded-letter-s:before{content:"\f5c0"}.ti-square-rounded-letter-t:before{content:"\f5c1"}.ti-square-rounded-letter-u:before{content:"\f5c2"}.ti-square-rounded-letter-v:before{content:"\f5c3"}.ti-square-rounded-letter-w:before{content:"\f5c4"}.ti-square-rounded-letter-x:before{content:"\f5c5"}.ti-square-rounded-letter-y:before{content:"\f5c6"}.ti-square-rounded-letter-z:before{content:"\f5c7"}.ti-square-rounded-minus:before{content:"\f63e"}.ti-square-rounded-number-0:before{content:"\f5c8"}.ti-square-rounded-number-1:before{content:"\f5c9"}.ti-square-rounded-number-2:before{content:"\f5ca"}.ti-square-rounded-number-3:before{content:"\f5cb"}.ti-square-rounded-number-4:before{content:"\f5cc"}.ti-square-rounded-number-5:before{content:"\f5cd"}.ti-square-rounded-number-6:before{content:"\f5ce"}.ti-square-rounded-number-7:before{content:"\f5cf"}.ti-square-rounded-number-8:before{content:"\f5d0"}.ti-square-rounded-number-9:before{content:"\f5d1"}.ti-square-rounded-plus:before{content:"\f63f"}.ti-square-rounded-x:before{content:"\f640"}.ti-square-toggle:before{content:"\eef4"}.ti-square-toggle-horizontal:before{content:"\eef3"}.ti-square-x:before{content:"\eb2b"}.ti-squares-diagonal:before{content:"\eef5"}.ti-squares-filled:before{content:"\eef6"}.ti-stack:before{content:"\eb2d"}.ti-stack-2:before{content:"\eef7"}.ti-stack-3:before{content:"\ef9d"}.ti-stack-pop:before{content:"\f234"}.ti-stack-push:before{content:"\f235"}.ti-stairs:before{content:"\eca6"}.ti-stairs-down:before{content:"\eca4"}.ti-stairs-up:before{content:"\eca5"}.ti-star:before{content:"\eb2e"}.ti-star-half:before{content:"\ed19"}.ti-star-off:before{content:"\ed62"}.ti-stars:before{content:"\ed38"}.ti-stars-off:before{content:"\f430"}.ti-status-change:before{content:"\f3b0"}.ti-steam:before{content:"\f24b"}.ti-steering-wheel:before{content:"\ec7b"}.ti-steering-wheel-off:before{content:"\f431"}.ti-step-into:before{content:"\ece0"}.ti-step-out:before{content:"\ece1"}.ti-stereo-glasses:before{content:"\f4cb"}.ti-stethoscope:before{content:"\edbe"}.ti-stethoscope-off:before{content:"\f432"}.ti-sticker:before{content:"\eb2f"}.ti-storm:before{content:"\f24c"}.ti-storm-off:before{content:"\f433"}.ti-stretching:before{content:"\f2db"}.ti-strikethrough:before{content:"\eb9e"}.ti-submarine:before{content:"\ed94"}.ti-subscript:before{content:"\eb9f"}.ti-subtask:before{content:"\ec9f"}.ti-sum:before{content:"\eb73"}.ti-sum-off:before{content:"\f1ab"}.ti-sun:before{content:"\eb30"}.ti-sun-high:before{content:"\f236"}.ti-sun-low:before{content:"\f237"}.ti-sun-moon:before{content:"\f4a3"}.ti-sun-off:before{content:"\ed63"}.ti-sun-wind:before{content:"\f238"}.ti-sunglasses:before{content:"\f239"}.ti-sunrise:before{content:"\ef1c"}.ti-sunset:before{content:"\ec31"}.ti-sunset-2:before{content:"\f23a"}.ti-superscript:before{content:"\eba0"}.ti-svg:before{content:"\f25a"}.ti-swimming:before{content:"\ec92"}.ti-swipe:before{content:"\f551"}.ti-switch:before{content:"\eb33"}.ti-switch-2:before{content:"\edbf"}.ti-switch-3:before{content:"\edc0"}.ti-switch-horizontal:before{content:"\eb31"}.ti-switch-vertical:before{content:"\eb32"}.ti-sword:before{content:"\f030"}.ti-sword-off:before{content:"\f434"}.ti-swords:before{content:"\f132"}.ti-table:before{content:"\eba1"}.ti-table-alias:before{content:"\f25b"}.ti-table-export:before{content:"\eef8"}.ti-table-import:before{content:"\eef9"}.ti-table-off:before{content:"\eefa"}.ti-table-options:before{content:"\f25c"}.ti-table-shortcut:before{content:"\f25d"}.ti-tag:before{content:"\eb34"}.ti-tag-off:before{content:"\efc0"}.ti-tags:before{content:"\ef86"}.ti-tags-off:before{content:"\efc1"}.ti-tallymark-1:before{content:"\ec46"}.ti-tallymark-2:before{content:"\ec47"}.ti-tallymark-3:before{content:"\ec48"}.ti-tallymark-4:before{content:"\ec49"}.ti-tallymarks:before{content:"\ec4a"}.ti-tank:before{content:"\ed95"}.ti-target:before{content:"\eb35"}.ti-target-arrow:before{content:"\f51a"}.ti-target-off:before{content:"\f1ad"}.ti-teapot:before{content:"\f552"}.ti-telescope:before{content:"\f07d"}.ti-telescope-off:before{content:"\f1ae"}.ti-temperature:before{content:"\eb38"}.ti-temperature-celsius:before{content:"\eb36"}.ti-temperature-fahrenheit:before{content:"\eb37"}.ti-temperature-minus:before{content:"\ebed"}.ti-temperature-off:before{content:"\f1af"}.ti-temperature-plus:before{content:"\ebee"}.ti-template:before{content:"\eb39"}.ti-template-off:before{content:"\f1b0"}.ti-tent:before{content:"\eefb"}.ti-tent-off:before{content:"\f435"}.ti-terminal:before{content:"\ebdc"}.ti-terminal-2:before{content:"\ebef"}.ti-test-pipe:before{content:"\eb3a"}.ti-test-pipe-2:before{content:"\f0a4"}.ti-test-pipe-off:before{content:"\f1b1"}.ti-tex:before{content:"\f4e0"}.ti-text-caption:before{content:"\f4a4"}.ti-text-color:before{content:"\f2dc"}.ti-text-decrease:before{content:"\f202"}.ti-text-direction-ltr:before{content:"\eefc"}.ti-text-direction-rtl:before{content:"\eefd"}.ti-text-increase:before{content:"\f203"}.ti-text-orientation:before{content:"\f2a4"}.ti-text-plus:before{content:"\f2a5"}.ti-text-recognition:before{content:"\f204"}.ti-text-resize:before{content:"\ef87"}.ti-text-size:before{content:"\f2b1"}.ti-text-spellcheck:before{content:"\f2a6"}.ti-text-wrap:before{content:"\ebdd"}.ti-text-wrap-disabled:before{content:"\eca7"}.ti-texture:before{content:"\f51b"}.ti-thermometer:before{content:"\ef67"}.ti-thumb-down:before{content:"\eb3b"}.ti-thumb-down-off:before{content:"\f436"}.ti-thumb-up:before{content:"\eb3c"}.ti-thumb-up-off:before{content:"\f437"}.ti-tic-tac:before{content:"\f51c"}.ti-ticket:before{content:"\eb3d"}.ti-ticket-off:before{content:"\f1b2"}.ti-tie:before{content:"\f07e"}.ti-tilde:before{content:"\f4a5"}.ti-tilt-shift:before{content:"\eefe"}.ti-tilt-shift-off:before{content:"\f1b3"}.ti-timeline:before{content:"\f031"}.ti-timeline-event:before{content:"\f553"}.ti-timeline-event-exclamation:before{content:"\f662"}.ti-timeline-event-minus:before{content:"\f663"}.ti-timeline-event-plus:before{content:"\f664"}.ti-timeline-event-text:before{content:"\f665"}.ti-timeline-event-x:before{content:"\f666"}.ti-tir:before{content:"\ebf0"}.ti-toggle-left:before{content:"\eb3e"}.ti-toggle-right:before{content:"\eb3f"}.ti-toilet-paper:before{content:"\efd3"}.ti-toilet-paper-off:before{content:"\f1b4"}.ti-tool:before{content:"\eb40"}.ti-tools:before{content:"\ebca"}.ti-tools-kitchen:before{content:"\ed64"}.ti-tools-kitchen-2:before{content:"\eeff"}.ti-tools-kitchen-2-off:before{content:"\f1b5"}.ti-tools-kitchen-off:before{content:"\f1b6"}.ti-tools-off:before{content:"\f1b7"}.ti-tooltip:before{content:"\f2dd"}.ti-topology-bus:before{content:"\f5d9"}.ti-topology-complex:before{content:"\f5da"}.ti-topology-full:before{content:"\f5dc"}.ti-topology-full-hierarchy:before{content:"\f5db"}.ti-topology-ring:before{content:"\f5df"}.ti-topology-ring-2:before{content:"\f5dd"}.ti-topology-ring-3:before{content:"\f5de"}.ti-topology-star:before{content:"\f5e5"}.ti-topology-star-2:before{content:"\f5e0"}.ti-topology-star-3:before{content:"\f5e1"}.ti-topology-star-ring:before{content:"\f5e4"}.ti-topology-star-ring-2:before{content:"\f5e2"}.ti-topology-star-ring-3:before{content:"\f5e3"}.ti-torii:before{content:"\f59b"}.ti-tornado:before{content:"\ece2"}.ti-tournament:before{content:"\ecd0"}.ti-tower:before{content:"\f2cb"}.ti-tower-off:before{content:"\f2ca"}.ti-track:before{content:"\ef00"}.ti-tractor:before{content:"\ec0d"}.ti-trademark:before{content:"\ec0e"}.ti-traffic-cone:before{content:"\ec0f"}.ti-traffic-cone-off:before{content:"\f1b8"}.ti-traffic-lights:before{content:"\ed39"}.ti-traffic-lights-off:before{content:"\f1b9"}.ti-train:before{content:"\ed96"}.ti-transfer-in:before{content:"\ef2f"}.ti-transfer-out:before{content:"\ef30"}.ti-transform:before{content:"\f38e"}.ti-transition-bottom:before{content:"\f2b2"}.ti-transition-left:before{content:"\f2b3"}.ti-transition-right:before{content:"\f2b4"}.ti-transition-top:before{content:"\f2b5"}.ti-trash:before{content:"\eb41"}.ti-trash-off:before{content:"\ed65"}.ti-trash-x:before{content:"\ef88"}.ti-tree:before{content:"\ef01"}.ti-trees:before{content:"\ec10"}.ti-trekking:before{content:"\f5ad"}.ti-trending-down:before{content:"\eb42"}.ti-trending-down-2:before{content:"\edc1"}.ti-trending-down-3:before{content:"\edc2"}.ti-trending-up:before{content:"\eb43"}.ti-trending-up-2:before{content:"\edc3"}.ti-trending-up-3:before{content:"\edc4"}.ti-triangle:before{content:"\eb44"}.ti-triangle-inverted:before{content:"\f01d"}.ti-triangle-off:before{content:"\ef02"}.ti-triangle-square-circle:before{content:"\ece8"}.ti-triangles:before{content:"\f0a5"}.ti-trident:before{content:"\ecc5"}.ti-trolley:before{content:"\f4cc"}.ti-trophy:before{content:"\eb45"}.ti-trophy-off:before{content:"\f438"}.ti-trowel:before{content:"\f368"}.ti-truck:before{content:"\ebc4"}.ti-truck-delivery:before{content:"\ec4b"}.ti-truck-loading:before{content:"\f1da"}.ti-truck-off:before{content:"\ef03"}.ti-truck-return:before{content:"\ec4c"}.ti-txt:before{content:"\f3b1"}.ti-typography:before{content:"\ebc5"}.ti-typography-off:before{content:"\f1ba"}.ti-uf-off:before{content:"\f26e"}.ti-ufo:before{content:"\f26f"}.ti-umbrella:before{content:"\ebf1"}.ti-umbrella-off:before{content:"\f1bb"}.ti-underline:before{content:"\eba2"}.ti-unlink:before{content:"\eb46"}.ti-upload:before{content:"\eb47"}.ti-urgent:before{content:"\eb48"}.ti-usb:before{content:"\f00c"}.ti-user:before{content:"\eb4d"}.ti-user-check:before{content:"\eb49"}.ti-user-circle:before{content:"\ef68"}.ti-user-exclamation:before{content:"\ec12"}.ti-user-minus:before{content:"\eb4a"}.ti-user-off:before{content:"\ecf9"}.ti-user-plus:before{content:"\eb4b"}.ti-user-search:before{content:"\ef89"}.ti-user-x:before{content:"\eb4c"}.ti-users:before{content:"\ebf2"}.ti-uv-index:before{content:"\f3b2"}.ti-ux-circle:before{content:"\f369"}.ti-vaccine:before{content:"\ef04"}.ti-vaccine-bottle:before{content:"\ef69"}.ti-vaccine-bottle-off:before{content:"\f439"}.ti-vaccine-off:before{content:"\f1bc"}.ti-vacuum-cleaner:before{content:"\f5e6"}.ti-variable:before{content:"\ef05"}.ti-variable-minus:before{content:"\f36a"}.ti-variable-off:before{content:"\f1bd"}.ti-variable-plus:before{content:"\f36b"}.ti-vector:before{content:"\eca9"}.ti-vector-bezier:before{content:"\ef1d"}.ti-vector-bezier-2:before{content:"\f1a3"}.ti-vector-bezier-arc:before{content:"\f4cd"}.ti-vector-bezier-circle:before{content:"\f4ce"}.ti-vector-off:before{content:"\f1be"}.ti-vector-spline:before{content:"\f565"}.ti-vector-triangle:before{content:"\eca8"}.ti-vector-triangle-off:before{content:"\f1bf"}.ti-venus:before{content:"\ec86"}.ti-versions:before{content:"\ed52"}.ti-versions-off:before{content:"\f1c0"}.ti-video:before{content:"\ed22"}.ti-video-minus:before{content:"\ed1f"}.ti-video-off:before{content:"\ed20"}.ti-video-plus:before{content:"\ed21"}.ti-view-360:before{content:"\ed84"}.ti-view-360-off:before{content:"\f1c1"}.ti-viewfinder:before{content:"\eb4e"}.ti-viewfinder-off:before{content:"\f1c2"}.ti-viewport-narrow:before{content:"\ebf3"}.ti-viewport-wide:before{content:"\ebf4"}.ti-vinyl:before{content:"\f00d"}.ti-vip:before{content:"\f3b3"}.ti-vip-off:before{content:"\f43a"}.ti-virus:before{content:"\eb74"}.ti-virus-off:before{content:"\ed66"}.ti-virus-search:before{content:"\ed67"}.ti-vocabulary:before{content:"\ef1e"}.ti-vocabulary-off:before{content:"\f43b"}.ti-volume:before{content:"\eb51"}.ti-volume-2:before{content:"\eb4f"}.ti-volume-3:before{content:"\eb50"}.ti-volume-off:before{content:"\f1c3"}.ti-walk:before{content:"\ec87"}.ti-wall:before{content:"\ef7a"}.ti-wall-off:before{content:"\f43c"}.ti-wallet:before{content:"\eb75"}.ti-wallet-off:before{content:"\f1c4"}.ti-wallpaper:before{content:"\ef56"}.ti-wallpaper-off:before{content:"\f1c5"}.ti-wand:before{content:"\ebcb"}.ti-wand-off:before{content:"\f1c6"}.ti-wash:before{content:"\f311"}.ti-wash-dry:before{content:"\f304"}.ti-wash-dry-1:before{content:"\f2fa"}.ti-wash-dry-2:before{content:"\f2fb"}.ti-wash-dry-3:before{content:"\f2fc"}.ti-wash-dry-a:before{content:"\f2fd"}.ti-wash-dry-dip:before{content:"\f2fe"}.ti-wash-dry-f:before{content:"\f2ff"}.ti-wash-dry-hang:before{content:"\f300"}.ti-wash-dry-off:before{content:"\f301"}.ti-wash-dry-p:before{content:"\f302"}.ti-wash-dry-shade:before{content:"\f303"}.ti-wash-dry-w:before{content:"\f322"}.ti-wash-dryclean:before{content:"\f305"}.ti-wash-dryclean-off:before{content:"\f323"}.ti-wash-gentle:before{content:"\f306"}.ti-wash-machine:before{content:"\f25e"}.ti-wash-off:before{content:"\f307"}.ti-wash-press:before{content:"\f308"}.ti-wash-temperature-1:before{content:"\f309"}.ti-wash-temperature-2:before{content:"\f30a"}.ti-wash-temperature-3:before{content:"\f30b"}.ti-wash-temperature-4:before{content:"\f30c"}.ti-wash-temperature-5:before{content:"\f30d"}.ti-wash-temperature-6:before{content:"\f30e"}.ti-wash-tumble-dry:before{content:"\f30f"}.ti-wash-tumble-off:before{content:"\f310"}.ti-wave-saw-tool:before{content:"\ecd3"}.ti-wave-sine:before{content:"\ecd4"}.ti-wave-square:before{content:"\ecd5"}.ti-webhook:before{content:"\f01e"}.ti-webhook-off:before{content:"\f43d"}.ti-weight:before{content:"\f589"}.ti-wheelchair:before{content:"\f1db"}.ti-wheelchair-off:before{content:"\f43e"}.ti-whirl:before{content:"\f51d"}.ti-wifi:before{content:"\eb52"}.ti-wifi-0:before{content:"\eba3"}.ti-wifi-1:before{content:"\eba4"}.ti-wifi-2:before{content:"\eba5"}.ti-wifi-off:before{content:"\ecfa"}.ti-wind:before{content:"\ec34"}.ti-wind-off:before{content:"\f1c7"}.ti-windmill:before{content:"\ed85"}.ti-windmill-off:before{content:"\f1c8"}.ti-window:before{content:"\ef06"}.ti-window-maximize:before{content:"\f1f1"}.ti-window-minimize:before{content:"\f1f2"}.ti-window-off:before{content:"\f1c9"}.ti-windsock:before{content:"\f06d"}.ti-wiper:before{content:"\ecab"}.ti-wiper-wash:before{content:"\ecaa"}.ti-woman:before{content:"\eb53"}.ti-wood:before{content:"\f359"}.ti-world:before{content:"\eb54"}.ti-world-download:before{content:"\ef8a"}.ti-world-latitude:before{content:"\ed2e"}.ti-world-longitude:before{content:"\ed2f"}.ti-world-off:before{content:"\f1ca"}.ti-world-upload:before{content:"\ef8b"}.ti-world-www:before{content:"\f38f"}.ti-wrecking-ball:before{content:"\ed97"}.ti-writing:before{content:"\ef08"}.ti-writing-off:before{content:"\f1cb"}.ti-writing-sign:before{content:"\ef07"}.ti-writing-sign-off:before{content:"\f1cc"}.ti-x:before{content:"\eb55"}.ti-xbox-a:before{content:"\f2b6"}.ti-xbox-b:before{content:"\f2b7"}.ti-xbox-x:before{content:"\f2b8"}.ti-xbox-y:before{content:"\f2b9"}.ti-yin-yang:before{content:"\ec35"}.ti-yoga:before{content:"\f01f"}.ti-zeppelin:before{content:"\f270"}.ti-zeppelin-off:before{content:"\f43f"}.ti-zip:before{content:"\f3b4"}.ti-zodiac-aquarius:before{content:"\ecac"}.ti-zodiac-aries:before{content:"\ecad"}.ti-zodiac-cancer:before{content:"\ecae"}.ti-zodiac-capricorn:before{content:"\ecaf"}.ti-zodiac-gemini:before{content:"\ecb0"}.ti-zodiac-leo:before{content:"\ecb1"}.ti-zodiac-libra:before{content:"\ecb2"}.ti-zodiac-pisces:before{content:"\ecb3"}.ti-zodiac-sagittarius:before{content:"\ecb4"}.ti-zodiac-scorpio:before{content:"\ecb5"}.ti-zodiac-taurus:before{content:"\ecb6"}.ti-zodiac-virgo:before{content:"\ecb7"}.ti-zoom-cancel:before{content:"\ec4d"}.ti-zoom-check:before{content:"\ef09"}.ti-zoom-code:before{content:"\f07f"}.ti-zoom-exclamation:before{content:"\f080"}.ti-zoom-in:before{content:"\eb56"}.ti-zoom-in-area:before{content:"\f1dc"}.ti-zoom-money:before{content:"\ef0a"}.ti-zoom-out:before{content:"\eb57"}.ti-zoom-out-area:before{content:"\f1dd"}.ti-zoom-pan:before{content:"\f1de"}.ti-zoom-question:before{content:"\edeb"}.ti-zoom-replace:before{content:"\f2a7"}.ti-zoom-reset:before{content:"\f295"}.ti-zzz:before{content:"\f228"}.ti-zzz-off:before{content:"\f440"} \ No newline at end of file diff --git a/icons-png/123.png b/icons-png/123.png deleted file mode 100644 index 7a7cf7ea3..000000000 Binary files a/icons-png/123.png and /dev/null differ diff --git a/icons-png/24-hours.png b/icons-png/24-hours.png deleted file mode 100644 index dd7141323..000000000 Binary files a/icons-png/24-hours.png and /dev/null differ diff --git a/icons-png/2fa.png b/icons-png/2fa.png deleted file mode 100644 index e2bc58eee..000000000 Binary files a/icons-png/2fa.png and /dev/null differ diff --git a/icons-png/360-view.png b/icons-png/360-view.png deleted file mode 100644 index 98ef63283..000000000 Binary files a/icons-png/360-view.png and /dev/null differ diff --git a/icons-png/360.png b/icons-png/360.png deleted file mode 100644 index d77a007f3..000000000 Binary files a/icons-png/360.png and /dev/null differ diff --git a/icons-png/3d-cube-sphere-off.png b/icons-png/3d-cube-sphere-off.png deleted file mode 100644 index 2c25bf19a..000000000 Binary files a/icons-png/3d-cube-sphere-off.png and /dev/null differ diff --git a/icons-png/3d-cube-sphere.png b/icons-png/3d-cube-sphere.png deleted file mode 100644 index a18e7caed..000000000 Binary files a/icons-png/3d-cube-sphere.png and /dev/null differ diff --git a/icons-png/3d-rotate.png b/icons-png/3d-rotate.png deleted file mode 100644 index 56c2769c9..000000000 Binary files a/icons-png/3d-rotate.png and /dev/null differ diff --git a/icons-png/a-b-2.png b/icons-png/a-b-2.png deleted file mode 100644 index 5d9087706..000000000 Binary files a/icons-png/a-b-2.png and /dev/null differ diff --git a/icons-png/a-b-off.png b/icons-png/a-b-off.png deleted file mode 100644 index aa5fffe1d..000000000 Binary files a/icons-png/a-b-off.png and /dev/null differ diff --git a/icons-png/a-b.png b/icons-png/a-b.png deleted file mode 100644 index 45d4241a5..000000000 Binary files a/icons-png/a-b.png and /dev/null differ diff --git a/icons-png/abacus-off.png b/icons-png/abacus-off.png deleted file mode 100644 index 0a129476d..000000000 Binary files a/icons-png/abacus-off.png and /dev/null differ diff --git a/icons-png/abacus.png b/icons-png/abacus.png deleted file mode 100644 index 94acc022b..000000000 Binary files a/icons-png/abacus.png and /dev/null differ diff --git a/icons-png/abc.png b/icons-png/abc.png deleted file mode 100644 index 3ac6eeff5..000000000 Binary files a/icons-png/abc.png and /dev/null differ diff --git a/icons-png/access-point-off.png b/icons-png/access-point-off.png deleted file mode 100644 index ed9508aa6..000000000 Binary files a/icons-png/access-point-off.png and /dev/null differ diff --git a/icons-png/access-point.png b/icons-png/access-point.png deleted file mode 100644 index 87a1a0e82..000000000 Binary files a/icons-png/access-point.png and /dev/null differ diff --git a/icons-png/accessible-off.png b/icons-png/accessible-off.png deleted file mode 100644 index 67e7f9a1e..000000000 Binary files a/icons-png/accessible-off.png and /dev/null differ diff --git a/icons-png/accessible.png b/icons-png/accessible.png deleted file mode 100644 index c842240c1..000000000 Binary files a/icons-png/accessible.png and /dev/null differ diff --git a/icons-png/activity-heartbeat.png b/icons-png/activity-heartbeat.png deleted file mode 100644 index 5f540aa57..000000000 Binary files a/icons-png/activity-heartbeat.png and /dev/null differ diff --git a/icons-png/activity.png b/icons-png/activity.png deleted file mode 100644 index e93dfb5f4..000000000 Binary files a/icons-png/activity.png and /dev/null differ diff --git a/icons-png/ad-2.png b/icons-png/ad-2.png deleted file mode 100644 index 601556093..000000000 Binary files a/icons-png/ad-2.png and /dev/null differ diff --git a/icons-png/ad-off.png b/icons-png/ad-off.png deleted file mode 100644 index 070558a46..000000000 Binary files a/icons-png/ad-off.png and /dev/null differ diff --git a/icons-png/ad.png b/icons-png/ad.png deleted file mode 100644 index 629c8e755..000000000 Binary files a/icons-png/ad.png and /dev/null differ diff --git a/icons-png/address-book-off.png b/icons-png/address-book-off.png deleted file mode 100644 index 8b353d623..000000000 Binary files a/icons-png/address-book-off.png and /dev/null differ diff --git a/icons-png/address-book.png b/icons-png/address-book.png deleted file mode 100644 index 28789de94..000000000 Binary files a/icons-png/address-book.png and /dev/null differ diff --git a/icons-png/adjustments-alt.png b/icons-png/adjustments-alt.png deleted file mode 100644 index afff2d7f7..000000000 Binary files a/icons-png/adjustments-alt.png and /dev/null differ diff --git a/icons-png/adjustments-horizontal.png b/icons-png/adjustments-horizontal.png deleted file mode 100644 index 9b4c65b3d..000000000 Binary files a/icons-png/adjustments-horizontal.png and /dev/null differ diff --git a/icons-png/adjustments-off.png b/icons-png/adjustments-off.png deleted file mode 100644 index f244d2ea0..000000000 Binary files a/icons-png/adjustments-off.png and /dev/null differ diff --git a/icons-png/adjustments.png b/icons-png/adjustments.png deleted file mode 100644 index 0788325fa..000000000 Binary files a/icons-png/adjustments.png and /dev/null differ diff --git a/icons-png/aerial-lift.png b/icons-png/aerial-lift.png deleted file mode 100644 index 3627cf7bc..000000000 Binary files a/icons-png/aerial-lift.png and /dev/null differ diff --git a/icons-png/affiliate.png b/icons-png/affiliate.png deleted file mode 100644 index 989e5597d..000000000 Binary files a/icons-png/affiliate.png and /dev/null differ diff --git a/icons-png/air-balloon.png b/icons-png/air-balloon.png deleted file mode 100644 index 2a0593a58..000000000 Binary files a/icons-png/air-balloon.png and /dev/null differ diff --git a/icons-png/air-conditioning-disabled.png b/icons-png/air-conditioning-disabled.png deleted file mode 100644 index 0e3d77844..000000000 Binary files a/icons-png/air-conditioning-disabled.png and /dev/null differ diff --git a/icons-png/air-conditioning.png b/icons-png/air-conditioning.png deleted file mode 100644 index 723e4dc70..000000000 Binary files a/icons-png/air-conditioning.png and /dev/null differ diff --git a/icons-png/alarm-minus.png b/icons-png/alarm-minus.png deleted file mode 100644 index c9f729741..000000000 Binary files a/icons-png/alarm-minus.png and /dev/null differ diff --git a/icons-png/alarm-off.png b/icons-png/alarm-off.png deleted file mode 100644 index 3efdf06f6..000000000 Binary files a/icons-png/alarm-off.png and /dev/null differ diff --git a/icons-png/alarm-plus.png b/icons-png/alarm-plus.png deleted file mode 100644 index 6107bbf85..000000000 Binary files a/icons-png/alarm-plus.png and /dev/null differ diff --git a/icons-png/alarm-snooze.png b/icons-png/alarm-snooze.png deleted file mode 100644 index 4014cd65d..000000000 Binary files a/icons-png/alarm-snooze.png and /dev/null differ diff --git a/icons-png/alarm.png b/icons-png/alarm.png deleted file mode 100644 index e3795e122..000000000 Binary files a/icons-png/alarm.png and /dev/null differ diff --git a/icons-png/album-off.png b/icons-png/album-off.png deleted file mode 100644 index 04b6eb101..000000000 Binary files a/icons-png/album-off.png and /dev/null differ diff --git a/icons-png/album.png b/icons-png/album.png deleted file mode 100644 index aca747b7a..000000000 Binary files a/icons-png/album.png and /dev/null differ diff --git a/icons-png/alert-circle.png b/icons-png/alert-circle.png deleted file mode 100644 index 0f943627f..000000000 Binary files a/icons-png/alert-circle.png and /dev/null differ diff --git a/icons-png/alert-octagon.png b/icons-png/alert-octagon.png deleted file mode 100644 index 96454f6b9..000000000 Binary files a/icons-png/alert-octagon.png and /dev/null differ diff --git a/icons-png/alert-triangle.png b/icons-png/alert-triangle.png deleted file mode 100644 index 8f13fe3af..000000000 Binary files a/icons-png/alert-triangle.png and /dev/null differ diff --git a/icons-png/alien.png b/icons-png/alien.png deleted file mode 100644 index 42cb5a966..000000000 Binary files a/icons-png/alien.png and /dev/null differ diff --git a/icons-png/align-box-bottom-center.png b/icons-png/align-box-bottom-center.png deleted file mode 100644 index 571294817..000000000 Binary files a/icons-png/align-box-bottom-center.png and /dev/null differ diff --git a/icons-png/align-box-bottom-left.png b/icons-png/align-box-bottom-left.png deleted file mode 100644 index 13f9e085a..000000000 Binary files a/icons-png/align-box-bottom-left.png and /dev/null differ diff --git a/icons-png/align-box-bottom-right.png b/icons-png/align-box-bottom-right.png deleted file mode 100644 index 0a5acf790..000000000 Binary files a/icons-png/align-box-bottom-right.png and /dev/null differ diff --git a/icons-png/align-box-left-bottom.png b/icons-png/align-box-left-bottom.png deleted file mode 100644 index a88b7e3d4..000000000 Binary files a/icons-png/align-box-left-bottom.png and /dev/null differ diff --git a/icons-png/align-box-left-middle.png b/icons-png/align-box-left-middle.png deleted file mode 100644 index 0ea8149d3..000000000 Binary files a/icons-png/align-box-left-middle.png and /dev/null differ diff --git a/icons-png/align-box-left-top.png b/icons-png/align-box-left-top.png deleted file mode 100644 index 9eae40504..000000000 Binary files a/icons-png/align-box-left-top.png and /dev/null differ diff --git a/icons-png/align-box-right-bottom.png b/icons-png/align-box-right-bottom.png deleted file mode 100644 index b8e9cead4..000000000 Binary files a/icons-png/align-box-right-bottom.png and /dev/null differ diff --git a/icons-png/align-box-right-middle.png b/icons-png/align-box-right-middle.png deleted file mode 100644 index 6f7e3c948..000000000 Binary files a/icons-png/align-box-right-middle.png and /dev/null differ diff --git a/icons-png/align-box-right-top.png b/icons-png/align-box-right-top.png deleted file mode 100644 index 6e4cbacc4..000000000 Binary files a/icons-png/align-box-right-top.png and /dev/null differ diff --git a/icons-png/align-box-top-center.png b/icons-png/align-box-top-center.png deleted file mode 100644 index abf31d071..000000000 Binary files a/icons-png/align-box-top-center.png and /dev/null differ diff --git a/icons-png/align-box-top-left.png b/icons-png/align-box-top-left.png deleted file mode 100644 index fa9c2a953..000000000 Binary files a/icons-png/align-box-top-left.png and /dev/null differ diff --git a/icons-png/align-box-top-right.png b/icons-png/align-box-top-right.png deleted file mode 100644 index 7c1aaa925..000000000 Binary files a/icons-png/align-box-top-right.png and /dev/null differ diff --git a/icons-png/align-center.png b/icons-png/align-center.png deleted file mode 100644 index 80d2566a6..000000000 Binary files a/icons-png/align-center.png and /dev/null differ diff --git a/icons-png/align-justified.png b/icons-png/align-justified.png deleted file mode 100644 index 2907461cb..000000000 Binary files a/icons-png/align-justified.png and /dev/null differ diff --git a/icons-png/align-left.png b/icons-png/align-left.png deleted file mode 100644 index ced34db25..000000000 Binary files a/icons-png/align-left.png and /dev/null differ diff --git a/icons-png/align-right.png b/icons-png/align-right.png deleted file mode 100644 index d0eee91da..000000000 Binary files a/icons-png/align-right.png and /dev/null differ diff --git a/icons-png/alpha.png b/icons-png/alpha.png deleted file mode 100644 index e75b6c73a..000000000 Binary files a/icons-png/alpha.png and /dev/null differ diff --git a/icons-png/alphabet-cyrillic.png b/icons-png/alphabet-cyrillic.png deleted file mode 100644 index f2fa13bd3..000000000 Binary files a/icons-png/alphabet-cyrillic.png and /dev/null differ diff --git a/icons-png/alphabet-greek.png b/icons-png/alphabet-greek.png deleted file mode 100644 index 6143d0c07..000000000 Binary files a/icons-png/alphabet-greek.png and /dev/null differ diff --git a/icons-png/alphabet-latin.png b/icons-png/alphabet-latin.png deleted file mode 100644 index e35e91bf5..000000000 Binary files a/icons-png/alphabet-latin.png and /dev/null differ diff --git a/icons-png/ambulance.png b/icons-png/ambulance.png deleted file mode 100644 index b88ca8de0..000000000 Binary files a/icons-png/ambulance.png and /dev/null differ diff --git a/icons-png/ampersand.png b/icons-png/ampersand.png deleted file mode 100644 index 73208c1df..000000000 Binary files a/icons-png/ampersand.png and /dev/null differ diff --git a/icons-png/analyze-off.png b/icons-png/analyze-off.png deleted file mode 100644 index ce3e65cf5..000000000 Binary files a/icons-png/analyze-off.png and /dev/null differ diff --git a/icons-png/analyze.png b/icons-png/analyze.png deleted file mode 100644 index 1b8477ccb..000000000 Binary files a/icons-png/analyze.png and /dev/null differ diff --git a/icons-png/anchor-off.png b/icons-png/anchor-off.png deleted file mode 100644 index 2db6c7f9a..000000000 Binary files a/icons-png/anchor-off.png and /dev/null differ diff --git a/icons-png/anchor.png b/icons-png/anchor.png deleted file mode 100644 index e191bbc1c..000000000 Binary files a/icons-png/anchor.png and /dev/null differ diff --git a/icons-png/angle.png b/icons-png/angle.png deleted file mode 100644 index ed06d016f..000000000 Binary files a/icons-png/angle.png and /dev/null differ diff --git a/icons-png/ankh.png b/icons-png/ankh.png deleted file mode 100644 index e0ba0abeb..000000000 Binary files a/icons-png/ankh.png and /dev/null differ diff --git a/icons-png/antenna-bars-1.png b/icons-png/antenna-bars-1.png deleted file mode 100644 index 79e08f4f7..000000000 Binary files a/icons-png/antenna-bars-1.png and /dev/null differ diff --git a/icons-png/antenna-bars-2.png b/icons-png/antenna-bars-2.png deleted file mode 100644 index bbbaf15f1..000000000 Binary files a/icons-png/antenna-bars-2.png and /dev/null differ diff --git a/icons-png/antenna-bars-3.png b/icons-png/antenna-bars-3.png deleted file mode 100644 index 7c46f9186..000000000 Binary files a/icons-png/antenna-bars-3.png and /dev/null differ diff --git a/icons-png/antenna-bars-4.png b/icons-png/antenna-bars-4.png deleted file mode 100644 index 9349d6b87..000000000 Binary files a/icons-png/antenna-bars-4.png and /dev/null differ diff --git a/icons-png/antenna-bars-5.png b/icons-png/antenna-bars-5.png deleted file mode 100644 index b73e77614..000000000 Binary files a/icons-png/antenna-bars-5.png and /dev/null differ diff --git a/icons-png/antenna-bars-off.png b/icons-png/antenna-bars-off.png deleted file mode 100644 index c25530c58..000000000 Binary files a/icons-png/antenna-bars-off.png and /dev/null differ diff --git a/icons-png/antenna-off.png b/icons-png/antenna-off.png deleted file mode 100644 index d504df1fb..000000000 Binary files a/icons-png/antenna-off.png and /dev/null differ diff --git a/icons-png/antenna.png b/icons-png/antenna.png deleted file mode 100644 index c4ba359cb..000000000 Binary files a/icons-png/antenna.png and /dev/null differ diff --git a/icons-png/aperture-off.png b/icons-png/aperture-off.png deleted file mode 100644 index 2d6b4e7e3..000000000 Binary files a/icons-png/aperture-off.png and /dev/null differ diff --git a/icons-png/aperture.png b/icons-png/aperture.png deleted file mode 100644 index 5f51cb1bb..000000000 Binary files a/icons-png/aperture.png and /dev/null differ diff --git a/icons-png/api-app-off.png b/icons-png/api-app-off.png deleted file mode 100644 index 9d6f212a5..000000000 Binary files a/icons-png/api-app-off.png and /dev/null differ diff --git a/icons-png/api-app.png b/icons-png/api-app.png deleted file mode 100644 index 272860c9a..000000000 Binary files a/icons-png/api-app.png and /dev/null differ diff --git a/icons-png/api-off.png b/icons-png/api-off.png deleted file mode 100644 index 2ec5b6bc5..000000000 Binary files a/icons-png/api-off.png and /dev/null differ diff --git a/icons-png/api.png b/icons-png/api.png deleted file mode 100644 index 89c2a0c5a..000000000 Binary files a/icons-png/api.png and /dev/null differ diff --git a/icons-png/app-window.png b/icons-png/app-window.png deleted file mode 100644 index b1e7f15cc..000000000 Binary files a/icons-png/app-window.png and /dev/null differ diff --git a/icons-png/apple.png b/icons-png/apple.png deleted file mode 100644 index 7a720feee..000000000 Binary files a/icons-png/apple.png and /dev/null differ diff --git a/icons-png/apps-off.png b/icons-png/apps-off.png deleted file mode 100644 index bd98e600f..000000000 Binary files a/icons-png/apps-off.png and /dev/null differ diff --git a/icons-png/apps.png b/icons-png/apps.png deleted file mode 100644 index 6e2bd9cd0..000000000 Binary files a/icons-png/apps.png and /dev/null differ diff --git a/icons-png/archive-off.png b/icons-png/archive-off.png deleted file mode 100644 index 2bde010d7..000000000 Binary files a/icons-png/archive-off.png and /dev/null differ diff --git a/icons-png/archive.png b/icons-png/archive.png deleted file mode 100644 index f886b85e0..000000000 Binary files a/icons-png/archive.png and /dev/null differ diff --git a/icons-png/armchair-2-off.png b/icons-png/armchair-2-off.png deleted file mode 100644 index b7e8aa2b9..000000000 Binary files a/icons-png/armchair-2-off.png and /dev/null differ diff --git a/icons-png/armchair-2.png b/icons-png/armchair-2.png deleted file mode 100644 index 6e89fb8e4..000000000 Binary files a/icons-png/armchair-2.png and /dev/null differ diff --git a/icons-png/armchair-off.png b/icons-png/armchair-off.png deleted file mode 100644 index b99f4e903..000000000 Binary files a/icons-png/armchair-off.png and /dev/null differ diff --git a/icons-png/armchair.png b/icons-png/armchair.png deleted file mode 100644 index 0eee52a28..000000000 Binary files a/icons-png/armchair.png and /dev/null differ diff --git a/icons-png/arrow-autofit-content.png b/icons-png/arrow-autofit-content.png deleted file mode 100644 index 045679ca7..000000000 Binary files a/icons-png/arrow-autofit-content.png and /dev/null differ diff --git a/icons-png/arrow-autofit-down.png b/icons-png/arrow-autofit-down.png deleted file mode 100644 index 876ec0103..000000000 Binary files a/icons-png/arrow-autofit-down.png and /dev/null differ diff --git a/icons-png/arrow-autofit-height.png b/icons-png/arrow-autofit-height.png deleted file mode 100644 index 19664b770..000000000 Binary files a/icons-png/arrow-autofit-height.png and /dev/null differ diff --git a/icons-png/arrow-autofit-left.png b/icons-png/arrow-autofit-left.png deleted file mode 100644 index 877d93832..000000000 Binary files a/icons-png/arrow-autofit-left.png and /dev/null differ diff --git a/icons-png/arrow-autofit-right.png b/icons-png/arrow-autofit-right.png deleted file mode 100644 index c9a3b12e1..000000000 Binary files a/icons-png/arrow-autofit-right.png and /dev/null differ diff --git a/icons-png/arrow-autofit-up.png b/icons-png/arrow-autofit-up.png deleted file mode 100644 index fdc3be0d7..000000000 Binary files a/icons-png/arrow-autofit-up.png and /dev/null differ diff --git a/icons-png/arrow-autofit-width.png b/icons-png/arrow-autofit-width.png deleted file mode 100644 index 1b515ed59..000000000 Binary files a/icons-png/arrow-autofit-width.png and /dev/null differ diff --git a/icons-png/arrow-back-up.png b/icons-png/arrow-back-up.png deleted file mode 100644 index 7495eace8..000000000 Binary files a/icons-png/arrow-back-up.png and /dev/null differ diff --git a/icons-png/arrow-back.png b/icons-png/arrow-back.png deleted file mode 100644 index ea4c3517b..000000000 Binary files a/icons-png/arrow-back.png and /dev/null differ diff --git a/icons-png/arrow-badge-down.png b/icons-png/arrow-badge-down.png deleted file mode 100644 index 80226e837..000000000 Binary files a/icons-png/arrow-badge-down.png and /dev/null differ diff --git a/icons-png/arrow-badge-left.png b/icons-png/arrow-badge-left.png deleted file mode 100644 index d27b8b865..000000000 Binary files a/icons-png/arrow-badge-left.png and /dev/null differ diff --git a/icons-png/arrow-badge-right.png b/icons-png/arrow-badge-right.png deleted file mode 100644 index 6c0449525..000000000 Binary files a/icons-png/arrow-badge-right.png and /dev/null differ diff --git a/icons-png/arrow-badge-up.png b/icons-png/arrow-badge-up.png deleted file mode 100644 index 88939db60..000000000 Binary files a/icons-png/arrow-badge-up.png and /dev/null differ diff --git a/icons-png/arrow-bar-down.png b/icons-png/arrow-bar-down.png deleted file mode 100644 index d4362fc04..000000000 Binary files a/icons-png/arrow-bar-down.png and /dev/null differ diff --git a/icons-png/arrow-bar-left.png b/icons-png/arrow-bar-left.png deleted file mode 100644 index b4f9121b4..000000000 Binary files a/icons-png/arrow-bar-left.png and /dev/null differ diff --git a/icons-png/arrow-bar-right.png b/icons-png/arrow-bar-right.png deleted file mode 100644 index 4fe7b5043..000000000 Binary files a/icons-png/arrow-bar-right.png and /dev/null differ diff --git a/icons-png/arrow-bar-to-down.png b/icons-png/arrow-bar-to-down.png deleted file mode 100644 index 7eabfd247..000000000 Binary files a/icons-png/arrow-bar-to-down.png and /dev/null differ diff --git a/icons-png/arrow-bar-to-left.png b/icons-png/arrow-bar-to-left.png deleted file mode 100644 index 8868bb4b4..000000000 Binary files a/icons-png/arrow-bar-to-left.png and /dev/null differ diff --git a/icons-png/arrow-bar-to-right.png b/icons-png/arrow-bar-to-right.png deleted file mode 100644 index f90e5894b..000000000 Binary files a/icons-png/arrow-bar-to-right.png and /dev/null differ diff --git a/icons-png/arrow-bar-to-up.png b/icons-png/arrow-bar-to-up.png deleted file mode 100644 index 402babc79..000000000 Binary files a/icons-png/arrow-bar-to-up.png and /dev/null differ diff --git a/icons-png/arrow-bar-up.png b/icons-png/arrow-bar-up.png deleted file mode 100644 index 6fd512b0c..000000000 Binary files a/icons-png/arrow-bar-up.png and /dev/null differ diff --git a/icons-png/arrow-bear-left-2.png b/icons-png/arrow-bear-left-2.png deleted file mode 100644 index 81773f11e..000000000 Binary files a/icons-png/arrow-bear-left-2.png and /dev/null differ diff --git a/icons-png/arrow-bear-left.png b/icons-png/arrow-bear-left.png deleted file mode 100644 index ab72ec7e2..000000000 Binary files a/icons-png/arrow-bear-left.png and /dev/null differ diff --git a/icons-png/arrow-bear-right-2.png b/icons-png/arrow-bear-right-2.png deleted file mode 100644 index 16e2761e4..000000000 Binary files a/icons-png/arrow-bear-right-2.png and /dev/null differ diff --git a/icons-png/arrow-bear-right.png b/icons-png/arrow-bear-right.png deleted file mode 100644 index 2896c6993..000000000 Binary files a/icons-png/arrow-bear-right.png and /dev/null differ diff --git a/icons-png/arrow-big-down-line.png b/icons-png/arrow-big-down-line.png deleted file mode 100644 index 482b27527..000000000 Binary files a/icons-png/arrow-big-down-line.png and /dev/null differ diff --git a/icons-png/arrow-big-down-lines.png b/icons-png/arrow-big-down-lines.png deleted file mode 100644 index c270da955..000000000 Binary files a/icons-png/arrow-big-down-lines.png and /dev/null differ diff --git a/icons-png/arrow-big-down.png b/icons-png/arrow-big-down.png deleted file mode 100644 index 9ab382600..000000000 Binary files a/icons-png/arrow-big-down.png and /dev/null differ diff --git a/icons-png/arrow-big-left-line.png b/icons-png/arrow-big-left-line.png deleted file mode 100644 index 367c9eda9..000000000 Binary files a/icons-png/arrow-big-left-line.png and /dev/null differ diff --git a/icons-png/arrow-big-left-lines.png b/icons-png/arrow-big-left-lines.png deleted file mode 100644 index 617c56090..000000000 Binary files a/icons-png/arrow-big-left-lines.png and /dev/null differ diff --git a/icons-png/arrow-big-left.png b/icons-png/arrow-big-left.png deleted file mode 100644 index b956fdc3e..000000000 Binary files a/icons-png/arrow-big-left.png and /dev/null differ diff --git a/icons-png/arrow-big-right-line.png b/icons-png/arrow-big-right-line.png deleted file mode 100644 index 0d7d5a239..000000000 Binary files a/icons-png/arrow-big-right-line.png and /dev/null differ diff --git a/icons-png/arrow-big-right-lines.png b/icons-png/arrow-big-right-lines.png deleted file mode 100644 index 9dfb6591c..000000000 Binary files a/icons-png/arrow-big-right-lines.png and /dev/null differ diff --git a/icons-png/arrow-big-right.png b/icons-png/arrow-big-right.png deleted file mode 100644 index de2c68447..000000000 Binary files a/icons-png/arrow-big-right.png and /dev/null differ diff --git a/icons-png/arrow-big-top.png b/icons-png/arrow-big-top.png deleted file mode 100644 index aa736b20c..000000000 Binary files a/icons-png/arrow-big-top.png and /dev/null differ diff --git a/icons-png/arrow-big-up-line.png b/icons-png/arrow-big-up-line.png deleted file mode 100644 index 5e6a8a45c..000000000 Binary files a/icons-png/arrow-big-up-line.png and /dev/null differ diff --git a/icons-png/arrow-big-up-lines.png b/icons-png/arrow-big-up-lines.png deleted file mode 100644 index cd92bb42e..000000000 Binary files a/icons-png/arrow-big-up-lines.png and /dev/null differ diff --git a/icons-png/arrow-bounce.png b/icons-png/arrow-bounce.png deleted file mode 100644 index 5eba9e193..000000000 Binary files a/icons-png/arrow-bounce.png and /dev/null differ diff --git a/icons-png/arrow-curve-left.png b/icons-png/arrow-curve-left.png deleted file mode 100644 index bd72e88dd..000000000 Binary files a/icons-png/arrow-curve-left.png and /dev/null differ diff --git a/icons-png/arrow-curve-right.png b/icons-png/arrow-curve-right.png deleted file mode 100644 index a039010ac..000000000 Binary files a/icons-png/arrow-curve-right.png and /dev/null differ diff --git a/icons-png/arrow-down-bar.png b/icons-png/arrow-down-bar.png deleted file mode 100644 index 43202e1a9..000000000 Binary files a/icons-png/arrow-down-bar.png and /dev/null differ diff --git a/icons-png/arrow-down-circle.png b/icons-png/arrow-down-circle.png deleted file mode 100644 index 08e0f0d92..000000000 Binary files a/icons-png/arrow-down-circle.png and /dev/null differ diff --git a/icons-png/arrow-down-left-circle.png b/icons-png/arrow-down-left-circle.png deleted file mode 100644 index 793e5e936..000000000 Binary files a/icons-png/arrow-down-left-circle.png and /dev/null differ diff --git a/icons-png/arrow-down-left.png b/icons-png/arrow-down-left.png deleted file mode 100644 index 98c428c74..000000000 Binary files a/icons-png/arrow-down-left.png and /dev/null differ diff --git a/icons-png/arrow-down-rhombus.png b/icons-png/arrow-down-rhombus.png deleted file mode 100644 index bead808f2..000000000 Binary files a/icons-png/arrow-down-rhombus.png and /dev/null differ diff --git a/icons-png/arrow-down-right-circle.png b/icons-png/arrow-down-right-circle.png deleted file mode 100644 index 5c07d0552..000000000 Binary files a/icons-png/arrow-down-right-circle.png and /dev/null differ diff --git a/icons-png/arrow-down-right.png b/icons-png/arrow-down-right.png deleted file mode 100644 index ae5cbf0ae..000000000 Binary files a/icons-png/arrow-down-right.png and /dev/null differ diff --git a/icons-png/arrow-down-square.png b/icons-png/arrow-down-square.png deleted file mode 100644 index 5c3be88c1..000000000 Binary files a/icons-png/arrow-down-square.png and /dev/null differ diff --git a/icons-png/arrow-down-tail.png b/icons-png/arrow-down-tail.png deleted file mode 100644 index 35cc776f4..000000000 Binary files a/icons-png/arrow-down-tail.png and /dev/null differ diff --git a/icons-png/arrow-down.png b/icons-png/arrow-down.png deleted file mode 100644 index e3f2a4ad2..000000000 Binary files a/icons-png/arrow-down.png and /dev/null differ diff --git a/icons-png/arrow-fork.png b/icons-png/arrow-fork.png deleted file mode 100644 index 97d0d49bd..000000000 Binary files a/icons-png/arrow-fork.png and /dev/null differ diff --git a/icons-png/arrow-forward-up.png b/icons-png/arrow-forward-up.png deleted file mode 100644 index 7acd225c3..000000000 Binary files a/icons-png/arrow-forward-up.png and /dev/null differ diff --git a/icons-png/arrow-forward.png b/icons-png/arrow-forward.png deleted file mode 100644 index 6eddb5676..000000000 Binary files a/icons-png/arrow-forward.png and /dev/null differ diff --git a/icons-png/arrow-guide.png b/icons-png/arrow-guide.png deleted file mode 100644 index 7daf2e875..000000000 Binary files a/icons-png/arrow-guide.png and /dev/null differ diff --git a/icons-png/arrow-iteration.png b/icons-png/arrow-iteration.png deleted file mode 100644 index 5782f9f3b..000000000 Binary files a/icons-png/arrow-iteration.png and /dev/null differ diff --git a/icons-png/arrow-left-bar.png b/icons-png/arrow-left-bar.png deleted file mode 100644 index 38a759950..000000000 Binary files a/icons-png/arrow-left-bar.png and /dev/null differ diff --git a/icons-png/arrow-left-circle.png b/icons-png/arrow-left-circle.png deleted file mode 100644 index 7c9f81deb..000000000 Binary files a/icons-png/arrow-left-circle.png and /dev/null differ diff --git a/icons-png/arrow-left-rhombus.png b/icons-png/arrow-left-rhombus.png deleted file mode 100644 index ec70a9016..000000000 Binary files a/icons-png/arrow-left-rhombus.png and /dev/null differ diff --git a/icons-png/arrow-left-right.png b/icons-png/arrow-left-right.png deleted file mode 100644 index 9aca2e0bc..000000000 Binary files a/icons-png/arrow-left-right.png and /dev/null differ diff --git a/icons-png/arrow-left-square.png b/icons-png/arrow-left-square.png deleted file mode 100644 index cf51c50c5..000000000 Binary files a/icons-png/arrow-left-square.png and /dev/null differ diff --git a/icons-png/arrow-left-tail.png b/icons-png/arrow-left-tail.png deleted file mode 100644 index 3d12fba91..000000000 Binary files a/icons-png/arrow-left-tail.png and /dev/null differ diff --git a/icons-png/arrow-left.png b/icons-png/arrow-left.png deleted file mode 100644 index 0c1ee86a2..000000000 Binary files a/icons-png/arrow-left.png and /dev/null differ diff --git a/icons-png/arrow-loop-left-2.png b/icons-png/arrow-loop-left-2.png deleted file mode 100644 index ce6341602..000000000 Binary files a/icons-png/arrow-loop-left-2.png and /dev/null differ diff --git a/icons-png/arrow-loop-left.png b/icons-png/arrow-loop-left.png deleted file mode 100644 index f1d44f59d..000000000 Binary files a/icons-png/arrow-loop-left.png and /dev/null differ diff --git a/icons-png/arrow-loop-right-2.png b/icons-png/arrow-loop-right-2.png deleted file mode 100644 index fd5fb7c6e..000000000 Binary files a/icons-png/arrow-loop-right-2.png and /dev/null differ diff --git a/icons-png/arrow-loop-right.png b/icons-png/arrow-loop-right.png deleted file mode 100644 index 89c412d64..000000000 Binary files a/icons-png/arrow-loop-right.png and /dev/null differ diff --git a/icons-png/arrow-merge-both.png b/icons-png/arrow-merge-both.png deleted file mode 100644 index a7c29f51a..000000000 Binary files a/icons-png/arrow-merge-both.png and /dev/null differ diff --git a/icons-png/arrow-merge-left.png b/icons-png/arrow-merge-left.png deleted file mode 100644 index 8075d8e0f..000000000 Binary files a/icons-png/arrow-merge-left.png and /dev/null differ diff --git a/icons-png/arrow-merge-right.png b/icons-png/arrow-merge-right.png deleted file mode 100644 index 018f2428b..000000000 Binary files a/icons-png/arrow-merge-right.png and /dev/null differ diff --git a/icons-png/arrow-merge.png b/icons-png/arrow-merge.png deleted file mode 100644 index 0c113f86f..000000000 Binary files a/icons-png/arrow-merge.png and /dev/null differ diff --git a/icons-png/arrow-move-down.png b/icons-png/arrow-move-down.png deleted file mode 100644 index b85678116..000000000 Binary files a/icons-png/arrow-move-down.png and /dev/null differ diff --git a/icons-png/arrow-move-left.png b/icons-png/arrow-move-left.png deleted file mode 100644 index e2e322d3a..000000000 Binary files a/icons-png/arrow-move-left.png and /dev/null differ diff --git a/icons-png/arrow-move-right.png b/icons-png/arrow-move-right.png deleted file mode 100644 index 0c37d498b..000000000 Binary files a/icons-png/arrow-move-right.png and /dev/null differ diff --git a/icons-png/arrow-move-up.png b/icons-png/arrow-move-up.png deleted file mode 100644 index 7cf9b1ad3..000000000 Binary files a/icons-png/arrow-move-up.png and /dev/null differ diff --git a/icons-png/arrow-narrow-down.png b/icons-png/arrow-narrow-down.png deleted file mode 100644 index 8b485241a..000000000 Binary files a/icons-png/arrow-narrow-down.png and /dev/null differ diff --git a/icons-png/arrow-narrow-left.png b/icons-png/arrow-narrow-left.png deleted file mode 100644 index ca16999f7..000000000 Binary files a/icons-png/arrow-narrow-left.png and /dev/null differ diff --git a/icons-png/arrow-narrow-right.png b/icons-png/arrow-narrow-right.png deleted file mode 100644 index 5233fe401..000000000 Binary files a/icons-png/arrow-narrow-right.png and /dev/null differ diff --git a/icons-png/arrow-narrow-up.png b/icons-png/arrow-narrow-up.png deleted file mode 100644 index 0f4b0bd8f..000000000 Binary files a/icons-png/arrow-narrow-up.png and /dev/null differ diff --git a/icons-png/arrow-ramp-left-2.png b/icons-png/arrow-ramp-left-2.png deleted file mode 100644 index 1b476d53a..000000000 Binary files a/icons-png/arrow-ramp-left-2.png and /dev/null differ diff --git a/icons-png/arrow-ramp-left-3.png b/icons-png/arrow-ramp-left-3.png deleted file mode 100644 index d5a3f04b6..000000000 Binary files a/icons-png/arrow-ramp-left-3.png and /dev/null differ diff --git a/icons-png/arrow-ramp-left.png b/icons-png/arrow-ramp-left.png deleted file mode 100644 index f207726b3..000000000 Binary files a/icons-png/arrow-ramp-left.png and /dev/null differ diff --git a/icons-png/arrow-ramp-right-2.png b/icons-png/arrow-ramp-right-2.png deleted file mode 100644 index fdc019a9c..000000000 Binary files a/icons-png/arrow-ramp-right-2.png and /dev/null differ diff --git a/icons-png/arrow-ramp-right-3.png b/icons-png/arrow-ramp-right-3.png deleted file mode 100644 index a10a2c8bb..000000000 Binary files a/icons-png/arrow-ramp-right-3.png and /dev/null differ diff --git a/icons-png/arrow-ramp-right.png b/icons-png/arrow-ramp-right.png deleted file mode 100644 index eb0acf854..000000000 Binary files a/icons-png/arrow-ramp-right.png and /dev/null differ diff --git a/icons-png/arrow-right-bar.png b/icons-png/arrow-right-bar.png deleted file mode 100644 index 86d701e16..000000000 Binary files a/icons-png/arrow-right-bar.png and /dev/null differ diff --git a/icons-png/arrow-right-circle.png b/icons-png/arrow-right-circle.png deleted file mode 100644 index 4bf6607df..000000000 Binary files a/icons-png/arrow-right-circle.png and /dev/null differ diff --git a/icons-png/arrow-right-rhombus.png b/icons-png/arrow-right-rhombus.png deleted file mode 100644 index c06f729c3..000000000 Binary files a/icons-png/arrow-right-rhombus.png and /dev/null differ diff --git a/icons-png/arrow-right-square.png b/icons-png/arrow-right-square.png deleted file mode 100644 index 7885e56fb..000000000 Binary files a/icons-png/arrow-right-square.png and /dev/null differ diff --git a/icons-png/arrow-right-tail.png b/icons-png/arrow-right-tail.png deleted file mode 100644 index 78810a6be..000000000 Binary files a/icons-png/arrow-right-tail.png and /dev/null differ diff --git a/icons-png/arrow-right.png b/icons-png/arrow-right.png deleted file mode 100644 index a452abb4b..000000000 Binary files a/icons-png/arrow-right.png and /dev/null differ diff --git a/icons-png/arrow-rotary-first-left.png b/icons-png/arrow-rotary-first-left.png deleted file mode 100644 index 09ac2f3ea..000000000 Binary files a/icons-png/arrow-rotary-first-left.png and /dev/null differ diff --git a/icons-png/arrow-rotary-first-right.png b/icons-png/arrow-rotary-first-right.png deleted file mode 100644 index 525badc81..000000000 Binary files a/icons-png/arrow-rotary-first-right.png and /dev/null differ diff --git a/icons-png/arrow-rotary-last-left.png b/icons-png/arrow-rotary-last-left.png deleted file mode 100644 index 7f545f60f..000000000 Binary files a/icons-png/arrow-rotary-last-left.png and /dev/null differ diff --git a/icons-png/arrow-rotary-last-right.png b/icons-png/arrow-rotary-last-right.png deleted file mode 100644 index 950a4c567..000000000 Binary files a/icons-png/arrow-rotary-last-right.png and /dev/null differ diff --git a/icons-png/arrow-rotary-left.png b/icons-png/arrow-rotary-left.png deleted file mode 100644 index c343f0fe5..000000000 Binary files a/icons-png/arrow-rotary-left.png and /dev/null differ diff --git a/icons-png/arrow-rotary-right.png b/icons-png/arrow-rotary-right.png deleted file mode 100644 index 6a6548831..000000000 Binary files a/icons-png/arrow-rotary-right.png and /dev/null differ diff --git a/icons-png/arrow-rotary-straight.png b/icons-png/arrow-rotary-straight.png deleted file mode 100644 index 7a2e05cd8..000000000 Binary files a/icons-png/arrow-rotary-straight.png and /dev/null differ diff --git a/icons-png/arrow-roundabout-left.png b/icons-png/arrow-roundabout-left.png deleted file mode 100644 index 19d39d679..000000000 Binary files a/icons-png/arrow-roundabout-left.png and /dev/null differ diff --git a/icons-png/arrow-roundabout-right.png b/icons-png/arrow-roundabout-right.png deleted file mode 100644 index 9858f8a85..000000000 Binary files a/icons-png/arrow-roundabout-right.png and /dev/null differ diff --git a/icons-png/arrow-sharp-turn-left.png b/icons-png/arrow-sharp-turn-left.png deleted file mode 100644 index b5f68f442..000000000 Binary files a/icons-png/arrow-sharp-turn-left.png and /dev/null differ diff --git a/icons-png/arrow-sharp-turn-right.png b/icons-png/arrow-sharp-turn-right.png deleted file mode 100644 index b51e0516b..000000000 Binary files a/icons-png/arrow-sharp-turn-right.png and /dev/null differ diff --git a/icons-png/arrow-up-bar.png b/icons-png/arrow-up-bar.png deleted file mode 100644 index 0ac82b8d2..000000000 Binary files a/icons-png/arrow-up-bar.png and /dev/null differ diff --git a/icons-png/arrow-up-circle.png b/icons-png/arrow-up-circle.png deleted file mode 100644 index e0a9e4d6e..000000000 Binary files a/icons-png/arrow-up-circle.png and /dev/null differ diff --git a/icons-png/arrow-up-left-circle.png b/icons-png/arrow-up-left-circle.png deleted file mode 100644 index 9dcb062c8..000000000 Binary files a/icons-png/arrow-up-left-circle.png and /dev/null differ diff --git a/icons-png/arrow-up-left.png b/icons-png/arrow-up-left.png deleted file mode 100644 index 42921b47c..000000000 Binary files a/icons-png/arrow-up-left.png and /dev/null differ diff --git a/icons-png/arrow-up-rhombus.png b/icons-png/arrow-up-rhombus.png deleted file mode 100644 index d225b2aa7..000000000 Binary files a/icons-png/arrow-up-rhombus.png and /dev/null differ diff --git a/icons-png/arrow-up-right-circle.png b/icons-png/arrow-up-right-circle.png deleted file mode 100644 index e253f107c..000000000 Binary files a/icons-png/arrow-up-right-circle.png and /dev/null differ diff --git a/icons-png/arrow-up-right.png b/icons-png/arrow-up-right.png deleted file mode 100644 index b94b6f5db..000000000 Binary files a/icons-png/arrow-up-right.png and /dev/null differ diff --git a/icons-png/arrow-up-square.png b/icons-png/arrow-up-square.png deleted file mode 100644 index 7ffdd56c4..000000000 Binary files a/icons-png/arrow-up-square.png and /dev/null differ diff --git a/icons-png/arrow-up-tail.png b/icons-png/arrow-up-tail.png deleted file mode 100644 index 646599146..000000000 Binary files a/icons-png/arrow-up-tail.png and /dev/null differ diff --git a/icons-png/arrow-up.png b/icons-png/arrow-up.png deleted file mode 100644 index 03e930a34..000000000 Binary files a/icons-png/arrow-up.png and /dev/null differ diff --git a/icons-png/arrow-wave-left-down.png b/icons-png/arrow-wave-left-down.png deleted file mode 100644 index 991b86cfe..000000000 Binary files a/icons-png/arrow-wave-left-down.png and /dev/null differ diff --git a/icons-png/arrow-wave-left-up.png b/icons-png/arrow-wave-left-up.png deleted file mode 100644 index cf36605d2..000000000 Binary files a/icons-png/arrow-wave-left-up.png and /dev/null differ diff --git a/icons-png/arrow-wave-right-down.png b/icons-png/arrow-wave-right-down.png deleted file mode 100644 index 4566c74e1..000000000 Binary files a/icons-png/arrow-wave-right-down.png and /dev/null differ diff --git a/icons-png/arrow-wave-right-up.png b/icons-png/arrow-wave-right-up.png deleted file mode 100644 index b094842f3..000000000 Binary files a/icons-png/arrow-wave-right-up.png and /dev/null differ diff --git a/icons-png/arrow-zig-zag.png b/icons-png/arrow-zig-zag.png deleted file mode 100644 index 0a7e8e2f0..000000000 Binary files a/icons-png/arrow-zig-zag.png and /dev/null differ diff --git a/icons-png/arrows-cross.png b/icons-png/arrows-cross.png deleted file mode 100644 index 5b9cbc1f8..000000000 Binary files a/icons-png/arrows-cross.png and /dev/null differ diff --git a/icons-png/arrows-diagonal-2.png b/icons-png/arrows-diagonal-2.png deleted file mode 100644 index 38c78f503..000000000 Binary files a/icons-png/arrows-diagonal-2.png and /dev/null differ diff --git a/icons-png/arrows-diagonal-minimize-2.png b/icons-png/arrows-diagonal-minimize-2.png deleted file mode 100644 index 29067a4b5..000000000 Binary files a/icons-png/arrows-diagonal-minimize-2.png and /dev/null differ diff --git a/icons-png/arrows-diagonal-minimize.png b/icons-png/arrows-diagonal-minimize.png deleted file mode 100644 index ebd64e250..000000000 Binary files a/icons-png/arrows-diagonal-minimize.png and /dev/null differ diff --git a/icons-png/arrows-diagonal.png b/icons-png/arrows-diagonal.png deleted file mode 100644 index ded48c431..000000000 Binary files a/icons-png/arrows-diagonal.png and /dev/null differ diff --git a/icons-png/arrows-diff.png b/icons-png/arrows-diff.png deleted file mode 100644 index 193338f7f..000000000 Binary files a/icons-png/arrows-diff.png and /dev/null differ diff --git a/icons-png/arrows-double-ne-sw.png b/icons-png/arrows-double-ne-sw.png deleted file mode 100644 index f1da28e78..000000000 Binary files a/icons-png/arrows-double-ne-sw.png and /dev/null differ diff --git a/icons-png/arrows-double-nw-se.png b/icons-png/arrows-double-nw-se.png deleted file mode 100644 index e1a6a819e..000000000 Binary files a/icons-png/arrows-double-nw-se.png and /dev/null differ diff --git a/icons-png/arrows-double-se-nw.png b/icons-png/arrows-double-se-nw.png deleted file mode 100644 index b8c85af60..000000000 Binary files a/icons-png/arrows-double-se-nw.png and /dev/null differ diff --git a/icons-png/arrows-double-sw-ne.png b/icons-png/arrows-double-sw-ne.png deleted file mode 100644 index a76b2fc0d..000000000 Binary files a/icons-png/arrows-double-sw-ne.png and /dev/null differ diff --git a/icons-png/arrows-down-up.png b/icons-png/arrows-down-up.png deleted file mode 100644 index 8bbf8e2f6..000000000 Binary files a/icons-png/arrows-down-up.png and /dev/null differ diff --git a/icons-png/arrows-down.png b/icons-png/arrows-down.png deleted file mode 100644 index cf5010a5e..000000000 Binary files a/icons-png/arrows-down.png and /dev/null differ diff --git a/icons-png/arrows-exchange-2.png b/icons-png/arrows-exchange-2.png deleted file mode 100644 index 472772c52..000000000 Binary files a/icons-png/arrows-exchange-2.png and /dev/null differ diff --git a/icons-png/arrows-exchange.png b/icons-png/arrows-exchange.png deleted file mode 100644 index 771d68aec..000000000 Binary files a/icons-png/arrows-exchange.png and /dev/null differ diff --git a/icons-png/arrows-horizontal.png b/icons-png/arrows-horizontal.png deleted file mode 100644 index a749c23b2..000000000 Binary files a/icons-png/arrows-horizontal.png and /dev/null differ diff --git a/icons-png/arrows-join-2.png b/icons-png/arrows-join-2.png deleted file mode 100644 index 3257ecfca..000000000 Binary files a/icons-png/arrows-join-2.png and /dev/null differ diff --git a/icons-png/arrows-join.png b/icons-png/arrows-join.png deleted file mode 100644 index 48cea8fee..000000000 Binary files a/icons-png/arrows-join.png and /dev/null differ diff --git a/icons-png/arrows-left-down.png b/icons-png/arrows-left-down.png deleted file mode 100644 index b3976834c..000000000 Binary files a/icons-png/arrows-left-down.png and /dev/null differ diff --git a/icons-png/arrows-left-right.png b/icons-png/arrows-left-right.png deleted file mode 100644 index 062e5db26..000000000 Binary files a/icons-png/arrows-left-right.png and /dev/null differ diff --git a/icons-png/arrows-left.png b/icons-png/arrows-left.png deleted file mode 100644 index 715e10b24..000000000 Binary files a/icons-png/arrows-left.png and /dev/null differ diff --git a/icons-png/arrows-maximize.png b/icons-png/arrows-maximize.png deleted file mode 100644 index cb7d81b47..000000000 Binary files a/icons-png/arrows-maximize.png and /dev/null differ diff --git a/icons-png/arrows-minimize.png b/icons-png/arrows-minimize.png deleted file mode 100644 index af6e2d229..000000000 Binary files a/icons-png/arrows-minimize.png and /dev/null differ diff --git a/icons-png/arrows-move-horizontal.png b/icons-png/arrows-move-horizontal.png deleted file mode 100644 index 9b2fe8120..000000000 Binary files a/icons-png/arrows-move-horizontal.png and /dev/null differ diff --git a/icons-png/arrows-move-vertical.png b/icons-png/arrows-move-vertical.png deleted file mode 100644 index 5e3e5078f..000000000 Binary files a/icons-png/arrows-move-vertical.png and /dev/null differ diff --git a/icons-png/arrows-move.png b/icons-png/arrows-move.png deleted file mode 100644 index b282e11ac..000000000 Binary files a/icons-png/arrows-move.png and /dev/null differ diff --git a/icons-png/arrows-random.png b/icons-png/arrows-random.png deleted file mode 100644 index f797f3fed..000000000 Binary files a/icons-png/arrows-random.png and /dev/null differ diff --git a/icons-png/arrows-right-down.png b/icons-png/arrows-right-down.png deleted file mode 100644 index 9c78bb3b8..000000000 Binary files a/icons-png/arrows-right-down.png and /dev/null differ diff --git a/icons-png/arrows-right-left.png b/icons-png/arrows-right-left.png deleted file mode 100644 index ffb96bab3..000000000 Binary files a/icons-png/arrows-right-left.png and /dev/null differ diff --git a/icons-png/arrows-right.png b/icons-png/arrows-right.png deleted file mode 100644 index 5abb0eba3..000000000 Binary files a/icons-png/arrows-right.png and /dev/null differ diff --git a/icons-png/arrows-shuffle-2.png b/icons-png/arrows-shuffle-2.png deleted file mode 100644 index 51c8452f6..000000000 Binary files a/icons-png/arrows-shuffle-2.png and /dev/null differ diff --git a/icons-png/arrows-shuffle.png b/icons-png/arrows-shuffle.png deleted file mode 100644 index 87f90567a..000000000 Binary files a/icons-png/arrows-shuffle.png and /dev/null differ diff --git a/icons-png/arrows-sort.png b/icons-png/arrows-sort.png deleted file mode 100644 index 5780d57e8..000000000 Binary files a/icons-png/arrows-sort.png and /dev/null differ diff --git a/icons-png/arrows-split-2.png b/icons-png/arrows-split-2.png deleted file mode 100644 index 0afe57368..000000000 Binary files a/icons-png/arrows-split-2.png and /dev/null differ diff --git a/icons-png/arrows-split.png b/icons-png/arrows-split.png deleted file mode 100644 index 68919f9f7..000000000 Binary files a/icons-png/arrows-split.png and /dev/null differ diff --git a/icons-png/arrows-transfer-down.png b/icons-png/arrows-transfer-down.png deleted file mode 100644 index 5a35a61b4..000000000 Binary files a/icons-png/arrows-transfer-down.png and /dev/null differ diff --git a/icons-png/arrows-transfer-up.png b/icons-png/arrows-transfer-up.png deleted file mode 100644 index a4d1ff19a..000000000 Binary files a/icons-png/arrows-transfer-up.png and /dev/null differ diff --git a/icons-png/arrows-up-down.png b/icons-png/arrows-up-down.png deleted file mode 100644 index 14553b92e..000000000 Binary files a/icons-png/arrows-up-down.png and /dev/null differ diff --git a/icons-png/arrows-up-left.png b/icons-png/arrows-up-left.png deleted file mode 100644 index 2ecd51850..000000000 Binary files a/icons-png/arrows-up-left.png and /dev/null differ diff --git a/icons-png/arrows-up-right.png b/icons-png/arrows-up-right.png deleted file mode 100644 index e57130289..000000000 Binary files a/icons-png/arrows-up-right.png and /dev/null differ diff --git a/icons-png/arrows-up.png b/icons-png/arrows-up.png deleted file mode 100644 index 1278278e6..000000000 Binary files a/icons-png/arrows-up.png and /dev/null differ diff --git a/icons-png/arrows-vertical.png b/icons-png/arrows-vertical.png deleted file mode 100644 index 7f605f724..000000000 Binary files a/icons-png/arrows-vertical.png and /dev/null differ diff --git a/icons-png/artboard-off.png b/icons-png/artboard-off.png deleted file mode 100644 index 415206255..000000000 Binary files a/icons-png/artboard-off.png and /dev/null differ diff --git a/icons-png/artboard.png b/icons-png/artboard.png deleted file mode 100644 index 716bdd1e2..000000000 Binary files a/icons-png/artboard.png and /dev/null differ diff --git a/icons-png/article-off.png b/icons-png/article-off.png deleted file mode 100644 index 4be6d5a06..000000000 Binary files a/icons-png/article-off.png and /dev/null differ diff --git a/icons-png/article.png b/icons-png/article.png deleted file mode 100644 index 4a80078ba..000000000 Binary files a/icons-png/article.png and /dev/null differ diff --git a/icons-png/aspect-ratio-off.png b/icons-png/aspect-ratio-off.png deleted file mode 100644 index ad085ce9e..000000000 Binary files a/icons-png/aspect-ratio-off.png and /dev/null differ diff --git a/icons-png/aspect-ratio.png b/icons-png/aspect-ratio.png deleted file mode 100644 index 7a82d0c34..000000000 Binary files a/icons-png/aspect-ratio.png and /dev/null differ diff --git a/icons-png/assembly-off.png b/icons-png/assembly-off.png deleted file mode 100644 index 7cc11cf61..000000000 Binary files a/icons-png/assembly-off.png and /dev/null differ diff --git a/icons-png/assembly.png b/icons-png/assembly.png deleted file mode 100644 index 4f82d56ca..000000000 Binary files a/icons-png/assembly.png and /dev/null differ diff --git a/icons-png/asset.png b/icons-png/asset.png deleted file mode 100644 index 2d68f09bd..000000000 Binary files a/icons-png/asset.png and /dev/null differ diff --git a/icons-png/asterisk-simple.png b/icons-png/asterisk-simple.png deleted file mode 100644 index 203367d22..000000000 Binary files a/icons-png/asterisk-simple.png and /dev/null differ diff --git a/icons-png/asterisk.png b/icons-png/asterisk.png deleted file mode 100644 index 2616e4584..000000000 Binary files a/icons-png/asterisk.png and /dev/null differ diff --git a/icons-png/at-off.png b/icons-png/at-off.png deleted file mode 100644 index a69d4440e..000000000 Binary files a/icons-png/at-off.png and /dev/null differ diff --git a/icons-png/at.png b/icons-png/at.png deleted file mode 100644 index 229686c93..000000000 Binary files a/icons-png/at.png and /dev/null differ diff --git a/icons-png/atom-2.png b/icons-png/atom-2.png deleted file mode 100644 index 6ea450308..000000000 Binary files a/icons-png/atom-2.png and /dev/null differ diff --git a/icons-png/atom-off.png b/icons-png/atom-off.png deleted file mode 100644 index 04bc1e200..000000000 Binary files a/icons-png/atom-off.png and /dev/null differ diff --git a/icons-png/atom.png b/icons-png/atom.png deleted file mode 100644 index 33e948e40..000000000 Binary files a/icons-png/atom.png and /dev/null differ diff --git a/icons-png/augmented-reality-2.png b/icons-png/augmented-reality-2.png deleted file mode 100644 index 4d2a8a89c..000000000 Binary files a/icons-png/augmented-reality-2.png and /dev/null differ diff --git a/icons-png/augmented-reality-off.png b/icons-png/augmented-reality-off.png deleted file mode 100644 index fa46439ae..000000000 Binary files a/icons-png/augmented-reality-off.png and /dev/null differ diff --git a/icons-png/augmented-reality.png b/icons-png/augmented-reality.png deleted file mode 100644 index 3ea545cce..000000000 Binary files a/icons-png/augmented-reality.png and /dev/null differ diff --git a/icons-png/award-off.png b/icons-png/award-off.png deleted file mode 100644 index 43e51be6d..000000000 Binary files a/icons-png/award-off.png and /dev/null differ diff --git a/icons-png/award.png b/icons-png/award.png deleted file mode 100644 index 8bd9bfe6d..000000000 Binary files a/icons-png/award.png and /dev/null differ diff --git a/icons-png/axe.png b/icons-png/axe.png deleted file mode 100644 index 2f9548d35..000000000 Binary files a/icons-png/axe.png and /dev/null differ diff --git a/icons-png/axis-x.png b/icons-png/axis-x.png deleted file mode 100644 index 575eb3098..000000000 Binary files a/icons-png/axis-x.png and /dev/null differ diff --git a/icons-png/axis-y.png b/icons-png/axis-y.png deleted file mode 100644 index b9ea4b398..000000000 Binary files a/icons-png/axis-y.png and /dev/null differ diff --git a/icons-png/baby-bottle.png b/icons-png/baby-bottle.png deleted file mode 100644 index c145b47d5..000000000 Binary files a/icons-png/baby-bottle.png and /dev/null differ diff --git a/icons-png/baby-carriage.png b/icons-png/baby-carriage.png deleted file mode 100644 index 4e3703ffb..000000000 Binary files a/icons-png/baby-carriage.png and /dev/null differ diff --git a/icons-png/backhoe.png b/icons-png/backhoe.png deleted file mode 100644 index 1aa278488..000000000 Binary files a/icons-png/backhoe.png and /dev/null differ diff --git a/icons-png/backpack-off.png b/icons-png/backpack-off.png deleted file mode 100644 index 07df733ec..000000000 Binary files a/icons-png/backpack-off.png and /dev/null differ diff --git a/icons-png/backpack.png b/icons-png/backpack.png deleted file mode 100644 index 4fc294657..000000000 Binary files a/icons-png/backpack.png and /dev/null differ diff --git a/icons-png/backspace.png b/icons-png/backspace.png deleted file mode 100644 index cc5b66008..000000000 Binary files a/icons-png/backspace.png and /dev/null differ diff --git a/icons-png/badge-3d.png b/icons-png/badge-3d.png deleted file mode 100644 index a17bc4e2a..000000000 Binary files a/icons-png/badge-3d.png and /dev/null differ diff --git a/icons-png/badge-4k.png b/icons-png/badge-4k.png deleted file mode 100644 index a73341790..000000000 Binary files a/icons-png/badge-4k.png and /dev/null differ diff --git a/icons-png/badge-8k.png b/icons-png/badge-8k.png deleted file mode 100644 index 94a8c628a..000000000 Binary files a/icons-png/badge-8k.png and /dev/null differ diff --git a/icons-png/badge-ad.png b/icons-png/badge-ad.png deleted file mode 100644 index d693f92d0..000000000 Binary files a/icons-png/badge-ad.png and /dev/null differ diff --git a/icons-png/badge-ar.png b/icons-png/badge-ar.png deleted file mode 100644 index 91e6ea2d9..000000000 Binary files a/icons-png/badge-ar.png and /dev/null differ diff --git a/icons-png/badge-cc.png b/icons-png/badge-cc.png deleted file mode 100644 index 425bada11..000000000 Binary files a/icons-png/badge-cc.png and /dev/null differ diff --git a/icons-png/badge-hd.png b/icons-png/badge-hd.png deleted file mode 100644 index c42cb9c43..000000000 Binary files a/icons-png/badge-hd.png and /dev/null differ diff --git a/icons-png/badge-off.png b/icons-png/badge-off.png deleted file mode 100644 index 3b5c1f76f..000000000 Binary files a/icons-png/badge-off.png and /dev/null differ diff --git a/icons-png/badge-sd.png b/icons-png/badge-sd.png deleted file mode 100644 index 43b9c52e0..000000000 Binary files a/icons-png/badge-sd.png and /dev/null differ diff --git a/icons-png/badge-tm.png b/icons-png/badge-tm.png deleted file mode 100644 index 20e003803..000000000 Binary files a/icons-png/badge-tm.png and /dev/null differ diff --git a/icons-png/badge-vo.png b/icons-png/badge-vo.png deleted file mode 100644 index 99286f3cd..000000000 Binary files a/icons-png/badge-vo.png and /dev/null differ diff --git a/icons-png/badge-vr.png b/icons-png/badge-vr.png deleted file mode 100644 index 9463300ef..000000000 Binary files a/icons-png/badge-vr.png and /dev/null differ diff --git a/icons-png/badge-wc.png b/icons-png/badge-wc.png deleted file mode 100644 index 797fb73d5..000000000 Binary files a/icons-png/badge-wc.png and /dev/null differ diff --git a/icons-png/badge.png b/icons-png/badge.png deleted file mode 100644 index 9f94c0c28..000000000 Binary files a/icons-png/badge.png and /dev/null differ diff --git a/icons-png/badges-off.png b/icons-png/badges-off.png deleted file mode 100644 index 5deba61e4..000000000 Binary files a/icons-png/badges-off.png and /dev/null differ diff --git a/icons-png/badges.png b/icons-png/badges.png deleted file mode 100644 index b9417eb93..000000000 Binary files a/icons-png/badges.png and /dev/null differ diff --git a/icons-png/baguette.png b/icons-png/baguette.png deleted file mode 100644 index 975c2b6f3..000000000 Binary files a/icons-png/baguette.png and /dev/null differ diff --git a/icons-png/ball-american-football-off.png b/icons-png/ball-american-football-off.png deleted file mode 100644 index b7cc7587e..000000000 Binary files a/icons-png/ball-american-football-off.png and /dev/null differ diff --git a/icons-png/ball-american-football.png b/icons-png/ball-american-football.png deleted file mode 100644 index a119faa84..000000000 Binary files a/icons-png/ball-american-football.png and /dev/null differ diff --git a/icons-png/ball-baseball.png b/icons-png/ball-baseball.png deleted file mode 100644 index a96abd1e3..000000000 Binary files a/icons-png/ball-baseball.png and /dev/null differ diff --git a/icons-png/ball-basketball.png b/icons-png/ball-basketball.png deleted file mode 100644 index b3c4f8794..000000000 Binary files a/icons-png/ball-basketball.png and /dev/null differ diff --git a/icons-png/ball-bowling.png b/icons-png/ball-bowling.png deleted file mode 100644 index b31fc6072..000000000 Binary files a/icons-png/ball-bowling.png and /dev/null differ diff --git a/icons-png/ball-football-off.png b/icons-png/ball-football-off.png deleted file mode 100644 index cd980b4c1..000000000 Binary files a/icons-png/ball-football-off.png and /dev/null differ diff --git a/icons-png/ball-football.png b/icons-png/ball-football.png deleted file mode 100644 index b804d65df..000000000 Binary files a/icons-png/ball-football.png and /dev/null differ diff --git a/icons-png/ball-tennis.png b/icons-png/ball-tennis.png deleted file mode 100644 index 902117bea..000000000 Binary files a/icons-png/ball-tennis.png and /dev/null differ diff --git a/icons-png/ball-volleyball.png b/icons-png/ball-volleyball.png deleted file mode 100644 index b7e38ac1a..000000000 Binary files a/icons-png/ball-volleyball.png and /dev/null differ diff --git a/icons-png/ballon-off.png b/icons-png/ballon-off.png deleted file mode 100644 index 2b686e403..000000000 Binary files a/icons-png/ballon-off.png and /dev/null differ diff --git a/icons-png/ballon.png b/icons-png/ballon.png deleted file mode 100644 index a87739cfe..000000000 Binary files a/icons-png/ballon.png and /dev/null differ diff --git a/icons-png/ballpen-off.png b/icons-png/ballpen-off.png deleted file mode 100644 index 37f6d41b2..000000000 Binary files a/icons-png/ballpen-off.png and /dev/null differ diff --git a/icons-png/ballpen.png b/icons-png/ballpen.png deleted file mode 100644 index 48f5f2bfc..000000000 Binary files a/icons-png/ballpen.png and /dev/null differ diff --git a/icons-png/ban.png b/icons-png/ban.png deleted file mode 100644 index ed33c34e5..000000000 Binary files a/icons-png/ban.png and /dev/null differ diff --git a/icons-png/bandage-off.png b/icons-png/bandage-off.png deleted file mode 100644 index 67cb9a64f..000000000 Binary files a/icons-png/bandage-off.png and /dev/null differ diff --git a/icons-png/bandage.png b/icons-png/bandage.png deleted file mode 100644 index 075db6c1b..000000000 Binary files a/icons-png/bandage.png and /dev/null differ diff --git a/icons-png/barbell-off.png b/icons-png/barbell-off.png deleted file mode 100644 index 824db259b..000000000 Binary files a/icons-png/barbell-off.png and /dev/null differ diff --git a/icons-png/barbell.png b/icons-png/barbell.png deleted file mode 100644 index 70e35a8d4..000000000 Binary files a/icons-png/barbell.png and /dev/null differ diff --git a/icons-png/barcode-off.png b/icons-png/barcode-off.png deleted file mode 100644 index 3d307d185..000000000 Binary files a/icons-png/barcode-off.png and /dev/null differ diff --git a/icons-png/barcode.png b/icons-png/barcode.png deleted file mode 100644 index 3a2d9d5ce..000000000 Binary files a/icons-png/barcode.png and /dev/null differ diff --git a/icons-png/barrel-off.png b/icons-png/barrel-off.png deleted file mode 100644 index 7fb47817c..000000000 Binary files a/icons-png/barrel-off.png and /dev/null differ diff --git a/icons-png/barrel.png b/icons-png/barrel.png deleted file mode 100644 index 68cdda3d3..000000000 Binary files a/icons-png/barrel.png and /dev/null differ diff --git a/icons-png/barrier-block-off.png b/icons-png/barrier-block-off.png deleted file mode 100644 index 57b1bddd9..000000000 Binary files a/icons-png/barrier-block-off.png and /dev/null differ diff --git a/icons-png/barrier-block.png b/icons-png/barrier-block.png deleted file mode 100644 index 07879016d..000000000 Binary files a/icons-png/barrier-block.png and /dev/null differ diff --git a/icons-png/baseline.png b/icons-png/baseline.png deleted file mode 100644 index d82710a6f..000000000 Binary files a/icons-png/baseline.png and /dev/null differ diff --git a/icons-png/basket-off.png b/icons-png/basket-off.png deleted file mode 100644 index eb902f6b2..000000000 Binary files a/icons-png/basket-off.png and /dev/null differ diff --git a/icons-png/basket.png b/icons-png/basket.png deleted file mode 100644 index dfc42151d..000000000 Binary files a/icons-png/basket.png and /dev/null differ diff --git a/icons-png/bat.png b/icons-png/bat.png deleted file mode 100644 index f86401a90..000000000 Binary files a/icons-png/bat.png and /dev/null differ diff --git a/icons-png/bath-off.png b/icons-png/bath-off.png deleted file mode 100644 index 1d31d056c..000000000 Binary files a/icons-png/bath-off.png and /dev/null differ diff --git a/icons-png/bath.png b/icons-png/bath.png deleted file mode 100644 index 5952042a2..000000000 Binary files a/icons-png/bath.png and /dev/null differ diff --git a/icons-png/battery-1.png b/icons-png/battery-1.png deleted file mode 100644 index 1019f798e..000000000 Binary files a/icons-png/battery-1.png and /dev/null differ diff --git a/icons-png/battery-2.png b/icons-png/battery-2.png deleted file mode 100644 index afd6961a9..000000000 Binary files a/icons-png/battery-2.png and /dev/null differ diff --git a/icons-png/battery-3.png b/icons-png/battery-3.png deleted file mode 100644 index f50930e2b..000000000 Binary files a/icons-png/battery-3.png and /dev/null differ diff --git a/icons-png/battery-4.png b/icons-png/battery-4.png deleted file mode 100644 index 677a355bb..000000000 Binary files a/icons-png/battery-4.png and /dev/null differ diff --git a/icons-png/battery-automotive.png b/icons-png/battery-automotive.png deleted file mode 100644 index c6bbb6501..000000000 Binary files a/icons-png/battery-automotive.png and /dev/null differ diff --git a/icons-png/battery-charging-2.png b/icons-png/battery-charging-2.png deleted file mode 100644 index 98387aabd..000000000 Binary files a/icons-png/battery-charging-2.png and /dev/null differ diff --git a/icons-png/battery-charging.png b/icons-png/battery-charging.png deleted file mode 100644 index 63b4f0ae5..000000000 Binary files a/icons-png/battery-charging.png and /dev/null differ diff --git a/icons-png/battery-eco.png b/icons-png/battery-eco.png deleted file mode 100644 index a23923060..000000000 Binary files a/icons-png/battery-eco.png and /dev/null differ diff --git a/icons-png/battery-off.png b/icons-png/battery-off.png deleted file mode 100644 index f910b56ae..000000000 Binary files a/icons-png/battery-off.png and /dev/null differ diff --git a/icons-png/battery.png b/icons-png/battery.png deleted file mode 100644 index e084f7945..000000000 Binary files a/icons-png/battery.png and /dev/null differ diff --git a/icons-png/beach-off.png b/icons-png/beach-off.png deleted file mode 100644 index dd2b5871e..000000000 Binary files a/icons-png/beach-off.png and /dev/null differ diff --git a/icons-png/beach.png b/icons-png/beach.png deleted file mode 100644 index 5721ef2f0..000000000 Binary files a/icons-png/beach.png and /dev/null differ diff --git a/icons-png/bed-off.png b/icons-png/bed-off.png deleted file mode 100644 index e7ccf3965..000000000 Binary files a/icons-png/bed-off.png and /dev/null differ diff --git a/icons-png/bed.png b/icons-png/bed.png deleted file mode 100644 index f26ad4fad..000000000 Binary files a/icons-png/bed.png and /dev/null differ diff --git a/icons-png/beer-off.png b/icons-png/beer-off.png deleted file mode 100644 index 5413dcf32..000000000 Binary files a/icons-png/beer-off.png and /dev/null differ diff --git a/icons-png/beer.png b/icons-png/beer.png deleted file mode 100644 index 5ec9bd166..000000000 Binary files a/icons-png/beer.png and /dev/null differ diff --git a/icons-png/bell-minus.png b/icons-png/bell-minus.png deleted file mode 100644 index 0e05432de..000000000 Binary files a/icons-png/bell-minus.png and /dev/null differ diff --git a/icons-png/bell-off.png b/icons-png/bell-off.png deleted file mode 100644 index 84a34c9c2..000000000 Binary files a/icons-png/bell-off.png and /dev/null differ diff --git a/icons-png/bell-plus.png b/icons-png/bell-plus.png deleted file mode 100644 index 69c55a867..000000000 Binary files a/icons-png/bell-plus.png and /dev/null differ diff --git a/icons-png/bell-ringing-2.png b/icons-png/bell-ringing-2.png deleted file mode 100644 index a0e00c001..000000000 Binary files a/icons-png/bell-ringing-2.png and /dev/null differ diff --git a/icons-png/bell-ringing.png b/icons-png/bell-ringing.png deleted file mode 100644 index c2d2f1d9a..000000000 Binary files a/icons-png/bell-ringing.png and /dev/null differ diff --git a/icons-png/bell-school.png b/icons-png/bell-school.png deleted file mode 100644 index daced967b..000000000 Binary files a/icons-png/bell-school.png and /dev/null differ diff --git a/icons-png/bell-x.png b/icons-png/bell-x.png deleted file mode 100644 index ec20048e6..000000000 Binary files a/icons-png/bell-x.png and /dev/null differ diff --git a/icons-png/bell-z.png b/icons-png/bell-z.png deleted file mode 100644 index a5de2ea22..000000000 Binary files a/icons-png/bell-z.png and /dev/null differ diff --git a/icons-png/bell.png b/icons-png/bell.png deleted file mode 100644 index ff7be8a03..000000000 Binary files a/icons-png/bell.png and /dev/null differ diff --git a/icons-png/beta.png b/icons-png/beta.png deleted file mode 100644 index 222a66566..000000000 Binary files a/icons-png/beta.png and /dev/null differ diff --git a/icons-png/bible.png b/icons-png/bible.png deleted file mode 100644 index bca509b93..000000000 Binary files a/icons-png/bible.png and /dev/null differ diff --git a/icons-png/bike-off.png b/icons-png/bike-off.png deleted file mode 100644 index 307c40422..000000000 Binary files a/icons-png/bike-off.png and /dev/null differ diff --git a/icons-png/bike.png b/icons-png/bike.png deleted file mode 100644 index 91c1f0f4a..000000000 Binary files a/icons-png/bike.png and /dev/null differ diff --git a/icons-png/binary-off.png b/icons-png/binary-off.png deleted file mode 100644 index a6cb68aaf..000000000 Binary files a/icons-png/binary-off.png and /dev/null differ diff --git a/icons-png/binary-tree-2.png b/icons-png/binary-tree-2.png deleted file mode 100644 index 480b8022c..000000000 Binary files a/icons-png/binary-tree-2.png and /dev/null differ diff --git a/icons-png/binary-tree.png b/icons-png/binary-tree.png deleted file mode 100644 index b49a9661a..000000000 Binary files a/icons-png/binary-tree.png and /dev/null differ diff --git a/icons-png/binary.png b/icons-png/binary.png deleted file mode 100644 index 25f5903a4..000000000 Binary files a/icons-png/binary.png and /dev/null differ diff --git a/icons-png/biohazard-off.png b/icons-png/biohazard-off.png deleted file mode 100644 index bf3e3b21a..000000000 Binary files a/icons-png/biohazard-off.png and /dev/null differ diff --git a/icons-png/biohazard.png b/icons-png/biohazard.png deleted file mode 100644 index 4081fdb0d..000000000 Binary files a/icons-png/biohazard.png and /dev/null differ diff --git a/icons-png/blade.png b/icons-png/blade.png deleted file mode 100644 index 95a5a88b5..000000000 Binary files a/icons-png/blade.png and /dev/null differ diff --git a/icons-png/bleach-chlorine.png b/icons-png/bleach-chlorine.png deleted file mode 100644 index 9fd7d134f..000000000 Binary files a/icons-png/bleach-chlorine.png and /dev/null differ diff --git a/icons-png/bleach-no-chlorine.png b/icons-png/bleach-no-chlorine.png deleted file mode 100644 index e7669d18a..000000000 Binary files a/icons-png/bleach-no-chlorine.png and /dev/null differ diff --git a/icons-png/bleach-off.png b/icons-png/bleach-off.png deleted file mode 100644 index 68f8870b7..000000000 Binary files a/icons-png/bleach-off.png and /dev/null differ diff --git a/icons-png/bleach.png b/icons-png/bleach.png deleted file mode 100644 index b0f86bfb9..000000000 Binary files a/icons-png/bleach.png and /dev/null differ diff --git a/icons-png/blockquote.png b/icons-png/blockquote.png deleted file mode 100644 index 71102ee0f..000000000 Binary files a/icons-png/blockquote.png and /dev/null differ diff --git a/icons-png/bluetooth-connected.png b/icons-png/bluetooth-connected.png deleted file mode 100644 index 9452c6961..000000000 Binary files a/icons-png/bluetooth-connected.png and /dev/null differ diff --git a/icons-png/bluetooth-off.png b/icons-png/bluetooth-off.png deleted file mode 100644 index b0f51f9a0..000000000 Binary files a/icons-png/bluetooth-off.png and /dev/null differ diff --git a/icons-png/bluetooth-x.png b/icons-png/bluetooth-x.png deleted file mode 100644 index 7d3ce440c..000000000 Binary files a/icons-png/bluetooth-x.png and /dev/null differ diff --git a/icons-png/bluetooth.png b/icons-png/bluetooth.png deleted file mode 100644 index ac8dbe9ba..000000000 Binary files a/icons-png/bluetooth.png and /dev/null differ diff --git a/icons-png/blur-off.png b/icons-png/blur-off.png deleted file mode 100644 index a28a321db..000000000 Binary files a/icons-png/blur-off.png and /dev/null differ diff --git a/icons-png/blur.png b/icons-png/blur.png deleted file mode 100644 index 562984726..000000000 Binary files a/icons-png/blur.png and /dev/null differ diff --git a/icons-png/bmp.png b/icons-png/bmp.png deleted file mode 100644 index 9d6611754..000000000 Binary files a/icons-png/bmp.png and /dev/null differ diff --git a/icons-png/bold-off.png b/icons-png/bold-off.png deleted file mode 100644 index 0ac8d46fe..000000000 Binary files a/icons-png/bold-off.png and /dev/null differ diff --git a/icons-png/bold.png b/icons-png/bold.png deleted file mode 100644 index 67ca09fcf..000000000 Binary files a/icons-png/bold.png and /dev/null differ diff --git a/icons-png/bolt-off.png b/icons-png/bolt-off.png deleted file mode 100644 index 0b07433a7..000000000 Binary files a/icons-png/bolt-off.png and /dev/null differ diff --git a/icons-png/bolt.png b/icons-png/bolt.png deleted file mode 100644 index 8d9e4184c..000000000 Binary files a/icons-png/bolt.png and /dev/null differ diff --git a/icons-png/bomb.png b/icons-png/bomb.png deleted file mode 100644 index 28c4567f9..000000000 Binary files a/icons-png/bomb.png and /dev/null differ diff --git a/icons-png/bone-off.png b/icons-png/bone-off.png deleted file mode 100644 index 3078d18fb..000000000 Binary files a/icons-png/bone-off.png and /dev/null differ diff --git a/icons-png/bone.png b/icons-png/bone.png deleted file mode 100644 index 89fb131a7..000000000 Binary files a/icons-png/bone.png and /dev/null differ diff --git a/icons-png/bong-off.png b/icons-png/bong-off.png deleted file mode 100644 index 34087a9e6..000000000 Binary files a/icons-png/bong-off.png and /dev/null differ diff --git a/icons-png/bong.png b/icons-png/bong.png deleted file mode 100644 index 8d5fa9b5e..000000000 Binary files a/icons-png/bong.png and /dev/null differ diff --git a/icons-png/book-2.png b/icons-png/book-2.png deleted file mode 100644 index 0e4047a65..000000000 Binary files a/icons-png/book-2.png and /dev/null differ diff --git a/icons-png/book-download.png b/icons-png/book-download.png deleted file mode 100644 index 2daa6b6f8..000000000 Binary files a/icons-png/book-download.png and /dev/null differ diff --git a/icons-png/book-off.png b/icons-png/book-off.png deleted file mode 100644 index 6b21a6da9..000000000 Binary files a/icons-png/book-off.png and /dev/null differ diff --git a/icons-png/book-upload.png b/icons-png/book-upload.png deleted file mode 100644 index 1824211d0..000000000 Binary files a/icons-png/book-upload.png and /dev/null differ diff --git a/icons-png/book.png b/icons-png/book.png deleted file mode 100644 index edc284779..000000000 Binary files a/icons-png/book.png and /dev/null differ diff --git a/icons-png/bookmark-off.png b/icons-png/bookmark-off.png deleted file mode 100644 index 1571113bc..000000000 Binary files a/icons-png/bookmark-off.png and /dev/null differ diff --git a/icons-png/bookmark.png b/icons-png/bookmark.png deleted file mode 100644 index 9bb2394a7..000000000 Binary files a/icons-png/bookmark.png and /dev/null differ diff --git a/icons-png/bookmarks-off.png b/icons-png/bookmarks-off.png deleted file mode 100644 index c140421a0..000000000 Binary files a/icons-png/bookmarks-off.png and /dev/null differ diff --git a/icons-png/bookmarks.png b/icons-png/bookmarks.png deleted file mode 100644 index 1f2e721a1..000000000 Binary files a/icons-png/bookmarks.png and /dev/null differ diff --git a/icons-png/books-off.png b/icons-png/books-off.png deleted file mode 100644 index 90617b89c..000000000 Binary files a/icons-png/books-off.png and /dev/null differ diff --git a/icons-png/books.png b/icons-png/books.png deleted file mode 100644 index 90a96c435..000000000 Binary files a/icons-png/books.png and /dev/null differ diff --git a/icons-png/border-all.png b/icons-png/border-all.png deleted file mode 100644 index ea7ec3239..000000000 Binary files a/icons-png/border-all.png and /dev/null differ diff --git a/icons-png/border-bottom.png b/icons-png/border-bottom.png deleted file mode 100644 index 8cfef59c2..000000000 Binary files a/icons-png/border-bottom.png and /dev/null differ diff --git a/icons-png/border-horizontal.png b/icons-png/border-horizontal.png deleted file mode 100644 index 56d92aa21..000000000 Binary files a/icons-png/border-horizontal.png and /dev/null differ diff --git a/icons-png/border-inner.png b/icons-png/border-inner.png deleted file mode 100644 index fc25b80b9..000000000 Binary files a/icons-png/border-inner.png and /dev/null differ diff --git a/icons-png/border-left.png b/icons-png/border-left.png deleted file mode 100644 index 1ab09496c..000000000 Binary files a/icons-png/border-left.png and /dev/null differ diff --git a/icons-png/border-none.png b/icons-png/border-none.png deleted file mode 100644 index 04930ace1..000000000 Binary files a/icons-png/border-none.png and /dev/null differ diff --git a/icons-png/border-outer.png b/icons-png/border-outer.png deleted file mode 100644 index 78cfe57f9..000000000 Binary files a/icons-png/border-outer.png and /dev/null differ diff --git a/icons-png/border-radius.png b/icons-png/border-radius.png deleted file mode 100644 index f8023ee54..000000000 Binary files a/icons-png/border-radius.png and /dev/null differ diff --git a/icons-png/border-right.png b/icons-png/border-right.png deleted file mode 100644 index a09a216ba..000000000 Binary files a/icons-png/border-right.png and /dev/null differ diff --git a/icons-png/border-style-2.png b/icons-png/border-style-2.png deleted file mode 100644 index 8be9c8b8e..000000000 Binary files a/icons-png/border-style-2.png and /dev/null differ diff --git a/icons-png/border-style.png b/icons-png/border-style.png deleted file mode 100644 index 78958b72d..000000000 Binary files a/icons-png/border-style.png and /dev/null differ diff --git a/icons-png/border-top.png b/icons-png/border-top.png deleted file mode 100644 index 59eda5cae..000000000 Binary files a/icons-png/border-top.png and /dev/null differ diff --git a/icons-png/border-vertical.png b/icons-png/border-vertical.png deleted file mode 100644 index 109a3d1f3..000000000 Binary files a/icons-png/border-vertical.png and /dev/null differ diff --git a/icons-png/bottle-off.png b/icons-png/bottle-off.png deleted file mode 100644 index e0ad0deb5..000000000 Binary files a/icons-png/bottle-off.png and /dev/null differ diff --git a/icons-png/bottle.png b/icons-png/bottle.png deleted file mode 100644 index a5d45b512..000000000 Binary files a/icons-png/bottle.png and /dev/null differ diff --git a/icons-png/bounce-left.png b/icons-png/bounce-left.png deleted file mode 100644 index 78f003f60..000000000 Binary files a/icons-png/bounce-left.png and /dev/null differ diff --git a/icons-png/bounce-right.png b/icons-png/bounce-right.png deleted file mode 100644 index d0384d66f..000000000 Binary files a/icons-png/bounce-right.png and /dev/null differ diff --git a/icons-png/bow.png b/icons-png/bow.png deleted file mode 100644 index 79641f555..000000000 Binary files a/icons-png/bow.png and /dev/null differ diff --git a/icons-png/bowl.png b/icons-png/bowl.png deleted file mode 100644 index 0f0a0ab64..000000000 Binary files a/icons-png/bowl.png and /dev/null differ diff --git a/icons-png/box-align-bottom-left.png b/icons-png/box-align-bottom-left.png deleted file mode 100644 index ae66273f9..000000000 Binary files a/icons-png/box-align-bottom-left.png and /dev/null differ diff --git a/icons-png/box-align-bottom-right.png b/icons-png/box-align-bottom-right.png deleted file mode 100644 index 8cd3daacf..000000000 Binary files a/icons-png/box-align-bottom-right.png and /dev/null differ diff --git a/icons-png/box-align-bottom.png b/icons-png/box-align-bottom.png deleted file mode 100644 index 2d165739a..000000000 Binary files a/icons-png/box-align-bottom.png and /dev/null differ diff --git a/icons-png/box-align-left.png b/icons-png/box-align-left.png deleted file mode 100644 index 52d5807e4..000000000 Binary files a/icons-png/box-align-left.png and /dev/null differ diff --git a/icons-png/box-align-right.png b/icons-png/box-align-right.png deleted file mode 100644 index 6e8624411..000000000 Binary files a/icons-png/box-align-right.png and /dev/null differ diff --git a/icons-png/box-align-top-left.png b/icons-png/box-align-top-left.png deleted file mode 100644 index c2c0f0da1..000000000 Binary files a/icons-png/box-align-top-left.png and /dev/null differ diff --git a/icons-png/box-align-top-right.png b/icons-png/box-align-top-right.png deleted file mode 100644 index ae40f47c9..000000000 Binary files a/icons-png/box-align-top-right.png and /dev/null differ diff --git a/icons-png/box-align-top.png b/icons-png/box-align-top.png deleted file mode 100644 index 2a1449690..000000000 Binary files a/icons-png/box-align-top.png and /dev/null differ diff --git a/icons-png/box-margin.png b/icons-png/box-margin.png deleted file mode 100644 index 88552f726..000000000 Binary files a/icons-png/box-margin.png and /dev/null differ diff --git a/icons-png/box-model-2-off.png b/icons-png/box-model-2-off.png deleted file mode 100644 index 0d8027473..000000000 Binary files a/icons-png/box-model-2-off.png and /dev/null differ diff --git a/icons-png/box-model-2.png b/icons-png/box-model-2.png deleted file mode 100644 index af36a2b66..000000000 Binary files a/icons-png/box-model-2.png and /dev/null differ diff --git a/icons-png/box-model-off.png b/icons-png/box-model-off.png deleted file mode 100644 index d0c207e96..000000000 Binary files a/icons-png/box-model-off.png and /dev/null differ diff --git a/icons-png/box-model.png b/icons-png/box-model.png deleted file mode 100644 index d83a81db6..000000000 Binary files a/icons-png/box-model.png and /dev/null differ diff --git a/icons-png/box-multiple-0.png b/icons-png/box-multiple-0.png deleted file mode 100644 index 9f51f8558..000000000 Binary files a/icons-png/box-multiple-0.png and /dev/null differ diff --git a/icons-png/box-multiple-1.png b/icons-png/box-multiple-1.png deleted file mode 100644 index c0b138c9b..000000000 Binary files a/icons-png/box-multiple-1.png and /dev/null differ diff --git a/icons-png/box-multiple-2.png b/icons-png/box-multiple-2.png deleted file mode 100644 index 9aca61b7f..000000000 Binary files a/icons-png/box-multiple-2.png and /dev/null differ diff --git a/icons-png/box-multiple-3.png b/icons-png/box-multiple-3.png deleted file mode 100644 index 3b5fd0670..000000000 Binary files a/icons-png/box-multiple-3.png and /dev/null differ diff --git a/icons-png/box-multiple-4.png b/icons-png/box-multiple-4.png deleted file mode 100644 index ae3b6a71d..000000000 Binary files a/icons-png/box-multiple-4.png and /dev/null differ diff --git a/icons-png/box-multiple-5.png b/icons-png/box-multiple-5.png deleted file mode 100644 index 0d588bd38..000000000 Binary files a/icons-png/box-multiple-5.png and /dev/null differ diff --git a/icons-png/box-multiple-6.png b/icons-png/box-multiple-6.png deleted file mode 100644 index ca422d017..000000000 Binary files a/icons-png/box-multiple-6.png and /dev/null differ diff --git a/icons-png/box-multiple-7.png b/icons-png/box-multiple-7.png deleted file mode 100644 index e081f2df6..000000000 Binary files a/icons-png/box-multiple-7.png and /dev/null differ diff --git a/icons-png/box-multiple-8.png b/icons-png/box-multiple-8.png deleted file mode 100644 index bf0cf8c5b..000000000 Binary files a/icons-png/box-multiple-8.png and /dev/null differ diff --git a/icons-png/box-multiple-9.png b/icons-png/box-multiple-9.png deleted file mode 100644 index 61cee9117..000000000 Binary files a/icons-png/box-multiple-9.png and /dev/null differ diff --git a/icons-png/box-multiple.png b/icons-png/box-multiple.png deleted file mode 100644 index d08dbdcc4..000000000 Binary files a/icons-png/box-multiple.png and /dev/null differ diff --git a/icons-png/box-off.png b/icons-png/box-off.png deleted file mode 100644 index e4686187f..000000000 Binary files a/icons-png/box-off.png and /dev/null differ diff --git a/icons-png/box-padding.png b/icons-png/box-padding.png deleted file mode 100644 index 19f1c55dc..000000000 Binary files a/icons-png/box-padding.png and /dev/null differ diff --git a/icons-png/box-seam.png b/icons-png/box-seam.png deleted file mode 100644 index 334e469ed..000000000 Binary files a/icons-png/box-seam.png and /dev/null differ diff --git a/icons-png/box.png b/icons-png/box.png deleted file mode 100644 index 25776aa34..000000000 Binary files a/icons-png/box.png and /dev/null differ diff --git a/icons-png/braces-off.png b/icons-png/braces-off.png deleted file mode 100644 index fb86da8cb..000000000 Binary files a/icons-png/braces-off.png and /dev/null differ diff --git a/icons-png/braces.png b/icons-png/braces.png deleted file mode 100644 index 135d95559..000000000 Binary files a/icons-png/braces.png and /dev/null differ diff --git a/icons-png/brackets-contain-end.png b/icons-png/brackets-contain-end.png deleted file mode 100644 index 6f619e2ed..000000000 Binary files a/icons-png/brackets-contain-end.png and /dev/null differ diff --git a/icons-png/brackets-contain-start.png b/icons-png/brackets-contain-start.png deleted file mode 100644 index 4d5d2710e..000000000 Binary files a/icons-png/brackets-contain-start.png and /dev/null differ diff --git a/icons-png/brackets-contain.png b/icons-png/brackets-contain.png deleted file mode 100644 index 7557ab003..000000000 Binary files a/icons-png/brackets-contain.png and /dev/null differ diff --git a/icons-png/brackets-off.png b/icons-png/brackets-off.png deleted file mode 100644 index b987cec0a..000000000 Binary files a/icons-png/brackets-off.png and /dev/null differ diff --git a/icons-png/brackets.png b/icons-png/brackets.png deleted file mode 100644 index 21d9a6d3f..000000000 Binary files a/icons-png/brackets.png and /dev/null differ diff --git a/icons-png/braile.png b/icons-png/braile.png deleted file mode 100644 index e591a6975..000000000 Binary files a/icons-png/braile.png and /dev/null differ diff --git a/icons-png/brain.png b/icons-png/brain.png deleted file mode 100644 index f77dc06d3..000000000 Binary files a/icons-png/brain.png and /dev/null differ diff --git a/icons-png/brand-4chan.png b/icons-png/brand-4chan.png deleted file mode 100644 index 76b6eac60..000000000 Binary files a/icons-png/brand-4chan.png and /dev/null differ diff --git a/icons-png/brand-abstract.png b/icons-png/brand-abstract.png deleted file mode 100644 index 9297ac1cd..000000000 Binary files a/icons-png/brand-abstract.png and /dev/null differ diff --git a/icons-png/brand-adobe.png b/icons-png/brand-adobe.png deleted file mode 100644 index ea3b8a7f2..000000000 Binary files a/icons-png/brand-adobe.png and /dev/null differ diff --git a/icons-png/brand-adonis-js.png b/icons-png/brand-adonis-js.png deleted file mode 100644 index 19d84e5bc..000000000 Binary files a/icons-png/brand-adonis-js.png and /dev/null differ diff --git a/icons-png/brand-airbnb.png b/icons-png/brand-airbnb.png deleted file mode 100644 index f4c480a2f..000000000 Binary files a/icons-png/brand-airbnb.png and /dev/null differ diff --git a/icons-png/brand-airtable.png b/icons-png/brand-airtable.png deleted file mode 100644 index 88b24789e..000000000 Binary files a/icons-png/brand-airtable.png and /dev/null differ diff --git a/icons-png/brand-algolia.png b/icons-png/brand-algolia.png deleted file mode 100644 index 38a01bcaa..000000000 Binary files a/icons-png/brand-algolia.png and /dev/null differ diff --git a/icons-png/brand-alpine-js.png b/icons-png/brand-alpine-js.png deleted file mode 100644 index 3fe008733..000000000 Binary files a/icons-png/brand-alpine-js.png and /dev/null differ diff --git a/icons-png/brand-amazon.png b/icons-png/brand-amazon.png deleted file mode 100644 index 7afeed85b..000000000 Binary files a/icons-png/brand-amazon.png and /dev/null differ diff --git a/icons-png/brand-amd.png b/icons-png/brand-amd.png deleted file mode 100644 index 764825b83..000000000 Binary files a/icons-png/brand-amd.png and /dev/null differ diff --git a/icons-png/brand-amigo.png b/icons-png/brand-amigo.png deleted file mode 100644 index 263cc8ef1..000000000 Binary files a/icons-png/brand-amigo.png and /dev/null differ diff --git a/icons-png/brand-amongus.png b/icons-png/brand-amongus.png deleted file mode 100644 index 949b25a57..000000000 Binary files a/icons-png/brand-amongus.png and /dev/null differ diff --git a/icons-png/brand-android.png b/icons-png/brand-android.png deleted file mode 100644 index 4b762cf6d..000000000 Binary files a/icons-png/brand-android.png and /dev/null differ diff --git a/icons-png/brand-angular.png b/icons-png/brand-angular.png deleted file mode 100644 index 768321380..000000000 Binary files a/icons-png/brand-angular.png and /dev/null differ diff --git a/icons-png/brand-ao3.png b/icons-png/brand-ao3.png deleted file mode 100644 index ab90deed5..000000000 Binary files a/icons-png/brand-ao3.png and /dev/null differ diff --git a/icons-png/brand-appgallery.png b/icons-png/brand-appgallery.png deleted file mode 100644 index 4db7e800b..000000000 Binary files a/icons-png/brand-appgallery.png and /dev/null differ diff --git a/icons-png/brand-apple-arcade.png b/icons-png/brand-apple-arcade.png deleted file mode 100644 index 4b38a521a..000000000 Binary files a/icons-png/brand-apple-arcade.png and /dev/null differ diff --git a/icons-png/brand-apple-podcast.png b/icons-png/brand-apple-podcast.png deleted file mode 100644 index d159bedf8..000000000 Binary files a/icons-png/brand-apple-podcast.png and /dev/null differ diff --git a/icons-png/brand-apple.png b/icons-png/brand-apple.png deleted file mode 100644 index 23a7efd0e..000000000 Binary files a/icons-png/brand-apple.png and /dev/null differ diff --git a/icons-png/brand-appstore.png b/icons-png/brand-appstore.png deleted file mode 100644 index c99032c3b..000000000 Binary files a/icons-png/brand-appstore.png and /dev/null differ diff --git a/icons-png/brand-asana.png b/icons-png/brand-asana.png deleted file mode 100644 index 84eb93f95..000000000 Binary files a/icons-png/brand-asana.png and /dev/null differ diff --git a/icons-png/brand-backbone.png b/icons-png/brand-backbone.png deleted file mode 100644 index 70d6e0c4c..000000000 Binary files a/icons-png/brand-backbone.png and /dev/null differ diff --git a/icons-png/brand-badoo.png b/icons-png/brand-badoo.png deleted file mode 100644 index ac0e731b7..000000000 Binary files a/icons-png/brand-badoo.png and /dev/null differ diff --git a/icons-png/brand-baidu.png b/icons-png/brand-baidu.png deleted file mode 100644 index 0eee3cc54..000000000 Binary files a/icons-png/brand-baidu.png and /dev/null differ diff --git a/icons-png/brand-bandcamp.png b/icons-png/brand-bandcamp.png deleted file mode 100644 index ba3cf5940..000000000 Binary files a/icons-png/brand-bandcamp.png and /dev/null differ diff --git a/icons-png/brand-bandlab.png b/icons-png/brand-bandlab.png deleted file mode 100644 index 29914bc7e..000000000 Binary files a/icons-png/brand-bandlab.png and /dev/null differ diff --git a/icons-png/brand-beats.png b/icons-png/brand-beats.png deleted file mode 100644 index 294b9a1d3..000000000 Binary files a/icons-png/brand-beats.png and /dev/null differ diff --git a/icons-png/brand-behance.png b/icons-png/brand-behance.png deleted file mode 100644 index fcaed795a..000000000 Binary files a/icons-png/brand-behance.png and /dev/null differ diff --git a/icons-png/brand-binance.png b/icons-png/brand-binance.png deleted file mode 100644 index bbfed484a..000000000 Binary files a/icons-png/brand-binance.png and /dev/null differ diff --git a/icons-png/brand-bing.png b/icons-png/brand-bing.png deleted file mode 100644 index 7a093b7d9..000000000 Binary files a/icons-png/brand-bing.png and /dev/null differ diff --git a/icons-png/brand-bitbucket.png b/icons-png/brand-bitbucket.png deleted file mode 100644 index 3ae6c07dd..000000000 Binary files a/icons-png/brand-bitbucket.png and /dev/null differ diff --git a/icons-png/brand-blackbery.png b/icons-png/brand-blackbery.png deleted file mode 100644 index 6f33f85d1..000000000 Binary files a/icons-png/brand-blackbery.png and /dev/null differ diff --git a/icons-png/brand-blender.png b/icons-png/brand-blender.png deleted file mode 100644 index 1563ebea0..000000000 Binary files a/icons-png/brand-blender.png and /dev/null differ diff --git a/icons-png/brand-blogger.png b/icons-png/brand-blogger.png deleted file mode 100644 index 9f9fe478f..000000000 Binary files a/icons-png/brand-blogger.png and /dev/null differ diff --git a/icons-png/brand-booking.png b/icons-png/brand-booking.png deleted file mode 100644 index c0afc9993..000000000 Binary files a/icons-png/brand-booking.png and /dev/null differ diff --git a/icons-png/brand-bootstrap.png b/icons-png/brand-bootstrap.png deleted file mode 100644 index d943fc211..000000000 Binary files a/icons-png/brand-bootstrap.png and /dev/null differ diff --git a/icons-png/brand-bulma.png b/icons-png/brand-bulma.png deleted file mode 100644 index f94af449d..000000000 Binary files a/icons-png/brand-bulma.png and /dev/null differ diff --git a/icons-png/brand-bumble.png b/icons-png/brand-bumble.png deleted file mode 100644 index b6110e1a0..000000000 Binary files a/icons-png/brand-bumble.png and /dev/null differ diff --git a/icons-png/brand-bunpo.png b/icons-png/brand-bunpo.png deleted file mode 100644 index c27c0b80c..000000000 Binary files a/icons-png/brand-bunpo.png and /dev/null differ diff --git a/icons-png/brand-campaignmonitor.png b/icons-png/brand-campaignmonitor.png deleted file mode 100644 index 10c86e102..000000000 Binary files a/icons-png/brand-campaignmonitor.png and /dev/null differ diff --git a/icons-png/brand-carbon.png b/icons-png/brand-carbon.png deleted file mode 100644 index 3db090a28..000000000 Binary files a/icons-png/brand-carbon.png and /dev/null differ diff --git a/icons-png/brand-cashapp.png b/icons-png/brand-cashapp.png deleted file mode 100644 index 4564c8b8d..000000000 Binary files a/icons-png/brand-cashapp.png and /dev/null differ diff --git a/icons-png/brand-chrome.png b/icons-png/brand-chrome.png deleted file mode 100644 index 9e7b67aab..000000000 Binary files a/icons-png/brand-chrome.png and /dev/null differ diff --git a/icons-png/brand-citymapper.png b/icons-png/brand-citymapper.png deleted file mode 100644 index 225ae5503..000000000 Binary files a/icons-png/brand-citymapper.png and /dev/null differ diff --git a/icons-png/brand-codecov.png b/icons-png/brand-codecov.png deleted file mode 100644 index f54862517..000000000 Binary files a/icons-png/brand-codecov.png and /dev/null differ diff --git a/icons-png/brand-codepen.png b/icons-png/brand-codepen.png deleted file mode 100644 index aee66a3b8..000000000 Binary files a/icons-png/brand-codepen.png and /dev/null differ diff --git a/icons-png/brand-codesandbox.png b/icons-png/brand-codesandbox.png deleted file mode 100644 index 778df4878..000000000 Binary files a/icons-png/brand-codesandbox.png and /dev/null differ diff --git a/icons-png/brand-cohost.png b/icons-png/brand-cohost.png deleted file mode 100644 index e245841d7..000000000 Binary files a/icons-png/brand-cohost.png and /dev/null differ diff --git a/icons-png/brand-coinbase.png b/icons-png/brand-coinbase.png deleted file mode 100644 index 8051dfde8..000000000 Binary files a/icons-png/brand-coinbase.png and /dev/null differ diff --git a/icons-png/brand-comedy-central.png b/icons-png/brand-comedy-central.png deleted file mode 100644 index 7ba40b907..000000000 Binary files a/icons-png/brand-comedy-central.png and /dev/null differ diff --git a/icons-png/brand-coreos.png b/icons-png/brand-coreos.png deleted file mode 100644 index e1c768ce1..000000000 Binary files a/icons-png/brand-coreos.png and /dev/null differ diff --git a/icons-png/brand-couchdb.png b/icons-png/brand-couchdb.png deleted file mode 100644 index 233201026..000000000 Binary files a/icons-png/brand-couchdb.png and /dev/null differ diff --git a/icons-png/brand-couchsurfing.png b/icons-png/brand-couchsurfing.png deleted file mode 100644 index 2785e3bab..000000000 Binary files a/icons-png/brand-couchsurfing.png and /dev/null differ diff --git a/icons-png/brand-cpp.png b/icons-png/brand-cpp.png deleted file mode 100644 index 4cd7dc194..000000000 Binary files a/icons-png/brand-cpp.png and /dev/null differ diff --git a/icons-png/brand-css3.png b/icons-png/brand-css3.png deleted file mode 100644 index 7e7e26dfd..000000000 Binary files a/icons-png/brand-css3.png and /dev/null differ diff --git a/icons-png/brand-ctemplar.png b/icons-png/brand-ctemplar.png deleted file mode 100644 index d137c9158..000000000 Binary files a/icons-png/brand-ctemplar.png and /dev/null differ diff --git a/icons-png/brand-cucumber.png b/icons-png/brand-cucumber.png deleted file mode 100644 index 5d35a69db..000000000 Binary files a/icons-png/brand-cucumber.png and /dev/null differ diff --git a/icons-png/brand-cupra.png b/icons-png/brand-cupra.png deleted file mode 100644 index f5cc15c76..000000000 Binary files a/icons-png/brand-cupra.png and /dev/null differ diff --git a/icons-png/brand-cypress.png b/icons-png/brand-cypress.png deleted file mode 100644 index e943dc7fc..000000000 Binary files a/icons-png/brand-cypress.png and /dev/null differ diff --git a/icons-png/brand-d3.png b/icons-png/brand-d3.png deleted file mode 100644 index 897437e28..000000000 Binary files a/icons-png/brand-d3.png and /dev/null differ diff --git a/icons-png/brand-days-counter.png b/icons-png/brand-days-counter.png deleted file mode 100644 index d0a6a927c..000000000 Binary files a/icons-png/brand-days-counter.png and /dev/null differ diff --git a/icons-png/brand-dcos.png b/icons-png/brand-dcos.png deleted file mode 100644 index 3f562b823..000000000 Binary files a/icons-png/brand-dcos.png and /dev/null differ diff --git a/icons-png/brand-debian.png b/icons-png/brand-debian.png deleted file mode 100644 index 1be0f23b4..000000000 Binary files a/icons-png/brand-debian.png and /dev/null differ diff --git a/icons-png/brand-deliveroo.png b/icons-png/brand-deliveroo.png deleted file mode 100644 index cc660f4bc..000000000 Binary files a/icons-png/brand-deliveroo.png and /dev/null differ diff --git a/icons-png/brand-deno.png b/icons-png/brand-deno.png deleted file mode 100644 index 8b8c3a1c2..000000000 Binary files a/icons-png/brand-deno.png and /dev/null differ diff --git a/icons-png/brand-denodo.png b/icons-png/brand-denodo.png deleted file mode 100644 index a056c63c7..000000000 Binary files a/icons-png/brand-denodo.png and /dev/null differ diff --git a/icons-png/brand-deviantart.png b/icons-png/brand-deviantart.png deleted file mode 100644 index 9cdeffd28..000000000 Binary files a/icons-png/brand-deviantart.png and /dev/null differ diff --git a/icons-png/brand-dingtalk.png b/icons-png/brand-dingtalk.png deleted file mode 100644 index 2c6daffc3..000000000 Binary files a/icons-png/brand-dingtalk.png and /dev/null differ diff --git a/icons-png/brand-discord.png b/icons-png/brand-discord.png deleted file mode 100644 index c6d873566..000000000 Binary files a/icons-png/brand-discord.png and /dev/null differ diff --git a/icons-png/brand-disney.png b/icons-png/brand-disney.png deleted file mode 100644 index 5e2a2f62f..000000000 Binary files a/icons-png/brand-disney.png and /dev/null differ diff --git a/icons-png/brand-disqus.png b/icons-png/brand-disqus.png deleted file mode 100644 index 3a7b0d8ba..000000000 Binary files a/icons-png/brand-disqus.png and /dev/null differ diff --git a/icons-png/brand-django.png b/icons-png/brand-django.png deleted file mode 100644 index 8c152df8c..000000000 Binary files a/icons-png/brand-django.png and /dev/null differ diff --git a/icons-png/brand-docker.png b/icons-png/brand-docker.png deleted file mode 100644 index 28a1c6463..000000000 Binary files a/icons-png/brand-docker.png and /dev/null differ diff --git a/icons-png/brand-doctrine.png b/icons-png/brand-doctrine.png deleted file mode 100644 index 0d34d10c0..000000000 Binary files a/icons-png/brand-doctrine.png and /dev/null differ diff --git a/icons-png/brand-dolby-digital.png b/icons-png/brand-dolby-digital.png deleted file mode 100644 index 298a6391f..000000000 Binary files a/icons-png/brand-dolby-digital.png and /dev/null differ diff --git a/icons-png/brand-douban.png b/icons-png/brand-douban.png deleted file mode 100644 index bbfbb1620..000000000 Binary files a/icons-png/brand-douban.png and /dev/null differ diff --git a/icons-png/brand-dribbble.png b/icons-png/brand-dribbble.png deleted file mode 100644 index 39c85e6e4..000000000 Binary files a/icons-png/brand-dribbble.png and /dev/null differ diff --git a/icons-png/brand-drops.png b/icons-png/brand-drops.png deleted file mode 100644 index 6c2827410..000000000 Binary files a/icons-png/brand-drops.png and /dev/null differ diff --git a/icons-png/brand-drupal.png b/icons-png/brand-drupal.png deleted file mode 100644 index 03b6d3031..000000000 Binary files a/icons-png/brand-drupal.png and /dev/null differ diff --git a/icons-png/brand-edge.png b/icons-png/brand-edge.png deleted file mode 100644 index ddc45b0be..000000000 Binary files a/icons-png/brand-edge.png and /dev/null differ diff --git a/icons-png/brand-elastic.png b/icons-png/brand-elastic.png deleted file mode 100644 index 38f5011e3..000000000 Binary files a/icons-png/brand-elastic.png and /dev/null differ diff --git a/icons-png/brand-ember.png b/icons-png/brand-ember.png deleted file mode 100644 index ca9114fba..000000000 Binary files a/icons-png/brand-ember.png and /dev/null differ diff --git a/icons-png/brand-envato.png b/icons-png/brand-envato.png deleted file mode 100644 index 295773bb3..000000000 Binary files a/icons-png/brand-envato.png and /dev/null differ diff --git a/icons-png/brand-etsy.png b/icons-png/brand-etsy.png deleted file mode 100644 index 40c7f1741..000000000 Binary files a/icons-png/brand-etsy.png and /dev/null differ diff --git a/icons-png/brand-evernote.png b/icons-png/brand-evernote.png deleted file mode 100644 index 55041e633..000000000 Binary files a/icons-png/brand-evernote.png and /dev/null differ diff --git a/icons-png/brand-facebook.png b/icons-png/brand-facebook.png deleted file mode 100644 index cbad294c8..000000000 Binary files a/icons-png/brand-facebook.png and /dev/null differ diff --git a/icons-png/brand-figma.png b/icons-png/brand-figma.png deleted file mode 100644 index 9ea73196c..000000000 Binary files a/icons-png/brand-figma.png and /dev/null differ diff --git a/icons-png/brand-finder.png b/icons-png/brand-finder.png deleted file mode 100644 index bb524e075..000000000 Binary files a/icons-png/brand-finder.png and /dev/null differ diff --git a/icons-png/brand-firebase.png b/icons-png/brand-firebase.png deleted file mode 100644 index d456a0e53..000000000 Binary files a/icons-png/brand-firebase.png and /dev/null differ diff --git a/icons-png/brand-firefox.png b/icons-png/brand-firefox.png deleted file mode 100644 index 86fb4eba2..000000000 Binary files a/icons-png/brand-firefox.png and /dev/null differ diff --git a/icons-png/brand-flickr.png b/icons-png/brand-flickr.png deleted file mode 100644 index e854aa60d..000000000 Binary files a/icons-png/brand-flickr.png and /dev/null differ diff --git a/icons-png/brand-flightradar24.png b/icons-png/brand-flightradar24.png deleted file mode 100644 index f8d1b5d72..000000000 Binary files a/icons-png/brand-flightradar24.png and /dev/null differ diff --git a/icons-png/brand-flipboard.png b/icons-png/brand-flipboard.png deleted file mode 100644 index f6fc23e8e..000000000 Binary files a/icons-png/brand-flipboard.png and /dev/null differ diff --git a/icons-png/brand-flutter.png b/icons-png/brand-flutter.png deleted file mode 100644 index 06f43387d..000000000 Binary files a/icons-png/brand-flutter.png and /dev/null differ diff --git a/icons-png/brand-fortnite.png b/icons-png/brand-fortnite.png deleted file mode 100644 index 8bfc08214..000000000 Binary files a/icons-png/brand-fortnite.png and /dev/null differ diff --git a/icons-png/brand-foursquare.png b/icons-png/brand-foursquare.png deleted file mode 100644 index 4ab05e7c2..000000000 Binary files a/icons-png/brand-foursquare.png and /dev/null differ diff --git a/icons-png/brand-framer.png b/icons-png/brand-framer.png deleted file mode 100644 index 7ed6e5e5e..000000000 Binary files a/icons-png/brand-framer.png and /dev/null differ diff --git a/icons-png/brand-funimation.png b/icons-png/brand-funimation.png deleted file mode 100644 index aa9f2a349..000000000 Binary files a/icons-png/brand-funimation.png and /dev/null differ diff --git a/icons-png/brand-gatsby.png b/icons-png/brand-gatsby.png deleted file mode 100644 index 3f9f50eb2..000000000 Binary files a/icons-png/brand-gatsby.png and /dev/null differ diff --git a/icons-png/brand-git.png b/icons-png/brand-git.png deleted file mode 100644 index 59ce57168..000000000 Binary files a/icons-png/brand-git.png and /dev/null differ diff --git a/icons-png/brand-github-copilot.png b/icons-png/brand-github-copilot.png deleted file mode 100644 index 87b0d9cfc..000000000 Binary files a/icons-png/brand-github-copilot.png and /dev/null differ diff --git a/icons-png/brand-github.png b/icons-png/brand-github.png deleted file mode 100644 index a84152334..000000000 Binary files a/icons-png/brand-github.png and /dev/null differ diff --git a/icons-png/brand-gitlab.png b/icons-png/brand-gitlab.png deleted file mode 100644 index 3196c51f6..000000000 Binary files a/icons-png/brand-gitlab.png and /dev/null differ diff --git a/icons-png/brand-gmail.png b/icons-png/brand-gmail.png deleted file mode 100644 index 665a9bbe9..000000000 Binary files a/icons-png/brand-gmail.png and /dev/null differ diff --git a/icons-png/brand-google-analytics.png b/icons-png/brand-google-analytics.png deleted file mode 100644 index b096463fb..000000000 Binary files a/icons-png/brand-google-analytics.png and /dev/null differ diff --git a/icons-png/brand-google-big-query.png b/icons-png/brand-google-big-query.png deleted file mode 100644 index 3b3d3b5e7..000000000 Binary files a/icons-png/brand-google-big-query.png and /dev/null differ diff --git a/icons-png/brand-google-drive.png b/icons-png/brand-google-drive.png deleted file mode 100644 index b0612ddb2..000000000 Binary files a/icons-png/brand-google-drive.png and /dev/null differ diff --git a/icons-png/brand-google-fit.png b/icons-png/brand-google-fit.png deleted file mode 100644 index 11f86bb6d..000000000 Binary files a/icons-png/brand-google-fit.png and /dev/null differ diff --git a/icons-png/brand-google-home.png b/icons-png/brand-google-home.png deleted file mode 100644 index 196a5ee7c..000000000 Binary files a/icons-png/brand-google-home.png and /dev/null differ diff --git a/icons-png/brand-google-one.png b/icons-png/brand-google-one.png deleted file mode 100644 index 9c4b97061..000000000 Binary files a/icons-png/brand-google-one.png and /dev/null differ diff --git a/icons-png/brand-google-photos.png b/icons-png/brand-google-photos.png deleted file mode 100644 index 6801dfbce..000000000 Binary files a/icons-png/brand-google-photos.png and /dev/null differ diff --git a/icons-png/brand-google-play.png b/icons-png/brand-google-play.png deleted file mode 100644 index a6b5be904..000000000 Binary files a/icons-png/brand-google-play.png and /dev/null differ diff --git a/icons-png/brand-google-podcasts.png b/icons-png/brand-google-podcasts.png deleted file mode 100644 index 0862b4915..000000000 Binary files a/icons-png/brand-google-podcasts.png and /dev/null differ diff --git a/icons-png/brand-google.png b/icons-png/brand-google.png deleted file mode 100644 index b3068c735..000000000 Binary files a/icons-png/brand-google.png and /dev/null differ diff --git a/icons-png/brand-grammarly.png b/icons-png/brand-grammarly.png deleted file mode 100644 index a797203b6..000000000 Binary files a/icons-png/brand-grammarly.png and /dev/null differ diff --git a/icons-png/brand-graphql.png b/icons-png/brand-graphql.png deleted file mode 100644 index a1b57a97b..000000000 Binary files a/icons-png/brand-graphql.png and /dev/null differ diff --git a/icons-png/brand-gravatar.png b/icons-png/brand-gravatar.png deleted file mode 100644 index b80ada0bd..000000000 Binary files a/icons-png/brand-gravatar.png and /dev/null differ diff --git a/icons-png/brand-grindr.png b/icons-png/brand-grindr.png deleted file mode 100644 index b4ae810a8..000000000 Binary files a/icons-png/brand-grindr.png and /dev/null differ diff --git a/icons-png/brand-guardian.png b/icons-png/brand-guardian.png deleted file mode 100644 index 392586a12..000000000 Binary files a/icons-png/brand-guardian.png and /dev/null differ diff --git a/icons-png/brand-gumroad.png b/icons-png/brand-gumroad.png deleted file mode 100644 index 311c0e44e..000000000 Binary files a/icons-png/brand-gumroad.png and /dev/null differ diff --git a/icons-png/brand-hbo.png b/icons-png/brand-hbo.png deleted file mode 100644 index ce14df383..000000000 Binary files a/icons-png/brand-hbo.png and /dev/null differ diff --git a/icons-png/brand-headlessui.png b/icons-png/brand-headlessui.png deleted file mode 100644 index 958de2902..000000000 Binary files a/icons-png/brand-headlessui.png and /dev/null differ diff --git a/icons-png/brand-hipchat.png b/icons-png/brand-hipchat.png deleted file mode 100644 index e23c99163..000000000 Binary files a/icons-png/brand-hipchat.png and /dev/null differ diff --git a/icons-png/brand-html5.png b/icons-png/brand-html5.png deleted file mode 100644 index 446538839..000000000 Binary files a/icons-png/brand-html5.png and /dev/null differ diff --git a/icons-png/brand-inertia.png b/icons-png/brand-inertia.png deleted file mode 100644 index b4a76fbe5..000000000 Binary files a/icons-png/brand-inertia.png and /dev/null differ diff --git a/icons-png/brand-instagram.png b/icons-png/brand-instagram.png deleted file mode 100644 index de5a6a164..000000000 Binary files a/icons-png/brand-instagram.png and /dev/null differ diff --git a/icons-png/brand-intercom.png b/icons-png/brand-intercom.png deleted file mode 100644 index 6b92c60c3..000000000 Binary files a/icons-png/brand-intercom.png and /dev/null differ diff --git a/icons-png/brand-javascript.png b/icons-png/brand-javascript.png deleted file mode 100644 index 927a26a54..000000000 Binary files a/icons-png/brand-javascript.png and /dev/null differ diff --git a/icons-png/brand-kickstarter.png b/icons-png/brand-kickstarter.png deleted file mode 100644 index 7f757141b..000000000 Binary files a/icons-png/brand-kickstarter.png and /dev/null differ diff --git a/icons-png/brand-kotlin.png b/icons-png/brand-kotlin.png deleted file mode 100644 index 51ebc4bcc..000000000 Binary files a/icons-png/brand-kotlin.png and /dev/null differ diff --git a/icons-png/brand-laravel.png b/icons-png/brand-laravel.png deleted file mode 100644 index 1e5ba3d66..000000000 Binary files a/icons-png/brand-laravel.png and /dev/null differ diff --git a/icons-png/brand-lastfm.png b/icons-png/brand-lastfm.png deleted file mode 100644 index eb363a25c..000000000 Binary files a/icons-png/brand-lastfm.png and /dev/null differ diff --git a/icons-png/brand-linkedin.png b/icons-png/brand-linkedin.png deleted file mode 100644 index 4e8001c0a..000000000 Binary files a/icons-png/brand-linkedin.png and /dev/null differ diff --git a/icons-png/brand-linktree.png b/icons-png/brand-linktree.png deleted file mode 100644 index 25ea3d3fb..000000000 Binary files a/icons-png/brand-linktree.png and /dev/null differ diff --git a/icons-png/brand-linqpad.png b/icons-png/brand-linqpad.png deleted file mode 100644 index 73dd031a8..000000000 Binary files a/icons-png/brand-linqpad.png and /dev/null differ diff --git a/icons-png/brand-loom.png b/icons-png/brand-loom.png deleted file mode 100644 index 5110b6bf5..000000000 Binary files a/icons-png/brand-loom.png and /dev/null differ diff --git a/icons-png/brand-mailgun.png b/icons-png/brand-mailgun.png deleted file mode 100644 index fbe974c1d..000000000 Binary files a/icons-png/brand-mailgun.png and /dev/null differ diff --git a/icons-png/brand-mantine.png b/icons-png/brand-mantine.png deleted file mode 100644 index e0e44909b..000000000 Binary files a/icons-png/brand-mantine.png and /dev/null differ diff --git a/icons-png/brand-mastercard.png b/icons-png/brand-mastercard.png deleted file mode 100644 index 974ac635d..000000000 Binary files a/icons-png/brand-mastercard.png and /dev/null differ diff --git a/icons-png/brand-mastodon.png b/icons-png/brand-mastodon.png deleted file mode 100644 index 32f53c0d5..000000000 Binary files a/icons-png/brand-mastodon.png and /dev/null differ diff --git a/icons-png/brand-matrix.png b/icons-png/brand-matrix.png deleted file mode 100644 index 8b47b7ea7..000000000 Binary files a/icons-png/brand-matrix.png and /dev/null differ diff --git a/icons-png/brand-mcdonalds.png b/icons-png/brand-mcdonalds.png deleted file mode 100644 index fc410b694..000000000 Binary files a/icons-png/brand-mcdonalds.png and /dev/null differ diff --git a/icons-png/brand-medium.png b/icons-png/brand-medium.png deleted file mode 100644 index 144f305d6..000000000 Binary files a/icons-png/brand-medium.png and /dev/null differ diff --git a/icons-png/brand-mercedes.png b/icons-png/brand-mercedes.png deleted file mode 100644 index 0a38b00af..000000000 Binary files a/icons-png/brand-mercedes.png and /dev/null differ diff --git a/icons-png/brand-messenger.png b/icons-png/brand-messenger.png deleted file mode 100644 index 197417033..000000000 Binary files a/icons-png/brand-messenger.png and /dev/null differ diff --git a/icons-png/brand-meta.png b/icons-png/brand-meta.png deleted file mode 100644 index 3e7eeec01..000000000 Binary files a/icons-png/brand-meta.png and /dev/null differ diff --git a/icons-png/brand-miniprogram.png b/icons-png/brand-miniprogram.png deleted file mode 100644 index 070c78654..000000000 Binary files a/icons-png/brand-miniprogram.png and /dev/null differ diff --git a/icons-png/brand-mixpanel.png b/icons-png/brand-mixpanel.png deleted file mode 100644 index 20b06f447..000000000 Binary files a/icons-png/brand-mixpanel.png and /dev/null differ diff --git a/icons-png/brand-monday.png b/icons-png/brand-monday.png deleted file mode 100644 index 0cde3b55d..000000000 Binary files a/icons-png/brand-monday.png and /dev/null differ diff --git a/icons-png/brand-mongodb.png b/icons-png/brand-mongodb.png deleted file mode 100644 index d51f8f90a..000000000 Binary files a/icons-png/brand-mongodb.png and /dev/null differ diff --git a/icons-png/brand-my-oppo.png b/icons-png/brand-my-oppo.png deleted file mode 100644 index 7b4cbddc9..000000000 Binary files a/icons-png/brand-my-oppo.png and /dev/null differ diff --git a/icons-png/brand-mysql.png b/icons-png/brand-mysql.png deleted file mode 100644 index 4f159b5d0..000000000 Binary files a/icons-png/brand-mysql.png and /dev/null differ diff --git a/icons-png/brand-national-geographic.png b/icons-png/brand-national-geographic.png deleted file mode 100644 index d6f7ad78e..000000000 Binary files a/icons-png/brand-national-geographic.png and /dev/null differ diff --git a/icons-png/brand-nem.png b/icons-png/brand-nem.png deleted file mode 100644 index 6409912c3..000000000 Binary files a/icons-png/brand-nem.png and /dev/null differ diff --git a/icons-png/brand-netbeans.png b/icons-png/brand-netbeans.png deleted file mode 100644 index a063a9c85..000000000 Binary files a/icons-png/brand-netbeans.png and /dev/null differ diff --git a/icons-png/brand-netease-music.png b/icons-png/brand-netease-music.png deleted file mode 100644 index ba4f78288..000000000 Binary files a/icons-png/brand-netease-music.png and /dev/null differ diff --git a/icons-png/brand-netflix.png b/icons-png/brand-netflix.png deleted file mode 100644 index b4b46a38d..000000000 Binary files a/icons-png/brand-netflix.png and /dev/null differ diff --git a/icons-png/brand-nexo.png b/icons-png/brand-nexo.png deleted file mode 100644 index ac5fba150..000000000 Binary files a/icons-png/brand-nexo.png and /dev/null differ diff --git a/icons-png/brand-nextcloud.png b/icons-png/brand-nextcloud.png deleted file mode 100644 index a8827d8c1..000000000 Binary files a/icons-png/brand-nextcloud.png and /dev/null differ diff --git a/icons-png/brand-nextjs.png b/icons-png/brand-nextjs.png deleted file mode 100644 index cef56d779..000000000 Binary files a/icons-png/brand-nextjs.png and /dev/null differ diff --git a/icons-png/brand-nord-vpn.png b/icons-png/brand-nord-vpn.png deleted file mode 100644 index 003befe4c..000000000 Binary files a/icons-png/brand-nord-vpn.png and /dev/null differ diff --git a/icons-png/brand-notion.png b/icons-png/brand-notion.png deleted file mode 100644 index dd6540824..000000000 Binary files a/icons-png/brand-notion.png and /dev/null differ diff --git a/icons-png/brand-npm.png b/icons-png/brand-npm.png deleted file mode 100644 index 6f0262dbe..000000000 Binary files a/icons-png/brand-npm.png and /dev/null differ diff --git a/icons-png/brand-nuxt.png b/icons-png/brand-nuxt.png deleted file mode 100644 index af56eeaf1..000000000 Binary files a/icons-png/brand-nuxt.png and /dev/null differ diff --git a/icons-png/brand-nytimes.png b/icons-png/brand-nytimes.png deleted file mode 100644 index 2aebcf3ab..000000000 Binary files a/icons-png/brand-nytimes.png and /dev/null differ diff --git a/icons-png/brand-office.png b/icons-png/brand-office.png deleted file mode 100644 index 496da398e..000000000 Binary files a/icons-png/brand-office.png and /dev/null differ diff --git a/icons-png/brand-ok-ru.png b/icons-png/brand-ok-ru.png deleted file mode 100644 index 48c027cb7..000000000 Binary files a/icons-png/brand-ok-ru.png and /dev/null differ diff --git a/icons-png/brand-onedrive.png b/icons-png/brand-onedrive.png deleted file mode 100644 index 9bd030d32..000000000 Binary files a/icons-png/brand-onedrive.png and /dev/null differ diff --git a/icons-png/brand-onlyfans.png b/icons-png/brand-onlyfans.png deleted file mode 100644 index 1e7f6dee2..000000000 Binary files a/icons-png/brand-onlyfans.png and /dev/null differ diff --git a/icons-png/brand-open-source.png b/icons-png/brand-open-source.png deleted file mode 100644 index 388407bf3..000000000 Binary files a/icons-png/brand-open-source.png and /dev/null differ diff --git a/icons-png/brand-openvpn.png b/icons-png/brand-openvpn.png deleted file mode 100644 index 8ae193bb1..000000000 Binary files a/icons-png/brand-openvpn.png and /dev/null differ diff --git a/icons-png/brand-opera.png b/icons-png/brand-opera.png deleted file mode 100644 index 421f33dcf..000000000 Binary files a/icons-png/brand-opera.png and /dev/null differ diff --git a/icons-png/brand-pagekit.png b/icons-png/brand-pagekit.png deleted file mode 100644 index 087cc35f8..000000000 Binary files a/icons-png/brand-pagekit.png and /dev/null differ diff --git a/icons-png/brand-patreon.png b/icons-png/brand-patreon.png deleted file mode 100644 index feab04ecc..000000000 Binary files a/icons-png/brand-patreon.png and /dev/null differ diff --git a/icons-png/brand-paypal.png b/icons-png/brand-paypal.png deleted file mode 100644 index c4078518a..000000000 Binary files a/icons-png/brand-paypal.png and /dev/null differ diff --git a/icons-png/brand-paypay.png b/icons-png/brand-paypay.png deleted file mode 100644 index 87343f377..000000000 Binary files a/icons-png/brand-paypay.png and /dev/null differ diff --git a/icons-png/brand-peanut.png b/icons-png/brand-peanut.png deleted file mode 100644 index de6cddb30..000000000 Binary files a/icons-png/brand-peanut.png and /dev/null differ diff --git a/icons-png/brand-pepsi.png b/icons-png/brand-pepsi.png deleted file mode 100644 index 5ab5ee766..000000000 Binary files a/icons-png/brand-pepsi.png and /dev/null differ diff --git a/icons-png/brand-php.png b/icons-png/brand-php.png deleted file mode 100644 index 41e2f0500..000000000 Binary files a/icons-png/brand-php.png and /dev/null differ diff --git a/icons-png/brand-picsart.png b/icons-png/brand-picsart.png deleted file mode 100644 index e8a0e5400..000000000 Binary files a/icons-png/brand-picsart.png and /dev/null differ diff --git a/icons-png/brand-pinterest.png b/icons-png/brand-pinterest.png deleted file mode 100644 index 15a440b29..000000000 Binary files a/icons-png/brand-pinterest.png and /dev/null differ diff --git a/icons-png/brand-pocket.png b/icons-png/brand-pocket.png deleted file mode 100644 index c5f351c54..000000000 Binary files a/icons-png/brand-pocket.png and /dev/null differ diff --git a/icons-png/brand-polymer.png b/icons-png/brand-polymer.png deleted file mode 100644 index 2fdb012a2..000000000 Binary files a/icons-png/brand-polymer.png and /dev/null differ diff --git a/icons-png/brand-powershell.png b/icons-png/brand-powershell.png deleted file mode 100644 index 28fac6b18..000000000 Binary files a/icons-png/brand-powershell.png and /dev/null differ diff --git a/icons-png/brand-prisma.png b/icons-png/brand-prisma.png deleted file mode 100644 index 7fa94038a..000000000 Binary files a/icons-png/brand-prisma.png and /dev/null differ diff --git a/icons-png/brand-producthunt.png b/icons-png/brand-producthunt.png deleted file mode 100644 index aa21de738..000000000 Binary files a/icons-png/brand-producthunt.png and /dev/null differ diff --git a/icons-png/brand-pushbullet.png b/icons-png/brand-pushbullet.png deleted file mode 100644 index 7b06369cd..000000000 Binary files a/icons-png/brand-pushbullet.png and /dev/null differ diff --git a/icons-png/brand-pushover.png b/icons-png/brand-pushover.png deleted file mode 100644 index 862748083..000000000 Binary files a/icons-png/brand-pushover.png and /dev/null differ diff --git a/icons-png/brand-python.png b/icons-png/brand-python.png deleted file mode 100644 index 0afe69163..000000000 Binary files a/icons-png/brand-python.png and /dev/null differ diff --git a/icons-png/brand-qq.png b/icons-png/brand-qq.png deleted file mode 100644 index a7fbf2660..000000000 Binary files a/icons-png/brand-qq.png and /dev/null differ diff --git a/icons-png/brand-react-native.png b/icons-png/brand-react-native.png deleted file mode 100644 index 88401770e..000000000 Binary files a/icons-png/brand-react-native.png and /dev/null differ diff --git a/icons-png/brand-react.png b/icons-png/brand-react.png deleted file mode 100644 index 4c0a2e839..000000000 Binary files a/icons-png/brand-react.png and /dev/null differ diff --git a/icons-png/brand-reason.png b/icons-png/brand-reason.png deleted file mode 100644 index c4c53901c..000000000 Binary files a/icons-png/brand-reason.png and /dev/null differ diff --git a/icons-png/brand-reddit.png b/icons-png/brand-reddit.png deleted file mode 100644 index aa338492a..000000000 Binary files a/icons-png/brand-reddit.png and /dev/null differ diff --git a/icons-png/brand-redhat.png b/icons-png/brand-redhat.png deleted file mode 100644 index 492ef0f2e..000000000 Binary files a/icons-png/brand-redhat.png and /dev/null differ diff --git a/icons-png/brand-redux.png b/icons-png/brand-redux.png deleted file mode 100644 index 8db6f880a..000000000 Binary files a/icons-png/brand-redux.png and /dev/null differ diff --git a/icons-png/brand-revolut.png b/icons-png/brand-revolut.png deleted file mode 100644 index 22fc5c07b..000000000 Binary files a/icons-png/brand-revolut.png and /dev/null differ diff --git a/icons-png/brand-safari.png b/icons-png/brand-safari.png deleted file mode 100644 index cbe21ae5c..000000000 Binary files a/icons-png/brand-safari.png and /dev/null differ diff --git a/icons-png/brand-samsungpass.png b/icons-png/brand-samsungpass.png deleted file mode 100644 index 4f2043adb..000000000 Binary files a/icons-png/brand-samsungpass.png and /dev/null differ diff --git a/icons-png/brand-sass.png b/icons-png/brand-sass.png deleted file mode 100644 index 952d34fbc..000000000 Binary files a/icons-png/brand-sass.png and /dev/null differ diff --git a/icons-png/brand-sentry.png b/icons-png/brand-sentry.png deleted file mode 100644 index 377c3025c..000000000 Binary files a/icons-png/brand-sentry.png and /dev/null differ diff --git a/icons-png/brand-sharik.png b/icons-png/brand-sharik.png deleted file mode 100644 index 55f4a57b0..000000000 Binary files a/icons-png/brand-sharik.png and /dev/null differ diff --git a/icons-png/brand-shazam.png b/icons-png/brand-shazam.png deleted file mode 100644 index 1df30bf0b..000000000 Binary files a/icons-png/brand-shazam.png and /dev/null differ diff --git a/icons-png/brand-shopee.png b/icons-png/brand-shopee.png deleted file mode 100644 index d28d3b495..000000000 Binary files a/icons-png/brand-shopee.png and /dev/null differ diff --git a/icons-png/brand-sketch.png b/icons-png/brand-sketch.png deleted file mode 100644 index 1916a1e1c..000000000 Binary files a/icons-png/brand-sketch.png and /dev/null differ diff --git a/icons-png/brand-skype.png b/icons-png/brand-skype.png deleted file mode 100644 index 439b47a70..000000000 Binary files a/icons-png/brand-skype.png and /dev/null differ diff --git a/icons-png/brand-slack.png b/icons-png/brand-slack.png deleted file mode 100644 index 07e3f5c75..000000000 Binary files a/icons-png/brand-slack.png and /dev/null differ diff --git a/icons-png/brand-snapchat.png b/icons-png/brand-snapchat.png deleted file mode 100644 index a1a1f4e91..000000000 Binary files a/icons-png/brand-snapchat.png and /dev/null differ diff --git a/icons-png/brand-snapseed.png b/icons-png/brand-snapseed.png deleted file mode 100644 index f20e641f3..000000000 Binary files a/icons-png/brand-snapseed.png and /dev/null differ diff --git a/icons-png/brand-snowflake.png b/icons-png/brand-snowflake.png deleted file mode 100644 index 00c20b036..000000000 Binary files a/icons-png/brand-snowflake.png and /dev/null differ diff --git a/icons-png/brand-socket-io.png b/icons-png/brand-socket-io.png deleted file mode 100644 index 1523debf5..000000000 Binary files a/icons-png/brand-socket-io.png and /dev/null differ diff --git a/icons-png/brand-solidjs.png b/icons-png/brand-solidjs.png deleted file mode 100644 index a0f146f10..000000000 Binary files a/icons-png/brand-solidjs.png and /dev/null differ diff --git a/icons-png/brand-soundcloud.png b/icons-png/brand-soundcloud.png deleted file mode 100644 index 35e365f1e..000000000 Binary files a/icons-png/brand-soundcloud.png and /dev/null differ diff --git a/icons-png/brand-spacehey.png b/icons-png/brand-spacehey.png deleted file mode 100644 index 520adb47b..000000000 Binary files a/icons-png/brand-spacehey.png and /dev/null differ diff --git a/icons-png/brand-spotify.png b/icons-png/brand-spotify.png deleted file mode 100644 index e2502a10a..000000000 Binary files a/icons-png/brand-spotify.png and /dev/null differ diff --git a/icons-png/brand-stackoverflow.png b/icons-png/brand-stackoverflow.png deleted file mode 100644 index 90ddca254..000000000 Binary files a/icons-png/brand-stackoverflow.png and /dev/null differ diff --git a/icons-png/brand-stackshare.png b/icons-png/brand-stackshare.png deleted file mode 100644 index 63ff6a3ec..000000000 Binary files a/icons-png/brand-stackshare.png and /dev/null differ diff --git a/icons-png/brand-steam.png b/icons-png/brand-steam.png deleted file mode 100644 index ec61a76b0..000000000 Binary files a/icons-png/brand-steam.png and /dev/null differ diff --git a/icons-png/brand-storybook.png b/icons-png/brand-storybook.png deleted file mode 100644 index e26b70955..000000000 Binary files a/icons-png/brand-storybook.png and /dev/null differ diff --git a/icons-png/brand-storytel.png b/icons-png/brand-storytel.png deleted file mode 100644 index b17d98a64..000000000 Binary files a/icons-png/brand-storytel.png and /dev/null differ diff --git a/icons-png/brand-strava.png b/icons-png/brand-strava.png deleted file mode 100644 index b5103f020..000000000 Binary files a/icons-png/brand-strava.png and /dev/null differ diff --git a/icons-png/brand-stripe.png b/icons-png/brand-stripe.png deleted file mode 100644 index 7a7f71d57..000000000 Binary files a/icons-png/brand-stripe.png and /dev/null differ diff --git a/icons-png/brand-sublime-text.png b/icons-png/brand-sublime-text.png deleted file mode 100644 index ce99f7bba..000000000 Binary files a/icons-png/brand-sublime-text.png and /dev/null differ diff --git a/icons-png/brand-superhuman.png b/icons-png/brand-superhuman.png deleted file mode 100644 index 2bf29ee62..000000000 Binary files a/icons-png/brand-superhuman.png and /dev/null differ diff --git a/icons-png/brand-supernova.png b/icons-png/brand-supernova.png deleted file mode 100644 index 7fd3f1842..000000000 Binary files a/icons-png/brand-supernova.png and /dev/null differ diff --git a/icons-png/brand-surfshark.png b/icons-png/brand-surfshark.png deleted file mode 100644 index ac27e414e..000000000 Binary files a/icons-png/brand-surfshark.png and /dev/null differ diff --git a/icons-png/brand-svelte.png b/icons-png/brand-svelte.png deleted file mode 100644 index 8c5071746..000000000 Binary files a/icons-png/brand-svelte.png and /dev/null differ diff --git a/icons-png/brand-symfony.png b/icons-png/brand-symfony.png deleted file mode 100644 index 62dc717e6..000000000 Binary files a/icons-png/brand-symfony.png and /dev/null differ diff --git a/icons-png/brand-tabler.png b/icons-png/brand-tabler.png deleted file mode 100644 index 09e9de139..000000000 Binary files a/icons-png/brand-tabler.png and /dev/null differ diff --git a/icons-png/brand-tailwind.png b/icons-png/brand-tailwind.png deleted file mode 100644 index b2eda02c7..000000000 Binary files a/icons-png/brand-tailwind.png and /dev/null differ diff --git a/icons-png/brand-taobao.png b/icons-png/brand-taobao.png deleted file mode 100644 index 8ddd51f54..000000000 Binary files a/icons-png/brand-taobao.png and /dev/null differ diff --git a/icons-png/brand-ted.png b/icons-png/brand-ted.png deleted file mode 100644 index f06c2dc49..000000000 Binary files a/icons-png/brand-ted.png and /dev/null differ diff --git a/icons-png/brand-telegram.png b/icons-png/brand-telegram.png deleted file mode 100644 index c6892b48f..000000000 Binary files a/icons-png/brand-telegram.png and /dev/null differ diff --git a/icons-png/brand-tether.png b/icons-png/brand-tether.png deleted file mode 100644 index 0659101de..000000000 Binary files a/icons-png/brand-tether.png and /dev/null differ diff --git a/icons-png/brand-threejs.png b/icons-png/brand-threejs.png deleted file mode 100644 index 6e9a0fbe8..000000000 Binary files a/icons-png/brand-threejs.png and /dev/null differ diff --git a/icons-png/brand-tidal.png b/icons-png/brand-tidal.png deleted file mode 100644 index 23e0fab5a..000000000 Binary files a/icons-png/brand-tidal.png and /dev/null differ diff --git a/icons-png/brand-tiktok.png b/icons-png/brand-tiktok.png deleted file mode 100644 index 620cf1174..000000000 Binary files a/icons-png/brand-tiktok.png and /dev/null differ diff --git a/icons-png/brand-tinder.png b/icons-png/brand-tinder.png deleted file mode 100644 index a5663de17..000000000 Binary files a/icons-png/brand-tinder.png and /dev/null differ diff --git a/icons-png/brand-topbuzz.png b/icons-png/brand-topbuzz.png deleted file mode 100644 index 1b45bc784..000000000 Binary files a/icons-png/brand-topbuzz.png and /dev/null differ diff --git a/icons-png/brand-torchain.png b/icons-png/brand-torchain.png deleted file mode 100644 index 4d48d62ed..000000000 Binary files a/icons-png/brand-torchain.png and /dev/null differ diff --git a/icons-png/brand-toyota.png b/icons-png/brand-toyota.png deleted file mode 100644 index 8d2b641ff..000000000 Binary files a/icons-png/brand-toyota.png and /dev/null differ diff --git a/icons-png/brand-trello.png b/icons-png/brand-trello.png deleted file mode 100644 index 71c3782cd..000000000 Binary files a/icons-png/brand-trello.png and /dev/null differ diff --git a/icons-png/brand-tripadvisor.png b/icons-png/brand-tripadvisor.png deleted file mode 100644 index ca9bd7169..000000000 Binary files a/icons-png/brand-tripadvisor.png and /dev/null differ diff --git a/icons-png/brand-tumblr.png b/icons-png/brand-tumblr.png deleted file mode 100644 index b42f2a377..000000000 Binary files a/icons-png/brand-tumblr.png and /dev/null differ diff --git a/icons-png/brand-twilio.png b/icons-png/brand-twilio.png deleted file mode 100644 index a94ecdb71..000000000 Binary files a/icons-png/brand-twilio.png and /dev/null differ diff --git a/icons-png/brand-twitch.png b/icons-png/brand-twitch.png deleted file mode 100644 index 8073220aa..000000000 Binary files a/icons-png/brand-twitch.png and /dev/null differ diff --git a/icons-png/brand-twitter.png b/icons-png/brand-twitter.png deleted file mode 100644 index bdd2ba5f0..000000000 Binary files a/icons-png/brand-twitter.png and /dev/null differ diff --git a/icons-png/brand-typescript.png b/icons-png/brand-typescript.png deleted file mode 100644 index 1779e2827..000000000 Binary files a/icons-png/brand-typescript.png and /dev/null differ diff --git a/icons-png/brand-uber.png b/icons-png/brand-uber.png deleted file mode 100644 index 09e711167..000000000 Binary files a/icons-png/brand-uber.png and /dev/null differ diff --git a/icons-png/brand-ubuntu.png b/icons-png/brand-ubuntu.png deleted file mode 100644 index 338549060..000000000 Binary files a/icons-png/brand-ubuntu.png and /dev/null differ diff --git a/icons-png/brand-unity.png b/icons-png/brand-unity.png deleted file mode 100644 index f43549d4c..000000000 Binary files a/icons-png/brand-unity.png and /dev/null differ diff --git a/icons-png/brand-unsplash.png b/icons-png/brand-unsplash.png deleted file mode 100644 index 47cf9c39d..000000000 Binary files a/icons-png/brand-unsplash.png and /dev/null differ diff --git a/icons-png/brand-upwork.png b/icons-png/brand-upwork.png deleted file mode 100644 index 9936dbf11..000000000 Binary files a/icons-png/brand-upwork.png and /dev/null differ diff --git a/icons-png/brand-valorant.png b/icons-png/brand-valorant.png deleted file mode 100644 index d16d81e41..000000000 Binary files a/icons-png/brand-valorant.png and /dev/null differ diff --git a/icons-png/brand-vercel.png b/icons-png/brand-vercel.png deleted file mode 100644 index 3490716e2..000000000 Binary files a/icons-png/brand-vercel.png and /dev/null differ diff --git a/icons-png/brand-vimeo.png b/icons-png/brand-vimeo.png deleted file mode 100644 index 5c4dc873a..000000000 Binary files a/icons-png/brand-vimeo.png and /dev/null differ diff --git a/icons-png/brand-vinted.png b/icons-png/brand-vinted.png deleted file mode 100644 index 1eda86d81..000000000 Binary files a/icons-png/brand-vinted.png and /dev/null differ diff --git a/icons-png/brand-visa.png b/icons-png/brand-visa.png deleted file mode 100644 index ac020f2e2..000000000 Binary files a/icons-png/brand-visa.png and /dev/null differ diff --git a/icons-png/brand-visual-studio.png b/icons-png/brand-visual-studio.png deleted file mode 100644 index f04be9699..000000000 Binary files a/icons-png/brand-visual-studio.png and /dev/null differ diff --git a/icons-png/brand-vite.png b/icons-png/brand-vite.png deleted file mode 100644 index 8ab878fc8..000000000 Binary files a/icons-png/brand-vite.png and /dev/null differ diff --git a/icons-png/brand-vivaldi.png b/icons-png/brand-vivaldi.png deleted file mode 100644 index 909f40569..000000000 Binary files a/icons-png/brand-vivaldi.png and /dev/null differ diff --git a/icons-png/brand-vk.png b/icons-png/brand-vk.png deleted file mode 100644 index adb482cd8..000000000 Binary files a/icons-png/brand-vk.png and /dev/null differ diff --git a/icons-png/brand-volkswagen.png b/icons-png/brand-volkswagen.png deleted file mode 100644 index 692438286..000000000 Binary files a/icons-png/brand-volkswagen.png and /dev/null differ diff --git a/icons-png/brand-vsco.png b/icons-png/brand-vsco.png deleted file mode 100644 index 730b61c3e..000000000 Binary files a/icons-png/brand-vsco.png and /dev/null differ diff --git a/icons-png/brand-vscode.png b/icons-png/brand-vscode.png deleted file mode 100644 index afd3240f8..000000000 Binary files a/icons-png/brand-vscode.png and /dev/null differ diff --git a/icons-png/brand-vue.png b/icons-png/brand-vue.png deleted file mode 100644 index 4ed93172b..000000000 Binary files a/icons-png/brand-vue.png and /dev/null differ diff --git a/icons-png/brand-walmart.png b/icons-png/brand-walmart.png deleted file mode 100644 index 5c01afe47..000000000 Binary files a/icons-png/brand-walmart.png and /dev/null differ diff --git a/icons-png/brand-waze.png b/icons-png/brand-waze.png deleted file mode 100644 index 03a4626b8..000000000 Binary files a/icons-png/brand-waze.png and /dev/null differ diff --git a/icons-png/brand-webflow.png b/icons-png/brand-webflow.png deleted file mode 100644 index 6b1fa7fb9..000000000 Binary files a/icons-png/brand-webflow.png and /dev/null differ diff --git a/icons-png/brand-wechat.png b/icons-png/brand-wechat.png deleted file mode 100644 index c4af42775..000000000 Binary files a/icons-png/brand-wechat.png and /dev/null differ diff --git a/icons-png/brand-weibo.png b/icons-png/brand-weibo.png deleted file mode 100644 index cc211e943..000000000 Binary files a/icons-png/brand-weibo.png and /dev/null differ diff --git a/icons-png/brand-whatsapp.png b/icons-png/brand-whatsapp.png deleted file mode 100644 index a71111408..000000000 Binary files a/icons-png/brand-whatsapp.png and /dev/null differ diff --git a/icons-png/brand-windows.png b/icons-png/brand-windows.png deleted file mode 100644 index 62c0a4c0e..000000000 Binary files a/icons-png/brand-windows.png and /dev/null differ diff --git a/icons-png/brand-windy.png b/icons-png/brand-windy.png deleted file mode 100644 index bbebd61e7..000000000 Binary files a/icons-png/brand-windy.png and /dev/null differ diff --git a/icons-png/brand-wish.png b/icons-png/brand-wish.png deleted file mode 100644 index dcd08151c..000000000 Binary files a/icons-png/brand-wish.png and /dev/null differ diff --git a/icons-png/brand-wix.png b/icons-png/brand-wix.png deleted file mode 100644 index 3571219f0..000000000 Binary files a/icons-png/brand-wix.png and /dev/null differ diff --git a/icons-png/brand-wordpress.png b/icons-png/brand-wordpress.png deleted file mode 100644 index 9d49de0e5..000000000 Binary files a/icons-png/brand-wordpress.png and /dev/null differ diff --git a/icons-png/brand-xbox.png b/icons-png/brand-xbox.png deleted file mode 100644 index 4bbc499c6..000000000 Binary files a/icons-png/brand-xbox.png and /dev/null differ diff --git a/icons-png/brand-xing.png b/icons-png/brand-xing.png deleted file mode 100644 index 810716370..000000000 Binary files a/icons-png/brand-xing.png and /dev/null differ diff --git a/icons-png/brand-yahoo.png b/icons-png/brand-yahoo.png deleted file mode 100644 index 9df34ff09..000000000 Binary files a/icons-png/brand-yahoo.png and /dev/null differ diff --git a/icons-png/brand-yatse.png b/icons-png/brand-yatse.png deleted file mode 100644 index 925efe13b..000000000 Binary files a/icons-png/brand-yatse.png and /dev/null differ diff --git a/icons-png/brand-ycombinator.png b/icons-png/brand-ycombinator.png deleted file mode 100644 index 76144f7fa..000000000 Binary files a/icons-png/brand-ycombinator.png and /dev/null differ diff --git a/icons-png/brand-youtube-kids.png b/icons-png/brand-youtube-kids.png deleted file mode 100644 index 4da20767e..000000000 Binary files a/icons-png/brand-youtube-kids.png and /dev/null differ diff --git a/icons-png/brand-youtube.png b/icons-png/brand-youtube.png deleted file mode 100644 index 01d2101aa..000000000 Binary files a/icons-png/brand-youtube.png and /dev/null differ diff --git a/icons-png/brand-zalando.png b/icons-png/brand-zalando.png deleted file mode 100644 index 4e60651ee..000000000 Binary files a/icons-png/brand-zalando.png and /dev/null differ diff --git a/icons-png/brand-zapier.png b/icons-png/brand-zapier.png deleted file mode 100644 index 75a19f6ab..000000000 Binary files a/icons-png/brand-zapier.png and /dev/null differ diff --git a/icons-png/brand-zeit.png b/icons-png/brand-zeit.png deleted file mode 100644 index 9c1e36a88..000000000 Binary files a/icons-png/brand-zeit.png and /dev/null differ diff --git a/icons-png/brand-zhihu.png b/icons-png/brand-zhihu.png deleted file mode 100644 index d9eb931bf..000000000 Binary files a/icons-png/brand-zhihu.png and /dev/null differ diff --git a/icons-png/brand-zoom.png b/icons-png/brand-zoom.png deleted file mode 100644 index 3ec5b3575..000000000 Binary files a/icons-png/brand-zoom.png and /dev/null differ diff --git a/icons-png/brand-zulip.png b/icons-png/brand-zulip.png deleted file mode 100644 index 572ae7c89..000000000 Binary files a/icons-png/brand-zulip.png and /dev/null differ diff --git a/icons-png/brand-zwift.png b/icons-png/brand-zwift.png deleted file mode 100644 index a4718b667..000000000 Binary files a/icons-png/brand-zwift.png and /dev/null differ diff --git a/icons-png/bread-off.png b/icons-png/bread-off.png deleted file mode 100644 index 05c45848c..000000000 Binary files a/icons-png/bread-off.png and /dev/null differ diff --git a/icons-png/bread.png b/icons-png/bread.png deleted file mode 100644 index 1c1df33f1..000000000 Binary files a/icons-png/bread.png and /dev/null differ diff --git a/icons-png/briefcase-off.png b/icons-png/briefcase-off.png deleted file mode 100644 index 8ffcef1cb..000000000 Binary files a/icons-png/briefcase-off.png and /dev/null differ diff --git a/icons-png/briefcase.png b/icons-png/briefcase.png deleted file mode 100644 index 4be1bb4ab..000000000 Binary files a/icons-png/briefcase.png and /dev/null differ diff --git a/icons-png/brightness-2.png b/icons-png/brightness-2.png deleted file mode 100644 index 816d8f237..000000000 Binary files a/icons-png/brightness-2.png and /dev/null differ diff --git a/icons-png/brightness-down.png b/icons-png/brightness-down.png deleted file mode 100644 index 2c475fa67..000000000 Binary files a/icons-png/brightness-down.png and /dev/null differ diff --git a/icons-png/brightness-half.png b/icons-png/brightness-half.png deleted file mode 100644 index dcdbc8754..000000000 Binary files a/icons-png/brightness-half.png and /dev/null differ diff --git a/icons-png/brightness-off.png b/icons-png/brightness-off.png deleted file mode 100644 index f640749ef..000000000 Binary files a/icons-png/brightness-off.png and /dev/null differ diff --git a/icons-png/brightness-up.png b/icons-png/brightness-up.png deleted file mode 100644 index 85f0f8cfc..000000000 Binary files a/icons-png/brightness-up.png and /dev/null differ diff --git a/icons-png/brightness.png b/icons-png/brightness.png deleted file mode 100644 index 90b39b48c..000000000 Binary files a/icons-png/brightness.png and /dev/null differ diff --git a/icons-png/broadcast-off.png b/icons-png/broadcast-off.png deleted file mode 100644 index 893eaa78e..000000000 Binary files a/icons-png/broadcast-off.png and /dev/null differ diff --git a/icons-png/broadcast.png b/icons-png/broadcast.png deleted file mode 100644 index 4368b4bc0..000000000 Binary files a/icons-png/broadcast.png and /dev/null differ diff --git a/icons-png/browser-check.png b/icons-png/browser-check.png deleted file mode 100644 index f00888b96..000000000 Binary files a/icons-png/browser-check.png and /dev/null differ diff --git a/icons-png/browser-off.png b/icons-png/browser-off.png deleted file mode 100644 index dcbd2dd99..000000000 Binary files a/icons-png/browser-off.png and /dev/null differ diff --git a/icons-png/browser-plus.png b/icons-png/browser-plus.png deleted file mode 100644 index 39376b238..000000000 Binary files a/icons-png/browser-plus.png and /dev/null differ diff --git a/icons-png/browser-x.png b/icons-png/browser-x.png deleted file mode 100644 index 63d06e6c3..000000000 Binary files a/icons-png/browser-x.png and /dev/null differ diff --git a/icons-png/browser.png b/icons-png/browser.png deleted file mode 100644 index 324c8c10e..000000000 Binary files a/icons-png/browser.png and /dev/null differ diff --git a/icons-png/brush-off.png b/icons-png/brush-off.png deleted file mode 100644 index 7c6776e9b..000000000 Binary files a/icons-png/brush-off.png and /dev/null differ diff --git a/icons-png/brush.png b/icons-png/brush.png deleted file mode 100644 index 3dcfb8a5d..000000000 Binary files a/icons-png/brush.png and /dev/null differ diff --git a/icons-png/bucket-droplet.png b/icons-png/bucket-droplet.png deleted file mode 100644 index aa01c00c4..000000000 Binary files a/icons-png/bucket-droplet.png and /dev/null differ diff --git a/icons-png/bucket-off.png b/icons-png/bucket-off.png deleted file mode 100644 index 9cb62978c..000000000 Binary files a/icons-png/bucket-off.png and /dev/null differ diff --git a/icons-png/bucket.png b/icons-png/bucket.png deleted file mode 100644 index 867e5718e..000000000 Binary files a/icons-png/bucket.png and /dev/null differ diff --git a/icons-png/bug-off.png b/icons-png/bug-off.png deleted file mode 100644 index 439e84563..000000000 Binary files a/icons-png/bug-off.png and /dev/null differ diff --git a/icons-png/bug.png b/icons-png/bug.png deleted file mode 100644 index 41d64f7c9..000000000 Binary files a/icons-png/bug.png and /dev/null differ diff --git a/icons-png/building-arch.png b/icons-png/building-arch.png deleted file mode 100644 index 8178ca124..000000000 Binary files a/icons-png/building-arch.png and /dev/null differ diff --git a/icons-png/building-bank.png b/icons-png/building-bank.png deleted file mode 100644 index eaf1ec9b4..000000000 Binary files a/icons-png/building-bank.png and /dev/null differ diff --git a/icons-png/building-bridge-2.png b/icons-png/building-bridge-2.png deleted file mode 100644 index 0d15af387..000000000 Binary files a/icons-png/building-bridge-2.png and /dev/null differ diff --git a/icons-png/building-bridge.png b/icons-png/building-bridge.png deleted file mode 100644 index 30fa39d27..000000000 Binary files a/icons-png/building-bridge.png and /dev/null differ diff --git a/icons-png/building-broadcast-tower.png b/icons-png/building-broadcast-tower.png deleted file mode 100644 index 021e2af32..000000000 Binary files a/icons-png/building-broadcast-tower.png and /dev/null differ diff --git a/icons-png/building-carousel.png b/icons-png/building-carousel.png deleted file mode 100644 index 011135729..000000000 Binary files a/icons-png/building-carousel.png and /dev/null differ diff --git a/icons-png/building-castle.png b/icons-png/building-castle.png deleted file mode 100644 index 2d1e674f3..000000000 Binary files a/icons-png/building-castle.png and /dev/null differ diff --git a/icons-png/building-church.png b/icons-png/building-church.png deleted file mode 100644 index 8ed4dc97f..000000000 Binary files a/icons-png/building-church.png and /dev/null differ diff --git a/icons-png/building-circus.png b/icons-png/building-circus.png deleted file mode 100644 index 5b9fd6968..000000000 Binary files a/icons-png/building-circus.png and /dev/null differ diff --git a/icons-png/building-community.png b/icons-png/building-community.png deleted file mode 100644 index 83dcd71a4..000000000 Binary files a/icons-png/building-community.png and /dev/null differ diff --git a/icons-png/building-cottage.png b/icons-png/building-cottage.png deleted file mode 100644 index 83c7a25f3..000000000 Binary files a/icons-png/building-cottage.png and /dev/null differ diff --git a/icons-png/building-estate.png b/icons-png/building-estate.png deleted file mode 100644 index 8bbc104a5..000000000 Binary files a/icons-png/building-estate.png and /dev/null differ diff --git a/icons-png/building-factory-2.png b/icons-png/building-factory-2.png deleted file mode 100644 index 5173e8ec4..000000000 Binary files a/icons-png/building-factory-2.png and /dev/null differ diff --git a/icons-png/building-factory.png b/icons-png/building-factory.png deleted file mode 100644 index 045edd78c..000000000 Binary files a/icons-png/building-factory.png and /dev/null differ diff --git a/icons-png/building-fortress.png b/icons-png/building-fortress.png deleted file mode 100644 index f9c117607..000000000 Binary files a/icons-png/building-fortress.png and /dev/null differ diff --git a/icons-png/building-hospital.png b/icons-png/building-hospital.png deleted file mode 100644 index 13b7e76fe..000000000 Binary files a/icons-png/building-hospital.png and /dev/null differ diff --git a/icons-png/building-lighthouse.png b/icons-png/building-lighthouse.png deleted file mode 100644 index 98965d15d..000000000 Binary files a/icons-png/building-lighthouse.png and /dev/null differ diff --git a/icons-png/building-monument.png b/icons-png/building-monument.png deleted file mode 100644 index dda0a7f92..000000000 Binary files a/icons-png/building-monument.png and /dev/null differ diff --git a/icons-png/building-pavilon.png b/icons-png/building-pavilon.png deleted file mode 100644 index ace8274ad..000000000 Binary files a/icons-png/building-pavilon.png and /dev/null differ diff --git a/icons-png/building-skyscraper.png b/icons-png/building-skyscraper.png deleted file mode 100644 index 438db69ae..000000000 Binary files a/icons-png/building-skyscraper.png and /dev/null differ diff --git a/icons-png/building-stadium.png b/icons-png/building-stadium.png deleted file mode 100644 index afa8956b3..000000000 Binary files a/icons-png/building-stadium.png and /dev/null differ diff --git a/icons-png/building-store.png b/icons-png/building-store.png deleted file mode 100644 index 4c8e6a358..000000000 Binary files a/icons-png/building-store.png and /dev/null differ diff --git a/icons-png/building-tunnel.png b/icons-png/building-tunnel.png deleted file mode 100644 index 1573d1f60..000000000 Binary files a/icons-png/building-tunnel.png and /dev/null differ diff --git a/icons-png/building-warehouse.png b/icons-png/building-warehouse.png deleted file mode 100644 index 884f65b8a..000000000 Binary files a/icons-png/building-warehouse.png and /dev/null differ diff --git a/icons-png/building-wind-turbine.png b/icons-png/building-wind-turbine.png deleted file mode 100644 index f9d9b23f2..000000000 Binary files a/icons-png/building-wind-turbine.png and /dev/null differ diff --git a/icons-png/building.png b/icons-png/building.png deleted file mode 100644 index 07f994e9b..000000000 Binary files a/icons-png/building.png and /dev/null differ diff --git a/icons-png/bulb-off.png b/icons-png/bulb-off.png deleted file mode 100644 index c3f4baa4a..000000000 Binary files a/icons-png/bulb-off.png and /dev/null differ diff --git a/icons-png/bulb.png b/icons-png/bulb.png deleted file mode 100644 index 160f1e35c..000000000 Binary files a/icons-png/bulb.png and /dev/null differ diff --git a/icons-png/bulldozer.png b/icons-png/bulldozer.png deleted file mode 100644 index f66c1b98d..000000000 Binary files a/icons-png/bulldozer.png and /dev/null differ diff --git a/icons-png/bus-off.png b/icons-png/bus-off.png deleted file mode 100644 index ec3e63945..000000000 Binary files a/icons-png/bus-off.png and /dev/null differ diff --git a/icons-png/bus-stop.png b/icons-png/bus-stop.png deleted file mode 100644 index 8f6370386..000000000 Binary files a/icons-png/bus-stop.png and /dev/null differ diff --git a/icons-png/bus.png b/icons-png/bus.png deleted file mode 100644 index e2ed27678..000000000 Binary files a/icons-png/bus.png and /dev/null differ diff --git a/icons-png/businessplan.png b/icons-png/businessplan.png deleted file mode 100644 index b914b075c..000000000 Binary files a/icons-png/businessplan.png and /dev/null differ diff --git a/icons-png/butterfly.png b/icons-png/butterfly.png deleted file mode 100644 index b72615870..000000000 Binary files a/icons-png/butterfly.png and /dev/null differ diff --git a/icons-png/c-sharp.png b/icons-png/c-sharp.png deleted file mode 100644 index 7e8ebddee..000000000 Binary files a/icons-png/c-sharp.png and /dev/null differ diff --git a/icons-png/cactus-off.png b/icons-png/cactus-off.png deleted file mode 100644 index 09fbdfc71..000000000 Binary files a/icons-png/cactus-off.png and /dev/null differ diff --git a/icons-png/cactus.png b/icons-png/cactus.png deleted file mode 100644 index 531dfa80c..000000000 Binary files a/icons-png/cactus.png and /dev/null differ diff --git a/icons-png/cake-off.png b/icons-png/cake-off.png deleted file mode 100644 index f7afed296..000000000 Binary files a/icons-png/cake-off.png and /dev/null differ diff --git a/icons-png/cake.png b/icons-png/cake.png deleted file mode 100644 index 75bc4fd83..000000000 Binary files a/icons-png/cake.png and /dev/null differ diff --git a/icons-png/calculator-off.png b/icons-png/calculator-off.png deleted file mode 100644 index 475904fb8..000000000 Binary files a/icons-png/calculator-off.png and /dev/null differ diff --git a/icons-png/calculator.png b/icons-png/calculator.png deleted file mode 100644 index c0d2ae3d3..000000000 Binary files a/icons-png/calculator.png and /dev/null differ diff --git a/icons-png/calendar-due.png b/icons-png/calendar-due.png deleted file mode 100644 index 23783f1fa..000000000 Binary files a/icons-png/calendar-due.png and /dev/null differ diff --git a/icons-png/calendar-event.png b/icons-png/calendar-event.png deleted file mode 100644 index a9a23ab86..000000000 Binary files a/icons-png/calendar-event.png and /dev/null differ diff --git a/icons-png/calendar-minus.png b/icons-png/calendar-minus.png deleted file mode 100644 index eeaf50fe6..000000000 Binary files a/icons-png/calendar-minus.png and /dev/null differ diff --git a/icons-png/calendar-off.png b/icons-png/calendar-off.png deleted file mode 100644 index 6ffc87452..000000000 Binary files a/icons-png/calendar-off.png and /dev/null differ diff --git a/icons-png/calendar-plus.png b/icons-png/calendar-plus.png deleted file mode 100644 index c0b1a7d3f..000000000 Binary files a/icons-png/calendar-plus.png and /dev/null differ diff --git a/icons-png/calendar-stats.png b/icons-png/calendar-stats.png deleted file mode 100644 index 47cf464bb..000000000 Binary files a/icons-png/calendar-stats.png and /dev/null differ diff --git a/icons-png/calendar-time.png b/icons-png/calendar-time.png deleted file mode 100644 index 942088df7..000000000 Binary files a/icons-png/calendar-time.png and /dev/null differ diff --git a/icons-png/calendar.png b/icons-png/calendar.png deleted file mode 100644 index 6a3a1b9fa..000000000 Binary files a/icons-png/calendar.png and /dev/null differ diff --git a/icons-png/camera-minus.png b/icons-png/camera-minus.png deleted file mode 100644 index 3b47795d1..000000000 Binary files a/icons-png/camera-minus.png and /dev/null differ diff --git a/icons-png/camera-off.png b/icons-png/camera-off.png deleted file mode 100644 index b19c7c323..000000000 Binary files a/icons-png/camera-off.png and /dev/null differ diff --git a/icons-png/camera-plus.png b/icons-png/camera-plus.png deleted file mode 100644 index 6bc458ca2..000000000 Binary files a/icons-png/camera-plus.png and /dev/null differ diff --git a/icons-png/camera-rotate.png b/icons-png/camera-rotate.png deleted file mode 100644 index 6f0f7ec27..000000000 Binary files a/icons-png/camera-rotate.png and /dev/null differ diff --git a/icons-png/camera-selfie.png b/icons-png/camera-selfie.png deleted file mode 100644 index e9c3b9ecb..000000000 Binary files a/icons-png/camera-selfie.png and /dev/null differ diff --git a/icons-png/camera.png b/icons-png/camera.png deleted file mode 100644 index 3c40b5f72..000000000 Binary files a/icons-png/camera.png and /dev/null differ diff --git a/icons-png/campfire.png b/icons-png/campfire.png deleted file mode 100644 index 046186196..000000000 Binary files a/icons-png/campfire.png and /dev/null differ diff --git a/icons-png/candle.png b/icons-png/candle.png deleted file mode 100644 index 490e79efa..000000000 Binary files a/icons-png/candle.png and /dev/null differ diff --git a/icons-png/candy-off.png b/icons-png/candy-off.png deleted file mode 100644 index b0efa698c..000000000 Binary files a/icons-png/candy-off.png and /dev/null differ diff --git a/icons-png/candy.png b/icons-png/candy.png deleted file mode 100644 index bcae19feb..000000000 Binary files a/icons-png/candy.png and /dev/null differ diff --git a/icons-png/cane.png b/icons-png/cane.png deleted file mode 100644 index 91c948467..000000000 Binary files a/icons-png/cane.png and /dev/null differ diff --git a/icons-png/cannabis.png b/icons-png/cannabis.png deleted file mode 100644 index 1e17135c7..000000000 Binary files a/icons-png/cannabis.png and /dev/null differ diff --git a/icons-png/capture-off.png b/icons-png/capture-off.png deleted file mode 100644 index f348b3670..000000000 Binary files a/icons-png/capture-off.png and /dev/null differ diff --git a/icons-png/capture.png b/icons-png/capture.png deleted file mode 100644 index 39864c28b..000000000 Binary files a/icons-png/capture.png and /dev/null differ diff --git a/icons-png/car-crane.png b/icons-png/car-crane.png deleted file mode 100644 index e554a3916..000000000 Binary files a/icons-png/car-crane.png and /dev/null differ diff --git a/icons-png/car-crash.png b/icons-png/car-crash.png deleted file mode 100644 index efb8c008f..000000000 Binary files a/icons-png/car-crash.png and /dev/null differ diff --git a/icons-png/car-off.png b/icons-png/car-off.png deleted file mode 100644 index 736b613ed..000000000 Binary files a/icons-png/car-off.png and /dev/null differ diff --git a/icons-png/car-turbine.png b/icons-png/car-turbine.png deleted file mode 100644 index b8efcb06b..000000000 Binary files a/icons-png/car-turbine.png and /dev/null differ diff --git a/icons-png/car.png b/icons-png/car.png deleted file mode 100644 index b79ed660b..000000000 Binary files a/icons-png/car.png and /dev/null differ diff --git a/icons-png/caravan.png b/icons-png/caravan.png deleted file mode 100644 index f7c38b0b2..000000000 Binary files a/icons-png/caravan.png and /dev/null differ diff --git a/icons-png/cardboards-off.png b/icons-png/cardboards-off.png deleted file mode 100644 index 75791a916..000000000 Binary files a/icons-png/cardboards-off.png and /dev/null differ diff --git a/icons-png/cardboards.png b/icons-png/cardboards.png deleted file mode 100644 index e80f07cd5..000000000 Binary files a/icons-png/cardboards.png and /dev/null differ diff --git a/icons-png/cards.png b/icons-png/cards.png deleted file mode 100644 index cb2fa32b7..000000000 Binary files a/icons-png/cards.png and /dev/null differ diff --git a/icons-png/caret-down.png b/icons-png/caret-down.png deleted file mode 100644 index b5b5ba21a..000000000 Binary files a/icons-png/caret-down.png and /dev/null differ diff --git a/icons-png/caret-left.png b/icons-png/caret-left.png deleted file mode 100644 index a5f1b6767..000000000 Binary files a/icons-png/caret-left.png and /dev/null differ diff --git a/icons-png/caret-right.png b/icons-png/caret-right.png deleted file mode 100644 index d93899ede..000000000 Binary files a/icons-png/caret-right.png and /dev/null differ diff --git a/icons-png/caret-up.png b/icons-png/caret-up.png deleted file mode 100644 index 68de3a962..000000000 Binary files a/icons-png/caret-up.png and /dev/null differ diff --git a/icons-png/carousel-horizontal.png b/icons-png/carousel-horizontal.png deleted file mode 100644 index a61b6e197..000000000 Binary files a/icons-png/carousel-horizontal.png and /dev/null differ diff --git a/icons-png/carousel-vertical.png b/icons-png/carousel-vertical.png deleted file mode 100644 index 02f9e8ab2..000000000 Binary files a/icons-png/carousel-vertical.png and /dev/null differ diff --git a/icons-png/carrot-off.png b/icons-png/carrot-off.png deleted file mode 100644 index a96de92e2..000000000 Binary files a/icons-png/carrot-off.png and /dev/null differ diff --git a/icons-png/carrot.png b/icons-png/carrot.png deleted file mode 100644 index dd88f3c34..000000000 Binary files a/icons-png/carrot.png and /dev/null differ diff --git a/icons-png/cash-banknote-off.png b/icons-png/cash-banknote-off.png deleted file mode 100644 index 70375bb4c..000000000 Binary files a/icons-png/cash-banknote-off.png and /dev/null differ diff --git a/icons-png/cash-banknote.png b/icons-png/cash-banknote.png deleted file mode 100644 index 313896011..000000000 Binary files a/icons-png/cash-banknote.png and /dev/null differ diff --git a/icons-png/cash-off.png b/icons-png/cash-off.png deleted file mode 100644 index 3037d6968..000000000 Binary files a/icons-png/cash-off.png and /dev/null differ diff --git a/icons-png/cash.png b/icons-png/cash.png deleted file mode 100644 index 0630e2415..000000000 Binary files a/icons-png/cash.png and /dev/null differ diff --git a/icons-png/cast-off.png b/icons-png/cast-off.png deleted file mode 100644 index d6fb3a3c6..000000000 Binary files a/icons-png/cast-off.png and /dev/null differ diff --git a/icons-png/cast.png b/icons-png/cast.png deleted file mode 100644 index abb82efcb..000000000 Binary files a/icons-png/cast.png and /dev/null differ diff --git a/icons-png/cat.png b/icons-png/cat.png deleted file mode 100644 index dc0cad23d..000000000 Binary files a/icons-png/cat.png and /dev/null differ diff --git a/icons-png/category-2.png b/icons-png/category-2.png deleted file mode 100644 index cd4f1cb58..000000000 Binary files a/icons-png/category-2.png and /dev/null differ diff --git a/icons-png/category.png b/icons-png/category.png deleted file mode 100644 index 7ae9e79cb..000000000 Binary files a/icons-png/category.png and /dev/null differ diff --git a/icons-png/ce-off.png b/icons-png/ce-off.png deleted file mode 100644 index 13eb63f58..000000000 Binary files a/icons-png/ce-off.png and /dev/null differ diff --git a/icons-png/ce.png b/icons-png/ce.png deleted file mode 100644 index 103b9eab4..000000000 Binary files a/icons-png/ce.png and /dev/null differ diff --git a/icons-png/cell-signal-1.png b/icons-png/cell-signal-1.png deleted file mode 100644 index 4df6a0a45..000000000 Binary files a/icons-png/cell-signal-1.png and /dev/null differ diff --git a/icons-png/cell-signal-2.png b/icons-png/cell-signal-2.png deleted file mode 100644 index 91c8d7d4c..000000000 Binary files a/icons-png/cell-signal-2.png and /dev/null differ diff --git a/icons-png/cell-signal-3.png b/icons-png/cell-signal-3.png deleted file mode 100644 index c40dd0dec..000000000 Binary files a/icons-png/cell-signal-3.png and /dev/null differ diff --git a/icons-png/cell-signal-4.png b/icons-png/cell-signal-4.png deleted file mode 100644 index 317055d4f..000000000 Binary files a/icons-png/cell-signal-4.png and /dev/null differ diff --git a/icons-png/cell-signal-5.png b/icons-png/cell-signal-5.png deleted file mode 100644 index 8a269fba3..000000000 Binary files a/icons-png/cell-signal-5.png and /dev/null differ diff --git a/icons-png/cell-signal-off.png b/icons-png/cell-signal-off.png deleted file mode 100644 index 3a5d587a9..000000000 Binary files a/icons-png/cell-signal-off.png and /dev/null differ diff --git a/icons-png/cell.png b/icons-png/cell.png deleted file mode 100644 index 2289d0030..000000000 Binary files a/icons-png/cell.png and /dev/null differ diff --git a/icons-png/certificate-2-off.png b/icons-png/certificate-2-off.png deleted file mode 100644 index f30b6f2d9..000000000 Binary files a/icons-png/certificate-2-off.png and /dev/null differ diff --git a/icons-png/certificate-2.png b/icons-png/certificate-2.png deleted file mode 100644 index a76a594fb..000000000 Binary files a/icons-png/certificate-2.png and /dev/null differ diff --git a/icons-png/certificate-off.png b/icons-png/certificate-off.png deleted file mode 100644 index 79a4a06c5..000000000 Binary files a/icons-png/certificate-off.png and /dev/null differ diff --git a/icons-png/certificate.png b/icons-png/certificate.png deleted file mode 100644 index a4a627b9c..000000000 Binary files a/icons-png/certificate.png and /dev/null differ diff --git a/icons-png/chair-director.png b/icons-png/chair-director.png deleted file mode 100644 index e3f938112..000000000 Binary files a/icons-png/chair-director.png and /dev/null differ diff --git a/icons-png/chalkboard-off.png b/icons-png/chalkboard-off.png deleted file mode 100644 index 42577fd4a..000000000 Binary files a/icons-png/chalkboard-off.png and /dev/null differ diff --git a/icons-png/chalkboard.png b/icons-png/chalkboard.png deleted file mode 100644 index 24aa42035..000000000 Binary files a/icons-png/chalkboard.png and /dev/null differ diff --git a/icons-png/charging-pile.png b/icons-png/charging-pile.png deleted file mode 100644 index 08a081a2d..000000000 Binary files a/icons-png/charging-pile.png and /dev/null differ diff --git a/icons-png/chart-arcs-3.png b/icons-png/chart-arcs-3.png deleted file mode 100644 index 3a28aa9d1..000000000 Binary files a/icons-png/chart-arcs-3.png and /dev/null differ diff --git a/icons-png/chart-arcs.png b/icons-png/chart-arcs.png deleted file mode 100644 index fdae65774..000000000 Binary files a/icons-png/chart-arcs.png and /dev/null differ diff --git a/icons-png/chart-area-line.png b/icons-png/chart-area-line.png deleted file mode 100644 index ccde7cc28..000000000 Binary files a/icons-png/chart-area-line.png and /dev/null differ diff --git a/icons-png/chart-area.png b/icons-png/chart-area.png deleted file mode 100644 index 0241d552e..000000000 Binary files a/icons-png/chart-area.png and /dev/null differ diff --git a/icons-png/chart-arrows-vertical.png b/icons-png/chart-arrows-vertical.png deleted file mode 100644 index a6cc9a690..000000000 Binary files a/icons-png/chart-arrows-vertical.png and /dev/null differ diff --git a/icons-png/chart-arrows.png b/icons-png/chart-arrows.png deleted file mode 100644 index 50af19665..000000000 Binary files a/icons-png/chart-arrows.png and /dev/null differ diff --git a/icons-png/chart-bar-off.png b/icons-png/chart-bar-off.png deleted file mode 100644 index 5583673e9..000000000 Binary files a/icons-png/chart-bar-off.png and /dev/null differ diff --git a/icons-png/chart-bar.png b/icons-png/chart-bar.png deleted file mode 100644 index aee1ac87f..000000000 Binary files a/icons-png/chart-bar.png and /dev/null differ diff --git a/icons-png/chart-bubble.png b/icons-png/chart-bubble.png deleted file mode 100644 index 084415f70..000000000 Binary files a/icons-png/chart-bubble.png and /dev/null differ diff --git a/icons-png/chart-candle.png b/icons-png/chart-candle.png deleted file mode 100644 index da05ee9f8..000000000 Binary files a/icons-png/chart-candle.png and /dev/null differ diff --git a/icons-png/chart-circles.png b/icons-png/chart-circles.png deleted file mode 100644 index cc5b64205..000000000 Binary files a/icons-png/chart-circles.png and /dev/null differ diff --git a/icons-png/chart-donut-2.png b/icons-png/chart-donut-2.png deleted file mode 100644 index 682ff8ee4..000000000 Binary files a/icons-png/chart-donut-2.png and /dev/null differ diff --git a/icons-png/chart-donut-3.png b/icons-png/chart-donut-3.png deleted file mode 100644 index 3e360921b..000000000 Binary files a/icons-png/chart-donut-3.png and /dev/null differ diff --git a/icons-png/chart-donut-4.png b/icons-png/chart-donut-4.png deleted file mode 100644 index 58fb3939f..000000000 Binary files a/icons-png/chart-donut-4.png and /dev/null differ diff --git a/icons-png/chart-donut.png b/icons-png/chart-donut.png deleted file mode 100644 index a2d5b60c5..000000000 Binary files a/icons-png/chart-donut.png and /dev/null differ diff --git a/icons-png/chart-dots-2.png b/icons-png/chart-dots-2.png deleted file mode 100644 index d6b8285fa..000000000 Binary files a/icons-png/chart-dots-2.png and /dev/null differ diff --git a/icons-png/chart-dots-3.png b/icons-png/chart-dots-3.png deleted file mode 100644 index ade46c2bc..000000000 Binary files a/icons-png/chart-dots-3.png and /dev/null differ diff --git a/icons-png/chart-dots.png b/icons-png/chart-dots.png deleted file mode 100644 index 15661af60..000000000 Binary files a/icons-png/chart-dots.png and /dev/null differ diff --git a/icons-png/chart-grid-dots.png b/icons-png/chart-grid-dots.png deleted file mode 100644 index 3007caea9..000000000 Binary files a/icons-png/chart-grid-dots.png and /dev/null differ diff --git a/icons-png/chart-histogram.png b/icons-png/chart-histogram.png deleted file mode 100644 index f5ac000ab..000000000 Binary files a/icons-png/chart-histogram.png and /dev/null differ diff --git a/icons-png/chart-infographic.png b/icons-png/chart-infographic.png deleted file mode 100644 index 5718b4c57..000000000 Binary files a/icons-png/chart-infographic.png and /dev/null differ diff --git a/icons-png/chart-line.png b/icons-png/chart-line.png deleted file mode 100644 index f81820308..000000000 Binary files a/icons-png/chart-line.png and /dev/null differ diff --git a/icons-png/chart-pie-2.png b/icons-png/chart-pie-2.png deleted file mode 100644 index 5a171efb5..000000000 Binary files a/icons-png/chart-pie-2.png and /dev/null differ diff --git a/icons-png/chart-pie-3.png b/icons-png/chart-pie-3.png deleted file mode 100644 index bd0843e13..000000000 Binary files a/icons-png/chart-pie-3.png and /dev/null differ diff --git a/icons-png/chart-pie-4.png b/icons-png/chart-pie-4.png deleted file mode 100644 index 0e7d14ecc..000000000 Binary files a/icons-png/chart-pie-4.png and /dev/null differ diff --git a/icons-png/chart-pie-off.png b/icons-png/chart-pie-off.png deleted file mode 100644 index 120e047a8..000000000 Binary files a/icons-png/chart-pie-off.png and /dev/null differ diff --git a/icons-png/chart-pie.png b/icons-png/chart-pie.png deleted file mode 100644 index 7be4115fe..000000000 Binary files a/icons-png/chart-pie.png and /dev/null differ diff --git a/icons-png/chart-ppf.png b/icons-png/chart-ppf.png deleted file mode 100644 index 8b095579a..000000000 Binary files a/icons-png/chart-ppf.png and /dev/null differ diff --git a/icons-png/chart-radar.png b/icons-png/chart-radar.png deleted file mode 100644 index a78873d46..000000000 Binary files a/icons-png/chart-radar.png and /dev/null differ diff --git a/icons-png/chart-sankey.png b/icons-png/chart-sankey.png deleted file mode 100644 index 5c1020c5d..000000000 Binary files a/icons-png/chart-sankey.png and /dev/null differ diff --git a/icons-png/chart-treemap.png b/icons-png/chart-treemap.png deleted file mode 100644 index 84c1aa50e..000000000 Binary files a/icons-png/chart-treemap.png and /dev/null differ diff --git a/icons-png/check.png b/icons-png/check.png deleted file mode 100644 index e5ec0332e..000000000 Binary files a/icons-png/check.png and /dev/null differ diff --git a/icons-png/checkbox.png b/icons-png/checkbox.png deleted file mode 100644 index b8ba58fc5..000000000 Binary files a/icons-png/checkbox.png and /dev/null differ diff --git a/icons-png/checklist.png b/icons-png/checklist.png deleted file mode 100644 index 8154aeb5f..000000000 Binary files a/icons-png/checklist.png and /dev/null differ diff --git a/icons-png/checks.png b/icons-png/checks.png deleted file mode 100644 index 41a67241f..000000000 Binary files a/icons-png/checks.png and /dev/null differ diff --git a/icons-png/checkup-list.png b/icons-png/checkup-list.png deleted file mode 100644 index 8602c7657..000000000 Binary files a/icons-png/checkup-list.png and /dev/null differ diff --git a/icons-png/cheese.png b/icons-png/cheese.png deleted file mode 100644 index d5b948585..000000000 Binary files a/icons-png/cheese.png and /dev/null differ diff --git a/icons-png/chef-hat-off.png b/icons-png/chef-hat-off.png deleted file mode 100644 index 698b434af..000000000 Binary files a/icons-png/chef-hat-off.png and /dev/null differ diff --git a/icons-png/chef-hat.png b/icons-png/chef-hat.png deleted file mode 100644 index 2ebe8a32d..000000000 Binary files a/icons-png/chef-hat.png and /dev/null differ diff --git a/icons-png/cherry.png b/icons-png/cherry.png deleted file mode 100644 index 115257930..000000000 Binary files a/icons-png/cherry.png and /dev/null differ diff --git a/icons-png/chess-bishop.png b/icons-png/chess-bishop.png deleted file mode 100644 index 647003205..000000000 Binary files a/icons-png/chess-bishop.png and /dev/null differ diff --git a/icons-png/chess-king.png b/icons-png/chess-king.png deleted file mode 100644 index 219ddaf18..000000000 Binary files a/icons-png/chess-king.png and /dev/null differ diff --git a/icons-png/chess-knight.png b/icons-png/chess-knight.png deleted file mode 100644 index 545b84f97..000000000 Binary files a/icons-png/chess-knight.png and /dev/null differ diff --git a/icons-png/chess-queen.png b/icons-png/chess-queen.png deleted file mode 100644 index 83d2f2bfe..000000000 Binary files a/icons-png/chess-queen.png and /dev/null differ diff --git a/icons-png/chess-rook.png b/icons-png/chess-rook.png deleted file mode 100644 index 66714b05c..000000000 Binary files a/icons-png/chess-rook.png and /dev/null differ diff --git a/icons-png/chess.png b/icons-png/chess.png deleted file mode 100644 index 038bc0a57..000000000 Binary files a/icons-png/chess.png and /dev/null differ diff --git a/icons-png/chevron-down-left.png b/icons-png/chevron-down-left.png deleted file mode 100644 index 7c07a6993..000000000 Binary files a/icons-png/chevron-down-left.png and /dev/null differ diff --git a/icons-png/chevron-down-right.png b/icons-png/chevron-down-right.png deleted file mode 100644 index e85f78c7f..000000000 Binary files a/icons-png/chevron-down-right.png and /dev/null differ diff --git a/icons-png/chevron-down.png b/icons-png/chevron-down.png deleted file mode 100644 index f27ee0ea0..000000000 Binary files a/icons-png/chevron-down.png and /dev/null differ diff --git a/icons-png/chevron-left.png b/icons-png/chevron-left.png deleted file mode 100644 index b664f9fe6..000000000 Binary files a/icons-png/chevron-left.png and /dev/null differ diff --git a/icons-png/chevron-right.png b/icons-png/chevron-right.png deleted file mode 100644 index 73d48c197..000000000 Binary files a/icons-png/chevron-right.png and /dev/null differ diff --git a/icons-png/chevron-up-left.png b/icons-png/chevron-up-left.png deleted file mode 100644 index 0535caab2..000000000 Binary files a/icons-png/chevron-up-left.png and /dev/null differ diff --git a/icons-png/chevron-up-right.png b/icons-png/chevron-up-right.png deleted file mode 100644 index 411e53b62..000000000 Binary files a/icons-png/chevron-up-right.png and /dev/null differ diff --git a/icons-png/chevron-up.png b/icons-png/chevron-up.png deleted file mode 100644 index 40eda024f..000000000 Binary files a/icons-png/chevron-up.png and /dev/null differ diff --git a/icons-png/chevrons-down-left.png b/icons-png/chevrons-down-left.png deleted file mode 100644 index 052358f64..000000000 Binary files a/icons-png/chevrons-down-left.png and /dev/null differ diff --git a/icons-png/chevrons-down-right.png b/icons-png/chevrons-down-right.png deleted file mode 100644 index 40ec01268..000000000 Binary files a/icons-png/chevrons-down-right.png and /dev/null differ diff --git a/icons-png/chevrons-down.png b/icons-png/chevrons-down.png deleted file mode 100644 index 62c554b8b..000000000 Binary files a/icons-png/chevrons-down.png and /dev/null differ diff --git a/icons-png/chevrons-left.png b/icons-png/chevrons-left.png deleted file mode 100644 index 933986e64..000000000 Binary files a/icons-png/chevrons-left.png and /dev/null differ diff --git a/icons-png/chevrons-right.png b/icons-png/chevrons-right.png deleted file mode 100644 index 922047c4c..000000000 Binary files a/icons-png/chevrons-right.png and /dev/null differ diff --git a/icons-png/chevrons-up-left.png b/icons-png/chevrons-up-left.png deleted file mode 100644 index 0a7761c49..000000000 Binary files a/icons-png/chevrons-up-left.png and /dev/null differ diff --git a/icons-png/chevrons-up-right.png b/icons-png/chevrons-up-right.png deleted file mode 100644 index 6dc65ca65..000000000 Binary files a/icons-png/chevrons-up-right.png and /dev/null differ diff --git a/icons-png/chevrons-up.png b/icons-png/chevrons-up.png deleted file mode 100644 index 4e8f15917..000000000 Binary files a/icons-png/chevrons-up.png and /dev/null differ diff --git a/icons-png/chisel.png b/icons-png/chisel.png deleted file mode 100644 index 3ae71362e..000000000 Binary files a/icons-png/chisel.png and /dev/null differ diff --git a/icons-png/christmas-tree-off.png b/icons-png/christmas-tree-off.png deleted file mode 100644 index 1973fa3c7..000000000 Binary files a/icons-png/christmas-tree-off.png and /dev/null differ diff --git a/icons-png/christmas-tree.png b/icons-png/christmas-tree.png deleted file mode 100644 index 3829e21ab..000000000 Binary files a/icons-png/christmas-tree.png and /dev/null differ diff --git a/icons-png/circle-caret-down.png b/icons-png/circle-caret-down.png deleted file mode 100644 index 47d88f930..000000000 Binary files a/icons-png/circle-caret-down.png and /dev/null differ diff --git a/icons-png/circle-caret-left.png b/icons-png/circle-caret-left.png deleted file mode 100644 index 8bee9e3e0..000000000 Binary files a/icons-png/circle-caret-left.png and /dev/null differ diff --git a/icons-png/circle-caret-right.png b/icons-png/circle-caret-right.png deleted file mode 100644 index 639bc493d..000000000 Binary files a/icons-png/circle-caret-right.png and /dev/null differ diff --git a/icons-png/circle-caret-up.png b/icons-png/circle-caret-up.png deleted file mode 100644 index 984091391..000000000 Binary files a/icons-png/circle-caret-up.png and /dev/null differ diff --git a/icons-png/circle-check.png b/icons-png/circle-check.png deleted file mode 100644 index b37339d5d..000000000 Binary files a/icons-png/circle-check.png and /dev/null differ diff --git a/icons-png/circle-chevron-down.png b/icons-png/circle-chevron-down.png deleted file mode 100644 index dca820c07..000000000 Binary files a/icons-png/circle-chevron-down.png and /dev/null differ diff --git a/icons-png/circle-chevron-left.png b/icons-png/circle-chevron-left.png deleted file mode 100644 index b89c1da82..000000000 Binary files a/icons-png/circle-chevron-left.png and /dev/null differ diff --git a/icons-png/circle-chevron-right.png b/icons-png/circle-chevron-right.png deleted file mode 100644 index 194f5ff47..000000000 Binary files a/icons-png/circle-chevron-right.png and /dev/null differ diff --git a/icons-png/circle-chevron-up.png b/icons-png/circle-chevron-up.png deleted file mode 100644 index 9d6202991..000000000 Binary files a/icons-png/circle-chevron-up.png and /dev/null differ diff --git a/icons-png/circle-chevrons-down.png b/icons-png/circle-chevrons-down.png deleted file mode 100644 index 052f74537..000000000 Binary files a/icons-png/circle-chevrons-down.png and /dev/null differ diff --git a/icons-png/circle-chevrons-left.png b/icons-png/circle-chevrons-left.png deleted file mode 100644 index aefb53a37..000000000 Binary files a/icons-png/circle-chevrons-left.png and /dev/null differ diff --git a/icons-png/circle-chevrons-right.png b/icons-png/circle-chevrons-right.png deleted file mode 100644 index 0eef73b56..000000000 Binary files a/icons-png/circle-chevrons-right.png and /dev/null differ diff --git a/icons-png/circle-chevrons-up.png b/icons-png/circle-chevrons-up.png deleted file mode 100644 index 6dabb7790..000000000 Binary files a/icons-png/circle-chevrons-up.png and /dev/null differ diff --git a/icons-png/circle-dashed.png b/icons-png/circle-dashed.png deleted file mode 100644 index f88ebee55..000000000 Binary files a/icons-png/circle-dashed.png and /dev/null differ diff --git a/icons-png/circle-dot.png b/icons-png/circle-dot.png deleted file mode 100644 index fe618465c..000000000 Binary files a/icons-png/circle-dot.png and /dev/null differ diff --git a/icons-png/circle-dotted.png b/icons-png/circle-dotted.png deleted file mode 100644 index 44b856c4c..000000000 Binary files a/icons-png/circle-dotted.png and /dev/null differ diff --git a/icons-png/circle-half-2.png b/icons-png/circle-half-2.png deleted file mode 100644 index 406ba4fd4..000000000 Binary files a/icons-png/circle-half-2.png and /dev/null differ diff --git a/icons-png/circle-half-vertical.png b/icons-png/circle-half-vertical.png deleted file mode 100644 index c6ebcec6f..000000000 Binary files a/icons-png/circle-half-vertical.png and /dev/null differ diff --git a/icons-png/circle-half.png b/icons-png/circle-half.png deleted file mode 100644 index c8bba7c3a..000000000 Binary files a/icons-png/circle-half.png and /dev/null differ diff --git a/icons-png/circle-key.png b/icons-png/circle-key.png deleted file mode 100644 index 9813a443b..000000000 Binary files a/icons-png/circle-key.png and /dev/null differ diff --git a/icons-png/circle-letter-a.png b/icons-png/circle-letter-a.png deleted file mode 100644 index edd4378e1..000000000 Binary files a/icons-png/circle-letter-a.png and /dev/null differ diff --git a/icons-png/circle-letter-b.png b/icons-png/circle-letter-b.png deleted file mode 100644 index 11b1804cf..000000000 Binary files a/icons-png/circle-letter-b.png and /dev/null differ diff --git a/icons-png/circle-letter-c.png b/icons-png/circle-letter-c.png deleted file mode 100644 index d514e7561..000000000 Binary files a/icons-png/circle-letter-c.png and /dev/null differ diff --git a/icons-png/circle-letter-d.png b/icons-png/circle-letter-d.png deleted file mode 100644 index f2e7054e0..000000000 Binary files a/icons-png/circle-letter-d.png and /dev/null differ diff --git a/icons-png/circle-letter-e.png b/icons-png/circle-letter-e.png deleted file mode 100644 index fe31304b9..000000000 Binary files a/icons-png/circle-letter-e.png and /dev/null differ diff --git a/icons-png/circle-letter-f.png b/icons-png/circle-letter-f.png deleted file mode 100644 index 79c81f1ae..000000000 Binary files a/icons-png/circle-letter-f.png and /dev/null differ diff --git a/icons-png/circle-letter-g.png b/icons-png/circle-letter-g.png deleted file mode 100644 index a1fe345f2..000000000 Binary files a/icons-png/circle-letter-g.png and /dev/null differ diff --git a/icons-png/circle-letter-h.png b/icons-png/circle-letter-h.png deleted file mode 100644 index 6a252df93..000000000 Binary files a/icons-png/circle-letter-h.png and /dev/null differ diff --git a/icons-png/circle-letter-i.png b/icons-png/circle-letter-i.png deleted file mode 100644 index 24356e8f1..000000000 Binary files a/icons-png/circle-letter-i.png and /dev/null differ diff --git a/icons-png/circle-letter-j.png b/icons-png/circle-letter-j.png deleted file mode 100644 index fceea13b9..000000000 Binary files a/icons-png/circle-letter-j.png and /dev/null differ diff --git a/icons-png/circle-letter-k.png b/icons-png/circle-letter-k.png deleted file mode 100644 index 7d55e59d1..000000000 Binary files a/icons-png/circle-letter-k.png and /dev/null differ diff --git a/icons-png/circle-letter-l.png b/icons-png/circle-letter-l.png deleted file mode 100644 index cde1d8b97..000000000 Binary files a/icons-png/circle-letter-l.png and /dev/null differ diff --git a/icons-png/circle-letter-m.png b/icons-png/circle-letter-m.png deleted file mode 100644 index 64abc14af..000000000 Binary files a/icons-png/circle-letter-m.png and /dev/null differ diff --git a/icons-png/circle-letter-n.png b/icons-png/circle-letter-n.png deleted file mode 100644 index 0608b19b7..000000000 Binary files a/icons-png/circle-letter-n.png and /dev/null differ diff --git a/icons-png/circle-letter-o.png b/icons-png/circle-letter-o.png deleted file mode 100644 index 4cff21f65..000000000 Binary files a/icons-png/circle-letter-o.png and /dev/null differ diff --git a/icons-png/circle-letter-p.png b/icons-png/circle-letter-p.png deleted file mode 100644 index 7814d05e2..000000000 Binary files a/icons-png/circle-letter-p.png and /dev/null differ diff --git a/icons-png/circle-letter-q.png b/icons-png/circle-letter-q.png deleted file mode 100644 index e64da051d..000000000 Binary files a/icons-png/circle-letter-q.png and /dev/null differ diff --git a/icons-png/circle-letter-r.png b/icons-png/circle-letter-r.png deleted file mode 100644 index e474f7e78..000000000 Binary files a/icons-png/circle-letter-r.png and /dev/null differ diff --git a/icons-png/circle-letter-s.png b/icons-png/circle-letter-s.png deleted file mode 100644 index 5abfd2bca..000000000 Binary files a/icons-png/circle-letter-s.png and /dev/null differ diff --git a/icons-png/circle-letter-t.png b/icons-png/circle-letter-t.png deleted file mode 100644 index f4b33a8d5..000000000 Binary files a/icons-png/circle-letter-t.png and /dev/null differ diff --git a/icons-png/circle-letter-u.png b/icons-png/circle-letter-u.png deleted file mode 100644 index 76e75c5f1..000000000 Binary files a/icons-png/circle-letter-u.png and /dev/null differ diff --git a/icons-png/circle-letter-v.png b/icons-png/circle-letter-v.png deleted file mode 100644 index e1047d74e..000000000 Binary files a/icons-png/circle-letter-v.png and /dev/null differ diff --git a/icons-png/circle-letter-w.png b/icons-png/circle-letter-w.png deleted file mode 100644 index 1377c7622..000000000 Binary files a/icons-png/circle-letter-w.png and /dev/null differ diff --git a/icons-png/circle-letter-x.png b/icons-png/circle-letter-x.png deleted file mode 100644 index 9497d8434..000000000 Binary files a/icons-png/circle-letter-x.png and /dev/null differ diff --git a/icons-png/circle-letter-y.png b/icons-png/circle-letter-y.png deleted file mode 100644 index 3090af289..000000000 Binary files a/icons-png/circle-letter-y.png and /dev/null differ diff --git a/icons-png/circle-letter-z.png b/icons-png/circle-letter-z.png deleted file mode 100644 index c902ee431..000000000 Binary files a/icons-png/circle-letter-z.png and /dev/null differ diff --git a/icons-png/circle-minus.png b/icons-png/circle-minus.png deleted file mode 100644 index 6764fd282..000000000 Binary files a/icons-png/circle-minus.png and /dev/null differ diff --git a/icons-png/circle-number-0.png b/icons-png/circle-number-0.png deleted file mode 100644 index fc217efd4..000000000 Binary files a/icons-png/circle-number-0.png and /dev/null differ diff --git a/icons-png/circle-number-1.png b/icons-png/circle-number-1.png deleted file mode 100644 index aeac8eab6..000000000 Binary files a/icons-png/circle-number-1.png and /dev/null differ diff --git a/icons-png/circle-number-2.png b/icons-png/circle-number-2.png deleted file mode 100644 index 55ef30952..000000000 Binary files a/icons-png/circle-number-2.png and /dev/null differ diff --git a/icons-png/circle-number-3.png b/icons-png/circle-number-3.png deleted file mode 100644 index 0992f6615..000000000 Binary files a/icons-png/circle-number-3.png and /dev/null differ diff --git a/icons-png/circle-number-4.png b/icons-png/circle-number-4.png deleted file mode 100644 index b876085c0..000000000 Binary files a/icons-png/circle-number-4.png and /dev/null differ diff --git a/icons-png/circle-number-5.png b/icons-png/circle-number-5.png deleted file mode 100644 index b64631bbb..000000000 Binary files a/icons-png/circle-number-5.png and /dev/null differ diff --git a/icons-png/circle-number-6.png b/icons-png/circle-number-6.png deleted file mode 100644 index 839c1d54e..000000000 Binary files a/icons-png/circle-number-6.png and /dev/null differ diff --git a/icons-png/circle-number-7.png b/icons-png/circle-number-7.png deleted file mode 100644 index d5a9365bc..000000000 Binary files a/icons-png/circle-number-7.png and /dev/null differ diff --git a/icons-png/circle-number-8.png b/icons-png/circle-number-8.png deleted file mode 100644 index b72c4c84d..000000000 Binary files a/icons-png/circle-number-8.png and /dev/null differ diff --git a/icons-png/circle-number-9.png b/icons-png/circle-number-9.png deleted file mode 100644 index a342c0bec..000000000 Binary files a/icons-png/circle-number-9.png and /dev/null differ diff --git a/icons-png/circle-off.png b/icons-png/circle-off.png deleted file mode 100644 index 26cf328a8..000000000 Binary files a/icons-png/circle-off.png and /dev/null differ diff --git a/icons-png/circle-plus.png b/icons-png/circle-plus.png deleted file mode 100644 index b823d3f4c..000000000 Binary files a/icons-png/circle-plus.png and /dev/null differ diff --git a/icons-png/circle-rectangle-off.png b/icons-png/circle-rectangle-off.png deleted file mode 100644 index 56fef1ac7..000000000 Binary files a/icons-png/circle-rectangle-off.png and /dev/null differ diff --git a/icons-png/circle-rectangle.png b/icons-png/circle-rectangle.png deleted file mode 100644 index ea3f9582a..000000000 Binary files a/icons-png/circle-rectangle.png and /dev/null differ diff --git a/icons-png/circle-square.png b/icons-png/circle-square.png deleted file mode 100644 index 687c1cd72..000000000 Binary files a/icons-png/circle-square.png and /dev/null differ diff --git a/icons-png/circle-triangle.png b/icons-png/circle-triangle.png deleted file mode 100644 index 15f95aece..000000000 Binary files a/icons-png/circle-triangle.png and /dev/null differ diff --git a/icons-png/circle-x.png b/icons-png/circle-x.png deleted file mode 100644 index e3b11d1ae..000000000 Binary files a/icons-png/circle-x.png and /dev/null differ diff --git a/icons-png/circle.png b/icons-png/circle.png deleted file mode 100644 index e7f0c05a7..000000000 Binary files a/icons-png/circle.png and /dev/null differ diff --git a/icons-png/circles-relation.png b/icons-png/circles-relation.png deleted file mode 100644 index 613b0c01a..000000000 Binary files a/icons-png/circles-relation.png and /dev/null differ diff --git a/icons-png/circles.png b/icons-png/circles.png deleted file mode 100644 index 26e55fb00..000000000 Binary files a/icons-png/circles.png and /dev/null differ diff --git a/icons-png/circuit-ammeter.png b/icons-png/circuit-ammeter.png deleted file mode 100644 index e89289914..000000000 Binary files a/icons-png/circuit-ammeter.png and /dev/null differ diff --git a/icons-png/circuit-battery.png b/icons-png/circuit-battery.png deleted file mode 100644 index 305edfef4..000000000 Binary files a/icons-png/circuit-battery.png and /dev/null differ diff --git a/icons-png/circuit-bulb.png b/icons-png/circuit-bulb.png deleted file mode 100644 index 5aea19d66..000000000 Binary files a/icons-png/circuit-bulb.png and /dev/null differ diff --git a/icons-png/circuit-capacitor-polarized.png b/icons-png/circuit-capacitor-polarized.png deleted file mode 100644 index 1a60c20c8..000000000 Binary files a/icons-png/circuit-capacitor-polarized.png and /dev/null differ diff --git a/icons-png/circuit-capacitor.png b/icons-png/circuit-capacitor.png deleted file mode 100644 index dc66ca86f..000000000 Binary files a/icons-png/circuit-capacitor.png and /dev/null differ diff --git a/icons-png/circuit-cell-plus.png b/icons-png/circuit-cell-plus.png deleted file mode 100644 index 6a8d38988..000000000 Binary files a/icons-png/circuit-cell-plus.png and /dev/null differ diff --git a/icons-png/circuit-cell.png b/icons-png/circuit-cell.png deleted file mode 100644 index b6f549e51..000000000 Binary files a/icons-png/circuit-cell.png and /dev/null differ diff --git a/icons-png/circuit-changeover.png b/icons-png/circuit-changeover.png deleted file mode 100644 index db215b133..000000000 Binary files a/icons-png/circuit-changeover.png and /dev/null differ diff --git a/icons-png/circuit-diode-zener.png b/icons-png/circuit-diode-zener.png deleted file mode 100644 index 4a5a38ff6..000000000 Binary files a/icons-png/circuit-diode-zener.png and /dev/null differ diff --git a/icons-png/circuit-diode.png b/icons-png/circuit-diode.png deleted file mode 100644 index 0370ca2f6..000000000 Binary files a/icons-png/circuit-diode.png and /dev/null differ diff --git a/icons-png/circuit-ground-digital.png b/icons-png/circuit-ground-digital.png deleted file mode 100644 index f5b806934..000000000 Binary files a/icons-png/circuit-ground-digital.png and /dev/null differ diff --git a/icons-png/circuit-ground.png b/icons-png/circuit-ground.png deleted file mode 100644 index 47edc122a..000000000 Binary files a/icons-png/circuit-ground.png and /dev/null differ diff --git a/icons-png/circuit-inductor.png b/icons-png/circuit-inductor.png deleted file mode 100644 index 6cb378633..000000000 Binary files a/icons-png/circuit-inductor.png and /dev/null differ diff --git a/icons-png/circuit-motor.png b/icons-png/circuit-motor.png deleted file mode 100644 index 5f223b0e7..000000000 Binary files a/icons-png/circuit-motor.png and /dev/null differ diff --git a/icons-png/circuit-pushbutton.png b/icons-png/circuit-pushbutton.png deleted file mode 100644 index 7197cc18b..000000000 Binary files a/icons-png/circuit-pushbutton.png and /dev/null differ diff --git a/icons-png/circuit-resistor.png b/icons-png/circuit-resistor.png deleted file mode 100644 index 0ad49cffd..000000000 Binary files a/icons-png/circuit-resistor.png and /dev/null differ diff --git a/icons-png/circuit-switch-closed.png b/icons-png/circuit-switch-closed.png deleted file mode 100644 index 133753249..000000000 Binary files a/icons-png/circuit-switch-closed.png and /dev/null differ diff --git a/icons-png/circuit-switch-open.png b/icons-png/circuit-switch-open.png deleted file mode 100644 index 556d38eda..000000000 Binary files a/icons-png/circuit-switch-open.png and /dev/null differ diff --git a/icons-png/circuit-voltmeter.png b/icons-png/circuit-voltmeter.png deleted file mode 100644 index 36991b427..000000000 Binary files a/icons-png/circuit-voltmeter.png and /dev/null differ diff --git a/icons-png/clear-all.png b/icons-png/clear-all.png deleted file mode 100644 index cba791d40..000000000 Binary files a/icons-png/clear-all.png and /dev/null differ diff --git a/icons-png/clear-formatting.png b/icons-png/clear-formatting.png deleted file mode 100644 index ca6693132..000000000 Binary files a/icons-png/clear-formatting.png and /dev/null differ diff --git a/icons-png/click.png b/icons-png/click.png deleted file mode 100644 index 1f141c211..000000000 Binary files a/icons-png/click.png and /dev/null differ diff --git a/icons-png/clipboard-check.png b/icons-png/clipboard-check.png deleted file mode 100644 index 05ef5a460..000000000 Binary files a/icons-png/clipboard-check.png and /dev/null differ diff --git a/icons-png/clipboard-copy.png b/icons-png/clipboard-copy.png deleted file mode 100644 index dcca95465..000000000 Binary files a/icons-png/clipboard-copy.png and /dev/null differ diff --git a/icons-png/clipboard-data.png b/icons-png/clipboard-data.png deleted file mode 100644 index 0b8e04888..000000000 Binary files a/icons-png/clipboard-data.png and /dev/null differ diff --git a/icons-png/clipboard-heart.png b/icons-png/clipboard-heart.png deleted file mode 100644 index 29894ffcb..000000000 Binary files a/icons-png/clipboard-heart.png and /dev/null differ diff --git a/icons-png/clipboard-list.png b/icons-png/clipboard-list.png deleted file mode 100644 index 810260cdd..000000000 Binary files a/icons-png/clipboard-list.png and /dev/null differ diff --git a/icons-png/clipboard-off.png b/icons-png/clipboard-off.png deleted file mode 100644 index 3e9e40f6c..000000000 Binary files a/icons-png/clipboard-off.png and /dev/null differ diff --git a/icons-png/clipboard-plus.png b/icons-png/clipboard-plus.png deleted file mode 100644 index 7cd48fead..000000000 Binary files a/icons-png/clipboard-plus.png and /dev/null differ diff --git a/icons-png/clipboard-text.png b/icons-png/clipboard-text.png deleted file mode 100644 index 285094b36..000000000 Binary files a/icons-png/clipboard-text.png and /dev/null differ diff --git a/icons-png/clipboard-typography.png b/icons-png/clipboard-typography.png deleted file mode 100644 index fbba39ac3..000000000 Binary files a/icons-png/clipboard-typography.png and /dev/null differ diff --git a/icons-png/clipboard-x.png b/icons-png/clipboard-x.png deleted file mode 100644 index 655ef493c..000000000 Binary files a/icons-png/clipboard-x.png and /dev/null differ diff --git a/icons-png/clipboard.png b/icons-png/clipboard.png deleted file mode 100644 index 9a2148c09..000000000 Binary files a/icons-png/clipboard.png and /dev/null differ diff --git a/icons-png/clock-2.png b/icons-png/clock-2.png deleted file mode 100644 index b1e8407b6..000000000 Binary files a/icons-png/clock-2.png and /dev/null differ diff --git a/icons-png/clock-cancel.png b/icons-png/clock-cancel.png deleted file mode 100644 index aed331236..000000000 Binary files a/icons-png/clock-cancel.png and /dev/null differ diff --git a/icons-png/clock-edit.png b/icons-png/clock-edit.png deleted file mode 100644 index bc2da8e8c..000000000 Binary files a/icons-png/clock-edit.png and /dev/null differ diff --git a/icons-png/clock-hour-1.png b/icons-png/clock-hour-1.png deleted file mode 100644 index fd969a517..000000000 Binary files a/icons-png/clock-hour-1.png and /dev/null differ diff --git a/icons-png/clock-hour-10.png b/icons-png/clock-hour-10.png deleted file mode 100644 index b7057aa80..000000000 Binary files a/icons-png/clock-hour-10.png and /dev/null differ diff --git a/icons-png/clock-hour-11.png b/icons-png/clock-hour-11.png deleted file mode 100644 index 5c42628bf..000000000 Binary files a/icons-png/clock-hour-11.png and /dev/null differ diff --git a/icons-png/clock-hour-12.png b/icons-png/clock-hour-12.png deleted file mode 100644 index 348eb6e25..000000000 Binary files a/icons-png/clock-hour-12.png and /dev/null differ diff --git a/icons-png/clock-hour-2.png b/icons-png/clock-hour-2.png deleted file mode 100644 index 8692d7d0a..000000000 Binary files a/icons-png/clock-hour-2.png and /dev/null differ diff --git a/icons-png/clock-hour-3.png b/icons-png/clock-hour-3.png deleted file mode 100644 index 929a2b725..000000000 Binary files a/icons-png/clock-hour-3.png and /dev/null differ diff --git a/icons-png/clock-hour-4.png b/icons-png/clock-hour-4.png deleted file mode 100644 index fc655920c..000000000 Binary files a/icons-png/clock-hour-4.png and /dev/null differ diff --git a/icons-png/clock-hour-5.png b/icons-png/clock-hour-5.png deleted file mode 100644 index 69b8726b4..000000000 Binary files a/icons-png/clock-hour-5.png and /dev/null differ diff --git a/icons-png/clock-hour-6.png b/icons-png/clock-hour-6.png deleted file mode 100644 index 2a1808835..000000000 Binary files a/icons-png/clock-hour-6.png and /dev/null differ diff --git a/icons-png/clock-hour-7.png b/icons-png/clock-hour-7.png deleted file mode 100644 index 43a2c9110..000000000 Binary files a/icons-png/clock-hour-7.png and /dev/null differ diff --git a/icons-png/clock-hour-8.png b/icons-png/clock-hour-8.png deleted file mode 100644 index 141914b30..000000000 Binary files a/icons-png/clock-hour-8.png and /dev/null differ diff --git a/icons-png/clock-hour-9.png b/icons-png/clock-hour-9.png deleted file mode 100644 index fedb3b3d1..000000000 Binary files a/icons-png/clock-hour-9.png and /dev/null differ diff --git a/icons-png/clock-off.png b/icons-png/clock-off.png deleted file mode 100644 index 369607df9..000000000 Binary files a/icons-png/clock-off.png and /dev/null differ diff --git a/icons-png/clock-pause.png b/icons-png/clock-pause.png deleted file mode 100644 index d82635c38..000000000 Binary files a/icons-png/clock-pause.png and /dev/null differ diff --git a/icons-png/clock-play.png b/icons-png/clock-play.png deleted file mode 100644 index 98c015f64..000000000 Binary files a/icons-png/clock-play.png and /dev/null differ diff --git a/icons-png/clock-record.png b/icons-png/clock-record.png deleted file mode 100644 index 13f2a7158..000000000 Binary files a/icons-png/clock-record.png and /dev/null differ diff --git a/icons-png/clock-stop.png b/icons-png/clock-stop.png deleted file mode 100644 index d9cd8e6e5..000000000 Binary files a/icons-png/clock-stop.png and /dev/null differ diff --git a/icons-png/clock.png b/icons-png/clock.png deleted file mode 100644 index 73dd9d919..000000000 Binary files a/icons-png/clock.png and /dev/null differ diff --git a/icons-png/clothes-rack-off.png b/icons-png/clothes-rack-off.png deleted file mode 100644 index 00773721e..000000000 Binary files a/icons-png/clothes-rack-off.png and /dev/null differ diff --git a/icons-png/clothes-rack.png b/icons-png/clothes-rack.png deleted file mode 100644 index 056b62a72..000000000 Binary files a/icons-png/clothes-rack.png and /dev/null differ diff --git a/icons-png/cloud-computing.png b/icons-png/cloud-computing.png deleted file mode 100644 index e268333b1..000000000 Binary files a/icons-png/cloud-computing.png and /dev/null differ diff --git a/icons-png/cloud-data-connection.png b/icons-png/cloud-data-connection.png deleted file mode 100644 index c282041c0..000000000 Binary files a/icons-png/cloud-data-connection.png and /dev/null differ diff --git a/icons-png/cloud-download.png b/icons-png/cloud-download.png deleted file mode 100644 index a11bc319f..000000000 Binary files a/icons-png/cloud-download.png and /dev/null differ diff --git a/icons-png/cloud-fog.png b/icons-png/cloud-fog.png deleted file mode 100644 index b73a51620..000000000 Binary files a/icons-png/cloud-fog.png and /dev/null differ diff --git a/icons-png/cloud-lock-open.png b/icons-png/cloud-lock-open.png deleted file mode 100644 index 1ac5d9e3b..000000000 Binary files a/icons-png/cloud-lock-open.png and /dev/null differ diff --git a/icons-png/cloud-lock.png b/icons-png/cloud-lock.png deleted file mode 100644 index 03a443d9c..000000000 Binary files a/icons-png/cloud-lock.png and /dev/null differ diff --git a/icons-png/cloud-off.png b/icons-png/cloud-off.png deleted file mode 100644 index 132d6a405..000000000 Binary files a/icons-png/cloud-off.png and /dev/null differ diff --git a/icons-png/cloud-rain.png b/icons-png/cloud-rain.png deleted file mode 100644 index f39792705..000000000 Binary files a/icons-png/cloud-rain.png and /dev/null differ diff --git a/icons-png/cloud-snow.png b/icons-png/cloud-snow.png deleted file mode 100644 index bd58ef686..000000000 Binary files a/icons-png/cloud-snow.png and /dev/null differ diff --git a/icons-png/cloud-storm.png b/icons-png/cloud-storm.png deleted file mode 100644 index 68ee710bb..000000000 Binary files a/icons-png/cloud-storm.png and /dev/null differ diff --git a/icons-png/cloud-upload.png b/icons-png/cloud-upload.png deleted file mode 100644 index e15110f6e..000000000 Binary files a/icons-png/cloud-upload.png and /dev/null differ diff --git a/icons-png/cloud.png b/icons-png/cloud.png deleted file mode 100644 index 06ef1b192..000000000 Binary files a/icons-png/cloud.png and /dev/null differ diff --git a/icons-png/clover-2.png b/icons-png/clover-2.png deleted file mode 100644 index a99081a29..000000000 Binary files a/icons-png/clover-2.png and /dev/null differ diff --git a/icons-png/clover.png b/icons-png/clover.png deleted file mode 100644 index c04571e88..000000000 Binary files a/icons-png/clover.png and /dev/null differ diff --git a/icons-png/clubs.png b/icons-png/clubs.png deleted file mode 100644 index 73a5f5b34..000000000 Binary files a/icons-png/clubs.png and /dev/null differ diff --git a/icons-png/code-asterix.png b/icons-png/code-asterix.png deleted file mode 100644 index 4d4cf0da7..000000000 Binary files a/icons-png/code-asterix.png and /dev/null differ diff --git a/icons-png/code-circle-2.png b/icons-png/code-circle-2.png deleted file mode 100644 index 19c3ef597..000000000 Binary files a/icons-png/code-circle-2.png and /dev/null differ diff --git a/icons-png/code-circle.png b/icons-png/code-circle.png deleted file mode 100644 index c366d8dc3..000000000 Binary files a/icons-png/code-circle.png and /dev/null differ diff --git a/icons-png/code-dots.png b/icons-png/code-dots.png deleted file mode 100644 index 01436a0cf..000000000 Binary files a/icons-png/code-dots.png and /dev/null differ diff --git a/icons-png/code-minus.png b/icons-png/code-minus.png deleted file mode 100644 index 4e0f0e409..000000000 Binary files a/icons-png/code-minus.png and /dev/null differ diff --git a/icons-png/code-off.png b/icons-png/code-off.png deleted file mode 100644 index 8e645ba71..000000000 Binary files a/icons-png/code-off.png and /dev/null differ diff --git a/icons-png/code-plus.png b/icons-png/code-plus.png deleted file mode 100644 index 0b435d62e..000000000 Binary files a/icons-png/code-plus.png and /dev/null differ diff --git a/icons-png/code.png b/icons-png/code.png deleted file mode 100644 index 35f2bb1f3..000000000 Binary files a/icons-png/code.png and /dev/null differ diff --git a/icons-png/coffee-off.png b/icons-png/coffee-off.png deleted file mode 100644 index bad78adf3..000000000 Binary files a/icons-png/coffee-off.png and /dev/null differ diff --git a/icons-png/coffee.png b/icons-png/coffee.png deleted file mode 100644 index ef7d91cbe..000000000 Binary files a/icons-png/coffee.png and /dev/null differ diff --git a/icons-png/coffin.png b/icons-png/coffin.png deleted file mode 100644 index a60ec7640..000000000 Binary files a/icons-png/coffin.png and /dev/null differ diff --git a/icons-png/coin-bitcoin.png b/icons-png/coin-bitcoin.png deleted file mode 100644 index d4dba8a29..000000000 Binary files a/icons-png/coin-bitcoin.png and /dev/null differ diff --git a/icons-png/coin-euro.png b/icons-png/coin-euro.png deleted file mode 100644 index 700afb3f0..000000000 Binary files a/icons-png/coin-euro.png and /dev/null differ diff --git a/icons-png/coin-monero.png b/icons-png/coin-monero.png deleted file mode 100644 index c0ef07380..000000000 Binary files a/icons-png/coin-monero.png and /dev/null differ diff --git a/icons-png/coin-off.png b/icons-png/coin-off.png deleted file mode 100644 index 5a79d5c67..000000000 Binary files a/icons-png/coin-off.png and /dev/null differ diff --git a/icons-png/coin-pound.png b/icons-png/coin-pound.png deleted file mode 100644 index be58292fc..000000000 Binary files a/icons-png/coin-pound.png and /dev/null differ diff --git a/icons-png/coin-rupee.png b/icons-png/coin-rupee.png deleted file mode 100644 index 36db60eb3..000000000 Binary files a/icons-png/coin-rupee.png and /dev/null differ diff --git a/icons-png/coin-yen.png b/icons-png/coin-yen.png deleted file mode 100644 index 3e53a1a29..000000000 Binary files a/icons-png/coin-yen.png and /dev/null differ diff --git a/icons-png/coin-yuan.png b/icons-png/coin-yuan.png deleted file mode 100644 index 19b6fb358..000000000 Binary files a/icons-png/coin-yuan.png and /dev/null differ diff --git a/icons-png/coin.png b/icons-png/coin.png deleted file mode 100644 index 4f25d9699..000000000 Binary files a/icons-png/coin.png and /dev/null differ diff --git a/icons-png/coins.png b/icons-png/coins.png deleted file mode 100644 index 716b85048..000000000 Binary files a/icons-png/coins.png and /dev/null differ diff --git a/icons-png/color-filter.png b/icons-png/color-filter.png deleted file mode 100644 index ca87ecc56..000000000 Binary files a/icons-png/color-filter.png and /dev/null differ diff --git a/icons-png/color-picker-off.png b/icons-png/color-picker-off.png deleted file mode 100644 index 62a47298b..000000000 Binary files a/icons-png/color-picker-off.png and /dev/null differ diff --git a/icons-png/color-picker.png b/icons-png/color-picker.png deleted file mode 100644 index 17060c38a..000000000 Binary files a/icons-png/color-picker.png and /dev/null differ diff --git a/icons-png/color-swatch-off.png b/icons-png/color-swatch-off.png deleted file mode 100644 index ba5f20485..000000000 Binary files a/icons-png/color-swatch-off.png and /dev/null differ diff --git a/icons-png/color-swatch.png b/icons-png/color-swatch.png deleted file mode 100644 index 75469c7ae..000000000 Binary files a/icons-png/color-swatch.png and /dev/null differ diff --git a/icons-png/column-insert-left.png b/icons-png/column-insert-left.png deleted file mode 100644 index 1397a04ed..000000000 Binary files a/icons-png/column-insert-left.png and /dev/null differ diff --git a/icons-png/column-insert-right.png b/icons-png/column-insert-right.png deleted file mode 100644 index 78bbece2c..000000000 Binary files a/icons-png/column-insert-right.png and /dev/null differ diff --git a/icons-png/columns-off.png b/icons-png/columns-off.png deleted file mode 100644 index 10b00ee31..000000000 Binary files a/icons-png/columns-off.png and /dev/null differ diff --git a/icons-png/columns.png b/icons-png/columns.png deleted file mode 100644 index 1f7462b9b..000000000 Binary files a/icons-png/columns.png and /dev/null differ diff --git a/icons-png/comet.png b/icons-png/comet.png deleted file mode 100644 index f3b445571..000000000 Binary files a/icons-png/comet.png and /dev/null differ diff --git a/icons-png/command-off.png b/icons-png/command-off.png deleted file mode 100644 index 25f313710..000000000 Binary files a/icons-png/command-off.png and /dev/null differ diff --git a/icons-png/command.png b/icons-png/command.png deleted file mode 100644 index ac6e80fca..000000000 Binary files a/icons-png/command.png and /dev/null differ diff --git a/icons-png/compass-off.png b/icons-png/compass-off.png deleted file mode 100644 index 7f6a66090..000000000 Binary files a/icons-png/compass-off.png and /dev/null differ diff --git a/icons-png/compass.png b/icons-png/compass.png deleted file mode 100644 index ab059c8e5..000000000 Binary files a/icons-png/compass.png and /dev/null differ diff --git a/icons-png/components-off.png b/icons-png/components-off.png deleted file mode 100644 index 0063539f8..000000000 Binary files a/icons-png/components-off.png and /dev/null differ diff --git a/icons-png/components.png b/icons-png/components.png deleted file mode 100644 index 81c100360..000000000 Binary files a/icons-png/components.png and /dev/null differ diff --git a/icons-png/cone-2.png b/icons-png/cone-2.png deleted file mode 100644 index 52781228d..000000000 Binary files a/icons-png/cone-2.png and /dev/null differ diff --git a/icons-png/cone-off.png b/icons-png/cone-off.png deleted file mode 100644 index 1ba0beed2..000000000 Binary files a/icons-png/cone-off.png and /dev/null differ diff --git a/icons-png/cone.png b/icons-png/cone.png deleted file mode 100644 index c7e7ddfd0..000000000 Binary files a/icons-png/cone.png and /dev/null differ diff --git a/icons-png/confetti-off.png b/icons-png/confetti-off.png deleted file mode 100644 index 54deb7a28..000000000 Binary files a/icons-png/confetti-off.png and /dev/null differ diff --git a/icons-png/confetti.png b/icons-png/confetti.png deleted file mode 100644 index e6d295a17..000000000 Binary files a/icons-png/confetti.png and /dev/null differ diff --git a/icons-png/confucius.png b/icons-png/confucius.png deleted file mode 100644 index f32a1820a..000000000 Binary files a/icons-png/confucius.png and /dev/null differ diff --git a/icons-png/container-off.png b/icons-png/container-off.png deleted file mode 100644 index 17507e38c..000000000 Binary files a/icons-png/container-off.png and /dev/null differ diff --git a/icons-png/container.png b/icons-png/container.png deleted file mode 100644 index e19964f35..000000000 Binary files a/icons-png/container.png and /dev/null differ diff --git a/icons-png/contrast-2-off.png b/icons-png/contrast-2-off.png deleted file mode 100644 index 09f73330c..000000000 Binary files a/icons-png/contrast-2-off.png and /dev/null differ diff --git a/icons-png/contrast-2.png b/icons-png/contrast-2.png deleted file mode 100644 index ea907e261..000000000 Binary files a/icons-png/contrast-2.png and /dev/null differ diff --git a/icons-png/contrast-off.png b/icons-png/contrast-off.png deleted file mode 100644 index 6ac832092..000000000 Binary files a/icons-png/contrast-off.png and /dev/null differ diff --git a/icons-png/contrast.png b/icons-png/contrast.png deleted file mode 100644 index 3a7d92282..000000000 Binary files a/icons-png/contrast.png and /dev/null differ diff --git a/icons-png/cooker.png b/icons-png/cooker.png deleted file mode 100644 index 8b699d3fb..000000000 Binary files a/icons-png/cooker.png and /dev/null differ diff --git a/icons-png/cookie-man.png b/icons-png/cookie-man.png deleted file mode 100644 index 1ff7684fb..000000000 Binary files a/icons-png/cookie-man.png and /dev/null differ diff --git a/icons-png/cookie-off.png b/icons-png/cookie-off.png deleted file mode 100644 index 54312943e..000000000 Binary files a/icons-png/cookie-off.png and /dev/null differ diff --git a/icons-png/cookie.png b/icons-png/cookie.png deleted file mode 100644 index 76b9ff0ab..000000000 Binary files a/icons-png/cookie.png and /dev/null differ diff --git a/icons-png/copy-off.png b/icons-png/copy-off.png deleted file mode 100644 index 3eb273855..000000000 Binary files a/icons-png/copy-off.png and /dev/null differ diff --git a/icons-png/copy.png b/icons-png/copy.png deleted file mode 100644 index 2a8bb9b73..000000000 Binary files a/icons-png/copy.png and /dev/null differ diff --git a/icons-png/copyleft-off.png b/icons-png/copyleft-off.png deleted file mode 100644 index f2fcadbf9..000000000 Binary files a/icons-png/copyleft-off.png and /dev/null differ diff --git a/icons-png/copyleft.png b/icons-png/copyleft.png deleted file mode 100644 index e735408ce..000000000 Binary files a/icons-png/copyleft.png and /dev/null differ diff --git a/icons-png/copyright-off.png b/icons-png/copyright-off.png deleted file mode 100644 index b9916b34a..000000000 Binary files a/icons-png/copyright-off.png and /dev/null differ diff --git a/icons-png/copyright.png b/icons-png/copyright.png deleted file mode 100644 index 415e61b77..000000000 Binary files a/icons-png/copyright.png and /dev/null differ diff --git a/icons-png/corner-down-left-double.png b/icons-png/corner-down-left-double.png deleted file mode 100644 index a785c5c93..000000000 Binary files a/icons-png/corner-down-left-double.png and /dev/null differ diff --git a/icons-png/corner-down-left.png b/icons-png/corner-down-left.png deleted file mode 100644 index b5f442d27..000000000 Binary files a/icons-png/corner-down-left.png and /dev/null differ diff --git a/icons-png/corner-down-right-double.png b/icons-png/corner-down-right-double.png deleted file mode 100644 index 819695f17..000000000 Binary files a/icons-png/corner-down-right-double.png and /dev/null differ diff --git a/icons-png/corner-down-right.png b/icons-png/corner-down-right.png deleted file mode 100644 index 0aea830c8..000000000 Binary files a/icons-png/corner-down-right.png and /dev/null differ diff --git a/icons-png/corner-left-down-double.png b/icons-png/corner-left-down-double.png deleted file mode 100644 index 453e8b3f6..000000000 Binary files a/icons-png/corner-left-down-double.png and /dev/null differ diff --git a/icons-png/corner-left-down.png b/icons-png/corner-left-down.png deleted file mode 100644 index 75412d9e7..000000000 Binary files a/icons-png/corner-left-down.png and /dev/null differ diff --git a/icons-png/corner-left-up-double.png b/icons-png/corner-left-up-double.png deleted file mode 100644 index c3153b7c8..000000000 Binary files a/icons-png/corner-left-up-double.png and /dev/null differ diff --git a/icons-png/corner-left-up.png b/icons-png/corner-left-up.png deleted file mode 100644 index 50134b71f..000000000 Binary files a/icons-png/corner-left-up.png and /dev/null differ diff --git a/icons-png/corner-right-down-double.png b/icons-png/corner-right-down-double.png deleted file mode 100644 index 69a8ff8e9..000000000 Binary files a/icons-png/corner-right-down-double.png and /dev/null differ diff --git a/icons-png/corner-right-down.png b/icons-png/corner-right-down.png deleted file mode 100644 index 0c10d1fde..000000000 Binary files a/icons-png/corner-right-down.png and /dev/null differ diff --git a/icons-png/corner-right-up-double.png b/icons-png/corner-right-up-double.png deleted file mode 100644 index 92ddef103..000000000 Binary files a/icons-png/corner-right-up-double.png and /dev/null differ diff --git a/icons-png/corner-right-up.png b/icons-png/corner-right-up.png deleted file mode 100644 index abf07d857..000000000 Binary files a/icons-png/corner-right-up.png and /dev/null differ diff --git a/icons-png/corner-up-left-double.png b/icons-png/corner-up-left-double.png deleted file mode 100644 index 3c188eb0b..000000000 Binary files a/icons-png/corner-up-left-double.png and /dev/null differ diff --git a/icons-png/corner-up-left.png b/icons-png/corner-up-left.png deleted file mode 100644 index f8c3df016..000000000 Binary files a/icons-png/corner-up-left.png and /dev/null differ diff --git a/icons-png/corner-up-right-double.png b/icons-png/corner-up-right-double.png deleted file mode 100644 index 6481315e0..000000000 Binary files a/icons-png/corner-up-right-double.png and /dev/null differ diff --git a/icons-png/corner-up-right.png b/icons-png/corner-up-right.png deleted file mode 100644 index 04a619920..000000000 Binary files a/icons-png/corner-up-right.png and /dev/null differ diff --git a/icons-png/cpu-2.png b/icons-png/cpu-2.png deleted file mode 100644 index a32512a45..000000000 Binary files a/icons-png/cpu-2.png and /dev/null differ diff --git a/icons-png/cpu-off.png b/icons-png/cpu-off.png deleted file mode 100644 index 9935ca268..000000000 Binary files a/icons-png/cpu-off.png and /dev/null differ diff --git a/icons-png/cpu.png b/icons-png/cpu.png deleted file mode 100644 index 74d688710..000000000 Binary files a/icons-png/cpu.png and /dev/null differ diff --git a/icons-png/crane-off.png b/icons-png/crane-off.png deleted file mode 100644 index e16a59952..000000000 Binary files a/icons-png/crane-off.png and /dev/null differ diff --git a/icons-png/crane.png b/icons-png/crane.png deleted file mode 100644 index 383913d47..000000000 Binary files a/icons-png/crane.png and /dev/null differ diff --git a/icons-png/creative-commons-by.png b/icons-png/creative-commons-by.png deleted file mode 100644 index cd7de6312..000000000 Binary files a/icons-png/creative-commons-by.png and /dev/null differ diff --git a/icons-png/creative-commons-nc.png b/icons-png/creative-commons-nc.png deleted file mode 100644 index c792dd5d6..000000000 Binary files a/icons-png/creative-commons-nc.png and /dev/null differ diff --git a/icons-png/creative-commons-nd.png b/icons-png/creative-commons-nd.png deleted file mode 100644 index c1e37f1b2..000000000 Binary files a/icons-png/creative-commons-nd.png and /dev/null differ diff --git a/icons-png/creative-commons-off.png b/icons-png/creative-commons-off.png deleted file mode 100644 index 157500855..000000000 Binary files a/icons-png/creative-commons-off.png and /dev/null differ diff --git a/icons-png/creative-commons-sa.png b/icons-png/creative-commons-sa.png deleted file mode 100644 index c831c02ed..000000000 Binary files a/icons-png/creative-commons-sa.png and /dev/null differ diff --git a/icons-png/creative-commons-zero.png b/icons-png/creative-commons-zero.png deleted file mode 100644 index be90d8fa6..000000000 Binary files a/icons-png/creative-commons-zero.png and /dev/null differ diff --git a/icons-png/creative-commons.png b/icons-png/creative-commons.png deleted file mode 100644 index b2bab8fe6..000000000 Binary files a/icons-png/creative-commons.png and /dev/null differ diff --git a/icons-png/credit-card-off.png b/icons-png/credit-card-off.png deleted file mode 100644 index 06dc884f4..000000000 Binary files a/icons-png/credit-card-off.png and /dev/null differ diff --git a/icons-png/credit-card.png b/icons-png/credit-card.png deleted file mode 100644 index 9403b6ac6..000000000 Binary files a/icons-png/credit-card.png and /dev/null differ diff --git a/icons-png/cricket.png b/icons-png/cricket.png deleted file mode 100644 index 7d9e78d43..000000000 Binary files a/icons-png/cricket.png and /dev/null differ diff --git a/icons-png/crop.png b/icons-png/crop.png deleted file mode 100644 index 611ff6d49..000000000 Binary files a/icons-png/crop.png and /dev/null differ diff --git a/icons-png/cross-off.png b/icons-png/cross-off.png deleted file mode 100644 index 4968f67c6..000000000 Binary files a/icons-png/cross-off.png and /dev/null differ diff --git a/icons-png/cross.png b/icons-png/cross.png deleted file mode 100644 index 2d59bd00b..000000000 Binary files a/icons-png/cross.png and /dev/null differ diff --git a/icons-png/crosshair.png b/icons-png/crosshair.png deleted file mode 100644 index 67af22fae..000000000 Binary files a/icons-png/crosshair.png and /dev/null differ diff --git a/icons-png/crown-off.png b/icons-png/crown-off.png deleted file mode 100644 index c8f1c3d51..000000000 Binary files a/icons-png/crown-off.png and /dev/null differ diff --git a/icons-png/crown.png b/icons-png/crown.png deleted file mode 100644 index ddcc67564..000000000 Binary files a/icons-png/crown.png and /dev/null differ diff --git a/icons-png/crutches-off.png b/icons-png/crutches-off.png deleted file mode 100644 index a60c31738..000000000 Binary files a/icons-png/crutches-off.png and /dev/null differ diff --git a/icons-png/crutches.png b/icons-png/crutches.png deleted file mode 100644 index 7b8102aff..000000000 Binary files a/icons-png/crutches.png and /dev/null differ diff --git a/icons-png/crystal-ball.png b/icons-png/crystal-ball.png deleted file mode 100644 index 5933bb9c5..000000000 Binary files a/icons-png/crystal-ball.png and /dev/null differ diff --git a/icons-png/cube-send.png b/icons-png/cube-send.png deleted file mode 100644 index d2fd98a5b..000000000 Binary files a/icons-png/cube-send.png and /dev/null differ diff --git a/icons-png/cube-unfolded.png b/icons-png/cube-unfolded.png deleted file mode 100644 index 673c46926..000000000 Binary files a/icons-png/cube-unfolded.png and /dev/null differ diff --git a/icons-png/cup-off.png b/icons-png/cup-off.png deleted file mode 100644 index 531a88ee5..000000000 Binary files a/icons-png/cup-off.png and /dev/null differ diff --git a/icons-png/cup.png b/icons-png/cup.png deleted file mode 100644 index 34d3e03d4..000000000 Binary files a/icons-png/cup.png and /dev/null differ diff --git a/icons-png/curling.png b/icons-png/curling.png deleted file mode 100644 index bc8e80d60..000000000 Binary files a/icons-png/curling.png and /dev/null differ diff --git a/icons-png/curly-loop.png b/icons-png/curly-loop.png deleted file mode 100644 index 52e80f633..000000000 Binary files a/icons-png/curly-loop.png and /dev/null differ diff --git a/icons-png/currency-afghani.png b/icons-png/currency-afghani.png deleted file mode 100644 index d2a298331..000000000 Binary files a/icons-png/currency-afghani.png and /dev/null differ diff --git a/icons-png/currency-bahraini.png b/icons-png/currency-bahraini.png deleted file mode 100644 index 3c5389807..000000000 Binary files a/icons-png/currency-bahraini.png and /dev/null differ diff --git a/icons-png/currency-baht.png b/icons-png/currency-baht.png deleted file mode 100644 index 95d024b4b..000000000 Binary files a/icons-png/currency-baht.png and /dev/null differ diff --git a/icons-png/currency-bitcoin.png b/icons-png/currency-bitcoin.png deleted file mode 100644 index 9267dc1fe..000000000 Binary files a/icons-png/currency-bitcoin.png and /dev/null differ diff --git a/icons-png/currency-cent.png b/icons-png/currency-cent.png deleted file mode 100644 index b0f8aa215..000000000 Binary files a/icons-png/currency-cent.png and /dev/null differ diff --git a/icons-png/currency-dinar.png b/icons-png/currency-dinar.png deleted file mode 100644 index fcc0e7af5..000000000 Binary files a/icons-png/currency-dinar.png and /dev/null differ diff --git a/icons-png/currency-dirham.png b/icons-png/currency-dirham.png deleted file mode 100644 index 7e683131b..000000000 Binary files a/icons-png/currency-dirham.png and /dev/null differ diff --git a/icons-png/currency-dogecoin.png b/icons-png/currency-dogecoin.png deleted file mode 100644 index 5617dffce..000000000 Binary files a/icons-png/currency-dogecoin.png and /dev/null differ diff --git a/icons-png/currency-dollar-australian.png b/icons-png/currency-dollar-australian.png deleted file mode 100644 index 90b0a9e5b..000000000 Binary files a/icons-png/currency-dollar-australian.png and /dev/null differ diff --git a/icons-png/currency-dollar-brunei.png b/icons-png/currency-dollar-brunei.png deleted file mode 100644 index 9b6183edb..000000000 Binary files a/icons-png/currency-dollar-brunei.png and /dev/null differ diff --git a/icons-png/currency-dollar-canadian.png b/icons-png/currency-dollar-canadian.png deleted file mode 100644 index 58dbefa3f..000000000 Binary files a/icons-png/currency-dollar-canadian.png and /dev/null differ diff --git a/icons-png/currency-dollar-guyanese.png b/icons-png/currency-dollar-guyanese.png deleted file mode 100644 index f6b7ea2ce..000000000 Binary files a/icons-png/currency-dollar-guyanese.png and /dev/null differ diff --git a/icons-png/currency-dollar-off.png b/icons-png/currency-dollar-off.png deleted file mode 100644 index 5765797dd..000000000 Binary files a/icons-png/currency-dollar-off.png and /dev/null differ diff --git a/icons-png/currency-dollar-singapore.png b/icons-png/currency-dollar-singapore.png deleted file mode 100644 index 5ed4a8f68..000000000 Binary files a/icons-png/currency-dollar-singapore.png and /dev/null differ diff --git a/icons-png/currency-dollar-zimbabwean.png b/icons-png/currency-dollar-zimbabwean.png deleted file mode 100644 index 2b580fa69..000000000 Binary files a/icons-png/currency-dollar-zimbabwean.png and /dev/null differ diff --git a/icons-png/currency-dollar.png b/icons-png/currency-dollar.png deleted file mode 100644 index a10e4dff7..000000000 Binary files a/icons-png/currency-dollar.png and /dev/null differ diff --git a/icons-png/currency-dong.png b/icons-png/currency-dong.png deleted file mode 100644 index 55286bed4..000000000 Binary files a/icons-png/currency-dong.png and /dev/null differ diff --git a/icons-png/currency-dram.png b/icons-png/currency-dram.png deleted file mode 100644 index 82fd6a1fb..000000000 Binary files a/icons-png/currency-dram.png and /dev/null differ diff --git a/icons-png/currency-ethereum.png b/icons-png/currency-ethereum.png deleted file mode 100644 index 8563592d0..000000000 Binary files a/icons-png/currency-ethereum.png and /dev/null differ diff --git a/icons-png/currency-euro-off.png b/icons-png/currency-euro-off.png deleted file mode 100644 index 051fedd6a..000000000 Binary files a/icons-png/currency-euro-off.png and /dev/null differ diff --git a/icons-png/currency-euro.png b/icons-png/currency-euro.png deleted file mode 100644 index 40c496cb9..000000000 Binary files a/icons-png/currency-euro.png and /dev/null differ diff --git a/icons-png/currency-forint.png b/icons-png/currency-forint.png deleted file mode 100644 index 78b0593e3..000000000 Binary files a/icons-png/currency-forint.png and /dev/null differ diff --git a/icons-png/currency-frank.png b/icons-png/currency-frank.png deleted file mode 100644 index 6fac461a9..000000000 Binary files a/icons-png/currency-frank.png and /dev/null differ diff --git a/icons-png/currency-guarani.png b/icons-png/currency-guarani.png deleted file mode 100644 index 391f216a7..000000000 Binary files a/icons-png/currency-guarani.png and /dev/null differ diff --git a/icons-png/currency-hryvnia.png b/icons-png/currency-hryvnia.png deleted file mode 100644 index 8cf0f4a67..000000000 Binary files a/icons-png/currency-hryvnia.png and /dev/null differ diff --git a/icons-png/currency-kip.png b/icons-png/currency-kip.png deleted file mode 100644 index 0b016591d..000000000 Binary files a/icons-png/currency-kip.png and /dev/null differ diff --git a/icons-png/currency-krone-czech.png b/icons-png/currency-krone-czech.png deleted file mode 100644 index 7fe13d143..000000000 Binary files a/icons-png/currency-krone-czech.png and /dev/null differ diff --git a/icons-png/currency-krone-danish.png b/icons-png/currency-krone-danish.png deleted file mode 100644 index 52cf56877..000000000 Binary files a/icons-png/currency-krone-danish.png and /dev/null differ diff --git a/icons-png/currency-krone-swedish.png b/icons-png/currency-krone-swedish.png deleted file mode 100644 index 90db8d9f4..000000000 Binary files a/icons-png/currency-krone-swedish.png and /dev/null differ diff --git a/icons-png/currency-lari.png b/icons-png/currency-lari.png deleted file mode 100644 index c23a73519..000000000 Binary files a/icons-png/currency-lari.png and /dev/null differ diff --git a/icons-png/currency-leu.png b/icons-png/currency-leu.png deleted file mode 100644 index f08a9b807..000000000 Binary files a/icons-png/currency-leu.png and /dev/null differ diff --git a/icons-png/currency-lira.png b/icons-png/currency-lira.png deleted file mode 100644 index 88c853f9b..000000000 Binary files a/icons-png/currency-lira.png and /dev/null differ diff --git a/icons-png/currency-litecoin.png b/icons-png/currency-litecoin.png deleted file mode 100644 index 46dc8822d..000000000 Binary files a/icons-png/currency-litecoin.png and /dev/null differ diff --git a/icons-png/currency-lyd.png b/icons-png/currency-lyd.png deleted file mode 100644 index b0e2ec3dd..000000000 Binary files a/icons-png/currency-lyd.png and /dev/null differ diff --git a/icons-png/currency-manat.png b/icons-png/currency-manat.png deleted file mode 100644 index 0558a5f1a..000000000 Binary files a/icons-png/currency-manat.png and /dev/null differ diff --git a/icons-png/currency-monero.png b/icons-png/currency-monero.png deleted file mode 100644 index 1dbff1e02..000000000 Binary files a/icons-png/currency-monero.png and /dev/null differ diff --git a/icons-png/currency-naira.png b/icons-png/currency-naira.png deleted file mode 100644 index cdbc0ef3a..000000000 Binary files a/icons-png/currency-naira.png and /dev/null differ diff --git a/icons-png/currency-off.png b/icons-png/currency-off.png deleted file mode 100644 index e7a79467a..000000000 Binary files a/icons-png/currency-off.png and /dev/null differ diff --git a/icons-png/currency-paanga.png b/icons-png/currency-paanga.png deleted file mode 100644 index f71b4292c..000000000 Binary files a/icons-png/currency-paanga.png and /dev/null differ diff --git a/icons-png/currency-peso.png b/icons-png/currency-peso.png deleted file mode 100644 index ab6991298..000000000 Binary files a/icons-png/currency-peso.png and /dev/null differ diff --git a/icons-png/currency-pound-off.png b/icons-png/currency-pound-off.png deleted file mode 100644 index 7742c6dba..000000000 Binary files a/icons-png/currency-pound-off.png and /dev/null differ diff --git a/icons-png/currency-pound.png b/icons-png/currency-pound.png deleted file mode 100644 index 5d5eb86d1..000000000 Binary files a/icons-png/currency-pound.png and /dev/null differ diff --git a/icons-png/currency-quetzal.png b/icons-png/currency-quetzal.png deleted file mode 100644 index 4ac7296d1..000000000 Binary files a/icons-png/currency-quetzal.png and /dev/null differ diff --git a/icons-png/currency-real.png b/icons-png/currency-real.png deleted file mode 100644 index c712170f7..000000000 Binary files a/icons-png/currency-real.png and /dev/null differ diff --git a/icons-png/currency-renminbi.png b/icons-png/currency-renminbi.png deleted file mode 100644 index c3523d4f6..000000000 Binary files a/icons-png/currency-renminbi.png and /dev/null differ diff --git a/icons-png/currency-ripple.png b/icons-png/currency-ripple.png deleted file mode 100644 index ab65f008f..000000000 Binary files a/icons-png/currency-ripple.png and /dev/null differ diff --git a/icons-png/currency-riyal.png b/icons-png/currency-riyal.png deleted file mode 100644 index 795304b47..000000000 Binary files a/icons-png/currency-riyal.png and /dev/null differ diff --git a/icons-png/currency-rubel.png b/icons-png/currency-rubel.png deleted file mode 100644 index 983bb1793..000000000 Binary files a/icons-png/currency-rubel.png and /dev/null differ diff --git a/icons-png/currency-rufiyaa.png b/icons-png/currency-rufiyaa.png deleted file mode 100644 index 58313990f..000000000 Binary files a/icons-png/currency-rufiyaa.png and /dev/null differ diff --git a/icons-png/currency-rupee-nepalese.png b/icons-png/currency-rupee-nepalese.png deleted file mode 100644 index 66af17e90..000000000 Binary files a/icons-png/currency-rupee-nepalese.png and /dev/null differ diff --git a/icons-png/currency-rupee.png b/icons-png/currency-rupee.png deleted file mode 100644 index 305a136a8..000000000 Binary files a/icons-png/currency-rupee.png and /dev/null differ diff --git a/icons-png/currency-shekel.png b/icons-png/currency-shekel.png deleted file mode 100644 index ea9cbd1e2..000000000 Binary files a/icons-png/currency-shekel.png and /dev/null differ diff --git a/icons-png/currency-solana.png b/icons-png/currency-solana.png deleted file mode 100644 index a7eacba09..000000000 Binary files a/icons-png/currency-solana.png and /dev/null differ diff --git a/icons-png/currency-som.png b/icons-png/currency-som.png deleted file mode 100644 index f1561ed45..000000000 Binary files a/icons-png/currency-som.png and /dev/null differ diff --git a/icons-png/currency-taka.png b/icons-png/currency-taka.png deleted file mode 100644 index 1b7ccc785..000000000 Binary files a/icons-png/currency-taka.png and /dev/null differ diff --git a/icons-png/currency-tenge.png b/icons-png/currency-tenge.png deleted file mode 100644 index a642d7012..000000000 Binary files a/icons-png/currency-tenge.png and /dev/null differ diff --git a/icons-png/currency-tugrik.png b/icons-png/currency-tugrik.png deleted file mode 100644 index 0880895c2..000000000 Binary files a/icons-png/currency-tugrik.png and /dev/null differ diff --git a/icons-png/currency-won.png b/icons-png/currency-won.png deleted file mode 100644 index ac769d8db..000000000 Binary files a/icons-png/currency-won.png and /dev/null differ diff --git a/icons-png/currency-yen-off.png b/icons-png/currency-yen-off.png deleted file mode 100644 index 7addc2ef3..000000000 Binary files a/icons-png/currency-yen-off.png and /dev/null differ diff --git a/icons-png/currency-yen.png b/icons-png/currency-yen.png deleted file mode 100644 index 75b84a3d6..000000000 Binary files a/icons-png/currency-yen.png and /dev/null differ diff --git a/icons-png/currency-yuan.png b/icons-png/currency-yuan.png deleted file mode 100644 index a5cd218d2..000000000 Binary files a/icons-png/currency-yuan.png and /dev/null differ diff --git a/icons-png/currency-zloty.png b/icons-png/currency-zloty.png deleted file mode 100644 index d8080ab1d..000000000 Binary files a/icons-png/currency-zloty.png and /dev/null differ diff --git a/icons-png/currency.png b/icons-png/currency.png deleted file mode 100644 index 1d2e321ff..000000000 Binary files a/icons-png/currency.png and /dev/null differ diff --git a/icons-png/current-location-off.png b/icons-png/current-location-off.png deleted file mode 100644 index 4363bd5f3..000000000 Binary files a/icons-png/current-location-off.png and /dev/null differ diff --git a/icons-png/current-location.png b/icons-png/current-location.png deleted file mode 100644 index 2837d1bf2..000000000 Binary files a/icons-png/current-location.png and /dev/null differ diff --git a/icons-png/cursor-off.png b/icons-png/cursor-off.png deleted file mode 100644 index 032cd8205..000000000 Binary files a/icons-png/cursor-off.png and /dev/null differ diff --git a/icons-png/cursor-text.png b/icons-png/cursor-text.png deleted file mode 100644 index 0b3bb40be..000000000 Binary files a/icons-png/cursor-text.png and /dev/null differ diff --git a/icons-png/cut.png b/icons-png/cut.png deleted file mode 100644 index ae6b78a0e..000000000 Binary files a/icons-png/cut.png and /dev/null differ diff --git a/icons-png/cylinder.png b/icons-png/cylinder.png deleted file mode 100644 index f90c09b85..000000000 Binary files a/icons-png/cylinder.png and /dev/null differ diff --git a/icons-png/dashboard-off.png b/icons-png/dashboard-off.png deleted file mode 100644 index 1eb40eb92..000000000 Binary files a/icons-png/dashboard-off.png and /dev/null differ diff --git a/icons-png/dashboard.png b/icons-png/dashboard.png deleted file mode 100644 index 43bdc0698..000000000 Binary files a/icons-png/dashboard.png and /dev/null differ diff --git a/icons-png/database-export.png b/icons-png/database-export.png deleted file mode 100644 index 7b6cfba41..000000000 Binary files a/icons-png/database-export.png and /dev/null differ diff --git a/icons-png/database-import.png b/icons-png/database-import.png deleted file mode 100644 index 5d101d59a..000000000 Binary files a/icons-png/database-import.png and /dev/null differ diff --git a/icons-png/database-off.png b/icons-png/database-off.png deleted file mode 100644 index ed0aa8695..000000000 Binary files a/icons-png/database-off.png and /dev/null differ diff --git a/icons-png/database.png b/icons-png/database.png deleted file mode 100644 index 7b7b373bd..000000000 Binary files a/icons-png/database.png and /dev/null differ diff --git a/icons-png/deer.png b/icons-png/deer.png deleted file mode 100644 index b9f072e4a..000000000 Binary files a/icons-png/deer.png and /dev/null differ diff --git a/icons-png/delta.png b/icons-png/delta.png deleted file mode 100644 index c1d94f455..000000000 Binary files a/icons-png/delta.png and /dev/null differ diff --git a/icons-png/dental-broken.png b/icons-png/dental-broken.png deleted file mode 100644 index daaf7a10a..000000000 Binary files a/icons-png/dental-broken.png and /dev/null differ diff --git a/icons-png/dental-off.png b/icons-png/dental-off.png deleted file mode 100644 index 089e247f2..000000000 Binary files a/icons-png/dental-off.png and /dev/null differ diff --git a/icons-png/dental.png b/icons-png/dental.png deleted file mode 100644 index c80bb16de..000000000 Binary files a/icons-png/dental.png and /dev/null differ diff --git a/icons-png/details-off.png b/icons-png/details-off.png deleted file mode 100644 index 66e73a576..000000000 Binary files a/icons-png/details-off.png and /dev/null differ diff --git a/icons-png/details.png b/icons-png/details.png deleted file mode 100644 index dcc73be81..000000000 Binary files a/icons-png/details.png and /dev/null differ diff --git a/icons-png/device-airpods-case.png b/icons-png/device-airpods-case.png deleted file mode 100644 index 4e647d78f..000000000 Binary files a/icons-png/device-airpods-case.png and /dev/null differ diff --git a/icons-png/device-airpods.png b/icons-png/device-airpods.png deleted file mode 100644 index 9903edf95..000000000 Binary files a/icons-png/device-airpods.png and /dev/null differ diff --git a/icons-png/device-analytics.png b/icons-png/device-analytics.png deleted file mode 100644 index 30913e5f5..000000000 Binary files a/icons-png/device-analytics.png and /dev/null differ diff --git a/icons-png/device-audio-tape.png b/icons-png/device-audio-tape.png deleted file mode 100644 index c99382caa..000000000 Binary files a/icons-png/device-audio-tape.png and /dev/null differ diff --git a/icons-png/device-camera-phone.png b/icons-png/device-camera-phone.png deleted file mode 100644 index abe78a051..000000000 Binary files a/icons-png/device-camera-phone.png and /dev/null differ diff --git a/icons-png/device-cctv-off.png b/icons-png/device-cctv-off.png deleted file mode 100644 index 7b8886e5b..000000000 Binary files a/icons-png/device-cctv-off.png and /dev/null differ diff --git a/icons-png/device-cctv.png b/icons-png/device-cctv.png deleted file mode 100644 index bd4013377..000000000 Binary files a/icons-png/device-cctv.png and /dev/null differ diff --git a/icons-png/device-computer-camera-off.png b/icons-png/device-computer-camera-off.png deleted file mode 100644 index 651a90215..000000000 Binary files a/icons-png/device-computer-camera-off.png and /dev/null differ diff --git a/icons-png/device-computer-camera.png b/icons-png/device-computer-camera.png deleted file mode 100644 index 98578d0f6..000000000 Binary files a/icons-png/device-computer-camera.png and /dev/null differ diff --git a/icons-png/device-desktop-analytics.png b/icons-png/device-desktop-analytics.png deleted file mode 100644 index 2f4b66db1..000000000 Binary files a/icons-png/device-desktop-analytics.png and /dev/null differ diff --git a/icons-png/device-desktop-off.png b/icons-png/device-desktop-off.png deleted file mode 100644 index 4c8efeec7..000000000 Binary files a/icons-png/device-desktop-off.png and /dev/null differ diff --git a/icons-png/device-desktop.png b/icons-png/device-desktop.png deleted file mode 100644 index 3b11d8dce..000000000 Binary files a/icons-png/device-desktop.png and /dev/null differ diff --git a/icons-png/device-floppy.png b/icons-png/device-floppy.png deleted file mode 100644 index e8e980b9e..000000000 Binary files a/icons-png/device-floppy.png and /dev/null differ diff --git a/icons-png/device-gamepad-2.png b/icons-png/device-gamepad-2.png deleted file mode 100644 index 3e0e6d05a..000000000 Binary files a/icons-png/device-gamepad-2.png and /dev/null differ diff --git a/icons-png/device-gamepad.png b/icons-png/device-gamepad.png deleted file mode 100644 index 4432476d3..000000000 Binary files a/icons-png/device-gamepad.png and /dev/null differ diff --git a/icons-png/device-heart-monitor.png b/icons-png/device-heart-monitor.png deleted file mode 100644 index 80a8cecb5..000000000 Binary files a/icons-png/device-heart-monitor.png and /dev/null differ diff --git a/icons-png/device-ipad-horizontal.png b/icons-png/device-ipad-horizontal.png deleted file mode 100644 index 4e057aea7..000000000 Binary files a/icons-png/device-ipad-horizontal.png and /dev/null differ diff --git a/icons-png/device-ipad.png b/icons-png/device-ipad.png deleted file mode 100644 index c48ff9b31..000000000 Binary files a/icons-png/device-ipad.png and /dev/null differ diff --git a/icons-png/device-landline-phone.png b/icons-png/device-landline-phone.png deleted file mode 100644 index a94e6e915..000000000 Binary files a/icons-png/device-landline-phone.png and /dev/null differ diff --git a/icons-png/device-laptop-off.png b/icons-png/device-laptop-off.png deleted file mode 100644 index bc055a919..000000000 Binary files a/icons-png/device-laptop-off.png and /dev/null differ diff --git a/icons-png/device-laptop.png b/icons-png/device-laptop.png deleted file mode 100644 index 4e221be38..000000000 Binary files a/icons-png/device-laptop.png and /dev/null differ diff --git a/icons-png/device-mobile-charging.png b/icons-png/device-mobile-charging.png deleted file mode 100644 index 488a9160b..000000000 Binary files a/icons-png/device-mobile-charging.png and /dev/null differ diff --git a/icons-png/device-mobile-message.png b/icons-png/device-mobile-message.png deleted file mode 100644 index a66cbaf9e..000000000 Binary files a/icons-png/device-mobile-message.png and /dev/null differ diff --git a/icons-png/device-mobile-off.png b/icons-png/device-mobile-off.png deleted file mode 100644 index 9cd6077cf..000000000 Binary files a/icons-png/device-mobile-off.png and /dev/null differ diff --git a/icons-png/device-mobile-rotated.png b/icons-png/device-mobile-rotated.png deleted file mode 100644 index de2c37095..000000000 Binary files a/icons-png/device-mobile-rotated.png and /dev/null differ diff --git a/icons-png/device-mobile-vibration.png b/icons-png/device-mobile-vibration.png deleted file mode 100644 index 9493a6227..000000000 Binary files a/icons-png/device-mobile-vibration.png and /dev/null differ diff --git a/icons-png/device-mobile.png b/icons-png/device-mobile.png deleted file mode 100644 index 49afa6fdd..000000000 Binary files a/icons-png/device-mobile.png and /dev/null differ diff --git a/icons-png/device-nintendo-off.png b/icons-png/device-nintendo-off.png deleted file mode 100644 index 1342766ab..000000000 Binary files a/icons-png/device-nintendo-off.png and /dev/null differ diff --git a/icons-png/device-nintendo.png b/icons-png/device-nintendo.png deleted file mode 100644 index a823383d3..000000000 Binary files a/icons-png/device-nintendo.png and /dev/null differ diff --git a/icons-png/device-sd-card.png b/icons-png/device-sd-card.png deleted file mode 100644 index 7f7fadd5a..000000000 Binary files a/icons-png/device-sd-card.png and /dev/null differ diff --git a/icons-png/device-sim-1.png b/icons-png/device-sim-1.png deleted file mode 100644 index 4cdca36fe..000000000 Binary files a/icons-png/device-sim-1.png and /dev/null differ diff --git a/icons-png/device-sim-2.png b/icons-png/device-sim-2.png deleted file mode 100644 index 49abaf165..000000000 Binary files a/icons-png/device-sim-2.png and /dev/null differ diff --git a/icons-png/device-sim-3.png b/icons-png/device-sim-3.png deleted file mode 100644 index 4d317fe11..000000000 Binary files a/icons-png/device-sim-3.png and /dev/null differ diff --git a/icons-png/device-sim.png b/icons-png/device-sim.png deleted file mode 100644 index ba32a7c4d..000000000 Binary files a/icons-png/device-sim.png and /dev/null differ diff --git a/icons-png/device-speaker-off.png b/icons-png/device-speaker-off.png deleted file mode 100644 index 92207d68a..000000000 Binary files a/icons-png/device-speaker-off.png and /dev/null differ diff --git a/icons-png/device-speaker.png b/icons-png/device-speaker.png deleted file mode 100644 index a8064e81a..000000000 Binary files a/icons-png/device-speaker.png and /dev/null differ diff --git a/icons-png/device-tablet-off.png b/icons-png/device-tablet-off.png deleted file mode 100644 index addf45d55..000000000 Binary files a/icons-png/device-tablet-off.png and /dev/null differ diff --git a/icons-png/device-tablet.png b/icons-png/device-tablet.png deleted file mode 100644 index 7ab039d62..000000000 Binary files a/icons-png/device-tablet.png and /dev/null differ diff --git a/icons-png/device-tv-off.png b/icons-png/device-tv-off.png deleted file mode 100644 index add38bfab..000000000 Binary files a/icons-png/device-tv-off.png and /dev/null differ diff --git a/icons-png/device-tv-old.png b/icons-png/device-tv-old.png deleted file mode 100644 index 7f80ed0fa..000000000 Binary files a/icons-png/device-tv-old.png and /dev/null differ diff --git a/icons-png/device-tv.png b/icons-png/device-tv.png deleted file mode 100644 index c58f2ead3..000000000 Binary files a/icons-png/device-tv.png and /dev/null differ diff --git a/icons-png/device-watch-off.png b/icons-png/device-watch-off.png deleted file mode 100644 index a23734508..000000000 Binary files a/icons-png/device-watch-off.png and /dev/null differ diff --git a/icons-png/device-watch-stats-2.png b/icons-png/device-watch-stats-2.png deleted file mode 100644 index 8aed7c599..000000000 Binary files a/icons-png/device-watch-stats-2.png and /dev/null differ diff --git a/icons-png/device-watch-stats.png b/icons-png/device-watch-stats.png deleted file mode 100644 index 55479c454..000000000 Binary files a/icons-png/device-watch-stats.png and /dev/null differ diff --git a/icons-png/device-watch.png b/icons-png/device-watch.png deleted file mode 100644 index 01c023fa0..000000000 Binary files a/icons-png/device-watch.png and /dev/null differ diff --git a/icons-png/devices-2.png b/icons-png/devices-2.png deleted file mode 100644 index 380460f5c..000000000 Binary files a/icons-png/devices-2.png and /dev/null differ diff --git a/icons-png/devices-off.png b/icons-png/devices-off.png deleted file mode 100644 index 077da5f91..000000000 Binary files a/icons-png/devices-off.png and /dev/null differ diff --git a/icons-png/devices-pc-off.png b/icons-png/devices-pc-off.png deleted file mode 100644 index b59b5d89b..000000000 Binary files a/icons-png/devices-pc-off.png and /dev/null differ diff --git a/icons-png/devices-pc.png b/icons-png/devices-pc.png deleted file mode 100644 index 0fe20626d..000000000 Binary files a/icons-png/devices-pc.png and /dev/null differ diff --git a/icons-png/devices.png b/icons-png/devices.png deleted file mode 100644 index 4b3343b99..000000000 Binary files a/icons-png/devices.png and /dev/null differ diff --git a/icons-png/dialpad-off.png b/icons-png/dialpad-off.png deleted file mode 100644 index 06c797a6c..000000000 Binary files a/icons-png/dialpad-off.png and /dev/null differ diff --git a/icons-png/dialpad.png b/icons-png/dialpad.png deleted file mode 100644 index 9724c4fef..000000000 Binary files a/icons-png/dialpad.png and /dev/null differ diff --git a/icons-png/diamond-off.png b/icons-png/diamond-off.png deleted file mode 100644 index 11a7a6c24..000000000 Binary files a/icons-png/diamond-off.png and /dev/null differ diff --git a/icons-png/diamond.png b/icons-png/diamond.png deleted file mode 100644 index e47ee9515..000000000 Binary files a/icons-png/diamond.png and /dev/null differ diff --git a/icons-png/diamonds.png b/icons-png/diamonds.png deleted file mode 100644 index 7fa0da348..000000000 Binary files a/icons-png/diamonds.png and /dev/null differ diff --git a/icons-png/dice-1.png b/icons-png/dice-1.png deleted file mode 100644 index 7df59d753..000000000 Binary files a/icons-png/dice-1.png and /dev/null differ diff --git a/icons-png/dice-2.png b/icons-png/dice-2.png deleted file mode 100644 index 3b8202866..000000000 Binary files a/icons-png/dice-2.png and /dev/null differ diff --git a/icons-png/dice-3.png b/icons-png/dice-3.png deleted file mode 100644 index 8fd948522..000000000 Binary files a/icons-png/dice-3.png and /dev/null differ diff --git a/icons-png/dice-4.png b/icons-png/dice-4.png deleted file mode 100644 index 4214b4655..000000000 Binary files a/icons-png/dice-4.png and /dev/null differ diff --git a/icons-png/dice-5.png b/icons-png/dice-5.png deleted file mode 100644 index 74ef5d07d..000000000 Binary files a/icons-png/dice-5.png and /dev/null differ diff --git a/icons-png/dice-6.png b/icons-png/dice-6.png deleted file mode 100644 index f1e7edb84..000000000 Binary files a/icons-png/dice-6.png and /dev/null differ diff --git a/icons-png/dice.png b/icons-png/dice.png deleted file mode 100644 index 4214b4655..000000000 Binary files a/icons-png/dice.png and /dev/null differ diff --git a/icons-png/dimensions.png b/icons-png/dimensions.png deleted file mode 100644 index c62f92a61..000000000 Binary files a/icons-png/dimensions.png and /dev/null differ diff --git a/icons-png/direction-horizontal.png b/icons-png/direction-horizontal.png deleted file mode 100644 index afd219265..000000000 Binary files a/icons-png/direction-horizontal.png and /dev/null differ diff --git a/icons-png/direction-sign-off.png b/icons-png/direction-sign-off.png deleted file mode 100644 index c8258e412..000000000 Binary files a/icons-png/direction-sign-off.png and /dev/null differ diff --git a/icons-png/direction-sign.png b/icons-png/direction-sign.png deleted file mode 100644 index 9fc39e434..000000000 Binary files a/icons-png/direction-sign.png and /dev/null differ diff --git a/icons-png/direction.png b/icons-png/direction.png deleted file mode 100644 index ce66a96c7..000000000 Binary files a/icons-png/direction.png and /dev/null differ diff --git a/icons-png/directions-off.png b/icons-png/directions-off.png deleted file mode 100644 index b78dca1bd..000000000 Binary files a/icons-png/directions-off.png and /dev/null differ diff --git a/icons-png/directions.png b/icons-png/directions.png deleted file mode 100644 index 132fd91ab..000000000 Binary files a/icons-png/directions.png and /dev/null differ diff --git a/icons-png/disabled-2.png b/icons-png/disabled-2.png deleted file mode 100644 index 347ede068..000000000 Binary files a/icons-png/disabled-2.png and /dev/null differ diff --git a/icons-png/disabled-off.png b/icons-png/disabled-off.png deleted file mode 100644 index 9d3325ef2..000000000 Binary files a/icons-png/disabled-off.png and /dev/null differ diff --git a/icons-png/disabled.png b/icons-png/disabled.png deleted file mode 100644 index 86d7154b4..000000000 Binary files a/icons-png/disabled.png and /dev/null differ diff --git a/icons-png/disc-golf.png b/icons-png/disc-golf.png deleted file mode 100644 index 840983f43..000000000 Binary files a/icons-png/disc-golf.png and /dev/null differ diff --git a/icons-png/disc-off.png b/icons-png/disc-off.png deleted file mode 100644 index 45c0d6210..000000000 Binary files a/icons-png/disc-off.png and /dev/null differ diff --git a/icons-png/disc.png b/icons-png/disc.png deleted file mode 100644 index e72a1da17..000000000 Binary files a/icons-png/disc.png and /dev/null differ diff --git a/icons-png/discount-2-off.png b/icons-png/discount-2-off.png deleted file mode 100644 index ce1e04605..000000000 Binary files a/icons-png/discount-2-off.png and /dev/null differ diff --git a/icons-png/discount-2.png b/icons-png/discount-2.png deleted file mode 100644 index b248ec501..000000000 Binary files a/icons-png/discount-2.png and /dev/null differ diff --git a/icons-png/discount-check.png b/icons-png/discount-check.png deleted file mode 100644 index 13a08fd76..000000000 Binary files a/icons-png/discount-check.png and /dev/null differ diff --git a/icons-png/discount-off.png b/icons-png/discount-off.png deleted file mode 100644 index 888c1e72b..000000000 Binary files a/icons-png/discount-off.png and /dev/null differ diff --git a/icons-png/discount.png b/icons-png/discount.png deleted file mode 100644 index 65bccfd5d..000000000 Binary files a/icons-png/discount.png and /dev/null differ diff --git a/icons-png/divide.png b/icons-png/divide.png deleted file mode 100644 index be2272e5e..000000000 Binary files a/icons-png/divide.png and /dev/null differ diff --git a/icons-png/dna-2-off.png b/icons-png/dna-2-off.png deleted file mode 100644 index bf05e05d4..000000000 Binary files a/icons-png/dna-2-off.png and /dev/null differ diff --git a/icons-png/dna-2.png b/icons-png/dna-2.png deleted file mode 100644 index f35752a20..000000000 Binary files a/icons-png/dna-2.png and /dev/null differ diff --git a/icons-png/dna-off.png b/icons-png/dna-off.png deleted file mode 100644 index 3e5a18e4a..000000000 Binary files a/icons-png/dna-off.png and /dev/null differ diff --git a/icons-png/dna.png b/icons-png/dna.png deleted file mode 100644 index f1964e8d2..000000000 Binary files a/icons-png/dna.png and /dev/null differ diff --git a/icons-png/dog-bowl.png b/icons-png/dog-bowl.png deleted file mode 100644 index dcaa54f7d..000000000 Binary files a/icons-png/dog-bowl.png and /dev/null differ diff --git a/icons-png/dog.png b/icons-png/dog.png deleted file mode 100644 index eb307c312..000000000 Binary files a/icons-png/dog.png and /dev/null differ diff --git a/icons-png/door-enter.png b/icons-png/door-enter.png deleted file mode 100644 index 816101b2f..000000000 Binary files a/icons-png/door-enter.png and /dev/null differ diff --git a/icons-png/door-exit.png b/icons-png/door-exit.png deleted file mode 100644 index d3ab1661c..000000000 Binary files a/icons-png/door-exit.png and /dev/null differ diff --git a/icons-png/door-off.png b/icons-png/door-off.png deleted file mode 100644 index 937fcad2e..000000000 Binary files a/icons-png/door-off.png and /dev/null differ diff --git a/icons-png/door.png b/icons-png/door.png deleted file mode 100644 index d8abc0b48..000000000 Binary files a/icons-png/door.png and /dev/null differ diff --git a/icons-png/dots-circle-horizontal.png b/icons-png/dots-circle-horizontal.png deleted file mode 100644 index f5705b68b..000000000 Binary files a/icons-png/dots-circle-horizontal.png and /dev/null differ diff --git a/icons-png/dots-diagonal-2.png b/icons-png/dots-diagonal-2.png deleted file mode 100644 index 015076e90..000000000 Binary files a/icons-png/dots-diagonal-2.png and /dev/null differ diff --git a/icons-png/dots-diagonal.png b/icons-png/dots-diagonal.png deleted file mode 100644 index 8b64b912b..000000000 Binary files a/icons-png/dots-diagonal.png and /dev/null differ diff --git a/icons-png/dots-vertical.png b/icons-png/dots-vertical.png deleted file mode 100644 index 2401ee47b..000000000 Binary files a/icons-png/dots-vertical.png and /dev/null differ diff --git a/icons-png/dots.png b/icons-png/dots.png deleted file mode 100644 index ff1ccfb4e..000000000 Binary files a/icons-png/dots.png and /dev/null differ diff --git a/icons-png/download-off.png b/icons-png/download-off.png deleted file mode 100644 index e9aa6ee1a..000000000 Binary files a/icons-png/download-off.png and /dev/null differ diff --git a/icons-png/download.png b/icons-png/download.png deleted file mode 100644 index 6595e27d3..000000000 Binary files a/icons-png/download.png and /dev/null differ diff --git a/icons-png/drag-drop-2.png b/icons-png/drag-drop-2.png deleted file mode 100644 index 78a973fcb..000000000 Binary files a/icons-png/drag-drop-2.png and /dev/null differ diff --git a/icons-png/drag-drop.png b/icons-png/drag-drop.png deleted file mode 100644 index 9316e78ee..000000000 Binary files a/icons-png/drag-drop.png and /dev/null differ diff --git a/icons-png/drone-off.png b/icons-png/drone-off.png deleted file mode 100644 index a8558e0ee..000000000 Binary files a/icons-png/drone-off.png and /dev/null differ diff --git a/icons-png/drone.png b/icons-png/drone.png deleted file mode 100644 index 0a1257a08..000000000 Binary files a/icons-png/drone.png and /dev/null differ diff --git a/icons-png/drop-circle.png b/icons-png/drop-circle.png deleted file mode 100644 index 5168ec29b..000000000 Binary files a/icons-png/drop-circle.png and /dev/null differ diff --git a/icons-png/droplet-filled-2.png b/icons-png/droplet-filled-2.png deleted file mode 100644 index fc94da1f1..000000000 Binary files a/icons-png/droplet-filled-2.png and /dev/null differ diff --git a/icons-png/droplet-filled.png b/icons-png/droplet-filled.png deleted file mode 100644 index 465d35cee..000000000 Binary files a/icons-png/droplet-filled.png and /dev/null differ diff --git a/icons-png/droplet-half-2.png b/icons-png/droplet-half-2.png deleted file mode 100644 index 9a856d3e7..000000000 Binary files a/icons-png/droplet-half-2.png and /dev/null differ diff --git a/icons-png/droplet-half.png b/icons-png/droplet-half.png deleted file mode 100644 index b1cac8a91..000000000 Binary files a/icons-png/droplet-half.png and /dev/null differ diff --git a/icons-png/droplet-off.png b/icons-png/droplet-off.png deleted file mode 100644 index 2c215f96d..000000000 Binary files a/icons-png/droplet-off.png and /dev/null differ diff --git a/icons-png/droplet.png b/icons-png/droplet.png deleted file mode 100644 index 3f5a798b5..000000000 Binary files a/icons-png/droplet.png and /dev/null differ diff --git a/icons-png/e-passport.png b/icons-png/e-passport.png deleted file mode 100644 index b113de38e..000000000 Binary files a/icons-png/e-passport.png and /dev/null differ diff --git a/icons-png/ear-off.png b/icons-png/ear-off.png deleted file mode 100644 index 69483e87a..000000000 Binary files a/icons-png/ear-off.png and /dev/null differ diff --git a/icons-png/ear.png b/icons-png/ear.png deleted file mode 100644 index 8c4ead55f..000000000 Binary files a/icons-png/ear.png and /dev/null differ diff --git a/icons-png/ease-in-control-point.png b/icons-png/ease-in-control-point.png deleted file mode 100644 index 382bf263d..000000000 Binary files a/icons-png/ease-in-control-point.png and /dev/null differ diff --git a/icons-png/ease-in-out-control-points.png b/icons-png/ease-in-out-control-points.png deleted file mode 100644 index 3ab9b052b..000000000 Binary files a/icons-png/ease-in-out-control-points.png and /dev/null differ diff --git a/icons-png/ease-in-out.png b/icons-png/ease-in-out.png deleted file mode 100644 index 6712b97c7..000000000 Binary files a/icons-png/ease-in-out.png and /dev/null differ diff --git a/icons-png/ease-in.png b/icons-png/ease-in.png deleted file mode 100644 index 48bd033a2..000000000 Binary files a/icons-png/ease-in.png and /dev/null differ diff --git a/icons-png/ease-out-control-point.png b/icons-png/ease-out-control-point.png deleted file mode 100644 index dc693f2e0..000000000 Binary files a/icons-png/ease-out-control-point.png and /dev/null differ diff --git a/icons-png/ease-out.png b/icons-png/ease-out.png deleted file mode 100644 index a4ec5f735..000000000 Binary files a/icons-png/ease-out.png and /dev/null differ diff --git a/icons-png/edit-circle-off.png b/icons-png/edit-circle-off.png deleted file mode 100644 index 11dad4e55..000000000 Binary files a/icons-png/edit-circle-off.png and /dev/null differ diff --git a/icons-png/edit-circle.png b/icons-png/edit-circle.png deleted file mode 100644 index 71e67f506..000000000 Binary files a/icons-png/edit-circle.png and /dev/null differ diff --git a/icons-png/edit-off.png b/icons-png/edit-off.png deleted file mode 100644 index 8b031e18c..000000000 Binary files a/icons-png/edit-off.png and /dev/null differ diff --git a/icons-png/edit.png b/icons-png/edit.png deleted file mode 100644 index 274f0538b..000000000 Binary files a/icons-png/edit.png and /dev/null differ diff --git a/icons-png/egg-cracked.png b/icons-png/egg-cracked.png deleted file mode 100644 index 565e201d2..000000000 Binary files a/icons-png/egg-cracked.png and /dev/null differ diff --git a/icons-png/egg-fried.png b/icons-png/egg-fried.png deleted file mode 100644 index 9a356318e..000000000 Binary files a/icons-png/egg-fried.png and /dev/null differ diff --git a/icons-png/egg-off.png b/icons-png/egg-off.png deleted file mode 100644 index 2f5cd2cb1..000000000 Binary files a/icons-png/egg-off.png and /dev/null differ diff --git a/icons-png/egg.png b/icons-png/egg.png deleted file mode 100644 index 47831ee3b..000000000 Binary files a/icons-png/egg.png and /dev/null differ diff --git a/icons-png/eggs.png b/icons-png/eggs.png deleted file mode 100644 index 1edda2076..000000000 Binary files a/icons-png/eggs.png and /dev/null differ diff --git a/icons-png/elevator-off.png b/icons-png/elevator-off.png deleted file mode 100644 index b3e0cc160..000000000 Binary files a/icons-png/elevator-off.png and /dev/null differ diff --git a/icons-png/elevator.png b/icons-png/elevator.png deleted file mode 100644 index aa9d3260a..000000000 Binary files a/icons-png/elevator.png and /dev/null differ diff --git a/icons-png/emergency-bed.png b/icons-png/emergency-bed.png deleted file mode 100644 index 3933ab902..000000000 Binary files a/icons-png/emergency-bed.png and /dev/null differ diff --git a/icons-png/empathize-off.png b/icons-png/empathize-off.png deleted file mode 100644 index 1abdbc436..000000000 Binary files a/icons-png/empathize-off.png and /dev/null differ diff --git a/icons-png/empathize.png b/icons-png/empathize.png deleted file mode 100644 index a3309f056..000000000 Binary files a/icons-png/empathize.png and /dev/null differ diff --git a/icons-png/emphasis.png b/icons-png/emphasis.png deleted file mode 100644 index e29d6966d..000000000 Binary files a/icons-png/emphasis.png and /dev/null differ diff --git a/icons-png/engine-off.png b/icons-png/engine-off.png deleted file mode 100644 index 59260c5a2..000000000 Binary files a/icons-png/engine-off.png and /dev/null differ diff --git a/icons-png/engine.png b/icons-png/engine.png deleted file mode 100644 index f00e3adde..000000000 Binary files a/icons-png/engine.png and /dev/null differ diff --git a/icons-png/equal-double.png b/icons-png/equal-double.png deleted file mode 100644 index 7039dd7ab..000000000 Binary files a/icons-png/equal-double.png and /dev/null differ diff --git a/icons-png/equal-not.png b/icons-png/equal-not.png deleted file mode 100644 index d747c0af6..000000000 Binary files a/icons-png/equal-not.png and /dev/null differ diff --git a/icons-png/equal.png b/icons-png/equal.png deleted file mode 100644 index 5e401f6e4..000000000 Binary files a/icons-png/equal.png and /dev/null differ diff --git a/icons-png/eraser-off.png b/icons-png/eraser-off.png deleted file mode 100644 index 19d32f85b..000000000 Binary files a/icons-png/eraser-off.png and /dev/null differ diff --git a/icons-png/eraser.png b/icons-png/eraser.png deleted file mode 100644 index dff509d17..000000000 Binary files a/icons-png/eraser.png and /dev/null differ diff --git a/icons-png/error-404-off.png b/icons-png/error-404-off.png deleted file mode 100644 index 7be242d72..000000000 Binary files a/icons-png/error-404-off.png and /dev/null differ diff --git a/icons-png/error-404.png b/icons-png/error-404.png deleted file mode 100644 index 00c0bbeda..000000000 Binary files a/icons-png/error-404.png and /dev/null differ diff --git a/icons-png/exchange-off.png b/icons-png/exchange-off.png deleted file mode 100644 index b21ac6ca7..000000000 Binary files a/icons-png/exchange-off.png and /dev/null differ diff --git a/icons-png/exchange.png b/icons-png/exchange.png deleted file mode 100644 index cfff754cd..000000000 Binary files a/icons-png/exchange.png and /dev/null differ diff --git a/icons-png/exclamation-circle.png b/icons-png/exclamation-circle.png deleted file mode 100644 index 80298c028..000000000 Binary files a/icons-png/exclamation-circle.png and /dev/null differ diff --git a/icons-png/exclamation-mark-off.png b/icons-png/exclamation-mark-off.png deleted file mode 100644 index bfb8f940c..000000000 Binary files a/icons-png/exclamation-mark-off.png and /dev/null differ diff --git a/icons-png/exclamation-mark.png b/icons-png/exclamation-mark.png deleted file mode 100644 index ae807e450..000000000 Binary files a/icons-png/exclamation-mark.png and /dev/null differ diff --git a/icons-png/explicit-off.png b/icons-png/explicit-off.png deleted file mode 100644 index ec09ee507..000000000 Binary files a/icons-png/explicit-off.png and /dev/null differ diff --git a/icons-png/explicit.png b/icons-png/explicit.png deleted file mode 100644 index 7d50689eb..000000000 Binary files a/icons-png/explicit.png and /dev/null differ diff --git a/icons-png/exposure-0.png b/icons-png/exposure-0.png deleted file mode 100644 index 4256a8756..000000000 Binary files a/icons-png/exposure-0.png and /dev/null differ diff --git a/icons-png/exposure-minus-1.png b/icons-png/exposure-minus-1.png deleted file mode 100644 index 060a73fc9..000000000 Binary files a/icons-png/exposure-minus-1.png and /dev/null differ diff --git a/icons-png/exposure-minus-2.png b/icons-png/exposure-minus-2.png deleted file mode 100644 index 2fd509bc9..000000000 Binary files a/icons-png/exposure-minus-2.png and /dev/null differ diff --git a/icons-png/exposure-off.png b/icons-png/exposure-off.png deleted file mode 100644 index e2aa69932..000000000 Binary files a/icons-png/exposure-off.png and /dev/null differ diff --git a/icons-png/exposure-plus-1.png b/icons-png/exposure-plus-1.png deleted file mode 100644 index 6b09fcced..000000000 Binary files a/icons-png/exposure-plus-1.png and /dev/null differ diff --git a/icons-png/exposure-plus-2.png b/icons-png/exposure-plus-2.png deleted file mode 100644 index 54519d453..000000000 Binary files a/icons-png/exposure-plus-2.png and /dev/null differ diff --git a/icons-png/exposure.png b/icons-png/exposure.png deleted file mode 100644 index f86083bdd..000000000 Binary files a/icons-png/exposure.png and /dev/null differ diff --git a/icons-png/external-link-off.png b/icons-png/external-link-off.png deleted file mode 100644 index 8a21767d0..000000000 Binary files a/icons-png/external-link-off.png and /dev/null differ diff --git a/icons-png/external-link.png b/icons-png/external-link.png deleted file mode 100644 index 46b3e697e..000000000 Binary files a/icons-png/external-link.png and /dev/null differ diff --git a/icons-png/eye-check.png b/icons-png/eye-check.png deleted file mode 100644 index 143ecc9df..000000000 Binary files a/icons-png/eye-check.png and /dev/null differ diff --git a/icons-png/eye-off.png b/icons-png/eye-off.png deleted file mode 100644 index 22b66546b..000000000 Binary files a/icons-png/eye-off.png and /dev/null differ diff --git a/icons-png/eye-table.png b/icons-png/eye-table.png deleted file mode 100644 index 71ffc3b14..000000000 Binary files a/icons-png/eye-table.png and /dev/null differ diff --git a/icons-png/eye.png b/icons-png/eye.png deleted file mode 100644 index 316f80c76..000000000 Binary files a/icons-png/eye.png and /dev/null differ diff --git a/icons-png/eyeglass-2.png b/icons-png/eyeglass-2.png deleted file mode 100644 index 88d1559dc..000000000 Binary files a/icons-png/eyeglass-2.png and /dev/null differ diff --git a/icons-png/eyeglass-off.png b/icons-png/eyeglass-off.png deleted file mode 100644 index 0008dfcce..000000000 Binary files a/icons-png/eyeglass-off.png and /dev/null differ diff --git a/icons-png/eyeglass.png b/icons-png/eyeglass.png deleted file mode 100644 index d583aff15..000000000 Binary files a/icons-png/eyeglass.png and /dev/null differ diff --git a/icons-png/face-id-error.png b/icons-png/face-id-error.png deleted file mode 100644 index f9be2c0e5..000000000 Binary files a/icons-png/face-id-error.png and /dev/null differ diff --git a/icons-png/face-id.png b/icons-png/face-id.png deleted file mode 100644 index 7be3db5a8..000000000 Binary files a/icons-png/face-id.png and /dev/null differ diff --git a/icons-png/face-mask-off.png b/icons-png/face-mask-off.png deleted file mode 100644 index dd6f0b031..000000000 Binary files a/icons-png/face-mask-off.png and /dev/null differ diff --git a/icons-png/face-mask.png b/icons-png/face-mask.png deleted file mode 100644 index 8a47c2435..000000000 Binary files a/icons-png/face-mask.png and /dev/null differ diff --git a/icons-png/fall.png b/icons-png/fall.png deleted file mode 100644 index 61a3db095..000000000 Binary files a/icons-png/fall.png and /dev/null differ diff --git a/icons-png/feather-off.png b/icons-png/feather-off.png deleted file mode 100644 index e71f8c856..000000000 Binary files a/icons-png/feather-off.png and /dev/null differ diff --git a/icons-png/feather.png b/icons-png/feather.png deleted file mode 100644 index 9d1f45e8d..000000000 Binary files a/icons-png/feather.png and /dev/null differ diff --git a/icons-png/fence-off.png b/icons-png/fence-off.png deleted file mode 100644 index c9317925a..000000000 Binary files a/icons-png/fence-off.png and /dev/null differ diff --git a/icons-png/fence.png b/icons-png/fence.png deleted file mode 100644 index d0839417e..000000000 Binary files a/icons-png/fence.png and /dev/null differ diff --git a/icons-png/fidget-spinner.png b/icons-png/fidget-spinner.png deleted file mode 100644 index 93a425466..000000000 Binary files a/icons-png/fidget-spinner.png and /dev/null differ diff --git a/icons-png/file-3d.png b/icons-png/file-3d.png deleted file mode 100644 index 005df1e93..000000000 Binary files a/icons-png/file-3d.png and /dev/null differ diff --git a/icons-png/file-alert.png b/icons-png/file-alert.png deleted file mode 100644 index f13e121e3..000000000 Binary files a/icons-png/file-alert.png and /dev/null differ diff --git a/icons-png/file-analytics.png b/icons-png/file-analytics.png deleted file mode 100644 index 12e9cce7d..000000000 Binary files a/icons-png/file-analytics.png and /dev/null differ diff --git a/icons-png/file-arrow-left.png b/icons-png/file-arrow-left.png deleted file mode 100644 index 831a211fa..000000000 Binary files a/icons-png/file-arrow-left.png and /dev/null differ diff --git a/icons-png/file-arrow-right.png b/icons-png/file-arrow-right.png deleted file mode 100644 index 250a09579..000000000 Binary files a/icons-png/file-arrow-right.png and /dev/null differ diff --git a/icons-png/file-barcode.png b/icons-png/file-barcode.png deleted file mode 100644 index 4755bd7db..000000000 Binary files a/icons-png/file-barcode.png and /dev/null differ diff --git a/icons-png/file-broken.png b/icons-png/file-broken.png deleted file mode 100644 index 1d4b83e1d..000000000 Binary files a/icons-png/file-broken.png and /dev/null differ diff --git a/icons-png/file-certificate.png b/icons-png/file-certificate.png deleted file mode 100644 index 788f63f56..000000000 Binary files a/icons-png/file-certificate.png and /dev/null differ diff --git a/icons-png/file-chart.png b/icons-png/file-chart.png deleted file mode 100644 index 806eef72d..000000000 Binary files a/icons-png/file-chart.png and /dev/null differ diff --git a/icons-png/file-check.png b/icons-png/file-check.png deleted file mode 100644 index e8fa653ff..000000000 Binary files a/icons-png/file-check.png and /dev/null differ diff --git a/icons-png/file-code-2.png b/icons-png/file-code-2.png deleted file mode 100644 index cfe081d5f..000000000 Binary files a/icons-png/file-code-2.png and /dev/null differ diff --git a/icons-png/file-code.png b/icons-png/file-code.png deleted file mode 100644 index 394036719..000000000 Binary files a/icons-png/file-code.png and /dev/null differ diff --git a/icons-png/file-database.png b/icons-png/file-database.png deleted file mode 100644 index aa97531f7..000000000 Binary files a/icons-png/file-database.png and /dev/null differ diff --git a/icons-png/file-delta.png b/icons-png/file-delta.png deleted file mode 100644 index 86ee69088..000000000 Binary files a/icons-png/file-delta.png and /dev/null differ diff --git a/icons-png/file-description.png b/icons-png/file-description.png deleted file mode 100644 index 5984c2378..000000000 Binary files a/icons-png/file-description.png and /dev/null differ diff --git a/icons-png/file-diff.png b/icons-png/file-diff.png deleted file mode 100644 index 09cef9761..000000000 Binary files a/icons-png/file-diff.png and /dev/null differ diff --git a/icons-png/file-digit.png b/icons-png/file-digit.png deleted file mode 100644 index 7542175eb..000000000 Binary files a/icons-png/file-digit.png and /dev/null differ diff --git a/icons-png/file-dislike.png b/icons-png/file-dislike.png deleted file mode 100644 index 54f5bf8ea..000000000 Binary files a/icons-png/file-dislike.png and /dev/null differ diff --git a/icons-png/file-dollar.png b/icons-png/file-dollar.png deleted file mode 100644 index 717626584..000000000 Binary files a/icons-png/file-dollar.png and /dev/null differ diff --git a/icons-png/file-dots.png b/icons-png/file-dots.png deleted file mode 100644 index 9f5a20908..000000000 Binary files a/icons-png/file-dots.png and /dev/null differ diff --git a/icons-png/file-download.png b/icons-png/file-download.png deleted file mode 100644 index 528921c98..000000000 Binary files a/icons-png/file-download.png and /dev/null differ diff --git a/icons-png/file-euro.png b/icons-png/file-euro.png deleted file mode 100644 index 9f6c4fd3f..000000000 Binary files a/icons-png/file-euro.png and /dev/null differ diff --git a/icons-png/file-export.png b/icons-png/file-export.png deleted file mode 100644 index aa260e2ba..000000000 Binary files a/icons-png/file-export.png and /dev/null differ diff --git a/icons-png/file-function.png b/icons-png/file-function.png deleted file mode 100644 index ec65320c5..000000000 Binary files a/icons-png/file-function.png and /dev/null differ diff --git a/icons-png/file-horizontal.png b/icons-png/file-horizontal.png deleted file mode 100644 index e9f90e1a7..000000000 Binary files a/icons-png/file-horizontal.png and /dev/null differ diff --git a/icons-png/file-import.png b/icons-png/file-import.png deleted file mode 100644 index 650dcf4e9..000000000 Binary files a/icons-png/file-import.png and /dev/null differ diff --git a/icons-png/file-infinity.png b/icons-png/file-infinity.png deleted file mode 100644 index cb08f11b5..000000000 Binary files a/icons-png/file-infinity.png and /dev/null differ diff --git a/icons-png/file-info.png b/icons-png/file-info.png deleted file mode 100644 index 88a18a484..000000000 Binary files a/icons-png/file-info.png and /dev/null differ diff --git a/icons-png/file-invoice.png b/icons-png/file-invoice.png deleted file mode 100644 index 8058d11c4..000000000 Binary files a/icons-png/file-invoice.png and /dev/null differ diff --git a/icons-png/file-lambda.png b/icons-png/file-lambda.png deleted file mode 100644 index 8fd508ddb..000000000 Binary files a/icons-png/file-lambda.png and /dev/null differ diff --git a/icons-png/file-like.png b/icons-png/file-like.png deleted file mode 100644 index 6281fbc1e..000000000 Binary files a/icons-png/file-like.png and /dev/null differ diff --git a/icons-png/file-minus.png b/icons-png/file-minus.png deleted file mode 100644 index 1adca4ce2..000000000 Binary files a/icons-png/file-minus.png and /dev/null differ diff --git a/icons-png/file-music.png b/icons-png/file-music.png deleted file mode 100644 index 9e13403a5..000000000 Binary files a/icons-png/file-music.png and /dev/null differ diff --git a/icons-png/file-off.png b/icons-png/file-off.png deleted file mode 100644 index 7b8d9e4f8..000000000 Binary files a/icons-png/file-off.png and /dev/null differ diff --git a/icons-png/file-orientation.png b/icons-png/file-orientation.png deleted file mode 100644 index 45d2a1544..000000000 Binary files a/icons-png/file-orientation.png and /dev/null differ diff --git a/icons-png/file-pencil.png b/icons-png/file-pencil.png deleted file mode 100644 index d57b7c3b4..000000000 Binary files a/icons-png/file-pencil.png and /dev/null differ diff --git a/icons-png/file-percent.png b/icons-png/file-percent.png deleted file mode 100644 index fc9ab5727..000000000 Binary files a/icons-png/file-percent.png and /dev/null differ diff --git a/icons-png/file-phone.png b/icons-png/file-phone.png deleted file mode 100644 index e22941ae1..000000000 Binary files a/icons-png/file-phone.png and /dev/null differ diff --git a/icons-png/file-plus.png b/icons-png/file-plus.png deleted file mode 100644 index 703f8843b..000000000 Binary files a/icons-png/file-plus.png and /dev/null differ diff --git a/icons-png/file-power.png b/icons-png/file-power.png deleted file mode 100644 index c67884525..000000000 Binary files a/icons-png/file-power.png and /dev/null differ diff --git a/icons-png/file-report.png b/icons-png/file-report.png deleted file mode 100644 index 61491d2ac..000000000 Binary files a/icons-png/file-report.png and /dev/null differ diff --git a/icons-png/file-rss.png b/icons-png/file-rss.png deleted file mode 100644 index 7924c6108..000000000 Binary files a/icons-png/file-rss.png and /dev/null differ diff --git a/icons-png/file-scissors.png b/icons-png/file-scissors.png deleted file mode 100644 index eef4caf99..000000000 Binary files a/icons-png/file-scissors.png and /dev/null differ diff --git a/icons-png/file-search.png b/icons-png/file-search.png deleted file mode 100644 index a1ea9291a..000000000 Binary files a/icons-png/file-search.png and /dev/null differ diff --git a/icons-png/file-settings.png b/icons-png/file-settings.png deleted file mode 100644 index 653c5d62f..000000000 Binary files a/icons-png/file-settings.png and /dev/null differ diff --git a/icons-png/file-shredder.png b/icons-png/file-shredder.png deleted file mode 100644 index d40e6b63c..000000000 Binary files a/icons-png/file-shredder.png and /dev/null differ diff --git a/icons-png/file-signal.png b/icons-png/file-signal.png deleted file mode 100644 index 6a0c3b32c..000000000 Binary files a/icons-png/file-signal.png and /dev/null differ diff --git a/icons-png/file-spreadsheet.png b/icons-png/file-spreadsheet.png deleted file mode 100644 index 506230775..000000000 Binary files a/icons-png/file-spreadsheet.png and /dev/null differ diff --git a/icons-png/file-stack.png b/icons-png/file-stack.png deleted file mode 100644 index c4dc4bba1..000000000 Binary files a/icons-png/file-stack.png and /dev/null differ diff --git a/icons-png/file-star.png b/icons-png/file-star.png deleted file mode 100644 index 776de6133..000000000 Binary files a/icons-png/file-star.png and /dev/null differ diff --git a/icons-png/file-symlink.png b/icons-png/file-symlink.png deleted file mode 100644 index 5dd47e926..000000000 Binary files a/icons-png/file-symlink.png and /dev/null differ diff --git a/icons-png/file-text.png b/icons-png/file-text.png deleted file mode 100644 index f1e71c907..000000000 Binary files a/icons-png/file-text.png and /dev/null differ diff --git a/icons-png/file-time.png b/icons-png/file-time.png deleted file mode 100644 index 84fdfd3ee..000000000 Binary files a/icons-png/file-time.png and /dev/null differ diff --git a/icons-png/file-typography.png b/icons-png/file-typography.png deleted file mode 100644 index 50a528790..000000000 Binary files a/icons-png/file-typography.png and /dev/null differ diff --git a/icons-png/file-unknown.png b/icons-png/file-unknown.png deleted file mode 100644 index d35fbbb4f..000000000 Binary files a/icons-png/file-unknown.png and /dev/null differ diff --git a/icons-png/file-upload.png b/icons-png/file-upload.png deleted file mode 100644 index cd29acbef..000000000 Binary files a/icons-png/file-upload.png and /dev/null differ diff --git a/icons-png/file-vector.png b/icons-png/file-vector.png deleted file mode 100644 index 3413e7511..000000000 Binary files a/icons-png/file-vector.png and /dev/null differ diff --git a/icons-png/file-x.png b/icons-png/file-x.png deleted file mode 100644 index e9d2e57e0..000000000 Binary files a/icons-png/file-x.png and /dev/null differ diff --git a/icons-png/file-zip.png b/icons-png/file-zip.png deleted file mode 100644 index e6c679772..000000000 Binary files a/icons-png/file-zip.png and /dev/null differ diff --git a/icons-png/file.png b/icons-png/file.png deleted file mode 100644 index 2a5fe0dc5..000000000 Binary files a/icons-png/file.png and /dev/null differ diff --git a/icons-png/files-off.png b/icons-png/files-off.png deleted file mode 100644 index e96a9b8ae..000000000 Binary files a/icons-png/files-off.png and /dev/null differ diff --git a/icons-png/files.png b/icons-png/files.png deleted file mode 100644 index 2ea883a5e..000000000 Binary files a/icons-png/files.png and /dev/null differ diff --git a/icons-png/filter-off.png b/icons-png/filter-off.png deleted file mode 100644 index eb1a90414..000000000 Binary files a/icons-png/filter-off.png and /dev/null differ diff --git a/icons-png/filter.png b/icons-png/filter.png deleted file mode 100644 index 10b9ece66..000000000 Binary files a/icons-png/filter.png and /dev/null differ diff --git a/icons-png/fingerprint-off.png b/icons-png/fingerprint-off.png deleted file mode 100644 index c8103745b..000000000 Binary files a/icons-png/fingerprint-off.png and /dev/null differ diff --git a/icons-png/fingerprint.png b/icons-png/fingerprint.png deleted file mode 100644 index 9323f633d..000000000 Binary files a/icons-png/fingerprint.png and /dev/null differ diff --git a/icons-png/fire-hydrant-off.png b/icons-png/fire-hydrant-off.png deleted file mode 100644 index c99d386fc..000000000 Binary files a/icons-png/fire-hydrant-off.png and /dev/null differ diff --git a/icons-png/fire-hydrant.png b/icons-png/fire-hydrant.png deleted file mode 100644 index 2b61c0072..000000000 Binary files a/icons-png/fire-hydrant.png and /dev/null differ diff --git a/icons-png/firetruck.png b/icons-png/firetruck.png deleted file mode 100644 index 2235c9e68..000000000 Binary files a/icons-png/firetruck.png and /dev/null differ diff --git a/icons-png/first-aid-kit-off.png b/icons-png/first-aid-kit-off.png deleted file mode 100644 index c8643be67..000000000 Binary files a/icons-png/first-aid-kit-off.png and /dev/null differ diff --git a/icons-png/first-aid-kit.png b/icons-png/first-aid-kit.png deleted file mode 100644 index 93fecfcec..000000000 Binary files a/icons-png/first-aid-kit.png and /dev/null differ diff --git a/icons-png/fish-bone.png b/icons-png/fish-bone.png deleted file mode 100644 index b4bd8a79c..000000000 Binary files a/icons-png/fish-bone.png and /dev/null differ diff --git a/icons-png/fish-christianity.png b/icons-png/fish-christianity.png deleted file mode 100644 index c1bb61f29..000000000 Binary files a/icons-png/fish-christianity.png and /dev/null differ diff --git a/icons-png/fish-hook-off.png b/icons-png/fish-hook-off.png deleted file mode 100644 index 265393c33..000000000 Binary files a/icons-png/fish-hook-off.png and /dev/null differ diff --git a/icons-png/fish-hook.png b/icons-png/fish-hook.png deleted file mode 100644 index 4000bca07..000000000 Binary files a/icons-png/fish-hook.png and /dev/null differ diff --git a/icons-png/fish-off.png b/icons-png/fish-off.png deleted file mode 100644 index 59e9e1dab..000000000 Binary files a/icons-png/fish-off.png and /dev/null differ diff --git a/icons-png/fish.png b/icons-png/fish.png deleted file mode 100644 index adf1f6e00..000000000 Binary files a/icons-png/fish.png and /dev/null differ diff --git a/icons-png/flag-2-off.png b/icons-png/flag-2-off.png deleted file mode 100644 index 57eb301c9..000000000 Binary files a/icons-png/flag-2-off.png and /dev/null differ diff --git a/icons-png/flag-2.png b/icons-png/flag-2.png deleted file mode 100644 index 398d8a009..000000000 Binary files a/icons-png/flag-2.png and /dev/null differ diff --git a/icons-png/flag-3.png b/icons-png/flag-3.png deleted file mode 100644 index 47da75486..000000000 Binary files a/icons-png/flag-3.png and /dev/null differ diff --git a/icons-png/flag-off.png b/icons-png/flag-off.png deleted file mode 100644 index 0a82ef168..000000000 Binary files a/icons-png/flag-off.png and /dev/null differ diff --git a/icons-png/flag.png b/icons-png/flag.png deleted file mode 100644 index 385925416..000000000 Binary files a/icons-png/flag.png and /dev/null differ diff --git a/icons-png/flame-off.png b/icons-png/flame-off.png deleted file mode 100644 index 52e99f91e..000000000 Binary files a/icons-png/flame-off.png and /dev/null differ diff --git a/icons-png/flame.png b/icons-png/flame.png deleted file mode 100644 index a48e1e455..000000000 Binary files a/icons-png/flame.png and /dev/null differ diff --git a/icons-png/flare.png b/icons-png/flare.png deleted file mode 100644 index f42482bb2..000000000 Binary files a/icons-png/flare.png and /dev/null differ diff --git a/icons-png/flask-2-off.png b/icons-png/flask-2-off.png deleted file mode 100644 index 22d59d432..000000000 Binary files a/icons-png/flask-2-off.png and /dev/null differ diff --git a/icons-png/flask-2.png b/icons-png/flask-2.png deleted file mode 100644 index 389a5980a..000000000 Binary files a/icons-png/flask-2.png and /dev/null differ diff --git a/icons-png/flask-off.png b/icons-png/flask-off.png deleted file mode 100644 index cec34a67c..000000000 Binary files a/icons-png/flask-off.png and /dev/null differ diff --git a/icons-png/flask.png b/icons-png/flask.png deleted file mode 100644 index b839990ed..000000000 Binary files a/icons-png/flask.png and /dev/null differ diff --git a/icons-png/flip-flops.png b/icons-png/flip-flops.png deleted file mode 100644 index 817a0f555..000000000 Binary files a/icons-png/flip-flops.png and /dev/null differ diff --git a/icons-png/flip-horizontal.png b/icons-png/flip-horizontal.png deleted file mode 100644 index 1a87c167d..000000000 Binary files a/icons-png/flip-horizontal.png and /dev/null differ diff --git a/icons-png/flip-vertical.png b/icons-png/flip-vertical.png deleted file mode 100644 index 850825b20..000000000 Binary files a/icons-png/flip-vertical.png and /dev/null differ diff --git a/icons-png/float-center.png b/icons-png/float-center.png deleted file mode 100644 index e3d17b9b5..000000000 Binary files a/icons-png/float-center.png and /dev/null differ diff --git a/icons-png/float-left.png b/icons-png/float-left.png deleted file mode 100644 index d4fcea4a2..000000000 Binary files a/icons-png/float-left.png and /dev/null differ diff --git a/icons-png/float-none.png b/icons-png/float-none.png deleted file mode 100644 index 0471eaee9..000000000 Binary files a/icons-png/float-none.png and /dev/null differ diff --git a/icons-png/float-right.png b/icons-png/float-right.png deleted file mode 100644 index fc28bb09a..000000000 Binary files a/icons-png/float-right.png and /dev/null differ diff --git a/icons-png/flower-off.png b/icons-png/flower-off.png deleted file mode 100644 index dee9a0f12..000000000 Binary files a/icons-png/flower-off.png and /dev/null differ diff --git a/icons-png/flower.png b/icons-png/flower.png deleted file mode 100644 index 7fdcb46ae..000000000 Binary files a/icons-png/flower.png and /dev/null differ diff --git a/icons-png/focus-2.png b/icons-png/focus-2.png deleted file mode 100644 index fb1035e4e..000000000 Binary files a/icons-png/focus-2.png and /dev/null differ diff --git a/icons-png/focus-centered.png b/icons-png/focus-centered.png deleted file mode 100644 index 34963f8db..000000000 Binary files a/icons-png/focus-centered.png and /dev/null differ diff --git a/icons-png/focus.png b/icons-png/focus.png deleted file mode 100644 index 334dac43f..000000000 Binary files a/icons-png/focus.png and /dev/null differ diff --git a/icons-png/fold-down.png b/icons-png/fold-down.png deleted file mode 100644 index f323edfff..000000000 Binary files a/icons-png/fold-down.png and /dev/null differ diff --git a/icons-png/fold-up.png b/icons-png/fold-up.png deleted file mode 100644 index 2b3d4e96f..000000000 Binary files a/icons-png/fold-up.png and /dev/null differ diff --git a/icons-png/fold.png b/icons-png/fold.png deleted file mode 100644 index 228340ea0..000000000 Binary files a/icons-png/fold.png and /dev/null differ diff --git a/icons-png/folder-minus.png b/icons-png/folder-minus.png deleted file mode 100644 index 2f680b3da..000000000 Binary files a/icons-png/folder-minus.png and /dev/null differ diff --git a/icons-png/folder-off.png b/icons-png/folder-off.png deleted file mode 100644 index 4e2c689e2..000000000 Binary files a/icons-png/folder-off.png and /dev/null differ diff --git a/icons-png/folder-plus.png b/icons-png/folder-plus.png deleted file mode 100644 index 26a5ed789..000000000 Binary files a/icons-png/folder-plus.png and /dev/null differ diff --git a/icons-png/folder-x.png b/icons-png/folder-x.png deleted file mode 100644 index a7aae49c4..000000000 Binary files a/icons-png/folder-x.png and /dev/null differ diff --git a/icons-png/folder.png b/icons-png/folder.png deleted file mode 100644 index c5cb1e53f..000000000 Binary files a/icons-png/folder.png and /dev/null differ diff --git a/icons-png/folders-off.png b/icons-png/folders-off.png deleted file mode 100644 index 991d7416d..000000000 Binary files a/icons-png/folders-off.png and /dev/null differ diff --git a/icons-png/folders.png b/icons-png/folders.png deleted file mode 100644 index 2bfefb2fd..000000000 Binary files a/icons-png/folders.png and /dev/null differ diff --git a/icons-png/forbid-2.png b/icons-png/forbid-2.png deleted file mode 100644 index fc93cb22d..000000000 Binary files a/icons-png/forbid-2.png and /dev/null differ diff --git a/icons-png/forbid.png b/icons-png/forbid.png deleted file mode 100644 index 6d075e27b..000000000 Binary files a/icons-png/forbid.png and /dev/null differ diff --git a/icons-png/forklift.png b/icons-png/forklift.png deleted file mode 100644 index 691f28704..000000000 Binary files a/icons-png/forklift.png and /dev/null differ diff --git a/icons-png/forms.png b/icons-png/forms.png deleted file mode 100644 index b7b43073f..000000000 Binary files a/icons-png/forms.png and /dev/null differ diff --git a/icons-png/fountain-off.png b/icons-png/fountain-off.png deleted file mode 100644 index 906a1e696..000000000 Binary files a/icons-png/fountain-off.png and /dev/null differ diff --git a/icons-png/fountain.png b/icons-png/fountain.png deleted file mode 100644 index 29d9e1bcc..000000000 Binary files a/icons-png/fountain.png and /dev/null differ diff --git a/icons-png/frame-off.png b/icons-png/frame-off.png deleted file mode 100644 index 79da39777..000000000 Binary files a/icons-png/frame-off.png and /dev/null differ diff --git a/icons-png/frame.png b/icons-png/frame.png deleted file mode 100644 index d69088e99..000000000 Binary files a/icons-png/frame.png and /dev/null differ diff --git a/icons-png/free-rights.png b/icons-png/free-rights.png deleted file mode 100644 index 636ef2dad..000000000 Binary files a/icons-png/free-rights.png and /dev/null differ diff --git a/icons-png/fridge-off.png b/icons-png/fridge-off.png deleted file mode 100644 index fa16c4125..000000000 Binary files a/icons-png/fridge-off.png and /dev/null differ diff --git a/icons-png/fridge.png b/icons-png/fridge.png deleted file mode 100644 index bd08e564b..000000000 Binary files a/icons-png/fridge.png and /dev/null differ diff --git a/icons-png/friends-off.png b/icons-png/friends-off.png deleted file mode 100644 index e91527063..000000000 Binary files a/icons-png/friends-off.png and /dev/null differ diff --git a/icons-png/friends.png b/icons-png/friends.png deleted file mode 100644 index 52b68f999..000000000 Binary files a/icons-png/friends.png and /dev/null differ diff --git a/icons-png/function-off.png b/icons-png/function-off.png deleted file mode 100644 index 02b11f40e..000000000 Binary files a/icons-png/function-off.png and /dev/null differ diff --git a/icons-png/function.png b/icons-png/function.png deleted file mode 100644 index b3a4b9d6c..000000000 Binary files a/icons-png/function.png and /dev/null differ diff --git a/icons-png/garden-cart-off.png b/icons-png/garden-cart-off.png deleted file mode 100644 index d2e4797da..000000000 Binary files a/icons-png/garden-cart-off.png and /dev/null differ diff --git a/icons-png/garden-cart.png b/icons-png/garden-cart.png deleted file mode 100644 index d89ae1a39..000000000 Binary files a/icons-png/garden-cart.png and /dev/null differ diff --git a/icons-png/gas-station-off.png b/icons-png/gas-station-off.png deleted file mode 100644 index 3593b836a..000000000 Binary files a/icons-png/gas-station-off.png and /dev/null differ diff --git a/icons-png/gas-station.png b/icons-png/gas-station.png deleted file mode 100644 index 9a99f6149..000000000 Binary files a/icons-png/gas-station.png and /dev/null differ diff --git a/icons-png/gauge-off.png b/icons-png/gauge-off.png deleted file mode 100644 index 071afd9cb..000000000 Binary files a/icons-png/gauge-off.png and /dev/null differ diff --git a/icons-png/gauge.png b/icons-png/gauge.png deleted file mode 100644 index 6a2cfa3a2..000000000 Binary files a/icons-png/gauge.png and /dev/null differ diff --git a/icons-png/gavel.png b/icons-png/gavel.png deleted file mode 100644 index 538616520..000000000 Binary files a/icons-png/gavel.png and /dev/null differ diff --git a/icons-png/gender-agender.png b/icons-png/gender-agender.png deleted file mode 100644 index 0fcb27733..000000000 Binary files a/icons-png/gender-agender.png and /dev/null differ diff --git a/icons-png/gender-androgyne.png b/icons-png/gender-androgyne.png deleted file mode 100644 index b3fab15be..000000000 Binary files a/icons-png/gender-androgyne.png and /dev/null differ diff --git a/icons-png/gender-bigender.png b/icons-png/gender-bigender.png deleted file mode 100644 index 328c70d51..000000000 Binary files a/icons-png/gender-bigender.png and /dev/null differ diff --git a/icons-png/gender-demiboy.png b/icons-png/gender-demiboy.png deleted file mode 100644 index f10b79c1e..000000000 Binary files a/icons-png/gender-demiboy.png and /dev/null differ diff --git a/icons-png/gender-demigirl.png b/icons-png/gender-demigirl.png deleted file mode 100644 index 59c536c94..000000000 Binary files a/icons-png/gender-demigirl.png and /dev/null differ diff --git a/icons-png/gender-epicene.png b/icons-png/gender-epicene.png deleted file mode 100644 index 40eb50848..000000000 Binary files a/icons-png/gender-epicene.png and /dev/null differ diff --git a/icons-png/gender-female.png b/icons-png/gender-female.png deleted file mode 100644 index 194fc34a5..000000000 Binary files a/icons-png/gender-female.png and /dev/null differ diff --git a/icons-png/gender-femme.png b/icons-png/gender-femme.png deleted file mode 100644 index 54e13a74a..000000000 Binary files a/icons-png/gender-femme.png and /dev/null differ diff --git a/icons-png/gender-genderfluid.png b/icons-png/gender-genderfluid.png deleted file mode 100644 index 8df2631d5..000000000 Binary files a/icons-png/gender-genderfluid.png and /dev/null differ diff --git a/icons-png/gender-genderless.png b/icons-png/gender-genderless.png deleted file mode 100644 index cca501929..000000000 Binary files a/icons-png/gender-genderless.png and /dev/null differ diff --git a/icons-png/gender-genderqueer.png b/icons-png/gender-genderqueer.png deleted file mode 100644 index bd6d3310f..000000000 Binary files a/icons-png/gender-genderqueer.png and /dev/null differ diff --git a/icons-png/gender-hermaphrodite.png b/icons-png/gender-hermaphrodite.png deleted file mode 100644 index 7e032d1c2..000000000 Binary files a/icons-png/gender-hermaphrodite.png and /dev/null differ diff --git a/icons-png/gender-intergender.png b/icons-png/gender-intergender.png deleted file mode 100644 index 8a0312c72..000000000 Binary files a/icons-png/gender-intergender.png and /dev/null differ diff --git a/icons-png/gender-male.png b/icons-png/gender-male.png deleted file mode 100644 index a76fe3c75..000000000 Binary files a/icons-png/gender-male.png and /dev/null differ diff --git a/icons-png/gender-neutrois.png b/icons-png/gender-neutrois.png deleted file mode 100644 index 689c510d2..000000000 Binary files a/icons-png/gender-neutrois.png and /dev/null differ diff --git a/icons-png/gender-third.png b/icons-png/gender-third.png deleted file mode 100644 index 35b9f1956..000000000 Binary files a/icons-png/gender-third.png and /dev/null differ diff --git a/icons-png/gender-transgender.png b/icons-png/gender-transgender.png deleted file mode 100644 index 86ad6f644..000000000 Binary files a/icons-png/gender-transgender.png and /dev/null differ diff --git a/icons-png/gender-trasvesti.png b/icons-png/gender-trasvesti.png deleted file mode 100644 index de1c38685..000000000 Binary files a/icons-png/gender-trasvesti.png and /dev/null differ diff --git a/icons-png/geometry.png b/icons-png/geometry.png deleted file mode 100644 index 9deb53810..000000000 Binary files a/icons-png/geometry.png and /dev/null differ diff --git a/icons-png/ghost-2.png b/icons-png/ghost-2.png deleted file mode 100644 index 6c72dd1c0..000000000 Binary files a/icons-png/ghost-2.png and /dev/null differ diff --git a/icons-png/ghost-off.png b/icons-png/ghost-off.png deleted file mode 100644 index 100cf80e6..000000000 Binary files a/icons-png/ghost-off.png and /dev/null differ diff --git a/icons-png/ghost.png b/icons-png/ghost.png deleted file mode 100644 index f57a6f297..000000000 Binary files a/icons-png/ghost.png and /dev/null differ diff --git a/icons-png/gif.png b/icons-png/gif.png deleted file mode 100644 index 6aa6a8ab2..000000000 Binary files a/icons-png/gif.png and /dev/null differ diff --git a/icons-png/gift-card.png b/icons-png/gift-card.png deleted file mode 100644 index c68a5d36d..000000000 Binary files a/icons-png/gift-card.png and /dev/null differ diff --git a/icons-png/gift-off.png b/icons-png/gift-off.png deleted file mode 100644 index 1ea16edbd..000000000 Binary files a/icons-png/gift-off.png and /dev/null differ diff --git a/icons-png/gift.png b/icons-png/gift.png deleted file mode 100644 index 62eee463c..000000000 Binary files a/icons-png/gift.png and /dev/null differ diff --git a/icons-png/git-branch-deleted.png b/icons-png/git-branch-deleted.png deleted file mode 100644 index 56955f285..000000000 Binary files a/icons-png/git-branch-deleted.png and /dev/null differ diff --git a/icons-png/git-branch.png b/icons-png/git-branch.png deleted file mode 100644 index 736c2dedf..000000000 Binary files a/icons-png/git-branch.png and /dev/null differ diff --git a/icons-png/git-cherry-pick.png b/icons-png/git-cherry-pick.png deleted file mode 100644 index 76fa487ce..000000000 Binary files a/icons-png/git-cherry-pick.png and /dev/null differ diff --git a/icons-png/git-commit.png b/icons-png/git-commit.png deleted file mode 100644 index 629ba2649..000000000 Binary files a/icons-png/git-commit.png and /dev/null differ diff --git a/icons-png/git-compare.png b/icons-png/git-compare.png deleted file mode 100644 index 6725c31f8..000000000 Binary files a/icons-png/git-compare.png and /dev/null differ diff --git a/icons-png/git-fork.png b/icons-png/git-fork.png deleted file mode 100644 index 8e8bb903c..000000000 Binary files a/icons-png/git-fork.png and /dev/null differ diff --git a/icons-png/git-merge.png b/icons-png/git-merge.png deleted file mode 100644 index d6750975b..000000000 Binary files a/icons-png/git-merge.png and /dev/null differ diff --git a/icons-png/git-pull-request-closed.png b/icons-png/git-pull-request-closed.png deleted file mode 100644 index 2645b6005..000000000 Binary files a/icons-png/git-pull-request-closed.png and /dev/null differ diff --git a/icons-png/git-pull-request-draft.png b/icons-png/git-pull-request-draft.png deleted file mode 100644 index 5605d6949..000000000 Binary files a/icons-png/git-pull-request-draft.png and /dev/null differ diff --git a/icons-png/git-pull-request.png b/icons-png/git-pull-request.png deleted file mode 100644 index d36b01926..000000000 Binary files a/icons-png/git-pull-request.png and /dev/null differ diff --git a/icons-png/gizmo.png b/icons-png/gizmo.png deleted file mode 100644 index 135550453..000000000 Binary files a/icons-png/gizmo.png and /dev/null differ diff --git a/icons-png/glass-full.png b/icons-png/glass-full.png deleted file mode 100644 index bff522b31..000000000 Binary files a/icons-png/glass-full.png and /dev/null differ diff --git a/icons-png/glass-off.png b/icons-png/glass-off.png deleted file mode 100644 index ff7906cdc..000000000 Binary files a/icons-png/glass-off.png and /dev/null differ diff --git a/icons-png/glass.png b/icons-png/glass.png deleted file mode 100644 index a9a9e7232..000000000 Binary files a/icons-png/glass.png and /dev/null differ diff --git a/icons-png/globe-off.png b/icons-png/globe-off.png deleted file mode 100644 index 2065f7e59..000000000 Binary files a/icons-png/globe-off.png and /dev/null differ diff --git a/icons-png/globe.png b/icons-png/globe.png deleted file mode 100644 index e0af15804..000000000 Binary files a/icons-png/globe.png and /dev/null differ diff --git a/icons-png/go-game.png b/icons-png/go-game.png deleted file mode 100644 index 1389cd88d..000000000 Binary files a/icons-png/go-game.png and /dev/null differ diff --git a/icons-png/golf-off.png b/icons-png/golf-off.png deleted file mode 100644 index 6701bbdc9..000000000 Binary files a/icons-png/golf-off.png and /dev/null differ diff --git a/icons-png/golf.png b/icons-png/golf.png deleted file mode 100644 index 24f29e523..000000000 Binary files a/icons-png/golf.png and /dev/null differ diff --git a/icons-png/gps.png b/icons-png/gps.png deleted file mode 100644 index 1ff9687ae..000000000 Binary files a/icons-png/gps.png and /dev/null differ diff --git a/icons-png/gradienter.png b/icons-png/gradienter.png deleted file mode 100644 index 244d570c4..000000000 Binary files a/icons-png/gradienter.png and /dev/null differ diff --git a/icons-png/grain.png b/icons-png/grain.png deleted file mode 100644 index 540975736..000000000 Binary files a/icons-png/grain.png and /dev/null differ diff --git a/icons-png/graph-off.png b/icons-png/graph-off.png deleted file mode 100644 index bca8665c9..000000000 Binary files a/icons-png/graph-off.png and /dev/null differ diff --git a/icons-png/graph.png b/icons-png/graph.png deleted file mode 100644 index dd25c5691..000000000 Binary files a/icons-png/graph.png and /dev/null differ diff --git a/icons-png/grave-2.png b/icons-png/grave-2.png deleted file mode 100644 index 4657a7c65..000000000 Binary files a/icons-png/grave-2.png and /dev/null differ diff --git a/icons-png/grave.png b/icons-png/grave.png deleted file mode 100644 index 04ac0823b..000000000 Binary files a/icons-png/grave.png and /dev/null differ diff --git a/icons-png/grid-dots.png b/icons-png/grid-dots.png deleted file mode 100644 index db97423c5..000000000 Binary files a/icons-png/grid-dots.png and /dev/null differ diff --git a/icons-png/grid-pattern.png b/icons-png/grid-pattern.png deleted file mode 100644 index 69e27e9aa..000000000 Binary files a/icons-png/grid-pattern.png and /dev/null differ diff --git a/icons-png/grill-fork.png b/icons-png/grill-fork.png deleted file mode 100644 index ac46b8369..000000000 Binary files a/icons-png/grill-fork.png and /dev/null differ diff --git a/icons-png/grill-off.png b/icons-png/grill-off.png deleted file mode 100644 index 7c9c2b8de..000000000 Binary files a/icons-png/grill-off.png and /dev/null differ diff --git a/icons-png/grill-spatula.png b/icons-png/grill-spatula.png deleted file mode 100644 index b03dd5aa6..000000000 Binary files a/icons-png/grill-spatula.png and /dev/null differ diff --git a/icons-png/grill.png b/icons-png/grill.png deleted file mode 100644 index 25141540f..000000000 Binary files a/icons-png/grill.png and /dev/null differ diff --git a/icons-png/grip-horizontal.png b/icons-png/grip-horizontal.png deleted file mode 100644 index a2432341e..000000000 Binary files a/icons-png/grip-horizontal.png and /dev/null differ diff --git a/icons-png/grip-vertical.png b/icons-png/grip-vertical.png deleted file mode 100644 index ca52ee1e4..000000000 Binary files a/icons-png/grip-vertical.png and /dev/null differ diff --git a/icons-png/growth.png b/icons-png/growth.png deleted file mode 100644 index 5c53e13a3..000000000 Binary files a/icons-png/growth.png and /dev/null differ diff --git a/icons-png/guitar-pick.png b/icons-png/guitar-pick.png deleted file mode 100644 index 154ac8cbd..000000000 Binary files a/icons-png/guitar-pick.png and /dev/null differ diff --git a/icons-png/h-1.png b/icons-png/h-1.png deleted file mode 100644 index 423f451de..000000000 Binary files a/icons-png/h-1.png and /dev/null differ diff --git a/icons-png/h-2.png b/icons-png/h-2.png deleted file mode 100644 index 61fef743a..000000000 Binary files a/icons-png/h-2.png and /dev/null differ diff --git a/icons-png/h-3.png b/icons-png/h-3.png deleted file mode 100644 index afcee5fd2..000000000 Binary files a/icons-png/h-3.png and /dev/null differ diff --git a/icons-png/h-4.png b/icons-png/h-4.png deleted file mode 100644 index cdb633bea..000000000 Binary files a/icons-png/h-4.png and /dev/null differ diff --git a/icons-png/h-5.png b/icons-png/h-5.png deleted file mode 100644 index 022281ec1..000000000 Binary files a/icons-png/h-5.png and /dev/null differ diff --git a/icons-png/h-6.png b/icons-png/h-6.png deleted file mode 100644 index d1736335e..000000000 Binary files a/icons-png/h-6.png and /dev/null differ diff --git a/icons-png/hammer-off.png b/icons-png/hammer-off.png deleted file mode 100644 index 9566d212f..000000000 Binary files a/icons-png/hammer-off.png and /dev/null differ diff --git a/icons-png/hammer.png b/icons-png/hammer.png deleted file mode 100644 index 675f35302..000000000 Binary files a/icons-png/hammer.png and /dev/null differ diff --git a/icons-png/hand-click.png b/icons-png/hand-click.png deleted file mode 100644 index a566fc5d6..000000000 Binary files a/icons-png/hand-click.png and /dev/null differ diff --git a/icons-png/hand-finger-off.png b/icons-png/hand-finger-off.png deleted file mode 100644 index 9bbfd2965..000000000 Binary files a/icons-png/hand-finger-off.png and /dev/null differ diff --git a/icons-png/hand-finger.png b/icons-png/hand-finger.png deleted file mode 100644 index 5330898c6..000000000 Binary files a/icons-png/hand-finger.png and /dev/null differ diff --git a/icons-png/hand-grab.png b/icons-png/hand-grab.png deleted file mode 100644 index 1b7300437..000000000 Binary files a/icons-png/hand-grab.png and /dev/null differ diff --git a/icons-png/hand-little-finger.png b/icons-png/hand-little-finger.png deleted file mode 100644 index f7d04dfca..000000000 Binary files a/icons-png/hand-little-finger.png and /dev/null differ diff --git a/icons-png/hand-middle-finger.png b/icons-png/hand-middle-finger.png deleted file mode 100644 index 2fd1071f6..000000000 Binary files a/icons-png/hand-middle-finger.png and /dev/null differ diff --git a/icons-png/hand-move.png b/icons-png/hand-move.png deleted file mode 100644 index 2fce18adb..000000000 Binary files a/icons-png/hand-move.png and /dev/null differ diff --git a/icons-png/hand-off.png b/icons-png/hand-off.png deleted file mode 100644 index 514401fb9..000000000 Binary files a/icons-png/hand-off.png and /dev/null differ diff --git a/icons-png/hand-ring-finger.png b/icons-png/hand-ring-finger.png deleted file mode 100644 index 86b337c02..000000000 Binary files a/icons-png/hand-ring-finger.png and /dev/null differ diff --git a/icons-png/hand-rock.png b/icons-png/hand-rock.png deleted file mode 100644 index 28e5a22a7..000000000 Binary files a/icons-png/hand-rock.png and /dev/null differ diff --git a/icons-png/hand-sanitizer.png b/icons-png/hand-sanitizer.png deleted file mode 100644 index 7e9b41bd5..000000000 Binary files a/icons-png/hand-sanitizer.png and /dev/null differ diff --git a/icons-png/hand-stop.png b/icons-png/hand-stop.png deleted file mode 100644 index a64153fb5..000000000 Binary files a/icons-png/hand-stop.png and /dev/null differ diff --git a/icons-png/hand-three-fingers.png b/icons-png/hand-three-fingers.png deleted file mode 100644 index a7d217ba6..000000000 Binary files a/icons-png/hand-three-fingers.png and /dev/null differ diff --git a/icons-png/hand-two-fingers.png b/icons-png/hand-two-fingers.png deleted file mode 100644 index c388cfbeb..000000000 Binary files a/icons-png/hand-two-fingers.png and /dev/null differ diff --git a/icons-png/hanger-2.png b/icons-png/hanger-2.png deleted file mode 100644 index f6d3d1eea..000000000 Binary files a/icons-png/hanger-2.png and /dev/null differ diff --git a/icons-png/hanger-off.png b/icons-png/hanger-off.png deleted file mode 100644 index 724c39f1b..000000000 Binary files a/icons-png/hanger-off.png and /dev/null differ diff --git a/icons-png/hanger.png b/icons-png/hanger.png deleted file mode 100644 index b418e5659..000000000 Binary files a/icons-png/hanger.png and /dev/null differ diff --git a/icons-png/hash.png b/icons-png/hash.png deleted file mode 100644 index e56bcd743..000000000 Binary files a/icons-png/hash.png and /dev/null differ diff --git a/icons-png/haze.png b/icons-png/haze.png deleted file mode 100644 index 5602cfa4a..000000000 Binary files a/icons-png/haze.png and /dev/null differ diff --git a/icons-png/heading-off.png b/icons-png/heading-off.png deleted file mode 100644 index 393dc2c90..000000000 Binary files a/icons-png/heading-off.png and /dev/null differ diff --git a/icons-png/heading.png b/icons-png/heading.png deleted file mode 100644 index 2e17c383d..000000000 Binary files a/icons-png/heading.png and /dev/null differ diff --git a/icons-png/headphones-off.png b/icons-png/headphones-off.png deleted file mode 100644 index 96bff4bd5..000000000 Binary files a/icons-png/headphones-off.png and /dev/null differ diff --git a/icons-png/headphones.png b/icons-png/headphones.png deleted file mode 100644 index e04b32851..000000000 Binary files a/icons-png/headphones.png and /dev/null differ diff --git a/icons-png/headset-off.png b/icons-png/headset-off.png deleted file mode 100644 index c8ce3d650..000000000 Binary files a/icons-png/headset-off.png and /dev/null differ diff --git a/icons-png/headset.png b/icons-png/headset.png deleted file mode 100644 index cdf0bc61f..000000000 Binary files a/icons-png/headset.png and /dev/null differ diff --git a/icons-png/health-recognition.png b/icons-png/health-recognition.png deleted file mode 100644 index c21c15523..000000000 Binary files a/icons-png/health-recognition.png and /dev/null differ diff --git a/icons-png/heart-broken.png b/icons-png/heart-broken.png deleted file mode 100644 index eb56f7837..000000000 Binary files a/icons-png/heart-broken.png and /dev/null differ diff --git a/icons-png/heart-handshake.png b/icons-png/heart-handshake.png deleted file mode 100644 index cebed4e11..000000000 Binary files a/icons-png/heart-handshake.png and /dev/null differ diff --git a/icons-png/heart-minus.png b/icons-png/heart-minus.png deleted file mode 100644 index ae6ed3e2d..000000000 Binary files a/icons-png/heart-minus.png and /dev/null differ diff --git a/icons-png/heart-off.png b/icons-png/heart-off.png deleted file mode 100644 index 9e5d6f5c4..000000000 Binary files a/icons-png/heart-off.png and /dev/null differ diff --git a/icons-png/heart-plus.png b/icons-png/heart-plus.png deleted file mode 100644 index 6c795eb82..000000000 Binary files a/icons-png/heart-plus.png and /dev/null differ diff --git a/icons-png/heart-rate-monitor.png b/icons-png/heart-rate-monitor.png deleted file mode 100644 index 042985306..000000000 Binary files a/icons-png/heart-rate-monitor.png and /dev/null differ diff --git a/icons-png/heart.png b/icons-png/heart.png deleted file mode 100644 index 875541274..000000000 Binary files a/icons-png/heart.png and /dev/null differ diff --git a/icons-png/heartbeat.png b/icons-png/heartbeat.png deleted file mode 100644 index 7b5f0f48e..000000000 Binary files a/icons-png/heartbeat.png and /dev/null differ diff --git a/icons-png/hearts-off.png b/icons-png/hearts-off.png deleted file mode 100644 index a0766a34c..000000000 Binary files a/icons-png/hearts-off.png and /dev/null differ diff --git a/icons-png/hearts.png b/icons-png/hearts.png deleted file mode 100644 index 8d51b11d3..000000000 Binary files a/icons-png/hearts.png and /dev/null differ diff --git a/icons-png/helicopter-landing.png b/icons-png/helicopter-landing.png deleted file mode 100644 index 7ee5ec8bd..000000000 Binary files a/icons-png/helicopter-landing.png and /dev/null differ diff --git a/icons-png/helicopter.png b/icons-png/helicopter.png deleted file mode 100644 index 2b958c35c..000000000 Binary files a/icons-png/helicopter.png and /dev/null differ diff --git a/icons-png/helmet-off.png b/icons-png/helmet-off.png deleted file mode 100644 index 2f869f0f2..000000000 Binary files a/icons-png/helmet-off.png and /dev/null differ diff --git a/icons-png/helmet.png b/icons-png/helmet.png deleted file mode 100644 index b6520eb93..000000000 Binary files a/icons-png/helmet.png and /dev/null differ diff --git a/icons-png/help-off.png b/icons-png/help-off.png deleted file mode 100644 index 0af31cd33..000000000 Binary files a/icons-png/help-off.png and /dev/null differ diff --git a/icons-png/help.png b/icons-png/help.png deleted file mode 100644 index 392531b3e..000000000 Binary files a/icons-png/help.png and /dev/null differ diff --git a/icons-png/hexagon-3d.png b/icons-png/hexagon-3d.png deleted file mode 100644 index fac423c6e..000000000 Binary files a/icons-png/hexagon-3d.png and /dev/null differ diff --git a/icons-png/hexagon-letter-a.png b/icons-png/hexagon-letter-a.png deleted file mode 100644 index c8e7dc36a..000000000 Binary files a/icons-png/hexagon-letter-a.png and /dev/null differ diff --git a/icons-png/hexagon-letter-b.png b/icons-png/hexagon-letter-b.png deleted file mode 100644 index 692ae6a79..000000000 Binary files a/icons-png/hexagon-letter-b.png and /dev/null differ diff --git a/icons-png/hexagon-letter-c.png b/icons-png/hexagon-letter-c.png deleted file mode 100644 index b0a7d71f9..000000000 Binary files a/icons-png/hexagon-letter-c.png and /dev/null differ diff --git a/icons-png/hexagon-letter-d.png b/icons-png/hexagon-letter-d.png deleted file mode 100644 index e93319d0a..000000000 Binary files a/icons-png/hexagon-letter-d.png and /dev/null differ diff --git a/icons-png/hexagon-letter-e.png b/icons-png/hexagon-letter-e.png deleted file mode 100644 index 98fe649aa..000000000 Binary files a/icons-png/hexagon-letter-e.png and /dev/null differ diff --git a/icons-png/hexagon-letter-f.png b/icons-png/hexagon-letter-f.png deleted file mode 100644 index 2aec37529..000000000 Binary files a/icons-png/hexagon-letter-f.png and /dev/null differ diff --git a/icons-png/hexagon-letter-g.png b/icons-png/hexagon-letter-g.png deleted file mode 100644 index 56eaafd70..000000000 Binary files a/icons-png/hexagon-letter-g.png and /dev/null differ diff --git a/icons-png/hexagon-letter-h.png b/icons-png/hexagon-letter-h.png deleted file mode 100644 index 94dd54c48..000000000 Binary files a/icons-png/hexagon-letter-h.png and /dev/null differ diff --git a/icons-png/hexagon-letter-i.png b/icons-png/hexagon-letter-i.png deleted file mode 100644 index 0fb83e449..000000000 Binary files a/icons-png/hexagon-letter-i.png and /dev/null differ diff --git a/icons-png/hexagon-letter-j.png b/icons-png/hexagon-letter-j.png deleted file mode 100644 index cdb3dc3f1..000000000 Binary files a/icons-png/hexagon-letter-j.png and /dev/null differ diff --git a/icons-png/hexagon-letter-k.png b/icons-png/hexagon-letter-k.png deleted file mode 100644 index 90a82cbda..000000000 Binary files a/icons-png/hexagon-letter-k.png and /dev/null differ diff --git a/icons-png/hexagon-letter-l.png b/icons-png/hexagon-letter-l.png deleted file mode 100644 index d52aa9157..000000000 Binary files a/icons-png/hexagon-letter-l.png and /dev/null differ diff --git a/icons-png/hexagon-letter-m.png b/icons-png/hexagon-letter-m.png deleted file mode 100644 index 5c982b9a4..000000000 Binary files a/icons-png/hexagon-letter-m.png and /dev/null differ diff --git a/icons-png/hexagon-letter-n.png b/icons-png/hexagon-letter-n.png deleted file mode 100644 index a5db0ca67..000000000 Binary files a/icons-png/hexagon-letter-n.png and /dev/null differ diff --git a/icons-png/hexagon-letter-o.png b/icons-png/hexagon-letter-o.png deleted file mode 100644 index 7b2e92cc9..000000000 Binary files a/icons-png/hexagon-letter-o.png and /dev/null differ diff --git a/icons-png/hexagon-letter-p.png b/icons-png/hexagon-letter-p.png deleted file mode 100644 index 770511a6f..000000000 Binary files a/icons-png/hexagon-letter-p.png and /dev/null differ diff --git a/icons-png/hexagon-letter-q.png b/icons-png/hexagon-letter-q.png deleted file mode 100644 index 54087e088..000000000 Binary files a/icons-png/hexagon-letter-q.png and /dev/null differ diff --git a/icons-png/hexagon-letter-r.png b/icons-png/hexagon-letter-r.png deleted file mode 100644 index 812a73388..000000000 Binary files a/icons-png/hexagon-letter-r.png and /dev/null differ diff --git a/icons-png/hexagon-letter-s.png b/icons-png/hexagon-letter-s.png deleted file mode 100644 index 0cb269c9d..000000000 Binary files a/icons-png/hexagon-letter-s.png and /dev/null differ diff --git a/icons-png/hexagon-letter-t.png b/icons-png/hexagon-letter-t.png deleted file mode 100644 index 7d6a46e0c..000000000 Binary files a/icons-png/hexagon-letter-t.png and /dev/null differ diff --git a/icons-png/hexagon-letter-u.png b/icons-png/hexagon-letter-u.png deleted file mode 100644 index 34e539f4f..000000000 Binary files a/icons-png/hexagon-letter-u.png and /dev/null differ diff --git a/icons-png/hexagon-letter-v.png b/icons-png/hexagon-letter-v.png deleted file mode 100644 index f362f7aac..000000000 Binary files a/icons-png/hexagon-letter-v.png and /dev/null differ diff --git a/icons-png/hexagon-letter-w.png b/icons-png/hexagon-letter-w.png deleted file mode 100644 index 61515b3b2..000000000 Binary files a/icons-png/hexagon-letter-w.png and /dev/null differ diff --git a/icons-png/hexagon-letter-x.png b/icons-png/hexagon-letter-x.png deleted file mode 100644 index eadca1296..000000000 Binary files a/icons-png/hexagon-letter-x.png and /dev/null differ diff --git a/icons-png/hexagon-letter-y.png b/icons-png/hexagon-letter-y.png deleted file mode 100644 index ca892a940..000000000 Binary files a/icons-png/hexagon-letter-y.png and /dev/null differ diff --git a/icons-png/hexagon-letter-z.png b/icons-png/hexagon-letter-z.png deleted file mode 100644 index fcfb66747..000000000 Binary files a/icons-png/hexagon-letter-z.png and /dev/null differ diff --git a/icons-png/hexagon-number-0.png b/icons-png/hexagon-number-0.png deleted file mode 100644 index 88d98b0b0..000000000 Binary files a/icons-png/hexagon-number-0.png and /dev/null differ diff --git a/icons-png/hexagon-number-1.png b/icons-png/hexagon-number-1.png deleted file mode 100644 index ea0141d41..000000000 Binary files a/icons-png/hexagon-number-1.png and /dev/null differ diff --git a/icons-png/hexagon-number-2.png b/icons-png/hexagon-number-2.png deleted file mode 100644 index 5651f5563..000000000 Binary files a/icons-png/hexagon-number-2.png and /dev/null differ diff --git a/icons-png/hexagon-number-3.png b/icons-png/hexagon-number-3.png deleted file mode 100644 index a0e4cc41a..000000000 Binary files a/icons-png/hexagon-number-3.png and /dev/null differ diff --git a/icons-png/hexagon-number-4.png b/icons-png/hexagon-number-4.png deleted file mode 100644 index bf702290a..000000000 Binary files a/icons-png/hexagon-number-4.png and /dev/null differ diff --git a/icons-png/hexagon-number-5.png b/icons-png/hexagon-number-5.png deleted file mode 100644 index 7f77480fd..000000000 Binary files a/icons-png/hexagon-number-5.png and /dev/null differ diff --git a/icons-png/hexagon-number-6.png b/icons-png/hexagon-number-6.png deleted file mode 100644 index 7ccb7b1d2..000000000 Binary files a/icons-png/hexagon-number-6.png and /dev/null differ diff --git a/icons-png/hexagon-number-7.png b/icons-png/hexagon-number-7.png deleted file mode 100644 index 81850b1cc..000000000 Binary files a/icons-png/hexagon-number-7.png and /dev/null differ diff --git a/icons-png/hexagon-number-8.png b/icons-png/hexagon-number-8.png deleted file mode 100644 index 8308683cc..000000000 Binary files a/icons-png/hexagon-number-8.png and /dev/null differ diff --git a/icons-png/hexagon-number-9.png b/icons-png/hexagon-number-9.png deleted file mode 100644 index 42433eb58..000000000 Binary files a/icons-png/hexagon-number-9.png and /dev/null differ diff --git a/icons-png/hexagon-off.png b/icons-png/hexagon-off.png deleted file mode 100644 index 887bdeed2..000000000 Binary files a/icons-png/hexagon-off.png and /dev/null differ diff --git a/icons-png/hexagon.png b/icons-png/hexagon.png deleted file mode 100644 index dfb5d1988..000000000 Binary files a/icons-png/hexagon.png and /dev/null differ diff --git a/icons-png/hexagons-off.png b/icons-png/hexagons-off.png deleted file mode 100644 index 7f35c3d1d..000000000 Binary files a/icons-png/hexagons-off.png and /dev/null differ diff --git a/icons-png/hexagons.png b/icons-png/hexagons.png deleted file mode 100644 index ab88c7265..000000000 Binary files a/icons-png/hexagons.png and /dev/null differ diff --git a/icons-png/hierarchy-2.png b/icons-png/hierarchy-2.png deleted file mode 100644 index b411ad33c..000000000 Binary files a/icons-png/hierarchy-2.png and /dev/null differ diff --git a/icons-png/hierarchy-3.png b/icons-png/hierarchy-3.png deleted file mode 100644 index 70b711dd7..000000000 Binary files a/icons-png/hierarchy-3.png and /dev/null differ diff --git a/icons-png/hierarchy-off.png b/icons-png/hierarchy-off.png deleted file mode 100644 index 5fb227b0b..000000000 Binary files a/icons-png/hierarchy-off.png and /dev/null differ diff --git a/icons-png/hierarchy.png b/icons-png/hierarchy.png deleted file mode 100644 index e0f8c208f..000000000 Binary files a/icons-png/hierarchy.png and /dev/null differ diff --git a/icons-png/highlight-off.png b/icons-png/highlight-off.png deleted file mode 100644 index b9960c3b0..000000000 Binary files a/icons-png/highlight-off.png and /dev/null differ diff --git a/icons-png/highlight.png b/icons-png/highlight.png deleted file mode 100644 index 52b3659e5..000000000 Binary files a/icons-png/highlight.png and /dev/null differ diff --git a/icons-png/history-off.png b/icons-png/history-off.png deleted file mode 100644 index fcecf12a2..000000000 Binary files a/icons-png/history-off.png and /dev/null differ diff --git a/icons-png/history-toggle.png b/icons-png/history-toggle.png deleted file mode 100644 index d0ac59064..000000000 Binary files a/icons-png/history-toggle.png and /dev/null differ diff --git a/icons-png/history.png b/icons-png/history.png deleted file mode 100644 index 3a2f0253d..000000000 Binary files a/icons-png/history.png and /dev/null differ diff --git a/icons-png/home-2.png b/icons-png/home-2.png deleted file mode 100644 index 81a67251c..000000000 Binary files a/icons-png/home-2.png and /dev/null differ diff --git a/icons-png/home-bolt.png b/icons-png/home-bolt.png deleted file mode 100644 index 1ab2930df..000000000 Binary files a/icons-png/home-bolt.png and /dev/null differ diff --git a/icons-png/home-cancel.png b/icons-png/home-cancel.png deleted file mode 100644 index d5c64541b..000000000 Binary files a/icons-png/home-cancel.png and /dev/null differ diff --git a/icons-png/home-check.png b/icons-png/home-check.png deleted file mode 100644 index ce28f4b54..000000000 Binary files a/icons-png/home-check.png and /dev/null differ diff --git a/icons-png/home-cog.png b/icons-png/home-cog.png deleted file mode 100644 index c198d45dc..000000000 Binary files a/icons-png/home-cog.png and /dev/null differ diff --git a/icons-png/home-dollar.png b/icons-png/home-dollar.png deleted file mode 100644 index 6a080456e..000000000 Binary files a/icons-png/home-dollar.png and /dev/null differ diff --git a/icons-png/home-dot.png b/icons-png/home-dot.png deleted file mode 100644 index 0b83c2479..000000000 Binary files a/icons-png/home-dot.png and /dev/null differ diff --git a/icons-png/home-down.png b/icons-png/home-down.png deleted file mode 100644 index 069a0968f..000000000 Binary files a/icons-png/home-down.png and /dev/null differ diff --git a/icons-png/home-eco.png b/icons-png/home-eco.png deleted file mode 100644 index 1b476a352..000000000 Binary files a/icons-png/home-eco.png and /dev/null differ diff --git a/icons-png/home-edit.png b/icons-png/home-edit.png deleted file mode 100644 index 5bdaf67b9..000000000 Binary files a/icons-png/home-edit.png and /dev/null differ diff --git a/icons-png/home-exclamation.png b/icons-png/home-exclamation.png deleted file mode 100644 index d6c63367b..000000000 Binary files a/icons-png/home-exclamation.png and /dev/null differ diff --git a/icons-png/home-hand.png b/icons-png/home-hand.png deleted file mode 100644 index 667d9b7c6..000000000 Binary files a/icons-png/home-hand.png and /dev/null differ diff --git a/icons-png/home-heart.png b/icons-png/home-heart.png deleted file mode 100644 index 349218473..000000000 Binary files a/icons-png/home-heart.png and /dev/null differ diff --git a/icons-png/home-infinity.png b/icons-png/home-infinity.png deleted file mode 100644 index 728eee56d..000000000 Binary files a/icons-png/home-infinity.png and /dev/null differ diff --git a/icons-png/home-link.png b/icons-png/home-link.png deleted file mode 100644 index 5fc0ac31b..000000000 Binary files a/icons-png/home-link.png and /dev/null differ diff --git a/icons-png/home-minus.png b/icons-png/home-minus.png deleted file mode 100644 index 7de185402..000000000 Binary files a/icons-png/home-minus.png and /dev/null differ diff --git a/icons-png/home-move.png b/icons-png/home-move.png deleted file mode 100644 index 5aad02ab3..000000000 Binary files a/icons-png/home-move.png and /dev/null differ diff --git a/icons-png/home-off.png b/icons-png/home-off.png deleted file mode 100644 index 0f2440c4c..000000000 Binary files a/icons-png/home-off.png and /dev/null differ diff --git a/icons-png/home-plus.png b/icons-png/home-plus.png deleted file mode 100644 index 7dd1e74b9..000000000 Binary files a/icons-png/home-plus.png and /dev/null differ diff --git a/icons-png/home-question.png b/icons-png/home-question.png deleted file mode 100644 index cb9c7d0eb..000000000 Binary files a/icons-png/home-question.png and /dev/null differ diff --git a/icons-png/home-ribbon.png b/icons-png/home-ribbon.png deleted file mode 100644 index deee79c5e..000000000 Binary files a/icons-png/home-ribbon.png and /dev/null differ diff --git a/icons-png/home-search.png b/icons-png/home-search.png deleted file mode 100644 index 553525ad8..000000000 Binary files a/icons-png/home-search.png and /dev/null differ diff --git a/icons-png/home-share.png b/icons-png/home-share.png deleted file mode 100644 index d9cb0fa76..000000000 Binary files a/icons-png/home-share.png and /dev/null differ diff --git a/icons-png/home-shield.png b/icons-png/home-shield.png deleted file mode 100644 index a7f122e0b..000000000 Binary files a/icons-png/home-shield.png and /dev/null differ diff --git a/icons-png/home-signal.png b/icons-png/home-signal.png deleted file mode 100644 index aecfb6c08..000000000 Binary files a/icons-png/home-signal.png and /dev/null differ diff --git a/icons-png/home-star.png b/icons-png/home-star.png deleted file mode 100644 index 7716aec17..000000000 Binary files a/icons-png/home-star.png and /dev/null differ diff --git a/icons-png/home-stats.png b/icons-png/home-stats.png deleted file mode 100644 index c7b5814d3..000000000 Binary files a/icons-png/home-stats.png and /dev/null differ diff --git a/icons-png/home-up.png b/icons-png/home-up.png deleted file mode 100644 index 7cf5de861..000000000 Binary files a/icons-png/home-up.png and /dev/null differ diff --git a/icons-png/home-x.png b/icons-png/home-x.png deleted file mode 100644 index 92caa887c..000000000 Binary files a/icons-png/home-x.png and /dev/null differ diff --git a/icons-png/home.png b/icons-png/home.png deleted file mode 100644 index 97b61d65d..000000000 Binary files a/icons-png/home.png and /dev/null differ diff --git a/icons-png/horse-toy.png b/icons-png/horse-toy.png deleted file mode 100644 index 08c845685..000000000 Binary files a/icons-png/horse-toy.png and /dev/null differ diff --git a/icons-png/hotel-service.png b/icons-png/hotel-service.png deleted file mode 100644 index ce6c81d81..000000000 Binary files a/icons-png/hotel-service.png and /dev/null differ diff --git a/icons-png/hourglass-empty.png b/icons-png/hourglass-empty.png deleted file mode 100644 index 4a00e14dd..000000000 Binary files a/icons-png/hourglass-empty.png and /dev/null differ diff --git a/icons-png/hourglass-high.png b/icons-png/hourglass-high.png deleted file mode 100644 index d93e5e16f..000000000 Binary files a/icons-png/hourglass-high.png and /dev/null differ diff --git a/icons-png/hourglass-low.png b/icons-png/hourglass-low.png deleted file mode 100644 index a8b5fc3b2..000000000 Binary files a/icons-png/hourglass-low.png and /dev/null differ diff --git a/icons-png/hourglass-off.png b/icons-png/hourglass-off.png deleted file mode 100644 index 40c219ec0..000000000 Binary files a/icons-png/hourglass-off.png and /dev/null differ diff --git a/icons-png/hourglass.png b/icons-png/hourglass.png deleted file mode 100644 index cc4c25871..000000000 Binary files a/icons-png/hourglass.png and /dev/null differ diff --git a/icons-png/ice-cream-2.png b/icons-png/ice-cream-2.png deleted file mode 100644 index 5a7741ddc..000000000 Binary files a/icons-png/ice-cream-2.png and /dev/null differ diff --git a/icons-png/ice-cream-off.png b/icons-png/ice-cream-off.png deleted file mode 100644 index efdef25f2..000000000 Binary files a/icons-png/ice-cream-off.png and /dev/null differ diff --git a/icons-png/ice-cream.png b/icons-png/ice-cream.png deleted file mode 100644 index 477eaf002..000000000 Binary files a/icons-png/ice-cream.png and /dev/null differ diff --git a/icons-png/ice-skating.png b/icons-png/ice-skating.png deleted file mode 100644 index 0c460af6c..000000000 Binary files a/icons-png/ice-skating.png and /dev/null differ diff --git a/icons-png/icons-off.png b/icons-png/icons-off.png deleted file mode 100644 index 4adc941fe..000000000 Binary files a/icons-png/icons-off.png and /dev/null differ diff --git a/icons-png/icons.png b/icons-png/icons.png deleted file mode 100644 index 508091bf3..000000000 Binary files a/icons-png/icons.png and /dev/null differ diff --git a/icons-png/id-badge-2.png b/icons-png/id-badge-2.png deleted file mode 100644 index 58fad460c..000000000 Binary files a/icons-png/id-badge-2.png and /dev/null differ diff --git a/icons-png/id-badge-off.png b/icons-png/id-badge-off.png deleted file mode 100644 index 8afa2cf5e..000000000 Binary files a/icons-png/id-badge-off.png and /dev/null differ diff --git a/icons-png/id-badge.png b/icons-png/id-badge.png deleted file mode 100644 index cbbade5e6..000000000 Binary files a/icons-png/id-badge.png and /dev/null differ diff --git a/icons-png/id-off.png b/icons-png/id-off.png deleted file mode 100644 index 00e2aa024..000000000 Binary files a/icons-png/id-off.png and /dev/null differ diff --git a/icons-png/id.png b/icons-png/id.png deleted file mode 100644 index a2d1134a6..000000000 Binary files a/icons-png/id.png and /dev/null differ diff --git a/icons-png/inbox-off.png b/icons-png/inbox-off.png deleted file mode 100644 index 50efef035..000000000 Binary files a/icons-png/inbox-off.png and /dev/null differ diff --git a/icons-png/inbox.png b/icons-png/inbox.png deleted file mode 100644 index 6fb46a170..000000000 Binary files a/icons-png/inbox.png and /dev/null differ diff --git a/icons-png/indent-decrease.png b/icons-png/indent-decrease.png deleted file mode 100644 index 476f66a92..000000000 Binary files a/icons-png/indent-decrease.png and /dev/null differ diff --git a/icons-png/indent-increase.png b/icons-png/indent-increase.png deleted file mode 100644 index 17b74a885..000000000 Binary files a/icons-png/indent-increase.png and /dev/null differ diff --git a/icons-png/infinity-off.png b/icons-png/infinity-off.png deleted file mode 100644 index b98fb2950..000000000 Binary files a/icons-png/infinity-off.png and /dev/null differ diff --git a/icons-png/infinity.png b/icons-png/infinity.png deleted file mode 100644 index 7a1bfed79..000000000 Binary files a/icons-png/infinity.png and /dev/null differ diff --git a/icons-png/info-circle.png b/icons-png/info-circle.png deleted file mode 100644 index 19c097652..000000000 Binary files a/icons-png/info-circle.png and /dev/null differ diff --git a/icons-png/info-square-rounded.png b/icons-png/info-square-rounded.png deleted file mode 100644 index d9814fa76..000000000 Binary files a/icons-png/info-square-rounded.png and /dev/null differ diff --git a/icons-png/info-square.png b/icons-png/info-square.png deleted file mode 100644 index 4c06e2032..000000000 Binary files a/icons-png/info-square.png and /dev/null differ diff --git a/icons-png/inner-shadow-bottom-left.png b/icons-png/inner-shadow-bottom-left.png deleted file mode 100644 index ef117ea5b..000000000 Binary files a/icons-png/inner-shadow-bottom-left.png and /dev/null differ diff --git a/icons-png/inner-shadow-bottom-right.png b/icons-png/inner-shadow-bottom-right.png deleted file mode 100644 index 9a7f1efe8..000000000 Binary files a/icons-png/inner-shadow-bottom-right.png and /dev/null differ diff --git a/icons-png/inner-shadow-bottom.png b/icons-png/inner-shadow-bottom.png deleted file mode 100644 index bf0e922d9..000000000 Binary files a/icons-png/inner-shadow-bottom.png and /dev/null differ diff --git a/icons-png/inner-shadow-left.png b/icons-png/inner-shadow-left.png deleted file mode 100644 index ddce84031..000000000 Binary files a/icons-png/inner-shadow-left.png and /dev/null differ diff --git a/icons-png/inner-shadow-right.png b/icons-png/inner-shadow-right.png deleted file mode 100644 index 39c501ba3..000000000 Binary files a/icons-png/inner-shadow-right.png and /dev/null differ diff --git a/icons-png/inner-shadow-top-left.png b/icons-png/inner-shadow-top-left.png deleted file mode 100644 index 08efc7df5..000000000 Binary files a/icons-png/inner-shadow-top-left.png and /dev/null differ diff --git a/icons-png/inner-shadow-top-right.png b/icons-png/inner-shadow-top-right.png deleted file mode 100644 index eee5efe6c..000000000 Binary files a/icons-png/inner-shadow-top-right.png and /dev/null differ diff --git a/icons-png/inner-shadow-top.png b/icons-png/inner-shadow-top.png deleted file mode 100644 index 45e66135b..000000000 Binary files a/icons-png/inner-shadow-top.png and /dev/null differ diff --git a/icons-png/input-search.png b/icons-png/input-search.png deleted file mode 100644 index 4f45c0204..000000000 Binary files a/icons-png/input-search.png and /dev/null differ diff --git a/icons-png/ironing-1.png b/icons-png/ironing-1.png deleted file mode 100644 index 64da7c301..000000000 Binary files a/icons-png/ironing-1.png and /dev/null differ diff --git a/icons-png/ironing-2.png b/icons-png/ironing-2.png deleted file mode 100644 index 8c2f2577f..000000000 Binary files a/icons-png/ironing-2.png and /dev/null differ diff --git a/icons-png/ironing-3.png b/icons-png/ironing-3.png deleted file mode 100644 index c56ec4240..000000000 Binary files a/icons-png/ironing-3.png and /dev/null differ diff --git a/icons-png/ironing-off.png b/icons-png/ironing-off.png deleted file mode 100644 index 873fdc6aa..000000000 Binary files a/icons-png/ironing-off.png and /dev/null differ diff --git a/icons-png/ironing-steam-off.png b/icons-png/ironing-steam-off.png deleted file mode 100644 index 54052142a..000000000 Binary files a/icons-png/ironing-steam-off.png and /dev/null differ diff --git a/icons-png/ironing-steam.png b/icons-png/ironing-steam.png deleted file mode 100644 index 088a75d11..000000000 Binary files a/icons-png/ironing-steam.png and /dev/null differ diff --git a/icons-png/italic.png b/icons-png/italic.png deleted file mode 100644 index 83f435a4a..000000000 Binary files a/icons-png/italic.png and /dev/null differ diff --git a/icons-png/jacket.png b/icons-png/jacket.png deleted file mode 100644 index b7f39ee80..000000000 Binary files a/icons-png/jacket.png and /dev/null differ diff --git a/icons-png/jetpack.png b/icons-png/jetpack.png deleted file mode 100644 index feeed90e8..000000000 Binary files a/icons-png/jetpack.png and /dev/null differ diff --git a/icons-png/jewish-star.png b/icons-png/jewish-star.png deleted file mode 100644 index 817d4cbec..000000000 Binary files a/icons-png/jewish-star.png and /dev/null differ diff --git a/icons-png/jpg.png b/icons-png/jpg.png deleted file mode 100644 index 049757b9e..000000000 Binary files a/icons-png/jpg.png and /dev/null differ diff --git a/icons-png/jump-rope.png b/icons-png/jump-rope.png deleted file mode 100644 index 8094a678e..000000000 Binary files a/icons-png/jump-rope.png and /dev/null differ diff --git a/icons-png/karate.png b/icons-png/karate.png deleted file mode 100644 index 1a1a99ddc..000000000 Binary files a/icons-png/karate.png and /dev/null differ diff --git a/icons-png/kayak.png b/icons-png/kayak.png deleted file mode 100644 index a3a15ebee..000000000 Binary files a/icons-png/kayak.png and /dev/null differ diff --git a/icons-png/kering.png b/icons-png/kering.png deleted file mode 100644 index cadc3c369..000000000 Binary files a/icons-png/kering.png and /dev/null differ diff --git a/icons-png/key-off.png b/icons-png/key-off.png deleted file mode 100644 index 3e7b59c74..000000000 Binary files a/icons-png/key-off.png and /dev/null differ diff --git a/icons-png/key.png b/icons-png/key.png deleted file mode 100644 index 590e0a8c1..000000000 Binary files a/icons-png/key.png and /dev/null differ diff --git a/icons-png/keyboard-hide.png b/icons-png/keyboard-hide.png deleted file mode 100644 index 2a05f8256..000000000 Binary files a/icons-png/keyboard-hide.png and /dev/null differ diff --git a/icons-png/keyboard-off.png b/icons-png/keyboard-off.png deleted file mode 100644 index 402159083..000000000 Binary files a/icons-png/keyboard-off.png and /dev/null differ diff --git a/icons-png/keyboard-show.png b/icons-png/keyboard-show.png deleted file mode 100644 index 9edb1eb77..000000000 Binary files a/icons-png/keyboard-show.png and /dev/null differ diff --git a/icons-png/keyboard.png b/icons-png/keyboard.png deleted file mode 100644 index 3f6f14112..000000000 Binary files a/icons-png/keyboard.png and /dev/null differ diff --git a/icons-png/keyframe-align-center.png b/icons-png/keyframe-align-center.png deleted file mode 100644 index 37898323b..000000000 Binary files a/icons-png/keyframe-align-center.png and /dev/null differ diff --git a/icons-png/keyframe-align-horizontal.png b/icons-png/keyframe-align-horizontal.png deleted file mode 100644 index 226292d8f..000000000 Binary files a/icons-png/keyframe-align-horizontal.png and /dev/null differ diff --git a/icons-png/keyframe-align-vertical.png b/icons-png/keyframe-align-vertical.png deleted file mode 100644 index a407a5c16..000000000 Binary files a/icons-png/keyframe-align-vertical.png and /dev/null differ diff --git a/icons-png/keyframe.png b/icons-png/keyframe.png deleted file mode 100644 index 69152b21a..000000000 Binary files a/icons-png/keyframe.png and /dev/null differ diff --git a/icons-png/keyframes.png b/icons-png/keyframes.png deleted file mode 100644 index 22645b37b..000000000 Binary files a/icons-png/keyframes.png and /dev/null differ diff --git a/icons-png/ladder-off.png b/icons-png/ladder-off.png deleted file mode 100644 index 5bb66c17d..000000000 Binary files a/icons-png/ladder-off.png and /dev/null differ diff --git a/icons-png/ladder.png b/icons-png/ladder.png deleted file mode 100644 index 4c5cb64b6..000000000 Binary files a/icons-png/ladder.png and /dev/null differ diff --git a/icons-png/lambda.png b/icons-png/lambda.png deleted file mode 100644 index 0f1392e56..000000000 Binary files a/icons-png/lambda.png and /dev/null differ diff --git a/icons-png/lamp-2.png b/icons-png/lamp-2.png deleted file mode 100644 index 60f3feb0e..000000000 Binary files a/icons-png/lamp-2.png and /dev/null differ diff --git a/icons-png/lamp-off.png b/icons-png/lamp-off.png deleted file mode 100644 index f722092a8..000000000 Binary files a/icons-png/lamp-off.png and /dev/null differ diff --git a/icons-png/lamp.png b/icons-png/lamp.png deleted file mode 100644 index 9208ad540..000000000 Binary files a/icons-png/lamp.png and /dev/null differ diff --git a/icons-png/language-hiragana.png b/icons-png/language-hiragana.png deleted file mode 100644 index eb7c5d2af..000000000 Binary files a/icons-png/language-hiragana.png and /dev/null differ diff --git a/icons-png/language-katakana.png b/icons-png/language-katakana.png deleted file mode 100644 index 10f89f4c1..000000000 Binary files a/icons-png/language-katakana.png and /dev/null differ diff --git a/icons-png/language-off.png b/icons-png/language-off.png deleted file mode 100644 index f4a258c32..000000000 Binary files a/icons-png/language-off.png and /dev/null differ diff --git a/icons-png/language.png b/icons-png/language.png deleted file mode 100644 index a2e642c32..000000000 Binary files a/icons-png/language.png and /dev/null differ diff --git a/icons-png/lasso-off.png b/icons-png/lasso-off.png deleted file mode 100644 index f37233182..000000000 Binary files a/icons-png/lasso-off.png and /dev/null differ diff --git a/icons-png/lasso-polygon.png b/icons-png/lasso-polygon.png deleted file mode 100644 index 439a23dca..000000000 Binary files a/icons-png/lasso-polygon.png and /dev/null differ diff --git a/icons-png/lasso.png b/icons-png/lasso.png deleted file mode 100644 index 911455dd3..000000000 Binary files a/icons-png/lasso.png and /dev/null differ diff --git a/icons-png/layers-difference.png b/icons-png/layers-difference.png deleted file mode 100644 index fba1db370..000000000 Binary files a/icons-png/layers-difference.png and /dev/null differ diff --git a/icons-png/layers-intersect-2.png b/icons-png/layers-intersect-2.png deleted file mode 100644 index 307baea6d..000000000 Binary files a/icons-png/layers-intersect-2.png and /dev/null differ diff --git a/icons-png/layers-intersect.png b/icons-png/layers-intersect.png deleted file mode 100644 index d1ba048c1..000000000 Binary files a/icons-png/layers-intersect.png and /dev/null differ diff --git a/icons-png/layers-linked.png b/icons-png/layers-linked.png deleted file mode 100644 index 97936c0a5..000000000 Binary files a/icons-png/layers-linked.png and /dev/null differ diff --git a/icons-png/layers-off.png b/icons-png/layers-off.png deleted file mode 100644 index dfcd56b21..000000000 Binary files a/icons-png/layers-off.png and /dev/null differ diff --git a/icons-png/layers-subtract.png b/icons-png/layers-subtract.png deleted file mode 100644 index 25dca1d08..000000000 Binary files a/icons-png/layers-subtract.png and /dev/null differ diff --git a/icons-png/layers-union.png b/icons-png/layers-union.png deleted file mode 100644 index 6e10e875a..000000000 Binary files a/icons-png/layers-union.png and /dev/null differ diff --git a/icons-png/layout-2.png b/icons-png/layout-2.png deleted file mode 100644 index 45d0ba5c0..000000000 Binary files a/icons-png/layout-2.png and /dev/null differ diff --git a/icons-png/layout-align-bottom.png b/icons-png/layout-align-bottom.png deleted file mode 100644 index 724648da2..000000000 Binary files a/icons-png/layout-align-bottom.png and /dev/null differ diff --git a/icons-png/layout-align-center.png b/icons-png/layout-align-center.png deleted file mode 100644 index f23be6400..000000000 Binary files a/icons-png/layout-align-center.png and /dev/null differ diff --git a/icons-png/layout-align-left.png b/icons-png/layout-align-left.png deleted file mode 100644 index b43aff910..000000000 Binary files a/icons-png/layout-align-left.png and /dev/null differ diff --git a/icons-png/layout-align-middle.png b/icons-png/layout-align-middle.png deleted file mode 100644 index 1bb28f66f..000000000 Binary files a/icons-png/layout-align-middle.png and /dev/null differ diff --git a/icons-png/layout-align-right.png b/icons-png/layout-align-right.png deleted file mode 100644 index 176f9ef10..000000000 Binary files a/icons-png/layout-align-right.png and /dev/null differ diff --git a/icons-png/layout-align-top.png b/icons-png/layout-align-top.png deleted file mode 100644 index aebbbf729..000000000 Binary files a/icons-png/layout-align-top.png and /dev/null differ diff --git a/icons-png/layout-board-split.png b/icons-png/layout-board-split.png deleted file mode 100644 index c4165a641..000000000 Binary files a/icons-png/layout-board-split.png and /dev/null differ diff --git a/icons-png/layout-board.png b/icons-png/layout-board.png deleted file mode 100644 index 147fd1946..000000000 Binary files a/icons-png/layout-board.png and /dev/null differ diff --git a/icons-png/layout-bottombar-collapse.png b/icons-png/layout-bottombar-collapse.png deleted file mode 100644 index b6a51cb59..000000000 Binary files a/icons-png/layout-bottombar-collapse.png and /dev/null differ diff --git a/icons-png/layout-bottombar-expand.png b/icons-png/layout-bottombar-expand.png deleted file mode 100644 index a57eb1e14..000000000 Binary files a/icons-png/layout-bottombar-expand.png and /dev/null differ diff --git a/icons-png/layout-bottombar.png b/icons-png/layout-bottombar.png deleted file mode 100644 index 028d25fca..000000000 Binary files a/icons-png/layout-bottombar.png and /dev/null differ diff --git a/icons-png/layout-cards.png b/icons-png/layout-cards.png deleted file mode 100644 index 2e5881491..000000000 Binary files a/icons-png/layout-cards.png and /dev/null differ diff --git a/icons-png/layout-collage.png b/icons-png/layout-collage.png deleted file mode 100644 index 053a00454..000000000 Binary files a/icons-png/layout-collage.png and /dev/null differ diff --git a/icons-png/layout-columns.png b/icons-png/layout-columns.png deleted file mode 100644 index 0fd71a3ce..000000000 Binary files a/icons-png/layout-columns.png and /dev/null differ diff --git a/icons-png/layout-dashboard.png b/icons-png/layout-dashboard.png deleted file mode 100644 index 0e6d145c6..000000000 Binary files a/icons-png/layout-dashboard.png and /dev/null differ diff --git a/icons-png/layout-distribute-horizontal.png b/icons-png/layout-distribute-horizontal.png deleted file mode 100644 index 15453d02e..000000000 Binary files a/icons-png/layout-distribute-horizontal.png and /dev/null differ diff --git a/icons-png/layout-distribute-vertical.png b/icons-png/layout-distribute-vertical.png deleted file mode 100644 index ec997ecc3..000000000 Binary files a/icons-png/layout-distribute-vertical.png and /dev/null differ diff --git a/icons-png/layout-grid-add.png b/icons-png/layout-grid-add.png deleted file mode 100644 index 9460ef448..000000000 Binary files a/icons-png/layout-grid-add.png and /dev/null differ diff --git a/icons-png/layout-grid.png b/icons-png/layout-grid.png deleted file mode 100644 index 9610548b0..000000000 Binary files a/icons-png/layout-grid.png and /dev/null differ diff --git a/icons-png/layout-kanban.png b/icons-png/layout-kanban.png deleted file mode 100644 index 35cea4bfb..000000000 Binary files a/icons-png/layout-kanban.png and /dev/null differ diff --git a/icons-png/layout-list.png b/icons-png/layout-list.png deleted file mode 100644 index c843620c3..000000000 Binary files a/icons-png/layout-list.png and /dev/null differ diff --git a/icons-png/layout-navbar-collapse.png b/icons-png/layout-navbar-collapse.png deleted file mode 100644 index d5fb55535..000000000 Binary files a/icons-png/layout-navbar-collapse.png and /dev/null differ diff --git a/icons-png/layout-navbar-expand.png b/icons-png/layout-navbar-expand.png deleted file mode 100644 index 5006f9ebf..000000000 Binary files a/icons-png/layout-navbar-expand.png and /dev/null differ diff --git a/icons-png/layout-navbar.png b/icons-png/layout-navbar.png deleted file mode 100644 index 192265846..000000000 Binary files a/icons-png/layout-navbar.png and /dev/null differ diff --git a/icons-png/layout-off.png b/icons-png/layout-off.png deleted file mode 100644 index e3b062c78..000000000 Binary files a/icons-png/layout-off.png and /dev/null differ diff --git a/icons-png/layout-rows.png b/icons-png/layout-rows.png deleted file mode 100644 index d96bbfeb6..000000000 Binary files a/icons-png/layout-rows.png and /dev/null differ diff --git a/icons-png/layout-sidebar-left-collapse.png b/icons-png/layout-sidebar-left-collapse.png deleted file mode 100644 index 173ee495b..000000000 Binary files a/icons-png/layout-sidebar-left-collapse.png and /dev/null differ diff --git a/icons-png/layout-sidebar-left-expand.png b/icons-png/layout-sidebar-left-expand.png deleted file mode 100644 index 3b6fcd26e..000000000 Binary files a/icons-png/layout-sidebar-left-expand.png and /dev/null differ diff --git a/icons-png/layout-sidebar-right-collapse.png b/icons-png/layout-sidebar-right-collapse.png deleted file mode 100644 index e0a7b483d..000000000 Binary files a/icons-png/layout-sidebar-right-collapse.png and /dev/null differ diff --git a/icons-png/layout-sidebar-right-expand.png b/icons-png/layout-sidebar-right-expand.png deleted file mode 100644 index 8b9d5020c..000000000 Binary files a/icons-png/layout-sidebar-right-expand.png and /dev/null differ diff --git a/icons-png/layout-sidebar-right.png b/icons-png/layout-sidebar-right.png deleted file mode 100644 index c2551cc17..000000000 Binary files a/icons-png/layout-sidebar-right.png and /dev/null differ diff --git a/icons-png/layout-sidebar.png b/icons-png/layout-sidebar.png deleted file mode 100644 index e53d86965..000000000 Binary files a/icons-png/layout-sidebar.png and /dev/null differ diff --git a/icons-png/layout.png b/icons-png/layout.png deleted file mode 100644 index f1ebe2dba..000000000 Binary files a/icons-png/layout.png and /dev/null differ diff --git a/icons-png/leaf-off.png b/icons-png/leaf-off.png deleted file mode 100644 index 1d0043a34..000000000 Binary files a/icons-png/leaf-off.png and /dev/null differ diff --git a/icons-png/leaf.png b/icons-png/leaf.png deleted file mode 100644 index bddab31db..000000000 Binary files a/icons-png/leaf.png and /dev/null differ diff --git a/icons-png/lego-off.png b/icons-png/lego-off.png deleted file mode 100644 index b7d857b2c..000000000 Binary files a/icons-png/lego-off.png and /dev/null differ diff --git a/icons-png/lego.png b/icons-png/lego.png deleted file mode 100644 index 487362abc..000000000 Binary files a/icons-png/lego.png and /dev/null differ diff --git a/icons-png/lemon-2.png b/icons-png/lemon-2.png deleted file mode 100644 index a159b9337..000000000 Binary files a/icons-png/lemon-2.png and /dev/null differ diff --git a/icons-png/lemon.png b/icons-png/lemon.png deleted file mode 100644 index beb11f005..000000000 Binary files a/icons-png/lemon.png and /dev/null differ diff --git a/icons-png/letter-a.png b/icons-png/letter-a.png deleted file mode 100644 index 5326d4c76..000000000 Binary files a/icons-png/letter-a.png and /dev/null differ diff --git a/icons-png/letter-b.png b/icons-png/letter-b.png deleted file mode 100644 index f3bbb0762..000000000 Binary files a/icons-png/letter-b.png and /dev/null differ diff --git a/icons-png/letter-c.png b/icons-png/letter-c.png deleted file mode 100644 index 6cfc776de..000000000 Binary files a/icons-png/letter-c.png and /dev/null differ diff --git a/icons-png/letter-case-lower.png b/icons-png/letter-case-lower.png deleted file mode 100644 index 2cba6e242..000000000 Binary files a/icons-png/letter-case-lower.png and /dev/null differ diff --git a/icons-png/letter-case-toggle.png b/icons-png/letter-case-toggle.png deleted file mode 100644 index 36b1f676e..000000000 Binary files a/icons-png/letter-case-toggle.png and /dev/null differ diff --git a/icons-png/letter-case-upper.png b/icons-png/letter-case-upper.png deleted file mode 100644 index 53c0bf167..000000000 Binary files a/icons-png/letter-case-upper.png and /dev/null differ diff --git a/icons-png/letter-case.png b/icons-png/letter-case.png deleted file mode 100644 index 78b96352b..000000000 Binary files a/icons-png/letter-case.png and /dev/null differ diff --git a/icons-png/letter-d.png b/icons-png/letter-d.png deleted file mode 100644 index 0f0da06e1..000000000 Binary files a/icons-png/letter-d.png and /dev/null differ diff --git a/icons-png/letter-e.png b/icons-png/letter-e.png deleted file mode 100644 index 4a7a1343a..000000000 Binary files a/icons-png/letter-e.png and /dev/null differ diff --git a/icons-png/letter-f.png b/icons-png/letter-f.png deleted file mode 100644 index 0a78eb650..000000000 Binary files a/icons-png/letter-f.png and /dev/null differ diff --git a/icons-png/letter-g.png b/icons-png/letter-g.png deleted file mode 100644 index 5f07b3fe0..000000000 Binary files a/icons-png/letter-g.png and /dev/null differ diff --git a/icons-png/letter-h.png b/icons-png/letter-h.png deleted file mode 100644 index 8be845600..000000000 Binary files a/icons-png/letter-h.png and /dev/null differ diff --git a/icons-png/letter-i.png b/icons-png/letter-i.png deleted file mode 100644 index a1258f870..000000000 Binary files a/icons-png/letter-i.png and /dev/null differ diff --git a/icons-png/letter-j.png b/icons-png/letter-j.png deleted file mode 100644 index 94f7382ff..000000000 Binary files a/icons-png/letter-j.png and /dev/null differ diff --git a/icons-png/letter-k.png b/icons-png/letter-k.png deleted file mode 100644 index a203bc1a2..000000000 Binary files a/icons-png/letter-k.png and /dev/null differ diff --git a/icons-png/letter-l.png b/icons-png/letter-l.png deleted file mode 100644 index 78f52ea67..000000000 Binary files a/icons-png/letter-l.png and /dev/null differ diff --git a/icons-png/letter-m.png b/icons-png/letter-m.png deleted file mode 100644 index 5318f6d33..000000000 Binary files a/icons-png/letter-m.png and /dev/null differ diff --git a/icons-png/letter-n.png b/icons-png/letter-n.png deleted file mode 100644 index e7bd1b029..000000000 Binary files a/icons-png/letter-n.png and /dev/null differ diff --git a/icons-png/letter-o.png b/icons-png/letter-o.png deleted file mode 100644 index 0f5106284..000000000 Binary files a/icons-png/letter-o.png and /dev/null differ diff --git a/icons-png/letter-p.png b/icons-png/letter-p.png deleted file mode 100644 index 74a73dbfb..000000000 Binary files a/icons-png/letter-p.png and /dev/null differ diff --git a/icons-png/letter-q.png b/icons-png/letter-q.png deleted file mode 100644 index 18b5bac05..000000000 Binary files a/icons-png/letter-q.png and /dev/null differ diff --git a/icons-png/letter-r.png b/icons-png/letter-r.png deleted file mode 100644 index 27ef8fb23..000000000 Binary files a/icons-png/letter-r.png and /dev/null differ diff --git a/icons-png/letter-s.png b/icons-png/letter-s.png deleted file mode 100644 index a90b21135..000000000 Binary files a/icons-png/letter-s.png and /dev/null differ diff --git a/icons-png/letter-spacing.png b/icons-png/letter-spacing.png deleted file mode 100644 index b31b4f181..000000000 Binary files a/icons-png/letter-spacing.png and /dev/null differ diff --git a/icons-png/letter-t.png b/icons-png/letter-t.png deleted file mode 100644 index bec8a9972..000000000 Binary files a/icons-png/letter-t.png and /dev/null differ diff --git a/icons-png/letter-u.png b/icons-png/letter-u.png deleted file mode 100644 index c54abe6bf..000000000 Binary files a/icons-png/letter-u.png and /dev/null differ diff --git a/icons-png/letter-v.png b/icons-png/letter-v.png deleted file mode 100644 index 6101c654a..000000000 Binary files a/icons-png/letter-v.png and /dev/null differ diff --git a/icons-png/letter-w.png b/icons-png/letter-w.png deleted file mode 100644 index 40682e53b..000000000 Binary files a/icons-png/letter-w.png and /dev/null differ diff --git a/icons-png/letter-x.png b/icons-png/letter-x.png deleted file mode 100644 index 4d11270d0..000000000 Binary files a/icons-png/letter-x.png and /dev/null differ diff --git a/icons-png/letter-y.png b/icons-png/letter-y.png deleted file mode 100644 index e6d06ea64..000000000 Binary files a/icons-png/letter-y.png and /dev/null differ diff --git a/icons-png/letter-z.png b/icons-png/letter-z.png deleted file mode 100644 index 9bae3e6e0..000000000 Binary files a/icons-png/letter-z.png and /dev/null differ diff --git a/icons-png/license-off.png b/icons-png/license-off.png deleted file mode 100644 index 04713153e..000000000 Binary files a/icons-png/license-off.png and /dev/null differ diff --git a/icons-png/license.png b/icons-png/license.png deleted file mode 100644 index 9eb6386f2..000000000 Binary files a/icons-png/license.png and /dev/null differ diff --git a/icons-png/lifebuoy-off.png b/icons-png/lifebuoy-off.png deleted file mode 100644 index f75184a7b..000000000 Binary files a/icons-png/lifebuoy-off.png and /dev/null differ diff --git a/icons-png/lifebuoy.png b/icons-png/lifebuoy.png deleted file mode 100644 index 5f9490160..000000000 Binary files a/icons-png/lifebuoy.png and /dev/null differ diff --git a/icons-png/line-dashed.png b/icons-png/line-dashed.png deleted file mode 100644 index aa336f7d4..000000000 Binary files a/icons-png/line-dashed.png and /dev/null differ diff --git a/icons-png/line-dotted.png b/icons-png/line-dotted.png deleted file mode 100644 index 8f6beb3f4..000000000 Binary files a/icons-png/line-dotted.png and /dev/null differ diff --git a/icons-png/line-height.png b/icons-png/line-height.png deleted file mode 100644 index 2f6e204eb..000000000 Binary files a/icons-png/line-height.png and /dev/null differ diff --git a/icons-png/line.png b/icons-png/line.png deleted file mode 100644 index 35abcfe6d..000000000 Binary files a/icons-png/line.png and /dev/null differ diff --git a/icons-png/link-off.png b/icons-png/link-off.png deleted file mode 100644 index d4e58b37f..000000000 Binary files a/icons-png/link-off.png and /dev/null differ diff --git a/icons-png/link.png b/icons-png/link.png deleted file mode 100644 index dfc728141..000000000 Binary files a/icons-png/link.png and /dev/null differ diff --git a/icons-png/list-check.png b/icons-png/list-check.png deleted file mode 100644 index 46928aa45..000000000 Binary files a/icons-png/list-check.png and /dev/null differ diff --git a/icons-png/list-details.png b/icons-png/list-details.png deleted file mode 100644 index 0bb492f3e..000000000 Binary files a/icons-png/list-details.png and /dev/null differ diff --git a/icons-png/list-numbers.png b/icons-png/list-numbers.png deleted file mode 100644 index 13d7aae2b..000000000 Binary files a/icons-png/list-numbers.png and /dev/null differ diff --git a/icons-png/list-search.png b/icons-png/list-search.png deleted file mode 100644 index 9fb41ce17..000000000 Binary files a/icons-png/list-search.png and /dev/null differ diff --git a/icons-png/list.png b/icons-png/list.png deleted file mode 100644 index 0d4c6c733..000000000 Binary files a/icons-png/list.png and /dev/null differ diff --git a/icons-png/live-photo-off.png b/icons-png/live-photo-off.png deleted file mode 100644 index e85a1111f..000000000 Binary files a/icons-png/live-photo-off.png and /dev/null differ diff --git a/icons-png/live-photo.png b/icons-png/live-photo.png deleted file mode 100644 index 843402253..000000000 Binary files a/icons-png/live-photo.png and /dev/null differ diff --git a/icons-png/live-view.png b/icons-png/live-view.png deleted file mode 100644 index a92dcd508..000000000 Binary files a/icons-png/live-view.png and /dev/null differ diff --git a/icons-png/loader-2.png b/icons-png/loader-2.png deleted file mode 100644 index a0cd49e9e..000000000 Binary files a/icons-png/loader-2.png and /dev/null differ diff --git a/icons-png/loader-3.png b/icons-png/loader-3.png deleted file mode 100644 index c9e400c99..000000000 Binary files a/icons-png/loader-3.png and /dev/null differ diff --git a/icons-png/loader-quarter.png b/icons-png/loader-quarter.png deleted file mode 100644 index c1f892580..000000000 Binary files a/icons-png/loader-quarter.png and /dev/null differ diff --git a/icons-png/loader.png b/icons-png/loader.png deleted file mode 100644 index 332b53c76..000000000 Binary files a/icons-png/loader.png and /dev/null differ diff --git a/icons-png/location-broken.png b/icons-png/location-broken.png deleted file mode 100644 index 76cc09dff..000000000 Binary files a/icons-png/location-broken.png and /dev/null differ diff --git a/icons-png/location-off.png b/icons-png/location-off.png deleted file mode 100644 index 13dda7bfc..000000000 Binary files a/icons-png/location-off.png and /dev/null differ diff --git a/icons-png/location.png b/icons-png/location.png deleted file mode 100644 index 7802e5b83..000000000 Binary files a/icons-png/location.png and /dev/null differ diff --git a/icons-png/lock-access-off.png b/icons-png/lock-access-off.png deleted file mode 100644 index dc8d0662a..000000000 Binary files a/icons-png/lock-access-off.png and /dev/null differ diff --git a/icons-png/lock-access.png b/icons-png/lock-access.png deleted file mode 100644 index 263312a8e..000000000 Binary files a/icons-png/lock-access.png and /dev/null differ diff --git a/icons-png/lock-off.png b/icons-png/lock-off.png deleted file mode 100644 index 44e9bfca5..000000000 Binary files a/icons-png/lock-off.png and /dev/null differ diff --git a/icons-png/lock-open-off.png b/icons-png/lock-open-off.png deleted file mode 100644 index 6a7193853..000000000 Binary files a/icons-png/lock-open-off.png and /dev/null differ diff --git a/icons-png/lock-open.png b/icons-png/lock-open.png deleted file mode 100644 index 31b40e2b2..000000000 Binary files a/icons-png/lock-open.png and /dev/null differ diff --git a/icons-png/lock-square-rounded.png b/icons-png/lock-square-rounded.png deleted file mode 100644 index 2cfb76db6..000000000 Binary files a/icons-png/lock-square-rounded.png and /dev/null differ diff --git a/icons-png/lock-square.png b/icons-png/lock-square.png deleted file mode 100644 index 1daeb97ec..000000000 Binary files a/icons-png/lock-square.png and /dev/null differ diff --git a/icons-png/lock.png b/icons-png/lock.png deleted file mode 100644 index d1318cdc9..000000000 Binary files a/icons-png/lock.png and /dev/null differ diff --git a/icons-png/logic-and.png b/icons-png/logic-and.png deleted file mode 100644 index f85297791..000000000 Binary files a/icons-png/logic-and.png and /dev/null differ diff --git a/icons-png/logic-buffer.png b/icons-png/logic-buffer.png deleted file mode 100644 index 11199b801..000000000 Binary files a/icons-png/logic-buffer.png and /dev/null differ diff --git a/icons-png/logic-nand.png b/icons-png/logic-nand.png deleted file mode 100644 index fede5f752..000000000 Binary files a/icons-png/logic-nand.png and /dev/null differ diff --git a/icons-png/logic-nor.png b/icons-png/logic-nor.png deleted file mode 100644 index ed86686ac..000000000 Binary files a/icons-png/logic-nor.png and /dev/null differ diff --git a/icons-png/logic-not.png b/icons-png/logic-not.png deleted file mode 100644 index 3b1363203..000000000 Binary files a/icons-png/logic-not.png and /dev/null differ diff --git a/icons-png/logic-or.png b/icons-png/logic-or.png deleted file mode 100644 index 1458da6a4..000000000 Binary files a/icons-png/logic-or.png and /dev/null differ diff --git a/icons-png/logic-xnor.png b/icons-png/logic-xnor.png deleted file mode 100644 index 288322722..000000000 Binary files a/icons-png/logic-xnor.png and /dev/null differ diff --git a/icons-png/logic-xor.png b/icons-png/logic-xor.png deleted file mode 100644 index 24f1b636e..000000000 Binary files a/icons-png/logic-xor.png and /dev/null differ diff --git a/icons-png/login.png b/icons-png/login.png deleted file mode 100644 index e64203a4f..000000000 Binary files a/icons-png/login.png and /dev/null differ diff --git a/icons-png/logout.png b/icons-png/logout.png deleted file mode 100644 index 144f2fb0c..000000000 Binary files a/icons-png/logout.png and /dev/null differ diff --git a/icons-png/lollipop-off.png b/icons-png/lollipop-off.png deleted file mode 100644 index db69e30e1..000000000 Binary files a/icons-png/lollipop-off.png and /dev/null differ diff --git a/icons-png/lollipop.png b/icons-png/lollipop.png deleted file mode 100644 index 83d46c96f..000000000 Binary files a/icons-png/lollipop.png and /dev/null differ diff --git a/icons-png/luggage-off.png b/icons-png/luggage-off.png deleted file mode 100644 index 1eef6d7ed..000000000 Binary files a/icons-png/luggage-off.png and /dev/null differ diff --git a/icons-png/luggage.png b/icons-png/luggage.png deleted file mode 100644 index c60593c06..000000000 Binary files a/icons-png/luggage.png and /dev/null differ diff --git a/icons-png/lungs-off.png b/icons-png/lungs-off.png deleted file mode 100644 index 6b9166cb2..000000000 Binary files a/icons-png/lungs-off.png and /dev/null differ diff --git a/icons-png/lungs.png b/icons-png/lungs.png deleted file mode 100644 index 2a9ffadec..000000000 Binary files a/icons-png/lungs.png and /dev/null differ diff --git a/icons-png/macro-off.png b/icons-png/macro-off.png deleted file mode 100644 index 40276bc6e..000000000 Binary files a/icons-png/macro-off.png and /dev/null differ diff --git a/icons-png/macro.png b/icons-png/macro.png deleted file mode 100644 index e624bdc35..000000000 Binary files a/icons-png/macro.png and /dev/null differ diff --git a/icons-png/magnet-off.png b/icons-png/magnet-off.png deleted file mode 100644 index d880434b8..000000000 Binary files a/icons-png/magnet-off.png and /dev/null differ diff --git a/icons-png/magnet.png b/icons-png/magnet.png deleted file mode 100644 index 4d8c1e8c4..000000000 Binary files a/icons-png/magnet.png and /dev/null differ diff --git a/icons-png/mail-fast.png b/icons-png/mail-fast.png deleted file mode 100644 index cb7cefeb5..000000000 Binary files a/icons-png/mail-fast.png and /dev/null differ diff --git a/icons-png/mail-forward.png b/icons-png/mail-forward.png deleted file mode 100644 index 812165625..000000000 Binary files a/icons-png/mail-forward.png and /dev/null differ diff --git a/icons-png/mail-off.png b/icons-png/mail-off.png deleted file mode 100644 index 67d315250..000000000 Binary files a/icons-png/mail-off.png and /dev/null differ diff --git a/icons-png/mail-opened.png b/icons-png/mail-opened.png deleted file mode 100644 index d943b3e53..000000000 Binary files a/icons-png/mail-opened.png and /dev/null differ diff --git a/icons-png/mail.png b/icons-png/mail.png deleted file mode 100644 index fb41c4c62..000000000 Binary files a/icons-png/mail.png and /dev/null differ diff --git a/icons-png/mailbox-off.png b/icons-png/mailbox-off.png deleted file mode 100644 index 500a79915..000000000 Binary files a/icons-png/mailbox-off.png and /dev/null differ diff --git a/icons-png/mailbox.png b/icons-png/mailbox.png deleted file mode 100644 index a1f98886b..000000000 Binary files a/icons-png/mailbox.png and /dev/null differ diff --git a/icons-png/man.png b/icons-png/man.png deleted file mode 100644 index 0ec306d96..000000000 Binary files a/icons-png/man.png and /dev/null differ diff --git a/icons-png/manual-gearbox.png b/icons-png/manual-gearbox.png deleted file mode 100644 index d82325085..000000000 Binary files a/icons-png/manual-gearbox.png and /dev/null differ diff --git a/icons-png/map-2.png b/icons-png/map-2.png deleted file mode 100644 index f03d07215..000000000 Binary files a/icons-png/map-2.png and /dev/null differ diff --git a/icons-png/map-off.png b/icons-png/map-off.png deleted file mode 100644 index 3971ceac3..000000000 Binary files a/icons-png/map-off.png and /dev/null differ diff --git a/icons-png/map-pin-off.png b/icons-png/map-pin-off.png deleted file mode 100644 index 2ff071f43..000000000 Binary files a/icons-png/map-pin-off.png and /dev/null differ diff --git a/icons-png/map-pin.png b/icons-png/map-pin.png deleted file mode 100644 index da4dd5c2a..000000000 Binary files a/icons-png/map-pin.png and /dev/null differ diff --git a/icons-png/map-pins.png b/icons-png/map-pins.png deleted file mode 100644 index c6e6d5b64..000000000 Binary files a/icons-png/map-pins.png and /dev/null differ diff --git a/icons-png/map-search.png b/icons-png/map-search.png deleted file mode 100644 index c27d0b851..000000000 Binary files a/icons-png/map-search.png and /dev/null differ diff --git a/icons-png/map.png b/icons-png/map.png deleted file mode 100644 index e77209b4f..000000000 Binary files a/icons-png/map.png and /dev/null differ diff --git a/icons-png/markdown-off.png b/icons-png/markdown-off.png deleted file mode 100644 index ac884c1c2..000000000 Binary files a/icons-png/markdown-off.png and /dev/null differ diff --git a/icons-png/markdown.png b/icons-png/markdown.png deleted file mode 100644 index 00e1bd7c4..000000000 Binary files a/icons-png/markdown.png and /dev/null differ diff --git a/icons-png/marquee-2.png b/icons-png/marquee-2.png deleted file mode 100644 index 2cf571cf5..000000000 Binary files a/icons-png/marquee-2.png and /dev/null differ diff --git a/icons-png/marquee-off.png b/icons-png/marquee-off.png deleted file mode 100644 index b4766f1ad..000000000 Binary files a/icons-png/marquee-off.png and /dev/null differ diff --git a/icons-png/marquee.png b/icons-png/marquee.png deleted file mode 100644 index 371c05f81..000000000 Binary files a/icons-png/marquee.png and /dev/null differ diff --git a/icons-png/mars.png b/icons-png/mars.png deleted file mode 100644 index a76fe3c75..000000000 Binary files a/icons-png/mars.png and /dev/null differ diff --git a/icons-png/mask-off.png b/icons-png/mask-off.png deleted file mode 100644 index ef08907e4..000000000 Binary files a/icons-png/mask-off.png and /dev/null differ diff --git a/icons-png/mask.png b/icons-png/mask.png deleted file mode 100644 index facb87c95..000000000 Binary files a/icons-png/mask.png and /dev/null differ diff --git a/icons-png/masks-theater-off.png b/icons-png/masks-theater-off.png deleted file mode 100644 index 4db4c8258..000000000 Binary files a/icons-png/masks-theater-off.png and /dev/null differ diff --git a/icons-png/masks-theater.png b/icons-png/masks-theater.png deleted file mode 100644 index efab7e48d..000000000 Binary files a/icons-png/masks-theater.png and /dev/null differ diff --git a/icons-png/massage.png b/icons-png/massage.png deleted file mode 100644 index 7d24dd9d3..000000000 Binary files a/icons-png/massage.png and /dev/null differ diff --git a/icons-png/matchstick.png b/icons-png/matchstick.png deleted file mode 100644 index 4a0507ee2..000000000 Binary files a/icons-png/matchstick.png and /dev/null differ diff --git a/icons-png/math-1-divide-2.png b/icons-png/math-1-divide-2.png deleted file mode 100644 index 80eb45030..000000000 Binary files a/icons-png/math-1-divide-2.png and /dev/null differ diff --git a/icons-png/math-1-divide-3.png b/icons-png/math-1-divide-3.png deleted file mode 100644 index 0409dae92..000000000 Binary files a/icons-png/math-1-divide-3.png and /dev/null differ diff --git a/icons-png/math-avg.png b/icons-png/math-avg.png deleted file mode 100644 index 87cfdc263..000000000 Binary files a/icons-png/math-avg.png and /dev/null differ diff --git a/icons-png/math-equal-greater.png b/icons-png/math-equal-greater.png deleted file mode 100644 index 6c8af9b61..000000000 Binary files a/icons-png/math-equal-greater.png and /dev/null differ diff --git a/icons-png/math-equal-lower.png b/icons-png/math-equal-lower.png deleted file mode 100644 index 019e2f8eb..000000000 Binary files a/icons-png/math-equal-lower.png and /dev/null differ diff --git a/icons-png/math-function-off.png b/icons-png/math-function-off.png deleted file mode 100644 index 38dfdd455..000000000 Binary files a/icons-png/math-function-off.png and /dev/null differ diff --git a/icons-png/math-function-y.png b/icons-png/math-function-y.png deleted file mode 100644 index 467873bd8..000000000 Binary files a/icons-png/math-function-y.png and /dev/null differ diff --git a/icons-png/math-function.png b/icons-png/math-function.png deleted file mode 100644 index 41ec2dc8d..000000000 Binary files a/icons-png/math-function.png and /dev/null differ diff --git a/icons-png/math-greater.png b/icons-png/math-greater.png deleted file mode 100644 index 7c4b53048..000000000 Binary files a/icons-png/math-greater.png and /dev/null differ diff --git a/icons-png/math-integral-x.png b/icons-png/math-integral-x.png deleted file mode 100644 index 4c7a60db6..000000000 Binary files a/icons-png/math-integral-x.png and /dev/null differ diff --git a/icons-png/math-integral.png b/icons-png/math-integral.png deleted file mode 100644 index e3522a67e..000000000 Binary files a/icons-png/math-integral.png and /dev/null differ diff --git a/icons-png/math-integrals.png b/icons-png/math-integrals.png deleted file mode 100644 index 7bcdab9b7..000000000 Binary files a/icons-png/math-integrals.png and /dev/null differ diff --git a/icons-png/math-lower.png b/icons-png/math-lower.png deleted file mode 100644 index 14e81afd4..000000000 Binary files a/icons-png/math-lower.png and /dev/null differ diff --git a/icons-png/math-max.png b/icons-png/math-max.png deleted file mode 100644 index a76f96bfe..000000000 Binary files a/icons-png/math-max.png and /dev/null differ diff --git a/icons-png/math-min.png b/icons-png/math-min.png deleted file mode 100644 index 7266abde3..000000000 Binary files a/icons-png/math-min.png and /dev/null differ diff --git a/icons-png/math-not.png b/icons-png/math-not.png deleted file mode 100644 index ed8281f61..000000000 Binary files a/icons-png/math-not.png and /dev/null differ diff --git a/icons-png/math-off.png b/icons-png/math-off.png deleted file mode 100644 index 0c9034116..000000000 Binary files a/icons-png/math-off.png and /dev/null differ diff --git a/icons-png/math-pi-divide-2.png b/icons-png/math-pi-divide-2.png deleted file mode 100644 index 32bae466a..000000000 Binary files a/icons-png/math-pi-divide-2.png and /dev/null differ diff --git a/icons-png/math-pi.png b/icons-png/math-pi.png deleted file mode 100644 index 393d77d35..000000000 Binary files a/icons-png/math-pi.png and /dev/null differ diff --git a/icons-png/math-symbols.png b/icons-png/math-symbols.png deleted file mode 100644 index 3253845a4..000000000 Binary files a/icons-png/math-symbols.png and /dev/null differ diff --git a/icons-png/math-x-divide-2.png b/icons-png/math-x-divide-2.png deleted file mode 100644 index d16926d85..000000000 Binary files a/icons-png/math-x-divide-2.png and /dev/null differ diff --git a/icons-png/math-x-divide-y-2.png b/icons-png/math-x-divide-y-2.png deleted file mode 100644 index c6b40c6bb..000000000 Binary files a/icons-png/math-x-divide-y-2.png and /dev/null differ diff --git a/icons-png/math-x-divide-y.png b/icons-png/math-x-divide-y.png deleted file mode 100644 index 23b406f6e..000000000 Binary files a/icons-png/math-x-divide-y.png and /dev/null differ diff --git a/icons-png/math-x-minus-x.png b/icons-png/math-x-minus-x.png deleted file mode 100644 index 60d2e6678..000000000 Binary files a/icons-png/math-x-minus-x.png and /dev/null differ diff --git a/icons-png/math-x-minus-y.png b/icons-png/math-x-minus-y.png deleted file mode 100644 index 40b8915fe..000000000 Binary files a/icons-png/math-x-minus-y.png and /dev/null differ diff --git a/icons-png/math-x-plus-x.png b/icons-png/math-x-plus-x.png deleted file mode 100644 index 540930e3e..000000000 Binary files a/icons-png/math-x-plus-x.png and /dev/null differ diff --git a/icons-png/math-x-plus-y.png b/icons-png/math-x-plus-y.png deleted file mode 100644 index e38bd3547..000000000 Binary files a/icons-png/math-x-plus-y.png and /dev/null differ diff --git a/icons-png/math-xy.png b/icons-png/math-xy.png deleted file mode 100644 index 5f214c814..000000000 Binary files a/icons-png/math-xy.png and /dev/null differ diff --git a/icons-png/math-y-minus-y.png b/icons-png/math-y-minus-y.png deleted file mode 100644 index f416ba292..000000000 Binary files a/icons-png/math-y-minus-y.png and /dev/null differ diff --git a/icons-png/math-y-plus-y.png b/icons-png/math-y-plus-y.png deleted file mode 100644 index 5d4cfe298..000000000 Binary files a/icons-png/math-y-plus-y.png and /dev/null differ diff --git a/icons-png/math.png b/icons-png/math.png deleted file mode 100644 index 35196d256..000000000 Binary files a/icons-png/math.png and /dev/null differ diff --git a/icons-png/maximize-off.png b/icons-png/maximize-off.png deleted file mode 100644 index c035a65fc..000000000 Binary files a/icons-png/maximize-off.png and /dev/null differ diff --git a/icons-png/maximize.png b/icons-png/maximize.png deleted file mode 100644 index 4cce93c6e..000000000 Binary files a/icons-png/maximize.png and /dev/null differ diff --git a/icons-png/meat-off.png b/icons-png/meat-off.png deleted file mode 100644 index 7d5b8624e..000000000 Binary files a/icons-png/meat-off.png and /dev/null differ diff --git a/icons-png/meat.png b/icons-png/meat.png deleted file mode 100644 index 49e134137..000000000 Binary files a/icons-png/meat.png and /dev/null differ diff --git a/icons-png/medal-2.png b/icons-png/medal-2.png deleted file mode 100644 index 06fda2226..000000000 Binary files a/icons-png/medal-2.png and /dev/null differ diff --git a/icons-png/medal.png b/icons-png/medal.png deleted file mode 100644 index e700dff76..000000000 Binary files a/icons-png/medal.png and /dev/null differ diff --git a/icons-png/medical-cross-off.png b/icons-png/medical-cross-off.png deleted file mode 100644 index 5ff26a30d..000000000 Binary files a/icons-png/medical-cross-off.png and /dev/null differ diff --git a/icons-png/medical-cross.png b/icons-png/medical-cross.png deleted file mode 100644 index f86aedc65..000000000 Binary files a/icons-png/medical-cross.png and /dev/null differ diff --git a/icons-png/medicine-syrup.png b/icons-png/medicine-syrup.png deleted file mode 100644 index 21e7ec5cd..000000000 Binary files a/icons-png/medicine-syrup.png and /dev/null differ diff --git a/icons-png/meeple.png b/icons-png/meeple.png deleted file mode 100644 index 620c9b241..000000000 Binary files a/icons-png/meeple.png and /dev/null differ diff --git a/icons-png/menorah.png b/icons-png/menorah.png deleted file mode 100644 index 9a03051aa..000000000 Binary files a/icons-png/menorah.png and /dev/null differ diff --git a/icons-png/menu-2.png b/icons-png/menu-2.png deleted file mode 100644 index 64b4aa00a..000000000 Binary files a/icons-png/menu-2.png and /dev/null differ diff --git a/icons-png/menu-order.png b/icons-png/menu-order.png deleted file mode 100644 index b39ee96e5..000000000 Binary files a/icons-png/menu-order.png and /dev/null differ diff --git a/icons-png/menu.png b/icons-png/menu.png deleted file mode 100644 index c56fec3c3..000000000 Binary files a/icons-png/menu.png and /dev/null differ diff --git a/icons-png/message-2-code.png b/icons-png/message-2-code.png deleted file mode 100644 index dc3553dae..000000000 Binary files a/icons-png/message-2-code.png and /dev/null differ diff --git a/icons-png/message-2-off.png b/icons-png/message-2-off.png deleted file mode 100644 index ef73578c0..000000000 Binary files a/icons-png/message-2-off.png and /dev/null differ diff --git a/icons-png/message-2-share.png b/icons-png/message-2-share.png deleted file mode 100644 index 87b495dfc..000000000 Binary files a/icons-png/message-2-share.png and /dev/null differ diff --git a/icons-png/message-2.png b/icons-png/message-2.png deleted file mode 100644 index 6860b0781..000000000 Binary files a/icons-png/message-2.png and /dev/null differ diff --git a/icons-png/message-chatbot.png b/icons-png/message-chatbot.png deleted file mode 100644 index c8e4fadcd..000000000 Binary files a/icons-png/message-chatbot.png and /dev/null differ diff --git a/icons-png/message-circle-2.png b/icons-png/message-circle-2.png deleted file mode 100644 index 0eb1843d8..000000000 Binary files a/icons-png/message-circle-2.png and /dev/null differ diff --git a/icons-png/message-circle-off.png b/icons-png/message-circle-off.png deleted file mode 100644 index 2fedfae75..000000000 Binary files a/icons-png/message-circle-off.png and /dev/null differ diff --git a/icons-png/message-circle.png b/icons-png/message-circle.png deleted file mode 100644 index 97c07b6e9..000000000 Binary files a/icons-png/message-circle.png and /dev/null differ diff --git a/icons-png/message-code.png b/icons-png/message-code.png deleted file mode 100644 index a5314cb6b..000000000 Binary files a/icons-png/message-code.png and /dev/null differ diff --git a/icons-png/message-dots.png b/icons-png/message-dots.png deleted file mode 100644 index 87bb0f3cf..000000000 Binary files a/icons-png/message-dots.png and /dev/null differ diff --git a/icons-png/message-forward.png b/icons-png/message-forward.png deleted file mode 100644 index 20bc18926..000000000 Binary files a/icons-png/message-forward.png and /dev/null differ diff --git a/icons-png/message-language.png b/icons-png/message-language.png deleted file mode 100644 index c6e1c67a6..000000000 Binary files a/icons-png/message-language.png and /dev/null differ diff --git a/icons-png/message-off.png b/icons-png/message-off.png deleted file mode 100644 index 6e9ed4ccf..000000000 Binary files a/icons-png/message-off.png and /dev/null differ diff --git a/icons-png/message-plus.png b/icons-png/message-plus.png deleted file mode 100644 index 16ea645d8..000000000 Binary files a/icons-png/message-plus.png and /dev/null differ diff --git a/icons-png/message-report.png b/icons-png/message-report.png deleted file mode 100644 index b1744a228..000000000 Binary files a/icons-png/message-report.png and /dev/null differ diff --git a/icons-png/message-share.png b/icons-png/message-share.png deleted file mode 100644 index 8861c5ede..000000000 Binary files a/icons-png/message-share.png and /dev/null differ diff --git a/icons-png/message.png b/icons-png/message.png deleted file mode 100644 index 1e82a6575..000000000 Binary files a/icons-png/message.png and /dev/null differ diff --git a/icons-png/messages-off.png b/icons-png/messages-off.png deleted file mode 100644 index 5ad91777c..000000000 Binary files a/icons-png/messages-off.png and /dev/null differ diff --git a/icons-png/messages.png b/icons-png/messages.png deleted file mode 100644 index 340929183..000000000 Binary files a/icons-png/messages.png and /dev/null differ diff --git a/icons-png/meteor-off.png b/icons-png/meteor-off.png deleted file mode 100644 index bc8fa49dd..000000000 Binary files a/icons-png/meteor-off.png and /dev/null differ diff --git a/icons-png/meteor.png b/icons-png/meteor.png deleted file mode 100644 index 08a66f768..000000000 Binary files a/icons-png/meteor.png and /dev/null differ diff --git a/icons-png/mickey.png b/icons-png/mickey.png deleted file mode 100644 index f742e17c1..000000000 Binary files a/icons-png/mickey.png and /dev/null differ diff --git a/icons-png/microphone-2-off.png b/icons-png/microphone-2-off.png deleted file mode 100644 index 553662cfc..000000000 Binary files a/icons-png/microphone-2-off.png and /dev/null differ diff --git a/icons-png/microphone-2.png b/icons-png/microphone-2.png deleted file mode 100644 index 6b11a0312..000000000 Binary files a/icons-png/microphone-2.png and /dev/null differ diff --git a/icons-png/microphone-off.png b/icons-png/microphone-off.png deleted file mode 100644 index 4838dec64..000000000 Binary files a/icons-png/microphone-off.png and /dev/null differ diff --git a/icons-png/microphone.png b/icons-png/microphone.png deleted file mode 100644 index 0318d56df..000000000 Binary files a/icons-png/microphone.png and /dev/null differ diff --git a/icons-png/microscope-off.png b/icons-png/microscope-off.png deleted file mode 100644 index cd8367064..000000000 Binary files a/icons-png/microscope-off.png and /dev/null differ diff --git a/icons-png/microscope.png b/icons-png/microscope.png deleted file mode 100644 index 9456d7add..000000000 Binary files a/icons-png/microscope.png and /dev/null differ diff --git a/icons-png/microwave-off.png b/icons-png/microwave-off.png deleted file mode 100644 index 74148600c..000000000 Binary files a/icons-png/microwave-off.png and /dev/null differ diff --git a/icons-png/microwave.png b/icons-png/microwave.png deleted file mode 100644 index 74a971f78..000000000 Binary files a/icons-png/microwave.png and /dev/null differ diff --git a/icons-png/military-award.png b/icons-png/military-award.png deleted file mode 100644 index 8fcbc17e9..000000000 Binary files a/icons-png/military-award.png and /dev/null differ diff --git a/icons-png/military-rank.png b/icons-png/military-rank.png deleted file mode 100644 index 544d71716..000000000 Binary files a/icons-png/military-rank.png and /dev/null differ diff --git a/icons-png/milk-off.png b/icons-png/milk-off.png deleted file mode 100644 index 6d576093c..000000000 Binary files a/icons-png/milk-off.png and /dev/null differ diff --git a/icons-png/milk.png b/icons-png/milk.png deleted file mode 100644 index c5ed65711..000000000 Binary files a/icons-png/milk.png and /dev/null differ diff --git a/icons-png/milkshake.png b/icons-png/milkshake.png deleted file mode 100644 index 2078aafc2..000000000 Binary files a/icons-png/milkshake.png and /dev/null differ diff --git a/icons-png/minimize.png b/icons-png/minimize.png deleted file mode 100644 index 5bad5faa2..000000000 Binary files a/icons-png/minimize.png and /dev/null differ diff --git a/icons-png/minus-vertical.png b/icons-png/minus-vertical.png deleted file mode 100644 index 56bbdd9fe..000000000 Binary files a/icons-png/minus-vertical.png and /dev/null differ diff --git a/icons-png/minus.png b/icons-png/minus.png deleted file mode 100644 index ad00926c9..000000000 Binary files a/icons-png/minus.png and /dev/null differ diff --git a/icons-png/mist-off.png b/icons-png/mist-off.png deleted file mode 100644 index 1765dc56b..000000000 Binary files a/icons-png/mist-off.png and /dev/null differ diff --git a/icons-png/mist.png b/icons-png/mist.png deleted file mode 100644 index 09c68eb5e..000000000 Binary files a/icons-png/mist.png and /dev/null differ diff --git a/icons-png/moneybag.png b/icons-png/moneybag.png deleted file mode 100644 index b22ec4583..000000000 Binary files a/icons-png/moneybag.png and /dev/null differ diff --git a/icons-png/mood-angry.png b/icons-png/mood-angry.png deleted file mode 100644 index 563b8ac73..000000000 Binary files a/icons-png/mood-angry.png and /dev/null differ diff --git a/icons-png/mood-annoyed-2.png b/icons-png/mood-annoyed-2.png deleted file mode 100644 index 978ce84f6..000000000 Binary files a/icons-png/mood-annoyed-2.png and /dev/null differ diff --git a/icons-png/mood-annoyed.png b/icons-png/mood-annoyed.png deleted file mode 100644 index 1a2272fa6..000000000 Binary files a/icons-png/mood-annoyed.png and /dev/null differ diff --git a/icons-png/mood-boy.png b/icons-png/mood-boy.png deleted file mode 100644 index 78e7bc9d8..000000000 Binary files a/icons-png/mood-boy.png and /dev/null differ diff --git a/icons-png/mood-confuzed.png b/icons-png/mood-confuzed.png deleted file mode 100644 index ffa0ab9f3..000000000 Binary files a/icons-png/mood-confuzed.png and /dev/null differ diff --git a/icons-png/mood-crazy-happy.png b/icons-png/mood-crazy-happy.png deleted file mode 100644 index 2a9a7d7a6..000000000 Binary files a/icons-png/mood-crazy-happy.png and /dev/null differ diff --git a/icons-png/mood-cry.png b/icons-png/mood-cry.png deleted file mode 100644 index 044bf65c8..000000000 Binary files a/icons-png/mood-cry.png and /dev/null differ diff --git a/icons-png/mood-empty.png b/icons-png/mood-empty.png deleted file mode 100644 index 0f0411f4c..000000000 Binary files a/icons-png/mood-empty.png and /dev/null differ diff --git a/icons-png/mood-happy.png b/icons-png/mood-happy.png deleted file mode 100644 index 786718460..000000000 Binary files a/icons-png/mood-happy.png and /dev/null differ diff --git a/icons-png/mood-kid.png b/icons-png/mood-kid.png deleted file mode 100644 index f454c3a14..000000000 Binary files a/icons-png/mood-kid.png and /dev/null differ diff --git a/icons-png/mood-look-left.png b/icons-png/mood-look-left.png deleted file mode 100644 index 5345a4d29..000000000 Binary files a/icons-png/mood-look-left.png and /dev/null differ diff --git a/icons-png/mood-look-right.png b/icons-png/mood-look-right.png deleted file mode 100644 index 4754b7fcb..000000000 Binary files a/icons-png/mood-look-right.png and /dev/null differ diff --git a/icons-png/mood-nerd.png b/icons-png/mood-nerd.png deleted file mode 100644 index 87594df08..000000000 Binary files a/icons-png/mood-nerd.png and /dev/null differ diff --git a/icons-png/mood-nervous.png b/icons-png/mood-nervous.png deleted file mode 100644 index 83cabf9e9..000000000 Binary files a/icons-png/mood-nervous.png and /dev/null differ diff --git a/icons-png/mood-neutral.png b/icons-png/mood-neutral.png deleted file mode 100644 index 038aafa7b..000000000 Binary files a/icons-png/mood-neutral.png and /dev/null differ diff --git a/icons-png/mood-off.png b/icons-png/mood-off.png deleted file mode 100644 index b10e8e15f..000000000 Binary files a/icons-png/mood-off.png and /dev/null differ diff --git a/icons-png/mood-sad-2.png b/icons-png/mood-sad-2.png deleted file mode 100644 index f7587408a..000000000 Binary files a/icons-png/mood-sad-2.png and /dev/null differ diff --git a/icons-png/mood-sad-dizzy.png b/icons-png/mood-sad-dizzy.png deleted file mode 100644 index 164046c09..000000000 Binary files a/icons-png/mood-sad-dizzy.png and /dev/null differ diff --git a/icons-png/mood-sad-squint.png b/icons-png/mood-sad-squint.png deleted file mode 100644 index 029c1d66c..000000000 Binary files a/icons-png/mood-sad-squint.png and /dev/null differ diff --git a/icons-png/mood-sad.png b/icons-png/mood-sad.png deleted file mode 100644 index aac7e97a2..000000000 Binary files a/icons-png/mood-sad.png and /dev/null differ diff --git a/icons-png/mood-sick.png b/icons-png/mood-sick.png deleted file mode 100644 index 8afb350ac..000000000 Binary files a/icons-png/mood-sick.png and /dev/null differ diff --git a/icons-png/mood-silence.png b/icons-png/mood-silence.png deleted file mode 100644 index 787c4cd96..000000000 Binary files a/icons-png/mood-silence.png and /dev/null differ diff --git a/icons-png/mood-sing.png b/icons-png/mood-sing.png deleted file mode 100644 index 5236c145a..000000000 Binary files a/icons-png/mood-sing.png and /dev/null differ diff --git a/icons-png/mood-smile-beam.png b/icons-png/mood-smile-beam.png deleted file mode 100644 index 038bb69c1..000000000 Binary files a/icons-png/mood-smile-beam.png and /dev/null differ diff --git a/icons-png/mood-smile-dizzy.png b/icons-png/mood-smile-dizzy.png deleted file mode 100644 index e0cda50f1..000000000 Binary files a/icons-png/mood-smile-dizzy.png and /dev/null differ diff --git a/icons-png/mood-smile.png b/icons-png/mood-smile.png deleted file mode 100644 index c8377edb9..000000000 Binary files a/icons-png/mood-smile.png and /dev/null differ diff --git a/icons-png/mood-suprised.png b/icons-png/mood-suprised.png deleted file mode 100644 index b31e9e556..000000000 Binary files a/icons-png/mood-suprised.png and /dev/null differ diff --git a/icons-png/mood-tongue-wink-2.png b/icons-png/mood-tongue-wink-2.png deleted file mode 100644 index 7f42883f9..000000000 Binary files a/icons-png/mood-tongue-wink-2.png and /dev/null differ diff --git a/icons-png/mood-tongue-wink.png b/icons-png/mood-tongue-wink.png deleted file mode 100644 index 68b532c3b..000000000 Binary files a/icons-png/mood-tongue-wink.png and /dev/null differ diff --git a/icons-png/mood-tongue.png b/icons-png/mood-tongue.png deleted file mode 100644 index 27d783abb..000000000 Binary files a/icons-png/mood-tongue.png and /dev/null differ diff --git a/icons-png/mood-unamused.png b/icons-png/mood-unamused.png deleted file mode 100644 index 2f6c4fca4..000000000 Binary files a/icons-png/mood-unamused.png and /dev/null differ diff --git a/icons-png/mood-wink-2.png b/icons-png/mood-wink-2.png deleted file mode 100644 index 218b8abd5..000000000 Binary files a/icons-png/mood-wink-2.png and /dev/null differ diff --git a/icons-png/mood-wink.png b/icons-png/mood-wink.png deleted file mode 100644 index b17f1c449..000000000 Binary files a/icons-png/mood-wink.png and /dev/null differ diff --git a/icons-png/mood-wrrr.png b/icons-png/mood-wrrr.png deleted file mode 100644 index 5a7ea8cd9..000000000 Binary files a/icons-png/mood-wrrr.png and /dev/null differ diff --git a/icons-png/mood-xd.png b/icons-png/mood-xd.png deleted file mode 100644 index 12e3f929b..000000000 Binary files a/icons-png/mood-xd.png and /dev/null differ diff --git a/icons-png/moon-2.png b/icons-png/moon-2.png deleted file mode 100644 index c33782c65..000000000 Binary files a/icons-png/moon-2.png and /dev/null differ diff --git a/icons-png/moon-off.png b/icons-png/moon-off.png deleted file mode 100644 index ce47f8ce7..000000000 Binary files a/icons-png/moon-off.png and /dev/null differ diff --git a/icons-png/moon-stars.png b/icons-png/moon-stars.png deleted file mode 100644 index 7fe9982d6..000000000 Binary files a/icons-png/moon-stars.png and /dev/null differ diff --git a/icons-png/moon.png b/icons-png/moon.png deleted file mode 100644 index f4b6d1e93..000000000 Binary files a/icons-png/moon.png and /dev/null differ diff --git a/icons-png/moped.png b/icons-png/moped.png deleted file mode 100644 index 2e21f1e1e..000000000 Binary files a/icons-png/moped.png and /dev/null differ diff --git a/icons-png/motorbike.png b/icons-png/motorbike.png deleted file mode 100644 index 09d7d92cf..000000000 Binary files a/icons-png/motorbike.png and /dev/null differ diff --git a/icons-png/mountain-off.png b/icons-png/mountain-off.png deleted file mode 100644 index 2232360b8..000000000 Binary files a/icons-png/mountain-off.png and /dev/null differ diff --git a/icons-png/mountain.png b/icons-png/mountain.png deleted file mode 100644 index 13f306de4..000000000 Binary files a/icons-png/mountain.png and /dev/null differ diff --git a/icons-png/mouse-2.png b/icons-png/mouse-2.png deleted file mode 100644 index 00e999dc3..000000000 Binary files a/icons-png/mouse-2.png and /dev/null differ diff --git a/icons-png/mouse-off.png b/icons-png/mouse-off.png deleted file mode 100644 index 0e80eb550..000000000 Binary files a/icons-png/mouse-off.png and /dev/null differ diff --git a/icons-png/mouse.png b/icons-png/mouse.png deleted file mode 100644 index 1b408d739..000000000 Binary files a/icons-png/mouse.png and /dev/null differ diff --git a/icons-png/moustache.png b/icons-png/moustache.png deleted file mode 100644 index 92089ef48..000000000 Binary files a/icons-png/moustache.png and /dev/null differ diff --git a/icons-png/movie-off.png b/icons-png/movie-off.png deleted file mode 100644 index d6650e24c..000000000 Binary files a/icons-png/movie-off.png and /dev/null differ diff --git a/icons-png/movie.png b/icons-png/movie.png deleted file mode 100644 index 66709898b..000000000 Binary files a/icons-png/movie.png and /dev/null differ diff --git a/icons-png/mug-off.png b/icons-png/mug-off.png deleted file mode 100644 index f74c07f70..000000000 Binary files a/icons-png/mug-off.png and /dev/null differ diff --git a/icons-png/mug.png b/icons-png/mug.png deleted file mode 100644 index 47659552d..000000000 Binary files a/icons-png/mug.png and /dev/null differ diff --git a/icons-png/multiplier-0-5x.png b/icons-png/multiplier-0-5x.png deleted file mode 100644 index 187f937a9..000000000 Binary files a/icons-png/multiplier-0-5x.png and /dev/null differ diff --git a/icons-png/multiplier-1-5x.png b/icons-png/multiplier-1-5x.png deleted file mode 100644 index d9b9f2da0..000000000 Binary files a/icons-png/multiplier-1-5x.png and /dev/null differ diff --git a/icons-png/multiplier-1x.png b/icons-png/multiplier-1x.png deleted file mode 100644 index 3226dfae4..000000000 Binary files a/icons-png/multiplier-1x.png and /dev/null differ diff --git a/icons-png/multiplier-2x.png b/icons-png/multiplier-2x.png deleted file mode 100644 index 30327951c..000000000 Binary files a/icons-png/multiplier-2x.png and /dev/null differ diff --git a/icons-png/mushroom-off.png b/icons-png/mushroom-off.png deleted file mode 100644 index bf4f78ad8..000000000 Binary files a/icons-png/mushroom-off.png and /dev/null differ diff --git a/icons-png/mushroom.png b/icons-png/mushroom.png deleted file mode 100644 index 5f19af7f5..000000000 Binary files a/icons-png/mushroom.png and /dev/null differ diff --git a/icons-png/music-off.png b/icons-png/music-off.png deleted file mode 100644 index d036669fb..000000000 Binary files a/icons-png/music-off.png and /dev/null differ diff --git a/icons-png/music.png b/icons-png/music.png deleted file mode 100644 index 47d9728dd..000000000 Binary files a/icons-png/music.png and /dev/null differ diff --git a/icons-png/navigation-off.png b/icons-png/navigation-off.png deleted file mode 100644 index ff9d894bc..000000000 Binary files a/icons-png/navigation-off.png and /dev/null differ diff --git a/icons-png/navigation.png b/icons-png/navigation.png deleted file mode 100644 index fe46467aa..000000000 Binary files a/icons-png/navigation.png and /dev/null differ diff --git a/icons-png/needle-thread.png b/icons-png/needle-thread.png deleted file mode 100644 index 73b02331a..000000000 Binary files a/icons-png/needle-thread.png and /dev/null differ diff --git a/icons-png/needle.png b/icons-png/needle.png deleted file mode 100644 index 5c6a618fe..000000000 Binary files a/icons-png/needle.png and /dev/null differ diff --git a/icons-png/network-off.png b/icons-png/network-off.png deleted file mode 100644 index 897678f0c..000000000 Binary files a/icons-png/network-off.png and /dev/null differ diff --git a/icons-png/network.png b/icons-png/network.png deleted file mode 100644 index 6a0959550..000000000 Binary files a/icons-png/network.png and /dev/null differ diff --git a/icons-png/new-section.png b/icons-png/new-section.png deleted file mode 100644 index b635ffef1..000000000 Binary files a/icons-png/new-section.png and /dev/null differ diff --git a/icons-png/news-off.png b/icons-png/news-off.png deleted file mode 100644 index 3121661fd..000000000 Binary files a/icons-png/news-off.png and /dev/null differ diff --git a/icons-png/news.png b/icons-png/news.png deleted file mode 100644 index d2b71793c..000000000 Binary files a/icons-png/news.png and /dev/null differ diff --git a/icons-png/nfc-off.png b/icons-png/nfc-off.png deleted file mode 100644 index b5777ebb7..000000000 Binary files a/icons-png/nfc-off.png and /dev/null differ diff --git a/icons-png/nfc.png b/icons-png/nfc.png deleted file mode 100644 index 9a0f05da5..000000000 Binary files a/icons-png/nfc.png and /dev/null differ diff --git a/icons-png/no-copyright.png b/icons-png/no-copyright.png deleted file mode 100644 index 6742a917c..000000000 Binary files a/icons-png/no-copyright.png and /dev/null differ diff --git a/icons-png/no-creative-commons.png b/icons-png/no-creative-commons.png deleted file mode 100644 index 33a5efd7a..000000000 Binary files a/icons-png/no-creative-commons.png and /dev/null differ diff --git a/icons-png/no-derivatives.png b/icons-png/no-derivatives.png deleted file mode 100644 index c1e37f1b2..000000000 Binary files a/icons-png/no-derivatives.png and /dev/null differ diff --git a/icons-png/north-star.png b/icons-png/north-star.png deleted file mode 100644 index 529a9f4b6..000000000 Binary files a/icons-png/north-star.png and /dev/null differ diff --git a/icons-png/note-off.png b/icons-png/note-off.png deleted file mode 100644 index 2d654d8b2..000000000 Binary files a/icons-png/note-off.png and /dev/null differ diff --git a/icons-png/note.png b/icons-png/note.png deleted file mode 100644 index 0f2d4bd3d..000000000 Binary files a/icons-png/note.png and /dev/null differ diff --git a/icons-png/notebook-off.png b/icons-png/notebook-off.png deleted file mode 100644 index e4d554d0a..000000000 Binary files a/icons-png/notebook-off.png and /dev/null differ diff --git a/icons-png/notebook.png b/icons-png/notebook.png deleted file mode 100644 index b4eef103b..000000000 Binary files a/icons-png/notebook.png and /dev/null differ diff --git a/icons-png/notes-off.png b/icons-png/notes-off.png deleted file mode 100644 index c78e12b18..000000000 Binary files a/icons-png/notes-off.png and /dev/null differ diff --git a/icons-png/notes.png b/icons-png/notes.png deleted file mode 100644 index 7311fdb94..000000000 Binary files a/icons-png/notes.png and /dev/null differ diff --git a/icons-png/notification-off.png b/icons-png/notification-off.png deleted file mode 100644 index 6df03a997..000000000 Binary files a/icons-png/notification-off.png and /dev/null differ diff --git a/icons-png/notification.png b/icons-png/notification.png deleted file mode 100644 index 596db680e..000000000 Binary files a/icons-png/notification.png and /dev/null differ diff --git a/icons-png/number-0.png b/icons-png/number-0.png deleted file mode 100644 index f494f10cc..000000000 Binary files a/icons-png/number-0.png and /dev/null differ diff --git a/icons-png/number-1.png b/icons-png/number-1.png deleted file mode 100644 index 95f5e8411..000000000 Binary files a/icons-png/number-1.png and /dev/null differ diff --git a/icons-png/number-2.png b/icons-png/number-2.png deleted file mode 100644 index ec5a2ebe9..000000000 Binary files a/icons-png/number-2.png and /dev/null differ diff --git a/icons-png/number-3.png b/icons-png/number-3.png deleted file mode 100644 index 7c61c8eab..000000000 Binary files a/icons-png/number-3.png and /dev/null differ diff --git a/icons-png/number-4.png b/icons-png/number-4.png deleted file mode 100644 index c447ee8cf..000000000 Binary files a/icons-png/number-4.png and /dev/null differ diff --git a/icons-png/number-5.png b/icons-png/number-5.png deleted file mode 100644 index a08b73a70..000000000 Binary files a/icons-png/number-5.png and /dev/null differ diff --git a/icons-png/number-6.png b/icons-png/number-6.png deleted file mode 100644 index 9088bd64e..000000000 Binary files a/icons-png/number-6.png and /dev/null differ diff --git a/icons-png/number-7.png b/icons-png/number-7.png deleted file mode 100644 index 285653b82..000000000 Binary files a/icons-png/number-7.png and /dev/null differ diff --git a/icons-png/number-8.png b/icons-png/number-8.png deleted file mode 100644 index 488088fba..000000000 Binary files a/icons-png/number-8.png and /dev/null differ diff --git a/icons-png/number-9.png b/icons-png/number-9.png deleted file mode 100644 index 8db5bd5c6..000000000 Binary files a/icons-png/number-9.png and /dev/null differ diff --git a/icons-png/number.png b/icons-png/number.png deleted file mode 100644 index db6fdd08a..000000000 Binary files a/icons-png/number.png and /dev/null differ diff --git a/icons-png/numbers.png b/icons-png/numbers.png deleted file mode 100644 index d9584128f..000000000 Binary files a/icons-png/numbers.png and /dev/null differ diff --git a/icons-png/nurse.png b/icons-png/nurse.png deleted file mode 100644 index 8fcd5d873..000000000 Binary files a/icons-png/nurse.png and /dev/null differ diff --git a/icons-png/octagon-off.png b/icons-png/octagon-off.png deleted file mode 100644 index 034e041f7..000000000 Binary files a/icons-png/octagon-off.png and /dev/null differ diff --git a/icons-png/octagon.png b/icons-png/octagon.png deleted file mode 100644 index c61fbc4d6..000000000 Binary files a/icons-png/octagon.png and /dev/null differ diff --git a/icons-png/old.png b/icons-png/old.png deleted file mode 100644 index 6aa927a18..000000000 Binary files a/icons-png/old.png and /dev/null differ diff --git a/icons-png/olympics-off.png b/icons-png/olympics-off.png deleted file mode 100644 index 324c47223..000000000 Binary files a/icons-png/olympics-off.png and /dev/null differ diff --git a/icons-png/olympics.png b/icons-png/olympics.png deleted file mode 100644 index 0a4333004..000000000 Binary files a/icons-png/olympics.png and /dev/null differ diff --git a/icons-png/om.png b/icons-png/om.png deleted file mode 100644 index 0fed9b334..000000000 Binary files a/icons-png/om.png and /dev/null differ diff --git a/icons-png/omega.png b/icons-png/omega.png deleted file mode 100644 index 8ab346e1f..000000000 Binary files a/icons-png/omega.png and /dev/null differ diff --git a/icons-png/outbound.png b/icons-png/outbound.png deleted file mode 100644 index c44bfdcaa..000000000 Binary files a/icons-png/outbound.png and /dev/null differ diff --git a/icons-png/outlet.png b/icons-png/outlet.png deleted file mode 100644 index 3f4c8abbc..000000000 Binary files a/icons-png/outlet.png and /dev/null differ diff --git a/icons-png/oval-vertical.png b/icons-png/oval-vertical.png deleted file mode 100644 index 84b4a8c05..000000000 Binary files a/icons-png/oval-vertical.png and /dev/null differ diff --git a/icons-png/oval.png b/icons-png/oval.png deleted file mode 100644 index fab1bd18a..000000000 Binary files a/icons-png/oval.png and /dev/null differ diff --git a/icons-png/overline.png b/icons-png/overline.png deleted file mode 100644 index ab187048a..000000000 Binary files a/icons-png/overline.png and /dev/null differ diff --git a/icons-png/package-off.png b/icons-png/package-off.png deleted file mode 100644 index 7b8071b8c..000000000 Binary files a/icons-png/package-off.png and /dev/null differ diff --git a/icons-png/package.png b/icons-png/package.png deleted file mode 100644 index abf0d05c4..000000000 Binary files a/icons-png/package.png and /dev/null differ diff --git a/icons-png/packages.png b/icons-png/packages.png deleted file mode 100644 index 9146b6541..000000000 Binary files a/icons-png/packages.png and /dev/null differ diff --git a/icons-png/packge-export.png b/icons-png/packge-export.png deleted file mode 100644 index e54d2b93f..000000000 Binary files a/icons-png/packge-export.png and /dev/null differ diff --git a/icons-png/packge-import.png b/icons-png/packge-import.png deleted file mode 100644 index 58768afd7..000000000 Binary files a/icons-png/packge-import.png and /dev/null differ diff --git a/icons-png/pacman.png b/icons-png/pacman.png deleted file mode 100644 index 87af3a391..000000000 Binary files a/icons-png/pacman.png and /dev/null differ diff --git a/icons-png/page-break.png b/icons-png/page-break.png deleted file mode 100644 index b7ae8693a..000000000 Binary files a/icons-png/page-break.png and /dev/null differ diff --git a/icons-png/paint-off.png b/icons-png/paint-off.png deleted file mode 100644 index 168b8d260..000000000 Binary files a/icons-png/paint-off.png and /dev/null differ diff --git a/icons-png/paint.png b/icons-png/paint.png deleted file mode 100644 index 2fec4432b..000000000 Binary files a/icons-png/paint.png and /dev/null differ diff --git a/icons-png/palette-off.png b/icons-png/palette-off.png deleted file mode 100644 index 0abb23d2b..000000000 Binary files a/icons-png/palette-off.png and /dev/null differ diff --git a/icons-png/palette.png b/icons-png/palette.png deleted file mode 100644 index e556b6b0e..000000000 Binary files a/icons-png/palette.png and /dev/null differ diff --git a/icons-png/panorama-horizontal-off.png b/icons-png/panorama-horizontal-off.png deleted file mode 100644 index 1bf52d98f..000000000 Binary files a/icons-png/panorama-horizontal-off.png and /dev/null differ diff --git a/icons-png/panorama-horizontal.png b/icons-png/panorama-horizontal.png deleted file mode 100644 index 25325257c..000000000 Binary files a/icons-png/panorama-horizontal.png and /dev/null differ diff --git a/icons-png/panorama-vertical-off.png b/icons-png/panorama-vertical-off.png deleted file mode 100644 index c00018eed..000000000 Binary files a/icons-png/panorama-vertical-off.png and /dev/null differ diff --git a/icons-png/panorama-vertical.png b/icons-png/panorama-vertical.png deleted file mode 100644 index d424fec2d..000000000 Binary files a/icons-png/panorama-vertical.png and /dev/null differ diff --git a/icons-png/paper-bag-off.png b/icons-png/paper-bag-off.png deleted file mode 100644 index 43de09560..000000000 Binary files a/icons-png/paper-bag-off.png and /dev/null differ diff --git a/icons-png/paper-bag.png b/icons-png/paper-bag.png deleted file mode 100644 index 04a4fae29..000000000 Binary files a/icons-png/paper-bag.png and /dev/null differ diff --git a/icons-png/paperclip.png b/icons-png/paperclip.png deleted file mode 100644 index f3e65b0fc..000000000 Binary files a/icons-png/paperclip.png and /dev/null differ diff --git a/icons-png/parachute-off.png b/icons-png/parachute-off.png deleted file mode 100644 index 66cbec966..000000000 Binary files a/icons-png/parachute-off.png and /dev/null differ diff --git a/icons-png/parachute.png b/icons-png/parachute.png deleted file mode 100644 index 24dae9ef2..000000000 Binary files a/icons-png/parachute.png and /dev/null differ diff --git a/icons-png/parentheses-off.png b/icons-png/parentheses-off.png deleted file mode 100644 index c4df279c8..000000000 Binary files a/icons-png/parentheses-off.png and /dev/null differ diff --git a/icons-png/parentheses.png b/icons-png/parentheses.png deleted file mode 100644 index 6da6a82c2..000000000 Binary files a/icons-png/parentheses.png and /dev/null differ diff --git a/icons-png/parking-off.png b/icons-png/parking-off.png deleted file mode 100644 index f7692882d..000000000 Binary files a/icons-png/parking-off.png and /dev/null differ diff --git a/icons-png/parking.png b/icons-png/parking.png deleted file mode 100644 index e5fb40fec..000000000 Binary files a/icons-png/parking.png and /dev/null differ diff --git a/icons-png/password.png b/icons-png/password.png deleted file mode 100644 index 47506bb17..000000000 Binary files a/icons-png/password.png and /dev/null differ diff --git a/icons-png/paw-off.png b/icons-png/paw-off.png deleted file mode 100644 index 3fecf7001..000000000 Binary files a/icons-png/paw-off.png and /dev/null differ diff --git a/icons-png/paw.png b/icons-png/paw.png deleted file mode 100644 index b09336f2b..000000000 Binary files a/icons-png/paw.png and /dev/null differ diff --git a/icons-png/peace.png b/icons-png/peace.png deleted file mode 100644 index ba0c1eab4..000000000 Binary files a/icons-png/peace.png and /dev/null differ diff --git a/icons-png/pencil-minus.png b/icons-png/pencil-minus.png deleted file mode 100644 index 9ace81e8b..000000000 Binary files a/icons-png/pencil-minus.png and /dev/null differ diff --git a/icons-png/pencil-off.png b/icons-png/pencil-off.png deleted file mode 100644 index e91cf78cb..000000000 Binary files a/icons-png/pencil-off.png and /dev/null differ diff --git a/icons-png/pencil-plus.png b/icons-png/pencil-plus.png deleted file mode 100644 index af6429ee9..000000000 Binary files a/icons-png/pencil-plus.png and /dev/null differ diff --git a/icons-png/pencil.png b/icons-png/pencil.png deleted file mode 100644 index 8d4e5e625..000000000 Binary files a/icons-png/pencil.png and /dev/null differ diff --git a/icons-png/pennant-2.png b/icons-png/pennant-2.png deleted file mode 100644 index 3c85a63ba..000000000 Binary files a/icons-png/pennant-2.png and /dev/null differ diff --git a/icons-png/pennant-off.png b/icons-png/pennant-off.png deleted file mode 100644 index c2a883f89..000000000 Binary files a/icons-png/pennant-off.png and /dev/null differ diff --git a/icons-png/pennant.png b/icons-png/pennant.png deleted file mode 100644 index c6bce3235..000000000 Binary files a/icons-png/pennant.png and /dev/null differ diff --git a/icons-png/pentagon-off.png b/icons-png/pentagon-off.png deleted file mode 100644 index 478840112..000000000 Binary files a/icons-png/pentagon-off.png and /dev/null differ diff --git a/icons-png/pentagon.png b/icons-png/pentagon.png deleted file mode 100644 index ed5c8aff3..000000000 Binary files a/icons-png/pentagon.png and /dev/null differ diff --git a/icons-png/pentagram.png b/icons-png/pentagram.png deleted file mode 100644 index fad8eb04c..000000000 Binary files a/icons-png/pentagram.png and /dev/null differ diff --git a/icons-png/pepper-off.png b/icons-png/pepper-off.png deleted file mode 100644 index 36ac9dc83..000000000 Binary files a/icons-png/pepper-off.png and /dev/null differ diff --git a/icons-png/pepper.png b/icons-png/pepper.png deleted file mode 100644 index 551501de2..000000000 Binary files a/icons-png/pepper.png and /dev/null differ diff --git a/icons-png/percentage.png b/icons-png/percentage.png deleted file mode 100644 index 34aa29b6c..000000000 Binary files a/icons-png/percentage.png and /dev/null differ diff --git a/icons-png/perfume.png b/icons-png/perfume.png deleted file mode 100644 index 83588e399..000000000 Binary files a/icons-png/perfume.png and /dev/null differ diff --git a/icons-png/perspective-off.png b/icons-png/perspective-off.png deleted file mode 100644 index ebeec7e1e..000000000 Binary files a/icons-png/perspective-off.png and /dev/null differ diff --git a/icons-png/perspective.png b/icons-png/perspective.png deleted file mode 100644 index 9bfb91645..000000000 Binary files a/icons-png/perspective.png and /dev/null differ diff --git a/icons-png/phone-call.png b/icons-png/phone-call.png deleted file mode 100644 index 4e4feaef8..000000000 Binary files a/icons-png/phone-call.png and /dev/null differ diff --git a/icons-png/phone-calling.png b/icons-png/phone-calling.png deleted file mode 100644 index f86d2c77b..000000000 Binary files a/icons-png/phone-calling.png and /dev/null differ diff --git a/icons-png/phone-check.png b/icons-png/phone-check.png deleted file mode 100644 index 1ebff2d60..000000000 Binary files a/icons-png/phone-check.png and /dev/null differ diff --git a/icons-png/phone-incoming.png b/icons-png/phone-incoming.png deleted file mode 100644 index 393fd0719..000000000 Binary files a/icons-png/phone-incoming.png and /dev/null differ diff --git a/icons-png/phone-off.png b/icons-png/phone-off.png deleted file mode 100644 index 89188754a..000000000 Binary files a/icons-png/phone-off.png and /dev/null differ diff --git a/icons-png/phone-outgoing.png b/icons-png/phone-outgoing.png deleted file mode 100644 index 65bf62b79..000000000 Binary files a/icons-png/phone-outgoing.png and /dev/null differ diff --git a/icons-png/phone-pause.png b/icons-png/phone-pause.png deleted file mode 100644 index 229e1ebf9..000000000 Binary files a/icons-png/phone-pause.png and /dev/null differ diff --git a/icons-png/phone-plus.png b/icons-png/phone-plus.png deleted file mode 100644 index 26d248636..000000000 Binary files a/icons-png/phone-plus.png and /dev/null differ diff --git a/icons-png/phone-x.png b/icons-png/phone-x.png deleted file mode 100644 index 56ea43cfc..000000000 Binary files a/icons-png/phone-x.png and /dev/null differ diff --git a/icons-png/phone.png b/icons-png/phone.png deleted file mode 100644 index 48f384ecf..000000000 Binary files a/icons-png/phone.png and /dev/null differ diff --git a/icons-png/photo-cancel.png b/icons-png/photo-cancel.png deleted file mode 100644 index 6a362154d..000000000 Binary files a/icons-png/photo-cancel.png and /dev/null differ diff --git a/icons-png/photo-check.png b/icons-png/photo-check.png deleted file mode 100644 index dccdaf7a9..000000000 Binary files a/icons-png/photo-check.png and /dev/null differ diff --git a/icons-png/photo-down.png b/icons-png/photo-down.png deleted file mode 100644 index 663bf55f8..000000000 Binary files a/icons-png/photo-down.png and /dev/null differ diff --git a/icons-png/photo-edit.png b/icons-png/photo-edit.png deleted file mode 100644 index 452a1e962..000000000 Binary files a/icons-png/photo-edit.png and /dev/null differ diff --git a/icons-png/photo-heart.png b/icons-png/photo-heart.png deleted file mode 100644 index 0df65e5f1..000000000 Binary files a/icons-png/photo-heart.png and /dev/null differ diff --git a/icons-png/photo-minus.png b/icons-png/photo-minus.png deleted file mode 100644 index e9638a5ff..000000000 Binary files a/icons-png/photo-minus.png and /dev/null differ diff --git a/icons-png/photo-off.png b/icons-png/photo-off.png deleted file mode 100644 index 773f875b7..000000000 Binary files a/icons-png/photo-off.png and /dev/null differ diff --git a/icons-png/photo-plus.png b/icons-png/photo-plus.png deleted file mode 100644 index 9be496f35..000000000 Binary files a/icons-png/photo-plus.png and /dev/null differ diff --git a/icons-png/photo-search.png b/icons-png/photo-search.png deleted file mode 100644 index f116e009c..000000000 Binary files a/icons-png/photo-search.png and /dev/null differ diff --git a/icons-png/photo-shield.png b/icons-png/photo-shield.png deleted file mode 100644 index 57622bf2b..000000000 Binary files a/icons-png/photo-shield.png and /dev/null differ diff --git a/icons-png/photo-star.png b/icons-png/photo-star.png deleted file mode 100644 index 2367a0894..000000000 Binary files a/icons-png/photo-star.png and /dev/null differ diff --git a/icons-png/photo-up.png b/icons-png/photo-up.png deleted file mode 100644 index 50e8524c3..000000000 Binary files a/icons-png/photo-up.png and /dev/null differ diff --git a/icons-png/photo-x.png b/icons-png/photo-x.png deleted file mode 100644 index c03f5f292..000000000 Binary files a/icons-png/photo-x.png and /dev/null differ diff --git a/icons-png/photo.png b/icons-png/photo.png deleted file mode 100644 index 0b7a886e3..000000000 Binary files a/icons-png/photo.png and /dev/null differ diff --git a/icons-png/physotherapist.png b/icons-png/physotherapist.png deleted file mode 100644 index fc18ed0c6..000000000 Binary files a/icons-png/physotherapist.png and /dev/null differ diff --git a/icons-png/picture-in-picture-off.png b/icons-png/picture-in-picture-off.png deleted file mode 100644 index a21b881cd..000000000 Binary files a/icons-png/picture-in-picture-off.png and /dev/null differ diff --git a/icons-png/picture-in-picture-on.png b/icons-png/picture-in-picture-on.png deleted file mode 100644 index f2384732b..000000000 Binary files a/icons-png/picture-in-picture-on.png and /dev/null differ diff --git a/icons-png/picture-in-picture-top.png b/icons-png/picture-in-picture-top.png deleted file mode 100644 index 7b049e3f1..000000000 Binary files a/icons-png/picture-in-picture-top.png and /dev/null differ diff --git a/icons-png/picture-in-picture.png b/icons-png/picture-in-picture.png deleted file mode 100644 index 17427cd6a..000000000 Binary files a/icons-png/picture-in-picture.png and /dev/null differ diff --git a/icons-png/pig-money.png b/icons-png/pig-money.png deleted file mode 100644 index 47882fba2..000000000 Binary files a/icons-png/pig-money.png and /dev/null differ diff --git a/icons-png/pig-off.png b/icons-png/pig-off.png deleted file mode 100644 index 9a45ede0e..000000000 Binary files a/icons-png/pig-off.png and /dev/null differ diff --git a/icons-png/pig.png b/icons-png/pig.png deleted file mode 100644 index 8bff690bd..000000000 Binary files a/icons-png/pig.png and /dev/null differ diff --git a/icons-png/pilcrow.png b/icons-png/pilcrow.png deleted file mode 100644 index 0c6750f8b..000000000 Binary files a/icons-png/pilcrow.png and /dev/null differ diff --git a/icons-png/pill-off.png b/icons-png/pill-off.png deleted file mode 100644 index a79fbab55..000000000 Binary files a/icons-png/pill-off.png and /dev/null differ diff --git a/icons-png/pill.png b/icons-png/pill.png deleted file mode 100644 index ab85ff0ce..000000000 Binary files a/icons-png/pill.png and /dev/null differ diff --git a/icons-png/pills.png b/icons-png/pills.png deleted file mode 100644 index e2e1ed26e..000000000 Binary files a/icons-png/pills.png and /dev/null differ diff --git a/icons-png/pin.png b/icons-png/pin.png deleted file mode 100644 index fec6eb98b..000000000 Binary files a/icons-png/pin.png and /dev/null differ diff --git a/icons-png/ping-pong.png b/icons-png/ping-pong.png deleted file mode 100644 index 3cf74233a..000000000 Binary files a/icons-png/ping-pong.png and /dev/null differ diff --git a/icons-png/pinned-off.png b/icons-png/pinned-off.png deleted file mode 100644 index 369d0a4d1..000000000 Binary files a/icons-png/pinned-off.png and /dev/null differ diff --git a/icons-png/pinned.png b/icons-png/pinned.png deleted file mode 100644 index a16793e08..000000000 Binary files a/icons-png/pinned.png and /dev/null differ diff --git a/icons-png/pizza-off.png b/icons-png/pizza-off.png deleted file mode 100644 index a98b463d8..000000000 Binary files a/icons-png/pizza-off.png and /dev/null differ diff --git a/icons-png/pizza.png b/icons-png/pizza.png deleted file mode 100644 index 2be92c53a..000000000 Binary files a/icons-png/pizza.png and /dev/null differ diff --git a/icons-png/placeholder.png b/icons-png/placeholder.png deleted file mode 100644 index 7ad1bca1b..000000000 Binary files a/icons-png/placeholder.png and /dev/null differ diff --git a/icons-png/plane-arrival.png b/icons-png/plane-arrival.png deleted file mode 100644 index 56c3c1732..000000000 Binary files a/icons-png/plane-arrival.png and /dev/null differ diff --git a/icons-png/plane-departure.png b/icons-png/plane-departure.png deleted file mode 100644 index 5815d370c..000000000 Binary files a/icons-png/plane-departure.png and /dev/null differ diff --git a/icons-png/plane-inflight.png b/icons-png/plane-inflight.png deleted file mode 100644 index 002e301e5..000000000 Binary files a/icons-png/plane-inflight.png and /dev/null differ diff --git a/icons-png/plane-off.png b/icons-png/plane-off.png deleted file mode 100644 index 5b620f9fe..000000000 Binary files a/icons-png/plane-off.png and /dev/null differ diff --git a/icons-png/plane-tilt.png b/icons-png/plane-tilt.png deleted file mode 100644 index 2539d0e98..000000000 Binary files a/icons-png/plane-tilt.png and /dev/null differ diff --git a/icons-png/plane.png b/icons-png/plane.png deleted file mode 100644 index 691a73072..000000000 Binary files a/icons-png/plane.png and /dev/null differ diff --git a/icons-png/planet-off.png b/icons-png/planet-off.png deleted file mode 100644 index 9b806b11f..000000000 Binary files a/icons-png/planet-off.png and /dev/null differ diff --git a/icons-png/planet.png b/icons-png/planet.png deleted file mode 100644 index a062a7503..000000000 Binary files a/icons-png/planet.png and /dev/null differ diff --git a/icons-png/plant-2-off.png b/icons-png/plant-2-off.png deleted file mode 100644 index 173b39e91..000000000 Binary files a/icons-png/plant-2-off.png and /dev/null differ diff --git a/icons-png/plant-2.png b/icons-png/plant-2.png deleted file mode 100644 index 79e9d2762..000000000 Binary files a/icons-png/plant-2.png and /dev/null differ diff --git a/icons-png/plant-off.png b/icons-png/plant-off.png deleted file mode 100644 index d66ec2756..000000000 Binary files a/icons-png/plant-off.png and /dev/null differ diff --git a/icons-png/plant.png b/icons-png/plant.png deleted file mode 100644 index 0ad3920ff..000000000 Binary files a/icons-png/plant.png and /dev/null differ diff --git a/icons-png/play-card-off.png b/icons-png/play-card-off.png deleted file mode 100644 index 39aa50c7a..000000000 Binary files a/icons-png/play-card-off.png and /dev/null differ diff --git a/icons-png/play-card.png b/icons-png/play-card.png deleted file mode 100644 index 0ddcb603a..000000000 Binary files a/icons-png/play-card.png and /dev/null differ diff --git a/icons-png/player-eject.png b/icons-png/player-eject.png deleted file mode 100644 index a801bd4b0..000000000 Binary files a/icons-png/player-eject.png and /dev/null differ diff --git a/icons-png/player-pause.png b/icons-png/player-pause.png deleted file mode 100644 index b47ab5621..000000000 Binary files a/icons-png/player-pause.png and /dev/null differ diff --git a/icons-png/player-play.png b/icons-png/player-play.png deleted file mode 100644 index 46cfdd382..000000000 Binary files a/icons-png/player-play.png and /dev/null differ diff --git a/icons-png/player-record.png b/icons-png/player-record.png deleted file mode 100644 index 63c786326..000000000 Binary files a/icons-png/player-record.png and /dev/null differ diff --git a/icons-png/player-skip-back.png b/icons-png/player-skip-back.png deleted file mode 100644 index 2db4b651a..000000000 Binary files a/icons-png/player-skip-back.png and /dev/null differ diff --git a/icons-png/player-skip-forward.png b/icons-png/player-skip-forward.png deleted file mode 100644 index 39939c800..000000000 Binary files a/icons-png/player-skip-forward.png and /dev/null differ diff --git a/icons-png/player-stop.png b/icons-png/player-stop.png deleted file mode 100644 index 95f0a6672..000000000 Binary files a/icons-png/player-stop.png and /dev/null differ diff --git a/icons-png/player-track-next.png b/icons-png/player-track-next.png deleted file mode 100644 index 176c8fce2..000000000 Binary files a/icons-png/player-track-next.png and /dev/null differ diff --git a/icons-png/player-track-prev.png b/icons-png/player-track-prev.png deleted file mode 100644 index 73140777e..000000000 Binary files a/icons-png/player-track-prev.png and /dev/null differ diff --git a/icons-png/playlist-add.png b/icons-png/playlist-add.png deleted file mode 100644 index 0f7b5ad60..000000000 Binary files a/icons-png/playlist-add.png and /dev/null differ diff --git a/icons-png/playlist-off.png b/icons-png/playlist-off.png deleted file mode 100644 index 4b6047071..000000000 Binary files a/icons-png/playlist-off.png and /dev/null differ diff --git a/icons-png/playlist-x.png b/icons-png/playlist-x.png deleted file mode 100644 index 45b5047a0..000000000 Binary files a/icons-png/playlist-x.png and /dev/null differ diff --git a/icons-png/playlist.png b/icons-png/playlist.png deleted file mode 100644 index 41062279b..000000000 Binary files a/icons-png/playlist.png and /dev/null differ diff --git a/icons-png/playstation-circle.png b/icons-png/playstation-circle.png deleted file mode 100644 index 93423890b..000000000 Binary files a/icons-png/playstation-circle.png and /dev/null differ diff --git a/icons-png/playstation-square.png b/icons-png/playstation-square.png deleted file mode 100644 index 0a1841afe..000000000 Binary files a/icons-png/playstation-square.png and /dev/null differ diff --git a/icons-png/playstation-triangle.png b/icons-png/playstation-triangle.png deleted file mode 100644 index f1f1e598e..000000000 Binary files a/icons-png/playstation-triangle.png and /dev/null differ diff --git a/icons-png/playstation-x.png b/icons-png/playstation-x.png deleted file mode 100644 index 10da0eacb..000000000 Binary files a/icons-png/playstation-x.png and /dev/null differ diff --git a/icons-png/plug-connected-x.png b/icons-png/plug-connected-x.png deleted file mode 100644 index 7d55613d3..000000000 Binary files a/icons-png/plug-connected-x.png and /dev/null differ diff --git a/icons-png/plug-connected.png b/icons-png/plug-connected.png deleted file mode 100644 index b031e17c6..000000000 Binary files a/icons-png/plug-connected.png and /dev/null differ diff --git a/icons-png/plug-off.png b/icons-png/plug-off.png deleted file mode 100644 index 6cae50bcf..000000000 Binary files a/icons-png/plug-off.png and /dev/null differ diff --git a/icons-png/plug-x.png b/icons-png/plug-x.png deleted file mode 100644 index 65e660da3..000000000 Binary files a/icons-png/plug-x.png and /dev/null differ diff --git a/icons-png/plug.png b/icons-png/plug.png deleted file mode 100644 index 09a6cfbf1..000000000 Binary files a/icons-png/plug.png and /dev/null differ diff --git a/icons-png/plus.png b/icons-png/plus.png deleted file mode 100644 index 89bfe8f4d..000000000 Binary files a/icons-png/plus.png and /dev/null differ diff --git a/icons-png/png.png b/icons-png/png.png deleted file mode 100644 index df91c885a..000000000 Binary files a/icons-png/png.png and /dev/null differ diff --git a/icons-png/podium-off.png b/icons-png/podium-off.png deleted file mode 100644 index 2d8bc7f9b..000000000 Binary files a/icons-png/podium-off.png and /dev/null differ diff --git a/icons-png/podium.png b/icons-png/podium.png deleted file mode 100644 index e29cdc4f3..000000000 Binary files a/icons-png/podium.png and /dev/null differ diff --git a/icons-png/point-off.png b/icons-png/point-off.png deleted file mode 100644 index 3014b3cd5..000000000 Binary files a/icons-png/point-off.png and /dev/null differ diff --git a/icons-png/point.png b/icons-png/point.png deleted file mode 100644 index 35f978911..000000000 Binary files a/icons-png/point.png and /dev/null differ diff --git a/icons-png/pointer.png b/icons-png/pointer.png deleted file mode 100644 index faaf021b3..000000000 Binary files a/icons-png/pointer.png and /dev/null differ diff --git a/icons-png/pokeball-off.png b/icons-png/pokeball-off.png deleted file mode 100644 index 8ddd71dac..000000000 Binary files a/icons-png/pokeball-off.png and /dev/null differ diff --git a/icons-png/pokeball.png b/icons-png/pokeball.png deleted file mode 100644 index 115e93d5e..000000000 Binary files a/icons-png/pokeball.png and /dev/null differ diff --git a/icons-png/poker-chip.png b/icons-png/poker-chip.png deleted file mode 100644 index daebe8e02..000000000 Binary files a/icons-png/poker-chip.png and /dev/null differ diff --git a/icons-png/polaroid.png b/icons-png/polaroid.png deleted file mode 100644 index d07cd1e24..000000000 Binary files a/icons-png/polaroid.png and /dev/null differ diff --git a/icons-png/polygon-off.png b/icons-png/polygon-off.png deleted file mode 100644 index db22a650c..000000000 Binary files a/icons-png/polygon-off.png and /dev/null differ diff --git a/icons-png/polygon.png b/icons-png/polygon.png deleted file mode 100644 index 023853280..000000000 Binary files a/icons-png/polygon.png and /dev/null differ diff --git a/icons-png/poo.png b/icons-png/poo.png deleted file mode 100644 index df81e03e4..000000000 Binary files a/icons-png/poo.png and /dev/null differ diff --git a/icons-png/pool-off.png b/icons-png/pool-off.png deleted file mode 100644 index 6b534c03a..000000000 Binary files a/icons-png/pool-off.png and /dev/null differ diff --git a/icons-png/pool.png b/icons-png/pool.png deleted file mode 100644 index b3512d7bc..000000000 Binary files a/icons-png/pool.png and /dev/null differ diff --git a/icons-png/power.png b/icons-png/power.png deleted file mode 100644 index 9ef780836..000000000 Binary files a/icons-png/power.png and /dev/null differ diff --git a/icons-png/pray.png b/icons-png/pray.png deleted file mode 100644 index d0fe5868a..000000000 Binary files a/icons-png/pray.png and /dev/null differ diff --git a/icons-png/premium-rights.png b/icons-png/premium-rights.png deleted file mode 100644 index a04418b2c..000000000 Binary files a/icons-png/premium-rights.png and /dev/null differ diff --git a/icons-png/prescription.png b/icons-png/prescription.png deleted file mode 100644 index 5db534309..000000000 Binary files a/icons-png/prescription.png and /dev/null differ diff --git a/icons-png/presentation-analytics.png b/icons-png/presentation-analytics.png deleted file mode 100644 index 5d952b568..000000000 Binary files a/icons-png/presentation-analytics.png and /dev/null differ diff --git a/icons-png/presentation-off.png b/icons-png/presentation-off.png deleted file mode 100644 index 92b32399a..000000000 Binary files a/icons-png/presentation-off.png and /dev/null differ diff --git a/icons-png/presentation.png b/icons-png/presentation.png deleted file mode 100644 index c4ac47ff6..000000000 Binary files a/icons-png/presentation.png and /dev/null differ diff --git a/icons-png/printer-off.png b/icons-png/printer-off.png deleted file mode 100644 index 309a2cfd0..000000000 Binary files a/icons-png/printer-off.png and /dev/null differ diff --git a/icons-png/printer.png b/icons-png/printer.png deleted file mode 100644 index 5e9298427..000000000 Binary files a/icons-png/printer.png and /dev/null differ diff --git a/icons-png/prison.png b/icons-png/prison.png deleted file mode 100644 index d66c4559e..000000000 Binary files a/icons-png/prison.png and /dev/null differ diff --git a/icons-png/prompt.png b/icons-png/prompt.png deleted file mode 100644 index 5f3f47fb4..000000000 Binary files a/icons-png/prompt.png and /dev/null differ diff --git a/icons-png/propeller-off.png b/icons-png/propeller-off.png deleted file mode 100644 index a9e5c82ac..000000000 Binary files a/icons-png/propeller-off.png and /dev/null differ diff --git a/icons-png/propeller.png b/icons-png/propeller.png deleted file mode 100644 index 1166c9a56..000000000 Binary files a/icons-png/propeller.png and /dev/null differ diff --git a/icons-png/pumpkin-scary.png b/icons-png/pumpkin-scary.png deleted file mode 100644 index 9985ddeed..000000000 Binary files a/icons-png/pumpkin-scary.png and /dev/null differ diff --git a/icons-png/puzzle-2.png b/icons-png/puzzle-2.png deleted file mode 100644 index f0e3502e5..000000000 Binary files a/icons-png/puzzle-2.png and /dev/null differ diff --git a/icons-png/puzzle-off.png b/icons-png/puzzle-off.png deleted file mode 100644 index a23d3f509..000000000 Binary files a/icons-png/puzzle-off.png and /dev/null differ diff --git a/icons-png/puzzle.png b/icons-png/puzzle.png deleted file mode 100644 index 3c021656a..000000000 Binary files a/icons-png/puzzle.png and /dev/null differ diff --git a/icons-png/pyramid-off.png b/icons-png/pyramid-off.png deleted file mode 100644 index aa6bc8e22..000000000 Binary files a/icons-png/pyramid-off.png and /dev/null differ diff --git a/icons-png/pyramid.png b/icons-png/pyramid.png deleted file mode 100644 index 4d64465ac..000000000 Binary files a/icons-png/pyramid.png and /dev/null differ diff --git a/icons-png/qrcode-off.png b/icons-png/qrcode-off.png deleted file mode 100644 index 66ff70142..000000000 Binary files a/icons-png/qrcode-off.png and /dev/null differ diff --git a/icons-png/qrcode.png b/icons-png/qrcode.png deleted file mode 100644 index 7580b3332..000000000 Binary files a/icons-png/qrcode.png and /dev/null differ diff --git a/icons-png/question-circle.png b/icons-png/question-circle.png deleted file mode 100644 index a25543e1a..000000000 Binary files a/icons-png/question-circle.png and /dev/null differ diff --git a/icons-png/question-mark.png b/icons-png/question-mark.png deleted file mode 100644 index bafa2fc9e..000000000 Binary files a/icons-png/question-mark.png and /dev/null differ diff --git a/icons-png/quote-off.png b/icons-png/quote-off.png deleted file mode 100644 index 9e6277c71..000000000 Binary files a/icons-png/quote-off.png and /dev/null differ diff --git a/icons-png/quote.png b/icons-png/quote.png deleted file mode 100644 index a77a44777..000000000 Binary files a/icons-png/quote.png and /dev/null differ diff --git a/icons-png/radar-2.png b/icons-png/radar-2.png deleted file mode 100644 index 1c5e4b4cb..000000000 Binary files a/icons-png/radar-2.png and /dev/null differ diff --git a/icons-png/radar-off.png b/icons-png/radar-off.png deleted file mode 100644 index 3899d7614..000000000 Binary files a/icons-png/radar-off.png and /dev/null differ diff --git a/icons-png/radar.png b/icons-png/radar.png deleted file mode 100644 index 35d5ba84b..000000000 Binary files a/icons-png/radar.png and /dev/null differ diff --git a/icons-png/radio-off.png b/icons-png/radio-off.png deleted file mode 100644 index 8eec1d5e6..000000000 Binary files a/icons-png/radio-off.png and /dev/null differ diff --git a/icons-png/radio.png b/icons-png/radio.png deleted file mode 100644 index 68909e1b9..000000000 Binary files a/icons-png/radio.png and /dev/null differ diff --git a/icons-png/radioactive-off.png b/icons-png/radioactive-off.png deleted file mode 100644 index c96f7165e..000000000 Binary files a/icons-png/radioactive-off.png and /dev/null differ diff --git a/icons-png/radioactive.png b/icons-png/radioactive.png deleted file mode 100644 index 73725d464..000000000 Binary files a/icons-png/radioactive.png and /dev/null differ diff --git a/icons-png/radius-bottom-left.png b/icons-png/radius-bottom-left.png deleted file mode 100644 index a735e5447..000000000 Binary files a/icons-png/radius-bottom-left.png and /dev/null differ diff --git a/icons-png/radius-bottom-right.png b/icons-png/radius-bottom-right.png deleted file mode 100644 index 90f46c2b4..000000000 Binary files a/icons-png/radius-bottom-right.png and /dev/null differ diff --git a/icons-png/radius-top-left.png b/icons-png/radius-top-left.png deleted file mode 100644 index 8385cdaed..000000000 Binary files a/icons-png/radius-top-left.png and /dev/null differ diff --git a/icons-png/radius-top-right.png b/icons-png/radius-top-right.png deleted file mode 100644 index 40eace5ab..000000000 Binary files a/icons-png/radius-top-right.png and /dev/null differ diff --git a/icons-png/rainbow-off.png b/icons-png/rainbow-off.png deleted file mode 100644 index 4e0361a67..000000000 Binary files a/icons-png/rainbow-off.png and /dev/null differ diff --git a/icons-png/rainbow.png b/icons-png/rainbow.png deleted file mode 100644 index 46802d2d0..000000000 Binary files a/icons-png/rainbow.png and /dev/null differ diff --git a/icons-png/rating-12-plus.png b/icons-png/rating-12-plus.png deleted file mode 100644 index a14587335..000000000 Binary files a/icons-png/rating-12-plus.png and /dev/null differ diff --git a/icons-png/rating-14-plus.png b/icons-png/rating-14-plus.png deleted file mode 100644 index c6049550b..000000000 Binary files a/icons-png/rating-14-plus.png and /dev/null differ diff --git a/icons-png/rating-16-plus.png b/icons-png/rating-16-plus.png deleted file mode 100644 index 12dfc43e1..000000000 Binary files a/icons-png/rating-16-plus.png and /dev/null differ diff --git a/icons-png/rating-18-plus.png b/icons-png/rating-18-plus.png deleted file mode 100644 index 66567b9be..000000000 Binary files a/icons-png/rating-18-plus.png and /dev/null differ diff --git a/icons-png/rating-21-plus.png b/icons-png/rating-21-plus.png deleted file mode 100644 index cc48d6000..000000000 Binary files a/icons-png/rating-21-plus.png and /dev/null differ diff --git a/icons-png/razor-electric.png b/icons-png/razor-electric.png deleted file mode 100644 index 730e54480..000000000 Binary files a/icons-png/razor-electric.png and /dev/null differ diff --git a/icons-png/razor.png b/icons-png/razor.png deleted file mode 100644 index 5597d17cc..000000000 Binary files a/icons-png/razor.png and /dev/null differ diff --git a/icons-png/receipt-2.png b/icons-png/receipt-2.png deleted file mode 100644 index 56eba2fbd..000000000 Binary files a/icons-png/receipt-2.png and /dev/null differ diff --git a/icons-png/receipt-off.png b/icons-png/receipt-off.png deleted file mode 100644 index 66b0916d8..000000000 Binary files a/icons-png/receipt-off.png and /dev/null differ diff --git a/icons-png/receipt-refund.png b/icons-png/receipt-refund.png deleted file mode 100644 index 1c0f36b9c..000000000 Binary files a/icons-png/receipt-refund.png and /dev/null differ diff --git a/icons-png/receipt-tax.png b/icons-png/receipt-tax.png deleted file mode 100644 index b69a082b0..000000000 Binary files a/icons-png/receipt-tax.png and /dev/null differ diff --git a/icons-png/receipt.png b/icons-png/receipt.png deleted file mode 100644 index aebf808be..000000000 Binary files a/icons-png/receipt.png and /dev/null differ diff --git a/icons-png/recharging.png b/icons-png/recharging.png deleted file mode 100644 index f6cca8586..000000000 Binary files a/icons-png/recharging.png and /dev/null differ diff --git a/icons-png/record-mail-off.png b/icons-png/record-mail-off.png deleted file mode 100644 index 09e544d60..000000000 Binary files a/icons-png/record-mail-off.png and /dev/null differ diff --git a/icons-png/record-mail.png b/icons-png/record-mail.png deleted file mode 100644 index 10aad15b9..000000000 Binary files a/icons-png/record-mail.png and /dev/null differ diff --git a/icons-png/rectangle-vertical.png b/icons-png/rectangle-vertical.png deleted file mode 100644 index e460947f9..000000000 Binary files a/icons-png/rectangle-vertical.png and /dev/null differ diff --git a/icons-png/rectangle.png b/icons-png/rectangle.png deleted file mode 100644 index b85bcef33..000000000 Binary files a/icons-png/rectangle.png and /dev/null differ diff --git a/icons-png/recycle-off.png b/icons-png/recycle-off.png deleted file mode 100644 index 6f6065b1b..000000000 Binary files a/icons-png/recycle-off.png and /dev/null differ diff --git a/icons-png/recycle.png b/icons-png/recycle.png deleted file mode 100644 index f9daf0d28..000000000 Binary files a/icons-png/recycle.png and /dev/null differ diff --git a/icons-png/refresh-alert.png b/icons-png/refresh-alert.png deleted file mode 100644 index a060699dc..000000000 Binary files a/icons-png/refresh-alert.png and /dev/null differ diff --git a/icons-png/refresh-dot.png b/icons-png/refresh-dot.png deleted file mode 100644 index 5351c2f20..000000000 Binary files a/icons-png/refresh-dot.png and /dev/null differ diff --git a/icons-png/refresh-off.png b/icons-png/refresh-off.png deleted file mode 100644 index 38982f739..000000000 Binary files a/icons-png/refresh-off.png and /dev/null differ diff --git a/icons-png/refresh.png b/icons-png/refresh.png deleted file mode 100644 index 3e455af43..000000000 Binary files a/icons-png/refresh.png and /dev/null differ diff --git a/icons-png/regex-off.png b/icons-png/regex-off.png deleted file mode 100644 index dda04e765..000000000 Binary files a/icons-png/regex-off.png and /dev/null differ diff --git a/icons-png/regex.png b/icons-png/regex.png deleted file mode 100644 index cad072183..000000000 Binary files a/icons-png/regex.png and /dev/null differ diff --git a/icons-png/registered.png b/icons-png/registered.png deleted file mode 100644 index 9ec8f3cf5..000000000 Binary files a/icons-png/registered.png and /dev/null differ diff --git a/icons-png/relation-many-to-many.png b/icons-png/relation-many-to-many.png deleted file mode 100644 index 63c14c37b..000000000 Binary files a/icons-png/relation-many-to-many.png and /dev/null differ diff --git a/icons-png/relation-one-to-many.png b/icons-png/relation-one-to-many.png deleted file mode 100644 index b8b74e79a..000000000 Binary files a/icons-png/relation-one-to-many.png and /dev/null differ diff --git a/icons-png/relation-one-to-one.png b/icons-png/relation-one-to-one.png deleted file mode 100644 index c68dee583..000000000 Binary files a/icons-png/relation-one-to-one.png and /dev/null differ diff --git a/icons-png/reload.png b/icons-png/reload.png deleted file mode 100644 index aad33c329..000000000 Binary files a/icons-png/reload.png and /dev/null differ diff --git a/icons-png/repeat-off.png b/icons-png/repeat-off.png deleted file mode 100644 index 330ae4329..000000000 Binary files a/icons-png/repeat-off.png and /dev/null differ diff --git a/icons-png/repeat-once.png b/icons-png/repeat-once.png deleted file mode 100644 index 95992f9dc..000000000 Binary files a/icons-png/repeat-once.png and /dev/null differ diff --git a/icons-png/repeat.png b/icons-png/repeat.png deleted file mode 100644 index 47eeee12d..000000000 Binary files a/icons-png/repeat.png and /dev/null differ diff --git a/icons-png/replace-off.png b/icons-png/replace-off.png deleted file mode 100644 index 9551c9758..000000000 Binary files a/icons-png/replace-off.png and /dev/null differ diff --git a/icons-png/replace.png b/icons-png/replace.png deleted file mode 100644 index e133bf0ca..000000000 Binary files a/icons-png/replace.png and /dev/null differ diff --git a/icons-png/report-analytics.png b/icons-png/report-analytics.png deleted file mode 100644 index a9bd4b836..000000000 Binary files a/icons-png/report-analytics.png and /dev/null differ diff --git a/icons-png/report-medical.png b/icons-png/report-medical.png deleted file mode 100644 index 7cd48fead..000000000 Binary files a/icons-png/report-medical.png and /dev/null differ diff --git a/icons-png/report-money.png b/icons-png/report-money.png deleted file mode 100644 index 1073382cd..000000000 Binary files a/icons-png/report-money.png and /dev/null differ diff --git a/icons-png/report-off.png b/icons-png/report-off.png deleted file mode 100644 index c3d147c49..000000000 Binary files a/icons-png/report-off.png and /dev/null differ diff --git a/icons-png/report-search.png b/icons-png/report-search.png deleted file mode 100644 index 5e94136fd..000000000 Binary files a/icons-png/report-search.png and /dev/null differ diff --git a/icons-png/report.png b/icons-png/report.png deleted file mode 100644 index f4e63603f..000000000 Binary files a/icons-png/report.png and /dev/null differ diff --git a/icons-png/resize.png b/icons-png/resize.png deleted file mode 100644 index 560ee1bc5..000000000 Binary files a/icons-png/resize.png and /dev/null differ diff --git a/icons-png/ribbon-health.png b/icons-png/ribbon-health.png deleted file mode 100644 index 85aa3161b..000000000 Binary files a/icons-png/ribbon-health.png and /dev/null differ diff --git a/icons-png/ripple-off.png b/icons-png/ripple-off.png deleted file mode 100644 index 23c9556f2..000000000 Binary files a/icons-png/ripple-off.png and /dev/null differ diff --git a/icons-png/ripple.png b/icons-png/ripple.png deleted file mode 100644 index 71c202582..000000000 Binary files a/icons-png/ripple.png and /dev/null differ diff --git a/icons-png/road-off.png b/icons-png/road-off.png deleted file mode 100644 index 20437e377..000000000 Binary files a/icons-png/road-off.png and /dev/null differ diff --git a/icons-png/road-sign.png b/icons-png/road-sign.png deleted file mode 100644 index 13e6f68b1..000000000 Binary files a/icons-png/road-sign.png and /dev/null differ diff --git a/icons-png/road.png b/icons-png/road.png deleted file mode 100644 index c6a67fd47..000000000 Binary files a/icons-png/road.png and /dev/null differ diff --git a/icons-png/robot-off.png b/icons-png/robot-off.png deleted file mode 100644 index 08615a99c..000000000 Binary files a/icons-png/robot-off.png and /dev/null differ diff --git a/icons-png/robot.png b/icons-png/robot.png deleted file mode 100644 index 151e5f1cd..000000000 Binary files a/icons-png/robot.png and /dev/null differ diff --git a/icons-png/rocket-off.png b/icons-png/rocket-off.png deleted file mode 100644 index 4161448c9..000000000 Binary files a/icons-png/rocket-off.png and /dev/null differ diff --git a/icons-png/rocket.png b/icons-png/rocket.png deleted file mode 100644 index 06de61484..000000000 Binary files a/icons-png/rocket.png and /dev/null differ diff --git a/icons-png/roller-skating.png b/icons-png/roller-skating.png deleted file mode 100644 index 71e0ca1df..000000000 Binary files a/icons-png/roller-skating.png and /dev/null differ diff --git a/icons-png/rollercoaster-off.png b/icons-png/rollercoaster-off.png deleted file mode 100644 index 89d7f1394..000000000 Binary files a/icons-png/rollercoaster-off.png and /dev/null differ diff --git a/icons-png/rollercoaster.png b/icons-png/rollercoaster.png deleted file mode 100644 index d9ca0289f..000000000 Binary files a/icons-png/rollercoaster.png and /dev/null differ diff --git a/icons-png/rosette-number-0.png b/icons-png/rosette-number-0.png deleted file mode 100644 index 4e387fd9b..000000000 Binary files a/icons-png/rosette-number-0.png and /dev/null differ diff --git a/icons-png/rosette-number-1.png b/icons-png/rosette-number-1.png deleted file mode 100644 index 060ce6f0a..000000000 Binary files a/icons-png/rosette-number-1.png and /dev/null differ diff --git a/icons-png/rosette-number-2.png b/icons-png/rosette-number-2.png deleted file mode 100644 index f48e3e5e4..000000000 Binary files a/icons-png/rosette-number-2.png and /dev/null differ diff --git a/icons-png/rosette-number-3.png b/icons-png/rosette-number-3.png deleted file mode 100644 index 7a801d18b..000000000 Binary files a/icons-png/rosette-number-3.png and /dev/null differ diff --git a/icons-png/rosette-number-4.png b/icons-png/rosette-number-4.png deleted file mode 100644 index 9c2dfc293..000000000 Binary files a/icons-png/rosette-number-4.png and /dev/null differ diff --git a/icons-png/rosette-number-5.png b/icons-png/rosette-number-5.png deleted file mode 100644 index 707130bf6..000000000 Binary files a/icons-png/rosette-number-5.png and /dev/null differ diff --git a/icons-png/rosette-number-6.png b/icons-png/rosette-number-6.png deleted file mode 100644 index 4c5d430d1..000000000 Binary files a/icons-png/rosette-number-6.png and /dev/null differ diff --git a/icons-png/rosette-number-7.png b/icons-png/rosette-number-7.png deleted file mode 100644 index 39009301d..000000000 Binary files a/icons-png/rosette-number-7.png and /dev/null differ diff --git a/icons-png/rosette-number-8.png b/icons-png/rosette-number-8.png deleted file mode 100644 index 6f9fff32f..000000000 Binary files a/icons-png/rosette-number-8.png and /dev/null differ diff --git a/icons-png/rosette-number-9.png b/icons-png/rosette-number-9.png deleted file mode 100644 index ed382d257..000000000 Binary files a/icons-png/rosette-number-9.png and /dev/null differ diff --git a/icons-png/rosette.png b/icons-png/rosette.png deleted file mode 100644 index 98365f772..000000000 Binary files a/icons-png/rosette.png and /dev/null differ diff --git a/icons-png/rotate-2.png b/icons-png/rotate-2.png deleted file mode 100644 index 0541c63ad..000000000 Binary files a/icons-png/rotate-2.png and /dev/null differ diff --git a/icons-png/rotate-360.png b/icons-png/rotate-360.png deleted file mode 100644 index e6126a390..000000000 Binary files a/icons-png/rotate-360.png and /dev/null differ diff --git a/icons-png/rotate-clockwise-2.png b/icons-png/rotate-clockwise-2.png deleted file mode 100644 index ebe6ad3fe..000000000 Binary files a/icons-png/rotate-clockwise-2.png and /dev/null differ diff --git a/icons-png/rotate-clockwise.png b/icons-png/rotate-clockwise.png deleted file mode 100644 index c9dbf686d..000000000 Binary files a/icons-png/rotate-clockwise.png and /dev/null differ diff --git a/icons-png/rotate-dot.png b/icons-png/rotate-dot.png deleted file mode 100644 index ee56ea803..000000000 Binary files a/icons-png/rotate-dot.png and /dev/null differ diff --git a/icons-png/rotate-rectangle.png b/icons-png/rotate-rectangle.png deleted file mode 100644 index e7b6c4872..000000000 Binary files a/icons-png/rotate-rectangle.png and /dev/null differ diff --git a/icons-png/rotate.png b/icons-png/rotate.png deleted file mode 100644 index 068f48f05..000000000 Binary files a/icons-png/rotate.png and /dev/null differ diff --git a/icons-png/route-2.png b/icons-png/route-2.png deleted file mode 100644 index 6a7871466..000000000 Binary files a/icons-png/route-2.png and /dev/null differ diff --git a/icons-png/route-off.png b/icons-png/route-off.png deleted file mode 100644 index e2a6d9916..000000000 Binary files a/icons-png/route-off.png and /dev/null differ diff --git a/icons-png/route.png b/icons-png/route.png deleted file mode 100644 index 07a7730e5..000000000 Binary files a/icons-png/route.png and /dev/null differ diff --git a/icons-png/router-off.png b/icons-png/router-off.png deleted file mode 100644 index 6b2c6041b..000000000 Binary files a/icons-png/router-off.png and /dev/null differ diff --git a/icons-png/router.png b/icons-png/router.png deleted file mode 100644 index 71f6b1621..000000000 Binary files a/icons-png/router.png and /dev/null differ diff --git a/icons-png/row-insert-bottom.png b/icons-png/row-insert-bottom.png deleted file mode 100644 index 0d1f1c651..000000000 Binary files a/icons-png/row-insert-bottom.png and /dev/null differ diff --git a/icons-png/row-insert-top.png b/icons-png/row-insert-top.png deleted file mode 100644 index ff41c0348..000000000 Binary files a/icons-png/row-insert-top.png and /dev/null differ diff --git a/icons-png/rss.png b/icons-png/rss.png deleted file mode 100644 index 5fe50386c..000000000 Binary files a/icons-png/rss.png and /dev/null differ diff --git a/icons-png/rubber-stamp-off.png b/icons-png/rubber-stamp-off.png deleted file mode 100644 index 0d06c7091..000000000 Binary files a/icons-png/rubber-stamp-off.png and /dev/null differ diff --git a/icons-png/rubber-stamp.png b/icons-png/rubber-stamp.png deleted file mode 100644 index b5e9c02ce..000000000 Binary files a/icons-png/rubber-stamp.png and /dev/null differ diff --git a/icons-png/ruler-2-off.png b/icons-png/ruler-2-off.png deleted file mode 100644 index 23d4a3e95..000000000 Binary files a/icons-png/ruler-2-off.png and /dev/null differ diff --git a/icons-png/ruler-2.png b/icons-png/ruler-2.png deleted file mode 100644 index 8ab1ffd9b..000000000 Binary files a/icons-png/ruler-2.png and /dev/null differ diff --git a/icons-png/ruler-3.png b/icons-png/ruler-3.png deleted file mode 100644 index 9bc060bf1..000000000 Binary files a/icons-png/ruler-3.png and /dev/null differ diff --git a/icons-png/ruler-measure.png b/icons-png/ruler-measure.png deleted file mode 100644 index 8e5c93a0a..000000000 Binary files a/icons-png/ruler-measure.png and /dev/null differ diff --git a/icons-png/ruler-off.png b/icons-png/ruler-off.png deleted file mode 100644 index 7d839a9fc..000000000 Binary files a/icons-png/ruler-off.png and /dev/null differ diff --git a/icons-png/ruler.png b/icons-png/ruler.png deleted file mode 100644 index 523c20c4a..000000000 Binary files a/icons-png/ruler.png and /dev/null differ diff --git a/icons-png/run.png b/icons-png/run.png deleted file mode 100644 index 9c7a50a30..000000000 Binary files a/icons-png/run.png and /dev/null differ diff --git a/icons-png/s-turn-down.png b/icons-png/s-turn-down.png deleted file mode 100644 index 1593d9f4c..000000000 Binary files a/icons-png/s-turn-down.png and /dev/null differ diff --git a/icons-png/s-turn-left.png b/icons-png/s-turn-left.png deleted file mode 100644 index 92db6661a..000000000 Binary files a/icons-png/s-turn-left.png and /dev/null differ diff --git a/icons-png/s-turn-right.png b/icons-png/s-turn-right.png deleted file mode 100644 index 4c8fd70b1..000000000 Binary files a/icons-png/s-turn-right.png and /dev/null differ diff --git a/icons-png/s-turn-up.png b/icons-png/s-turn-up.png deleted file mode 100644 index e50fe0de0..000000000 Binary files a/icons-png/s-turn-up.png and /dev/null differ diff --git a/icons-png/sailboat-2.png b/icons-png/sailboat-2.png deleted file mode 100644 index 91a3fbed5..000000000 Binary files a/icons-png/sailboat-2.png and /dev/null differ diff --git a/icons-png/sailboat-off.png b/icons-png/sailboat-off.png deleted file mode 100644 index 7e137016f..000000000 Binary files a/icons-png/sailboat-off.png and /dev/null differ diff --git a/icons-png/sailboat.png b/icons-png/sailboat.png deleted file mode 100644 index fb4b72e3e..000000000 Binary files a/icons-png/sailboat.png and /dev/null differ diff --git a/icons-png/salad.png b/icons-png/salad.png deleted file mode 100644 index b618cf770..000000000 Binary files a/icons-png/salad.png and /dev/null differ diff --git a/icons-png/salt.png b/icons-png/salt.png deleted file mode 100644 index 058d34d65..000000000 Binary files a/icons-png/salt.png and /dev/null differ diff --git a/icons-png/satellite-off.png b/icons-png/satellite-off.png deleted file mode 100644 index 87021085f..000000000 Binary files a/icons-png/satellite-off.png and /dev/null differ diff --git a/icons-png/satellite.png b/icons-png/satellite.png deleted file mode 100644 index 08ff4e70f..000000000 Binary files a/icons-png/satellite.png and /dev/null differ diff --git a/icons-png/sausage.png b/icons-png/sausage.png deleted file mode 100644 index c80f79249..000000000 Binary files a/icons-png/sausage.png and /dev/null differ diff --git a/icons-png/scale-off.png b/icons-png/scale-off.png deleted file mode 100644 index 0b5d1cc81..000000000 Binary files a/icons-png/scale-off.png and /dev/null differ diff --git a/icons-png/scale-outline-off.png b/icons-png/scale-outline-off.png deleted file mode 100644 index 302c2d0b8..000000000 Binary files a/icons-png/scale-outline-off.png and /dev/null differ diff --git a/icons-png/scale-outline.png b/icons-png/scale-outline.png deleted file mode 100644 index 4f0926cac..000000000 Binary files a/icons-png/scale-outline.png and /dev/null differ diff --git a/icons-png/scale.png b/icons-png/scale.png deleted file mode 100644 index df0655285..000000000 Binary files a/icons-png/scale.png and /dev/null differ diff --git a/icons-png/scan-eye.png b/icons-png/scan-eye.png deleted file mode 100644 index ce1ae8883..000000000 Binary files a/icons-png/scan-eye.png and /dev/null differ diff --git a/icons-png/scan.png b/icons-png/scan.png deleted file mode 100644 index f34144216..000000000 Binary files a/icons-png/scan.png and /dev/null differ diff --git a/icons-png/schema-off.png b/icons-png/schema-off.png deleted file mode 100644 index b7015bcc0..000000000 Binary files a/icons-png/schema-off.png and /dev/null differ diff --git a/icons-png/schema.png b/icons-png/schema.png deleted file mode 100644 index 13b14a2b2..000000000 Binary files a/icons-png/schema.png and /dev/null differ diff --git a/icons-png/school-bell.png b/icons-png/school-bell.png deleted file mode 100644 index 4d2206521..000000000 Binary files a/icons-png/school-bell.png and /dev/null differ diff --git a/icons-png/school-off.png b/icons-png/school-off.png deleted file mode 100644 index 678cdba32..000000000 Binary files a/icons-png/school-off.png and /dev/null differ diff --git a/icons-png/school.png b/icons-png/school.png deleted file mode 100644 index 65a0be5e4..000000000 Binary files a/icons-png/school.png and /dev/null differ diff --git a/icons-png/scissors-off.png b/icons-png/scissors-off.png deleted file mode 100644 index 648731d4c..000000000 Binary files a/icons-png/scissors-off.png and /dev/null differ diff --git a/icons-png/scissors.png b/icons-png/scissors.png deleted file mode 100644 index 8a03dbd99..000000000 Binary files a/icons-png/scissors.png and /dev/null differ diff --git a/icons-png/scooter-electric.png b/icons-png/scooter-electric.png deleted file mode 100644 index da66035f9..000000000 Binary files a/icons-png/scooter-electric.png and /dev/null differ diff --git a/icons-png/scooter.png b/icons-png/scooter.png deleted file mode 100644 index 2e99d5efa..000000000 Binary files a/icons-png/scooter.png and /dev/null differ diff --git a/icons-png/screen-share-off.png b/icons-png/screen-share-off.png deleted file mode 100644 index 4e22194c1..000000000 Binary files a/icons-png/screen-share-off.png and /dev/null differ diff --git a/icons-png/screen-share.png b/icons-png/screen-share.png deleted file mode 100644 index 8eca6ea68..000000000 Binary files a/icons-png/screen-share.png and /dev/null differ diff --git a/icons-png/screenshot.png b/icons-png/screenshot.png deleted file mode 100644 index bb2832faf..000000000 Binary files a/icons-png/screenshot.png and /dev/null differ diff --git a/icons-png/scribble-off.png b/icons-png/scribble-off.png deleted file mode 100644 index 4ea5e2365..000000000 Binary files a/icons-png/scribble-off.png and /dev/null differ diff --git a/icons-png/scribble.png b/icons-png/scribble.png deleted file mode 100644 index bd522a688..000000000 Binary files a/icons-png/scribble.png and /dev/null differ diff --git a/icons-png/script-minus.png b/icons-png/script-minus.png deleted file mode 100644 index a9c3ea368..000000000 Binary files a/icons-png/script-minus.png and /dev/null differ diff --git a/icons-png/script-plus.png b/icons-png/script-plus.png deleted file mode 100644 index a167e5be7..000000000 Binary files a/icons-png/script-plus.png and /dev/null differ diff --git a/icons-png/script-x.png b/icons-png/script-x.png deleted file mode 100644 index c611c0493..000000000 Binary files a/icons-png/script-x.png and /dev/null differ diff --git a/icons-png/script.png b/icons-png/script.png deleted file mode 100644 index 652c4b6dd..000000000 Binary files a/icons-png/script.png and /dev/null differ diff --git a/icons-png/scuba-mask-off.png b/icons-png/scuba-mask-off.png deleted file mode 100644 index 457818e60..000000000 Binary files a/icons-png/scuba-mask-off.png and /dev/null differ diff --git a/icons-png/scuba-mask.png b/icons-png/scuba-mask.png deleted file mode 100644 index 7271d4a94..000000000 Binary files a/icons-png/scuba-mask.png and /dev/null differ diff --git a/icons-png/sdk.png b/icons-png/sdk.png deleted file mode 100644 index dc116c8e5..000000000 Binary files a/icons-png/sdk.png and /dev/null differ diff --git a/icons-png/search-off.png b/icons-png/search-off.png deleted file mode 100644 index 43d3e8df0..000000000 Binary files a/icons-png/search-off.png and /dev/null differ diff --git a/icons-png/search.png b/icons-png/search.png deleted file mode 100644 index 42ed2f7c9..000000000 Binary files a/icons-png/search.png and /dev/null differ diff --git a/icons-png/section-sign.png b/icons-png/section-sign.png deleted file mode 100644 index 20d6cdc51..000000000 Binary files a/icons-png/section-sign.png and /dev/null differ diff --git a/icons-png/section.png b/icons-png/section.png deleted file mode 100644 index f0d303fe4..000000000 Binary files a/icons-png/section.png and /dev/null differ diff --git a/icons-png/seeding-off.png b/icons-png/seeding-off.png deleted file mode 100644 index 1f3c0033d..000000000 Binary files a/icons-png/seeding-off.png and /dev/null differ diff --git a/icons-png/seeding.png b/icons-png/seeding.png deleted file mode 100644 index cc8aac7ed..000000000 Binary files a/icons-png/seeding.png and /dev/null differ diff --git a/icons-png/select.png b/icons-png/select.png deleted file mode 100644 index a1dbdba7b..000000000 Binary files a/icons-png/select.png and /dev/null differ diff --git a/icons-png/selector.png b/icons-png/selector.png deleted file mode 100644 index c32e40c59..000000000 Binary files a/icons-png/selector.png and /dev/null differ diff --git a/icons-png/send-off.png b/icons-png/send-off.png deleted file mode 100644 index 02861790d..000000000 Binary files a/icons-png/send-off.png and /dev/null differ diff --git a/icons-png/send.png b/icons-png/send.png deleted file mode 100644 index 191fe1eaa..000000000 Binary files a/icons-png/send.png and /dev/null differ diff --git a/icons-png/seo.png b/icons-png/seo.png deleted file mode 100644 index b37c703bf..000000000 Binary files a/icons-png/seo.png and /dev/null differ diff --git a/icons-png/separator-horizontal.png b/icons-png/separator-horizontal.png deleted file mode 100644 index ae607f47d..000000000 Binary files a/icons-png/separator-horizontal.png and /dev/null differ diff --git a/icons-png/separator-vertical.png b/icons-png/separator-vertical.png deleted file mode 100644 index cf26141db..000000000 Binary files a/icons-png/separator-vertical.png and /dev/null differ diff --git a/icons-png/separator.png b/icons-png/separator.png deleted file mode 100644 index 188739f28..000000000 Binary files a/icons-png/separator.png and /dev/null differ diff --git a/icons-png/server-2.png b/icons-png/server-2.png deleted file mode 100644 index 1a6982d35..000000000 Binary files a/icons-png/server-2.png and /dev/null differ diff --git a/icons-png/server-bolt.png b/icons-png/server-bolt.png deleted file mode 100644 index a9c71620a..000000000 Binary files a/icons-png/server-bolt.png and /dev/null differ diff --git a/icons-png/server-cog.png b/icons-png/server-cog.png deleted file mode 100644 index 3a2353567..000000000 Binary files a/icons-png/server-cog.png and /dev/null differ diff --git a/icons-png/server-off.png b/icons-png/server-off.png deleted file mode 100644 index d7f9c0011..000000000 Binary files a/icons-png/server-off.png and /dev/null differ diff --git a/icons-png/server.png b/icons-png/server.png deleted file mode 100644 index 7e387455a..000000000 Binary files a/icons-png/server.png and /dev/null differ diff --git a/icons-png/servicemark.png b/icons-png/servicemark.png deleted file mode 100644 index f99d56957..000000000 Binary files a/icons-png/servicemark.png and /dev/null differ diff --git a/icons-png/settings-2.png b/icons-png/settings-2.png deleted file mode 100644 index b4ee58609..000000000 Binary files a/icons-png/settings-2.png and /dev/null differ diff --git a/icons-png/settings-automation.png b/icons-png/settings-automation.png deleted file mode 100644 index 8b033d914..000000000 Binary files a/icons-png/settings-automation.png and /dev/null differ diff --git a/icons-png/settings-off.png b/icons-png/settings-off.png deleted file mode 100644 index 904a3e683..000000000 Binary files a/icons-png/settings-off.png and /dev/null differ diff --git a/icons-png/settings.png b/icons-png/settings.png deleted file mode 100644 index e8035f341..000000000 Binary files a/icons-png/settings.png and /dev/null differ diff --git a/icons-png/shadow-off.png b/icons-png/shadow-off.png deleted file mode 100644 index 14267c9e3..000000000 Binary files a/icons-png/shadow-off.png and /dev/null differ diff --git a/icons-png/shadow.png b/icons-png/shadow.png deleted file mode 100644 index ed22fb19f..000000000 Binary files a/icons-png/shadow.png and /dev/null differ diff --git a/icons-png/shape-2.png b/icons-png/shape-2.png deleted file mode 100644 index 43ff597b1..000000000 Binary files a/icons-png/shape-2.png and /dev/null differ diff --git a/icons-png/shape-3.png b/icons-png/shape-3.png deleted file mode 100644 index 16ff8be9a..000000000 Binary files a/icons-png/shape-3.png and /dev/null differ diff --git a/icons-png/shape-off.png b/icons-png/shape-off.png deleted file mode 100644 index 41e4e79ce..000000000 Binary files a/icons-png/shape-off.png and /dev/null differ diff --git a/icons-png/shape.png b/icons-png/shape.png deleted file mode 100644 index a4da9b98a..000000000 Binary files a/icons-png/shape.png and /dev/null differ diff --git a/icons-png/share-off.png b/icons-png/share-off.png deleted file mode 100644 index 95a92f254..000000000 Binary files a/icons-png/share-off.png and /dev/null differ diff --git a/icons-png/share.png b/icons-png/share.png deleted file mode 100644 index 724e5e2e7..000000000 Binary files a/icons-png/share.png and /dev/null differ diff --git a/icons-png/shield-check.png b/icons-png/shield-check.png deleted file mode 100644 index 97b5e9f81..000000000 Binary files a/icons-png/shield-check.png and /dev/null differ diff --git a/icons-png/shield-checkered.png b/icons-png/shield-checkered.png deleted file mode 100644 index f83fd1bc5..000000000 Binary files a/icons-png/shield-checkered.png and /dev/null differ diff --git a/icons-png/shield-chevron.png b/icons-png/shield-chevron.png deleted file mode 100644 index 8aba30bb2..000000000 Binary files a/icons-png/shield-chevron.png and /dev/null differ diff --git a/icons-png/shield-half-filled.png b/icons-png/shield-half-filled.png deleted file mode 100644 index af187a784..000000000 Binary files a/icons-png/shield-half-filled.png and /dev/null differ diff --git a/icons-png/shield-half.png b/icons-png/shield-half.png deleted file mode 100644 index 72e092cb0..000000000 Binary files a/icons-png/shield-half.png and /dev/null differ diff --git a/icons-png/shield-lock.png b/icons-png/shield-lock.png deleted file mode 100644 index 8466c0671..000000000 Binary files a/icons-png/shield-lock.png and /dev/null differ diff --git a/icons-png/shield-off.png b/icons-png/shield-off.png deleted file mode 100644 index 12de8c2e4..000000000 Binary files a/icons-png/shield-off.png and /dev/null differ diff --git a/icons-png/shield-x.png b/icons-png/shield-x.png deleted file mode 100644 index 3c47b9890..000000000 Binary files a/icons-png/shield-x.png and /dev/null differ diff --git a/icons-png/shield.png b/icons-png/shield.png deleted file mode 100644 index f0e9f1a9b..000000000 Binary files a/icons-png/shield.png and /dev/null differ diff --git a/icons-png/ship-off.png b/icons-png/ship-off.png deleted file mode 100644 index 0e2d0e731..000000000 Binary files a/icons-png/ship-off.png and /dev/null differ diff --git a/icons-png/ship.png b/icons-png/ship.png deleted file mode 100644 index 78be9d63f..000000000 Binary files a/icons-png/ship.png and /dev/null differ diff --git a/icons-png/shirt-off.png b/icons-png/shirt-off.png deleted file mode 100644 index 2eb60ce98..000000000 Binary files a/icons-png/shirt-off.png and /dev/null differ diff --git a/icons-png/shirt-sport.png b/icons-png/shirt-sport.png deleted file mode 100644 index 345658e0c..000000000 Binary files a/icons-png/shirt-sport.png and /dev/null differ diff --git a/icons-png/shirt.png b/icons-png/shirt.png deleted file mode 100644 index c35964b48..000000000 Binary files a/icons-png/shirt.png and /dev/null differ diff --git a/icons-png/shoe-off.png b/icons-png/shoe-off.png deleted file mode 100644 index 6d9b7592b..000000000 Binary files a/icons-png/shoe-off.png and /dev/null differ diff --git a/icons-png/shoe.png b/icons-png/shoe.png deleted file mode 100644 index ddd78dab7..000000000 Binary files a/icons-png/shoe.png and /dev/null differ diff --git a/icons-png/shopping-bag.png b/icons-png/shopping-bag.png deleted file mode 100644 index 4ccc30533..000000000 Binary files a/icons-png/shopping-bag.png and /dev/null differ diff --git a/icons-png/shopping-cart-discount.png b/icons-png/shopping-cart-discount.png deleted file mode 100644 index cdae18cc6..000000000 Binary files a/icons-png/shopping-cart-discount.png and /dev/null differ diff --git a/icons-png/shopping-cart-off.png b/icons-png/shopping-cart-off.png deleted file mode 100644 index d1c6fd75c..000000000 Binary files a/icons-png/shopping-cart-off.png and /dev/null differ diff --git a/icons-png/shopping-cart-plus.png b/icons-png/shopping-cart-plus.png deleted file mode 100644 index 607194df4..000000000 Binary files a/icons-png/shopping-cart-plus.png and /dev/null differ diff --git a/icons-png/shopping-cart-x.png b/icons-png/shopping-cart-x.png deleted file mode 100644 index 417c12712..000000000 Binary files a/icons-png/shopping-cart-x.png and /dev/null differ diff --git a/icons-png/shopping-cart.png b/icons-png/shopping-cart.png deleted file mode 100644 index b0688db43..000000000 Binary files a/icons-png/shopping-cart.png and /dev/null differ diff --git a/icons-png/shovel.png b/icons-png/shovel.png deleted file mode 100644 index abefe95a6..000000000 Binary files a/icons-png/shovel.png and /dev/null differ diff --git a/icons-png/shredder.png b/icons-png/shredder.png deleted file mode 100644 index 7a542c6da..000000000 Binary files a/icons-png/shredder.png and /dev/null differ diff --git a/icons-png/sign-left.png b/icons-png/sign-left.png deleted file mode 100644 index ae8c213fb..000000000 Binary files a/icons-png/sign-left.png and /dev/null differ diff --git a/icons-png/sign-right.png b/icons-png/sign-right.png deleted file mode 100644 index 9d4919f07..000000000 Binary files a/icons-png/sign-right.png and /dev/null differ diff --git a/icons-png/signal-3g.png b/icons-png/signal-3g.png deleted file mode 100644 index 8f9ab6ca1..000000000 Binary files a/icons-png/signal-3g.png and /dev/null differ diff --git a/icons-png/signal-4g-plus.png b/icons-png/signal-4g-plus.png deleted file mode 100644 index 6b6b13494..000000000 Binary files a/icons-png/signal-4g-plus.png and /dev/null differ diff --git a/icons-png/signal-4g.png b/icons-png/signal-4g.png deleted file mode 100644 index 95a7d9043..000000000 Binary files a/icons-png/signal-4g.png and /dev/null differ diff --git a/icons-png/signal-5g.png b/icons-png/signal-5g.png deleted file mode 100644 index 3b97c91f1..000000000 Binary files a/icons-png/signal-5g.png and /dev/null differ diff --git a/icons-png/signature-off.png b/icons-png/signature-off.png deleted file mode 100644 index 9b2cbb931..000000000 Binary files a/icons-png/signature-off.png and /dev/null differ diff --git a/icons-png/signature.png b/icons-png/signature.png deleted file mode 100644 index fb6f6e10d..000000000 Binary files a/icons-png/signature.png and /dev/null differ diff --git a/icons-png/sitemap-off.png b/icons-png/sitemap-off.png deleted file mode 100644 index fb33f79e7..000000000 Binary files a/icons-png/sitemap-off.png and /dev/null differ diff --git a/icons-png/sitemap.png b/icons-png/sitemap.png deleted file mode 100644 index 1319a5ebb..000000000 Binary files a/icons-png/sitemap.png and /dev/null differ diff --git a/icons-png/skateboard-off.png b/icons-png/skateboard-off.png deleted file mode 100644 index 967db06ce..000000000 Binary files a/icons-png/skateboard-off.png and /dev/null differ diff --git a/icons-png/skateboard.png b/icons-png/skateboard.png deleted file mode 100644 index 3a83a4202..000000000 Binary files a/icons-png/skateboard.png and /dev/null differ diff --git a/icons-png/skull.png b/icons-png/skull.png deleted file mode 100644 index 8f9b6b730..000000000 Binary files a/icons-png/skull.png and /dev/null differ diff --git a/icons-png/slash.png b/icons-png/slash.png deleted file mode 100644 index 80e796ede..000000000 Binary files a/icons-png/slash.png and /dev/null differ diff --git a/icons-png/slashes.png b/icons-png/slashes.png deleted file mode 100644 index e0370c647..000000000 Binary files a/icons-png/slashes.png and /dev/null differ diff --git a/icons-png/sleigh.png b/icons-png/sleigh.png deleted file mode 100644 index 536f35f87..000000000 Binary files a/icons-png/sleigh.png and /dev/null differ diff --git a/icons-png/slice.png b/icons-png/slice.png deleted file mode 100644 index 5589642de..000000000 Binary files a/icons-png/slice.png and /dev/null differ diff --git a/icons-png/slideshow.png b/icons-png/slideshow.png deleted file mode 100644 index c7182dc4e..000000000 Binary files a/icons-png/slideshow.png and /dev/null differ diff --git a/icons-png/smart-home-off.png b/icons-png/smart-home-off.png deleted file mode 100644 index dd4bb3e3e..000000000 Binary files a/icons-png/smart-home-off.png and /dev/null differ diff --git a/icons-png/smart-home.png b/icons-png/smart-home.png deleted file mode 100644 index 0e811777e..000000000 Binary files a/icons-png/smart-home.png and /dev/null differ diff --git a/icons-png/smoking-no.png b/icons-png/smoking-no.png deleted file mode 100644 index 20a6c6006..000000000 Binary files a/icons-png/smoking-no.png and /dev/null differ diff --git a/icons-png/smoking.png b/icons-png/smoking.png deleted file mode 100644 index 815315a75..000000000 Binary files a/icons-png/smoking.png and /dev/null differ diff --git a/icons-png/snowflake-off.png b/icons-png/snowflake-off.png deleted file mode 100644 index 17a3227bf..000000000 Binary files a/icons-png/snowflake-off.png and /dev/null differ diff --git a/icons-png/snowflake.png b/icons-png/snowflake.png deleted file mode 100644 index cd837335c..000000000 Binary files a/icons-png/snowflake.png and /dev/null differ diff --git a/icons-png/snowman.png b/icons-png/snowman.png deleted file mode 100644 index 9608b1071..000000000 Binary files a/icons-png/snowman.png and /dev/null differ diff --git a/icons-png/soccer-field.png b/icons-png/soccer-field.png deleted file mode 100644 index cc991a9a0..000000000 Binary files a/icons-png/soccer-field.png and /dev/null differ diff --git a/icons-png/social-off.png b/icons-png/social-off.png deleted file mode 100644 index d45d5fbd8..000000000 Binary files a/icons-png/social-off.png and /dev/null differ diff --git a/icons-png/social.png b/icons-png/social.png deleted file mode 100644 index d70de041d..000000000 Binary files a/icons-png/social.png and /dev/null differ diff --git a/icons-png/sock.png b/icons-png/sock.png deleted file mode 100644 index e8749b4a1..000000000 Binary files a/icons-png/sock.png and /dev/null differ diff --git a/icons-png/sofa-off.png b/icons-png/sofa-off.png deleted file mode 100644 index 586f08aa3..000000000 Binary files a/icons-png/sofa-off.png and /dev/null differ diff --git a/icons-png/sofa.png b/icons-png/sofa.png deleted file mode 100644 index 09e072271..000000000 Binary files a/icons-png/sofa.png and /dev/null differ diff --git a/icons-png/sort-0-9.png b/icons-png/sort-0-9.png deleted file mode 100644 index 7783a0381..000000000 Binary files a/icons-png/sort-0-9.png and /dev/null differ diff --git a/icons-png/sort-9-0.png b/icons-png/sort-9-0.png deleted file mode 100644 index fd92a03cf..000000000 Binary files a/icons-png/sort-9-0.png and /dev/null differ diff --git a/icons-png/sort-a-z.png b/icons-png/sort-a-z.png deleted file mode 100644 index e51ca7bc4..000000000 Binary files a/icons-png/sort-a-z.png and /dev/null differ diff --git a/icons-png/sort-ascending-2.png b/icons-png/sort-ascending-2.png deleted file mode 100644 index 9e68e69d0..000000000 Binary files a/icons-png/sort-ascending-2.png and /dev/null differ diff --git a/icons-png/sort-ascending-letters.png b/icons-png/sort-ascending-letters.png deleted file mode 100644 index 6b6f7fd15..000000000 Binary files a/icons-png/sort-ascending-letters.png and /dev/null differ diff --git a/icons-png/sort-ascending-numbers.png b/icons-png/sort-ascending-numbers.png deleted file mode 100644 index 120470528..000000000 Binary files a/icons-png/sort-ascending-numbers.png and /dev/null differ diff --git a/icons-png/sort-ascending.png b/icons-png/sort-ascending.png deleted file mode 100644 index b03ed3a14..000000000 Binary files a/icons-png/sort-ascending.png and /dev/null differ diff --git a/icons-png/sort-descending-2.png b/icons-png/sort-descending-2.png deleted file mode 100644 index 9b7b92388..000000000 Binary files a/icons-png/sort-descending-2.png and /dev/null differ diff --git a/icons-png/sort-descending-letters.png b/icons-png/sort-descending-letters.png deleted file mode 100644 index 6835f3e41..000000000 Binary files a/icons-png/sort-descending-letters.png and /dev/null differ diff --git a/icons-png/sort-descending-numbers.png b/icons-png/sort-descending-numbers.png deleted file mode 100644 index dc4665267..000000000 Binary files a/icons-png/sort-descending-numbers.png and /dev/null differ diff --git a/icons-png/sort-descending.png b/icons-png/sort-descending.png deleted file mode 100644 index 966ab986a..000000000 Binary files a/icons-png/sort-descending.png and /dev/null differ diff --git a/icons-png/sort-z-a.png b/icons-png/sort-z-a.png deleted file mode 100644 index e3691686e..000000000 Binary files a/icons-png/sort-z-a.png and /dev/null differ diff --git a/icons-png/sos.png b/icons-png/sos.png deleted file mode 100644 index 0e2be84c3..000000000 Binary files a/icons-png/sos.png and /dev/null differ diff --git a/icons-png/soup-off.png b/icons-png/soup-off.png deleted file mode 100644 index dacd63512..000000000 Binary files a/icons-png/soup-off.png and /dev/null differ diff --git a/icons-png/soup.png b/icons-png/soup.png deleted file mode 100644 index c4ef6e79d..000000000 Binary files a/icons-png/soup.png and /dev/null differ diff --git a/icons-png/source-code.png b/icons-png/source-code.png deleted file mode 100644 index c6cd416a7..000000000 Binary files a/icons-png/source-code.png and /dev/null differ diff --git a/icons-png/space-off.png b/icons-png/space-off.png deleted file mode 100644 index e3119409b..000000000 Binary files a/icons-png/space-off.png and /dev/null differ diff --git a/icons-png/space.png b/icons-png/space.png deleted file mode 100644 index af23e5e96..000000000 Binary files a/icons-png/space.png and /dev/null differ diff --git a/icons-png/spacing-horizontal.png b/icons-png/spacing-horizontal.png deleted file mode 100644 index 295b3e5f7..000000000 Binary files a/icons-png/spacing-horizontal.png and /dev/null differ diff --git a/icons-png/spacing-vertical.png b/icons-png/spacing-vertical.png deleted file mode 100644 index 519d17ce5..000000000 Binary files a/icons-png/spacing-vertical.png and /dev/null differ diff --git a/icons-png/spade.png b/icons-png/spade.png deleted file mode 100644 index 11f0b4466..000000000 Binary files a/icons-png/spade.png and /dev/null differ diff --git a/icons-png/speakerphone.png b/icons-png/speakerphone.png deleted file mode 100644 index 22fe44455..000000000 Binary files a/icons-png/speakerphone.png and /dev/null differ diff --git a/icons-png/speedboat.png b/icons-png/speedboat.png deleted file mode 100644 index 99cfd5e97..000000000 Binary files a/icons-png/speedboat.png and /dev/null differ diff --git a/icons-png/spider.png b/icons-png/spider.png deleted file mode 100644 index 93581456a..000000000 Binary files a/icons-png/spider.png and /dev/null differ diff --git a/icons-png/spiral-off.png b/icons-png/spiral-off.png deleted file mode 100644 index 7e6d8f576..000000000 Binary files a/icons-png/spiral-off.png and /dev/null differ diff --git a/icons-png/spiral.png b/icons-png/spiral.png deleted file mode 100644 index 4f6ec70cf..000000000 Binary files a/icons-png/spiral.png and /dev/null differ diff --git a/icons-png/sport-billard.png b/icons-png/sport-billard.png deleted file mode 100644 index e14143e49..000000000 Binary files a/icons-png/sport-billard.png and /dev/null differ diff --git a/icons-png/spray.png b/icons-png/spray.png deleted file mode 100644 index fbcd6fd5d..000000000 Binary files a/icons-png/spray.png and /dev/null differ diff --git a/icons-png/spy-off.png b/icons-png/spy-off.png deleted file mode 100644 index a2a2bad22..000000000 Binary files a/icons-png/spy-off.png and /dev/null differ diff --git a/icons-png/spy.png b/icons-png/spy.png deleted file mode 100644 index a6f533191..000000000 Binary files a/icons-png/spy.png and /dev/null differ diff --git a/icons-png/square-arrow-down.png b/icons-png/square-arrow-down.png deleted file mode 100644 index 17953eeac..000000000 Binary files a/icons-png/square-arrow-down.png and /dev/null differ diff --git a/icons-png/square-arrow-left.png b/icons-png/square-arrow-left.png deleted file mode 100644 index f5d161260..000000000 Binary files a/icons-png/square-arrow-left.png and /dev/null differ diff --git a/icons-png/square-arrow-right.png b/icons-png/square-arrow-right.png deleted file mode 100644 index 07d5c04ad..000000000 Binary files a/icons-png/square-arrow-right.png and /dev/null differ diff --git a/icons-png/square-arrow-up.png b/icons-png/square-arrow-up.png deleted file mode 100644 index fc1f7c9e5..000000000 Binary files a/icons-png/square-arrow-up.png and /dev/null differ diff --git a/icons-png/square-asterisk.png b/icons-png/square-asterisk.png deleted file mode 100644 index 4a2f5ee0f..000000000 Binary files a/icons-png/square-asterisk.png and /dev/null differ diff --git a/icons-png/square-check.png b/icons-png/square-check.png deleted file mode 100644 index 9df5195c1..000000000 Binary files a/icons-png/square-check.png and /dev/null differ diff --git a/icons-png/square-chevron-down.png b/icons-png/square-chevron-down.png deleted file mode 100644 index 6f5a7bea8..000000000 Binary files a/icons-png/square-chevron-down.png and /dev/null differ diff --git a/icons-png/square-chevron-left.png b/icons-png/square-chevron-left.png deleted file mode 100644 index 07f2909db..000000000 Binary files a/icons-png/square-chevron-left.png and /dev/null differ diff --git a/icons-png/square-chevron-right.png b/icons-png/square-chevron-right.png deleted file mode 100644 index f47615c68..000000000 Binary files a/icons-png/square-chevron-right.png and /dev/null differ diff --git a/icons-png/square-chevron-up.png b/icons-png/square-chevron-up.png deleted file mode 100644 index 611744351..000000000 Binary files a/icons-png/square-chevron-up.png and /dev/null differ diff --git a/icons-png/square-chevrons-down.png b/icons-png/square-chevrons-down.png deleted file mode 100644 index 6ec0b83db..000000000 Binary files a/icons-png/square-chevrons-down.png and /dev/null differ diff --git a/icons-png/square-chevrons-left.png b/icons-png/square-chevrons-left.png deleted file mode 100644 index d33ef3c60..000000000 Binary files a/icons-png/square-chevrons-left.png and /dev/null differ diff --git a/icons-png/square-chevrons-right.png b/icons-png/square-chevrons-right.png deleted file mode 100644 index d9ffef0bc..000000000 Binary files a/icons-png/square-chevrons-right.png and /dev/null differ diff --git a/icons-png/square-chevrons-up.png b/icons-png/square-chevrons-up.png deleted file mode 100644 index c49744dba..000000000 Binary files a/icons-png/square-chevrons-up.png and /dev/null differ diff --git a/icons-png/square-dot.png b/icons-png/square-dot.png deleted file mode 100644 index c4901f9e2..000000000 Binary files a/icons-png/square-dot.png and /dev/null differ diff --git a/icons-png/square-f0.png b/icons-png/square-f0.png deleted file mode 100644 index d378076c3..000000000 Binary files a/icons-png/square-f0.png and /dev/null differ diff --git a/icons-png/square-f1.png b/icons-png/square-f1.png deleted file mode 100644 index 3684ce6cc..000000000 Binary files a/icons-png/square-f1.png and /dev/null differ diff --git a/icons-png/square-f2.png b/icons-png/square-f2.png deleted file mode 100644 index bda07d165..000000000 Binary files a/icons-png/square-f2.png and /dev/null differ diff --git a/icons-png/square-f3.png b/icons-png/square-f3.png deleted file mode 100644 index b7881d5a9..000000000 Binary files a/icons-png/square-f3.png and /dev/null differ diff --git a/icons-png/square-f4.png b/icons-png/square-f4.png deleted file mode 100644 index 6b6dfc4ee..000000000 Binary files a/icons-png/square-f4.png and /dev/null differ diff --git a/icons-png/square-f5.png b/icons-png/square-f5.png deleted file mode 100644 index 76481198d..000000000 Binary files a/icons-png/square-f5.png and /dev/null differ diff --git a/icons-png/square-f6.png b/icons-png/square-f6.png deleted file mode 100644 index a10f48765..000000000 Binary files a/icons-png/square-f6.png and /dev/null differ diff --git a/icons-png/square-f7.png b/icons-png/square-f7.png deleted file mode 100644 index b49530ce9..000000000 Binary files a/icons-png/square-f7.png and /dev/null differ diff --git a/icons-png/square-f8.png b/icons-png/square-f8.png deleted file mode 100644 index 33359cce5..000000000 Binary files a/icons-png/square-f8.png and /dev/null differ diff --git a/icons-png/square-f9.png b/icons-png/square-f9.png deleted file mode 100644 index 4dcc5630a..000000000 Binary files a/icons-png/square-f9.png and /dev/null differ diff --git a/icons-png/square-forbid-2.png b/icons-png/square-forbid-2.png deleted file mode 100644 index 7ca6496f6..000000000 Binary files a/icons-png/square-forbid-2.png and /dev/null differ diff --git a/icons-png/square-forbid.png b/icons-png/square-forbid.png deleted file mode 100644 index b3cb87002..000000000 Binary files a/icons-png/square-forbid.png and /dev/null differ diff --git a/icons-png/square-half.png b/icons-png/square-half.png deleted file mode 100644 index 9841b07f9..000000000 Binary files a/icons-png/square-half.png and /dev/null differ diff --git a/icons-png/square-key.png b/icons-png/square-key.png deleted file mode 100644 index 51d73d5a0..000000000 Binary files a/icons-png/square-key.png and /dev/null differ diff --git a/icons-png/square-letter-a.png b/icons-png/square-letter-a.png deleted file mode 100644 index ca56085ed..000000000 Binary files a/icons-png/square-letter-a.png and /dev/null differ diff --git a/icons-png/square-letter-b.png b/icons-png/square-letter-b.png deleted file mode 100644 index 7c070dac1..000000000 Binary files a/icons-png/square-letter-b.png and /dev/null differ diff --git a/icons-png/square-letter-c.png b/icons-png/square-letter-c.png deleted file mode 100644 index 0d4db053f..000000000 Binary files a/icons-png/square-letter-c.png and /dev/null differ diff --git a/icons-png/square-letter-d.png b/icons-png/square-letter-d.png deleted file mode 100644 index f909fc485..000000000 Binary files a/icons-png/square-letter-d.png and /dev/null differ diff --git a/icons-png/square-letter-e.png b/icons-png/square-letter-e.png deleted file mode 100644 index 0715e7d92..000000000 Binary files a/icons-png/square-letter-e.png and /dev/null differ diff --git a/icons-png/square-letter-f.png b/icons-png/square-letter-f.png deleted file mode 100644 index 1e745b324..000000000 Binary files a/icons-png/square-letter-f.png and /dev/null differ diff --git a/icons-png/square-letter-g.png b/icons-png/square-letter-g.png deleted file mode 100644 index 414c54801..000000000 Binary files a/icons-png/square-letter-g.png and /dev/null differ diff --git a/icons-png/square-letter-h.png b/icons-png/square-letter-h.png deleted file mode 100644 index 01cd01867..000000000 Binary files a/icons-png/square-letter-h.png and /dev/null differ diff --git a/icons-png/square-letter-i.png b/icons-png/square-letter-i.png deleted file mode 100644 index 2a2a418aa..000000000 Binary files a/icons-png/square-letter-i.png and /dev/null differ diff --git a/icons-png/square-letter-j.png b/icons-png/square-letter-j.png deleted file mode 100644 index ff3486b79..000000000 Binary files a/icons-png/square-letter-j.png and /dev/null differ diff --git a/icons-png/square-letter-k.png b/icons-png/square-letter-k.png deleted file mode 100644 index 0cf02a043..000000000 Binary files a/icons-png/square-letter-k.png and /dev/null differ diff --git a/icons-png/square-letter-l.png b/icons-png/square-letter-l.png deleted file mode 100644 index 3b1c1eb3c..000000000 Binary files a/icons-png/square-letter-l.png and /dev/null differ diff --git a/icons-png/square-letter-m.png b/icons-png/square-letter-m.png deleted file mode 100644 index f28638fff..000000000 Binary files a/icons-png/square-letter-m.png and /dev/null differ diff --git a/icons-png/square-letter-n.png b/icons-png/square-letter-n.png deleted file mode 100644 index e4d1195b5..000000000 Binary files a/icons-png/square-letter-n.png and /dev/null differ diff --git a/icons-png/square-letter-o.png b/icons-png/square-letter-o.png deleted file mode 100644 index f50dbe7d8..000000000 Binary files a/icons-png/square-letter-o.png and /dev/null differ diff --git a/icons-png/square-letter-p.png b/icons-png/square-letter-p.png deleted file mode 100644 index 76e2b1532..000000000 Binary files a/icons-png/square-letter-p.png and /dev/null differ diff --git a/icons-png/square-letter-q.png b/icons-png/square-letter-q.png deleted file mode 100644 index dda5734f8..000000000 Binary files a/icons-png/square-letter-q.png and /dev/null differ diff --git a/icons-png/square-letter-r.png b/icons-png/square-letter-r.png deleted file mode 100644 index 02a4e2c4f..000000000 Binary files a/icons-png/square-letter-r.png and /dev/null differ diff --git a/icons-png/square-letter-s.png b/icons-png/square-letter-s.png deleted file mode 100644 index 7a9a7ba73..000000000 Binary files a/icons-png/square-letter-s.png and /dev/null differ diff --git a/icons-png/square-letter-t.png b/icons-png/square-letter-t.png deleted file mode 100644 index 010bc48c3..000000000 Binary files a/icons-png/square-letter-t.png and /dev/null differ diff --git a/icons-png/square-letter-u.png b/icons-png/square-letter-u.png deleted file mode 100644 index 8d6bb5aab..000000000 Binary files a/icons-png/square-letter-u.png and /dev/null differ diff --git a/icons-png/square-letter-v.png b/icons-png/square-letter-v.png deleted file mode 100644 index 51cf2f2ee..000000000 Binary files a/icons-png/square-letter-v.png and /dev/null differ diff --git a/icons-png/square-letter-w.png b/icons-png/square-letter-w.png deleted file mode 100644 index 428f2526e..000000000 Binary files a/icons-png/square-letter-w.png and /dev/null differ diff --git a/icons-png/square-letter-x.png b/icons-png/square-letter-x.png deleted file mode 100644 index f7ee74830..000000000 Binary files a/icons-png/square-letter-x.png and /dev/null differ diff --git a/icons-png/square-letter-y.png b/icons-png/square-letter-y.png deleted file mode 100644 index 6dc5dc7f7..000000000 Binary files a/icons-png/square-letter-y.png and /dev/null differ diff --git a/icons-png/square-letter-z.png b/icons-png/square-letter-z.png deleted file mode 100644 index 41917b703..000000000 Binary files a/icons-png/square-letter-z.png and /dev/null differ diff --git a/icons-png/square-minus.png b/icons-png/square-minus.png deleted file mode 100644 index 449e0a067..000000000 Binary files a/icons-png/square-minus.png and /dev/null differ diff --git a/icons-png/square-number-0.png b/icons-png/square-number-0.png deleted file mode 100644 index b3bddb827..000000000 Binary files a/icons-png/square-number-0.png and /dev/null differ diff --git a/icons-png/square-number-1.png b/icons-png/square-number-1.png deleted file mode 100644 index db1526080..000000000 Binary files a/icons-png/square-number-1.png and /dev/null differ diff --git a/icons-png/square-number-2.png b/icons-png/square-number-2.png deleted file mode 100644 index 21843a632..000000000 Binary files a/icons-png/square-number-2.png and /dev/null differ diff --git a/icons-png/square-number-3.png b/icons-png/square-number-3.png deleted file mode 100644 index 69ff1862b..000000000 Binary files a/icons-png/square-number-3.png and /dev/null differ diff --git a/icons-png/square-number-4.png b/icons-png/square-number-4.png deleted file mode 100644 index 037f64d8d..000000000 Binary files a/icons-png/square-number-4.png and /dev/null differ diff --git a/icons-png/square-number-5.png b/icons-png/square-number-5.png deleted file mode 100644 index 0a84fd618..000000000 Binary files a/icons-png/square-number-5.png and /dev/null differ diff --git a/icons-png/square-number-6.png b/icons-png/square-number-6.png deleted file mode 100644 index bf738d533..000000000 Binary files a/icons-png/square-number-6.png and /dev/null differ diff --git a/icons-png/square-number-7.png b/icons-png/square-number-7.png deleted file mode 100644 index f70911505..000000000 Binary files a/icons-png/square-number-7.png and /dev/null differ diff --git a/icons-png/square-number-8.png b/icons-png/square-number-8.png deleted file mode 100644 index 5c63a0465..000000000 Binary files a/icons-png/square-number-8.png and /dev/null differ diff --git a/icons-png/square-number-9.png b/icons-png/square-number-9.png deleted file mode 100644 index 98c738d2c..000000000 Binary files a/icons-png/square-number-9.png and /dev/null differ diff --git a/icons-png/square-off.png b/icons-png/square-off.png deleted file mode 100644 index 2ff567d4d..000000000 Binary files a/icons-png/square-off.png and /dev/null differ diff --git a/icons-png/square-plus.png b/icons-png/square-plus.png deleted file mode 100644 index f9f9eb8ba..000000000 Binary files a/icons-png/square-plus.png and /dev/null differ diff --git a/icons-png/square-root-2.png b/icons-png/square-root-2.png deleted file mode 100644 index ab61d3fdf..000000000 Binary files a/icons-png/square-root-2.png and /dev/null differ diff --git a/icons-png/square-root.png b/icons-png/square-root.png deleted file mode 100644 index 92f19710a..000000000 Binary files a/icons-png/square-root.png and /dev/null differ diff --git a/icons-png/square-rotated-forbid-2.png b/icons-png/square-rotated-forbid-2.png deleted file mode 100644 index 1974df986..000000000 Binary files a/icons-png/square-rotated-forbid-2.png and /dev/null differ diff --git a/icons-png/square-rotated-forbid.png b/icons-png/square-rotated-forbid.png deleted file mode 100644 index a38521235..000000000 Binary files a/icons-png/square-rotated-forbid.png and /dev/null differ diff --git a/icons-png/square-rotated-off.png b/icons-png/square-rotated-off.png deleted file mode 100644 index 54fd52414..000000000 Binary files a/icons-png/square-rotated-off.png and /dev/null differ diff --git a/icons-png/square-rotated.png b/icons-png/square-rotated.png deleted file mode 100644 index 8b9492be0..000000000 Binary files a/icons-png/square-rotated.png and /dev/null differ diff --git a/icons-png/square-rounded-arrow-down.png b/icons-png/square-rounded-arrow-down.png deleted file mode 100644 index 71f8fbe71..000000000 Binary files a/icons-png/square-rounded-arrow-down.png and /dev/null differ diff --git a/icons-png/square-rounded-arrow-left.png b/icons-png/square-rounded-arrow-left.png deleted file mode 100644 index fb6840c86..000000000 Binary files a/icons-png/square-rounded-arrow-left.png and /dev/null differ diff --git a/icons-png/square-rounded-arrow-right.png b/icons-png/square-rounded-arrow-right.png deleted file mode 100644 index 5b73cce63..000000000 Binary files a/icons-png/square-rounded-arrow-right.png and /dev/null differ diff --git a/icons-png/square-rounded-arrow-up.png b/icons-png/square-rounded-arrow-up.png deleted file mode 100644 index 3979633be..000000000 Binary files a/icons-png/square-rounded-arrow-up.png and /dev/null differ diff --git a/icons-png/square-rounded-check.png b/icons-png/square-rounded-check.png deleted file mode 100644 index 7a3ab83f7..000000000 Binary files a/icons-png/square-rounded-check.png and /dev/null differ diff --git a/icons-png/square-rounded-chevron-down.png b/icons-png/square-rounded-chevron-down.png deleted file mode 100644 index 43e57e0b5..000000000 Binary files a/icons-png/square-rounded-chevron-down.png and /dev/null differ diff --git a/icons-png/square-rounded-chevron-left.png b/icons-png/square-rounded-chevron-left.png deleted file mode 100644 index 23807207f..000000000 Binary files a/icons-png/square-rounded-chevron-left.png and /dev/null differ diff --git a/icons-png/square-rounded-chevron-right.png b/icons-png/square-rounded-chevron-right.png deleted file mode 100644 index 894a5c024..000000000 Binary files a/icons-png/square-rounded-chevron-right.png and /dev/null differ diff --git a/icons-png/square-rounded-chevron-up.png b/icons-png/square-rounded-chevron-up.png deleted file mode 100644 index 7a6f3f7bb..000000000 Binary files a/icons-png/square-rounded-chevron-up.png and /dev/null differ diff --git a/icons-png/square-rounded-chevrons-down.png b/icons-png/square-rounded-chevrons-down.png deleted file mode 100644 index a9a734f95..000000000 Binary files a/icons-png/square-rounded-chevrons-down.png and /dev/null differ diff --git a/icons-png/square-rounded-chevrons-left.png b/icons-png/square-rounded-chevrons-left.png deleted file mode 100644 index 5e3e064bf..000000000 Binary files a/icons-png/square-rounded-chevrons-left.png and /dev/null differ diff --git a/icons-png/square-rounded-chevrons-right.png b/icons-png/square-rounded-chevrons-right.png deleted file mode 100644 index 7bde96768..000000000 Binary files a/icons-png/square-rounded-chevrons-right.png and /dev/null differ diff --git a/icons-png/square-rounded-chevrons-up.png b/icons-png/square-rounded-chevrons-up.png deleted file mode 100644 index acd1b2fd6..000000000 Binary files a/icons-png/square-rounded-chevrons-up.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-a.png b/icons-png/square-rounded-letter-a.png deleted file mode 100644 index c874cc9c2..000000000 Binary files a/icons-png/square-rounded-letter-a.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-b.png b/icons-png/square-rounded-letter-b.png deleted file mode 100644 index fc275f952..000000000 Binary files a/icons-png/square-rounded-letter-b.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-c.png b/icons-png/square-rounded-letter-c.png deleted file mode 100644 index ee95768b3..000000000 Binary files a/icons-png/square-rounded-letter-c.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-d.png b/icons-png/square-rounded-letter-d.png deleted file mode 100644 index 9703b419c..000000000 Binary files a/icons-png/square-rounded-letter-d.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-e.png b/icons-png/square-rounded-letter-e.png deleted file mode 100644 index 88c469e8a..000000000 Binary files a/icons-png/square-rounded-letter-e.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-f.png b/icons-png/square-rounded-letter-f.png deleted file mode 100644 index 34ddc5236..000000000 Binary files a/icons-png/square-rounded-letter-f.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-g.png b/icons-png/square-rounded-letter-g.png deleted file mode 100644 index 12b6ac12e..000000000 Binary files a/icons-png/square-rounded-letter-g.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-h.png b/icons-png/square-rounded-letter-h.png deleted file mode 100644 index 101bfbaf0..000000000 Binary files a/icons-png/square-rounded-letter-h.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-i.png b/icons-png/square-rounded-letter-i.png deleted file mode 100644 index b1fcf09e4..000000000 Binary files a/icons-png/square-rounded-letter-i.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-j.png b/icons-png/square-rounded-letter-j.png deleted file mode 100644 index 5335ef3f2..000000000 Binary files a/icons-png/square-rounded-letter-j.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-k.png b/icons-png/square-rounded-letter-k.png deleted file mode 100644 index a3639d938..000000000 Binary files a/icons-png/square-rounded-letter-k.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-l.png b/icons-png/square-rounded-letter-l.png deleted file mode 100644 index d943d2800..000000000 Binary files a/icons-png/square-rounded-letter-l.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-m.png b/icons-png/square-rounded-letter-m.png deleted file mode 100644 index 8ad19a596..000000000 Binary files a/icons-png/square-rounded-letter-m.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-n.png b/icons-png/square-rounded-letter-n.png deleted file mode 100644 index 25111b4d7..000000000 Binary files a/icons-png/square-rounded-letter-n.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-o.png b/icons-png/square-rounded-letter-o.png deleted file mode 100644 index bc55656bb..000000000 Binary files a/icons-png/square-rounded-letter-o.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-p.png b/icons-png/square-rounded-letter-p.png deleted file mode 100644 index 5eabdcea4..000000000 Binary files a/icons-png/square-rounded-letter-p.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-q.png b/icons-png/square-rounded-letter-q.png deleted file mode 100644 index 140381938..000000000 Binary files a/icons-png/square-rounded-letter-q.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-r.png b/icons-png/square-rounded-letter-r.png deleted file mode 100644 index 13a7bb7db..000000000 Binary files a/icons-png/square-rounded-letter-r.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-s.png b/icons-png/square-rounded-letter-s.png deleted file mode 100644 index 920533509..000000000 Binary files a/icons-png/square-rounded-letter-s.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-t.png b/icons-png/square-rounded-letter-t.png deleted file mode 100644 index 1e5a8cf89..000000000 Binary files a/icons-png/square-rounded-letter-t.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-u.png b/icons-png/square-rounded-letter-u.png deleted file mode 100644 index b8ad1626c..000000000 Binary files a/icons-png/square-rounded-letter-u.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-v.png b/icons-png/square-rounded-letter-v.png deleted file mode 100644 index d4fadda83..000000000 Binary files a/icons-png/square-rounded-letter-v.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-w.png b/icons-png/square-rounded-letter-w.png deleted file mode 100644 index 833cb17c8..000000000 Binary files a/icons-png/square-rounded-letter-w.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-x.png b/icons-png/square-rounded-letter-x.png deleted file mode 100644 index 6555da7b8..000000000 Binary files a/icons-png/square-rounded-letter-x.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-y.png b/icons-png/square-rounded-letter-y.png deleted file mode 100644 index 307381184..000000000 Binary files a/icons-png/square-rounded-letter-y.png and /dev/null differ diff --git a/icons-png/square-rounded-letter-z.png b/icons-png/square-rounded-letter-z.png deleted file mode 100644 index 8115d7995..000000000 Binary files a/icons-png/square-rounded-letter-z.png and /dev/null differ diff --git a/icons-png/square-rounded-minus.png b/icons-png/square-rounded-minus.png deleted file mode 100644 index 71218df6b..000000000 Binary files a/icons-png/square-rounded-minus.png and /dev/null differ diff --git a/icons-png/square-rounded-number-0.png b/icons-png/square-rounded-number-0.png deleted file mode 100644 index 316d3ea47..000000000 Binary files a/icons-png/square-rounded-number-0.png and /dev/null differ diff --git a/icons-png/square-rounded-number-1.png b/icons-png/square-rounded-number-1.png deleted file mode 100644 index 764d52c4f..000000000 Binary files a/icons-png/square-rounded-number-1.png and /dev/null differ diff --git a/icons-png/square-rounded-number-2.png b/icons-png/square-rounded-number-2.png deleted file mode 100644 index ae685e464..000000000 Binary files a/icons-png/square-rounded-number-2.png and /dev/null differ diff --git a/icons-png/square-rounded-number-3.png b/icons-png/square-rounded-number-3.png deleted file mode 100644 index 18848dc43..000000000 Binary files a/icons-png/square-rounded-number-3.png and /dev/null differ diff --git a/icons-png/square-rounded-number-4.png b/icons-png/square-rounded-number-4.png deleted file mode 100644 index 2ff26a016..000000000 Binary files a/icons-png/square-rounded-number-4.png and /dev/null differ diff --git a/icons-png/square-rounded-number-5.png b/icons-png/square-rounded-number-5.png deleted file mode 100644 index e49e85eca..000000000 Binary files a/icons-png/square-rounded-number-5.png and /dev/null differ diff --git a/icons-png/square-rounded-number-6.png b/icons-png/square-rounded-number-6.png deleted file mode 100644 index fc1e609e2..000000000 Binary files a/icons-png/square-rounded-number-6.png and /dev/null differ diff --git a/icons-png/square-rounded-number-7.png b/icons-png/square-rounded-number-7.png deleted file mode 100644 index 74275ac70..000000000 Binary files a/icons-png/square-rounded-number-7.png and /dev/null differ diff --git a/icons-png/square-rounded-number-8.png b/icons-png/square-rounded-number-8.png deleted file mode 100644 index f6c88b18c..000000000 Binary files a/icons-png/square-rounded-number-8.png and /dev/null differ diff --git a/icons-png/square-rounded-number-9.png b/icons-png/square-rounded-number-9.png deleted file mode 100644 index 64ed92382..000000000 Binary files a/icons-png/square-rounded-number-9.png and /dev/null differ diff --git a/icons-png/square-rounded-plus.png b/icons-png/square-rounded-plus.png deleted file mode 100644 index 2e117f6ec..000000000 Binary files a/icons-png/square-rounded-plus.png and /dev/null differ diff --git a/icons-png/square-rounded-x.png b/icons-png/square-rounded-x.png deleted file mode 100644 index 0fe1332c1..000000000 Binary files a/icons-png/square-rounded-x.png and /dev/null differ diff --git a/icons-png/square-rounded.png b/icons-png/square-rounded.png deleted file mode 100644 index c1e1167da..000000000 Binary files a/icons-png/square-rounded.png and /dev/null differ diff --git a/icons-png/square-toggle-horizontal.png b/icons-png/square-toggle-horizontal.png deleted file mode 100644 index 0407a3bc6..000000000 Binary files a/icons-png/square-toggle-horizontal.png and /dev/null differ diff --git a/icons-png/square-toggle.png b/icons-png/square-toggle.png deleted file mode 100644 index c1707a988..000000000 Binary files a/icons-png/square-toggle.png and /dev/null differ diff --git a/icons-png/square-x.png b/icons-png/square-x.png deleted file mode 100644 index 5ad1f2da4..000000000 Binary files a/icons-png/square-x.png and /dev/null differ diff --git a/icons-png/square.png b/icons-png/square.png deleted file mode 100644 index 4c0c404a3..000000000 Binary files a/icons-png/square.png and /dev/null differ diff --git a/icons-png/squares-diagonal.png b/icons-png/squares-diagonal.png deleted file mode 100644 index 07bff14b8..000000000 Binary files a/icons-png/squares-diagonal.png and /dev/null differ diff --git a/icons-png/squares-filled.png b/icons-png/squares-filled.png deleted file mode 100644 index 493517023..000000000 Binary files a/icons-png/squares-filled.png and /dev/null differ diff --git a/icons-png/stack-2.png b/icons-png/stack-2.png deleted file mode 100644 index 70be5722d..000000000 Binary files a/icons-png/stack-2.png and /dev/null differ diff --git a/icons-png/stack-3.png b/icons-png/stack-3.png deleted file mode 100644 index 92f394cca..000000000 Binary files a/icons-png/stack-3.png and /dev/null differ diff --git a/icons-png/stack-pop.png b/icons-png/stack-pop.png deleted file mode 100644 index 17a34ef91..000000000 Binary files a/icons-png/stack-pop.png and /dev/null differ diff --git a/icons-png/stack-push.png b/icons-png/stack-push.png deleted file mode 100644 index 26b304d2a..000000000 Binary files a/icons-png/stack-push.png and /dev/null differ diff --git a/icons-png/stack.png b/icons-png/stack.png deleted file mode 100644 index 233fa9b09..000000000 Binary files a/icons-png/stack.png and /dev/null differ diff --git a/icons-png/stairs-down.png b/icons-png/stairs-down.png deleted file mode 100644 index ee0d9f5ba..000000000 Binary files a/icons-png/stairs-down.png and /dev/null differ diff --git a/icons-png/stairs-up.png b/icons-png/stairs-up.png deleted file mode 100644 index cd43acd04..000000000 Binary files a/icons-png/stairs-up.png and /dev/null differ diff --git a/icons-png/stairs.png b/icons-png/stairs.png deleted file mode 100644 index 6caa131d6..000000000 Binary files a/icons-png/stairs.png and /dev/null differ diff --git a/icons-png/star-half.png b/icons-png/star-half.png deleted file mode 100644 index 5e3c9ee48..000000000 Binary files a/icons-png/star-half.png and /dev/null differ diff --git a/icons-png/star-off.png b/icons-png/star-off.png deleted file mode 100644 index 41cf6d9f5..000000000 Binary files a/icons-png/star-off.png and /dev/null differ diff --git a/icons-png/star.png b/icons-png/star.png deleted file mode 100644 index 3bff5c12d..000000000 Binary files a/icons-png/star.png and /dev/null differ diff --git a/icons-png/stars-off.png b/icons-png/stars-off.png deleted file mode 100644 index 1a3efc5dd..000000000 Binary files a/icons-png/stars-off.png and /dev/null differ diff --git a/icons-png/stars.png b/icons-png/stars.png deleted file mode 100644 index becc90d95..000000000 Binary files a/icons-png/stars.png and /dev/null differ diff --git a/icons-png/status-change.png b/icons-png/status-change.png deleted file mode 100644 index cf9e29769..000000000 Binary files a/icons-png/status-change.png and /dev/null differ diff --git a/icons-png/steam.png b/icons-png/steam.png deleted file mode 100644 index 17327c668..000000000 Binary files a/icons-png/steam.png and /dev/null differ diff --git a/icons-png/steering-wheel-off.png b/icons-png/steering-wheel-off.png deleted file mode 100644 index fb4a979bc..000000000 Binary files a/icons-png/steering-wheel-off.png and /dev/null differ diff --git a/icons-png/steering-wheel.png b/icons-png/steering-wheel.png deleted file mode 100644 index 8f6871ed1..000000000 Binary files a/icons-png/steering-wheel.png and /dev/null differ diff --git a/icons-png/step-into.png b/icons-png/step-into.png deleted file mode 100644 index 202404c89..000000000 Binary files a/icons-png/step-into.png and /dev/null differ diff --git a/icons-png/step-out.png b/icons-png/step-out.png deleted file mode 100644 index 8cfb025e6..000000000 Binary files a/icons-png/step-out.png and /dev/null differ diff --git a/icons-png/stereo-glasses.png b/icons-png/stereo-glasses.png deleted file mode 100644 index dad165a27..000000000 Binary files a/icons-png/stereo-glasses.png and /dev/null differ diff --git a/icons-png/stethoscope-off.png b/icons-png/stethoscope-off.png deleted file mode 100644 index 2f9080f58..000000000 Binary files a/icons-png/stethoscope-off.png and /dev/null differ diff --git a/icons-png/stethoscope.png b/icons-png/stethoscope.png deleted file mode 100644 index 21c266b03..000000000 Binary files a/icons-png/stethoscope.png and /dev/null differ diff --git a/icons-png/sticker.png b/icons-png/sticker.png deleted file mode 100644 index 9c50654cd..000000000 Binary files a/icons-png/sticker.png and /dev/null differ diff --git a/icons-png/storm-off.png b/icons-png/storm-off.png deleted file mode 100644 index 2c0ccfc8c..000000000 Binary files a/icons-png/storm-off.png and /dev/null differ diff --git a/icons-png/storm.png b/icons-png/storm.png deleted file mode 100644 index c1b0d69d1..000000000 Binary files a/icons-png/storm.png and /dev/null differ diff --git a/icons-png/stretching.png b/icons-png/stretching.png deleted file mode 100644 index 19517754c..000000000 Binary files a/icons-png/stretching.png and /dev/null differ diff --git a/icons-png/strikethrough.png b/icons-png/strikethrough.png deleted file mode 100644 index 4c1ef768e..000000000 Binary files a/icons-png/strikethrough.png and /dev/null differ diff --git a/icons-png/submarine.png b/icons-png/submarine.png deleted file mode 100644 index 706d6a54f..000000000 Binary files a/icons-png/submarine.png and /dev/null differ diff --git a/icons-png/subscript.png b/icons-png/subscript.png deleted file mode 100644 index 1848006ab..000000000 Binary files a/icons-png/subscript.png and /dev/null differ diff --git a/icons-png/subtask.png b/icons-png/subtask.png deleted file mode 100644 index 5a6987c67..000000000 Binary files a/icons-png/subtask.png and /dev/null differ diff --git a/icons-png/sum-off.png b/icons-png/sum-off.png deleted file mode 100644 index 2d7de80ad..000000000 Binary files a/icons-png/sum-off.png and /dev/null differ diff --git a/icons-png/sum.png b/icons-png/sum.png deleted file mode 100644 index 5c1b989bc..000000000 Binary files a/icons-png/sum.png and /dev/null differ diff --git a/icons-png/sun-high.png b/icons-png/sun-high.png deleted file mode 100644 index 6ca43039b..000000000 Binary files a/icons-png/sun-high.png and /dev/null differ diff --git a/icons-png/sun-low.png b/icons-png/sun-low.png deleted file mode 100644 index 9fd01ff57..000000000 Binary files a/icons-png/sun-low.png and /dev/null differ diff --git a/icons-png/sun-moon.png b/icons-png/sun-moon.png deleted file mode 100644 index 1c2d1d320..000000000 Binary files a/icons-png/sun-moon.png and /dev/null differ diff --git a/icons-png/sun-off.png b/icons-png/sun-off.png deleted file mode 100644 index bc9b35475..000000000 Binary files a/icons-png/sun-off.png and /dev/null differ diff --git a/icons-png/sun-wind.png b/icons-png/sun-wind.png deleted file mode 100644 index d501f0c16..000000000 Binary files a/icons-png/sun-wind.png and /dev/null differ diff --git a/icons-png/sun.png b/icons-png/sun.png deleted file mode 100644 index fa1dff091..000000000 Binary files a/icons-png/sun.png and /dev/null differ diff --git a/icons-png/sunglasses.png b/icons-png/sunglasses.png deleted file mode 100644 index 707d101f5..000000000 Binary files a/icons-png/sunglasses.png and /dev/null differ diff --git a/icons-png/sunrise.png b/icons-png/sunrise.png deleted file mode 100644 index 7aedc2e5e..000000000 Binary files a/icons-png/sunrise.png and /dev/null differ diff --git a/icons-png/sunset-2.png b/icons-png/sunset-2.png deleted file mode 100644 index c4a006c9f..000000000 Binary files a/icons-png/sunset-2.png and /dev/null differ diff --git a/icons-png/sunset.png b/icons-png/sunset.png deleted file mode 100644 index ba40fb8b4..000000000 Binary files a/icons-png/sunset.png and /dev/null differ diff --git a/icons-png/superscript.png b/icons-png/superscript.png deleted file mode 100644 index 85d1e3252..000000000 Binary files a/icons-png/superscript.png and /dev/null differ diff --git a/icons-png/svg.png b/icons-png/svg.png deleted file mode 100644 index 3f6f67062..000000000 Binary files a/icons-png/svg.png and /dev/null differ diff --git a/icons-png/swimming.png b/icons-png/swimming.png deleted file mode 100644 index 2c34013a3..000000000 Binary files a/icons-png/swimming.png and /dev/null differ diff --git a/icons-png/swipe.png b/icons-png/swipe.png deleted file mode 100644 index d26782948..000000000 Binary files a/icons-png/swipe.png and /dev/null differ diff --git a/icons-png/switch-2.png b/icons-png/switch-2.png deleted file mode 100644 index 768bbcc16..000000000 Binary files a/icons-png/switch-2.png and /dev/null differ diff --git a/icons-png/switch-3.png b/icons-png/switch-3.png deleted file mode 100644 index 4e7cd6da0..000000000 Binary files a/icons-png/switch-3.png and /dev/null differ diff --git a/icons-png/switch-horizontal.png b/icons-png/switch-horizontal.png deleted file mode 100644 index 5ca35b929..000000000 Binary files a/icons-png/switch-horizontal.png and /dev/null differ diff --git a/icons-png/switch-vertical.png b/icons-png/switch-vertical.png deleted file mode 100644 index a9ebce46c..000000000 Binary files a/icons-png/switch-vertical.png and /dev/null differ diff --git a/icons-png/switch.png b/icons-png/switch.png deleted file mode 100644 index 49d9ce918..000000000 Binary files a/icons-png/switch.png and /dev/null differ diff --git a/icons-png/sword-off.png b/icons-png/sword-off.png deleted file mode 100644 index a31e12bb2..000000000 Binary files a/icons-png/sword-off.png and /dev/null differ diff --git a/icons-png/sword.png b/icons-png/sword.png deleted file mode 100644 index 75f7f3a58..000000000 Binary files a/icons-png/sword.png and /dev/null differ diff --git a/icons-png/swords.png b/icons-png/swords.png deleted file mode 100644 index 01b3e380f..000000000 Binary files a/icons-png/swords.png and /dev/null differ diff --git a/icons-png/table-alias.png b/icons-png/table-alias.png deleted file mode 100644 index 50ea86871..000000000 Binary files a/icons-png/table-alias.png and /dev/null differ diff --git a/icons-png/table-export.png b/icons-png/table-export.png deleted file mode 100644 index 62cf2b6f0..000000000 Binary files a/icons-png/table-export.png and /dev/null differ diff --git a/icons-png/table-import.png b/icons-png/table-import.png deleted file mode 100644 index 4ea98e4a5..000000000 Binary files a/icons-png/table-import.png and /dev/null differ diff --git a/icons-png/table-off.png b/icons-png/table-off.png deleted file mode 100644 index fc0a7e3d2..000000000 Binary files a/icons-png/table-off.png and /dev/null differ diff --git a/icons-png/table-options.png b/icons-png/table-options.png deleted file mode 100644 index d0f42272c..000000000 Binary files a/icons-png/table-options.png and /dev/null differ diff --git a/icons-png/table-shortcut.png b/icons-png/table-shortcut.png deleted file mode 100644 index f9748ea01..000000000 Binary files a/icons-png/table-shortcut.png and /dev/null differ diff --git a/icons-png/table.png b/icons-png/table.png deleted file mode 100644 index 0f83257c3..000000000 Binary files a/icons-png/table.png and /dev/null differ diff --git a/icons-png/tag-off.png b/icons-png/tag-off.png deleted file mode 100644 index a50859bbf..000000000 Binary files a/icons-png/tag-off.png and /dev/null differ diff --git a/icons-png/tag.png b/icons-png/tag.png deleted file mode 100644 index d8e4499e0..000000000 Binary files a/icons-png/tag.png and /dev/null differ diff --git a/icons-png/tags-off.png b/icons-png/tags-off.png deleted file mode 100644 index e2ad54320..000000000 Binary files a/icons-png/tags-off.png and /dev/null differ diff --git a/icons-png/tags.png b/icons-png/tags.png deleted file mode 100644 index 93bbff20c..000000000 Binary files a/icons-png/tags.png and /dev/null differ diff --git a/icons-png/tallymark-1.png b/icons-png/tallymark-1.png deleted file mode 100644 index 56bbdd9fe..000000000 Binary files a/icons-png/tallymark-1.png and /dev/null differ diff --git a/icons-png/tallymark-2.png b/icons-png/tallymark-2.png deleted file mode 100644 index ecdfbac76..000000000 Binary files a/icons-png/tallymark-2.png and /dev/null differ diff --git a/icons-png/tallymark-3.png b/icons-png/tallymark-3.png deleted file mode 100644 index e9fa5670a..000000000 Binary files a/icons-png/tallymark-3.png and /dev/null differ diff --git a/icons-png/tallymark-4.png b/icons-png/tallymark-4.png deleted file mode 100644 index 135c68545..000000000 Binary files a/icons-png/tallymark-4.png and /dev/null differ diff --git a/icons-png/tallymarks.png b/icons-png/tallymarks.png deleted file mode 100644 index 9224c3e6d..000000000 Binary files a/icons-png/tallymarks.png and /dev/null differ diff --git a/icons-png/tank.png b/icons-png/tank.png deleted file mode 100644 index e100e88ee..000000000 Binary files a/icons-png/tank.png and /dev/null differ diff --git a/icons-png/target-arrow.png b/icons-png/target-arrow.png deleted file mode 100644 index 6e4beec1e..000000000 Binary files a/icons-png/target-arrow.png and /dev/null differ diff --git a/icons-png/target-off.png b/icons-png/target-off.png deleted file mode 100644 index 412bfba29..000000000 Binary files a/icons-png/target-off.png and /dev/null differ diff --git a/icons-png/target.png b/icons-png/target.png deleted file mode 100644 index c67ec9046..000000000 Binary files a/icons-png/target.png and /dev/null differ diff --git a/icons-png/teapot.png b/icons-png/teapot.png deleted file mode 100644 index 638481e9a..000000000 Binary files a/icons-png/teapot.png and /dev/null differ diff --git a/icons-png/telescope-off.png b/icons-png/telescope-off.png deleted file mode 100644 index 6c92312a6..000000000 Binary files a/icons-png/telescope-off.png and /dev/null differ diff --git a/icons-png/telescope.png b/icons-png/telescope.png deleted file mode 100644 index 629a885e2..000000000 Binary files a/icons-png/telescope.png and /dev/null differ diff --git a/icons-png/temperature-celsius.png b/icons-png/temperature-celsius.png deleted file mode 100644 index 1dbf0ee1f..000000000 Binary files a/icons-png/temperature-celsius.png and /dev/null differ diff --git a/icons-png/temperature-fahrenheit.png b/icons-png/temperature-fahrenheit.png deleted file mode 100644 index 58401394f..000000000 Binary files a/icons-png/temperature-fahrenheit.png and /dev/null differ diff --git a/icons-png/temperature-minus.png b/icons-png/temperature-minus.png deleted file mode 100644 index 7ebb18d03..000000000 Binary files a/icons-png/temperature-minus.png and /dev/null differ diff --git a/icons-png/temperature-off.png b/icons-png/temperature-off.png deleted file mode 100644 index 3107994ee..000000000 Binary files a/icons-png/temperature-off.png and /dev/null differ diff --git a/icons-png/temperature-plus.png b/icons-png/temperature-plus.png deleted file mode 100644 index d18b8bcfa..000000000 Binary files a/icons-png/temperature-plus.png and /dev/null differ diff --git a/icons-png/temperature.png b/icons-png/temperature.png deleted file mode 100644 index d87f44ff9..000000000 Binary files a/icons-png/temperature.png and /dev/null differ diff --git a/icons-png/template-off.png b/icons-png/template-off.png deleted file mode 100644 index f5426546f..000000000 Binary files a/icons-png/template-off.png and /dev/null differ diff --git a/icons-png/template.png b/icons-png/template.png deleted file mode 100644 index 7e5a30214..000000000 Binary files a/icons-png/template.png and /dev/null differ diff --git a/icons-png/tent-off.png b/icons-png/tent-off.png deleted file mode 100644 index c70c0680c..000000000 Binary files a/icons-png/tent-off.png and /dev/null differ diff --git a/icons-png/tent.png b/icons-png/tent.png deleted file mode 100644 index ffc986e7a..000000000 Binary files a/icons-png/tent.png and /dev/null differ diff --git a/icons-png/terminal-2.png b/icons-png/terminal-2.png deleted file mode 100644 index dacf5f5ec..000000000 Binary files a/icons-png/terminal-2.png and /dev/null differ diff --git a/icons-png/terminal.png b/icons-png/terminal.png deleted file mode 100644 index 222fd5e21..000000000 Binary files a/icons-png/terminal.png and /dev/null differ diff --git a/icons-png/test-pipe-2.png b/icons-png/test-pipe-2.png deleted file mode 100644 index 8e1d7724c..000000000 Binary files a/icons-png/test-pipe-2.png and /dev/null differ diff --git a/icons-png/test-pipe-off.png b/icons-png/test-pipe-off.png deleted file mode 100644 index 7df61de9e..000000000 Binary files a/icons-png/test-pipe-off.png and /dev/null differ diff --git a/icons-png/test-pipe.png b/icons-png/test-pipe.png deleted file mode 100644 index dac40eb0a..000000000 Binary files a/icons-png/test-pipe.png and /dev/null differ diff --git a/icons-png/tex.png b/icons-png/tex.png deleted file mode 100644 index 2ff5942cf..000000000 Binary files a/icons-png/tex.png and /dev/null differ diff --git a/icons-png/text-caption.png b/icons-png/text-caption.png deleted file mode 100644 index 9bc39a860..000000000 Binary files a/icons-png/text-caption.png and /dev/null differ diff --git a/icons-png/text-color.png b/icons-png/text-color.png deleted file mode 100644 index c67b3a2b9..000000000 Binary files a/icons-png/text-color.png and /dev/null differ diff --git a/icons-png/text-decrease.png b/icons-png/text-decrease.png deleted file mode 100644 index 05900a972..000000000 Binary files a/icons-png/text-decrease.png and /dev/null differ diff --git a/icons-png/text-direction-ltr.png b/icons-png/text-direction-ltr.png deleted file mode 100644 index ed6dd5f90..000000000 Binary files a/icons-png/text-direction-ltr.png and /dev/null differ diff --git a/icons-png/text-direction-rtl.png b/icons-png/text-direction-rtl.png deleted file mode 100644 index 6ec5d958d..000000000 Binary files a/icons-png/text-direction-rtl.png and /dev/null differ diff --git a/icons-png/text-increase.png b/icons-png/text-increase.png deleted file mode 100644 index d56a18c22..000000000 Binary files a/icons-png/text-increase.png and /dev/null differ diff --git a/icons-png/text-orientation.png b/icons-png/text-orientation.png deleted file mode 100644 index f75e315d4..000000000 Binary files a/icons-png/text-orientation.png and /dev/null differ diff --git a/icons-png/text-plus.png b/icons-png/text-plus.png deleted file mode 100644 index d9819bb8e..000000000 Binary files a/icons-png/text-plus.png and /dev/null differ diff --git a/icons-png/text-recognition.png b/icons-png/text-recognition.png deleted file mode 100644 index 1344cc0d1..000000000 Binary files a/icons-png/text-recognition.png and /dev/null differ diff --git a/icons-png/text-resize.png b/icons-png/text-resize.png deleted file mode 100644 index 8dea6a0c8..000000000 Binary files a/icons-png/text-resize.png and /dev/null differ diff --git a/icons-png/text-size.png b/icons-png/text-size.png deleted file mode 100644 index ef5e1523c..000000000 Binary files a/icons-png/text-size.png and /dev/null differ diff --git a/icons-png/text-spellcheck.png b/icons-png/text-spellcheck.png deleted file mode 100644 index 0f3215b7c..000000000 Binary files a/icons-png/text-spellcheck.png and /dev/null differ diff --git a/icons-png/text-wrap-disabled.png b/icons-png/text-wrap-disabled.png deleted file mode 100644 index 278d62384..000000000 Binary files a/icons-png/text-wrap-disabled.png and /dev/null differ diff --git a/icons-png/text-wrap.png b/icons-png/text-wrap.png deleted file mode 100644 index 6caae52f9..000000000 Binary files a/icons-png/text-wrap.png and /dev/null differ diff --git a/icons-png/texture.png b/icons-png/texture.png deleted file mode 100644 index 302b9276c..000000000 Binary files a/icons-png/texture.png and /dev/null differ diff --git a/icons-png/thermometer.png b/icons-png/thermometer.png deleted file mode 100644 index 3a9755464..000000000 Binary files a/icons-png/thermometer.png and /dev/null differ diff --git a/icons-png/thumb-down-off.png b/icons-png/thumb-down-off.png deleted file mode 100644 index 74ef1fe1e..000000000 Binary files a/icons-png/thumb-down-off.png and /dev/null differ diff --git a/icons-png/thumb-down.png b/icons-png/thumb-down.png deleted file mode 100644 index 21f5d8c00..000000000 Binary files a/icons-png/thumb-down.png and /dev/null differ diff --git a/icons-png/thumb-up-off.png b/icons-png/thumb-up-off.png deleted file mode 100644 index 71361e406..000000000 Binary files a/icons-png/thumb-up-off.png and /dev/null differ diff --git a/icons-png/thumb-up.png b/icons-png/thumb-up.png deleted file mode 100644 index 35155be84..000000000 Binary files a/icons-png/thumb-up.png and /dev/null differ diff --git a/icons-png/tic-tac.png b/icons-png/tic-tac.png deleted file mode 100644 index 2069dd69a..000000000 Binary files a/icons-png/tic-tac.png and /dev/null differ diff --git a/icons-png/ticket-off.png b/icons-png/ticket-off.png deleted file mode 100644 index 4c3d1a33b..000000000 Binary files a/icons-png/ticket-off.png and /dev/null differ diff --git a/icons-png/ticket.png b/icons-png/ticket.png deleted file mode 100644 index 29ad52365..000000000 Binary files a/icons-png/ticket.png and /dev/null differ diff --git a/icons-png/tie.png b/icons-png/tie.png deleted file mode 100644 index 0131a994e..000000000 Binary files a/icons-png/tie.png and /dev/null differ diff --git a/icons-png/tilde.png b/icons-png/tilde.png deleted file mode 100644 index 0e707c3fe..000000000 Binary files a/icons-png/tilde.png and /dev/null differ diff --git a/icons-png/tilt-shift-off.png b/icons-png/tilt-shift-off.png deleted file mode 100644 index 95dda7404..000000000 Binary files a/icons-png/tilt-shift-off.png and /dev/null differ diff --git a/icons-png/tilt-shift.png b/icons-png/tilt-shift.png deleted file mode 100644 index f518f4766..000000000 Binary files a/icons-png/tilt-shift.png and /dev/null differ diff --git a/icons-png/timeline-event-exclamation.png b/icons-png/timeline-event-exclamation.png deleted file mode 100644 index b814134ee..000000000 Binary files a/icons-png/timeline-event-exclamation.png and /dev/null differ diff --git a/icons-png/timeline-event-minus.png b/icons-png/timeline-event-minus.png deleted file mode 100644 index ec004ac94..000000000 Binary files a/icons-png/timeline-event-minus.png and /dev/null differ diff --git a/icons-png/timeline-event-plus.png b/icons-png/timeline-event-plus.png deleted file mode 100644 index e2fc60142..000000000 Binary files a/icons-png/timeline-event-plus.png and /dev/null differ diff --git a/icons-png/timeline-event-text.png b/icons-png/timeline-event-text.png deleted file mode 100644 index 8885aef2b..000000000 Binary files a/icons-png/timeline-event-text.png and /dev/null differ diff --git a/icons-png/timeline-event-x.png b/icons-png/timeline-event-x.png deleted file mode 100644 index 8cee7242e..000000000 Binary files a/icons-png/timeline-event-x.png and /dev/null differ diff --git a/icons-png/timeline-event.png b/icons-png/timeline-event.png deleted file mode 100644 index 7e3961b96..000000000 Binary files a/icons-png/timeline-event.png and /dev/null differ diff --git a/icons-png/timeline.png b/icons-png/timeline.png deleted file mode 100644 index 51a11ab81..000000000 Binary files a/icons-png/timeline.png and /dev/null differ diff --git a/icons-png/tir.png b/icons-png/tir.png deleted file mode 100644 index 538ec43d8..000000000 Binary files a/icons-png/tir.png and /dev/null differ diff --git a/icons-png/toggle-left.png b/icons-png/toggle-left.png deleted file mode 100644 index bc56b8d41..000000000 Binary files a/icons-png/toggle-left.png and /dev/null differ diff --git a/icons-png/toggle-right.png b/icons-png/toggle-right.png deleted file mode 100644 index fa2887c5b..000000000 Binary files a/icons-png/toggle-right.png and /dev/null differ diff --git a/icons-png/toilet-paper-off.png b/icons-png/toilet-paper-off.png deleted file mode 100644 index febf814dc..000000000 Binary files a/icons-png/toilet-paper-off.png and /dev/null differ diff --git a/icons-png/toilet-paper.png b/icons-png/toilet-paper.png deleted file mode 100644 index 053b51015..000000000 Binary files a/icons-png/toilet-paper.png and /dev/null differ diff --git a/icons-png/tool.png b/icons-png/tool.png deleted file mode 100644 index 4d2c2a1c8..000000000 Binary files a/icons-png/tool.png and /dev/null differ diff --git a/icons-png/tools-kitchen-2-off.png b/icons-png/tools-kitchen-2-off.png deleted file mode 100644 index cd9bfc546..000000000 Binary files a/icons-png/tools-kitchen-2-off.png and /dev/null differ diff --git a/icons-png/tools-kitchen-2.png b/icons-png/tools-kitchen-2.png deleted file mode 100644 index 2b72dc671..000000000 Binary files a/icons-png/tools-kitchen-2.png and /dev/null differ diff --git a/icons-png/tools-kitchen-off.png b/icons-png/tools-kitchen-off.png deleted file mode 100644 index 571fb8bff..000000000 Binary files a/icons-png/tools-kitchen-off.png and /dev/null differ diff --git a/icons-png/tools-kitchen.png b/icons-png/tools-kitchen.png deleted file mode 100644 index a6c0f21fa..000000000 Binary files a/icons-png/tools-kitchen.png and /dev/null differ diff --git a/icons-png/tools-off.png b/icons-png/tools-off.png deleted file mode 100644 index 15ee7751a..000000000 Binary files a/icons-png/tools-off.png and /dev/null differ diff --git a/icons-png/tools.png b/icons-png/tools.png deleted file mode 100644 index 4bd7e1f7d..000000000 Binary files a/icons-png/tools.png and /dev/null differ diff --git a/icons-png/tooltip.png b/icons-png/tooltip.png deleted file mode 100644 index aed52f723..000000000 Binary files a/icons-png/tooltip.png and /dev/null differ diff --git a/icons-png/topology-bus.png b/icons-png/topology-bus.png deleted file mode 100644 index 0397c0038..000000000 Binary files a/icons-png/topology-bus.png and /dev/null differ diff --git a/icons-png/topology-complex.png b/icons-png/topology-complex.png deleted file mode 100644 index 61a9d8ace..000000000 Binary files a/icons-png/topology-complex.png and /dev/null differ diff --git a/icons-png/topology-full-hierarchy.png b/icons-png/topology-full-hierarchy.png deleted file mode 100644 index bdac48726..000000000 Binary files a/icons-png/topology-full-hierarchy.png and /dev/null differ diff --git a/icons-png/topology-full.png b/icons-png/topology-full.png deleted file mode 100644 index ffea6ce23..000000000 Binary files a/icons-png/topology-full.png and /dev/null differ diff --git a/icons-png/topology-ring-2.png b/icons-png/topology-ring-2.png deleted file mode 100644 index b809a1890..000000000 Binary files a/icons-png/topology-ring-2.png and /dev/null differ diff --git a/icons-png/topology-ring-3.png b/icons-png/topology-ring-3.png deleted file mode 100644 index 061229018..000000000 Binary files a/icons-png/topology-ring-3.png and /dev/null differ diff --git a/icons-png/topology-ring.png b/icons-png/topology-ring.png deleted file mode 100644 index eb3de1e43..000000000 Binary files a/icons-png/topology-ring.png and /dev/null differ diff --git a/icons-png/topology-star-2.png b/icons-png/topology-star-2.png deleted file mode 100644 index de6aa4979..000000000 Binary files a/icons-png/topology-star-2.png and /dev/null differ diff --git a/icons-png/topology-star-3.png b/icons-png/topology-star-3.png deleted file mode 100644 index 8a562730b..000000000 Binary files a/icons-png/topology-star-3.png and /dev/null differ diff --git a/icons-png/topology-star-ring-2.png b/icons-png/topology-star-ring-2.png deleted file mode 100644 index 897785a7e..000000000 Binary files a/icons-png/topology-star-ring-2.png and /dev/null differ diff --git a/icons-png/topology-star-ring-3.png b/icons-png/topology-star-ring-3.png deleted file mode 100644 index b377277e8..000000000 Binary files a/icons-png/topology-star-ring-3.png and /dev/null differ diff --git a/icons-png/topology-star-ring.png b/icons-png/topology-star-ring.png deleted file mode 100644 index 897785a7e..000000000 Binary files a/icons-png/topology-star-ring.png and /dev/null differ diff --git a/icons-png/topology-star.png b/icons-png/topology-star.png deleted file mode 100644 index bdd851ada..000000000 Binary files a/icons-png/topology-star.png and /dev/null differ diff --git a/icons-png/torii.png b/icons-png/torii.png deleted file mode 100644 index 3e4c02aff..000000000 Binary files a/icons-png/torii.png and /dev/null differ diff --git a/icons-png/tornado.png b/icons-png/tornado.png deleted file mode 100644 index a69fafd5b..000000000 Binary files a/icons-png/tornado.png and /dev/null differ diff --git a/icons-png/tournament.png b/icons-png/tournament.png deleted file mode 100644 index 8909510bc..000000000 Binary files a/icons-png/tournament.png and /dev/null differ diff --git a/icons-png/tower-off.png b/icons-png/tower-off.png deleted file mode 100644 index 7c909da28..000000000 Binary files a/icons-png/tower-off.png and /dev/null differ diff --git a/icons-png/tower.png b/icons-png/tower.png deleted file mode 100644 index 912b50f56..000000000 Binary files a/icons-png/tower.png and /dev/null differ diff --git a/icons-png/track.png b/icons-png/track.png deleted file mode 100644 index 51eaf161c..000000000 Binary files a/icons-png/track.png and /dev/null differ diff --git a/icons-png/tractor.png b/icons-png/tractor.png deleted file mode 100644 index a59c210ad..000000000 Binary files a/icons-png/tractor.png and /dev/null differ diff --git a/icons-png/trademark.png b/icons-png/trademark.png deleted file mode 100644 index 1c94ece2a..000000000 Binary files a/icons-png/trademark.png and /dev/null differ diff --git a/icons-png/traffic-cone-off.png b/icons-png/traffic-cone-off.png deleted file mode 100644 index e9ece313c..000000000 Binary files a/icons-png/traffic-cone-off.png and /dev/null differ diff --git a/icons-png/traffic-cone.png b/icons-png/traffic-cone.png deleted file mode 100644 index 15922fc0e..000000000 Binary files a/icons-png/traffic-cone.png and /dev/null differ diff --git a/icons-png/traffic-lights-off.png b/icons-png/traffic-lights-off.png deleted file mode 100644 index 002631ba8..000000000 Binary files a/icons-png/traffic-lights-off.png and /dev/null differ diff --git a/icons-png/traffic-lights.png b/icons-png/traffic-lights.png deleted file mode 100644 index 4093802dc..000000000 Binary files a/icons-png/traffic-lights.png and /dev/null differ diff --git a/icons-png/train.png b/icons-png/train.png deleted file mode 100644 index 4de6f9231..000000000 Binary files a/icons-png/train.png and /dev/null differ diff --git a/icons-png/transfer-in.png b/icons-png/transfer-in.png deleted file mode 100644 index 66e821275..000000000 Binary files a/icons-png/transfer-in.png and /dev/null differ diff --git a/icons-png/transfer-out.png b/icons-png/transfer-out.png deleted file mode 100644 index ed35bcdd0..000000000 Binary files a/icons-png/transfer-out.png and /dev/null differ diff --git a/icons-png/transform.png b/icons-png/transform.png deleted file mode 100644 index ce7d10a91..000000000 Binary files a/icons-png/transform.png and /dev/null differ diff --git a/icons-png/transition-bottom.png b/icons-png/transition-bottom.png deleted file mode 100644 index a995fbaac..000000000 Binary files a/icons-png/transition-bottom.png and /dev/null differ diff --git a/icons-png/transition-left.png b/icons-png/transition-left.png deleted file mode 100644 index fc9a2cb95..000000000 Binary files a/icons-png/transition-left.png and /dev/null differ diff --git a/icons-png/transition-right.png b/icons-png/transition-right.png deleted file mode 100644 index 5934db4a7..000000000 Binary files a/icons-png/transition-right.png and /dev/null differ diff --git a/icons-png/transition-top.png b/icons-png/transition-top.png deleted file mode 100644 index 64bcb78bf..000000000 Binary files a/icons-png/transition-top.png and /dev/null differ diff --git a/icons-png/trash-off.png b/icons-png/trash-off.png deleted file mode 100644 index ca759a44c..000000000 Binary files a/icons-png/trash-off.png and /dev/null differ diff --git a/icons-png/trash-x.png b/icons-png/trash-x.png deleted file mode 100644 index bb2ab457f..000000000 Binary files a/icons-png/trash-x.png and /dev/null differ diff --git a/icons-png/trash.png b/icons-png/trash.png deleted file mode 100644 index 470c214c4..000000000 Binary files a/icons-png/trash.png and /dev/null differ diff --git a/icons-png/tree.png b/icons-png/tree.png deleted file mode 100644 index f288842ff..000000000 Binary files a/icons-png/tree.png and /dev/null differ diff --git a/icons-png/trees.png b/icons-png/trees.png deleted file mode 100644 index 72d875dbc..000000000 Binary files a/icons-png/trees.png and /dev/null differ diff --git a/icons-png/trekking.png b/icons-png/trekking.png deleted file mode 100644 index 24a325acd..000000000 Binary files a/icons-png/trekking.png and /dev/null differ diff --git a/icons-png/trending-down-2.png b/icons-png/trending-down-2.png deleted file mode 100644 index cb83a9a7a..000000000 Binary files a/icons-png/trending-down-2.png and /dev/null differ diff --git a/icons-png/trending-down-3.png b/icons-png/trending-down-3.png deleted file mode 100644 index 4a901883e..000000000 Binary files a/icons-png/trending-down-3.png and /dev/null differ diff --git a/icons-png/trending-down.png b/icons-png/trending-down.png deleted file mode 100644 index ac2b13243..000000000 Binary files a/icons-png/trending-down.png and /dev/null differ diff --git a/icons-png/trending-up-2.png b/icons-png/trending-up-2.png deleted file mode 100644 index 9c5a1dd68..000000000 Binary files a/icons-png/trending-up-2.png and /dev/null differ diff --git a/icons-png/trending-up-3.png b/icons-png/trending-up-3.png deleted file mode 100644 index 70430c2b2..000000000 Binary files a/icons-png/trending-up-3.png and /dev/null differ diff --git a/icons-png/trending-up.png b/icons-png/trending-up.png deleted file mode 100644 index 30597875d..000000000 Binary files a/icons-png/trending-up.png and /dev/null differ diff --git a/icons-png/triangle-inverted.png b/icons-png/triangle-inverted.png deleted file mode 100644 index d8f37aab7..000000000 Binary files a/icons-png/triangle-inverted.png and /dev/null differ diff --git a/icons-png/triangle-off.png b/icons-png/triangle-off.png deleted file mode 100644 index f3b316d5d..000000000 Binary files a/icons-png/triangle-off.png and /dev/null differ diff --git a/icons-png/triangle-square-circle.png b/icons-png/triangle-square-circle.png deleted file mode 100644 index 1acfdec56..000000000 Binary files a/icons-png/triangle-square-circle.png and /dev/null differ diff --git a/icons-png/triangle.png b/icons-png/triangle.png deleted file mode 100644 index b0f86bfb9..000000000 Binary files a/icons-png/triangle.png and /dev/null differ diff --git a/icons-png/triangles.png b/icons-png/triangles.png deleted file mode 100644 index 6f50beba7..000000000 Binary files a/icons-png/triangles.png and /dev/null differ diff --git a/icons-png/trident.png b/icons-png/trident.png deleted file mode 100644 index d2b2169ba..000000000 Binary files a/icons-png/trident.png and /dev/null differ diff --git a/icons-png/trolley.png b/icons-png/trolley.png deleted file mode 100644 index 69ac2067b..000000000 Binary files a/icons-png/trolley.png and /dev/null differ diff --git a/icons-png/trophy-off.png b/icons-png/trophy-off.png deleted file mode 100644 index 86ab20358..000000000 Binary files a/icons-png/trophy-off.png and /dev/null differ diff --git a/icons-png/trophy.png b/icons-png/trophy.png deleted file mode 100644 index eed5c936a..000000000 Binary files a/icons-png/trophy.png and /dev/null differ diff --git a/icons-png/trowel.png b/icons-png/trowel.png deleted file mode 100644 index b6d8cfe52..000000000 Binary files a/icons-png/trowel.png and /dev/null differ diff --git a/icons-png/truck-delivery.png b/icons-png/truck-delivery.png deleted file mode 100644 index fbfd13d80..000000000 Binary files a/icons-png/truck-delivery.png and /dev/null differ diff --git a/icons-png/truck-loading.png b/icons-png/truck-loading.png deleted file mode 100644 index ea0f545f9..000000000 Binary files a/icons-png/truck-loading.png and /dev/null differ diff --git a/icons-png/truck-off.png b/icons-png/truck-off.png deleted file mode 100644 index 95a685b79..000000000 Binary files a/icons-png/truck-off.png and /dev/null differ diff --git a/icons-png/truck-return.png b/icons-png/truck-return.png deleted file mode 100644 index 7b8157798..000000000 Binary files a/icons-png/truck-return.png and /dev/null differ diff --git a/icons-png/truck.png b/icons-png/truck.png deleted file mode 100644 index 712de3fc8..000000000 Binary files a/icons-png/truck.png and /dev/null differ diff --git a/icons-png/txt.png b/icons-png/txt.png deleted file mode 100644 index dd1964672..000000000 Binary files a/icons-png/txt.png and /dev/null differ diff --git a/icons-png/typography-off.png b/icons-png/typography-off.png deleted file mode 100644 index 70f6315d8..000000000 Binary files a/icons-png/typography-off.png and /dev/null differ diff --git a/icons-png/typography.png b/icons-png/typography.png deleted file mode 100644 index 8a3aec756..000000000 Binary files a/icons-png/typography.png and /dev/null differ diff --git a/icons-png/uf-off.png b/icons-png/uf-off.png deleted file mode 100644 index 890cb2e34..000000000 Binary files a/icons-png/uf-off.png and /dev/null differ diff --git a/icons-png/ufo.png b/icons-png/ufo.png deleted file mode 100644 index ef9149aa0..000000000 Binary files a/icons-png/ufo.png and /dev/null differ diff --git a/icons-png/umbrella-off.png b/icons-png/umbrella-off.png deleted file mode 100644 index cc48767ac..000000000 Binary files a/icons-png/umbrella-off.png and /dev/null differ diff --git a/icons-png/umbrella.png b/icons-png/umbrella.png deleted file mode 100644 index d0ea51c90..000000000 Binary files a/icons-png/umbrella.png and /dev/null differ diff --git a/icons-png/underline.png b/icons-png/underline.png deleted file mode 100644 index ebd1c941f..000000000 Binary files a/icons-png/underline.png and /dev/null differ diff --git a/icons-png/unlink.png b/icons-png/unlink.png deleted file mode 100644 index b86532045..000000000 Binary files a/icons-png/unlink.png and /dev/null differ diff --git a/icons-png/upload.png b/icons-png/upload.png deleted file mode 100644 index dddc4c8f1..000000000 Binary files a/icons-png/upload.png and /dev/null differ diff --git a/icons-png/urgent.png b/icons-png/urgent.png deleted file mode 100644 index 80ec924f1..000000000 Binary files a/icons-png/urgent.png and /dev/null differ diff --git a/icons-png/usb.png b/icons-png/usb.png deleted file mode 100644 index cbf95ac66..000000000 Binary files a/icons-png/usb.png and /dev/null differ diff --git a/icons-png/user-check.png b/icons-png/user-check.png deleted file mode 100644 index e628197e8..000000000 Binary files a/icons-png/user-check.png and /dev/null differ diff --git a/icons-png/user-circle.png b/icons-png/user-circle.png deleted file mode 100644 index 75e43b424..000000000 Binary files a/icons-png/user-circle.png and /dev/null differ diff --git a/icons-png/user-exclamation.png b/icons-png/user-exclamation.png deleted file mode 100644 index ecf09a138..000000000 Binary files a/icons-png/user-exclamation.png and /dev/null differ diff --git a/icons-png/user-minus.png b/icons-png/user-minus.png deleted file mode 100644 index 570a48918..000000000 Binary files a/icons-png/user-minus.png and /dev/null differ diff --git a/icons-png/user-off.png b/icons-png/user-off.png deleted file mode 100644 index e67732a92..000000000 Binary files a/icons-png/user-off.png and /dev/null differ diff --git a/icons-png/user-plus.png b/icons-png/user-plus.png deleted file mode 100644 index c05f66b80..000000000 Binary files a/icons-png/user-plus.png and /dev/null differ diff --git a/icons-png/user-search.png b/icons-png/user-search.png deleted file mode 100644 index d080f6680..000000000 Binary files a/icons-png/user-search.png and /dev/null differ diff --git a/icons-png/user-x.png b/icons-png/user-x.png deleted file mode 100644 index 710e5268c..000000000 Binary files a/icons-png/user-x.png and /dev/null differ diff --git a/icons-png/user.png b/icons-png/user.png deleted file mode 100644 index 671df8d49..000000000 Binary files a/icons-png/user.png and /dev/null differ diff --git a/icons-png/users.png b/icons-png/users.png deleted file mode 100644 index 29387e1c7..000000000 Binary files a/icons-png/users.png and /dev/null differ diff --git a/icons-png/uv-index.png b/icons-png/uv-index.png deleted file mode 100644 index 1eacfccca..000000000 Binary files a/icons-png/uv-index.png and /dev/null differ diff --git a/icons-png/ux-circle.png b/icons-png/ux-circle.png deleted file mode 100644 index 0d7d67397..000000000 Binary files a/icons-png/ux-circle.png and /dev/null differ diff --git a/icons-png/vaccine-bottle-off.png b/icons-png/vaccine-bottle-off.png deleted file mode 100644 index aba3a4e60..000000000 Binary files a/icons-png/vaccine-bottle-off.png and /dev/null differ diff --git a/icons-png/vaccine-bottle.png b/icons-png/vaccine-bottle.png deleted file mode 100644 index 24f2d2c37..000000000 Binary files a/icons-png/vaccine-bottle.png and /dev/null differ diff --git a/icons-png/vaccine-off.png b/icons-png/vaccine-off.png deleted file mode 100644 index 65ff3d3cd..000000000 Binary files a/icons-png/vaccine-off.png and /dev/null differ diff --git a/icons-png/vaccine.png b/icons-png/vaccine.png deleted file mode 100644 index 0fb8f8deb..000000000 Binary files a/icons-png/vaccine.png and /dev/null differ diff --git a/icons-png/vacuum-cleaner.png b/icons-png/vacuum-cleaner.png deleted file mode 100644 index cb7b110db..000000000 Binary files a/icons-png/vacuum-cleaner.png and /dev/null differ diff --git a/icons-png/variable-minus.png b/icons-png/variable-minus.png deleted file mode 100644 index f21c0e7e8..000000000 Binary files a/icons-png/variable-minus.png and /dev/null differ diff --git a/icons-png/variable-off.png b/icons-png/variable-off.png deleted file mode 100644 index c316d4fc5..000000000 Binary files a/icons-png/variable-off.png and /dev/null differ diff --git a/icons-png/variable-plus.png b/icons-png/variable-plus.png deleted file mode 100644 index 3d9e1623f..000000000 Binary files a/icons-png/variable-plus.png and /dev/null differ diff --git a/icons-png/variable.png b/icons-png/variable.png deleted file mode 100644 index 923bc6250..000000000 Binary files a/icons-png/variable.png and /dev/null differ diff --git a/icons-png/vector-bezier-2.png b/icons-png/vector-bezier-2.png deleted file mode 100644 index 9581eb556..000000000 Binary files a/icons-png/vector-bezier-2.png and /dev/null differ diff --git a/icons-png/vector-bezier-arc.png b/icons-png/vector-bezier-arc.png deleted file mode 100644 index ca8974d4a..000000000 Binary files a/icons-png/vector-bezier-arc.png and /dev/null differ diff --git a/icons-png/vector-bezier-circle.png b/icons-png/vector-bezier-circle.png deleted file mode 100644 index 60392ba67..000000000 Binary files a/icons-png/vector-bezier-circle.png and /dev/null differ diff --git a/icons-png/vector-bezier.png b/icons-png/vector-bezier.png deleted file mode 100644 index ddb915262..000000000 Binary files a/icons-png/vector-bezier.png and /dev/null differ diff --git a/icons-png/vector-off.png b/icons-png/vector-off.png deleted file mode 100644 index 64e22d77a..000000000 Binary files a/icons-png/vector-off.png and /dev/null differ diff --git a/icons-png/vector-spline.png b/icons-png/vector-spline.png deleted file mode 100644 index b56957d5a..000000000 Binary files a/icons-png/vector-spline.png and /dev/null differ diff --git a/icons-png/vector-triangle-off.png b/icons-png/vector-triangle-off.png deleted file mode 100644 index 50a63e59c..000000000 Binary files a/icons-png/vector-triangle-off.png and /dev/null differ diff --git a/icons-png/vector-triangle.png b/icons-png/vector-triangle.png deleted file mode 100644 index 16f469aeb..000000000 Binary files a/icons-png/vector-triangle.png and /dev/null differ diff --git a/icons-png/vector.png b/icons-png/vector.png deleted file mode 100644 index 26b7faa7e..000000000 Binary files a/icons-png/vector.png and /dev/null differ diff --git a/icons-png/venus.png b/icons-png/venus.png deleted file mode 100644 index 194fc34a5..000000000 Binary files a/icons-png/venus.png and /dev/null differ diff --git a/icons-png/versions-off.png b/icons-png/versions-off.png deleted file mode 100644 index 6ee4ed164..000000000 Binary files a/icons-png/versions-off.png and /dev/null differ diff --git a/icons-png/versions.png b/icons-png/versions.png deleted file mode 100644 index 8c52598dd..000000000 Binary files a/icons-png/versions.png and /dev/null differ diff --git a/icons-png/video-minus.png b/icons-png/video-minus.png deleted file mode 100644 index c435c0c5f..000000000 Binary files a/icons-png/video-minus.png and /dev/null differ diff --git a/icons-png/video-off.png b/icons-png/video-off.png deleted file mode 100644 index d77a1108c..000000000 Binary files a/icons-png/video-off.png and /dev/null differ diff --git a/icons-png/video-plus.png b/icons-png/video-plus.png deleted file mode 100644 index 6f120215c..000000000 Binary files a/icons-png/video-plus.png and /dev/null differ diff --git a/icons-png/video.png b/icons-png/video.png deleted file mode 100644 index 09e63fbe6..000000000 Binary files a/icons-png/video.png and /dev/null differ diff --git a/icons-png/view-360-off.png b/icons-png/view-360-off.png deleted file mode 100644 index 30e1f2731..000000000 Binary files a/icons-png/view-360-off.png and /dev/null differ diff --git a/icons-png/view-360.png b/icons-png/view-360.png deleted file mode 100644 index bf7ff90c9..000000000 Binary files a/icons-png/view-360.png and /dev/null differ diff --git a/icons-png/viewfinder-off.png b/icons-png/viewfinder-off.png deleted file mode 100644 index 1646c30ae..000000000 Binary files a/icons-png/viewfinder-off.png and /dev/null differ diff --git a/icons-png/viewfinder.png b/icons-png/viewfinder.png deleted file mode 100644 index 077a6bb7d..000000000 Binary files a/icons-png/viewfinder.png and /dev/null differ diff --git a/icons-png/viewport-narrow.png b/icons-png/viewport-narrow.png deleted file mode 100644 index b87e4e47a..000000000 Binary files a/icons-png/viewport-narrow.png and /dev/null differ diff --git a/icons-png/viewport-wide.png b/icons-png/viewport-wide.png deleted file mode 100644 index d9b0ff647..000000000 Binary files a/icons-png/viewport-wide.png and /dev/null differ diff --git a/icons-png/vinyl.png b/icons-png/vinyl.png deleted file mode 100644 index 5f7eb489f..000000000 Binary files a/icons-png/vinyl.png and /dev/null differ diff --git a/icons-png/vip-off.png b/icons-png/vip-off.png deleted file mode 100644 index ed5344f9c..000000000 Binary files a/icons-png/vip-off.png and /dev/null differ diff --git a/icons-png/vip.png b/icons-png/vip.png deleted file mode 100644 index e3c87ab23..000000000 Binary files a/icons-png/vip.png and /dev/null differ diff --git a/icons-png/virus-off.png b/icons-png/virus-off.png deleted file mode 100644 index 4a30e93e3..000000000 Binary files a/icons-png/virus-off.png and /dev/null differ diff --git a/icons-png/virus-search.png b/icons-png/virus-search.png deleted file mode 100644 index 863f58e1e..000000000 Binary files a/icons-png/virus-search.png and /dev/null differ diff --git a/icons-png/virus.png b/icons-png/virus.png deleted file mode 100644 index ef239e54a..000000000 Binary files a/icons-png/virus.png and /dev/null differ diff --git a/icons-png/vocabulary-off.png b/icons-png/vocabulary-off.png deleted file mode 100644 index 47943ba01..000000000 Binary files a/icons-png/vocabulary-off.png and /dev/null differ diff --git a/icons-png/vocabulary.png b/icons-png/vocabulary.png deleted file mode 100644 index 0d6b1d1a0..000000000 Binary files a/icons-png/vocabulary.png and /dev/null differ diff --git a/icons-png/volume-2.png b/icons-png/volume-2.png deleted file mode 100644 index 04e5e96e4..000000000 Binary files a/icons-png/volume-2.png and /dev/null differ diff --git a/icons-png/volume-3.png b/icons-png/volume-3.png deleted file mode 100644 index 700757155..000000000 Binary files a/icons-png/volume-3.png and /dev/null differ diff --git a/icons-png/volume-off.png b/icons-png/volume-off.png deleted file mode 100644 index 51550bfa9..000000000 Binary files a/icons-png/volume-off.png and /dev/null differ diff --git a/icons-png/volume.png b/icons-png/volume.png deleted file mode 100644 index 5e9031794..000000000 Binary files a/icons-png/volume.png and /dev/null differ diff --git a/icons-png/walk.png b/icons-png/walk.png deleted file mode 100644 index 93e26df3b..000000000 Binary files a/icons-png/walk.png and /dev/null differ diff --git a/icons-png/wall-off.png b/icons-png/wall-off.png deleted file mode 100644 index b42703df8..000000000 Binary files a/icons-png/wall-off.png and /dev/null differ diff --git a/icons-png/wall.png b/icons-png/wall.png deleted file mode 100644 index 3317a0cd1..000000000 Binary files a/icons-png/wall.png and /dev/null differ diff --git a/icons-png/wallet-off.png b/icons-png/wallet-off.png deleted file mode 100644 index 340c98f84..000000000 Binary files a/icons-png/wallet-off.png and /dev/null differ diff --git a/icons-png/wallet.png b/icons-png/wallet.png deleted file mode 100644 index 01f4d527e..000000000 Binary files a/icons-png/wallet.png and /dev/null differ diff --git a/icons-png/wallpaper-off.png b/icons-png/wallpaper-off.png deleted file mode 100644 index d7cd84c26..000000000 Binary files a/icons-png/wallpaper-off.png and /dev/null differ diff --git a/icons-png/wallpaper.png b/icons-png/wallpaper.png deleted file mode 100644 index bf11811d3..000000000 Binary files a/icons-png/wallpaper.png and /dev/null differ diff --git a/icons-png/wand-off.png b/icons-png/wand-off.png deleted file mode 100644 index a8730ae63..000000000 Binary files a/icons-png/wand-off.png and /dev/null differ diff --git a/icons-png/wand.png b/icons-png/wand.png deleted file mode 100644 index e3c834e18..000000000 Binary files a/icons-png/wand.png and /dev/null differ diff --git a/icons-png/wash-dry-1.png b/icons-png/wash-dry-1.png deleted file mode 100644 index c37b9d17b..000000000 Binary files a/icons-png/wash-dry-1.png and /dev/null differ diff --git a/icons-png/wash-dry-2.png b/icons-png/wash-dry-2.png deleted file mode 100644 index 77b7bd01c..000000000 Binary files a/icons-png/wash-dry-2.png and /dev/null differ diff --git a/icons-png/wash-dry-3.png b/icons-png/wash-dry-3.png deleted file mode 100644 index 7b1a33d27..000000000 Binary files a/icons-png/wash-dry-3.png and /dev/null differ diff --git a/icons-png/wash-dry-a.png b/icons-png/wash-dry-a.png deleted file mode 100644 index 335adb35d..000000000 Binary files a/icons-png/wash-dry-a.png and /dev/null differ diff --git a/icons-png/wash-dry-dip.png b/icons-png/wash-dry-dip.png deleted file mode 100644 index 6d11eb10c..000000000 Binary files a/icons-png/wash-dry-dip.png and /dev/null differ diff --git a/icons-png/wash-dry-f.png b/icons-png/wash-dry-f.png deleted file mode 100644 index 79c81f1ae..000000000 Binary files a/icons-png/wash-dry-f.png and /dev/null differ diff --git a/icons-png/wash-dry-hang.png b/icons-png/wash-dry-hang.png deleted file mode 100644 index fe860eda2..000000000 Binary files a/icons-png/wash-dry-hang.png and /dev/null differ diff --git a/icons-png/wash-dry-off.png b/icons-png/wash-dry-off.png deleted file mode 100644 index 8c7ccf081..000000000 Binary files a/icons-png/wash-dry-off.png and /dev/null differ diff --git a/icons-png/wash-dry-p.png b/icons-png/wash-dry-p.png deleted file mode 100644 index aa21de738..000000000 Binary files a/icons-png/wash-dry-p.png and /dev/null differ diff --git a/icons-png/wash-dry-shade.png b/icons-png/wash-dry-shade.png deleted file mode 100644 index 11aa95186..000000000 Binary files a/icons-png/wash-dry-shade.png and /dev/null differ diff --git a/icons-png/wash-dry-w.png b/icons-png/wash-dry-w.png deleted file mode 100644 index 14760b9be..000000000 Binary files a/icons-png/wash-dry-w.png and /dev/null differ diff --git a/icons-png/wash-dry.png b/icons-png/wash-dry.png deleted file mode 100644 index 75d638bdc..000000000 Binary files a/icons-png/wash-dry.png and /dev/null differ diff --git a/icons-png/wash-dryclean-off.png b/icons-png/wash-dryclean-off.png deleted file mode 100644 index 2a6554ce9..000000000 Binary files a/icons-png/wash-dryclean-off.png and /dev/null differ diff --git a/icons-png/wash-dryclean.png b/icons-png/wash-dryclean.png deleted file mode 100644 index e7f0c05a7..000000000 Binary files a/icons-png/wash-dryclean.png and /dev/null differ diff --git a/icons-png/wash-gentle.png b/icons-png/wash-gentle.png deleted file mode 100644 index 57a65734c..000000000 Binary files a/icons-png/wash-gentle.png and /dev/null differ diff --git a/icons-png/wash-machine.png b/icons-png/wash-machine.png deleted file mode 100644 index 98d8881dd..000000000 Binary files a/icons-png/wash-machine.png and /dev/null differ diff --git a/icons-png/wash-off.png b/icons-png/wash-off.png deleted file mode 100644 index 8b749db95..000000000 Binary files a/icons-png/wash-off.png and /dev/null differ diff --git a/icons-png/wash-press.png b/icons-png/wash-press.png deleted file mode 100644 index 0e971fd89..000000000 Binary files a/icons-png/wash-press.png and /dev/null differ diff --git a/icons-png/wash-temperature-1.png b/icons-png/wash-temperature-1.png deleted file mode 100644 index cb27a667c..000000000 Binary files a/icons-png/wash-temperature-1.png and /dev/null differ diff --git a/icons-png/wash-temperature-2.png b/icons-png/wash-temperature-2.png deleted file mode 100644 index 986bc0043..000000000 Binary files a/icons-png/wash-temperature-2.png and /dev/null differ diff --git a/icons-png/wash-temperature-3.png b/icons-png/wash-temperature-3.png deleted file mode 100644 index 5e0f9f980..000000000 Binary files a/icons-png/wash-temperature-3.png and /dev/null differ diff --git a/icons-png/wash-temperature-4.png b/icons-png/wash-temperature-4.png deleted file mode 100644 index c4f783efb..000000000 Binary files a/icons-png/wash-temperature-4.png and /dev/null differ diff --git a/icons-png/wash-temperature-5.png b/icons-png/wash-temperature-5.png deleted file mode 100644 index af3c9bda1..000000000 Binary files a/icons-png/wash-temperature-5.png and /dev/null differ diff --git a/icons-png/wash-temperature-6.png b/icons-png/wash-temperature-6.png deleted file mode 100644 index 02f95a965..000000000 Binary files a/icons-png/wash-temperature-6.png and /dev/null differ diff --git a/icons-png/wash-tumble-dry.png b/icons-png/wash-tumble-dry.png deleted file mode 100644 index 5e1a06a35..000000000 Binary files a/icons-png/wash-tumble-dry.png and /dev/null differ diff --git a/icons-png/wash-tumble-off.png b/icons-png/wash-tumble-off.png deleted file mode 100644 index c93e7c04e..000000000 Binary files a/icons-png/wash-tumble-off.png and /dev/null differ diff --git a/icons-png/wash.png b/icons-png/wash.png deleted file mode 100644 index c73a154a5..000000000 Binary files a/icons-png/wash.png and /dev/null differ diff --git a/icons-png/wave-saw-tool.png b/icons-png/wave-saw-tool.png deleted file mode 100644 index 866689c8f..000000000 Binary files a/icons-png/wave-saw-tool.png and /dev/null differ diff --git a/icons-png/wave-sine.png b/icons-png/wave-sine.png deleted file mode 100644 index 973b55d6a..000000000 Binary files a/icons-png/wave-sine.png and /dev/null differ diff --git a/icons-png/wave-square.png b/icons-png/wave-square.png deleted file mode 100644 index e631676b4..000000000 Binary files a/icons-png/wave-square.png and /dev/null differ diff --git a/icons-png/webhook-off.png b/icons-png/webhook-off.png deleted file mode 100644 index e0a94456b..000000000 Binary files a/icons-png/webhook-off.png and /dev/null differ diff --git a/icons-png/webhook.png b/icons-png/webhook.png deleted file mode 100644 index 5c33f5593..000000000 Binary files a/icons-png/webhook.png and /dev/null differ diff --git a/icons-png/weight.png b/icons-png/weight.png deleted file mode 100644 index 7017fcbc1..000000000 Binary files a/icons-png/weight.png and /dev/null differ diff --git a/icons-png/wheelchair-off.png b/icons-png/wheelchair-off.png deleted file mode 100644 index 39cd00dfc..000000000 Binary files a/icons-png/wheelchair-off.png and /dev/null differ diff --git a/icons-png/wheelchair.png b/icons-png/wheelchair.png deleted file mode 100644 index 096d257a7..000000000 Binary files a/icons-png/wheelchair.png and /dev/null differ diff --git a/icons-png/whirl.png b/icons-png/whirl.png deleted file mode 100644 index b91d4ab85..000000000 Binary files a/icons-png/whirl.png and /dev/null differ diff --git a/icons-png/wifi-0.png b/icons-png/wifi-0.png deleted file mode 100644 index 141afc710..000000000 Binary files a/icons-png/wifi-0.png and /dev/null differ diff --git a/icons-png/wifi-1.png b/icons-png/wifi-1.png deleted file mode 100644 index 0a277774e..000000000 Binary files a/icons-png/wifi-1.png and /dev/null differ diff --git a/icons-png/wifi-2.png b/icons-png/wifi-2.png deleted file mode 100644 index 0cf3fbbb0..000000000 Binary files a/icons-png/wifi-2.png and /dev/null differ diff --git a/icons-png/wifi-off.png b/icons-png/wifi-off.png deleted file mode 100644 index 4a87d045e..000000000 Binary files a/icons-png/wifi-off.png and /dev/null differ diff --git a/icons-png/wifi.png b/icons-png/wifi.png deleted file mode 100644 index f844f562d..000000000 Binary files a/icons-png/wifi.png and /dev/null differ diff --git a/icons-png/wind-off.png b/icons-png/wind-off.png deleted file mode 100644 index 28832f29a..000000000 Binary files a/icons-png/wind-off.png and /dev/null differ diff --git a/icons-png/wind.png b/icons-png/wind.png deleted file mode 100644 index 9541960da..000000000 Binary files a/icons-png/wind.png and /dev/null differ diff --git a/icons-png/windmill-off.png b/icons-png/windmill-off.png deleted file mode 100644 index 925800102..000000000 Binary files a/icons-png/windmill-off.png and /dev/null differ diff --git a/icons-png/windmill.png b/icons-png/windmill.png deleted file mode 100644 index 35ae7a1c0..000000000 Binary files a/icons-png/windmill.png and /dev/null differ diff --git a/icons-png/window-maximize.png b/icons-png/window-maximize.png deleted file mode 100644 index 9ff91e3ec..000000000 Binary files a/icons-png/window-maximize.png and /dev/null differ diff --git a/icons-png/window-minimize.png b/icons-png/window-minimize.png deleted file mode 100644 index 36215781f..000000000 Binary files a/icons-png/window-minimize.png and /dev/null differ diff --git a/icons-png/window-off.png b/icons-png/window-off.png deleted file mode 100644 index 3cbf66133..000000000 Binary files a/icons-png/window-off.png and /dev/null differ diff --git a/icons-png/window.png b/icons-png/window.png deleted file mode 100644 index 6d39487f8..000000000 Binary files a/icons-png/window.png and /dev/null differ diff --git a/icons-png/windsock.png b/icons-png/windsock.png deleted file mode 100644 index 28a251e3b..000000000 Binary files a/icons-png/windsock.png and /dev/null differ diff --git a/icons-png/wiper-wash.png b/icons-png/wiper-wash.png deleted file mode 100644 index 7540fff4e..000000000 Binary files a/icons-png/wiper-wash.png and /dev/null differ diff --git a/icons-png/wiper.png b/icons-png/wiper.png deleted file mode 100644 index 28d54f42a..000000000 Binary files a/icons-png/wiper.png and /dev/null differ diff --git a/icons-png/woman.png b/icons-png/woman.png deleted file mode 100644 index 9956337a3..000000000 Binary files a/icons-png/woman.png and /dev/null differ diff --git a/icons-png/wood.png b/icons-png/wood.png deleted file mode 100644 index aaac531c3..000000000 Binary files a/icons-png/wood.png and /dev/null differ diff --git a/icons-png/world-download.png b/icons-png/world-download.png deleted file mode 100644 index 082af06a1..000000000 Binary files a/icons-png/world-download.png and /dev/null differ diff --git a/icons-png/world-latitude.png b/icons-png/world-latitude.png deleted file mode 100644 index ffa6f3b92..000000000 Binary files a/icons-png/world-latitude.png and /dev/null differ diff --git a/icons-png/world-longitude.png b/icons-png/world-longitude.png deleted file mode 100644 index 6253b57d6..000000000 Binary files a/icons-png/world-longitude.png and /dev/null differ diff --git a/icons-png/world-off.png b/icons-png/world-off.png deleted file mode 100644 index ac6f2d2ac..000000000 Binary files a/icons-png/world-off.png and /dev/null differ diff --git a/icons-png/world-upload.png b/icons-png/world-upload.png deleted file mode 100644 index b99b7cd1c..000000000 Binary files a/icons-png/world-upload.png and /dev/null differ diff --git a/icons-png/world-www.png b/icons-png/world-www.png deleted file mode 100644 index 7dc34632c..000000000 Binary files a/icons-png/world-www.png and /dev/null differ diff --git a/icons-png/world.png b/icons-png/world.png deleted file mode 100644 index f689af7e5..000000000 Binary files a/icons-png/world.png and /dev/null differ diff --git a/icons-png/wrecking-ball.png b/icons-png/wrecking-ball.png deleted file mode 100644 index a99164d26..000000000 Binary files a/icons-png/wrecking-ball.png and /dev/null differ diff --git a/icons-png/writing-off.png b/icons-png/writing-off.png deleted file mode 100644 index 22ebf67d8..000000000 Binary files a/icons-png/writing-off.png and /dev/null differ diff --git a/icons-png/writing-sign-off.png b/icons-png/writing-sign-off.png deleted file mode 100644 index f421c9802..000000000 Binary files a/icons-png/writing-sign-off.png and /dev/null differ diff --git a/icons-png/writing-sign.png b/icons-png/writing-sign.png deleted file mode 100644 index c5db7ae13..000000000 Binary files a/icons-png/writing-sign.png and /dev/null differ diff --git a/icons-png/writing.png b/icons-png/writing.png deleted file mode 100644 index acf4d0f3d..000000000 Binary files a/icons-png/writing.png and /dev/null differ diff --git a/icons-png/x.png b/icons-png/x.png deleted file mode 100644 index 6bf909097..000000000 Binary files a/icons-png/x.png and /dev/null differ diff --git a/icons-png/xbox-a.png b/icons-png/xbox-a.png deleted file mode 100644 index 2995b64e6..000000000 Binary files a/icons-png/xbox-a.png and /dev/null differ diff --git a/icons-png/xbox-b.png b/icons-png/xbox-b.png deleted file mode 100644 index 2ff750097..000000000 Binary files a/icons-png/xbox-b.png and /dev/null differ diff --git a/icons-png/xbox-x.png b/icons-png/xbox-x.png deleted file mode 100644 index e74fcec21..000000000 Binary files a/icons-png/xbox-x.png and /dev/null differ diff --git a/icons-png/xbox-y.png b/icons-png/xbox-y.png deleted file mode 100644 index b557c7e16..000000000 Binary files a/icons-png/xbox-y.png and /dev/null differ diff --git a/icons-png/yin-yang.png b/icons-png/yin-yang.png deleted file mode 100644 index c7cceec1f..000000000 Binary files a/icons-png/yin-yang.png and /dev/null differ diff --git a/icons-png/yoga.png b/icons-png/yoga.png deleted file mode 100644 index 304f0d951..000000000 Binary files a/icons-png/yoga.png and /dev/null differ diff --git a/icons-png/zeppelin-off.png b/icons-png/zeppelin-off.png deleted file mode 100644 index 620d99202..000000000 Binary files a/icons-png/zeppelin-off.png and /dev/null differ diff --git a/icons-png/zeppelin.png b/icons-png/zeppelin.png deleted file mode 100644 index 3da5f8608..000000000 Binary files a/icons-png/zeppelin.png and /dev/null differ diff --git a/icons-png/zip.png b/icons-png/zip.png deleted file mode 100644 index 177537f37..000000000 Binary files a/icons-png/zip.png and /dev/null differ diff --git a/icons-png/zodiac-aquarius.png b/icons-png/zodiac-aquarius.png deleted file mode 100644 index ef0f5e1b8..000000000 Binary files a/icons-png/zodiac-aquarius.png and /dev/null differ diff --git a/icons-png/zodiac-aries.png b/icons-png/zodiac-aries.png deleted file mode 100644 index bf37014c3..000000000 Binary files a/icons-png/zodiac-aries.png and /dev/null differ diff --git a/icons-png/zodiac-cancer.png b/icons-png/zodiac-cancer.png deleted file mode 100644 index fdd0a9803..000000000 Binary files a/icons-png/zodiac-cancer.png and /dev/null differ diff --git a/icons-png/zodiac-capricorn.png b/icons-png/zodiac-capricorn.png deleted file mode 100644 index cf688986e..000000000 Binary files a/icons-png/zodiac-capricorn.png and /dev/null differ diff --git a/icons-png/zodiac-gemini.png b/icons-png/zodiac-gemini.png deleted file mode 100644 index 0f918125e..000000000 Binary files a/icons-png/zodiac-gemini.png and /dev/null differ diff --git a/icons-png/zodiac-leo.png b/icons-png/zodiac-leo.png deleted file mode 100644 index 937dfa637..000000000 Binary files a/icons-png/zodiac-leo.png and /dev/null differ diff --git a/icons-png/zodiac-libra.png b/icons-png/zodiac-libra.png deleted file mode 100644 index 3805ee571..000000000 Binary files a/icons-png/zodiac-libra.png and /dev/null differ diff --git a/icons-png/zodiac-pisces.png b/icons-png/zodiac-pisces.png deleted file mode 100644 index 2a5274bdb..000000000 Binary files a/icons-png/zodiac-pisces.png and /dev/null differ diff --git a/icons-png/zodiac-sagittarius.png b/icons-png/zodiac-sagittarius.png deleted file mode 100644 index ec8ed3939..000000000 Binary files a/icons-png/zodiac-sagittarius.png and /dev/null differ diff --git a/icons-png/zodiac-scorpio.png b/icons-png/zodiac-scorpio.png deleted file mode 100644 index 642898c4c..000000000 Binary files a/icons-png/zodiac-scorpio.png and /dev/null differ diff --git a/icons-png/zodiac-taurus.png b/icons-png/zodiac-taurus.png deleted file mode 100644 index f9205ae3d..000000000 Binary files a/icons-png/zodiac-taurus.png and /dev/null differ diff --git a/icons-png/zodiac-virgo.png b/icons-png/zodiac-virgo.png deleted file mode 100644 index 6af16a69c..000000000 Binary files a/icons-png/zodiac-virgo.png and /dev/null differ diff --git a/icons-png/zoom-cancel.png b/icons-png/zoom-cancel.png deleted file mode 100644 index 37e46d0e7..000000000 Binary files a/icons-png/zoom-cancel.png and /dev/null differ diff --git a/icons-png/zoom-check.png b/icons-png/zoom-check.png deleted file mode 100644 index ea48036c6..000000000 Binary files a/icons-png/zoom-check.png and /dev/null differ diff --git a/icons-png/zoom-code.png b/icons-png/zoom-code.png deleted file mode 100644 index ceef5e1f2..000000000 Binary files a/icons-png/zoom-code.png and /dev/null differ diff --git a/icons-png/zoom-exclamation.png b/icons-png/zoom-exclamation.png deleted file mode 100644 index e413cdc3e..000000000 Binary files a/icons-png/zoom-exclamation.png and /dev/null differ diff --git a/icons-png/zoom-in-area.png b/icons-png/zoom-in-area.png deleted file mode 100644 index b774fdd18..000000000 Binary files a/icons-png/zoom-in-area.png and /dev/null differ diff --git a/icons-png/zoom-in.png b/icons-png/zoom-in.png deleted file mode 100644 index 56537c3c3..000000000 Binary files a/icons-png/zoom-in.png and /dev/null differ diff --git a/icons-png/zoom-money.png b/icons-png/zoom-money.png deleted file mode 100644 index 4c806b1eb..000000000 Binary files a/icons-png/zoom-money.png and /dev/null differ diff --git a/icons-png/zoom-out-area.png b/icons-png/zoom-out-area.png deleted file mode 100644 index 5673de7f0..000000000 Binary files a/icons-png/zoom-out-area.png and /dev/null differ diff --git a/icons-png/zoom-out.png b/icons-png/zoom-out.png deleted file mode 100644 index 2978b417b..000000000 Binary files a/icons-png/zoom-out.png and /dev/null differ diff --git a/icons-png/zoom-pan.png b/icons-png/zoom-pan.png deleted file mode 100644 index 5046c4706..000000000 Binary files a/icons-png/zoom-pan.png and /dev/null differ diff --git a/icons-png/zoom-question.png b/icons-png/zoom-question.png deleted file mode 100644 index 1ba6e56e9..000000000 Binary files a/icons-png/zoom-question.png and /dev/null differ diff --git a/icons-png/zoom-replace.png b/icons-png/zoom-replace.png deleted file mode 100644 index 1cc2ee29b..000000000 Binary files a/icons-png/zoom-replace.png and /dev/null differ diff --git a/icons-png/zoom-reset.png b/icons-png/zoom-reset.png deleted file mode 100644 index 27cb286c8..000000000 Binary files a/icons-png/zoom-reset.png and /dev/null differ diff --git a/icons-png/zzz-off.png b/icons-png/zzz-off.png deleted file mode 100644 index 72a347b4b..000000000 Binary files a/icons-png/zzz-off.png and /dev/null differ diff --git a/icons-png/zzz.png b/icons-png/zzz.png deleted file mode 100644 index 3938f3669..000000000 Binary files a/icons-png/zzz.png and /dev/null differ diff --git a/icons-react/icons-js/123.js b/icons-react/icons-js/123.js deleted file mode 100644 index 5d92f4337..000000000 --- a/icons-react/icons-js/123.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon123({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon123; \ No newline at end of file diff --git a/icons-react/icons-js/24-hours.js b/icons-react/icons-js/24-hours.js deleted file mode 100644 index 82e0d717f..000000000 --- a/icons-react/icons-js/24-hours.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon24Hours({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon24Hours; \ No newline at end of file diff --git a/icons-react/icons-js/2fa.js b/icons-react/icons-js/2fa.js deleted file mode 100644 index 0ec0f31b8..000000000 --- a/icons-react/icons-js/2fa.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon2fa({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon2fa; \ No newline at end of file diff --git a/icons-react/icons-js/360-view.js b/icons-react/icons-js/360-view.js deleted file mode 100644 index 489185105..000000000 --- a/icons-react/icons-js/360-view.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon360View({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon360View; \ No newline at end of file diff --git a/icons-react/icons-js/360.js b/icons-react/icons-js/360.js deleted file mode 100644 index d85ae5e68..000000000 --- a/icons-react/icons-js/360.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon360({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon360; \ No newline at end of file diff --git a/icons-react/icons-js/3d-cube-sphere-off.js b/icons-react/icons-js/3d-cube-sphere-off.js deleted file mode 100644 index b96c468cb..000000000 --- a/icons-react/icons-js/3d-cube-sphere-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon3dCubeSphereOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon3dCubeSphereOff; \ No newline at end of file diff --git a/icons-react/icons-js/3d-cube-sphere.js b/icons-react/icons-js/3d-cube-sphere.js deleted file mode 100644 index e3e67c3c8..000000000 --- a/icons-react/icons-js/3d-cube-sphere.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon3dCubeSphere({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon3dCubeSphere; \ No newline at end of file diff --git a/icons-react/icons-js/3d-rotate.js b/icons-react/icons-js/3d-rotate.js deleted file mode 100644 index a532d1d61..000000000 --- a/icons-react/icons-js/3d-rotate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function Icon3dRotate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default Icon3dRotate; \ No newline at end of file diff --git a/icons-react/icons-js/a-b-2.js b/icons-react/icons-js/a-b-2.js deleted file mode 100644 index 5ac6b9a52..000000000 --- a/icons-react/icons-js/a-b-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAB2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAB2; \ No newline at end of file diff --git a/icons-react/icons-js/a-b-off.js b/icons-react/icons-js/a-b-off.js deleted file mode 100644 index afb8e4515..000000000 --- a/icons-react/icons-js/a-b-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconABOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconABOff; \ No newline at end of file diff --git a/icons-react/icons-js/a-b.js b/icons-react/icons-js/a-b.js deleted file mode 100644 index 55087abb5..000000000 --- a/icons-react/icons-js/a-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAB; \ No newline at end of file diff --git a/icons-react/icons-js/abacus-off.js b/icons-react/icons-js/abacus-off.js deleted file mode 100644 index 55e46ba96..000000000 --- a/icons-react/icons-js/abacus-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAbacusOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAbacusOff; \ No newline at end of file diff --git a/icons-react/icons-js/abacus.js b/icons-react/icons-js/abacus.js deleted file mode 100644 index 38fc67353..000000000 --- a/icons-react/icons-js/abacus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAbacus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAbacus; \ No newline at end of file diff --git a/icons-react/icons-js/abc.js b/icons-react/icons-js/abc.js deleted file mode 100644 index 5366f56a8..000000000 --- a/icons-react/icons-js/abc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAbc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAbc; \ No newline at end of file diff --git a/icons-react/icons-js/access-point-off.js b/icons-react/icons-js/access-point-off.js deleted file mode 100644 index 73dc6b28c..000000000 --- a/icons-react/icons-js/access-point-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAccessPointOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAccessPointOff; \ No newline at end of file diff --git a/icons-react/icons-js/access-point.js b/icons-react/icons-js/access-point.js deleted file mode 100644 index addc9f6cb..000000000 --- a/icons-react/icons-js/access-point.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAccessPoint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAccessPoint; \ No newline at end of file diff --git a/icons-react/icons-js/accessible-off.js b/icons-react/icons-js/accessible-off.js deleted file mode 100644 index 280669bc8..000000000 --- a/icons-react/icons-js/accessible-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAccessibleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAccessibleOff; \ No newline at end of file diff --git a/icons-react/icons-js/accessible.js b/icons-react/icons-js/accessible.js deleted file mode 100644 index 00ca9edc3..000000000 --- a/icons-react/icons-js/accessible.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAccessible({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAccessible; \ No newline at end of file diff --git a/icons-react/icons-js/activity-heartbeat.js b/icons-react/icons-js/activity-heartbeat.js deleted file mode 100644 index 2fc4822b9..000000000 --- a/icons-react/icons-js/activity-heartbeat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconActivityHeartbeat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconActivityHeartbeat; \ No newline at end of file diff --git a/icons-react/icons-js/activity.js b/icons-react/icons-js/activity.js deleted file mode 100644 index 5e874a438..000000000 --- a/icons-react/icons-js/activity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconActivity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconActivity; \ No newline at end of file diff --git a/icons-react/icons-js/ad-2.js b/icons-react/icons-js/ad-2.js deleted file mode 100644 index 8c61c1b8a..000000000 --- a/icons-react/icons-js/ad-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAd2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAd2; \ No newline at end of file diff --git a/icons-react/icons-js/ad-off.js b/icons-react/icons-js/ad-off.js deleted file mode 100644 index 18c8277a5..000000000 --- a/icons-react/icons-js/ad-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAdOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAdOff; \ No newline at end of file diff --git a/icons-react/icons-js/ad.js b/icons-react/icons-js/ad.js deleted file mode 100644 index 12c69a28a..000000000 --- a/icons-react/icons-js/ad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAd; \ No newline at end of file diff --git a/icons-react/icons-js/address-book-off.js b/icons-react/icons-js/address-book-off.js deleted file mode 100644 index d4565242a..000000000 --- a/icons-react/icons-js/address-book-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAddressBookOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAddressBookOff; \ No newline at end of file diff --git a/icons-react/icons-js/address-book.js b/icons-react/icons-js/address-book.js deleted file mode 100644 index f7ba862f0..000000000 --- a/icons-react/icons-js/address-book.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAddressBook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAddressBook; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments-alt.js b/icons-react/icons-js/adjustments-alt.js deleted file mode 100644 index f6e037c70..000000000 --- a/icons-react/icons-js/adjustments-alt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAdjustmentsAlt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAdjustmentsAlt; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments-horizontal.js b/icons-react/icons-js/adjustments-horizontal.js deleted file mode 100644 index e3460262a..000000000 --- a/icons-react/icons-js/adjustments-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAdjustmentsHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAdjustmentsHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments-off.js b/icons-react/icons-js/adjustments-off.js deleted file mode 100644 index 95840c03c..000000000 --- a/icons-react/icons-js/adjustments-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAdjustmentsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAdjustmentsOff; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments.js b/icons-react/icons-js/adjustments.js deleted file mode 100644 index 4c3f1aa94..000000000 --- a/icons-react/icons-js/adjustments.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAdjustments({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAdjustments; \ No newline at end of file diff --git a/icons-react/icons-js/aerial-lift.js b/icons-react/icons-js/aerial-lift.js deleted file mode 100644 index 392c488ab..000000000 --- a/icons-react/icons-js/aerial-lift.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAerialLift({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAerialLift; \ No newline at end of file diff --git a/icons-react/icons-js/affiliate.js b/icons-react/icons-js/affiliate.js deleted file mode 100644 index 9c9aa71c6..000000000 --- a/icons-react/icons-js/affiliate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAffiliate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAffiliate; \ No newline at end of file diff --git a/icons-react/icons-js/air-balloon.js b/icons-react/icons-js/air-balloon.js deleted file mode 100644 index 707ef30ae..000000000 --- a/icons-react/icons-js/air-balloon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAirBalloon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAirBalloon; \ No newline at end of file diff --git a/icons-react/icons-js/air-conditioning-disabled.js b/icons-react/icons-js/air-conditioning-disabled.js deleted file mode 100644 index 3d20c8702..000000000 --- a/icons-react/icons-js/air-conditioning-disabled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAirConditioningDisabled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAirConditioningDisabled; \ No newline at end of file diff --git a/icons-react/icons-js/air-conditioning.js b/icons-react/icons-js/air-conditioning.js deleted file mode 100644 index b8fe98de6..000000000 --- a/icons-react/icons-js/air-conditioning.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAirConditioning({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAirConditioning; \ No newline at end of file diff --git a/icons-react/icons-js/alarm-minus.js b/icons-react/icons-js/alarm-minus.js deleted file mode 100644 index 6fc4b5b62..000000000 --- a/icons-react/icons-js/alarm-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlarmMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlarmMinus; \ No newline at end of file diff --git a/icons-react/icons-js/alarm-off.js b/icons-react/icons-js/alarm-off.js deleted file mode 100644 index fb7baf8ea..000000000 --- a/icons-react/icons-js/alarm-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlarmOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlarmOff; \ No newline at end of file diff --git a/icons-react/icons-js/alarm-plus.js b/icons-react/icons-js/alarm-plus.js deleted file mode 100644 index cdeb92ce2..000000000 --- a/icons-react/icons-js/alarm-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlarmPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlarmPlus; \ No newline at end of file diff --git a/icons-react/icons-js/alarm-snooze.js b/icons-react/icons-js/alarm-snooze.js deleted file mode 100644 index 60847c014..000000000 --- a/icons-react/icons-js/alarm-snooze.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlarmSnooze({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlarmSnooze; \ No newline at end of file diff --git a/icons-react/icons-js/alarm.js b/icons-react/icons-js/alarm.js deleted file mode 100644 index 4034df1c9..000000000 --- a/icons-react/icons-js/alarm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlarm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlarm; \ No newline at end of file diff --git a/icons-react/icons-js/album-off.js b/icons-react/icons-js/album-off.js deleted file mode 100644 index 6fbae7748..000000000 --- a/icons-react/icons-js/album-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlbumOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlbumOff; \ No newline at end of file diff --git a/icons-react/icons-js/album.js b/icons-react/icons-js/album.js deleted file mode 100644 index 098453b04..000000000 --- a/icons-react/icons-js/album.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlbum({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlbum; \ No newline at end of file diff --git a/icons-react/icons-js/alert-circle.js b/icons-react/icons-js/alert-circle.js deleted file mode 100644 index 168fcdd7d..000000000 --- a/icons-react/icons-js/alert-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlertCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlertCircle; \ No newline at end of file diff --git a/icons-react/icons-js/alert-octagon.js b/icons-react/icons-js/alert-octagon.js deleted file mode 100644 index babb93585..000000000 --- a/icons-react/icons-js/alert-octagon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlertOctagon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlertOctagon; \ No newline at end of file diff --git a/icons-react/icons-js/alert-triangle.js b/icons-react/icons-js/alert-triangle.js deleted file mode 100644 index 7d2267bb1..000000000 --- a/icons-react/icons-js/alert-triangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlertTriangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlertTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/alien.js b/icons-react/icons-js/alien.js deleted file mode 100644 index 6afb385f8..000000000 --- a/icons-react/icons-js/alien.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlien({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlien; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-bottom-center.js b/icons-react/icons-js/align-box-bottom-center.js deleted file mode 100644 index 1dbf1752a..000000000 --- a/icons-react/icons-js/align-box-bottom-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxBottomCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxBottomCenter; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-bottom-left.js b/icons-react/icons-js/align-box-bottom-left.js deleted file mode 100644 index 6f6fc34a7..000000000 --- a/icons-react/icons-js/align-box-bottom-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxBottomLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxBottomLeft; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-bottom-right.js b/icons-react/icons-js/align-box-bottom-right.js deleted file mode 100644 index eaa380686..000000000 --- a/icons-react/icons-js/align-box-bottom-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxBottomRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxBottomRight; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-left-bottom.js b/icons-react/icons-js/align-box-left-bottom.js deleted file mode 100644 index 78afcf161..000000000 --- a/icons-react/icons-js/align-box-left-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxLeftBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxLeftBottom; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-left-middle.js b/icons-react/icons-js/align-box-left-middle.js deleted file mode 100644 index 81a51019b..000000000 --- a/icons-react/icons-js/align-box-left-middle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxLeftMiddle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxLeftMiddle; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-left-top.js b/icons-react/icons-js/align-box-left-top.js deleted file mode 100644 index 547ac39d1..000000000 --- a/icons-react/icons-js/align-box-left-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxLeftTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxLeftTop; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-right-bottom.js b/icons-react/icons-js/align-box-right-bottom.js deleted file mode 100644 index 7087e0efa..000000000 --- a/icons-react/icons-js/align-box-right-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxRightBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxRightBottom; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-right-middle.js b/icons-react/icons-js/align-box-right-middle.js deleted file mode 100644 index 456de85d2..000000000 --- a/icons-react/icons-js/align-box-right-middle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxRightMiddle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxRightMiddle; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-right-top.js b/icons-react/icons-js/align-box-right-top.js deleted file mode 100644 index 07a832359..000000000 --- a/icons-react/icons-js/align-box-right-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxRightTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxRightTop; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-top-center.js b/icons-react/icons-js/align-box-top-center.js deleted file mode 100644 index 149f6e5c5..000000000 --- a/icons-react/icons-js/align-box-top-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxTopCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxTopCenter; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-top-left.js b/icons-react/icons-js/align-box-top-left.js deleted file mode 100644 index 10ce0770f..000000000 --- a/icons-react/icons-js/align-box-top-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxTopLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxTopLeft; \ No newline at end of file diff --git a/icons-react/icons-js/align-box-top-right.js b/icons-react/icons-js/align-box-top-right.js deleted file mode 100644 index 8d8fd7fef..000000000 --- a/icons-react/icons-js/align-box-top-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignBoxTopRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignBoxTopRight; \ No newline at end of file diff --git a/icons-react/icons-js/align-center.js b/icons-react/icons-js/align-center.js deleted file mode 100644 index f29b561b0..000000000 --- a/icons-react/icons-js/align-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignCenter; \ No newline at end of file diff --git a/icons-react/icons-js/align-justified.js b/icons-react/icons-js/align-justified.js deleted file mode 100644 index cd09ae2fa..000000000 --- a/icons-react/icons-js/align-justified.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignJustified({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignJustified; \ No newline at end of file diff --git a/icons-react/icons-js/align-left.js b/icons-react/icons-js/align-left.js deleted file mode 100644 index 381f9901d..000000000 --- a/icons-react/icons-js/align-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/align-right.js b/icons-react/icons-js/align-right.js deleted file mode 100644 index f36b6f5e9..000000000 --- a/icons-react/icons-js/align-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlignRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlignRight; \ No newline at end of file diff --git a/icons-react/icons-js/alpha.js b/icons-react/icons-js/alpha.js deleted file mode 100644 index 58318aa2e..000000000 --- a/icons-react/icons-js/alpha.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlpha({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlpha; \ No newline at end of file diff --git a/icons-react/icons-js/alphabet-cyrillic.js b/icons-react/icons-js/alphabet-cyrillic.js deleted file mode 100644 index 73d1c204c..000000000 --- a/icons-react/icons-js/alphabet-cyrillic.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlphabetCyrillic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlphabetCyrillic; \ No newline at end of file diff --git a/icons-react/icons-js/alphabet-greek.js b/icons-react/icons-js/alphabet-greek.js deleted file mode 100644 index 36af29d7e..000000000 --- a/icons-react/icons-js/alphabet-greek.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlphabetGreek({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlphabetGreek; \ No newline at end of file diff --git a/icons-react/icons-js/alphabet-latin.js b/icons-react/icons-js/alphabet-latin.js deleted file mode 100644 index f29b91404..000000000 --- a/icons-react/icons-js/alphabet-latin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAlphabetLatin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAlphabetLatin; \ No newline at end of file diff --git a/icons-react/icons-js/ambulance.js b/icons-react/icons-js/ambulance.js deleted file mode 100644 index 9afb2745c..000000000 --- a/icons-react/icons-js/ambulance.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAmbulance({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAmbulance; \ No newline at end of file diff --git a/icons-react/icons-js/ampersand.js b/icons-react/icons-js/ampersand.js deleted file mode 100644 index 3c5a0db01..000000000 --- a/icons-react/icons-js/ampersand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAmpersand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAmpersand; \ No newline at end of file diff --git a/icons-react/icons-js/analyze-off.js b/icons-react/icons-js/analyze-off.js deleted file mode 100644 index 6318a7be2..000000000 --- a/icons-react/icons-js/analyze-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAnalyzeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAnalyzeOff; \ No newline at end of file diff --git a/icons-react/icons-js/analyze.js b/icons-react/icons-js/analyze.js deleted file mode 100644 index 69910edbc..000000000 --- a/icons-react/icons-js/analyze.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAnalyze({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAnalyze; \ No newline at end of file diff --git a/icons-react/icons-js/anchor-off.js b/icons-react/icons-js/anchor-off.js deleted file mode 100644 index f00db612d..000000000 --- a/icons-react/icons-js/anchor-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAnchorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAnchorOff; \ No newline at end of file diff --git a/icons-react/icons-js/anchor.js b/icons-react/icons-js/anchor.js deleted file mode 100644 index 4bd832e1a..000000000 --- a/icons-react/icons-js/anchor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAnchor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAnchor; \ No newline at end of file diff --git a/icons-react/icons-js/angle.js b/icons-react/icons-js/angle.js deleted file mode 100644 index a7dbb3a89..000000000 --- a/icons-react/icons-js/angle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAngle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAngle; \ No newline at end of file diff --git a/icons-react/icons-js/ankh.js b/icons-react/icons-js/ankh.js deleted file mode 100644 index 94a4e949d..000000000 --- a/icons-react/icons-js/ankh.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAnkh({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAnkh; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-1.js b/icons-react/icons-js/antenna-bars-1.js deleted file mode 100644 index 2ca82a648..000000000 --- a/icons-react/icons-js/antenna-bars-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBars1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBars1; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-2.js b/icons-react/icons-js/antenna-bars-2.js deleted file mode 100644 index cee917dfe..000000000 --- a/icons-react/icons-js/antenna-bars-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBars2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBars2; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-3.js b/icons-react/icons-js/antenna-bars-3.js deleted file mode 100644 index 90553745c..000000000 --- a/icons-react/icons-js/antenna-bars-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBars3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBars3; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-4.js b/icons-react/icons-js/antenna-bars-4.js deleted file mode 100644 index 5d947e472..000000000 --- a/icons-react/icons-js/antenna-bars-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBars4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBars4; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-5.js b/icons-react/icons-js/antenna-bars-5.js deleted file mode 100644 index 357f142ab..000000000 --- a/icons-react/icons-js/antenna-bars-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBars5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBars5; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-off.js b/icons-react/icons-js/antenna-bars-off.js deleted file mode 100644 index 5d46cf9bb..000000000 --- a/icons-react/icons-js/antenna-bars-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaBarsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaBarsOff; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-off.js b/icons-react/icons-js/antenna-off.js deleted file mode 100644 index 461319077..000000000 --- a/icons-react/icons-js/antenna-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntennaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntennaOff; \ No newline at end of file diff --git a/icons-react/icons-js/antenna.js b/icons-react/icons-js/antenna.js deleted file mode 100644 index 81a8e4a44..000000000 --- a/icons-react/icons-js/antenna.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAntenna({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAntenna; \ No newline at end of file diff --git a/icons-react/icons-js/aperture-off.js b/icons-react/icons-js/aperture-off.js deleted file mode 100644 index 8def68798..000000000 --- a/icons-react/icons-js/aperture-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApertureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApertureOff; \ No newline at end of file diff --git a/icons-react/icons-js/aperture.js b/icons-react/icons-js/aperture.js deleted file mode 100644 index b1e1ba544..000000000 --- a/icons-react/icons-js/aperture.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAperture({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAperture; \ No newline at end of file diff --git a/icons-react/icons-js/api-app-off.js b/icons-react/icons-js/api-app-off.js deleted file mode 100644 index 708b29e43..000000000 --- a/icons-react/icons-js/api-app-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApiAppOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApiAppOff; \ No newline at end of file diff --git a/icons-react/icons-js/api-app.js b/icons-react/icons-js/api-app.js deleted file mode 100644 index c66fd2fa9..000000000 --- a/icons-react/icons-js/api-app.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApiApp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApiApp; \ No newline at end of file diff --git a/icons-react/icons-js/api-off.js b/icons-react/icons-js/api-off.js deleted file mode 100644 index b7cb6170f..000000000 --- a/icons-react/icons-js/api-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApiOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApiOff; \ No newline at end of file diff --git a/icons-react/icons-js/api.js b/icons-react/icons-js/api.js deleted file mode 100644 index 8110618e7..000000000 --- a/icons-react/icons-js/api.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApi; \ No newline at end of file diff --git a/icons-react/icons-js/app-window.js b/icons-react/icons-js/app-window.js deleted file mode 100644 index 15cc6abb5..000000000 --- a/icons-react/icons-js/app-window.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAppWindow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAppWindow; \ No newline at end of file diff --git a/icons-react/icons-js/apple.js b/icons-react/icons-js/apple.js deleted file mode 100644 index 97880b010..000000000 --- a/icons-react/icons-js/apple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApple; \ No newline at end of file diff --git a/icons-react/icons-js/apps-off.js b/icons-react/icons-js/apps-off.js deleted file mode 100644 index 84abc3cb2..000000000 --- a/icons-react/icons-js/apps-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAppsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAppsOff; \ No newline at end of file diff --git a/icons-react/icons-js/apps.js b/icons-react/icons-js/apps.js deleted file mode 100644 index 34a88b716..000000000 --- a/icons-react/icons-js/apps.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconApps({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconApps; \ No newline at end of file diff --git a/icons-react/icons-js/archive-off.js b/icons-react/icons-js/archive-off.js deleted file mode 100644 index 963b4cf24..000000000 --- a/icons-react/icons-js/archive-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArchiveOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArchiveOff; \ No newline at end of file diff --git a/icons-react/icons-js/archive.js b/icons-react/icons-js/archive.js deleted file mode 100644 index 160934df2..000000000 --- a/icons-react/icons-js/archive.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArchive({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArchive; \ No newline at end of file diff --git a/icons-react/icons-js/armchair-2-off.js b/icons-react/icons-js/armchair-2-off.js deleted file mode 100644 index c312ae1ab..000000000 --- a/icons-react/icons-js/armchair-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArmchair2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArmchair2Off; \ No newline at end of file diff --git a/icons-react/icons-js/armchair-2.js b/icons-react/icons-js/armchair-2.js deleted file mode 100644 index d1a42bc59..000000000 --- a/icons-react/icons-js/armchair-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArmchair2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArmchair2; \ No newline at end of file diff --git a/icons-react/icons-js/armchair-off.js b/icons-react/icons-js/armchair-off.js deleted file mode 100644 index 436ac3761..000000000 --- a/icons-react/icons-js/armchair-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArmchairOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArmchairOff; \ No newline at end of file diff --git a/icons-react/icons-js/armchair.js b/icons-react/icons-js/armchair.js deleted file mode 100644 index 9f243a2ff..000000000 --- a/icons-react/icons-js/armchair.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArmchair({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArmchair; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-content.js b/icons-react/icons-js/arrow-autofit-content.js deleted file mode 100644 index 3b6aaada0..000000000 --- a/icons-react/icons-js/arrow-autofit-content.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitContent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitContent; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-down.js b/icons-react/icons-js/arrow-autofit-down.js deleted file mode 100644 index d73086b0e..000000000 --- a/icons-react/icons-js/arrow-autofit-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-height.js b/icons-react/icons-js/arrow-autofit-height.js deleted file mode 100644 index 51150a926..000000000 --- a/icons-react/icons-js/arrow-autofit-height.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitHeight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitHeight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-left.js b/icons-react/icons-js/arrow-autofit-left.js deleted file mode 100644 index 63067d075..000000000 --- a/icons-react/icons-js/arrow-autofit-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-right.js b/icons-react/icons-js/arrow-autofit-right.js deleted file mode 100644 index 686d4e0ab..000000000 --- a/icons-react/icons-js/arrow-autofit-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-up.js b/icons-react/icons-js/arrow-autofit-up.js deleted file mode 100644 index 3aab81469..000000000 --- a/icons-react/icons-js/arrow-autofit-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-autofit-width.js b/icons-react/icons-js/arrow-autofit-width.js deleted file mode 100644 index 5e041034b..000000000 --- a/icons-react/icons-js/arrow-autofit-width.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowAutofitWidth({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowAutofitWidth; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-back-up.js b/icons-react/icons-js/arrow-back-up.js deleted file mode 100644 index dcfe36602..000000000 --- a/icons-react/icons-js/arrow-back-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBackUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBackUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-back.js b/icons-react/icons-js/arrow-back.js deleted file mode 100644 index 33da0a2ca..000000000 --- a/icons-react/icons-js/arrow-back.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBack; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-badge-down.js b/icons-react/icons-js/arrow-badge-down.js deleted file mode 100644 index 8241e2823..000000000 --- a/icons-react/icons-js/arrow-badge-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBadgeDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBadgeDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-badge-left.js b/icons-react/icons-js/arrow-badge-left.js deleted file mode 100644 index 7ba145f32..000000000 --- a/icons-react/icons-js/arrow-badge-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBadgeLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBadgeLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-badge-right.js b/icons-react/icons-js/arrow-badge-right.js deleted file mode 100644 index 85e691aae..000000000 --- a/icons-react/icons-js/arrow-badge-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBadgeRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBadgeRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-badge-up.js b/icons-react/icons-js/arrow-badge-up.js deleted file mode 100644 index f15ad708a..000000000 --- a/icons-react/icons-js/arrow-badge-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBadgeUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBadgeUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-down.js b/icons-react/icons-js/arrow-bar-down.js deleted file mode 100644 index 7a79f42cf..000000000 --- a/icons-react/icons-js/arrow-bar-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-left.js b/icons-react/icons-js/arrow-bar-left.js deleted file mode 100644 index 979e0b97a..000000000 --- a/icons-react/icons-js/arrow-bar-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-right.js b/icons-react/icons-js/arrow-bar-right.js deleted file mode 100644 index ab93b9b0b..000000000 --- a/icons-react/icons-js/arrow-bar-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-down.js b/icons-react/icons-js/arrow-bar-to-down.js deleted file mode 100644 index 6228586d7..000000000 --- a/icons-react/icons-js/arrow-bar-to-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarToDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarToDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-left.js b/icons-react/icons-js/arrow-bar-to-left.js deleted file mode 100644 index eda27c4fb..000000000 --- a/icons-react/icons-js/arrow-bar-to-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarToLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarToLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-right.js b/icons-react/icons-js/arrow-bar-to-right.js deleted file mode 100644 index f06a20e45..000000000 --- a/icons-react/icons-js/arrow-bar-to-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarToRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarToRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-up.js b/icons-react/icons-js/arrow-bar-to-up.js deleted file mode 100644 index ce6380509..000000000 --- a/icons-react/icons-js/arrow-bar-to-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarToUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarToUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-up.js b/icons-react/icons-js/arrow-bar-up.js deleted file mode 100644 index 103fd014e..000000000 --- a/icons-react/icons-js/arrow-bar-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBarUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBarUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bear-left-2.js b/icons-react/icons-js/arrow-bear-left-2.js deleted file mode 100644 index 4fedc098e..000000000 --- a/icons-react/icons-js/arrow-bear-left-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBearLeft2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBearLeft2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bear-left.js b/icons-react/icons-js/arrow-bear-left.js deleted file mode 100644 index acd1e44a9..000000000 --- a/icons-react/icons-js/arrow-bear-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBearLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBearLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bear-right-2.js b/icons-react/icons-js/arrow-bear-right-2.js deleted file mode 100644 index 6d83f69ed..000000000 --- a/icons-react/icons-js/arrow-bear-right-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBearRight2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBearRight2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bear-right.js b/icons-react/icons-js/arrow-bear-right.js deleted file mode 100644 index ca234783f..000000000 --- a/icons-react/icons-js/arrow-bear-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBearRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBearRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-down-line.js b/icons-react/icons-js/arrow-big-down-line.js deleted file mode 100644 index a8c95a0f4..000000000 --- a/icons-react/icons-js/arrow-big-down-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigDownLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigDownLine; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-down-lines.js b/icons-react/icons-js/arrow-big-down-lines.js deleted file mode 100644 index 5c629fb0a..000000000 --- a/icons-react/icons-js/arrow-big-down-lines.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigDownLines({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigDownLines; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-down.js b/icons-react/icons-js/arrow-big-down.js deleted file mode 100644 index 439249f66..000000000 --- a/icons-react/icons-js/arrow-big-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-left-line.js b/icons-react/icons-js/arrow-big-left-line.js deleted file mode 100644 index fc760706f..000000000 --- a/icons-react/icons-js/arrow-big-left-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigLeftLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigLeftLine; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-left-lines.js b/icons-react/icons-js/arrow-big-left-lines.js deleted file mode 100644 index 5149467c5..000000000 --- a/icons-react/icons-js/arrow-big-left-lines.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigLeftLines({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigLeftLines; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-left.js b/icons-react/icons-js/arrow-big-left.js deleted file mode 100644 index 44ea939db..000000000 --- a/icons-react/icons-js/arrow-big-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-right-line.js b/icons-react/icons-js/arrow-big-right-line.js deleted file mode 100644 index fc9b3b7bb..000000000 --- a/icons-react/icons-js/arrow-big-right-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigRightLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigRightLine; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-right-lines.js b/icons-react/icons-js/arrow-big-right-lines.js deleted file mode 100644 index b2587f534..000000000 --- a/icons-react/icons-js/arrow-big-right-lines.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigRightLines({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigRightLines; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-right.js b/icons-react/icons-js/arrow-big-right.js deleted file mode 100644 index 2af13bec3..000000000 --- a/icons-react/icons-js/arrow-big-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-top.js b/icons-react/icons-js/arrow-big-top.js deleted file mode 100644 index 396f540eb..000000000 --- a/icons-react/icons-js/arrow-big-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigTop; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-up-line.js b/icons-react/icons-js/arrow-big-up-line.js deleted file mode 100644 index 9c4d681f6..000000000 --- a/icons-react/icons-js/arrow-big-up-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigUpLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigUpLine; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-big-up-lines.js b/icons-react/icons-js/arrow-big-up-lines.js deleted file mode 100644 index 16b1d273a..000000000 --- a/icons-react/icons-js/arrow-big-up-lines.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBigUpLines({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBigUpLines; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bottom-bar.js b/icons-react/icons-js/arrow-bottom-bar.js deleted file mode 100644 index d993d370c..000000000 --- a/icons-react/icons-js/arrow-bottom-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBottomBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBottomBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bottom-circle.js b/icons-react/icons-js/arrow-bottom-circle.js deleted file mode 100644 index fc0639fd7..000000000 --- a/icons-react/icons-js/arrow-bottom-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBottomCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBottomCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bottom-square.js b/icons-react/icons-js/arrow-bottom-square.js deleted file mode 100644 index e604f8b35..000000000 --- a/icons-react/icons-js/arrow-bottom-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBottomSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBottomSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bottom-tail.js b/icons-react/icons-js/arrow-bottom-tail.js deleted file mode 100644 index 755fd3e3b..000000000 --- a/icons-react/icons-js/arrow-bottom-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBottomTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBottomTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bounce.js b/icons-react/icons-js/arrow-bounce.js deleted file mode 100644 index 6901183f3..000000000 --- a/icons-react/icons-js/arrow-bounce.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowBounce({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowBounce; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-curve-left.js b/icons-react/icons-js/arrow-curve-left.js deleted file mode 100644 index 090e9491d..000000000 --- a/icons-react/icons-js/arrow-curve-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowCurveLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowCurveLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-curve-right.js b/icons-react/icons-js/arrow-curve-right.js deleted file mode 100644 index 0d44b131a..000000000 --- a/icons-react/icons-js/arrow-curve-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowCurveRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowCurveRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-bar.js b/icons-react/icons-js/arrow-down-bar.js deleted file mode 100644 index 96d255a4e..000000000 --- a/icons-react/icons-js/arrow-down-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-circle.js b/icons-react/icons-js/arrow-down-circle.js deleted file mode 100644 index c16af63b8..000000000 --- a/icons-react/icons-js/arrow-down-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-left-circle.js b/icons-react/icons-js/arrow-down-left-circle.js deleted file mode 100644 index 21e0bd14b..000000000 --- a/icons-react/icons-js/arrow-down-left-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownLeftCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-left.js b/icons-react/icons-js/arrow-down-left.js deleted file mode 100644 index cef80d130..000000000 --- a/icons-react/icons-js/arrow-down-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-rhombus.js b/icons-react/icons-js/arrow-down-rhombus.js deleted file mode 100644 index 8f373498f..000000000 --- a/icons-react/icons-js/arrow-down-rhombus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownRhombus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownRhombus; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-right-circle.js b/icons-react/icons-js/arrow-down-right-circle.js deleted file mode 100644 index 635a35f64..000000000 --- a/icons-react/icons-js/arrow-down-right-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownRightCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-right.js b/icons-react/icons-js/arrow-down-right.js deleted file mode 100644 index a3e39b1e6..000000000 --- a/icons-react/icons-js/arrow-down-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-square.js b/icons-react/icons-js/arrow-down-square.js deleted file mode 100644 index 30e7cc16f..000000000 --- a/icons-react/icons-js/arrow-down-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-tail.js b/icons-react/icons-js/arrow-down-tail.js deleted file mode 100644 index fcd67bb96..000000000 --- a/icons-react/icons-js/arrow-down-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDownTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDownTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down.js b/icons-react/icons-js/arrow-down.js deleted file mode 100644 index 6eb717798..000000000 --- a/icons-react/icons-js/arrow-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-fork.js b/icons-react/icons-js/arrow-fork.js deleted file mode 100644 index e5bed7f27..000000000 --- a/icons-react/icons-js/arrow-fork.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowFork({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowFork; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-forward-up.js b/icons-react/icons-js/arrow-forward-up.js deleted file mode 100644 index 99e0f3518..000000000 --- a/icons-react/icons-js/arrow-forward-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowForwardUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowForwardUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-forward.js b/icons-react/icons-js/arrow-forward.js deleted file mode 100644 index ecd01f3cd..000000000 --- a/icons-react/icons-js/arrow-forward.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowForward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowForward; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-guide.js b/icons-react/icons-js/arrow-guide.js deleted file mode 100644 index 2cc45e8e8..000000000 --- a/icons-react/icons-js/arrow-guide.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowGuide({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowGuide; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-iteration.js b/icons-react/icons-js/arrow-iteration.js deleted file mode 100644 index 2de91fc78..000000000 --- a/icons-react/icons-js/arrow-iteration.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowIteration({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowIteration; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-bar.js b/icons-react/icons-js/arrow-left-bar.js deleted file mode 100644 index 813c3c908..000000000 --- a/icons-react/icons-js/arrow-left-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-circle.js b/icons-react/icons-js/arrow-left-circle.js deleted file mode 100644 index 884210f56..000000000 --- a/icons-react/icons-js/arrow-left-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-rhombus.js b/icons-react/icons-js/arrow-left-rhombus.js deleted file mode 100644 index 5dfc3d4ba..000000000 --- a/icons-react/icons-js/arrow-left-rhombus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftRhombus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftRhombus; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-right.js b/icons-react/icons-js/arrow-left-right.js deleted file mode 100644 index 9f5917c70..000000000 --- a/icons-react/icons-js/arrow-left-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-square.js b/icons-react/icons-js/arrow-left-square.js deleted file mode 100644 index ae83fc3b4..000000000 --- a/icons-react/icons-js/arrow-left-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-tail.js b/icons-react/icons-js/arrow-left-tail.js deleted file mode 100644 index fe11541f2..000000000 --- a/icons-react/icons-js/arrow-left-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeftTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeftTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left.js b/icons-react/icons-js/arrow-left.js deleted file mode 100644 index 0de610359..000000000 --- a/icons-react/icons-js/arrow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-loop-left-2.js b/icons-react/icons-js/arrow-loop-left-2.js deleted file mode 100644 index d13505485..000000000 --- a/icons-react/icons-js/arrow-loop-left-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLoopLeft2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLoopLeft2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-loop-left.js b/icons-react/icons-js/arrow-loop-left.js deleted file mode 100644 index 8b885fb82..000000000 --- a/icons-react/icons-js/arrow-loop-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLoopLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLoopLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-loop-right-2.js b/icons-react/icons-js/arrow-loop-right-2.js deleted file mode 100644 index ed3fa24e4..000000000 --- a/icons-react/icons-js/arrow-loop-right-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLoopRight2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLoopRight2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-loop-right.js b/icons-react/icons-js/arrow-loop-right.js deleted file mode 100644 index 62e7a8ac5..000000000 --- a/icons-react/icons-js/arrow-loop-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowLoopRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowLoopRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge-both.js b/icons-react/icons-js/arrow-merge-both.js deleted file mode 100644 index c6a4dd251..000000000 --- a/icons-react/icons-js/arrow-merge-both.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMergeBoth({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMergeBoth; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge-left.js b/icons-react/icons-js/arrow-merge-left.js deleted file mode 100644 index 08bf95141..000000000 --- a/icons-react/icons-js/arrow-merge-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMergeLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMergeLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge-right.js b/icons-react/icons-js/arrow-merge-right.js deleted file mode 100644 index d8e23bf16..000000000 --- a/icons-react/icons-js/arrow-merge-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMergeRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMergeRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge.js b/icons-react/icons-js/arrow-merge.js deleted file mode 100644 index 765db9e37..000000000 --- a/icons-react/icons-js/arrow-merge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMerge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMerge; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-down.js b/icons-react/icons-js/arrow-move-down.js deleted file mode 100644 index 6d884c53b..000000000 --- a/icons-react/icons-js/arrow-move-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMoveDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMoveDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-left.js b/icons-react/icons-js/arrow-move-left.js deleted file mode 100644 index c69ed964d..000000000 --- a/icons-react/icons-js/arrow-move-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMoveLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMoveLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-right.js b/icons-react/icons-js/arrow-move-right.js deleted file mode 100644 index e7a7f3e28..000000000 --- a/icons-react/icons-js/arrow-move-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMoveRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMoveRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-up.js b/icons-react/icons-js/arrow-move-up.js deleted file mode 100644 index 0a37cb0ab..000000000 --- a/icons-react/icons-js/arrow-move-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowMoveUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowMoveUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-down.js b/icons-react/icons-js/arrow-narrow-down.js deleted file mode 100644 index 99cf78a3a..000000000 --- a/icons-react/icons-js/arrow-narrow-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowNarrowDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowNarrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-left.js b/icons-react/icons-js/arrow-narrow-left.js deleted file mode 100644 index c5cbcdc14..000000000 --- a/icons-react/icons-js/arrow-narrow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowNarrowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowNarrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-right.js b/icons-react/icons-js/arrow-narrow-right.js deleted file mode 100644 index 0c7519193..000000000 --- a/icons-react/icons-js/arrow-narrow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowNarrowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowNarrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-up.js b/icons-react/icons-js/arrow-narrow-up.js deleted file mode 100644 index bd5e793f7..000000000 --- a/icons-react/icons-js/arrow-narrow-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowNarrowUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowNarrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-left-2.js b/icons-react/icons-js/arrow-ramp-left-2.js deleted file mode 100644 index 1319e7b22..000000000 --- a/icons-react/icons-js/arrow-ramp-left-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampLeft2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampLeft2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-left-3.js b/icons-react/icons-js/arrow-ramp-left-3.js deleted file mode 100644 index 5fee4be65..000000000 --- a/icons-react/icons-js/arrow-ramp-left-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampLeft3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampLeft3; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-left.js b/icons-react/icons-js/arrow-ramp-left.js deleted file mode 100644 index 7caad0416..000000000 --- a/icons-react/icons-js/arrow-ramp-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-right-2.js b/icons-react/icons-js/arrow-ramp-right-2.js deleted file mode 100644 index e6bb4b2b8..000000000 --- a/icons-react/icons-js/arrow-ramp-right-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampRight2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampRight2; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-right-3.js b/icons-react/icons-js/arrow-ramp-right-3.js deleted file mode 100644 index 20d6a9a39..000000000 --- a/icons-react/icons-js/arrow-ramp-right-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampRight3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampRight3; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-ramp-right.js b/icons-react/icons-js/arrow-ramp-right.js deleted file mode 100644 index 598a6249e..000000000 --- a/icons-react/icons-js/arrow-ramp-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRampRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRampRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-bar.js b/icons-react/icons-js/arrow-right-bar.js deleted file mode 100644 index 85b06092b..000000000 --- a/icons-react/icons-js/arrow-right-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRightBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRightBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-circle.js b/icons-react/icons-js/arrow-right-circle.js deleted file mode 100644 index ae0d1b842..000000000 --- a/icons-react/icons-js/arrow-right-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRightCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-rhombus.js b/icons-react/icons-js/arrow-right-rhombus.js deleted file mode 100644 index 75eb2600e..000000000 --- a/icons-react/icons-js/arrow-right-rhombus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRightRhombus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRightRhombus; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-square.js b/icons-react/icons-js/arrow-right-square.js deleted file mode 100644 index 9cb3eb234..000000000 --- a/icons-react/icons-js/arrow-right-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRightSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRightSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-tail.js b/icons-react/icons-js/arrow-right-tail.js deleted file mode 100644 index 4386a3f18..000000000 --- a/icons-react/icons-js/arrow-right-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRightTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRightTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right.js b/icons-react/icons-js/arrow-right.js deleted file mode 100644 index 2b9a72115..000000000 --- a/icons-react/icons-js/arrow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-first-left.js b/icons-react/icons-js/arrow-rotary-first-left.js deleted file mode 100644 index 653fe09fd..000000000 --- a/icons-react/icons-js/arrow-rotary-first-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryFirstLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryFirstLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-first-right.js b/icons-react/icons-js/arrow-rotary-first-right.js deleted file mode 100644 index 8220b958b..000000000 --- a/icons-react/icons-js/arrow-rotary-first-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryFirstRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryFirstRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-last-left.js b/icons-react/icons-js/arrow-rotary-last-left.js deleted file mode 100644 index 076258a9d..000000000 --- a/icons-react/icons-js/arrow-rotary-last-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryLastLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryLastLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-last-right.js b/icons-react/icons-js/arrow-rotary-last-right.js deleted file mode 100644 index 9472f24b8..000000000 --- a/icons-react/icons-js/arrow-rotary-last-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryLastRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryLastRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-left.js b/icons-react/icons-js/arrow-rotary-left.js deleted file mode 100644 index 809e685e8..000000000 --- a/icons-react/icons-js/arrow-rotary-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-right.js b/icons-react/icons-js/arrow-rotary-right.js deleted file mode 100644 index 30f7a73b9..000000000 --- a/icons-react/icons-js/arrow-rotary-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-rotary-straight.js b/icons-react/icons-js/arrow-rotary-straight.js deleted file mode 100644 index d3ded6553..000000000 --- a/icons-react/icons-js/arrow-rotary-straight.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRotaryStraight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRotaryStraight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-roundabout-left.js b/icons-react/icons-js/arrow-roundabout-left.js deleted file mode 100644 index 8061a8f3c..000000000 --- a/icons-react/icons-js/arrow-roundabout-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRoundaboutLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRoundaboutLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-roundabout-right.js b/icons-react/icons-js/arrow-roundabout-right.js deleted file mode 100644 index 40322634b..000000000 --- a/icons-react/icons-js/arrow-roundabout-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowRoundaboutRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowRoundaboutRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-sharp-turn-left.js b/icons-react/icons-js/arrow-sharp-turn-left.js deleted file mode 100644 index ac2d80957..000000000 --- a/icons-react/icons-js/arrow-sharp-turn-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowSharpTurnLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowSharpTurnLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-sharp-turn-right.js b/icons-react/icons-js/arrow-sharp-turn-right.js deleted file mode 100644 index 3989f9e37..000000000 --- a/icons-react/icons-js/arrow-sharp-turn-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowSharpTurnRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowSharpTurnRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-top-bar.js b/icons-react/icons-js/arrow-top-bar.js deleted file mode 100644 index be845d104..000000000 --- a/icons-react/icons-js/arrow-top-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowTopBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowTopBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-top-circle.js b/icons-react/icons-js/arrow-top-circle.js deleted file mode 100644 index 4aebf0afe..000000000 --- a/icons-react/icons-js/arrow-top-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowTopCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowTopCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-top-square.js b/icons-react/icons-js/arrow-top-square.js deleted file mode 100644 index 301671f77..000000000 --- a/icons-react/icons-js/arrow-top-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowTopSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowTopSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-top-tail.js b/icons-react/icons-js/arrow-top-tail.js deleted file mode 100644 index 0642db4f6..000000000 --- a/icons-react/icons-js/arrow-top-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowTopTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowTopTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-bar.js b/icons-react/icons-js/arrow-up-bar.js deleted file mode 100644 index 80c3012c8..000000000 --- a/icons-react/icons-js/arrow-up-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpBar; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-circle.js b/icons-react/icons-js/arrow-up-circle.js deleted file mode 100644 index 88d164a68..000000000 --- a/icons-react/icons-js/arrow-up-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-left-circle.js b/icons-react/icons-js/arrow-up-left-circle.js deleted file mode 100644 index 51d3e10fa..000000000 --- a/icons-react/icons-js/arrow-up-left-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpLeftCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-left.js b/icons-react/icons-js/arrow-up-left.js deleted file mode 100644 index bfd7862e6..000000000 --- a/icons-react/icons-js/arrow-up-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-rhombus.js b/icons-react/icons-js/arrow-up-rhombus.js deleted file mode 100644 index 11964f6ca..000000000 --- a/icons-react/icons-js/arrow-up-rhombus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpRhombus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpRhombus; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-right-circle.js b/icons-react/icons-js/arrow-up-right-circle.js deleted file mode 100644 index b519730d3..000000000 --- a/icons-react/icons-js/arrow-up-right-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpRightCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-right.js b/icons-react/icons-js/arrow-up-right.js deleted file mode 100644 index 120f1d7c7..000000000 --- a/icons-react/icons-js/arrow-up-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-square.js b/icons-react/icons-js/arrow-up-square.js deleted file mode 100644 index 11a30793d..000000000 --- a/icons-react/icons-js/arrow-up-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpSquare; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-tail.js b/icons-react/icons-js/arrow-up-tail.js deleted file mode 100644 index a3e633dd1..000000000 --- a/icons-react/icons-js/arrow-up-tail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUpTail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUpTail; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up.js b/icons-react/icons-js/arrow-up.js deleted file mode 100644 index ed7d4a8eb..000000000 --- a/icons-react/icons-js/arrow-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-wave-left-down.js b/icons-react/icons-js/arrow-wave-left-down.js deleted file mode 100644 index 29d6a05a1..000000000 --- a/icons-react/icons-js/arrow-wave-left-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowWaveLeftDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowWaveLeftDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-wave-left-up.js b/icons-react/icons-js/arrow-wave-left-up.js deleted file mode 100644 index cd2bc44c1..000000000 --- a/icons-react/icons-js/arrow-wave-left-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowWaveLeftUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowWaveLeftUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-wave-right-down.js b/icons-react/icons-js/arrow-wave-right-down.js deleted file mode 100644 index f19ec75e0..000000000 --- a/icons-react/icons-js/arrow-wave-right-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowWaveRightDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowWaveRightDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-wave-right-up.js b/icons-react/icons-js/arrow-wave-right-up.js deleted file mode 100644 index bef8bae3d..000000000 --- a/icons-react/icons-js/arrow-wave-right-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowWaveRightUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowWaveRightUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-zig-zag.js b/icons-react/icons-js/arrow-zig-zag.js deleted file mode 100644 index 8f25beac7..000000000 --- a/icons-react/icons-js/arrow-zig-zag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowZigZag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowZigZag; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-cross.js b/icons-react/icons-js/arrows-cross.js deleted file mode 100644 index ff80df357..000000000 --- a/icons-react/icons-js/arrows-cross.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsCross({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsCross; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal-2.js b/icons-react/icons-js/arrows-diagonal-2.js deleted file mode 100644 index e61571847..000000000 --- a/icons-react/icons-js/arrows-diagonal-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDiagonal2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDiagonal2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal-minimize-2.js b/icons-react/icons-js/arrows-diagonal-minimize-2.js deleted file mode 100644 index f059965cb..000000000 --- a/icons-react/icons-js/arrows-diagonal-minimize-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDiagonalMinimize2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDiagonalMinimize2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal-minimize.js b/icons-react/icons-js/arrows-diagonal-minimize.js deleted file mode 100644 index 6b05f34f1..000000000 --- a/icons-react/icons-js/arrows-diagonal-minimize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDiagonalMinimize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDiagonalMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal.js b/icons-react/icons-js/arrows-diagonal.js deleted file mode 100644 index 5d5ec3e99..000000000 --- a/icons-react/icons-js/arrows-diagonal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDiagonal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDiagonal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diff.js b/icons-react/icons-js/arrows-diff.js deleted file mode 100644 index a41300388..000000000 --- a/icons-react/icons-js/arrows-diff.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDiff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDiff; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-double-ne-sw.js b/icons-react/icons-js/arrows-double-ne-sw.js deleted file mode 100644 index 9c6d04dfb..000000000 --- a/icons-react/icons-js/arrows-double-ne-sw.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDoubleNeSw({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDoubleNeSw; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-double-nw-se.js b/icons-react/icons-js/arrows-double-nw-se.js deleted file mode 100644 index dd16cee54..000000000 --- a/icons-react/icons-js/arrows-double-nw-se.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDoubleNwSe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDoubleNwSe; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-double-se-nw.js b/icons-react/icons-js/arrows-double-se-nw.js deleted file mode 100644 index 95102cde7..000000000 --- a/icons-react/icons-js/arrows-double-se-nw.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDoubleSeNw({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDoubleSeNw; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-double-sw-ne.js b/icons-react/icons-js/arrows-double-sw-ne.js deleted file mode 100644 index 55b915ced..000000000 --- a/icons-react/icons-js/arrows-double-sw-ne.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDoubleSwNe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDoubleSwNe; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-down-up.js b/icons-react/icons-js/arrows-down-up.js deleted file mode 100644 index 35aa0baaf..000000000 --- a/icons-react/icons-js/arrows-down-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDownUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDownUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-down.js b/icons-react/icons-js/arrows-down.js deleted file mode 100644 index c45cc9586..000000000 --- a/icons-react/icons-js/arrows-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-exchange-2.js b/icons-react/icons-js/arrows-exchange-2.js deleted file mode 100644 index b536c12ca..000000000 --- a/icons-react/icons-js/arrows-exchange-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsExchange2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsExchange2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-exchange.js b/icons-react/icons-js/arrows-exchange.js deleted file mode 100644 index f23a98a90..000000000 --- a/icons-react/icons-js/arrows-exchange.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsExchange({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsExchange; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-horizontal.js b/icons-react/icons-js/arrows-horizontal.js deleted file mode 100644 index 3bf17a794..000000000 --- a/icons-react/icons-js/arrows-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-join-2.js b/icons-react/icons-js/arrows-join-2.js deleted file mode 100644 index acce5443a..000000000 --- a/icons-react/icons-js/arrows-join-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsJoin2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsJoin2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-join.js b/icons-react/icons-js/arrows-join.js deleted file mode 100644 index 424430d9c..000000000 --- a/icons-react/icons-js/arrows-join.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsJoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsJoin; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-left-down.js b/icons-react/icons-js/arrows-left-down.js deleted file mode 100644 index 66c440156..000000000 --- a/icons-react/icons-js/arrows-left-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsLeftDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsLeftDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-left-right.js b/icons-react/icons-js/arrows-left-right.js deleted file mode 100644 index e1146594a..000000000 --- a/icons-react/icons-js/arrows-left-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsLeftRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsLeftRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-left.js b/icons-react/icons-js/arrows-left.js deleted file mode 100644 index 3c19084b0..000000000 --- a/icons-react/icons-js/arrows-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-maximize.js b/icons-react/icons-js/arrows-maximize.js deleted file mode 100644 index 072585a74..000000000 --- a/icons-react/icons-js/arrows-maximize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsMaximize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsMaximize; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-minimize.js b/icons-react/icons-js/arrows-minimize.js deleted file mode 100644 index eb6d8e6c7..000000000 --- a/icons-react/icons-js/arrows-minimize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsMinimize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move-horizontal.js b/icons-react/icons-js/arrows-move-horizontal.js deleted file mode 100644 index 70e1b1acf..000000000 --- a/icons-react/icons-js/arrows-move-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsMoveHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsMoveHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move-vertical.js b/icons-react/icons-js/arrows-move-vertical.js deleted file mode 100644 index a24fd8c2b..000000000 --- a/icons-react/icons-js/arrows-move-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsMoveVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsMoveVertical; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move.js b/icons-react/icons-js/arrows-move.js deleted file mode 100644 index f5926458b..000000000 --- a/icons-react/icons-js/arrows-move.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsMove({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsMove; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-random.js b/icons-react/icons-js/arrows-random.js deleted file mode 100644 index 05207146f..000000000 --- a/icons-react/icons-js/arrows-random.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsRandom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsRandom; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-right-down.js b/icons-react/icons-js/arrows-right-down.js deleted file mode 100644 index 7e8d9d64d..000000000 --- a/icons-react/icons-js/arrows-right-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsRightDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsRightDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-right-left.js b/icons-react/icons-js/arrows-right-left.js deleted file mode 100644 index dfe3dda7e..000000000 --- a/icons-react/icons-js/arrows-right-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsRightLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsRightLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-right.js b/icons-react/icons-js/arrows-right.js deleted file mode 100644 index fd15867f4..000000000 --- a/icons-react/icons-js/arrows-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle-2.js b/icons-react/icons-js/arrows-shuffle-2.js deleted file mode 100644 index 94936ba1b..000000000 --- a/icons-react/icons-js/arrows-shuffle-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsShuffle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsShuffle2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle.js b/icons-react/icons-js/arrows-shuffle.js deleted file mode 100644 index 4a1a2a0a9..000000000 --- a/icons-react/icons-js/arrows-shuffle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsShuffle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsShuffle; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-sort.js b/icons-react/icons-js/arrows-sort.js deleted file mode 100644 index 97fbc0576..000000000 --- a/icons-react/icons-js/arrows-sort.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsSort({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsSort; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-split-2.js b/icons-react/icons-js/arrows-split-2.js deleted file mode 100644 index 31ecf5581..000000000 --- a/icons-react/icons-js/arrows-split-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsSplit2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsSplit2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-split.js b/icons-react/icons-js/arrows-split.js deleted file mode 100644 index 2b5c64ac2..000000000 --- a/icons-react/icons-js/arrows-split.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsSplit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsSplit; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-transfer-down.js b/icons-react/icons-js/arrows-transfer-down.js deleted file mode 100644 index 377ddf5a7..000000000 --- a/icons-react/icons-js/arrows-transfer-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsTransferDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsTransferDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-transfer-up.js b/icons-react/icons-js/arrows-transfer-up.js deleted file mode 100644 index bcc78cc4a..000000000 --- a/icons-react/icons-js/arrows-transfer-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsTransferUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsTransferUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-up-down.js b/icons-react/icons-js/arrows-up-down.js deleted file mode 100644 index 9b0fbbc78..000000000 --- a/icons-react/icons-js/arrows-up-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsUpDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsUpDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-up-left.js b/icons-react/icons-js/arrows-up-left.js deleted file mode 100644 index 2dba914cb..000000000 --- a/icons-react/icons-js/arrows-up-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsUpLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-up-right.js b/icons-react/icons-js/arrows-up-right.js deleted file mode 100644 index 687445878..000000000 --- a/icons-react/icons-js/arrows-up-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsUpRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-up.js b/icons-react/icons-js/arrows-up.js deleted file mode 100644 index 519ce8d2c..000000000 --- a/icons-react/icons-js/arrows-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-vertical.js b/icons-react/icons-js/arrows-vertical.js deleted file mode 100644 index 23e5cccef..000000000 --- a/icons-react/icons-js/arrows-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArrowsVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArrowsVertical; \ No newline at end of file diff --git a/icons-react/icons-js/artboard-off.js b/icons-react/icons-js/artboard-off.js deleted file mode 100644 index b9b40b6e8..000000000 --- a/icons-react/icons-js/artboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArtboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArtboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/artboard.js b/icons-react/icons-js/artboard.js deleted file mode 100644 index c86a8b1f0..000000000 --- a/icons-react/icons-js/artboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArtboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArtboard; \ No newline at end of file diff --git a/icons-react/icons-js/article-off.js b/icons-react/icons-js/article-off.js deleted file mode 100644 index 6c44a1ca7..000000000 --- a/icons-react/icons-js/article-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArticleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArticleOff; \ No newline at end of file diff --git a/icons-react/icons-js/article.js b/icons-react/icons-js/article.js deleted file mode 100644 index cdecf458a..000000000 --- a/icons-react/icons-js/article.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconArticle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconArticle; \ No newline at end of file diff --git a/icons-react/icons-js/aspect-ratio-off.js b/icons-react/icons-js/aspect-ratio-off.js deleted file mode 100644 index 3e9a7e4ff..000000000 --- a/icons-react/icons-js/aspect-ratio-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAspectRatioOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAspectRatioOff; \ No newline at end of file diff --git a/icons-react/icons-js/aspect-ratio.js b/icons-react/icons-js/aspect-ratio.js deleted file mode 100644 index 416bdce1e..000000000 --- a/icons-react/icons-js/aspect-ratio.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAspectRatio({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAspectRatio; \ No newline at end of file diff --git a/icons-react/icons-js/assembly-off.js b/icons-react/icons-js/assembly-off.js deleted file mode 100644 index 3844f741e..000000000 --- a/icons-react/icons-js/assembly-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAssemblyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAssemblyOff; \ No newline at end of file diff --git a/icons-react/icons-js/assembly.js b/icons-react/icons-js/assembly.js deleted file mode 100644 index aa275c2cb..000000000 --- a/icons-react/icons-js/assembly.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAssembly({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAssembly; \ No newline at end of file diff --git a/icons-react/icons-js/asset.js b/icons-react/icons-js/asset.js deleted file mode 100644 index 9c96e2dd6..000000000 --- a/icons-react/icons-js/asset.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAsset({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAsset; \ No newline at end of file diff --git a/icons-react/icons-js/asterisk-simple.js b/icons-react/icons-js/asterisk-simple.js deleted file mode 100644 index 38d0e71a0..000000000 --- a/icons-react/icons-js/asterisk-simple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAsteriskSimple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAsteriskSimple; \ No newline at end of file diff --git a/icons-react/icons-js/asterisk.js b/icons-react/icons-js/asterisk.js deleted file mode 100644 index 43923ce1f..000000000 --- a/icons-react/icons-js/asterisk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAsterisk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAsterisk; \ No newline at end of file diff --git a/icons-react/icons-js/at-off.js b/icons-react/icons-js/at-off.js deleted file mode 100644 index 4d1495e5f..000000000 --- a/icons-react/icons-js/at-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAtOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAtOff; \ No newline at end of file diff --git a/icons-react/icons-js/at.js b/icons-react/icons-js/at.js deleted file mode 100644 index 9e9334c67..000000000 --- a/icons-react/icons-js/at.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAt; \ No newline at end of file diff --git a/icons-react/icons-js/atom-2.js b/icons-react/icons-js/atom-2.js deleted file mode 100644 index fadda0896..000000000 --- a/icons-react/icons-js/atom-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAtom2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAtom2; \ No newline at end of file diff --git a/icons-react/icons-js/atom-off.js b/icons-react/icons-js/atom-off.js deleted file mode 100644 index c639acc40..000000000 --- a/icons-react/icons-js/atom-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAtomOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAtomOff; \ No newline at end of file diff --git a/icons-react/icons-js/atom.js b/icons-react/icons-js/atom.js deleted file mode 100644 index 631aabb3c..000000000 --- a/icons-react/icons-js/atom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAtom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAtom; \ No newline at end of file diff --git a/icons-react/icons-js/augmented-reality-2.js b/icons-react/icons-js/augmented-reality-2.js deleted file mode 100644 index 53a3427e3..000000000 --- a/icons-react/icons-js/augmented-reality-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAugmentedReality2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAugmentedReality2; \ No newline at end of file diff --git a/icons-react/icons-js/augmented-reality-off.js b/icons-react/icons-js/augmented-reality-off.js deleted file mode 100644 index 1e35bf9c4..000000000 --- a/icons-react/icons-js/augmented-reality-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAugmentedRealityOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAugmentedRealityOff; \ No newline at end of file diff --git a/icons-react/icons-js/augmented-reality.js b/icons-react/icons-js/augmented-reality.js deleted file mode 100644 index 5533507b7..000000000 --- a/icons-react/icons-js/augmented-reality.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAugmentedReality({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAugmentedReality; \ No newline at end of file diff --git a/icons-react/icons-js/award-off.js b/icons-react/icons-js/award-off.js deleted file mode 100644 index a5ba90312..000000000 --- a/icons-react/icons-js/award-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAwardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAwardOff; \ No newline at end of file diff --git a/icons-react/icons-js/award.js b/icons-react/icons-js/award.js deleted file mode 100644 index dcdb94ff3..000000000 --- a/icons-react/icons-js/award.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAward; \ No newline at end of file diff --git a/icons-react/icons-js/axe.js b/icons-react/icons-js/axe.js deleted file mode 100644 index d58b62d54..000000000 --- a/icons-react/icons-js/axe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAxe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAxe; \ No newline at end of file diff --git a/icons-react/icons-js/axis-x.js b/icons-react/icons-js/axis-x.js deleted file mode 100644 index 5c3da801f..000000000 --- a/icons-react/icons-js/axis-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAxisX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAxisX; \ No newline at end of file diff --git a/icons-react/icons-js/axis-y.js b/icons-react/icons-js/axis-y.js deleted file mode 100644 index c487f2ba9..000000000 --- a/icons-react/icons-js/axis-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconAxisY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconAxisY; \ No newline at end of file diff --git a/icons-react/icons-js/baby-bottle.js b/icons-react/icons-js/baby-bottle.js deleted file mode 100644 index 6cc84310f..000000000 --- a/icons-react/icons-js/baby-bottle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBabyBottle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBabyBottle; \ No newline at end of file diff --git a/icons-react/icons-js/baby-carriage.js b/icons-react/icons-js/baby-carriage.js deleted file mode 100644 index 7fb617006..000000000 --- a/icons-react/icons-js/baby-carriage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBabyCarriage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBabyCarriage; \ No newline at end of file diff --git a/icons-react/icons-js/backhoe.js b/icons-react/icons-js/backhoe.js deleted file mode 100644 index b7c4b2048..000000000 --- a/icons-react/icons-js/backhoe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBackhoe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBackhoe; \ No newline at end of file diff --git a/icons-react/icons-js/backpack-off.js b/icons-react/icons-js/backpack-off.js deleted file mode 100644 index c504cb632..000000000 --- a/icons-react/icons-js/backpack-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBackpackOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBackpackOff; \ No newline at end of file diff --git a/icons-react/icons-js/backpack.js b/icons-react/icons-js/backpack.js deleted file mode 100644 index 99adab507..000000000 --- a/icons-react/icons-js/backpack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBackpack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBackpack; \ No newline at end of file diff --git a/icons-react/icons-js/backspace.js b/icons-react/icons-js/backspace.js deleted file mode 100644 index 7a189adc2..000000000 --- a/icons-react/icons-js/backspace.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBackspace({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBackspace; \ No newline at end of file diff --git a/icons-react/icons-js/badge-3d.js b/icons-react/icons-js/badge-3d.js deleted file mode 100644 index 562fd3bf8..000000000 --- a/icons-react/icons-js/badge-3d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadge3d({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadge3d; \ No newline at end of file diff --git a/icons-react/icons-js/badge-4k.js b/icons-react/icons-js/badge-4k.js deleted file mode 100644 index c9761dd76..000000000 --- a/icons-react/icons-js/badge-4k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadge4k({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadge4k; \ No newline at end of file diff --git a/icons-react/icons-js/badge-8k.js b/icons-react/icons-js/badge-8k.js deleted file mode 100644 index 766d71737..000000000 --- a/icons-react/icons-js/badge-8k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadge8k({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadge8k; \ No newline at end of file diff --git a/icons-react/icons-js/badge-ad.js b/icons-react/icons-js/badge-ad.js deleted file mode 100644 index a8704bab9..000000000 --- a/icons-react/icons-js/badge-ad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeAd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeAd; \ No newline at end of file diff --git a/icons-react/icons-js/badge-ar.js b/icons-react/icons-js/badge-ar.js deleted file mode 100644 index 7ac73e444..000000000 --- a/icons-react/icons-js/badge-ar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeAr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeAr; \ No newline at end of file diff --git a/icons-react/icons-js/badge-cc.js b/icons-react/icons-js/badge-cc.js deleted file mode 100644 index affdbe199..000000000 --- a/icons-react/icons-js/badge-cc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeCc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeCc; \ No newline at end of file diff --git a/icons-react/icons-js/badge-hd.js b/icons-react/icons-js/badge-hd.js deleted file mode 100644 index f056a22a9..000000000 --- a/icons-react/icons-js/badge-hd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeHd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeHd; \ No newline at end of file diff --git a/icons-react/icons-js/badge-off.js b/icons-react/icons-js/badge-off.js deleted file mode 100644 index f9f162fcb..000000000 --- a/icons-react/icons-js/badge-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeOff; \ No newline at end of file diff --git a/icons-react/icons-js/badge-sd.js b/icons-react/icons-js/badge-sd.js deleted file mode 100644 index 0c60ccbda..000000000 --- a/icons-react/icons-js/badge-sd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeSd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeSd; \ No newline at end of file diff --git a/icons-react/icons-js/badge-tm.js b/icons-react/icons-js/badge-tm.js deleted file mode 100644 index ecba15ade..000000000 --- a/icons-react/icons-js/badge-tm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeTm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeTm; \ No newline at end of file diff --git a/icons-react/icons-js/badge-vo.js b/icons-react/icons-js/badge-vo.js deleted file mode 100644 index c8903d634..000000000 --- a/icons-react/icons-js/badge-vo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeVo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeVo; \ No newline at end of file diff --git a/icons-react/icons-js/badge-vr.js b/icons-react/icons-js/badge-vr.js deleted file mode 100644 index 1f3cd3f44..000000000 --- a/icons-react/icons-js/badge-vr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeVr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeVr; \ No newline at end of file diff --git a/icons-react/icons-js/badge-wc.js b/icons-react/icons-js/badge-wc.js deleted file mode 100644 index 686c714fa..000000000 --- a/icons-react/icons-js/badge-wc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgeWc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgeWc; \ No newline at end of file diff --git a/icons-react/icons-js/badge.js b/icons-react/icons-js/badge.js deleted file mode 100644 index 3ce08b903..000000000 --- a/icons-react/icons-js/badge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadge; \ No newline at end of file diff --git a/icons-react/icons-js/badges-off.js b/icons-react/icons-js/badges-off.js deleted file mode 100644 index fcecdbf43..000000000 --- a/icons-react/icons-js/badges-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadgesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadgesOff; \ No newline at end of file diff --git a/icons-react/icons-js/badges.js b/icons-react/icons-js/badges.js deleted file mode 100644 index fbb6c4531..000000000 --- a/icons-react/icons-js/badges.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBadges({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBadges; \ No newline at end of file diff --git a/icons-react/icons-js/baguette.js b/icons-react/icons-js/baguette.js deleted file mode 100644 index 04e6fe8e4..000000000 --- a/icons-react/icons-js/baguette.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBaguette({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBaguette; \ No newline at end of file diff --git a/icons-react/icons-js/ball-american-football-off.js b/icons-react/icons-js/ball-american-football-off.js deleted file mode 100644 index 603b59cce..000000000 --- a/icons-react/icons-js/ball-american-football-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallAmericanFootballOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallAmericanFootballOff; \ No newline at end of file diff --git a/icons-react/icons-js/ball-american-football.js b/icons-react/icons-js/ball-american-football.js deleted file mode 100644 index 438979904..000000000 --- a/icons-react/icons-js/ball-american-football.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallAmericanFootball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallAmericanFootball; \ No newline at end of file diff --git a/icons-react/icons-js/ball-baseball.js b/icons-react/icons-js/ball-baseball.js deleted file mode 100644 index 954451f00..000000000 --- a/icons-react/icons-js/ball-baseball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallBaseball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallBaseball; \ No newline at end of file diff --git a/icons-react/icons-js/ball-basketball.js b/icons-react/icons-js/ball-basketball.js deleted file mode 100644 index 3337b6e6a..000000000 --- a/icons-react/icons-js/ball-basketball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallBasketball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallBasketball; \ No newline at end of file diff --git a/icons-react/icons-js/ball-bowling.js b/icons-react/icons-js/ball-bowling.js deleted file mode 100644 index d97795d05..000000000 --- a/icons-react/icons-js/ball-bowling.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallBowling({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallBowling; \ No newline at end of file diff --git a/icons-react/icons-js/ball-football-off.js b/icons-react/icons-js/ball-football-off.js deleted file mode 100644 index eaf2348a1..000000000 --- a/icons-react/icons-js/ball-football-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallFootballOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallFootballOff; \ No newline at end of file diff --git a/icons-react/icons-js/ball-football.js b/icons-react/icons-js/ball-football.js deleted file mode 100644 index 58f21109f..000000000 --- a/icons-react/icons-js/ball-football.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallFootball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallFootball; \ No newline at end of file diff --git a/icons-react/icons-js/ball-tennis.js b/icons-react/icons-js/ball-tennis.js deleted file mode 100644 index 84c2ecbf8..000000000 --- a/icons-react/icons-js/ball-tennis.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallTennis({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallTennis; \ No newline at end of file diff --git a/icons-react/icons-js/ball-volleyball.js b/icons-react/icons-js/ball-volleyball.js deleted file mode 100644 index 613fdaf24..000000000 --- a/icons-react/icons-js/ball-volleyball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallVolleyball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallVolleyball; \ No newline at end of file diff --git a/icons-react/icons-js/ballon-off.js b/icons-react/icons-js/ballon-off.js deleted file mode 100644 index 14cb50d61..000000000 --- a/icons-react/icons-js/ballon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallonOff; \ No newline at end of file diff --git a/icons-react/icons-js/ballon.js b/icons-react/icons-js/ballon.js deleted file mode 100644 index ebf9ff72e..000000000 --- a/icons-react/icons-js/ballon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallon; \ No newline at end of file diff --git a/icons-react/icons-js/ballpen-off.js b/icons-react/icons-js/ballpen-off.js deleted file mode 100644 index ff7867ad4..000000000 --- a/icons-react/icons-js/ballpen-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallpenOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallpenOff; \ No newline at end of file diff --git a/icons-react/icons-js/ballpen.js b/icons-react/icons-js/ballpen.js deleted file mode 100644 index 01430bd36..000000000 --- a/icons-react/icons-js/ballpen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBallpen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBallpen; \ No newline at end of file diff --git a/icons-react/icons-js/ban.js b/icons-react/icons-js/ban.js deleted file mode 100644 index d42b0a1b0..000000000 --- a/icons-react/icons-js/ban.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBan; \ No newline at end of file diff --git a/icons-react/icons-js/bandage-off.js b/icons-react/icons-js/bandage-off.js deleted file mode 100644 index cf7e25aee..000000000 --- a/icons-react/icons-js/bandage-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBandageOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBandageOff; \ No newline at end of file diff --git a/icons-react/icons-js/bandage.js b/icons-react/icons-js/bandage.js deleted file mode 100644 index 1fb6a1b60..000000000 --- a/icons-react/icons-js/bandage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBandage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBandage; \ No newline at end of file diff --git a/icons-react/icons-js/barbell-off.js b/icons-react/icons-js/barbell-off.js deleted file mode 100644 index ffebf0e06..000000000 --- a/icons-react/icons-js/barbell-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarbellOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarbellOff; \ No newline at end of file diff --git a/icons-react/icons-js/barbell.js b/icons-react/icons-js/barbell.js deleted file mode 100644 index 53ae0a463..000000000 --- a/icons-react/icons-js/barbell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarbell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarbell; \ No newline at end of file diff --git a/icons-react/icons-js/barcode-off.js b/icons-react/icons-js/barcode-off.js deleted file mode 100644 index 2ab229a50..000000000 --- a/icons-react/icons-js/barcode-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarcodeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarcodeOff; \ No newline at end of file diff --git a/icons-react/icons-js/barcode.js b/icons-react/icons-js/barcode.js deleted file mode 100644 index 4426f85dd..000000000 --- a/icons-react/icons-js/barcode.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarcode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarcode; \ No newline at end of file diff --git a/icons-react/icons-js/barell.js b/icons-react/icons-js/barell.js deleted file mode 100644 index 3cb84f3f0..000000000 --- a/icons-react/icons-js/barell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarell; \ No newline at end of file diff --git a/icons-react/icons-js/barrel-off.js b/icons-react/icons-js/barrel-off.js deleted file mode 100644 index 419867e4b..000000000 --- a/icons-react/icons-js/barrel-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarrelOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarrelOff; \ No newline at end of file diff --git a/icons-react/icons-js/barrel.js b/icons-react/icons-js/barrel.js deleted file mode 100644 index b1cdef469..000000000 --- a/icons-react/icons-js/barrel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarrel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarrel; \ No newline at end of file diff --git a/icons-react/icons-js/barrier-block-off.js b/icons-react/icons-js/barrier-block-off.js deleted file mode 100644 index 9643d2137..000000000 --- a/icons-react/icons-js/barrier-block-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarrierBlockOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarrierBlockOff; \ No newline at end of file diff --git a/icons-react/icons-js/barrier-block.js b/icons-react/icons-js/barrier-block.js deleted file mode 100644 index 7999299f5..000000000 --- a/icons-react/icons-js/barrier-block.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBarrierBlock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBarrierBlock; \ No newline at end of file diff --git a/icons-react/icons-js/baseline.js b/icons-react/icons-js/baseline.js deleted file mode 100644 index 418598146..000000000 --- a/icons-react/icons-js/baseline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBaseline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBaseline; \ No newline at end of file diff --git a/icons-react/icons-js/basket-off.js b/icons-react/icons-js/basket-off.js deleted file mode 100644 index dcf661e41..000000000 --- a/icons-react/icons-js/basket-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBasketOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBasketOff; \ No newline at end of file diff --git a/icons-react/icons-js/basket.js b/icons-react/icons-js/basket.js deleted file mode 100644 index d1145de2f..000000000 --- a/icons-react/icons-js/basket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBasket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBasket; \ No newline at end of file diff --git a/icons-react/icons-js/bat.js b/icons-react/icons-js/bat.js deleted file mode 100644 index 2f28b6c6e..000000000 --- a/icons-react/icons-js/bat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBat; \ No newline at end of file diff --git a/icons-react/icons-js/bath-off.js b/icons-react/icons-js/bath-off.js deleted file mode 100644 index 5b94faa0d..000000000 --- a/icons-react/icons-js/bath-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBathOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBathOff; \ No newline at end of file diff --git a/icons-react/icons-js/bath.js b/icons-react/icons-js/bath.js deleted file mode 100644 index 5f8f90b98..000000000 --- a/icons-react/icons-js/bath.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBath({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBath; \ No newline at end of file diff --git a/icons-react/icons-js/battery-1.js b/icons-react/icons-js/battery-1.js deleted file mode 100644 index 9899aea39..000000000 --- a/icons-react/icons-js/battery-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBattery1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBattery1; \ No newline at end of file diff --git a/icons-react/icons-js/battery-2.js b/icons-react/icons-js/battery-2.js deleted file mode 100644 index a48776232..000000000 --- a/icons-react/icons-js/battery-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBattery2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBattery2; \ No newline at end of file diff --git a/icons-react/icons-js/battery-3.js b/icons-react/icons-js/battery-3.js deleted file mode 100644 index 9d55b2fd6..000000000 --- a/icons-react/icons-js/battery-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBattery3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBattery3; \ No newline at end of file diff --git a/icons-react/icons-js/battery-4.js b/icons-react/icons-js/battery-4.js deleted file mode 100644 index f7fc86ed4..000000000 --- a/icons-react/icons-js/battery-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBattery4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBattery4; \ No newline at end of file diff --git a/icons-react/icons-js/battery-automotive.js b/icons-react/icons-js/battery-automotive.js deleted file mode 100644 index 5b6f4174b..000000000 --- a/icons-react/icons-js/battery-automotive.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBatteryAutomotive({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBatteryAutomotive; \ No newline at end of file diff --git a/icons-react/icons-js/battery-charging-2.js b/icons-react/icons-js/battery-charging-2.js deleted file mode 100644 index 1598a737c..000000000 --- a/icons-react/icons-js/battery-charging-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBatteryCharging2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBatteryCharging2; \ No newline at end of file diff --git a/icons-react/icons-js/battery-charging.js b/icons-react/icons-js/battery-charging.js deleted file mode 100644 index cf45d7d33..000000000 --- a/icons-react/icons-js/battery-charging.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBatteryCharging({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBatteryCharging; \ No newline at end of file diff --git a/icons-react/icons-js/battery-eco.js b/icons-react/icons-js/battery-eco.js deleted file mode 100644 index 619feeb2c..000000000 --- a/icons-react/icons-js/battery-eco.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBatteryEco({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBatteryEco; \ No newline at end of file diff --git a/icons-react/icons-js/battery-off.js b/icons-react/icons-js/battery-off.js deleted file mode 100644 index dfc2ddda6..000000000 --- a/icons-react/icons-js/battery-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBatteryOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBatteryOff; \ No newline at end of file diff --git a/icons-react/icons-js/battery.js b/icons-react/icons-js/battery.js deleted file mode 100644 index 1f216d8c6..000000000 --- a/icons-react/icons-js/battery.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBattery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBattery; \ No newline at end of file diff --git a/icons-react/icons-js/beach-off.js b/icons-react/icons-js/beach-off.js deleted file mode 100644 index c9ffd6721..000000000 --- a/icons-react/icons-js/beach-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBeachOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBeachOff; \ No newline at end of file diff --git a/icons-react/icons-js/beach.js b/icons-react/icons-js/beach.js deleted file mode 100644 index 4fe30ac4b..000000000 --- a/icons-react/icons-js/beach.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBeach({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBeach; \ No newline at end of file diff --git a/icons-react/icons-js/bed-off.js b/icons-react/icons-js/bed-off.js deleted file mode 100644 index a193acd13..000000000 --- a/icons-react/icons-js/bed-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBedOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBedOff; \ No newline at end of file diff --git a/icons-react/icons-js/bed.js b/icons-react/icons-js/bed.js deleted file mode 100644 index fc2cffe2e..000000000 --- a/icons-react/icons-js/bed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBed; \ No newline at end of file diff --git a/icons-react/icons-js/beer-off.js b/icons-react/icons-js/beer-off.js deleted file mode 100644 index c12980017..000000000 --- a/icons-react/icons-js/beer-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBeerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBeerOff; \ No newline at end of file diff --git a/icons-react/icons-js/beer.js b/icons-react/icons-js/beer.js deleted file mode 100644 index 384553aa9..000000000 --- a/icons-react/icons-js/beer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBeer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBeer; \ No newline at end of file diff --git a/icons-react/icons-js/bell-minus.js b/icons-react/icons-js/bell-minus.js deleted file mode 100644 index 8f4cff9a1..000000000 --- a/icons-react/icons-js/bell-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellMinus; \ No newline at end of file diff --git a/icons-react/icons-js/bell-off.js b/icons-react/icons-js/bell-off.js deleted file mode 100644 index 66eb43a87..000000000 --- a/icons-react/icons-js/bell-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellOff; \ No newline at end of file diff --git a/icons-react/icons-js/bell-plus.js b/icons-react/icons-js/bell-plus.js deleted file mode 100644 index 7c30435a2..000000000 --- a/icons-react/icons-js/bell-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellPlus; \ No newline at end of file diff --git a/icons-react/icons-js/bell-ringing-2.js b/icons-react/icons-js/bell-ringing-2.js deleted file mode 100644 index e4a05d35f..000000000 --- a/icons-react/icons-js/bell-ringing-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellRinging2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellRinging2; \ No newline at end of file diff --git a/icons-react/icons-js/bell-ringing.js b/icons-react/icons-js/bell-ringing.js deleted file mode 100644 index a1b70a963..000000000 --- a/icons-react/icons-js/bell-ringing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellRinging({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellRinging; \ No newline at end of file diff --git a/icons-react/icons-js/bell-school.js b/icons-react/icons-js/bell-school.js deleted file mode 100644 index 0a53c393f..000000000 --- a/icons-react/icons-js/bell-school.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellSchool({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellSchool; \ No newline at end of file diff --git a/icons-react/icons-js/bell-x.js b/icons-react/icons-js/bell-x.js deleted file mode 100644 index 0f656dbc9..000000000 --- a/icons-react/icons-js/bell-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellX; \ No newline at end of file diff --git a/icons-react/icons-js/bell-z.js b/icons-react/icons-js/bell-z.js deleted file mode 100644 index 8f3f55944..000000000 --- a/icons-react/icons-js/bell-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBellZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBellZ; \ No newline at end of file diff --git a/icons-react/icons-js/bell.js b/icons-react/icons-js/bell.js deleted file mode 100644 index b02e60bda..000000000 --- a/icons-react/icons-js/bell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBell; \ No newline at end of file diff --git a/icons-react/icons-js/beta.js b/icons-react/icons-js/beta.js deleted file mode 100644 index 6e2b70d56..000000000 --- a/icons-react/icons-js/beta.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBeta({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBeta; \ No newline at end of file diff --git a/icons-react/icons-js/bible.js b/icons-react/icons-js/bible.js deleted file mode 100644 index 3722eaec5..000000000 --- a/icons-react/icons-js/bible.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBible({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBible; \ No newline at end of file diff --git a/icons-react/icons-js/bike-off.js b/icons-react/icons-js/bike-off.js deleted file mode 100644 index 6d0440fc0..000000000 --- a/icons-react/icons-js/bike-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBikeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBikeOff; \ No newline at end of file diff --git a/icons-react/icons-js/bike.js b/icons-react/icons-js/bike.js deleted file mode 100644 index b1a9b2075..000000000 --- a/icons-react/icons-js/bike.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBike({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBike; \ No newline at end of file diff --git a/icons-react/icons-js/binary-off.js b/icons-react/icons-js/binary-off.js deleted file mode 100644 index 337fd3c79..000000000 --- a/icons-react/icons-js/binary-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBinaryOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBinaryOff; \ No newline at end of file diff --git a/icons-react/icons-js/binary-tree-2.js b/icons-react/icons-js/binary-tree-2.js deleted file mode 100644 index 9eb372f73..000000000 --- a/icons-react/icons-js/binary-tree-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBinaryTree2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBinaryTree2; \ No newline at end of file diff --git a/icons-react/icons-js/binary-tree.js b/icons-react/icons-js/binary-tree.js deleted file mode 100644 index c874208ce..000000000 --- a/icons-react/icons-js/binary-tree.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBinaryTree({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBinaryTree; \ No newline at end of file diff --git a/icons-react/icons-js/binary.js b/icons-react/icons-js/binary.js deleted file mode 100644 index 67f079744..000000000 --- a/icons-react/icons-js/binary.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBinary({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBinary; \ No newline at end of file diff --git a/icons-react/icons-js/biohazard-off.js b/icons-react/icons-js/biohazard-off.js deleted file mode 100644 index b90b86f3a..000000000 --- a/icons-react/icons-js/biohazard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBiohazardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBiohazardOff; \ No newline at end of file diff --git a/icons-react/icons-js/biohazard.js b/icons-react/icons-js/biohazard.js deleted file mode 100644 index 53a8d93ab..000000000 --- a/icons-react/icons-js/biohazard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBiohazard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBiohazard; \ No newline at end of file diff --git a/icons-react/icons-js/blade.js b/icons-react/icons-js/blade.js deleted file mode 100644 index 1435f51fd..000000000 --- a/icons-react/icons-js/blade.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBlade({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBlade; \ No newline at end of file diff --git a/icons-react/icons-js/bleach-chlorine.js b/icons-react/icons-js/bleach-chlorine.js deleted file mode 100644 index 655c9803e..000000000 --- a/icons-react/icons-js/bleach-chlorine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBleachChlorine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBleachChlorine; \ No newline at end of file diff --git a/icons-react/icons-js/bleach-no-chlorine.js b/icons-react/icons-js/bleach-no-chlorine.js deleted file mode 100644 index 03790402f..000000000 --- a/icons-react/icons-js/bleach-no-chlorine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBleachNoChlorine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBleachNoChlorine; \ No newline at end of file diff --git a/icons-react/icons-js/bleach-off.js b/icons-react/icons-js/bleach-off.js deleted file mode 100644 index 583552435..000000000 --- a/icons-react/icons-js/bleach-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBleachOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBleachOff; \ No newline at end of file diff --git a/icons-react/icons-js/bleach.js b/icons-react/icons-js/bleach.js deleted file mode 100644 index 0d934bc9c..000000000 --- a/icons-react/icons-js/bleach.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBleach({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBleach; \ No newline at end of file diff --git a/icons-react/icons-js/blockquote.js b/icons-react/icons-js/blockquote.js deleted file mode 100644 index 0d70efb72..000000000 --- a/icons-react/icons-js/blockquote.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBlockquote({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBlockquote; \ No newline at end of file diff --git a/icons-react/icons-js/bluetooth-connected.js b/icons-react/icons-js/bluetooth-connected.js deleted file mode 100644 index 243eed6c5..000000000 --- a/icons-react/icons-js/bluetooth-connected.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBluetoothConnected({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBluetoothConnected; \ No newline at end of file diff --git a/icons-react/icons-js/bluetooth-off.js b/icons-react/icons-js/bluetooth-off.js deleted file mode 100644 index e82adfa02..000000000 --- a/icons-react/icons-js/bluetooth-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBluetoothOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBluetoothOff; \ No newline at end of file diff --git a/icons-react/icons-js/bluetooth-x.js b/icons-react/icons-js/bluetooth-x.js deleted file mode 100644 index 6df843d17..000000000 --- a/icons-react/icons-js/bluetooth-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBluetoothX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBluetoothX; \ No newline at end of file diff --git a/icons-react/icons-js/bluetooth.js b/icons-react/icons-js/bluetooth.js deleted file mode 100644 index 992816e63..000000000 --- a/icons-react/icons-js/bluetooth.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBluetooth({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBluetooth; \ No newline at end of file diff --git a/icons-react/icons-js/blur-off.js b/icons-react/icons-js/blur-off.js deleted file mode 100644 index de5924798..000000000 --- a/icons-react/icons-js/blur-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBlurOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBlurOff; \ No newline at end of file diff --git a/icons-react/icons-js/blur.js b/icons-react/icons-js/blur.js deleted file mode 100644 index feef3facc..000000000 --- a/icons-react/icons-js/blur.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBlur({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBlur; \ No newline at end of file diff --git a/icons-react/icons-js/bmp.js b/icons-react/icons-js/bmp.js deleted file mode 100644 index bf2ca04b8..000000000 --- a/icons-react/icons-js/bmp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBmp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBmp; \ No newline at end of file diff --git a/icons-react/icons-js/bold-off.js b/icons-react/icons-js/bold-off.js deleted file mode 100644 index 6d460d1ab..000000000 --- a/icons-react/icons-js/bold-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoldOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoldOff; \ No newline at end of file diff --git a/icons-react/icons-js/bold.js b/icons-react/icons-js/bold.js deleted file mode 100644 index 14af5565a..000000000 --- a/icons-react/icons-js/bold.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBold({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBold; \ No newline at end of file diff --git a/icons-react/icons-js/bolt-off.js b/icons-react/icons-js/bolt-off.js deleted file mode 100644 index 18152f4ce..000000000 --- a/icons-react/icons-js/bolt-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoltOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoltOff; \ No newline at end of file diff --git a/icons-react/icons-js/bolt.js b/icons-react/icons-js/bolt.js deleted file mode 100644 index 89ffa5cc1..000000000 --- a/icons-react/icons-js/bolt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBolt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBolt; \ No newline at end of file diff --git a/icons-react/icons-js/bomb.js b/icons-react/icons-js/bomb.js deleted file mode 100644 index bb1e0610e..000000000 --- a/icons-react/icons-js/bomb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBomb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBomb; \ No newline at end of file diff --git a/icons-react/icons-js/bone-off.js b/icons-react/icons-js/bone-off.js deleted file mode 100644 index 4eb3a19ad..000000000 --- a/icons-react/icons-js/bone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoneOff; \ No newline at end of file diff --git a/icons-react/icons-js/bone.js b/icons-react/icons-js/bone.js deleted file mode 100644 index 87509e22b..000000000 --- a/icons-react/icons-js/bone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBone; \ No newline at end of file diff --git a/icons-react/icons-js/bong-off.js b/icons-react/icons-js/bong-off.js deleted file mode 100644 index 837d6d6da..000000000 --- a/icons-react/icons-js/bong-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBongOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBongOff; \ No newline at end of file diff --git a/icons-react/icons-js/bong.js b/icons-react/icons-js/bong.js deleted file mode 100644 index 00e85f8b8..000000000 --- a/icons-react/icons-js/bong.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBong({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBong; \ No newline at end of file diff --git a/icons-react/icons-js/book-2.js b/icons-react/icons-js/book-2.js deleted file mode 100644 index 970a6bfd2..000000000 --- a/icons-react/icons-js/book-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBook2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBook2; \ No newline at end of file diff --git a/icons-react/icons-js/book-download.js b/icons-react/icons-js/book-download.js deleted file mode 100644 index 12769ab20..000000000 --- a/icons-react/icons-js/book-download.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookDownload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookDownload; \ No newline at end of file diff --git a/icons-react/icons-js/book-off.js b/icons-react/icons-js/book-off.js deleted file mode 100644 index 47b96e1a5..000000000 --- a/icons-react/icons-js/book-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookOff; \ No newline at end of file diff --git a/icons-react/icons-js/book-upload.js b/icons-react/icons-js/book-upload.js deleted file mode 100644 index cab9ae7fd..000000000 --- a/icons-react/icons-js/book-upload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookUpload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookUpload; \ No newline at end of file diff --git a/icons-react/icons-js/book.js b/icons-react/icons-js/book.js deleted file mode 100644 index 99d36508e..000000000 --- a/icons-react/icons-js/book.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBook; \ No newline at end of file diff --git a/icons-react/icons-js/bookmark-off.js b/icons-react/icons-js/bookmark-off.js deleted file mode 100644 index 1e632b7b6..000000000 --- a/icons-react/icons-js/bookmark-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookmarkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookmarkOff; \ No newline at end of file diff --git a/icons-react/icons-js/bookmark.js b/icons-react/icons-js/bookmark.js deleted file mode 100644 index 79b673ea8..000000000 --- a/icons-react/icons-js/bookmark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookmark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookmark; \ No newline at end of file diff --git a/icons-react/icons-js/bookmarks-off.js b/icons-react/icons-js/bookmarks-off.js deleted file mode 100644 index 2c39897c0..000000000 --- a/icons-react/icons-js/bookmarks-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookmarksOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookmarksOff; \ No newline at end of file diff --git a/icons-react/icons-js/bookmarks.js b/icons-react/icons-js/bookmarks.js deleted file mode 100644 index 825364021..000000000 --- a/icons-react/icons-js/bookmarks.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBookmarks({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBookmarks; \ No newline at end of file diff --git a/icons-react/icons-js/books-off.js b/icons-react/icons-js/books-off.js deleted file mode 100644 index b7e5bd337..000000000 --- a/icons-react/icons-js/books-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBooksOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBooksOff; \ No newline at end of file diff --git a/icons-react/icons-js/books.js b/icons-react/icons-js/books.js deleted file mode 100644 index ca2d072c7..000000000 --- a/icons-react/icons-js/books.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBooks({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBooks; \ No newline at end of file diff --git a/icons-react/icons-js/border-all.js b/icons-react/icons-js/border-all.js deleted file mode 100644 index fc293162d..000000000 --- a/icons-react/icons-js/border-all.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderAll({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderAll; \ No newline at end of file diff --git a/icons-react/icons-js/border-bottom.js b/icons-react/icons-js/border-bottom.js deleted file mode 100644 index d8bce524e..000000000 --- a/icons-react/icons-js/border-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderBottom; \ No newline at end of file diff --git a/icons-react/icons-js/border-horizontal.js b/icons-react/icons-js/border-horizontal.js deleted file mode 100644 index 7a9003ab4..000000000 --- a/icons-react/icons-js/border-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/border-inner.js b/icons-react/icons-js/border-inner.js deleted file mode 100644 index f822e60eb..000000000 --- a/icons-react/icons-js/border-inner.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderInner({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderInner; \ No newline at end of file diff --git a/icons-react/icons-js/border-left.js b/icons-react/icons-js/border-left.js deleted file mode 100644 index 24e4418fe..000000000 --- a/icons-react/icons-js/border-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderLeft; \ No newline at end of file diff --git a/icons-react/icons-js/border-none.js b/icons-react/icons-js/border-none.js deleted file mode 100644 index 6176e6b51..000000000 --- a/icons-react/icons-js/border-none.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderNone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderNone; \ No newline at end of file diff --git a/icons-react/icons-js/border-outer.js b/icons-react/icons-js/border-outer.js deleted file mode 100644 index a1685225c..000000000 --- a/icons-react/icons-js/border-outer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderOuter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderOuter; \ No newline at end of file diff --git a/icons-react/icons-js/border-radius.js b/icons-react/icons-js/border-radius.js deleted file mode 100644 index 3b421de8f..000000000 --- a/icons-react/icons-js/border-radius.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderRadius({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderRadius; \ No newline at end of file diff --git a/icons-react/icons-js/border-right.js b/icons-react/icons-js/border-right.js deleted file mode 100644 index 56c2dd0f7..000000000 --- a/icons-react/icons-js/border-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderRight; \ No newline at end of file diff --git a/icons-react/icons-js/border-style-2.js b/icons-react/icons-js/border-style-2.js deleted file mode 100644 index 68150e1e5..000000000 --- a/icons-react/icons-js/border-style-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderStyle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderStyle2; \ No newline at end of file diff --git a/icons-react/icons-js/border-style.js b/icons-react/icons-js/border-style.js deleted file mode 100644 index 9c1edf9a7..000000000 --- a/icons-react/icons-js/border-style.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderStyle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderStyle; \ No newline at end of file diff --git a/icons-react/icons-js/border-top.js b/icons-react/icons-js/border-top.js deleted file mode 100644 index 05befdfff..000000000 --- a/icons-react/icons-js/border-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderTop; \ No newline at end of file diff --git a/icons-react/icons-js/border-vertical.js b/icons-react/icons-js/border-vertical.js deleted file mode 100644 index 32853a4b6..000000000 --- a/icons-react/icons-js/border-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBorderVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBorderVertical; \ No newline at end of file diff --git a/icons-react/icons-js/bottle-off.js b/icons-react/icons-js/bottle-off.js deleted file mode 100644 index 4fe15bff7..000000000 --- a/icons-react/icons-js/bottle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBottleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBottleOff; \ No newline at end of file diff --git a/icons-react/icons-js/bottle.js b/icons-react/icons-js/bottle.js deleted file mode 100644 index 8559669cf..000000000 --- a/icons-react/icons-js/bottle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBottle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBottle; \ No newline at end of file diff --git a/icons-react/icons-js/bounce-left.js b/icons-react/icons-js/bounce-left.js deleted file mode 100644 index f1ccb6061..000000000 --- a/icons-react/icons-js/bounce-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBounceLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBounceLeft; \ No newline at end of file diff --git a/icons-react/icons-js/bounce-right.js b/icons-react/icons-js/bounce-right.js deleted file mode 100644 index eb29a946c..000000000 --- a/icons-react/icons-js/bounce-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBounceRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBounceRight; \ No newline at end of file diff --git a/icons-react/icons-js/bow.js b/icons-react/icons-js/bow.js deleted file mode 100644 index 041346136..000000000 --- a/icons-react/icons-js/bow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBow; \ No newline at end of file diff --git a/icons-react/icons-js/bowl.js b/icons-react/icons-js/bowl.js deleted file mode 100644 index 565f6ab71..000000000 --- a/icons-react/icons-js/bowl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBowl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBowl; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-bottom-left.js b/icons-react/icons-js/box-align-bottom-left.js deleted file mode 100644 index b16ea189f..000000000 --- a/icons-react/icons-js/box-align-bottom-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignBottomLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignBottomLeft; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-bottom-right.js b/icons-react/icons-js/box-align-bottom-right.js deleted file mode 100644 index 661ab577d..000000000 --- a/icons-react/icons-js/box-align-bottom-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignBottomRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignBottomRight; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-bottom.js b/icons-react/icons-js/box-align-bottom.js deleted file mode 100644 index 0d228033b..000000000 --- a/icons-react/icons-js/box-align-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignBottom; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-left.js b/icons-react/icons-js/box-align-left.js deleted file mode 100644 index 0259e8f91..000000000 --- a/icons-react/icons-js/box-align-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-right.js b/icons-react/icons-js/box-align-right.js deleted file mode 100644 index ddfc4642f..000000000 --- a/icons-react/icons-js/box-align-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignRight; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-top-left.js b/icons-react/icons-js/box-align-top-left.js deleted file mode 100644 index 0f3655ff9..000000000 --- a/icons-react/icons-js/box-align-top-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignTopLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignTopLeft; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-top-right.js b/icons-react/icons-js/box-align-top-right.js deleted file mode 100644 index bccda0dcf..000000000 --- a/icons-react/icons-js/box-align-top-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignTopRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignTopRight; \ No newline at end of file diff --git a/icons-react/icons-js/box-align-top.js b/icons-react/icons-js/box-align-top.js deleted file mode 100644 index 7fc95de15..000000000 --- a/icons-react/icons-js/box-align-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxAlignTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxAlignTop; \ No newline at end of file diff --git a/icons-react/icons-js/box-margin.js b/icons-react/icons-js/box-margin.js deleted file mode 100644 index eb0414104..000000000 --- a/icons-react/icons-js/box-margin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMargin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMargin; \ No newline at end of file diff --git a/icons-react/icons-js/box-model-2-off.js b/icons-react/icons-js/box-model-2-off.js deleted file mode 100644 index c6877ca98..000000000 --- a/icons-react/icons-js/box-model-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxModel2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxModel2Off; \ No newline at end of file diff --git a/icons-react/icons-js/box-model-2.js b/icons-react/icons-js/box-model-2.js deleted file mode 100644 index 128936569..000000000 --- a/icons-react/icons-js/box-model-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxModel2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxModel2; \ No newline at end of file diff --git a/icons-react/icons-js/box-model-off.js b/icons-react/icons-js/box-model-off.js deleted file mode 100644 index 94c667bfc..000000000 --- a/icons-react/icons-js/box-model-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxModelOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxModelOff; \ No newline at end of file diff --git a/icons-react/icons-js/box-model.js b/icons-react/icons-js/box-model.js deleted file mode 100644 index 110fd1529..000000000 --- a/icons-react/icons-js/box-model.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxModel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxModel; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-0.js b/icons-react/icons-js/box-multiple-0.js deleted file mode 100644 index 8650b71b7..000000000 --- a/icons-react/icons-js/box-multiple-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple0; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-1.js b/icons-react/icons-js/box-multiple-1.js deleted file mode 100644 index 9ad6defe7..000000000 --- a/icons-react/icons-js/box-multiple-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple1; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-2.js b/icons-react/icons-js/box-multiple-2.js deleted file mode 100644 index 131bba209..000000000 --- a/icons-react/icons-js/box-multiple-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple2; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-3.js b/icons-react/icons-js/box-multiple-3.js deleted file mode 100644 index b8065f2fe..000000000 --- a/icons-react/icons-js/box-multiple-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple3; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-4.js b/icons-react/icons-js/box-multiple-4.js deleted file mode 100644 index c07975f62..000000000 --- a/icons-react/icons-js/box-multiple-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple4; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-5.js b/icons-react/icons-js/box-multiple-5.js deleted file mode 100644 index 9c6c47d1e..000000000 --- a/icons-react/icons-js/box-multiple-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple5; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-6.js b/icons-react/icons-js/box-multiple-6.js deleted file mode 100644 index faeae72db..000000000 --- a/icons-react/icons-js/box-multiple-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple6; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-7.js b/icons-react/icons-js/box-multiple-7.js deleted file mode 100644 index 1fb7c4905..000000000 --- a/icons-react/icons-js/box-multiple-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple7; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-8.js b/icons-react/icons-js/box-multiple-8.js deleted file mode 100644 index f93a152d6..000000000 --- a/icons-react/icons-js/box-multiple-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple8; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple-9.js b/icons-react/icons-js/box-multiple-9.js deleted file mode 100644 index 2b4fa693e..000000000 --- a/icons-react/icons-js/box-multiple-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple9; \ No newline at end of file diff --git a/icons-react/icons-js/box-multiple.js b/icons-react/icons-js/box-multiple.js deleted file mode 100644 index 63fb784b4..000000000 --- a/icons-react/icons-js/box-multiple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxMultiple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxMultiple; \ No newline at end of file diff --git a/icons-react/icons-js/box-off.js b/icons-react/icons-js/box-off.js deleted file mode 100644 index a4178e099..000000000 --- a/icons-react/icons-js/box-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxOff; \ No newline at end of file diff --git a/icons-react/icons-js/box-padding.js b/icons-react/icons-js/box-padding.js deleted file mode 100644 index 8ccddd48f..000000000 --- a/icons-react/icons-js/box-padding.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxPadding({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxPadding; \ No newline at end of file diff --git a/icons-react/icons-js/box-seam.js b/icons-react/icons-js/box-seam.js deleted file mode 100644 index 645ffdbd0..000000000 --- a/icons-react/icons-js/box-seam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBoxSeam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBoxSeam; \ No newline at end of file diff --git a/icons-react/icons-js/box.js b/icons-react/icons-js/box.js deleted file mode 100644 index 697a29a74..000000000 --- a/icons-react/icons-js/box.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBox; \ No newline at end of file diff --git a/icons-react/icons-js/braces-asterix.js b/icons-react/icons-js/braces-asterix.js deleted file mode 100644 index b4100ea6e..000000000 --- a/icons-react/icons-js/braces-asterix.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracesAsterix({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracesAsterix; \ No newline at end of file diff --git a/icons-react/icons-js/braces-off.js b/icons-react/icons-js/braces-off.js deleted file mode 100644 index e60570c8e..000000000 --- a/icons-react/icons-js/braces-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracesOff; \ No newline at end of file diff --git a/icons-react/icons-js/braces.js b/icons-react/icons-js/braces.js deleted file mode 100644 index 6ba6ea1b9..000000000 --- a/icons-react/icons-js/braces.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBraces({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBraces; \ No newline at end of file diff --git a/icons-react/icons-js/brackets-contain-end.js b/icons-react/icons-js/brackets-contain-end.js deleted file mode 100644 index 03f12c0f7..000000000 --- a/icons-react/icons-js/brackets-contain-end.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracketsContainEnd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracketsContainEnd; \ No newline at end of file diff --git a/icons-react/icons-js/brackets-contain-start.js b/icons-react/icons-js/brackets-contain-start.js deleted file mode 100644 index 8ecd405f5..000000000 --- a/icons-react/icons-js/brackets-contain-start.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracketsContainStart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracketsContainStart; \ No newline at end of file diff --git a/icons-react/icons-js/brackets-contain.js b/icons-react/icons-js/brackets-contain.js deleted file mode 100644 index 5734dcdcb..000000000 --- a/icons-react/icons-js/brackets-contain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracketsContain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracketsContain; \ No newline at end of file diff --git a/icons-react/icons-js/brackets-off.js b/icons-react/icons-js/brackets-off.js deleted file mode 100644 index 4f4fc0473..000000000 --- a/icons-react/icons-js/brackets-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBracketsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBracketsOff; \ No newline at end of file diff --git a/icons-react/icons-js/brackets.js b/icons-react/icons-js/brackets.js deleted file mode 100644 index 343ea9449..000000000 --- a/icons-react/icons-js/brackets.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrackets({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrackets; \ No newline at end of file diff --git a/icons-react/icons-js/braile.js b/icons-react/icons-js/braile.js deleted file mode 100644 index 9a56240c4..000000000 --- a/icons-react/icons-js/braile.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBraile({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBraile; \ No newline at end of file diff --git a/icons-react/icons-js/brain.js b/icons-react/icons-js/brain.js deleted file mode 100644 index 35ced96e2..000000000 --- a/icons-react/icons-js/brain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrain; \ No newline at end of file diff --git a/icons-react/icons-js/brand-4chan.js b/icons-react/icons-js/brand-4chan.js deleted file mode 100644 index 50f45140f..000000000 --- a/icons-react/icons-js/brand-4chan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrand4chan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrand4chan; \ No newline at end of file diff --git a/icons-react/icons-js/brand-abstract.js b/icons-react/icons-js/brand-abstract.js deleted file mode 100644 index acdcf2dff..000000000 --- a/icons-react/icons-js/brand-abstract.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAbstract({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAbstract; \ No newline at end of file diff --git a/icons-react/icons-js/brand-adobe.js b/icons-react/icons-js/brand-adobe.js deleted file mode 100644 index 911cea1dc..000000000 --- a/icons-react/icons-js/brand-adobe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAdobe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAdobe; \ No newline at end of file diff --git a/icons-react/icons-js/brand-adonis-js.js b/icons-react/icons-js/brand-adonis-js.js deleted file mode 100644 index 1deab93df..000000000 --- a/icons-react/icons-js/brand-adonis-js.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAdonisJs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAdonisJs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-airbnb.js b/icons-react/icons-js/brand-airbnb.js deleted file mode 100644 index 2810b9a50..000000000 --- a/icons-react/icons-js/brand-airbnb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAirbnb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAirbnb; \ No newline at end of file diff --git a/icons-react/icons-js/brand-airtable.js b/icons-react/icons-js/brand-airtable.js deleted file mode 100644 index f85c3c29e..000000000 --- a/icons-react/icons-js/brand-airtable.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAirtable({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAirtable; \ No newline at end of file diff --git a/icons-react/icons-js/brand-albolia.js b/icons-react/icons-js/brand-albolia.js deleted file mode 100644 index dcb3f9a71..000000000 --- a/icons-react/icons-js/brand-albolia.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAlbolia({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAlbolia; \ No newline at end of file diff --git a/icons-react/icons-js/brand-algolia.js b/icons-react/icons-js/brand-algolia.js deleted file mode 100644 index cbc33b953..000000000 --- a/icons-react/icons-js/brand-algolia.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAlgolia({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAlgolia; \ No newline at end of file diff --git a/icons-react/icons-js/brand-alpine-js.js b/icons-react/icons-js/brand-alpine-js.js deleted file mode 100644 index 0484fc310..000000000 --- a/icons-react/icons-js/brand-alpine-js.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAlpineJs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAlpineJs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-amazon.js b/icons-react/icons-js/brand-amazon.js deleted file mode 100644 index dc079f8d9..000000000 --- a/icons-react/icons-js/brand-amazon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAmazon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAmazon; \ No newline at end of file diff --git a/icons-react/icons-js/brand-amd.js b/icons-react/icons-js/brand-amd.js deleted file mode 100644 index ca62e5163..000000000 --- a/icons-react/icons-js/brand-amd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAmd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAmd; \ No newline at end of file diff --git a/icons-react/icons-js/brand-amigo.js b/icons-react/icons-js/brand-amigo.js deleted file mode 100644 index f4944bcf7..000000000 --- a/icons-react/icons-js/brand-amigo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAmigo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAmigo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-amongus.js b/icons-react/icons-js/brand-amongus.js deleted file mode 100644 index 20624fd1e..000000000 --- a/icons-react/icons-js/brand-amongus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAmongus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAmongus; \ No newline at end of file diff --git a/icons-react/icons-js/brand-android.js b/icons-react/icons-js/brand-android.js deleted file mode 100644 index 3b011c22f..000000000 --- a/icons-react/icons-js/brand-android.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAndroid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAndroid; \ No newline at end of file diff --git a/icons-react/icons-js/brand-angular.js b/icons-react/icons-js/brand-angular.js deleted file mode 100644 index be11daa1f..000000000 --- a/icons-react/icons-js/brand-angular.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAngular({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAngular; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ao3.js b/icons-react/icons-js/brand-ao3.js deleted file mode 100644 index 3b9cd3d99..000000000 --- a/icons-react/icons-js/brand-ao3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAo3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAo3; \ No newline at end of file diff --git a/icons-react/icons-js/brand-appgallery.js b/icons-react/icons-js/brand-appgallery.js deleted file mode 100644 index 9390984a2..000000000 --- a/icons-react/icons-js/brand-appgallery.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAppgallery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAppgallery; \ No newline at end of file diff --git a/icons-react/icons-js/brand-apple-arcade.js b/icons-react/icons-js/brand-apple-arcade.js deleted file mode 100644 index 518eadc7b..000000000 --- a/icons-react/icons-js/brand-apple-arcade.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAppleArcade({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAppleArcade; \ No newline at end of file diff --git a/icons-react/icons-js/brand-apple-podcast.js b/icons-react/icons-js/brand-apple-podcast.js deleted file mode 100644 index 1f6d3192d..000000000 --- a/icons-react/icons-js/brand-apple-podcast.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandApplePodcast({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandApplePodcast; \ No newline at end of file diff --git a/icons-react/icons-js/brand-apple.js b/icons-react/icons-js/brand-apple.js deleted file mode 100644 index a88ec4a63..000000000 --- a/icons-react/icons-js/brand-apple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandApple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandApple; \ No newline at end of file diff --git a/icons-react/icons-js/brand-appstore.js b/icons-react/icons-js/brand-appstore.js deleted file mode 100644 index b59696238..000000000 --- a/icons-react/icons-js/brand-appstore.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAppstore({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAppstore; \ No newline at end of file diff --git a/icons-react/icons-js/brand-asana.js b/icons-react/icons-js/brand-asana.js deleted file mode 100644 index c35f07acf..000000000 --- a/icons-react/icons-js/brand-asana.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandAsana({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandAsana; \ No newline at end of file diff --git a/icons-react/icons-js/brand-backbone.js b/icons-react/icons-js/brand-backbone.js deleted file mode 100644 index 399ac23dd..000000000 --- a/icons-react/icons-js/brand-backbone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBackbone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBackbone; \ No newline at end of file diff --git a/icons-react/icons-js/brand-badoo.js b/icons-react/icons-js/brand-badoo.js deleted file mode 100644 index 805861b67..000000000 --- a/icons-react/icons-js/brand-badoo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBadoo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBadoo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-baidu.js b/icons-react/icons-js/brand-baidu.js deleted file mode 100644 index ae20500ee..000000000 --- a/icons-react/icons-js/brand-baidu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBaidu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBaidu; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bandcamp.js b/icons-react/icons-js/brand-bandcamp.js deleted file mode 100644 index f3956aeeb..000000000 --- a/icons-react/icons-js/brand-bandcamp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBandcamp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBandcamp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bandlab.js b/icons-react/icons-js/brand-bandlab.js deleted file mode 100644 index e8f847b4f..000000000 --- a/icons-react/icons-js/brand-bandlab.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBandlab({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBandlab; \ No newline at end of file diff --git a/icons-react/icons-js/brand-beats.js b/icons-react/icons-js/brand-beats.js deleted file mode 100644 index c64407215..000000000 --- a/icons-react/icons-js/brand-beats.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBeats({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBeats; \ No newline at end of file diff --git a/icons-react/icons-js/brand-behance.js b/icons-react/icons-js/brand-behance.js deleted file mode 100644 index a570d8695..000000000 --- a/icons-react/icons-js/brand-behance.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBehance({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBehance; \ No newline at end of file diff --git a/icons-react/icons-js/brand-binance.js b/icons-react/icons-js/brand-binance.js deleted file mode 100644 index 9d86207e9..000000000 --- a/icons-react/icons-js/brand-binance.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBinance({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBinance; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bing.js b/icons-react/icons-js/brand-bing.js deleted file mode 100644 index 5ed93c535..000000000 --- a/icons-react/icons-js/brand-bing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBing; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bitbucket.js b/icons-react/icons-js/brand-bitbucket.js deleted file mode 100644 index d5e5b5c13..000000000 --- a/icons-react/icons-js/brand-bitbucket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBitbucket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBitbucket; \ No newline at end of file diff --git a/icons-react/icons-js/brand-blackbery.js b/icons-react/icons-js/brand-blackbery.js deleted file mode 100644 index 6b236fb2a..000000000 --- a/icons-react/icons-js/brand-blackbery.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBlackbery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBlackbery; \ No newline at end of file diff --git a/icons-react/icons-js/brand-blender.js b/icons-react/icons-js/brand-blender.js deleted file mode 100644 index 95e1855cc..000000000 --- a/icons-react/icons-js/brand-blender.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBlender({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBlender; \ No newline at end of file diff --git a/icons-react/icons-js/brand-blogger.js b/icons-react/icons-js/brand-blogger.js deleted file mode 100644 index 5c5f4d177..000000000 --- a/icons-react/icons-js/brand-blogger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBlogger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBlogger; \ No newline at end of file diff --git a/icons-react/icons-js/brand-booking.js b/icons-react/icons-js/brand-booking.js deleted file mode 100644 index 6d2f3283f..000000000 --- a/icons-react/icons-js/brand-booking.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBooking({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBooking; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bootstrap.js b/icons-react/icons-js/brand-bootstrap.js deleted file mode 100644 index 522c203be..000000000 --- a/icons-react/icons-js/brand-bootstrap.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBootstrap({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBootstrap; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bulma.js b/icons-react/icons-js/brand-bulma.js deleted file mode 100644 index c0cc26833..000000000 --- a/icons-react/icons-js/brand-bulma.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBulma({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBulma; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bumble.js b/icons-react/icons-js/brand-bumble.js deleted file mode 100644 index 45587ee0b..000000000 --- a/icons-react/icons-js/brand-bumble.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBumble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBumble; \ No newline at end of file diff --git a/icons-react/icons-js/brand-bunpo.js b/icons-react/icons-js/brand-bunpo.js deleted file mode 100644 index 5c671fd5e..000000000 --- a/icons-react/icons-js/brand-bunpo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandBunpo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandBunpo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-campaignmonitor.js b/icons-react/icons-js/brand-campaignmonitor.js deleted file mode 100644 index 4e9c428cd..000000000 --- a/icons-react/icons-js/brand-campaignmonitor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCampaignmonitor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCampaignmonitor; \ No newline at end of file diff --git a/icons-react/icons-js/brand-carbon.js b/icons-react/icons-js/brand-carbon.js deleted file mode 100644 index 26c33a487..000000000 --- a/icons-react/icons-js/brand-carbon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCarbon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCarbon; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cashapp.js b/icons-react/icons-js/brand-cashapp.js deleted file mode 100644 index 7e5f66ec4..000000000 --- a/icons-react/icons-js/brand-cashapp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCashapp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCashapp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-chrome.js b/icons-react/icons-js/brand-chrome.js deleted file mode 100644 index 312420e0c..000000000 --- a/icons-react/icons-js/brand-chrome.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandChrome({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandChrome; \ No newline at end of file diff --git a/icons-react/icons-js/brand-citymapper.js b/icons-react/icons-js/brand-citymapper.js deleted file mode 100644 index 6048932a3..000000000 --- a/icons-react/icons-js/brand-citymapper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCitymapper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCitymapper; \ No newline at end of file diff --git a/icons-react/icons-js/brand-codecov.js b/icons-react/icons-js/brand-codecov.js deleted file mode 100644 index 8541c6b28..000000000 --- a/icons-react/icons-js/brand-codecov.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCodecov({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCodecov; \ No newline at end of file diff --git a/icons-react/icons-js/brand-codepen.js b/icons-react/icons-js/brand-codepen.js deleted file mode 100644 index e1a57867c..000000000 --- a/icons-react/icons-js/brand-codepen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCodepen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCodepen; \ No newline at end of file diff --git a/icons-react/icons-js/brand-codesandbox.js b/icons-react/icons-js/brand-codesandbox.js deleted file mode 100644 index 25085670d..000000000 --- a/icons-react/icons-js/brand-codesandbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCodesandbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCodesandbox; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cohost.js b/icons-react/icons-js/brand-cohost.js deleted file mode 100644 index e533956e9..000000000 --- a/icons-react/icons-js/brand-cohost.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCohost({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCohost; \ No newline at end of file diff --git a/icons-react/icons-js/brand-coinbase.js b/icons-react/icons-js/brand-coinbase.js deleted file mode 100644 index 11a461ea4..000000000 --- a/icons-react/icons-js/brand-coinbase.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCoinbase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCoinbase; \ No newline at end of file diff --git a/icons-react/icons-js/brand-comedy-central.js b/icons-react/icons-js/brand-comedy-central.js deleted file mode 100644 index 34ec44f0c..000000000 --- a/icons-react/icons-js/brand-comedy-central.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandComedyCentral({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandComedyCentral; \ No newline at end of file diff --git a/icons-react/icons-js/brand-coreos.js b/icons-react/icons-js/brand-coreos.js deleted file mode 100644 index 98622a986..000000000 --- a/icons-react/icons-js/brand-coreos.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCoreos({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCoreos; \ No newline at end of file diff --git a/icons-react/icons-js/brand-couchdb.js b/icons-react/icons-js/brand-couchdb.js deleted file mode 100644 index b9fbae99c..000000000 --- a/icons-react/icons-js/brand-couchdb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCouchdb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCouchdb; \ No newline at end of file diff --git a/icons-react/icons-js/brand-couchsurfing.js b/icons-react/icons-js/brand-couchsurfing.js deleted file mode 100644 index 8c6154c03..000000000 --- a/icons-react/icons-js/brand-couchsurfing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCouchsurfing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCouchsurfing; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cpp.js b/icons-react/icons-js/brand-cpp.js deleted file mode 100644 index f2151ff95..000000000 --- a/icons-react/icons-js/brand-cpp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCpp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCpp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-css3.js b/icons-react/icons-js/brand-css3.js deleted file mode 100644 index 7de028339..000000000 --- a/icons-react/icons-js/brand-css3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCss3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCss3; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ctemplar.js b/icons-react/icons-js/brand-ctemplar.js deleted file mode 100644 index 617c18b12..000000000 --- a/icons-react/icons-js/brand-ctemplar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCtemplar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCtemplar; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cucumber.js b/icons-react/icons-js/brand-cucumber.js deleted file mode 100644 index d9e170e50..000000000 --- a/icons-react/icons-js/brand-cucumber.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCucumber({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCucumber; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cupra.js b/icons-react/icons-js/brand-cupra.js deleted file mode 100644 index 62023484e..000000000 --- a/icons-react/icons-js/brand-cupra.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCupra({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCupra; \ No newline at end of file diff --git a/icons-react/icons-js/brand-cypress.js b/icons-react/icons-js/brand-cypress.js deleted file mode 100644 index 56d7dfc81..000000000 --- a/icons-react/icons-js/brand-cypress.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandCypress({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandCypress; \ No newline at end of file diff --git a/icons-react/icons-js/brand-d3.js b/icons-react/icons-js/brand-d3.js deleted file mode 100644 index 94bc20377..000000000 --- a/icons-react/icons-js/brand-d3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandD3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandD3; \ No newline at end of file diff --git a/icons-react/icons-js/brand-days-counter.js b/icons-react/icons-js/brand-days-counter.js deleted file mode 100644 index 84c4da1db..000000000 --- a/icons-react/icons-js/brand-days-counter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDaysCounter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDaysCounter; \ No newline at end of file diff --git a/icons-react/icons-js/brand-dcos.js b/icons-react/icons-js/brand-dcos.js deleted file mode 100644 index 2206f7315..000000000 --- a/icons-react/icons-js/brand-dcos.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDcos({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDcos; \ No newline at end of file diff --git a/icons-react/icons-js/brand-debian.js b/icons-react/icons-js/brand-debian.js deleted file mode 100644 index 037ab9304..000000000 --- a/icons-react/icons-js/brand-debian.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDebian({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDebian; \ No newline at end of file diff --git a/icons-react/icons-js/brand-deliveroo.js b/icons-react/icons-js/brand-deliveroo.js deleted file mode 100644 index 8b20eb662..000000000 --- a/icons-react/icons-js/brand-deliveroo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDeliveroo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDeliveroo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-deno.js b/icons-react/icons-js/brand-deno.js deleted file mode 100644 index dfc260b7b..000000000 --- a/icons-react/icons-js/brand-deno.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDeno({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDeno; \ No newline at end of file diff --git a/icons-react/icons-js/brand-denodo.js b/icons-react/icons-js/brand-denodo.js deleted file mode 100644 index 24c565ac3..000000000 --- a/icons-react/icons-js/brand-denodo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDenodo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDenodo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-deviantart.js b/icons-react/icons-js/brand-deviantart.js deleted file mode 100644 index 8657e5cef..000000000 --- a/icons-react/icons-js/brand-deviantart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDeviantart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDeviantart; \ No newline at end of file diff --git a/icons-react/icons-js/brand-dingtalk.js b/icons-react/icons-js/brand-dingtalk.js deleted file mode 100644 index b3aa7869e..000000000 --- a/icons-react/icons-js/brand-dingtalk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDingtalk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDingtalk; \ No newline at end of file diff --git a/icons-react/icons-js/brand-discord.js b/icons-react/icons-js/brand-discord.js deleted file mode 100644 index 8bb28201e..000000000 --- a/icons-react/icons-js/brand-discord.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDiscord({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDiscord; \ No newline at end of file diff --git a/icons-react/icons-js/brand-disney.js b/icons-react/icons-js/brand-disney.js deleted file mode 100644 index df65d8bab..000000000 --- a/icons-react/icons-js/brand-disney.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDisney({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDisney; \ No newline at end of file diff --git a/icons-react/icons-js/brand-disqus.js b/icons-react/icons-js/brand-disqus.js deleted file mode 100644 index 50cf7b63c..000000000 --- a/icons-react/icons-js/brand-disqus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDisqus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDisqus; \ No newline at end of file diff --git a/icons-react/icons-js/brand-django.js b/icons-react/icons-js/brand-django.js deleted file mode 100644 index af640faa6..000000000 --- a/icons-react/icons-js/brand-django.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDjango({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDjango; \ No newline at end of file diff --git a/icons-react/icons-js/brand-docker.js b/icons-react/icons-js/brand-docker.js deleted file mode 100644 index 3a7d677bc..000000000 --- a/icons-react/icons-js/brand-docker.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDocker({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDocker; \ No newline at end of file diff --git a/icons-react/icons-js/brand-doctrine.js b/icons-react/icons-js/brand-doctrine.js deleted file mode 100644 index ad8be7e17..000000000 --- a/icons-react/icons-js/brand-doctrine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDoctrine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDoctrine; \ No newline at end of file diff --git a/icons-react/icons-js/brand-dolby-digital.js b/icons-react/icons-js/brand-dolby-digital.js deleted file mode 100644 index 16faa5a12..000000000 --- a/icons-react/icons-js/brand-dolby-digital.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDolbyDigital({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDolbyDigital; \ No newline at end of file diff --git a/icons-react/icons-js/brand-douban.js b/icons-react/icons-js/brand-douban.js deleted file mode 100644 index ec994e489..000000000 --- a/icons-react/icons-js/brand-douban.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDouban({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDouban; \ No newline at end of file diff --git a/icons-react/icons-js/brand-dribbble.js b/icons-react/icons-js/brand-dribbble.js deleted file mode 100644 index 2d5d7aada..000000000 --- a/icons-react/icons-js/brand-dribbble.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDribbble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDribbble; \ No newline at end of file diff --git a/icons-react/icons-js/brand-drops.js b/icons-react/icons-js/brand-drops.js deleted file mode 100644 index 21da36ee0..000000000 --- a/icons-react/icons-js/brand-drops.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDrops({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDrops; \ No newline at end of file diff --git a/icons-react/icons-js/brand-drupal.js b/icons-react/icons-js/brand-drupal.js deleted file mode 100644 index adca8a19b..000000000 --- a/icons-react/icons-js/brand-drupal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandDrupal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandDrupal; \ No newline at end of file diff --git a/icons-react/icons-js/brand-edge.js b/icons-react/icons-js/brand-edge.js deleted file mode 100644 index 232a21cd2..000000000 --- a/icons-react/icons-js/brand-edge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandEdge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandEdge; \ No newline at end of file diff --git a/icons-react/icons-js/brand-elastic.js b/icons-react/icons-js/brand-elastic.js deleted file mode 100644 index 36b20a1bb..000000000 --- a/icons-react/icons-js/brand-elastic.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandElastic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandElastic; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ember.js b/icons-react/icons-js/brand-ember.js deleted file mode 100644 index fed1bf85c..000000000 --- a/icons-react/icons-js/brand-ember.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandEmber({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandEmber; \ No newline at end of file diff --git a/icons-react/icons-js/brand-envato.js b/icons-react/icons-js/brand-envato.js deleted file mode 100644 index f423a259b..000000000 --- a/icons-react/icons-js/brand-envato.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandEnvato({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandEnvato; \ No newline at end of file diff --git a/icons-react/icons-js/brand-etsy.js b/icons-react/icons-js/brand-etsy.js deleted file mode 100644 index 07a76367d..000000000 --- a/icons-react/icons-js/brand-etsy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandEtsy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandEtsy; \ No newline at end of file diff --git a/icons-react/icons-js/brand-evernote.js b/icons-react/icons-js/brand-evernote.js deleted file mode 100644 index 45a841acf..000000000 --- a/icons-react/icons-js/brand-evernote.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandEvernote({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandEvernote; \ No newline at end of file diff --git a/icons-react/icons-js/brand-facebook.js b/icons-react/icons-js/brand-facebook.js deleted file mode 100644 index 5ceda291e..000000000 --- a/icons-react/icons-js/brand-facebook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFacebook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFacebook; \ No newline at end of file diff --git a/icons-react/icons-js/brand-figma.js b/icons-react/icons-js/brand-figma.js deleted file mode 100644 index 782d952ac..000000000 --- a/icons-react/icons-js/brand-figma.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFigma({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFigma; \ No newline at end of file diff --git a/icons-react/icons-js/brand-finder.js b/icons-react/icons-js/brand-finder.js deleted file mode 100644 index 11f163f97..000000000 --- a/icons-react/icons-js/brand-finder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFinder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFinder; \ No newline at end of file diff --git a/icons-react/icons-js/brand-firebase.js b/icons-react/icons-js/brand-firebase.js deleted file mode 100644 index eaf938983..000000000 --- a/icons-react/icons-js/brand-firebase.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFirebase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFirebase; \ No newline at end of file diff --git a/icons-react/icons-js/brand-firefox.js b/icons-react/icons-js/brand-firefox.js deleted file mode 100644 index ffe0ab46d..000000000 --- a/icons-react/icons-js/brand-firefox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFirefox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFirefox; \ No newline at end of file diff --git a/icons-react/icons-js/brand-flickr.js b/icons-react/icons-js/brand-flickr.js deleted file mode 100644 index 713205b32..000000000 --- a/icons-react/icons-js/brand-flickr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFlickr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFlickr; \ No newline at end of file diff --git a/icons-react/icons-js/brand-flightradar24.js b/icons-react/icons-js/brand-flightradar24.js deleted file mode 100644 index bb5f315a7..000000000 --- a/icons-react/icons-js/brand-flightradar24.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFlightradar24({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFlightradar24; \ No newline at end of file diff --git a/icons-react/icons-js/brand-flipboard.js b/icons-react/icons-js/brand-flipboard.js deleted file mode 100644 index 4b08badb6..000000000 --- a/icons-react/icons-js/brand-flipboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFlipboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFlipboard; \ No newline at end of file diff --git a/icons-react/icons-js/brand-flutter.js b/icons-react/icons-js/brand-flutter.js deleted file mode 100644 index 278295c8d..000000000 --- a/icons-react/icons-js/brand-flutter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFlutter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFlutter; \ No newline at end of file diff --git a/icons-react/icons-js/brand-fortnite.js b/icons-react/icons-js/brand-fortnite.js deleted file mode 100644 index 0ba3fdf12..000000000 --- a/icons-react/icons-js/brand-fortnite.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFortnite({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFortnite; \ No newline at end of file diff --git a/icons-react/icons-js/brand-foursquare.js b/icons-react/icons-js/brand-foursquare.js deleted file mode 100644 index a644d7a56..000000000 --- a/icons-react/icons-js/brand-foursquare.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFoursquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFoursquare; \ No newline at end of file diff --git a/icons-react/icons-js/brand-framer.js b/icons-react/icons-js/brand-framer.js deleted file mode 100644 index 045bd87ff..000000000 --- a/icons-react/icons-js/brand-framer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFramer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFramer; \ No newline at end of file diff --git a/icons-react/icons-js/brand-funimation.js b/icons-react/icons-js/brand-funimation.js deleted file mode 100644 index 4275e803c..000000000 --- a/icons-react/icons-js/brand-funimation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandFunimation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandFunimation; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gatsby.js b/icons-react/icons-js/brand-gatsby.js deleted file mode 100644 index 53d16214c..000000000 --- a/icons-react/icons-js/brand-gatsby.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGatsby({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGatsby; \ No newline at end of file diff --git a/icons-react/icons-js/brand-git.js b/icons-react/icons-js/brand-git.js deleted file mode 100644 index a7e6061c6..000000000 --- a/icons-react/icons-js/brand-git.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-github-copilot.js b/icons-react/icons-js/brand-github-copilot.js deleted file mode 100644 index 462d8e1f6..000000000 --- a/icons-react/icons-js/brand-github-copilot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGithubCopilot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGithubCopilot; \ No newline at end of file diff --git a/icons-react/icons-js/brand-github.js b/icons-react/icons-js/brand-github.js deleted file mode 100644 index 9ce8c62ad..000000000 --- a/icons-react/icons-js/brand-github.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGithub({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGithub; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gitlab.js b/icons-react/icons-js/brand-gitlab.js deleted file mode 100644 index fd7bb02b5..000000000 --- a/icons-react/icons-js/brand-gitlab.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGitlab({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGitlab; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gmail.js b/icons-react/icons-js/brand-gmail.js deleted file mode 100644 index c053bbc49..000000000 --- a/icons-react/icons-js/brand-gmail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGmail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGmail; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-analytics.js b/icons-react/icons-js/brand-google-analytics.js deleted file mode 100644 index 39d4697c1..000000000 --- a/icons-react/icons-js/brand-google-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-big-query.js b/icons-react/icons-js/brand-google-big-query.js deleted file mode 100644 index 84c37bc02..000000000 --- a/icons-react/icons-js/brand-google-big-query.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleBigQuery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleBigQuery; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-drive.js b/icons-react/icons-js/brand-google-drive.js deleted file mode 100644 index fea1f65e2..000000000 --- a/icons-react/icons-js/brand-google-drive.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleDrive({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleDrive; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-fit.js b/icons-react/icons-js/brand-google-fit.js deleted file mode 100644 index 2989439fa..000000000 --- a/icons-react/icons-js/brand-google-fit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleFit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleFit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-home.js b/icons-react/icons-js/brand-google-home.js deleted file mode 100644 index 06dd68657..000000000 --- a/icons-react/icons-js/brand-google-home.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleHome({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleHome; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-one.js b/icons-react/icons-js/brand-google-one.js deleted file mode 100644 index 55baf6419..000000000 --- a/icons-react/icons-js/brand-google-one.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogleOne({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogleOne; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-photos.js b/icons-react/icons-js/brand-google-photos.js deleted file mode 100644 index da2ba8e9f..000000000 --- a/icons-react/icons-js/brand-google-photos.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGooglePhotos({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGooglePhotos; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-play.js b/icons-react/icons-js/brand-google-play.js deleted file mode 100644 index fdd42ec9a..000000000 --- a/icons-react/icons-js/brand-google-play.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGooglePlay({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGooglePlay; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-podcasts.js b/icons-react/icons-js/brand-google-podcasts.js deleted file mode 100644 index 1776fad0d..000000000 --- a/icons-react/icons-js/brand-google-podcasts.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGooglePodcasts({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGooglePodcasts; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google.js b/icons-react/icons-js/brand-google.js deleted file mode 100644 index ea2e916ba..000000000 --- a/icons-react/icons-js/brand-google.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGoogle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGoogle; \ No newline at end of file diff --git a/icons-react/icons-js/brand-grammarly.js b/icons-react/icons-js/brand-grammarly.js deleted file mode 100644 index 88b84f7d6..000000000 --- a/icons-react/icons-js/brand-grammarly.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGrammarly({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGrammarly; \ No newline at end of file diff --git a/icons-react/icons-js/brand-graphql.js b/icons-react/icons-js/brand-graphql.js deleted file mode 100644 index 9cd1121e3..000000000 --- a/icons-react/icons-js/brand-graphql.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGraphql({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGraphql; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gravatar.js b/icons-react/icons-js/brand-gravatar.js deleted file mode 100644 index 23bade79a..000000000 --- a/icons-react/icons-js/brand-gravatar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGravatar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGravatar; \ No newline at end of file diff --git a/icons-react/icons-js/brand-grindr.js b/icons-react/icons-js/brand-grindr.js deleted file mode 100644 index 57e8374fc..000000000 --- a/icons-react/icons-js/brand-grindr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGrindr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGrindr; \ No newline at end of file diff --git a/icons-react/icons-js/brand-guardian.js b/icons-react/icons-js/brand-guardian.js deleted file mode 100644 index 3cfb502a2..000000000 --- a/icons-react/icons-js/brand-guardian.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGuardian({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGuardian; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gumroad.js b/icons-react/icons-js/brand-gumroad.js deleted file mode 100644 index 5fc94c45b..000000000 --- a/icons-react/icons-js/brand-gumroad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandGumroad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandGumroad; \ No newline at end of file diff --git a/icons-react/icons-js/brand-hbo.js b/icons-react/icons-js/brand-hbo.js deleted file mode 100644 index 16c1ee312..000000000 --- a/icons-react/icons-js/brand-hbo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandHbo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandHbo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-headlessui.js b/icons-react/icons-js/brand-headlessui.js deleted file mode 100644 index d4c975722..000000000 --- a/icons-react/icons-js/brand-headlessui.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandHeadlessui({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandHeadlessui; \ No newline at end of file diff --git a/icons-react/icons-js/brand-hipchat.js b/icons-react/icons-js/brand-hipchat.js deleted file mode 100644 index 072384301..000000000 --- a/icons-react/icons-js/brand-hipchat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandHipchat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandHipchat; \ No newline at end of file diff --git a/icons-react/icons-js/brand-html5.js b/icons-react/icons-js/brand-html5.js deleted file mode 100644 index 428176d3e..000000000 --- a/icons-react/icons-js/brand-html5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandHtml5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandHtml5; \ No newline at end of file diff --git a/icons-react/icons-js/brand-inertia.js b/icons-react/icons-js/brand-inertia.js deleted file mode 100644 index 025686613..000000000 --- a/icons-react/icons-js/brand-inertia.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandInertia({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandInertia; \ No newline at end of file diff --git a/icons-react/icons-js/brand-instagram.js b/icons-react/icons-js/brand-instagram.js deleted file mode 100644 index d9ca16393..000000000 --- a/icons-react/icons-js/brand-instagram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandInstagram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandInstagram; \ No newline at end of file diff --git a/icons-react/icons-js/brand-intercom.js b/icons-react/icons-js/brand-intercom.js deleted file mode 100644 index 2f74b4a68..000000000 --- a/icons-react/icons-js/brand-intercom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandIntercom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandIntercom; \ No newline at end of file diff --git a/icons-react/icons-js/brand-javascript.js b/icons-react/icons-js/brand-javascript.js deleted file mode 100644 index 2368dff74..000000000 --- a/icons-react/icons-js/brand-javascript.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandJavascript({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandJavascript; \ No newline at end of file diff --git a/icons-react/icons-js/brand-kickstarter.js b/icons-react/icons-js/brand-kickstarter.js deleted file mode 100644 index 00b89c708..000000000 --- a/icons-react/icons-js/brand-kickstarter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandKickstarter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandKickstarter; \ No newline at end of file diff --git a/icons-react/icons-js/brand-kotlin.js b/icons-react/icons-js/brand-kotlin.js deleted file mode 100644 index d201a8c69..000000000 --- a/icons-react/icons-js/brand-kotlin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandKotlin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandKotlin; \ No newline at end of file diff --git a/icons-react/icons-js/brand-laravel.js b/icons-react/icons-js/brand-laravel.js deleted file mode 100644 index a698ad219..000000000 --- a/icons-react/icons-js/brand-laravel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLaravel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLaravel; \ No newline at end of file diff --git a/icons-react/icons-js/brand-lastfm.js b/icons-react/icons-js/brand-lastfm.js deleted file mode 100644 index 9387dcebe..000000000 --- a/icons-react/icons-js/brand-lastfm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLastfm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLastfm; \ No newline at end of file diff --git a/icons-react/icons-js/brand-linkedin.js b/icons-react/icons-js/brand-linkedin.js deleted file mode 100644 index bb7ea1d87..000000000 --- a/icons-react/icons-js/brand-linkedin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLinkedin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLinkedin; \ No newline at end of file diff --git a/icons-react/icons-js/brand-linktree.js b/icons-react/icons-js/brand-linktree.js deleted file mode 100644 index b2f77dd39..000000000 --- a/icons-react/icons-js/brand-linktree.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLinktree({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLinktree; \ No newline at end of file diff --git a/icons-react/icons-js/brand-linqpad.js b/icons-react/icons-js/brand-linqpad.js deleted file mode 100644 index 47022010e..000000000 --- a/icons-react/icons-js/brand-linqpad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLinqpad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLinqpad; \ No newline at end of file diff --git a/icons-react/icons-js/brand-loom.js b/icons-react/icons-js/brand-loom.js deleted file mode 100644 index ad3531db1..000000000 --- a/icons-react/icons-js/brand-loom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandLoom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandLoom; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mailgun.js b/icons-react/icons-js/brand-mailgun.js deleted file mode 100644 index e6dcccd93..000000000 --- a/icons-react/icons-js/brand-mailgun.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMailgun({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMailgun; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mantine.js b/icons-react/icons-js/brand-mantine.js deleted file mode 100644 index 678388410..000000000 --- a/icons-react/icons-js/brand-mantine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMantine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMantine; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mastercard.js b/icons-react/icons-js/brand-mastercard.js deleted file mode 100644 index 2121c224e..000000000 --- a/icons-react/icons-js/brand-mastercard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMastercard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMastercard; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mastodon.js b/icons-react/icons-js/brand-mastodon.js deleted file mode 100644 index 9db51275a..000000000 --- a/icons-react/icons-js/brand-mastodon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMastodon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMastodon; \ No newline at end of file diff --git a/icons-react/icons-js/brand-matrix.js b/icons-react/icons-js/brand-matrix.js deleted file mode 100644 index 4d71c0b4b..000000000 --- a/icons-react/icons-js/brand-matrix.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMatrix({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMatrix; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mcdonalds.js b/icons-react/icons-js/brand-mcdonalds.js deleted file mode 100644 index 04e6ad260..000000000 --- a/icons-react/icons-js/brand-mcdonalds.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMcdonalds({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMcdonalds; \ No newline at end of file diff --git a/icons-react/icons-js/brand-medium.js b/icons-react/icons-js/brand-medium.js deleted file mode 100644 index 7f9ce0721..000000000 --- a/icons-react/icons-js/brand-medium.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMedium({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMedium; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mercedes.js b/icons-react/icons-js/brand-mercedes.js deleted file mode 100644 index 5517929da..000000000 --- a/icons-react/icons-js/brand-mercedes.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMercedes({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMercedes; \ No newline at end of file diff --git a/icons-react/icons-js/brand-messenger.js b/icons-react/icons-js/brand-messenger.js deleted file mode 100644 index 5d240d974..000000000 --- a/icons-react/icons-js/brand-messenger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMessenger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMessenger; \ No newline at end of file diff --git a/icons-react/icons-js/brand-meta.js b/icons-react/icons-js/brand-meta.js deleted file mode 100644 index f091407ef..000000000 --- a/icons-react/icons-js/brand-meta.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMeta({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMeta; \ No newline at end of file diff --git a/icons-react/icons-js/brand-miniprogram.js b/icons-react/icons-js/brand-miniprogram.js deleted file mode 100644 index fd6af6290..000000000 --- a/icons-react/icons-js/brand-miniprogram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMiniprogram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMiniprogram; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mixpanel.js b/icons-react/icons-js/brand-mixpanel.js deleted file mode 100644 index dff32b6a6..000000000 --- a/icons-react/icons-js/brand-mixpanel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMixpanel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMixpanel; \ No newline at end of file diff --git a/icons-react/icons-js/brand-monday.js b/icons-react/icons-js/brand-monday.js deleted file mode 100644 index 135253c45..000000000 --- a/icons-react/icons-js/brand-monday.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMonday({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMonday; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mongodb.js b/icons-react/icons-js/brand-mongodb.js deleted file mode 100644 index bbd48da7e..000000000 --- a/icons-react/icons-js/brand-mongodb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMongodb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMongodb; \ No newline at end of file diff --git a/icons-react/icons-js/brand-my-oppo.js b/icons-react/icons-js/brand-my-oppo.js deleted file mode 100644 index 4ac6e717b..000000000 --- a/icons-react/icons-js/brand-my-oppo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMyOppo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMyOppo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-mysql.js b/icons-react/icons-js/brand-mysql.js deleted file mode 100644 index 7d871e02c..000000000 --- a/icons-react/icons-js/brand-mysql.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandMysql({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandMysql; \ No newline at end of file diff --git a/icons-react/icons-js/brand-national-geographic.js b/icons-react/icons-js/brand-national-geographic.js deleted file mode 100644 index 651619232..000000000 --- a/icons-react/icons-js/brand-national-geographic.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNationalGeographic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNationalGeographic; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nem.js b/icons-react/icons-js/brand-nem.js deleted file mode 100644 index a35cd5e29..000000000 --- a/icons-react/icons-js/brand-nem.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNem({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNem; \ No newline at end of file diff --git a/icons-react/icons-js/brand-netbeans.js b/icons-react/icons-js/brand-netbeans.js deleted file mode 100644 index eca771a99..000000000 --- a/icons-react/icons-js/brand-netbeans.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNetbeans({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNetbeans; \ No newline at end of file diff --git a/icons-react/icons-js/brand-netease-music.js b/icons-react/icons-js/brand-netease-music.js deleted file mode 100644 index 3344d2e39..000000000 --- a/icons-react/icons-js/brand-netease-music.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNeteaseMusic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNeteaseMusic; \ No newline at end of file diff --git a/icons-react/icons-js/brand-netflix.js b/icons-react/icons-js/brand-netflix.js deleted file mode 100644 index 406b608cd..000000000 --- a/icons-react/icons-js/brand-netflix.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNetflix({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNetflix; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nexo.js b/icons-react/icons-js/brand-nexo.js deleted file mode 100644 index 3b72850cc..000000000 --- a/icons-react/icons-js/brand-nexo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNexo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNexo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nextcloud.js b/icons-react/icons-js/brand-nextcloud.js deleted file mode 100644 index d950013fc..000000000 --- a/icons-react/icons-js/brand-nextcloud.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNextcloud({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNextcloud; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nextjs.js b/icons-react/icons-js/brand-nextjs.js deleted file mode 100644 index c7025236a..000000000 --- a/icons-react/icons-js/brand-nextjs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNextjs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNextjs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nord-vpn.js b/icons-react/icons-js/brand-nord-vpn.js deleted file mode 100644 index fbc324c97..000000000 --- a/icons-react/icons-js/brand-nord-vpn.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNordVpn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNordVpn; \ No newline at end of file diff --git a/icons-react/icons-js/brand-notion.js b/icons-react/icons-js/brand-notion.js deleted file mode 100644 index 26581afd2..000000000 --- a/icons-react/icons-js/brand-notion.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNotion({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNotion; \ No newline at end of file diff --git a/icons-react/icons-js/brand-npm.js b/icons-react/icons-js/brand-npm.js deleted file mode 100644 index c65b1e1c9..000000000 --- a/icons-react/icons-js/brand-npm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNpm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNpm; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nuxt.js b/icons-react/icons-js/brand-nuxt.js deleted file mode 100644 index 548b57ae6..000000000 --- a/icons-react/icons-js/brand-nuxt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNuxt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNuxt; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nytimes.js b/icons-react/icons-js/brand-nytimes.js deleted file mode 100644 index bf8512966..000000000 --- a/icons-react/icons-js/brand-nytimes.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandNytimes({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandNytimes; \ No newline at end of file diff --git a/icons-react/icons-js/brand-office.js b/icons-react/icons-js/brand-office.js deleted file mode 100644 index 4478f4b9d..000000000 --- a/icons-react/icons-js/brand-office.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOffice({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOffice; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ok-ru.js b/icons-react/icons-js/brand-ok-ru.js deleted file mode 100644 index be91f87df..000000000 --- a/icons-react/icons-js/brand-ok-ru.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOkRu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOkRu; \ No newline at end of file diff --git a/icons-react/icons-js/brand-onedrive.js b/icons-react/icons-js/brand-onedrive.js deleted file mode 100644 index 6441c53dd..000000000 --- a/icons-react/icons-js/brand-onedrive.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOnedrive({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOnedrive; \ No newline at end of file diff --git a/icons-react/icons-js/brand-onlyfans.js b/icons-react/icons-js/brand-onlyfans.js deleted file mode 100644 index b7a323e3e..000000000 --- a/icons-react/icons-js/brand-onlyfans.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOnlyfans({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOnlyfans; \ No newline at end of file diff --git a/icons-react/icons-js/brand-open-source.js b/icons-react/icons-js/brand-open-source.js deleted file mode 100644 index 07df2437d..000000000 --- a/icons-react/icons-js/brand-open-source.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOpenSource({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOpenSource; \ No newline at end of file diff --git a/icons-react/icons-js/brand-openvpn.js b/icons-react/icons-js/brand-openvpn.js deleted file mode 100644 index 192675233..000000000 --- a/icons-react/icons-js/brand-openvpn.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOpenvpn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOpenvpn; \ No newline at end of file diff --git a/icons-react/icons-js/brand-opera.js b/icons-react/icons-js/brand-opera.js deleted file mode 100644 index 0b3c0fb3b..000000000 --- a/icons-react/icons-js/brand-opera.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandOpera({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandOpera; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pagekit.js b/icons-react/icons-js/brand-pagekit.js deleted file mode 100644 index b5e59f85e..000000000 --- a/icons-react/icons-js/brand-pagekit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPagekit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPagekit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-patreon.js b/icons-react/icons-js/brand-patreon.js deleted file mode 100644 index d88d0a161..000000000 --- a/icons-react/icons-js/brand-patreon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPatreon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPatreon; \ No newline at end of file diff --git a/icons-react/icons-js/brand-paypal.js b/icons-react/icons-js/brand-paypal.js deleted file mode 100644 index f72fa2430..000000000 --- a/icons-react/icons-js/brand-paypal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPaypal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPaypal; \ No newline at end of file diff --git a/icons-react/icons-js/brand-paypay.js b/icons-react/icons-js/brand-paypay.js deleted file mode 100644 index 91e887a29..000000000 --- a/icons-react/icons-js/brand-paypay.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPaypay({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPaypay; \ No newline at end of file diff --git a/icons-react/icons-js/brand-peanut.js b/icons-react/icons-js/brand-peanut.js deleted file mode 100644 index 2c75dab23..000000000 --- a/icons-react/icons-js/brand-peanut.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPeanut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPeanut; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pepsi.js b/icons-react/icons-js/brand-pepsi.js deleted file mode 100644 index 7bf410dd3..000000000 --- a/icons-react/icons-js/brand-pepsi.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPepsi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPepsi; \ No newline at end of file diff --git a/icons-react/icons-js/brand-php.js b/icons-react/icons-js/brand-php.js deleted file mode 100644 index ed0bace84..000000000 --- a/icons-react/icons-js/brand-php.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPhp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPhp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-picsart.js b/icons-react/icons-js/brand-picsart.js deleted file mode 100644 index af5e82d05..000000000 --- a/icons-react/icons-js/brand-picsart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPicsart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPicsart; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pinterest.js b/icons-react/icons-js/brand-pinterest.js deleted file mode 100644 index ff637981e..000000000 --- a/icons-react/icons-js/brand-pinterest.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPinterest({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPinterest; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pocket.js b/icons-react/icons-js/brand-pocket.js deleted file mode 100644 index 8d07597e0..000000000 --- a/icons-react/icons-js/brand-pocket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPocket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPocket; \ No newline at end of file diff --git a/icons-react/icons-js/brand-polymer.js b/icons-react/icons-js/brand-polymer.js deleted file mode 100644 index d19d52ae7..000000000 --- a/icons-react/icons-js/brand-polymer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPolymer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPolymer; \ No newline at end of file diff --git a/icons-react/icons-js/brand-powershell.js b/icons-react/icons-js/brand-powershell.js deleted file mode 100644 index 38595e92f..000000000 --- a/icons-react/icons-js/brand-powershell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPowershell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPowershell; \ No newline at end of file diff --git a/icons-react/icons-js/brand-prisma.js b/icons-react/icons-js/brand-prisma.js deleted file mode 100644 index 55048876a..000000000 --- a/icons-react/icons-js/brand-prisma.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPrisma({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPrisma; \ No newline at end of file diff --git a/icons-react/icons-js/brand-producthunt.js b/icons-react/icons-js/brand-producthunt.js deleted file mode 100644 index 1f9cd5acf..000000000 --- a/icons-react/icons-js/brand-producthunt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandProducthunt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandProducthunt; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pushbullet.js b/icons-react/icons-js/brand-pushbullet.js deleted file mode 100644 index 52c717f4f..000000000 --- a/icons-react/icons-js/brand-pushbullet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPushbullet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPushbullet; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pushover.js b/icons-react/icons-js/brand-pushover.js deleted file mode 100644 index 447b69642..000000000 --- a/icons-react/icons-js/brand-pushover.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPushover({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPushover; \ No newline at end of file diff --git a/icons-react/icons-js/brand-python.js b/icons-react/icons-js/brand-python.js deleted file mode 100644 index 949fbf142..000000000 --- a/icons-react/icons-js/brand-python.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandPython({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandPython; \ No newline at end of file diff --git a/icons-react/icons-js/brand-qq.js b/icons-react/icons-js/brand-qq.js deleted file mode 100644 index b53be9c49..000000000 --- a/icons-react/icons-js/brand-qq.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandQq({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandQq; \ No newline at end of file diff --git a/icons-react/icons-js/brand-react-native.js b/icons-react/icons-js/brand-react-native.js deleted file mode 100644 index 71675fc90..000000000 --- a/icons-react/icons-js/brand-react-native.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandReactNative({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandReactNative; \ No newline at end of file diff --git a/icons-react/icons-js/brand-react.js b/icons-react/icons-js/brand-react.js deleted file mode 100644 index 5d68a4e7b..000000000 --- a/icons-react/icons-js/brand-react.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandReact({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandReact; \ No newline at end of file diff --git a/icons-react/icons-js/brand-reason.js b/icons-react/icons-js/brand-reason.js deleted file mode 100644 index 236b0695c..000000000 --- a/icons-react/icons-js/brand-reason.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandReason({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandReason; \ No newline at end of file diff --git a/icons-react/icons-js/brand-reddit.js b/icons-react/icons-js/brand-reddit.js deleted file mode 100644 index b469c60ea..000000000 --- a/icons-react/icons-js/brand-reddit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandReddit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandReddit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-redhat.js b/icons-react/icons-js/brand-redhat.js deleted file mode 100644 index edd316333..000000000 --- a/icons-react/icons-js/brand-redhat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandRedhat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandRedhat; \ No newline at end of file diff --git a/icons-react/icons-js/brand-redux.js b/icons-react/icons-js/brand-redux.js deleted file mode 100644 index ab0182f99..000000000 --- a/icons-react/icons-js/brand-redux.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandRedux({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandRedux; \ No newline at end of file diff --git a/icons-react/icons-js/brand-revolut.js b/icons-react/icons-js/brand-revolut.js deleted file mode 100644 index 57614af69..000000000 --- a/icons-react/icons-js/brand-revolut.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandRevolut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandRevolut; \ No newline at end of file diff --git a/icons-react/icons-js/brand-safari.js b/icons-react/icons-js/brand-safari.js deleted file mode 100644 index 51e1bf2ec..000000000 --- a/icons-react/icons-js/brand-safari.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSafari({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSafari; \ No newline at end of file diff --git a/icons-react/icons-js/brand-samsungpass.js b/icons-react/icons-js/brand-samsungpass.js deleted file mode 100644 index 5206d4012..000000000 --- a/icons-react/icons-js/brand-samsungpass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSamsungpass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSamsungpass; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sass.js b/icons-react/icons-js/brand-sass.js deleted file mode 100644 index 6ee6d91b0..000000000 --- a/icons-react/icons-js/brand-sass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSass; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sentry.js b/icons-react/icons-js/brand-sentry.js deleted file mode 100644 index 6dbc21d4c..000000000 --- a/icons-react/icons-js/brand-sentry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSentry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSentry; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sharik.js b/icons-react/icons-js/brand-sharik.js deleted file mode 100644 index 28eae4ee8..000000000 --- a/icons-react/icons-js/brand-sharik.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSharik({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSharik; \ No newline at end of file diff --git a/icons-react/icons-js/brand-shazam.js b/icons-react/icons-js/brand-shazam.js deleted file mode 100644 index 7696124ee..000000000 --- a/icons-react/icons-js/brand-shazam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandShazam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandShazam; \ No newline at end of file diff --git a/icons-react/icons-js/brand-shopee.js b/icons-react/icons-js/brand-shopee.js deleted file mode 100644 index 9be98453d..000000000 --- a/icons-react/icons-js/brand-shopee.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandShopee({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandShopee; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sketch.js b/icons-react/icons-js/brand-sketch.js deleted file mode 100644 index bd09c31f7..000000000 --- a/icons-react/icons-js/brand-sketch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSketch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSketch; \ No newline at end of file diff --git a/icons-react/icons-js/brand-skype.js b/icons-react/icons-js/brand-skype.js deleted file mode 100644 index 10db86fae..000000000 --- a/icons-react/icons-js/brand-skype.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSkype({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSkype; \ No newline at end of file diff --git a/icons-react/icons-js/brand-slack.js b/icons-react/icons-js/brand-slack.js deleted file mode 100644 index f2caca944..000000000 --- a/icons-react/icons-js/brand-slack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSlack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSlack; \ No newline at end of file diff --git a/icons-react/icons-js/brand-snapchat.js b/icons-react/icons-js/brand-snapchat.js deleted file mode 100644 index 7a8dd42eb..000000000 --- a/icons-react/icons-js/brand-snapchat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSnapchat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSnapchat; \ No newline at end of file diff --git a/icons-react/icons-js/brand-snapseed.js b/icons-react/icons-js/brand-snapseed.js deleted file mode 100644 index 1065ad906..000000000 --- a/icons-react/icons-js/brand-snapseed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSnapseed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSnapseed; \ No newline at end of file diff --git a/icons-react/icons-js/brand-snowflake.js b/icons-react/icons-js/brand-snowflake.js deleted file mode 100644 index ee049b682..000000000 --- a/icons-react/icons-js/brand-snowflake.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSnowflake({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSnowflake; \ No newline at end of file diff --git a/icons-react/icons-js/brand-socket-io.js b/icons-react/icons-js/brand-socket-io.js deleted file mode 100644 index 77eb9f841..000000000 --- a/icons-react/icons-js/brand-socket-io.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSocketIo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSocketIo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-solidjs.js b/icons-react/icons-js/brand-solidjs.js deleted file mode 100644 index 0172737d9..000000000 --- a/icons-react/icons-js/brand-solidjs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSolidjs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSolidjs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-soundcloud.js b/icons-react/icons-js/brand-soundcloud.js deleted file mode 100644 index bee3ae0b1..000000000 --- a/icons-react/icons-js/brand-soundcloud.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSoundcloud({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSoundcloud; \ No newline at end of file diff --git a/icons-react/icons-js/brand-spacehey.js b/icons-react/icons-js/brand-spacehey.js deleted file mode 100644 index b88f98d87..000000000 --- a/icons-react/icons-js/brand-spacehey.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSpacehey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSpacehey; \ No newline at end of file diff --git a/icons-react/icons-js/brand-spotify.js b/icons-react/icons-js/brand-spotify.js deleted file mode 100644 index df2288f0f..000000000 --- a/icons-react/icons-js/brand-spotify.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSpotify({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSpotify; \ No newline at end of file diff --git a/icons-react/icons-js/brand-stack-ofverflow.js b/icons-react/icons-js/brand-stack-ofverflow.js deleted file mode 100644 index 1c50b4bd5..000000000 --- a/icons-react/icons-js/brand-stack-ofverflow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStackOfverflow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStackOfverflow; \ No newline at end of file diff --git a/icons-react/icons-js/brand-stackoverflow.js b/icons-react/icons-js/brand-stackoverflow.js deleted file mode 100644 index c05863c4b..000000000 --- a/icons-react/icons-js/brand-stackoverflow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStackoverflow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStackoverflow; \ No newline at end of file diff --git a/icons-react/icons-js/brand-stackshare.js b/icons-react/icons-js/brand-stackshare.js deleted file mode 100644 index 53f441a39..000000000 --- a/icons-react/icons-js/brand-stackshare.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStackshare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStackshare; \ No newline at end of file diff --git a/icons-react/icons-js/brand-steam.js b/icons-react/icons-js/brand-steam.js deleted file mode 100644 index 9c5f458ef..000000000 --- a/icons-react/icons-js/brand-steam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSteam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSteam; \ No newline at end of file diff --git a/icons-react/icons-js/brand-storybook.js b/icons-react/icons-js/brand-storybook.js deleted file mode 100644 index 3e718122d..000000000 --- a/icons-react/icons-js/brand-storybook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStorybook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStorybook; \ No newline at end of file diff --git a/icons-react/icons-js/brand-storytel.js b/icons-react/icons-js/brand-storytel.js deleted file mode 100644 index d2e3ac7c5..000000000 --- a/icons-react/icons-js/brand-storytel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStorytel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStorytel; \ No newline at end of file diff --git a/icons-react/icons-js/brand-strava.js b/icons-react/icons-js/brand-strava.js deleted file mode 100644 index f94e1a487..000000000 --- a/icons-react/icons-js/brand-strava.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStrava({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStrava; \ No newline at end of file diff --git a/icons-react/icons-js/brand-stripe.js b/icons-react/icons-js/brand-stripe.js deleted file mode 100644 index 590c606f2..000000000 --- a/icons-react/icons-js/brand-stripe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandStripe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandStripe; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sublime-text.js b/icons-react/icons-js/brand-sublime-text.js deleted file mode 100644 index b9771d27e..000000000 --- a/icons-react/icons-js/brand-sublime-text.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSublimeText({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSublimeText; \ No newline at end of file diff --git a/icons-react/icons-js/brand-superhuman.js b/icons-react/icons-js/brand-superhuman.js deleted file mode 100644 index b1d1f5906..000000000 --- a/icons-react/icons-js/brand-superhuman.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSuperhuman({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSuperhuman; \ No newline at end of file diff --git a/icons-react/icons-js/brand-supernova.js b/icons-react/icons-js/brand-supernova.js deleted file mode 100644 index 9761487ff..000000000 --- a/icons-react/icons-js/brand-supernova.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSupernova({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSupernova; \ No newline at end of file diff --git a/icons-react/icons-js/brand-surfshark.js b/icons-react/icons-js/brand-surfshark.js deleted file mode 100644 index a331e22fe..000000000 --- a/icons-react/icons-js/brand-surfshark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSurfshark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSurfshark; \ No newline at end of file diff --git a/icons-react/icons-js/brand-svelte.js b/icons-react/icons-js/brand-svelte.js deleted file mode 100644 index 8cd5d92ae..000000000 --- a/icons-react/icons-js/brand-svelte.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSvelte({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSvelte; \ No newline at end of file diff --git a/icons-react/icons-js/brand-symfony.js b/icons-react/icons-js/brand-symfony.js deleted file mode 100644 index 8ac3140b1..000000000 --- a/icons-react/icons-js/brand-symfony.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandSymfony({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandSymfony; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tabler.js b/icons-react/icons-js/brand-tabler.js deleted file mode 100644 index 64dafeb0b..000000000 --- a/icons-react/icons-js/brand-tabler.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTabler({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTabler; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tailwind.js b/icons-react/icons-js/brand-tailwind.js deleted file mode 100644 index c3ca60e98..000000000 --- a/icons-react/icons-js/brand-tailwind.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTailwind({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTailwind; \ No newline at end of file diff --git a/icons-react/icons-js/brand-taobao.js b/icons-react/icons-js/brand-taobao.js deleted file mode 100644 index b368be62c..000000000 --- a/icons-react/icons-js/brand-taobao.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTaobao({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTaobao; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ted.js b/icons-react/icons-js/brand-ted.js deleted file mode 100644 index c4c78e9c7..000000000 --- a/icons-react/icons-js/brand-ted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTed; \ No newline at end of file diff --git a/icons-react/icons-js/brand-telegram.js b/icons-react/icons-js/brand-telegram.js deleted file mode 100644 index ac59b2f12..000000000 --- a/icons-react/icons-js/brand-telegram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTelegram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTelegram; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tether.js b/icons-react/icons-js/brand-tether.js deleted file mode 100644 index 6598ecd91..000000000 --- a/icons-react/icons-js/brand-tether.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTether({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTether; \ No newline at end of file diff --git a/icons-react/icons-js/brand-threejs.js b/icons-react/icons-js/brand-threejs.js deleted file mode 100644 index cec0bf67e..000000000 --- a/icons-react/icons-js/brand-threejs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandThreejs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandThreejs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tidal.js b/icons-react/icons-js/brand-tidal.js deleted file mode 100644 index 0328d7711..000000000 --- a/icons-react/icons-js/brand-tidal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTidal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTidal; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tiktok.js b/icons-react/icons-js/brand-tiktok.js deleted file mode 100644 index db19ef75c..000000000 --- a/icons-react/icons-js/brand-tiktok.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTiktok({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTiktok; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tinder.js b/icons-react/icons-js/brand-tinder.js deleted file mode 100644 index e4307e535..000000000 --- a/icons-react/icons-js/brand-tinder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTinder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTinder; \ No newline at end of file diff --git a/icons-react/icons-js/brand-topbuzz.js b/icons-react/icons-js/brand-topbuzz.js deleted file mode 100644 index 23dade466..000000000 --- a/icons-react/icons-js/brand-topbuzz.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTopbuzz({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTopbuzz; \ No newline at end of file diff --git a/icons-react/icons-js/brand-torchain.js b/icons-react/icons-js/brand-torchain.js deleted file mode 100644 index 8dc056a2c..000000000 --- a/icons-react/icons-js/brand-torchain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTorchain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTorchain; \ No newline at end of file diff --git a/icons-react/icons-js/brand-toyota.js b/icons-react/icons-js/brand-toyota.js deleted file mode 100644 index dcca2b349..000000000 --- a/icons-react/icons-js/brand-toyota.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandToyota({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandToyota; \ No newline at end of file diff --git a/icons-react/icons-js/brand-trello.js b/icons-react/icons-js/brand-trello.js deleted file mode 100644 index 37ef2a93b..000000000 --- a/icons-react/icons-js/brand-trello.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTrello({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTrello; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tripadvisor.js b/icons-react/icons-js/brand-tripadvisor.js deleted file mode 100644 index ff17fd19e..000000000 --- a/icons-react/icons-js/brand-tripadvisor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTripadvisor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTripadvisor; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tumblr.js b/icons-react/icons-js/brand-tumblr.js deleted file mode 100644 index 24a0ad80e..000000000 --- a/icons-react/icons-js/brand-tumblr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTumblr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTumblr; \ No newline at end of file diff --git a/icons-react/icons-js/brand-twilio.js b/icons-react/icons-js/brand-twilio.js deleted file mode 100644 index aa884fc7a..000000000 --- a/icons-react/icons-js/brand-twilio.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTwilio({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTwilio; \ No newline at end of file diff --git a/icons-react/icons-js/brand-twitch.js b/icons-react/icons-js/brand-twitch.js deleted file mode 100644 index bc4149f59..000000000 --- a/icons-react/icons-js/brand-twitch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTwitch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTwitch; \ No newline at end of file diff --git a/icons-react/icons-js/brand-twitter.js b/icons-react/icons-js/brand-twitter.js deleted file mode 100644 index bf21781ab..000000000 --- a/icons-react/icons-js/brand-twitter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTwitter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTwitter; \ No newline at end of file diff --git a/icons-react/icons-js/brand-typescript.js b/icons-react/icons-js/brand-typescript.js deleted file mode 100644 index 76c6430d6..000000000 --- a/icons-react/icons-js/brand-typescript.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandTypescript({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandTypescript; \ No newline at end of file diff --git a/icons-react/icons-js/brand-uber.js b/icons-react/icons-js/brand-uber.js deleted file mode 100644 index d49177849..000000000 --- a/icons-react/icons-js/brand-uber.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandUber({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandUber; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ubuntu.js b/icons-react/icons-js/brand-ubuntu.js deleted file mode 100644 index 006dea558..000000000 --- a/icons-react/icons-js/brand-ubuntu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandUbuntu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandUbuntu; \ No newline at end of file diff --git a/icons-react/icons-js/brand-unity.js b/icons-react/icons-js/brand-unity.js deleted file mode 100644 index 582701023..000000000 --- a/icons-react/icons-js/brand-unity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandUnity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandUnity; \ No newline at end of file diff --git a/icons-react/icons-js/brand-unsplash.js b/icons-react/icons-js/brand-unsplash.js deleted file mode 100644 index fc33f0afb..000000000 --- a/icons-react/icons-js/brand-unsplash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandUnsplash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandUnsplash; \ No newline at end of file diff --git a/icons-react/icons-js/brand-upwork.js b/icons-react/icons-js/brand-upwork.js deleted file mode 100644 index f4f29d640..000000000 --- a/icons-react/icons-js/brand-upwork.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandUpwork({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandUpwork; \ No newline at end of file diff --git a/icons-react/icons-js/brand-valorant.js b/icons-react/icons-js/brand-valorant.js deleted file mode 100644 index 9cace9ad0..000000000 --- a/icons-react/icons-js/brand-valorant.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandValorant({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandValorant; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vcypress.js b/icons-react/icons-js/brand-vcypress.js deleted file mode 100644 index 4f9effafd..000000000 --- a/icons-react/icons-js/brand-vcypress.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVcypress({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVcypress; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vercel.js b/icons-react/icons-js/brand-vercel.js deleted file mode 100644 index 9c9283138..000000000 --- a/icons-react/icons-js/brand-vercel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVercel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVercel; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vimeo.js b/icons-react/icons-js/brand-vimeo.js deleted file mode 100644 index 376e8f074..000000000 --- a/icons-react/icons-js/brand-vimeo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVimeo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVimeo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vinted.js b/icons-react/icons-js/brand-vinted.js deleted file mode 100644 index e86c8973a..000000000 --- a/icons-react/icons-js/brand-vinted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVinted({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVinted; \ No newline at end of file diff --git a/icons-react/icons-js/brand-visa.js b/icons-react/icons-js/brand-visa.js deleted file mode 100644 index f8f7b93a3..000000000 --- a/icons-react/icons-js/brand-visa.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVisa({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVisa; \ No newline at end of file diff --git a/icons-react/icons-js/brand-visual-studio.js b/icons-react/icons-js/brand-visual-studio.js deleted file mode 100644 index 4323a58cb..000000000 --- a/icons-react/icons-js/brand-visual-studio.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVisualStudio({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVisualStudio; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vite.js b/icons-react/icons-js/brand-vite.js deleted file mode 100644 index fcc4aa366..000000000 --- a/icons-react/icons-js/brand-vite.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVite({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVite; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vivaldi.js b/icons-react/icons-js/brand-vivaldi.js deleted file mode 100644 index 1f27f9794..000000000 --- a/icons-react/icons-js/brand-vivaldi.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVivaldi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVivaldi; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vk.js b/icons-react/icons-js/brand-vk.js deleted file mode 100644 index 24abb3f38..000000000 --- a/icons-react/icons-js/brand-vk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVk; \ No newline at end of file diff --git a/icons-react/icons-js/brand-volkswagen.js b/icons-react/icons-js/brand-volkswagen.js deleted file mode 100644 index feaf3670c..000000000 --- a/icons-react/icons-js/brand-volkswagen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVolkswagen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVolkswagen; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vsco.js b/icons-react/icons-js/brand-vsco.js deleted file mode 100644 index 814906cca..000000000 --- a/icons-react/icons-js/brand-vsco.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVsco({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVsco; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vscode.js b/icons-react/icons-js/brand-vscode.js deleted file mode 100644 index f6a51db17..000000000 --- a/icons-react/icons-js/brand-vscode.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVscode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVscode; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vue.js b/icons-react/icons-js/brand-vue.js deleted file mode 100644 index 5e40521bb..000000000 --- a/icons-react/icons-js/brand-vue.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandVue({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandVue; \ No newline at end of file diff --git a/icons-react/icons-js/brand-walmart.js b/icons-react/icons-js/brand-walmart.js deleted file mode 100644 index 94dd749a4..000000000 --- a/icons-react/icons-js/brand-walmart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWalmart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWalmart; \ No newline at end of file diff --git a/icons-react/icons-js/brand-waze.js b/icons-react/icons-js/brand-waze.js deleted file mode 100644 index 98b871aa0..000000000 --- a/icons-react/icons-js/brand-waze.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWaze({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWaze; \ No newline at end of file diff --git a/icons-react/icons-js/brand-webflow.js b/icons-react/icons-js/brand-webflow.js deleted file mode 100644 index 6c1201f61..000000000 --- a/icons-react/icons-js/brand-webflow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWebflow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWebflow; \ No newline at end of file diff --git a/icons-react/icons-js/brand-wechat.js b/icons-react/icons-js/brand-wechat.js deleted file mode 100644 index 831350954..000000000 --- a/icons-react/icons-js/brand-wechat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWechat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWechat; \ No newline at end of file diff --git a/icons-react/icons-js/brand-weibo.js b/icons-react/icons-js/brand-weibo.js deleted file mode 100644 index 8d69000c1..000000000 --- a/icons-react/icons-js/brand-weibo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWeibo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWeibo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-whatsapp.js b/icons-react/icons-js/brand-whatsapp.js deleted file mode 100644 index bad7a0ada..000000000 --- a/icons-react/icons-js/brand-whatsapp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWhatsapp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWhatsapp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-windows.js b/icons-react/icons-js/brand-windows.js deleted file mode 100644 index c6d2eed9e..000000000 --- a/icons-react/icons-js/brand-windows.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWindows({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWindows; \ No newline at end of file diff --git a/icons-react/icons-js/brand-windy.js b/icons-react/icons-js/brand-windy.js deleted file mode 100644 index cdda8cdc5..000000000 --- a/icons-react/icons-js/brand-windy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWindy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWindy; \ No newline at end of file diff --git a/icons-react/icons-js/brand-wish.js b/icons-react/icons-js/brand-wish.js deleted file mode 100644 index f7b7786a9..000000000 --- a/icons-react/icons-js/brand-wish.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWish({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWish; \ No newline at end of file diff --git a/icons-react/icons-js/brand-wix.js b/icons-react/icons-js/brand-wix.js deleted file mode 100644 index b06ea83ad..000000000 --- a/icons-react/icons-js/brand-wix.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWix({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWix; \ No newline at end of file diff --git a/icons-react/icons-js/brand-wordpress.js b/icons-react/icons-js/brand-wordpress.js deleted file mode 100644 index fa1d7e20a..000000000 --- a/icons-react/icons-js/brand-wordpress.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandWordpress({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandWordpress; \ No newline at end of file diff --git a/icons-react/icons-js/brand-xbox.js b/icons-react/icons-js/brand-xbox.js deleted file mode 100644 index 46bb1d459..000000000 --- a/icons-react/icons-js/brand-xbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandXbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandXbox; \ No newline at end of file diff --git a/icons-react/icons-js/brand-xing.js b/icons-react/icons-js/brand-xing.js deleted file mode 100644 index b93fd5f55..000000000 --- a/icons-react/icons-js/brand-xing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandXing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandXing; \ No newline at end of file diff --git a/icons-react/icons-js/brand-yahoo.js b/icons-react/icons-js/brand-yahoo.js deleted file mode 100644 index 638484ccc..000000000 --- a/icons-react/icons-js/brand-yahoo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandYahoo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandYahoo; \ No newline at end of file diff --git a/icons-react/icons-js/brand-yatse.js b/icons-react/icons-js/brand-yatse.js deleted file mode 100644 index 15a09a528..000000000 --- a/icons-react/icons-js/brand-yatse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandYatse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandYatse; \ No newline at end of file diff --git a/icons-react/icons-js/brand-ycombinator.js b/icons-react/icons-js/brand-ycombinator.js deleted file mode 100644 index 2b400d62e..000000000 --- a/icons-react/icons-js/brand-ycombinator.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandYcombinator({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandYcombinator; \ No newline at end of file diff --git a/icons-react/icons-js/brand-youtube-kids.js b/icons-react/icons-js/brand-youtube-kids.js deleted file mode 100644 index d14194197..000000000 --- a/icons-react/icons-js/brand-youtube-kids.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandYoutubeKids({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandYoutubeKids; \ No newline at end of file diff --git a/icons-react/icons-js/brand-youtube.js b/icons-react/icons-js/brand-youtube.js deleted file mode 100644 index 2620d791c..000000000 --- a/icons-react/icons-js/brand-youtube.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandYoutube({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandYoutube; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zalando.js b/icons-react/icons-js/brand-zalando.js deleted file mode 100644 index d9f5ec491..000000000 --- a/icons-react/icons-js/brand-zalando.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZalando({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZalando; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zapier.js b/icons-react/icons-js/brand-zapier.js deleted file mode 100644 index 49bfe12cf..000000000 --- a/icons-react/icons-js/brand-zapier.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZapier({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZapier; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zeit.js b/icons-react/icons-js/brand-zeit.js deleted file mode 100644 index 3b833b0b8..000000000 --- a/icons-react/icons-js/brand-zeit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZeit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZeit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zhihu.js b/icons-react/icons-js/brand-zhihu.js deleted file mode 100644 index bb685a30f..000000000 --- a/icons-react/icons-js/brand-zhihu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZhihu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZhihu; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zoom.js b/icons-react/icons-js/brand-zoom.js deleted file mode 100644 index 482701a14..000000000 --- a/icons-react/icons-js/brand-zoom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZoom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZoom; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zulip.js b/icons-react/icons-js/brand-zulip.js deleted file mode 100644 index f356cad98..000000000 --- a/icons-react/icons-js/brand-zulip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZulip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZulip; \ No newline at end of file diff --git a/icons-react/icons-js/brand-zwift.js b/icons-react/icons-js/brand-zwift.js deleted file mode 100644 index a22ffe840..000000000 --- a/icons-react/icons-js/brand-zwift.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrandZwift({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrandZwift; \ No newline at end of file diff --git a/icons-react/icons-js/bread-off.js b/icons-react/icons-js/bread-off.js deleted file mode 100644 index 642fce090..000000000 --- a/icons-react/icons-js/bread-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBreadOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBreadOff; \ No newline at end of file diff --git a/icons-react/icons-js/bread.js b/icons-react/icons-js/bread.js deleted file mode 100644 index c6dbd2d8b..000000000 --- a/icons-react/icons-js/bread.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBread({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBread; \ No newline at end of file diff --git a/icons-react/icons-js/briefcase-off.js b/icons-react/icons-js/briefcase-off.js deleted file mode 100644 index 216a28fd1..000000000 --- a/icons-react/icons-js/briefcase-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBriefcaseOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBriefcaseOff; \ No newline at end of file diff --git a/icons-react/icons-js/briefcase.js b/icons-react/icons-js/briefcase.js deleted file mode 100644 index cc45757f7..000000000 --- a/icons-react/icons-js/briefcase.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBriefcase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBriefcase; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-2.js b/icons-react/icons-js/brightness-2.js deleted file mode 100644 index f37443fa3..000000000 --- a/icons-react/icons-js/brightness-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightness2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightness2; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-down.js b/icons-react/icons-js/brightness-down.js deleted file mode 100644 index 32a3b590a..000000000 --- a/icons-react/icons-js/brightness-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightnessDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightnessDown; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-half.js b/icons-react/icons-js/brightness-half.js deleted file mode 100644 index 95fadca01..000000000 --- a/icons-react/icons-js/brightness-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightnessHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightnessHalf; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-off.js b/icons-react/icons-js/brightness-off.js deleted file mode 100644 index a01514835..000000000 --- a/icons-react/icons-js/brightness-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightnessOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightnessOff; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-up.js b/icons-react/icons-js/brightness-up.js deleted file mode 100644 index 3ed316ba6..000000000 --- a/icons-react/icons-js/brightness-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightnessUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightnessUp; \ No newline at end of file diff --git a/icons-react/icons-js/brightness.js b/icons-react/icons-js/brightness.js deleted file mode 100644 index 19a375985..000000000 --- a/icons-react/icons-js/brightness.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrightness({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrightness; \ No newline at end of file diff --git a/icons-react/icons-js/broadcast-off.js b/icons-react/icons-js/broadcast-off.js deleted file mode 100644 index 1bf91639f..000000000 --- a/icons-react/icons-js/broadcast-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBroadcastOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBroadcastOff; \ No newline at end of file diff --git a/icons-react/icons-js/broadcast.js b/icons-react/icons-js/broadcast.js deleted file mode 100644 index 25e4e08ce..000000000 --- a/icons-react/icons-js/broadcast.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBroadcast({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBroadcast; \ No newline at end of file diff --git a/icons-react/icons-js/browser-check.js b/icons-react/icons-js/browser-check.js deleted file mode 100644 index 079f327df..000000000 --- a/icons-react/icons-js/browser-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrowserCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrowserCheck; \ No newline at end of file diff --git a/icons-react/icons-js/browser-off.js b/icons-react/icons-js/browser-off.js deleted file mode 100644 index 19e2897ab..000000000 --- a/icons-react/icons-js/browser-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrowserOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrowserOff; \ No newline at end of file diff --git a/icons-react/icons-js/browser-plus.js b/icons-react/icons-js/browser-plus.js deleted file mode 100644 index 8c5b723ce..000000000 --- a/icons-react/icons-js/browser-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrowserPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrowserPlus; \ No newline at end of file diff --git a/icons-react/icons-js/browser-x.js b/icons-react/icons-js/browser-x.js deleted file mode 100644 index 28526a075..000000000 --- a/icons-react/icons-js/browser-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrowserX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrowserX; \ No newline at end of file diff --git a/icons-react/icons-js/browser.js b/icons-react/icons-js/browser.js deleted file mode 100644 index 8e82f0332..000000000 --- a/icons-react/icons-js/browser.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrowser({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrowser; \ No newline at end of file diff --git a/icons-react/icons-js/brush-off.js b/icons-react/icons-js/brush-off.js deleted file mode 100644 index 2f6e7e385..000000000 --- a/icons-react/icons-js/brush-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrushOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrushOff; \ No newline at end of file diff --git a/icons-react/icons-js/brush.js b/icons-react/icons-js/brush.js deleted file mode 100644 index 8afa40a84..000000000 --- a/icons-react/icons-js/brush.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBrush({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBrush; \ No newline at end of file diff --git a/icons-react/icons-js/bucket-droplet.js b/icons-react/icons-js/bucket-droplet.js deleted file mode 100644 index 11e28d4e3..000000000 --- a/icons-react/icons-js/bucket-droplet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBucketDroplet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBucketDroplet; \ No newline at end of file diff --git a/icons-react/icons-js/bucket-off.js b/icons-react/icons-js/bucket-off.js deleted file mode 100644 index 333562931..000000000 --- a/icons-react/icons-js/bucket-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBucketOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBucketOff; \ No newline at end of file diff --git a/icons-react/icons-js/bucket.js b/icons-react/icons-js/bucket.js deleted file mode 100644 index fec3d0c7f..000000000 --- a/icons-react/icons-js/bucket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBucket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBucket; \ No newline at end of file diff --git a/icons-react/icons-js/bug-off.js b/icons-react/icons-js/bug-off.js deleted file mode 100644 index f24f2ce33..000000000 --- a/icons-react/icons-js/bug-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBugOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBugOff; \ No newline at end of file diff --git a/icons-react/icons-js/bug.js b/icons-react/icons-js/bug.js deleted file mode 100644 index c5d8f3297..000000000 --- a/icons-react/icons-js/bug.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBug({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBug; \ No newline at end of file diff --git a/icons-react/icons-js/building-arch.js b/icons-react/icons-js/building-arch.js deleted file mode 100644 index b9c60a8ea..000000000 --- a/icons-react/icons-js/building-arch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingArch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingArch; \ No newline at end of file diff --git a/icons-react/icons-js/building-bank.js b/icons-react/icons-js/building-bank.js deleted file mode 100644 index aab7f9e9b..000000000 --- a/icons-react/icons-js/building-bank.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingBank({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingBank; \ No newline at end of file diff --git a/icons-react/icons-js/building-bridge-2.js b/icons-react/icons-js/building-bridge-2.js deleted file mode 100644 index aaad9564b..000000000 --- a/icons-react/icons-js/building-bridge-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingBridge2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingBridge2; \ No newline at end of file diff --git a/icons-react/icons-js/building-bridge.js b/icons-react/icons-js/building-bridge.js deleted file mode 100644 index 954dcc7dd..000000000 --- a/icons-react/icons-js/building-bridge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingBridge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingBridge; \ No newline at end of file diff --git a/icons-react/icons-js/building-broadcast-tower.js b/icons-react/icons-js/building-broadcast-tower.js deleted file mode 100644 index 6cac5eec6..000000000 --- a/icons-react/icons-js/building-broadcast-tower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingBroadcastTower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingBroadcastTower; \ No newline at end of file diff --git a/icons-react/icons-js/building-carousel.js b/icons-react/icons-js/building-carousel.js deleted file mode 100644 index 6f642943e..000000000 --- a/icons-react/icons-js/building-carousel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingCarousel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingCarousel; \ No newline at end of file diff --git a/icons-react/icons-js/building-castle.js b/icons-react/icons-js/building-castle.js deleted file mode 100644 index b7badde58..000000000 --- a/icons-react/icons-js/building-castle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingCastle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingCastle; \ No newline at end of file diff --git a/icons-react/icons-js/building-church.js b/icons-react/icons-js/building-church.js deleted file mode 100644 index 782b93e79..000000000 --- a/icons-react/icons-js/building-church.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingChurch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingChurch; \ No newline at end of file diff --git a/icons-react/icons-js/building-circus.js b/icons-react/icons-js/building-circus.js deleted file mode 100644 index 7efe53779..000000000 --- a/icons-react/icons-js/building-circus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingCircus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingCircus; \ No newline at end of file diff --git a/icons-react/icons-js/building-community.js b/icons-react/icons-js/building-community.js deleted file mode 100644 index 2cd6958dd..000000000 --- a/icons-react/icons-js/building-community.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingCommunity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingCommunity; \ No newline at end of file diff --git a/icons-react/icons-js/building-cottage.js b/icons-react/icons-js/building-cottage.js deleted file mode 100644 index 1d2af55f5..000000000 --- a/icons-react/icons-js/building-cottage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingCottage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingCottage; \ No newline at end of file diff --git a/icons-react/icons-js/building-estate.js b/icons-react/icons-js/building-estate.js deleted file mode 100644 index e7b6f83f9..000000000 --- a/icons-react/icons-js/building-estate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingEstate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingEstate; \ No newline at end of file diff --git a/icons-react/icons-js/building-factory-2.js b/icons-react/icons-js/building-factory-2.js deleted file mode 100644 index 437ac7872..000000000 --- a/icons-react/icons-js/building-factory-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingFactory2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingFactory2; \ No newline at end of file diff --git a/icons-react/icons-js/building-factory.js b/icons-react/icons-js/building-factory.js deleted file mode 100644 index dab2c8066..000000000 --- a/icons-react/icons-js/building-factory.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingFactory({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingFactory; \ No newline at end of file diff --git a/icons-react/icons-js/building-fortress.js b/icons-react/icons-js/building-fortress.js deleted file mode 100644 index b1a0fe6f2..000000000 --- a/icons-react/icons-js/building-fortress.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingFortress({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingFortress; \ No newline at end of file diff --git a/icons-react/icons-js/building-hospital.js b/icons-react/icons-js/building-hospital.js deleted file mode 100644 index 1bfc06573..000000000 --- a/icons-react/icons-js/building-hospital.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingHospital({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingHospital; \ No newline at end of file diff --git a/icons-react/icons-js/building-lighthouse.js b/icons-react/icons-js/building-lighthouse.js deleted file mode 100644 index cdf8e7423..000000000 --- a/icons-react/icons-js/building-lighthouse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingLighthouse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingLighthouse; \ No newline at end of file diff --git a/icons-react/icons-js/building-monument.js b/icons-react/icons-js/building-monument.js deleted file mode 100644 index d17838799..000000000 --- a/icons-react/icons-js/building-monument.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingMonument({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingMonument; \ No newline at end of file diff --git a/icons-react/icons-js/building-pavilon.js b/icons-react/icons-js/building-pavilon.js deleted file mode 100644 index ada89e58f..000000000 --- a/icons-react/icons-js/building-pavilon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingPavilon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingPavilon; \ No newline at end of file diff --git a/icons-react/icons-js/building-skyscraper.js b/icons-react/icons-js/building-skyscraper.js deleted file mode 100644 index dda35d79c..000000000 --- a/icons-react/icons-js/building-skyscraper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingSkyscraper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingSkyscraper; \ No newline at end of file diff --git a/icons-react/icons-js/building-stadium.js b/icons-react/icons-js/building-stadium.js deleted file mode 100644 index 6412eff7a..000000000 --- a/icons-react/icons-js/building-stadium.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingStadium({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingStadium; \ No newline at end of file diff --git a/icons-react/icons-js/building-store.js b/icons-react/icons-js/building-store.js deleted file mode 100644 index 94710fd4e..000000000 --- a/icons-react/icons-js/building-store.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingStore({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingStore; \ No newline at end of file diff --git a/icons-react/icons-js/building-tunnel.js b/icons-react/icons-js/building-tunnel.js deleted file mode 100644 index a2b993842..000000000 --- a/icons-react/icons-js/building-tunnel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingTunnel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingTunnel; \ No newline at end of file diff --git a/icons-react/icons-js/building-warehouse.js b/icons-react/icons-js/building-warehouse.js deleted file mode 100644 index 0c311c6b2..000000000 --- a/icons-react/icons-js/building-warehouse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingWarehouse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingWarehouse; \ No newline at end of file diff --git a/icons-react/icons-js/building-wind-turbine.js b/icons-react/icons-js/building-wind-turbine.js deleted file mode 100644 index c145c8f70..000000000 --- a/icons-react/icons-js/building-wind-turbine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuildingWindTurbine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuildingWindTurbine; \ No newline at end of file diff --git a/icons-react/icons-js/building.js b/icons-react/icons-js/building.js deleted file mode 100644 index f83e863fb..000000000 --- a/icons-react/icons-js/building.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuilding({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuilding; \ No newline at end of file diff --git a/icons-react/icons-js/bulb-off.js b/icons-react/icons-js/bulb-off.js deleted file mode 100644 index eb09c9538..000000000 --- a/icons-react/icons-js/bulb-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBulbOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBulbOff; \ No newline at end of file diff --git a/icons-react/icons-js/bulb.js b/icons-react/icons-js/bulb.js deleted file mode 100644 index 60711eb91..000000000 --- a/icons-react/icons-js/bulb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBulb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBulb; \ No newline at end of file diff --git a/icons-react/icons-js/buldozer.js b/icons-react/icons-js/buldozer.js deleted file mode 100644 index c499aab91..000000000 --- a/icons-react/icons-js/buldozer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBuldozer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBuldozer; \ No newline at end of file diff --git a/icons-react/icons-js/bulldozer.js b/icons-react/icons-js/bulldozer.js deleted file mode 100644 index c931e24c6..000000000 --- a/icons-react/icons-js/bulldozer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBulldozer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBulldozer; \ No newline at end of file diff --git a/icons-react/icons-js/bus-off.js b/icons-react/icons-js/bus-off.js deleted file mode 100644 index 25836155f..000000000 --- a/icons-react/icons-js/bus-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBusOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBusOff; \ No newline at end of file diff --git a/icons-react/icons-js/bus-stop.js b/icons-react/icons-js/bus-stop.js deleted file mode 100644 index aa42d492d..000000000 --- a/icons-react/icons-js/bus-stop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBusStop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBusStop; \ No newline at end of file diff --git a/icons-react/icons-js/bus.js b/icons-react/icons-js/bus.js deleted file mode 100644 index 37ec75b18..000000000 --- a/icons-react/icons-js/bus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBus; \ No newline at end of file diff --git a/icons-react/icons-js/businessplan.js b/icons-react/icons-js/businessplan.js deleted file mode 100644 index 9287f0781..000000000 --- a/icons-react/icons-js/businessplan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconBusinessplan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconBusinessplan; \ No newline at end of file diff --git a/icons-react/icons-js/butterfly.js b/icons-react/icons-js/butterfly.js deleted file mode 100644 index 6316021ca..000000000 --- a/icons-react/icons-js/butterfly.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconButterfly({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconButterfly; \ No newline at end of file diff --git a/icons-react/icons-js/c-sharp.js b/icons-react/icons-js/c-sharp.js deleted file mode 100644 index 3348a56a7..000000000 --- a/icons-react/icons-js/c-sharp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCSharp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCSharp; \ No newline at end of file diff --git a/icons-react/icons-js/cactus-off.js b/icons-react/icons-js/cactus-off.js deleted file mode 100644 index ca1ee0ae3..000000000 --- a/icons-react/icons-js/cactus-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCactusOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCactusOff; \ No newline at end of file diff --git a/icons-react/icons-js/cactus.js b/icons-react/icons-js/cactus.js deleted file mode 100644 index d21d884bf..000000000 --- a/icons-react/icons-js/cactus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCactus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCactus; \ No newline at end of file diff --git a/icons-react/icons-js/cake-off.js b/icons-react/icons-js/cake-off.js deleted file mode 100644 index 5cce02e96..000000000 --- a/icons-react/icons-js/cake-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCakeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCakeOff; \ No newline at end of file diff --git a/icons-react/icons-js/cake.js b/icons-react/icons-js/cake.js deleted file mode 100644 index 2a5af158e..000000000 --- a/icons-react/icons-js/cake.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCake({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCake; \ No newline at end of file diff --git a/icons-react/icons-js/calculator-off.js b/icons-react/icons-js/calculator-off.js deleted file mode 100644 index 87b90cc3b..000000000 --- a/icons-react/icons-js/calculator-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalculatorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalculatorOff; \ No newline at end of file diff --git a/icons-react/icons-js/calculator.js b/icons-react/icons-js/calculator.js deleted file mode 100644 index 2208cb34b..000000000 --- a/icons-react/icons-js/calculator.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalculator({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalculator; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-due.js b/icons-react/icons-js/calendar-due.js deleted file mode 100644 index e32ae3d14..000000000 --- a/icons-react/icons-js/calendar-due.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarDue({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarDue; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-event.js b/icons-react/icons-js/calendar-event.js deleted file mode 100644 index f0e0f7cb8..000000000 --- a/icons-react/icons-js/calendar-event.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarEvent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarEvent; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-minus.js b/icons-react/icons-js/calendar-minus.js deleted file mode 100644 index 627beba56..000000000 --- a/icons-react/icons-js/calendar-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarMinus; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-off.js b/icons-react/icons-js/calendar-off.js deleted file mode 100644 index c2e019c69..000000000 --- a/icons-react/icons-js/calendar-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarOff; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-plus.js b/icons-react/icons-js/calendar-plus.js deleted file mode 100644 index 20240ffef..000000000 --- a/icons-react/icons-js/calendar-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarPlus; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-stats.js b/icons-react/icons-js/calendar-stats.js deleted file mode 100644 index 9bd0fe4aa..000000000 --- a/icons-react/icons-js/calendar-stats.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarStats({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarStats; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-time.js b/icons-react/icons-js/calendar-time.js deleted file mode 100644 index d900f2fc6..000000000 --- a/icons-react/icons-js/calendar-time.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendarTime({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendarTime; \ No newline at end of file diff --git a/icons-react/icons-js/calendar.js b/icons-react/icons-js/calendar.js deleted file mode 100644 index d3ea7bdae..000000000 --- a/icons-react/icons-js/calendar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCalendar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCalendar; \ No newline at end of file diff --git a/icons-react/icons-js/camera-minus.js b/icons-react/icons-js/camera-minus.js deleted file mode 100644 index 36207663a..000000000 --- a/icons-react/icons-js/camera-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCameraMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCameraMinus; \ No newline at end of file diff --git a/icons-react/icons-js/camera-off.js b/icons-react/icons-js/camera-off.js deleted file mode 100644 index 474f90ff3..000000000 --- a/icons-react/icons-js/camera-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCameraOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCameraOff; \ No newline at end of file diff --git a/icons-react/icons-js/camera-plus.js b/icons-react/icons-js/camera-plus.js deleted file mode 100644 index e31b3eeed..000000000 --- a/icons-react/icons-js/camera-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCameraPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCameraPlus; \ No newline at end of file diff --git a/icons-react/icons-js/camera-rotate.js b/icons-react/icons-js/camera-rotate.js deleted file mode 100644 index 245bacacc..000000000 --- a/icons-react/icons-js/camera-rotate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCameraRotate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCameraRotate; \ No newline at end of file diff --git a/icons-react/icons-js/camera-selfie.js b/icons-react/icons-js/camera-selfie.js deleted file mode 100644 index 005bc9509..000000000 --- a/icons-react/icons-js/camera-selfie.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCameraSelfie({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCameraSelfie; \ No newline at end of file diff --git a/icons-react/icons-js/camera.js b/icons-react/icons-js/camera.js deleted file mode 100644 index 2ef5f6e84..000000000 --- a/icons-react/icons-js/camera.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCamera({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCamera; \ No newline at end of file diff --git a/icons-react/icons-js/campfire.js b/icons-react/icons-js/campfire.js deleted file mode 100644 index 40703ca1d..000000000 --- a/icons-react/icons-js/campfire.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCampfire({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCampfire; \ No newline at end of file diff --git a/icons-react/icons-js/candle.js b/icons-react/icons-js/candle.js deleted file mode 100644 index f51f41bc2..000000000 --- a/icons-react/icons-js/candle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCandle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCandle; \ No newline at end of file diff --git a/icons-react/icons-js/candy-off.js b/icons-react/icons-js/candy-off.js deleted file mode 100644 index 7ca087b2c..000000000 --- a/icons-react/icons-js/candy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCandyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCandyOff; \ No newline at end of file diff --git a/icons-react/icons-js/candy.js b/icons-react/icons-js/candy.js deleted file mode 100644 index da3fb936c..000000000 --- a/icons-react/icons-js/candy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCandy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCandy; \ No newline at end of file diff --git a/icons-react/icons-js/cane.js b/icons-react/icons-js/cane.js deleted file mode 100644 index 6f658d37b..000000000 --- a/icons-react/icons-js/cane.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCane({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCane; \ No newline at end of file diff --git a/icons-react/icons-js/cannabis.js b/icons-react/icons-js/cannabis.js deleted file mode 100644 index f73bc4f0e..000000000 --- a/icons-react/icons-js/cannabis.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCannabis({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCannabis; \ No newline at end of file diff --git a/icons-react/icons-js/capture-off.js b/icons-react/icons-js/capture-off.js deleted file mode 100644 index c97c3ac93..000000000 --- a/icons-react/icons-js/capture-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaptureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaptureOff; \ No newline at end of file diff --git a/icons-react/icons-js/capture.js b/icons-react/icons-js/capture.js deleted file mode 100644 index bb551ceec..000000000 --- a/icons-react/icons-js/capture.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCapture({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCapture; \ No newline at end of file diff --git a/icons-react/icons-js/car-crane.js b/icons-react/icons-js/car-crane.js deleted file mode 100644 index 686d9ef0a..000000000 --- a/icons-react/icons-js/car-crane.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarCrane({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarCrane; \ No newline at end of file diff --git a/icons-react/icons-js/car-crash.js b/icons-react/icons-js/car-crash.js deleted file mode 100644 index a06797875..000000000 --- a/icons-react/icons-js/car-crash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarCrash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarCrash; \ No newline at end of file diff --git a/icons-react/icons-js/car-off.js b/icons-react/icons-js/car-off.js deleted file mode 100644 index e04b6d562..000000000 --- a/icons-react/icons-js/car-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarOff; \ No newline at end of file diff --git a/icons-react/icons-js/car-turbine.js b/icons-react/icons-js/car-turbine.js deleted file mode 100644 index d0e03262f..000000000 --- a/icons-react/icons-js/car-turbine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarTurbine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarTurbine; \ No newline at end of file diff --git a/icons-react/icons-js/car.js b/icons-react/icons-js/car.js deleted file mode 100644 index a2661d5c7..000000000 --- a/icons-react/icons-js/car.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCar; \ No newline at end of file diff --git a/icons-react/icons-js/caravan.js b/icons-react/icons-js/caravan.js deleted file mode 100644 index 56bfeb525..000000000 --- a/icons-react/icons-js/caravan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaravan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaravan; \ No newline at end of file diff --git a/icons-react/icons-js/cardboards-off.js b/icons-react/icons-js/cardboards-off.js deleted file mode 100644 index 5c2e44d03..000000000 --- a/icons-react/icons-js/cardboards-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCardboardsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCardboardsOff; \ No newline at end of file diff --git a/icons-react/icons-js/cardboards.js b/icons-react/icons-js/cardboards.js deleted file mode 100644 index e11d45b74..000000000 --- a/icons-react/icons-js/cardboards.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCardboards({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCardboards; \ No newline at end of file diff --git a/icons-react/icons-js/cards.js b/icons-react/icons-js/cards.js deleted file mode 100644 index 3d400ea02..000000000 --- a/icons-react/icons-js/cards.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCards({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCards; \ No newline at end of file diff --git a/icons-react/icons-js/caret-down.js b/icons-react/icons-js/caret-down.js deleted file mode 100644 index 218892a91..000000000 --- a/icons-react/icons-js/caret-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaretDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaretDown; \ No newline at end of file diff --git a/icons-react/icons-js/caret-left.js b/icons-react/icons-js/caret-left.js deleted file mode 100644 index 489c55b5b..000000000 --- a/icons-react/icons-js/caret-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaretLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaretLeft; \ No newline at end of file diff --git a/icons-react/icons-js/caret-right.js b/icons-react/icons-js/caret-right.js deleted file mode 100644 index 75979f2c3..000000000 --- a/icons-react/icons-js/caret-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaretRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaretRight; \ No newline at end of file diff --git a/icons-react/icons-js/caret-up.js b/icons-react/icons-js/caret-up.js deleted file mode 100644 index f67730e95..000000000 --- a/icons-react/icons-js/caret-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCaretUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCaretUp; \ No newline at end of file diff --git a/icons-react/icons-js/carousel-horizontal.js b/icons-react/icons-js/carousel-horizontal.js deleted file mode 100644 index b13d6b570..000000000 --- a/icons-react/icons-js/carousel-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarouselHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarouselHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/carousel-vertical.js b/icons-react/icons-js/carousel-vertical.js deleted file mode 100644 index 40941ce5c..000000000 --- a/icons-react/icons-js/carousel-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarouselVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarouselVertical; \ No newline at end of file diff --git a/icons-react/icons-js/carrot-off.js b/icons-react/icons-js/carrot-off.js deleted file mode 100644 index 84621597e..000000000 --- a/icons-react/icons-js/carrot-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarrotOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarrotOff; \ No newline at end of file diff --git a/icons-react/icons-js/carrot.js b/icons-react/icons-js/carrot.js deleted file mode 100644 index 9f8aa9459..000000000 --- a/icons-react/icons-js/carrot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCarrot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCarrot; \ No newline at end of file diff --git a/icons-react/icons-js/cash-banknote-off.js b/icons-react/icons-js/cash-banknote-off.js deleted file mode 100644 index 4bb26327e..000000000 --- a/icons-react/icons-js/cash-banknote-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCashBanknoteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCashBanknoteOff; \ No newline at end of file diff --git a/icons-react/icons-js/cash-banknote.js b/icons-react/icons-js/cash-banknote.js deleted file mode 100644 index dc67ebe47..000000000 --- a/icons-react/icons-js/cash-banknote.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCashBanknote({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCashBanknote; \ No newline at end of file diff --git a/icons-react/icons-js/cash-off.js b/icons-react/icons-js/cash-off.js deleted file mode 100644 index d526906f0..000000000 --- a/icons-react/icons-js/cash-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCashOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCashOff; \ No newline at end of file diff --git a/icons-react/icons-js/cash.js b/icons-react/icons-js/cash.js deleted file mode 100644 index 4ba9eeef0..000000000 --- a/icons-react/icons-js/cash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCash; \ No newline at end of file diff --git a/icons-react/icons-js/cast-off.js b/icons-react/icons-js/cast-off.js deleted file mode 100644 index 9c243e62d..000000000 --- a/icons-react/icons-js/cast-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCastOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCastOff; \ No newline at end of file diff --git a/icons-react/icons-js/cast.js b/icons-react/icons-js/cast.js deleted file mode 100644 index 290dec764..000000000 --- a/icons-react/icons-js/cast.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCast({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCast; \ No newline at end of file diff --git a/icons-react/icons-js/cat.js b/icons-react/icons-js/cat.js deleted file mode 100644 index 861ec1e7a..000000000 --- a/icons-react/icons-js/cat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCat; \ No newline at end of file diff --git a/icons-react/icons-js/category-2.js b/icons-react/icons-js/category-2.js deleted file mode 100644 index 8e01e8ca8..000000000 --- a/icons-react/icons-js/category-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCategory2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCategory2; \ No newline at end of file diff --git a/icons-react/icons-js/category.js b/icons-react/icons-js/category.js deleted file mode 100644 index e28ff8ec2..000000000 --- a/icons-react/icons-js/category.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCategory({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCategory; \ No newline at end of file diff --git a/icons-react/icons-js/ce-off.js b/icons-react/icons-js/ce-off.js deleted file mode 100644 index 64213cb15..000000000 --- a/icons-react/icons-js/ce-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCeOff; \ No newline at end of file diff --git a/icons-react/icons-js/ce.js b/icons-react/icons-js/ce.js deleted file mode 100644 index d66d9216c..000000000 --- a/icons-react/icons-js/ce.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCe; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-1.js b/icons-react/icons-js/cell-signal-1.js deleted file mode 100644 index a78c019b1..000000000 --- a/icons-react/icons-js/cell-signal-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignal1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignal1; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-2.js b/icons-react/icons-js/cell-signal-2.js deleted file mode 100644 index e6291fe75..000000000 --- a/icons-react/icons-js/cell-signal-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignal2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignal2; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-3.js b/icons-react/icons-js/cell-signal-3.js deleted file mode 100644 index 764d53402..000000000 --- a/icons-react/icons-js/cell-signal-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignal3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignal3; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-4.js b/icons-react/icons-js/cell-signal-4.js deleted file mode 100644 index 6b27cb8ae..000000000 --- a/icons-react/icons-js/cell-signal-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignal4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignal4; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-5.js b/icons-react/icons-js/cell-signal-5.js deleted file mode 100644 index 336a2c6f2..000000000 --- a/icons-react/icons-js/cell-signal-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignal5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignal5; \ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-off.js b/icons-react/icons-js/cell-signal-off.js deleted file mode 100644 index 9651211e3..000000000 --- a/icons-react/icons-js/cell-signal-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCellSignalOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCellSignalOff; \ No newline at end of file diff --git a/icons-react/icons-js/cell.js b/icons-react/icons-js/cell.js deleted file mode 100644 index cc020d5af..000000000 --- a/icons-react/icons-js/cell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCell; \ No newline at end of file diff --git a/icons-react/icons-js/certificate-2-off.js b/icons-react/icons-js/certificate-2-off.js deleted file mode 100644 index 60b0fd08a..000000000 --- a/icons-react/icons-js/certificate-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCertificate2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCertificate2Off; \ No newline at end of file diff --git a/icons-react/icons-js/certificate-2.js b/icons-react/icons-js/certificate-2.js deleted file mode 100644 index 23ad202fd..000000000 --- a/icons-react/icons-js/certificate-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCertificate2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCertificate2; \ No newline at end of file diff --git a/icons-react/icons-js/certificate-off.js b/icons-react/icons-js/certificate-off.js deleted file mode 100644 index f4a5c4e2e..000000000 --- a/icons-react/icons-js/certificate-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCertificateOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCertificateOff; \ No newline at end of file diff --git a/icons-react/icons-js/certificate.js b/icons-react/icons-js/certificate.js deleted file mode 100644 index cd925fe5f..000000000 --- a/icons-react/icons-js/certificate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCertificate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCertificate; \ No newline at end of file diff --git a/icons-react/icons-js/chair-director.js b/icons-react/icons-js/chair-director.js deleted file mode 100644 index fe67b5e51..000000000 --- a/icons-react/icons-js/chair-director.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChairDirector({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChairDirector; \ No newline at end of file diff --git a/icons-react/icons-js/chalkboard-off.js b/icons-react/icons-js/chalkboard-off.js deleted file mode 100644 index 36d4d742f..000000000 --- a/icons-react/icons-js/chalkboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChalkboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChalkboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/chalkboard.js b/icons-react/icons-js/chalkboard.js deleted file mode 100644 index 09c8f5697..000000000 --- a/icons-react/icons-js/chalkboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChalkboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChalkboard; \ No newline at end of file diff --git a/icons-react/icons-js/charging-pile.js b/icons-react/icons-js/charging-pile.js deleted file mode 100644 index bf6b4a104..000000000 --- a/icons-react/icons-js/charging-pile.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChargingPile({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChargingPile; \ No newline at end of file diff --git a/icons-react/icons-js/chart-arcs-3.js b/icons-react/icons-js/chart-arcs-3.js deleted file mode 100644 index 0d7709b16..000000000 --- a/icons-react/icons-js/chart-arcs-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartArcs3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartArcs3; \ No newline at end of file diff --git a/icons-react/icons-js/chart-arcs.js b/icons-react/icons-js/chart-arcs.js deleted file mode 100644 index 54eee886a..000000000 --- a/icons-react/icons-js/chart-arcs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartArcs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartArcs; \ No newline at end of file diff --git a/icons-react/icons-js/chart-area-line.js b/icons-react/icons-js/chart-area-line.js deleted file mode 100644 index 50bb22ef1..000000000 --- a/icons-react/icons-js/chart-area-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartAreaLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartAreaLine; \ No newline at end of file diff --git a/icons-react/icons-js/chart-area.js b/icons-react/icons-js/chart-area.js deleted file mode 100644 index bc0f6cfbc..000000000 --- a/icons-react/icons-js/chart-area.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartArea({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartArea; \ No newline at end of file diff --git a/icons-react/icons-js/chart-arrows-vertical.js b/icons-react/icons-js/chart-arrows-vertical.js deleted file mode 100644 index ce56c3052..000000000 --- a/icons-react/icons-js/chart-arrows-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartArrowsVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartArrowsVertical; \ No newline at end of file diff --git a/icons-react/icons-js/chart-arrows.js b/icons-react/icons-js/chart-arrows.js deleted file mode 100644 index 4dc604072..000000000 --- a/icons-react/icons-js/chart-arrows.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartArrows({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartArrows; \ No newline at end of file diff --git a/icons-react/icons-js/chart-bar-off.js b/icons-react/icons-js/chart-bar-off.js deleted file mode 100644 index d9a5f6f42..000000000 --- a/icons-react/icons-js/chart-bar-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartBarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartBarOff; \ No newline at end of file diff --git a/icons-react/icons-js/chart-bar.js b/icons-react/icons-js/chart-bar.js deleted file mode 100644 index 352866de9..000000000 --- a/icons-react/icons-js/chart-bar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartBar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartBar; \ No newline at end of file diff --git a/icons-react/icons-js/chart-bubble.js b/icons-react/icons-js/chart-bubble.js deleted file mode 100644 index 0afe0ac43..000000000 --- a/icons-react/icons-js/chart-bubble.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartBubble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartBubble; \ No newline at end of file diff --git a/icons-react/icons-js/chart-candle.js b/icons-react/icons-js/chart-candle.js deleted file mode 100644 index 0eb748331..000000000 --- a/icons-react/icons-js/chart-candle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartCandle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartCandle; \ No newline at end of file diff --git a/icons-react/icons-js/chart-circles.js b/icons-react/icons-js/chart-circles.js deleted file mode 100644 index deb8ea758..000000000 --- a/icons-react/icons-js/chart-circles.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartCircles({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartCircles; \ No newline at end of file diff --git a/icons-react/icons-js/chart-donut-2.js b/icons-react/icons-js/chart-donut-2.js deleted file mode 100644 index f93c64694..000000000 --- a/icons-react/icons-js/chart-donut-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDonut2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDonut2; \ No newline at end of file diff --git a/icons-react/icons-js/chart-donut-3.js b/icons-react/icons-js/chart-donut-3.js deleted file mode 100644 index 19662aec3..000000000 --- a/icons-react/icons-js/chart-donut-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDonut3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDonut3; \ No newline at end of file diff --git a/icons-react/icons-js/chart-donut-4.js b/icons-react/icons-js/chart-donut-4.js deleted file mode 100644 index ef815584d..000000000 --- a/icons-react/icons-js/chart-donut-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDonut4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDonut4; \ No newline at end of file diff --git a/icons-react/icons-js/chart-donut.js b/icons-react/icons-js/chart-donut.js deleted file mode 100644 index b702b3e96..000000000 --- a/icons-react/icons-js/chart-donut.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDonut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDonut; \ No newline at end of file diff --git a/icons-react/icons-js/chart-dots-2.js b/icons-react/icons-js/chart-dots-2.js deleted file mode 100644 index ae3c8fe03..000000000 --- a/icons-react/icons-js/chart-dots-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDots2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDots2; \ No newline at end of file diff --git a/icons-react/icons-js/chart-dots-3.js b/icons-react/icons-js/chart-dots-3.js deleted file mode 100644 index e2fbb41fa..000000000 --- a/icons-react/icons-js/chart-dots-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDots3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDots3; \ No newline at end of file diff --git a/icons-react/icons-js/chart-dots.js b/icons-react/icons-js/chart-dots.js deleted file mode 100644 index 4c699d7d1..000000000 --- a/icons-react/icons-js/chart-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartDots; \ No newline at end of file diff --git a/icons-react/icons-js/chart-grid-dots.js b/icons-react/icons-js/chart-grid-dots.js deleted file mode 100644 index d6535ccd7..000000000 --- a/icons-react/icons-js/chart-grid-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartGridDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartGridDots; \ No newline at end of file diff --git a/icons-react/icons-js/chart-histogram.js b/icons-react/icons-js/chart-histogram.js deleted file mode 100644 index e712d0de5..000000000 --- a/icons-react/icons-js/chart-histogram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartHistogram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartHistogram; \ No newline at end of file diff --git a/icons-react/icons-js/chart-infographic.js b/icons-react/icons-js/chart-infographic.js deleted file mode 100644 index fff312c62..000000000 --- a/icons-react/icons-js/chart-infographic.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartInfographic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartInfographic; \ No newline at end of file diff --git a/icons-react/icons-js/chart-line.js b/icons-react/icons-js/chart-line.js deleted file mode 100644 index b2d9def2c..000000000 --- a/icons-react/icons-js/chart-line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartLine; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie-2.js b/icons-react/icons-js/chart-pie-2.js deleted file mode 100644 index 32aa11e8b..000000000 --- a/icons-react/icons-js/chart-pie-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPie2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPie2; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie-3.js b/icons-react/icons-js/chart-pie-3.js deleted file mode 100644 index f272566eb..000000000 --- a/icons-react/icons-js/chart-pie-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPie3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPie3; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie-4.js b/icons-react/icons-js/chart-pie-4.js deleted file mode 100644 index 08e698a80..000000000 --- a/icons-react/icons-js/chart-pie-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPie4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPie4; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie-off.js b/icons-react/icons-js/chart-pie-off.js deleted file mode 100644 index f19cf1e85..000000000 --- a/icons-react/icons-js/chart-pie-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPieOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPieOff; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie.js b/icons-react/icons-js/chart-pie.js deleted file mode 100644 index 0db83af4a..000000000 --- a/icons-react/icons-js/chart-pie.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPie({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPie; \ No newline at end of file diff --git a/icons-react/icons-js/chart-ppf.js b/icons-react/icons-js/chart-ppf.js deleted file mode 100644 index dcd55caeb..000000000 --- a/icons-react/icons-js/chart-ppf.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartPpf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartPpf; \ No newline at end of file diff --git a/icons-react/icons-js/chart-radar.js b/icons-react/icons-js/chart-radar.js deleted file mode 100644 index b4d485591..000000000 --- a/icons-react/icons-js/chart-radar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartRadar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartRadar; \ No newline at end of file diff --git a/icons-react/icons-js/chart-sankey.js b/icons-react/icons-js/chart-sankey.js deleted file mode 100644 index bb59e6ad0..000000000 --- a/icons-react/icons-js/chart-sankey.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartSankey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartSankey; \ No newline at end of file diff --git a/icons-react/icons-js/chart-treemap.js b/icons-react/icons-js/chart-treemap.js deleted file mode 100644 index f84dd1940..000000000 --- a/icons-react/icons-js/chart-treemap.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChartTreemap({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChartTreemap; \ No newline at end of file diff --git a/icons-react/icons-js/check.js b/icons-react/icons-js/check.js deleted file mode 100644 index 80e184ebf..000000000 --- a/icons-react/icons-js/check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCheck; \ No newline at end of file diff --git a/icons-react/icons-js/checkbox.js b/icons-react/icons-js/checkbox.js deleted file mode 100644 index 9e61e9360..000000000 --- a/icons-react/icons-js/checkbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCheckbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCheckbox; \ No newline at end of file diff --git a/icons-react/icons-js/checklist.js b/icons-react/icons-js/checklist.js deleted file mode 100644 index 635a14f98..000000000 --- a/icons-react/icons-js/checklist.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChecklist({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChecklist; \ No newline at end of file diff --git a/icons-react/icons-js/checks.js b/icons-react/icons-js/checks.js deleted file mode 100644 index 7a1d0c5ba..000000000 --- a/icons-react/icons-js/checks.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChecks({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChecks; \ No newline at end of file diff --git a/icons-react/icons-js/checkup-list.js b/icons-react/icons-js/checkup-list.js deleted file mode 100644 index 3159b64e7..000000000 --- a/icons-react/icons-js/checkup-list.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCheckupList({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCheckupList; \ No newline at end of file diff --git a/icons-react/icons-js/cheese.js b/icons-react/icons-js/cheese.js deleted file mode 100644 index b6bdf1afa..000000000 --- a/icons-react/icons-js/cheese.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCheese({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCheese; \ No newline at end of file diff --git a/icons-react/icons-js/chef-hat-off.js b/icons-react/icons-js/chef-hat-off.js deleted file mode 100644 index c3e8bd39b..000000000 --- a/icons-react/icons-js/chef-hat-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChefHatOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChefHatOff; \ No newline at end of file diff --git a/icons-react/icons-js/chef-hat.js b/icons-react/icons-js/chef-hat.js deleted file mode 100644 index 0b3d55b48..000000000 --- a/icons-react/icons-js/chef-hat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChefHat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChefHat; \ No newline at end of file diff --git a/icons-react/icons-js/cherry.js b/icons-react/icons-js/cherry.js deleted file mode 100644 index e05b8eda8..000000000 --- a/icons-react/icons-js/cherry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCherry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCherry; \ No newline at end of file diff --git a/icons-react/icons-js/chess-bishop.js b/icons-react/icons-js/chess-bishop.js deleted file mode 100644 index f73390512..000000000 --- a/icons-react/icons-js/chess-bishop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChessBishop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChessBishop; \ No newline at end of file diff --git a/icons-react/icons-js/chess-king.js b/icons-react/icons-js/chess-king.js deleted file mode 100644 index d87c95341..000000000 --- a/icons-react/icons-js/chess-king.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChessKing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChessKing; \ No newline at end of file diff --git a/icons-react/icons-js/chess-knight.js b/icons-react/icons-js/chess-knight.js deleted file mode 100644 index 9ab80c679..000000000 --- a/icons-react/icons-js/chess-knight.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChessKnight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChessKnight; \ No newline at end of file diff --git a/icons-react/icons-js/chess-queen.js b/icons-react/icons-js/chess-queen.js deleted file mode 100644 index 66619308f..000000000 --- a/icons-react/icons-js/chess-queen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChessQueen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChessQueen; \ No newline at end of file diff --git a/icons-react/icons-js/chess-rook.js b/icons-react/icons-js/chess-rook.js deleted file mode 100644 index 43eb77ab3..000000000 --- a/icons-react/icons-js/chess-rook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChessRook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChessRook; \ No newline at end of file diff --git a/icons-react/icons-js/chess.js b/icons-react/icons-js/chess.js deleted file mode 100644 index 0424e6299..000000000 --- a/icons-react/icons-js/chess.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChess({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChess; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-down-left.js b/icons-react/icons-js/chevron-down-left.js deleted file mode 100644 index 4e2181c50..000000000 --- a/icons-react/icons-js/chevron-down-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronDownLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-down-right.js b/icons-react/icons-js/chevron-down-right.js deleted file mode 100644 index 4f0f5817e..000000000 --- a/icons-react/icons-js/chevron-down-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronDownRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-down.js b/icons-react/icons-js/chevron-down.js deleted file mode 100644 index a931fe453..000000000 --- a/icons-react/icons-js/chevron-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronDown; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-left.js b/icons-react/icons-js/chevron-left.js deleted file mode 100644 index 2b1a6123f..000000000 --- a/icons-react/icons-js/chevron-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-right.js b/icons-react/icons-js/chevron-right.js deleted file mode 100644 index 298f67e54..000000000 --- a/icons-react/icons-js/chevron-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-up-left.js b/icons-react/icons-js/chevron-up-left.js deleted file mode 100644 index 1fbe750bf..000000000 --- a/icons-react/icons-js/chevron-up-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronUpLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-up-right.js b/icons-react/icons-js/chevron-up-right.js deleted file mode 100644 index 3d27364e7..000000000 --- a/icons-react/icons-js/chevron-up-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronUpRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-up.js b/icons-react/icons-js/chevron-up.js deleted file mode 100644 index 37f4cebc4..000000000 --- a/icons-react/icons-js/chevron-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronUp; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-down-left.js b/icons-react/icons-js/chevrons-down-left.js deleted file mode 100644 index 3fcd7a2de..000000000 --- a/icons-react/icons-js/chevrons-down-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsDownLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-down-right.js b/icons-react/icons-js/chevrons-down-right.js deleted file mode 100644 index bf20cf516..000000000 --- a/icons-react/icons-js/chevrons-down-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsDownRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-down.js b/icons-react/icons-js/chevrons-down.js deleted file mode 100644 index c78f63b6d..000000000 --- a/icons-react/icons-js/chevrons-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsDown; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-left.js b/icons-react/icons-js/chevrons-left.js deleted file mode 100644 index f2e580d75..000000000 --- a/icons-react/icons-js/chevrons-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-right.js b/icons-react/icons-js/chevrons-right.js deleted file mode 100644 index 95643f9e1..000000000 --- a/icons-react/icons-js/chevrons-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-up-left.js b/icons-react/icons-js/chevrons-up-left.js deleted file mode 100644 index a812fd80c..000000000 --- a/icons-react/icons-js/chevrons-up-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsUpLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-up-right.js b/icons-react/icons-js/chevrons-up-right.js deleted file mode 100644 index 0adf64db9..000000000 --- a/icons-react/icons-js/chevrons-up-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsUpRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-up.js b/icons-react/icons-js/chevrons-up.js deleted file mode 100644 index ba569400d..000000000 --- a/icons-react/icons-js/chevrons-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChevronsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChevronsUp; \ No newline at end of file diff --git a/icons-react/icons-js/chisel.js b/icons-react/icons-js/chisel.js deleted file mode 100644 index 2cfd93fb5..000000000 --- a/icons-react/icons-js/chisel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChisel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChisel; \ No newline at end of file diff --git a/icons-react/icons-js/christmas-tree-off.js b/icons-react/icons-js/christmas-tree-off.js deleted file mode 100644 index 030e1c6ec..000000000 --- a/icons-react/icons-js/christmas-tree-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChristmasTreeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChristmasTreeOff; \ No newline at end of file diff --git a/icons-react/icons-js/christmas-tree.js b/icons-react/icons-js/christmas-tree.js deleted file mode 100644 index 9fe103c23..000000000 --- a/icons-react/icons-js/christmas-tree.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconChristmasTree({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconChristmasTree; \ No newline at end of file diff --git a/icons-react/icons-js/circle-0.js b/icons-react/icons-js/circle-0.js deleted file mode 100644 index 70f9f86c9..000000000 --- a/icons-react/icons-js/circle-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle0; \ No newline at end of file diff --git a/icons-react/icons-js/circle-1.js b/icons-react/icons-js/circle-1.js deleted file mode 100644 index ee2d5f5e0..000000000 --- a/icons-react/icons-js/circle-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle1; \ No newline at end of file diff --git a/icons-react/icons-js/circle-2.js b/icons-react/icons-js/circle-2.js deleted file mode 100644 index d97e2c65c..000000000 --- a/icons-react/icons-js/circle-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle2; \ No newline at end of file diff --git a/icons-react/icons-js/circle-3.js b/icons-react/icons-js/circle-3.js deleted file mode 100644 index b1249e83f..000000000 --- a/icons-react/icons-js/circle-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle3; \ No newline at end of file diff --git a/icons-react/icons-js/circle-4.js b/icons-react/icons-js/circle-4.js deleted file mode 100644 index 680846dfe..000000000 --- a/icons-react/icons-js/circle-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle4; \ No newline at end of file diff --git a/icons-react/icons-js/circle-5.js b/icons-react/icons-js/circle-5.js deleted file mode 100644 index 1c41fd2f4..000000000 --- a/icons-react/icons-js/circle-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle5; \ No newline at end of file diff --git a/icons-react/icons-js/circle-6.js b/icons-react/icons-js/circle-6.js deleted file mode 100644 index 306baf121..000000000 --- a/icons-react/icons-js/circle-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle6; \ No newline at end of file diff --git a/icons-react/icons-js/circle-7.js b/icons-react/icons-js/circle-7.js deleted file mode 100644 index 060a51e51..000000000 --- a/icons-react/icons-js/circle-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle7; \ No newline at end of file diff --git a/icons-react/icons-js/circle-8.js b/icons-react/icons-js/circle-8.js deleted file mode 100644 index c6bebc567..000000000 --- a/icons-react/icons-js/circle-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle8; \ No newline at end of file diff --git a/icons-react/icons-js/circle-9.js b/icons-react/icons-js/circle-9.js deleted file mode 100644 index 3e8802048..000000000 --- a/icons-react/icons-js/circle-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle9; \ No newline at end of file diff --git a/icons-react/icons-js/circle-a.js b/icons-react/icons-js/circle-a.js deleted file mode 100644 index a87e9a328..000000000 --- a/icons-react/icons-js/circle-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleA; \ No newline at end of file diff --git a/icons-react/icons-js/circle-b.js b/icons-react/icons-js/circle-b.js deleted file mode 100644 index fc1bfec97..000000000 --- a/icons-react/icons-js/circle-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleB; \ No newline at end of file diff --git a/icons-react/icons-js/circle-c.js b/icons-react/icons-js/circle-c.js deleted file mode 100644 index a4fed887a..000000000 --- a/icons-react/icons-js/circle-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleC; \ No newline at end of file diff --git a/icons-react/icons-js/circle-caret-down.js b/icons-react/icons-js/circle-caret-down.js deleted file mode 100644 index a2944ad84..000000000 --- a/icons-react/icons-js/circle-caret-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleCaretDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleCaretDown; \ No newline at end of file diff --git a/icons-react/icons-js/circle-caret-left.js b/icons-react/icons-js/circle-caret-left.js deleted file mode 100644 index e6993184d..000000000 --- a/icons-react/icons-js/circle-caret-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleCaretLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleCaretLeft; \ No newline at end of file diff --git a/icons-react/icons-js/circle-caret-right.js b/icons-react/icons-js/circle-caret-right.js deleted file mode 100644 index 949904511..000000000 --- a/icons-react/icons-js/circle-caret-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleCaretRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleCaretRight; \ No newline at end of file diff --git a/icons-react/icons-js/circle-caret-up.js b/icons-react/icons-js/circle-caret-up.js deleted file mode 100644 index 7b5e5536d..000000000 --- a/icons-react/icons-js/circle-caret-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleCaretUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleCaretUp; \ No newline at end of file diff --git a/icons-react/icons-js/circle-check.js b/icons-react/icons-js/circle-check.js deleted file mode 100644 index 61dfacf2d..000000000 --- a/icons-react/icons-js/circle-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleCheck; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevron-down.js b/icons-react/icons-js/circle-chevron-down.js deleted file mode 100644 index b289cf26f..000000000 --- a/icons-react/icons-js/circle-chevron-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronDown; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevron-left.js b/icons-react/icons-js/circle-chevron-left.js deleted file mode 100644 index 9472d8ff9..000000000 --- a/icons-react/icons-js/circle-chevron-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronLeft; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevron-right.js b/icons-react/icons-js/circle-chevron-right.js deleted file mode 100644 index 976733773..000000000 --- a/icons-react/icons-js/circle-chevron-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronRight; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevron-up.js b/icons-react/icons-js/circle-chevron-up.js deleted file mode 100644 index 68e4dcfee..000000000 --- a/icons-react/icons-js/circle-chevron-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronUp; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevrons-down.js b/icons-react/icons-js/circle-chevrons-down.js deleted file mode 100644 index d8bd463e8..000000000 --- a/icons-react/icons-js/circle-chevrons-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronsDown; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevrons-left.js b/icons-react/icons-js/circle-chevrons-left.js deleted file mode 100644 index 4d826e015..000000000 --- a/icons-react/icons-js/circle-chevrons-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronsLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevrons-right.js b/icons-react/icons-js/circle-chevrons-right.js deleted file mode 100644 index 6dd570e89..000000000 --- a/icons-react/icons-js/circle-chevrons-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronsRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronsRight; \ No newline at end of file diff --git a/icons-react/icons-js/circle-chevrons-up.js b/icons-react/icons-js/circle-chevrons-up.js deleted file mode 100644 index acde1a4c3..000000000 --- a/icons-react/icons-js/circle-chevrons-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleChevronsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleChevronsUp; \ No newline at end of file diff --git a/icons-react/icons-js/circle-d.js b/icons-react/icons-js/circle-d.js deleted file mode 100644 index ef3fd7f76..000000000 --- a/icons-react/icons-js/circle-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleD; \ No newline at end of file diff --git a/icons-react/icons-js/circle-dashed.js b/icons-react/icons-js/circle-dashed.js deleted file mode 100644 index 33e6746be..000000000 --- a/icons-react/icons-js/circle-dashed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleDashed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleDashed; \ No newline at end of file diff --git a/icons-react/icons-js/circle-dot.js b/icons-react/icons-js/circle-dot.js deleted file mode 100644 index 1f8a92e89..000000000 --- a/icons-react/icons-js/circle-dot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleDot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleDot; \ No newline at end of file diff --git a/icons-react/icons-js/circle-dotted.js b/icons-react/icons-js/circle-dotted.js deleted file mode 100644 index 9b4fbd806..000000000 --- a/icons-react/icons-js/circle-dotted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleDotted({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleDotted; \ No newline at end of file diff --git a/icons-react/icons-js/circle-e.js b/icons-react/icons-js/circle-e.js deleted file mode 100644 index 0aa0d86db..000000000 --- a/icons-react/icons-js/circle-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleE; \ No newline at end of file diff --git a/icons-react/icons-js/circle-f.js b/icons-react/icons-js/circle-f.js deleted file mode 100644 index b7529a212..000000000 --- a/icons-react/icons-js/circle-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleF; \ No newline at end of file diff --git a/icons-react/icons-js/circle-g.js b/icons-react/icons-js/circle-g.js deleted file mode 100644 index 0466a3f09..000000000 --- a/icons-react/icons-js/circle-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleG; \ No newline at end of file diff --git a/icons-react/icons-js/circle-h.js b/icons-react/icons-js/circle-h.js deleted file mode 100644 index f33c9b3d9..000000000 --- a/icons-react/icons-js/circle-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleH; \ No newline at end of file diff --git a/icons-react/icons-js/circle-half-2.js b/icons-react/icons-js/circle-half-2.js deleted file mode 100644 index dbe2ccfcb..000000000 --- a/icons-react/icons-js/circle-half-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleHalf2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleHalf2; \ No newline at end of file diff --git a/icons-react/icons-js/circle-half-vertical.js b/icons-react/icons-js/circle-half-vertical.js deleted file mode 100644 index db32e7518..000000000 --- a/icons-react/icons-js/circle-half-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleHalfVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleHalfVertical; \ No newline at end of file diff --git a/icons-react/icons-js/circle-half.js b/icons-react/icons-js/circle-half.js deleted file mode 100644 index 33131177d..000000000 --- a/icons-react/icons-js/circle-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleHalf; \ No newline at end of file diff --git a/icons-react/icons-js/circle-i.js b/icons-react/icons-js/circle-i.js deleted file mode 100644 index 583515593..000000000 --- a/icons-react/icons-js/circle-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleI; \ No newline at end of file diff --git a/icons-react/icons-js/circle-j.js b/icons-react/icons-js/circle-j.js deleted file mode 100644 index 826c53643..000000000 --- a/icons-react/icons-js/circle-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleJ; \ No newline at end of file diff --git a/icons-react/icons-js/circle-k.js b/icons-react/icons-js/circle-k.js deleted file mode 100644 index 990d78325..000000000 --- a/icons-react/icons-js/circle-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleK; \ No newline at end of file diff --git a/icons-react/icons-js/circle-key.js b/icons-react/icons-js/circle-key.js deleted file mode 100644 index 65238abc9..000000000 --- a/icons-react/icons-js/circle-key.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleKey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleKey; \ No newline at end of file diff --git a/icons-react/icons-js/circle-l.js b/icons-react/icons-js/circle-l.js deleted file mode 100644 index 7f0b0124f..000000000 --- a/icons-react/icons-js/circle-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleL; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-a.js b/icons-react/icons-js/circle-letter-a.js deleted file mode 100644 index 6e54a68b5..000000000 --- a/icons-react/icons-js/circle-letter-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-b.js b/icons-react/icons-js/circle-letter-b.js deleted file mode 100644 index 0064b161a..000000000 --- a/icons-react/icons-js/circle-letter-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-c.js b/icons-react/icons-js/circle-letter-c.js deleted file mode 100644 index 5cdc730d7..000000000 --- a/icons-react/icons-js/circle-letter-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-d.js b/icons-react/icons-js/circle-letter-d.js deleted file mode 100644 index 4ee2462db..000000000 --- a/icons-react/icons-js/circle-letter-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-e.js b/icons-react/icons-js/circle-letter-e.js deleted file mode 100644 index e6d7af91f..000000000 --- a/icons-react/icons-js/circle-letter-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-f.js b/icons-react/icons-js/circle-letter-f.js deleted file mode 100644 index 52998ea2c..000000000 --- a/icons-react/icons-js/circle-letter-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-g.js b/icons-react/icons-js/circle-letter-g.js deleted file mode 100644 index 7aaf477e5..000000000 --- a/icons-react/icons-js/circle-letter-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-h.js b/icons-react/icons-js/circle-letter-h.js deleted file mode 100644 index d537ccb75..000000000 --- a/icons-react/icons-js/circle-letter-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-i.js b/icons-react/icons-js/circle-letter-i.js deleted file mode 100644 index 61b1351d1..000000000 --- a/icons-react/icons-js/circle-letter-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-j.js b/icons-react/icons-js/circle-letter-j.js deleted file mode 100644 index 7bc078117..000000000 --- a/icons-react/icons-js/circle-letter-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-k.js b/icons-react/icons-js/circle-letter-k.js deleted file mode 100644 index 9f0c3b177..000000000 --- a/icons-react/icons-js/circle-letter-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-l.js b/icons-react/icons-js/circle-letter-l.js deleted file mode 100644 index 4f09544c0..000000000 --- a/icons-react/icons-js/circle-letter-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-m.js b/icons-react/icons-js/circle-letter-m.js deleted file mode 100644 index 917892384..000000000 --- a/icons-react/icons-js/circle-letter-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-n.js b/icons-react/icons-js/circle-letter-n.js deleted file mode 100644 index 9d7569867..000000000 --- a/icons-react/icons-js/circle-letter-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-o.js b/icons-react/icons-js/circle-letter-o.js deleted file mode 100644 index cc1c3ef0d..000000000 --- a/icons-react/icons-js/circle-letter-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-p.js b/icons-react/icons-js/circle-letter-p.js deleted file mode 100644 index 91526388b..000000000 --- a/icons-react/icons-js/circle-letter-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-q.js b/icons-react/icons-js/circle-letter-q.js deleted file mode 100644 index bfddd0747..000000000 --- a/icons-react/icons-js/circle-letter-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-r.js b/icons-react/icons-js/circle-letter-r.js deleted file mode 100644 index 918018944..000000000 --- a/icons-react/icons-js/circle-letter-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-s.js b/icons-react/icons-js/circle-letter-s.js deleted file mode 100644 index 58a545338..000000000 --- a/icons-react/icons-js/circle-letter-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-t.js b/icons-react/icons-js/circle-letter-t.js deleted file mode 100644 index fc41658a5..000000000 --- a/icons-react/icons-js/circle-letter-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-u.js b/icons-react/icons-js/circle-letter-u.js deleted file mode 100644 index 58fa87f54..000000000 --- a/icons-react/icons-js/circle-letter-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-v.js b/icons-react/icons-js/circle-letter-v.js deleted file mode 100644 index 912c2963c..000000000 --- a/icons-react/icons-js/circle-letter-v.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterV({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-w.js b/icons-react/icons-js/circle-letter-w.js deleted file mode 100644 index 37cebd600..000000000 --- a/icons-react/icons-js/circle-letter-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-x.js b/icons-react/icons-js/circle-letter-x.js deleted file mode 100644 index 2f47b93d8..000000000 --- a/icons-react/icons-js/circle-letter-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-y.js b/icons-react/icons-js/circle-letter-y.js deleted file mode 100644 index fa1872d5e..000000000 --- a/icons-react/icons-js/circle-letter-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/circle-letter-z.js b/icons-react/icons-js/circle-letter-z.js deleted file mode 100644 index 4dd799992..000000000 --- a/icons-react/icons-js/circle-letter-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleLetterZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/circle-m.js b/icons-react/icons-js/circle-m.js deleted file mode 100644 index 0c1114543..000000000 --- a/icons-react/icons-js/circle-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleM; \ No newline at end of file diff --git a/icons-react/icons-js/circle-minus.js b/icons-react/icons-js/circle-minus.js deleted file mode 100644 index de16f276a..000000000 --- a/icons-react/icons-js/circle-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleMinus; \ No newline at end of file diff --git a/icons-react/icons-js/circle-n.js b/icons-react/icons-js/circle-n.js deleted file mode 100644 index 5a8a52337..000000000 --- a/icons-react/icons-js/circle-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleN; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-0.js b/icons-react/icons-js/circle-number-0.js deleted file mode 100644 index c9e56414a..000000000 --- a/icons-react/icons-js/circle-number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-1.js b/icons-react/icons-js/circle-number-1.js deleted file mode 100644 index 254430e5a..000000000 --- a/icons-react/icons-js/circle-number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-2.js b/icons-react/icons-js/circle-number-2.js deleted file mode 100644 index de422c870..000000000 --- a/icons-react/icons-js/circle-number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-3.js b/icons-react/icons-js/circle-number-3.js deleted file mode 100644 index 0f32f8ba7..000000000 --- a/icons-react/icons-js/circle-number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-4.js b/icons-react/icons-js/circle-number-4.js deleted file mode 100644 index f161ab88e..000000000 --- a/icons-react/icons-js/circle-number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-5.js b/icons-react/icons-js/circle-number-5.js deleted file mode 100644 index 3a3876495..000000000 --- a/icons-react/icons-js/circle-number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-6.js b/icons-react/icons-js/circle-number-6.js deleted file mode 100644 index eaf9bb917..000000000 --- a/icons-react/icons-js/circle-number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-7.js b/icons-react/icons-js/circle-number-7.js deleted file mode 100644 index eb66c8b7c..000000000 --- a/icons-react/icons-js/circle-number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-8.js b/icons-react/icons-js/circle-number-8.js deleted file mode 100644 index ef10af2ef..000000000 --- a/icons-react/icons-js/circle-number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/circle-number-9.js b/icons-react/icons-js/circle-number-9.js deleted file mode 100644 index 370d12b6e..000000000 --- a/icons-react/icons-js/circle-number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/circle-o.js b/icons-react/icons-js/circle-o.js deleted file mode 100644 index 459219a71..000000000 --- a/icons-react/icons-js/circle-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleO; \ No newline at end of file diff --git a/icons-react/icons-js/circle-off.js b/icons-react/icons-js/circle-off.js deleted file mode 100644 index f6e46fe66..000000000 --- a/icons-react/icons-js/circle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleOff; \ No newline at end of file diff --git a/icons-react/icons-js/circle-p.js b/icons-react/icons-js/circle-p.js deleted file mode 100644 index eda60fb24..000000000 --- a/icons-react/icons-js/circle-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleP; \ No newline at end of file diff --git a/icons-react/icons-js/circle-plus.js b/icons-react/icons-js/circle-plus.js deleted file mode 100644 index 5c3fffd16..000000000 --- a/icons-react/icons-js/circle-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCirclePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCirclePlus; \ No newline at end of file diff --git a/icons-react/icons-js/circle-q.js b/icons-react/icons-js/circle-q.js deleted file mode 100644 index 14f4ddb95..000000000 --- a/icons-react/icons-js/circle-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleQ; \ No newline at end of file diff --git a/icons-react/icons-js/circle-r.js b/icons-react/icons-js/circle-r.js deleted file mode 100644 index 75349c529..000000000 --- a/icons-react/icons-js/circle-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleR; \ No newline at end of file diff --git a/icons-react/icons-js/circle-rectangle-off.js b/icons-react/icons-js/circle-rectangle-off.js deleted file mode 100644 index 3f230bfb9..000000000 --- a/icons-react/icons-js/circle-rectangle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleRectangleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleRectangleOff; \ No newline at end of file diff --git a/icons-react/icons-js/circle-rectangle.js b/icons-react/icons-js/circle-rectangle.js deleted file mode 100644 index 0eaf17cae..000000000 --- a/icons-react/icons-js/circle-rectangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleRectangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleRectangle; \ No newline at end of file diff --git a/icons-react/icons-js/circle-s.js b/icons-react/icons-js/circle-s.js deleted file mode 100644 index 385c58384..000000000 --- a/icons-react/icons-js/circle-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleS; \ No newline at end of file diff --git a/icons-react/icons-js/circle-square.js b/icons-react/icons-js/circle-square.js deleted file mode 100644 index 993116e78..000000000 --- a/icons-react/icons-js/circle-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleSquare; \ No newline at end of file diff --git a/icons-react/icons-js/circle-t.js b/icons-react/icons-js/circle-t.js deleted file mode 100644 index 7a8ae9716..000000000 --- a/icons-react/icons-js/circle-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleT; \ No newline at end of file diff --git a/icons-react/icons-js/circle-triangle.js b/icons-react/icons-js/circle-triangle.js deleted file mode 100644 index b21bbb2dd..000000000 --- a/icons-react/icons-js/circle-triangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleTriangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/circle-u.js b/icons-react/icons-js/circle-u.js deleted file mode 100644 index 622bc0374..000000000 --- a/icons-react/icons-js/circle-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleU; \ No newline at end of file diff --git a/icons-react/icons-js/circle-w.js b/icons-react/icons-js/circle-w.js deleted file mode 100644 index 9298e8c2b..000000000 --- a/icons-react/icons-js/circle-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleW; \ No newline at end of file diff --git a/icons-react/icons-js/circle-x.js b/icons-react/icons-js/circle-x.js deleted file mode 100644 index 07c41a745..000000000 --- a/icons-react/icons-js/circle-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleX; \ No newline at end of file diff --git a/icons-react/icons-js/circle-y.js b/icons-react/icons-js/circle-y.js deleted file mode 100644 index d2b6fe77a..000000000 --- a/icons-react/icons-js/circle-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleY; \ No newline at end of file diff --git a/icons-react/icons-js/circle-z.js b/icons-react/icons-js/circle-z.js deleted file mode 100644 index d3986c42f..000000000 --- a/icons-react/icons-js/circle-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircleZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircleZ; \ No newline at end of file diff --git a/icons-react/icons-js/circle.js b/icons-react/icons-js/circle.js deleted file mode 100644 index 41f39b5c0..000000000 --- a/icons-react/icons-js/circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircle; \ No newline at end of file diff --git a/icons-react/icons-js/circles-relation.js b/icons-react/icons-js/circles-relation.js deleted file mode 100644 index 94298b5ca..000000000 --- a/icons-react/icons-js/circles-relation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCirclesRelation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCirclesRelation; \ No newline at end of file diff --git a/icons-react/icons-js/circles.js b/icons-react/icons-js/circles.js deleted file mode 100644 index c222b60c0..000000000 --- a/icons-react/icons-js/circles.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircles({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircles; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-ammeter.js b/icons-react/icons-js/circuit-ammeter.js deleted file mode 100644 index 9add375ce..000000000 --- a/icons-react/icons-js/circuit-ammeter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitAmmeter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitAmmeter; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-battery.js b/icons-react/icons-js/circuit-battery.js deleted file mode 100644 index 941f23ee8..000000000 --- a/icons-react/icons-js/circuit-battery.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitBattery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitBattery; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-bulb.js b/icons-react/icons-js/circuit-bulb.js deleted file mode 100644 index e8545ea0d..000000000 --- a/icons-react/icons-js/circuit-bulb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitBulb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitBulb; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-capacitor-polarized.js b/icons-react/icons-js/circuit-capacitor-polarized.js deleted file mode 100644 index 06fcf1ac1..000000000 --- a/icons-react/icons-js/circuit-capacitor-polarized.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitCapacitorPolarized({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitCapacitorPolarized; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-capacitor.js b/icons-react/icons-js/circuit-capacitor.js deleted file mode 100644 index 46209f9b3..000000000 --- a/icons-react/icons-js/circuit-capacitor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitCapacitor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitCapacitor; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-cell-plus.js b/icons-react/icons-js/circuit-cell-plus.js deleted file mode 100644 index 270992e78..000000000 --- a/icons-react/icons-js/circuit-cell-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitCellPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitCellPlus; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-cell.js b/icons-react/icons-js/circuit-cell.js deleted file mode 100644 index d053bc987..000000000 --- a/icons-react/icons-js/circuit-cell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitCell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitCell; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-changeover.js b/icons-react/icons-js/circuit-changeover.js deleted file mode 100644 index a53c5ad2d..000000000 --- a/icons-react/icons-js/circuit-changeover.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitChangeover({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitChangeover; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-diode-zener.js b/icons-react/icons-js/circuit-diode-zener.js deleted file mode 100644 index c63e63ca2..000000000 --- a/icons-react/icons-js/circuit-diode-zener.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitDiodeZener({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitDiodeZener; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-diode.js b/icons-react/icons-js/circuit-diode.js deleted file mode 100644 index f9846031a..000000000 --- a/icons-react/icons-js/circuit-diode.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitDiode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitDiode; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-ground-digital.js b/icons-react/icons-js/circuit-ground-digital.js deleted file mode 100644 index 6a7667cac..000000000 --- a/icons-react/icons-js/circuit-ground-digital.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitGroundDigital({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitGroundDigital; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-ground.js b/icons-react/icons-js/circuit-ground.js deleted file mode 100644 index ffd8127fc..000000000 --- a/icons-react/icons-js/circuit-ground.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitGround({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitGround; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-inductor.js b/icons-react/icons-js/circuit-inductor.js deleted file mode 100644 index 3e102b84f..000000000 --- a/icons-react/icons-js/circuit-inductor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitInductor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitInductor; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-motor.js b/icons-react/icons-js/circuit-motor.js deleted file mode 100644 index e210bcd4f..000000000 --- a/icons-react/icons-js/circuit-motor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitMotor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitMotor; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-pushbutton.js b/icons-react/icons-js/circuit-pushbutton.js deleted file mode 100644 index 0667ecfc0..000000000 --- a/icons-react/icons-js/circuit-pushbutton.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitPushbutton({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitPushbutton; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-resistor.js b/icons-react/icons-js/circuit-resistor.js deleted file mode 100644 index a84eda5b3..000000000 --- a/icons-react/icons-js/circuit-resistor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitResistor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitResistor; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-switch-closed.js b/icons-react/icons-js/circuit-switch-closed.js deleted file mode 100644 index 65aed2d2b..000000000 --- a/icons-react/icons-js/circuit-switch-closed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitSwitchClosed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitSwitchClosed; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-switch-open.js b/icons-react/icons-js/circuit-switch-open.js deleted file mode 100644 index c66f606c0..000000000 --- a/icons-react/icons-js/circuit-switch-open.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitSwitchOpen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitSwitchOpen; \ No newline at end of file diff --git a/icons-react/icons-js/circuit-voltmeter.js b/icons-react/icons-js/circuit-voltmeter.js deleted file mode 100644 index 5bca10c6c..000000000 --- a/icons-react/icons-js/circuit-voltmeter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCircuitVoltmeter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCircuitVoltmeter; \ No newline at end of file diff --git a/icons-react/icons-js/clear-all.js b/icons-react/icons-js/clear-all.js deleted file mode 100644 index 3e286b435..000000000 --- a/icons-react/icons-js/clear-all.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClearAll({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClearAll; \ No newline at end of file diff --git a/icons-react/icons-js/clear-formatting.js b/icons-react/icons-js/clear-formatting.js deleted file mode 100644 index baf509b86..000000000 --- a/icons-react/icons-js/clear-formatting.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClearFormatting({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClearFormatting; \ No newline at end of file diff --git a/icons-react/icons-js/click.js b/icons-react/icons-js/click.js deleted file mode 100644 index 1f13c91b2..000000000 --- a/icons-react/icons-js/click.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClick; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-check.js b/icons-react/icons-js/clipboard-check.js deleted file mode 100644 index 2bb53f30d..000000000 --- a/icons-react/icons-js/clipboard-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardCheck; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-copy.js b/icons-react/icons-js/clipboard-copy.js deleted file mode 100644 index fb65f5402..000000000 --- a/icons-react/icons-js/clipboard-copy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardCopy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardCopy; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-data.js b/icons-react/icons-js/clipboard-data.js deleted file mode 100644 index 75e28d5d2..000000000 --- a/icons-react/icons-js/clipboard-data.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardData({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardData; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-heart.js b/icons-react/icons-js/clipboard-heart.js deleted file mode 100644 index 5eeeec602..000000000 --- a/icons-react/icons-js/clipboard-heart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardHeart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardHeart; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-list.js b/icons-react/icons-js/clipboard-list.js deleted file mode 100644 index a346aec3f..000000000 --- a/icons-react/icons-js/clipboard-list.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardList({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardList; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-off.js b/icons-react/icons-js/clipboard-off.js deleted file mode 100644 index e3d06a6c0..000000000 --- a/icons-react/icons-js/clipboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-plus.js b/icons-react/icons-js/clipboard-plus.js deleted file mode 100644 index c5b25ea02..000000000 --- a/icons-react/icons-js/clipboard-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardPlus; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-text.js b/icons-react/icons-js/clipboard-text.js deleted file mode 100644 index 67acb3987..000000000 --- a/icons-react/icons-js/clipboard-text.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardText({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardText; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-typography.js b/icons-react/icons-js/clipboard-typography.js deleted file mode 100644 index b02a93cfd..000000000 --- a/icons-react/icons-js/clipboard-typography.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardTypography({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardTypography; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-x.js b/icons-react/icons-js/clipboard-x.js deleted file mode 100644 index b94c7284c..000000000 --- a/icons-react/icons-js/clipboard-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboardX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboardX; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard.js b/icons-react/icons-js/clipboard.js deleted file mode 100644 index 76d8b6f6f..000000000 --- a/icons-react/icons-js/clipboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClipboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClipboard; \ No newline at end of file diff --git a/icons-react/icons-js/clock-2.js b/icons-react/icons-js/clock-2.js deleted file mode 100644 index 97dd5f1bf..000000000 --- a/icons-react/icons-js/clock-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClock2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClock2; \ No newline at end of file diff --git a/icons-react/icons-js/clock-cancel.js b/icons-react/icons-js/clock-cancel.js deleted file mode 100644 index ccd9c675f..000000000 --- a/icons-react/icons-js/clock-cancel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockCancel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockCancel; \ No newline at end of file diff --git a/icons-react/icons-js/clock-edit.js b/icons-react/icons-js/clock-edit.js deleted file mode 100644 index 32210e892..000000000 --- a/icons-react/icons-js/clock-edit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockEdit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockEdit; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-1.js b/icons-react/icons-js/clock-hour-1.js deleted file mode 100644 index feb57f227..000000000 --- a/icons-react/icons-js/clock-hour-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour1; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-10.js b/icons-react/icons-js/clock-hour-10.js deleted file mode 100644 index 2d0fdca35..000000000 --- a/icons-react/icons-js/clock-hour-10.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour10({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour10; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-11.js b/icons-react/icons-js/clock-hour-11.js deleted file mode 100644 index 5cc1e0909..000000000 --- a/icons-react/icons-js/clock-hour-11.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour11({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour11; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-12.js b/icons-react/icons-js/clock-hour-12.js deleted file mode 100644 index 47d6fa6fc..000000000 --- a/icons-react/icons-js/clock-hour-12.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour12({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour12; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-2.js b/icons-react/icons-js/clock-hour-2.js deleted file mode 100644 index 9591f1874..000000000 --- a/icons-react/icons-js/clock-hour-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour2; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-3.js b/icons-react/icons-js/clock-hour-3.js deleted file mode 100644 index 717fbb806..000000000 --- a/icons-react/icons-js/clock-hour-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour3; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-4.js b/icons-react/icons-js/clock-hour-4.js deleted file mode 100644 index a50d7a3df..000000000 --- a/icons-react/icons-js/clock-hour-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour4; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-5.js b/icons-react/icons-js/clock-hour-5.js deleted file mode 100644 index 75077f86d..000000000 --- a/icons-react/icons-js/clock-hour-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour5; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-6.js b/icons-react/icons-js/clock-hour-6.js deleted file mode 100644 index 537260e5a..000000000 --- a/icons-react/icons-js/clock-hour-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour6; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-7.js b/icons-react/icons-js/clock-hour-7.js deleted file mode 100644 index 8a34d5b45..000000000 --- a/icons-react/icons-js/clock-hour-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour7; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-8.js b/icons-react/icons-js/clock-hour-8.js deleted file mode 100644 index 08760fc27..000000000 --- a/icons-react/icons-js/clock-hour-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour8; \ No newline at end of file diff --git a/icons-react/icons-js/clock-hour-9.js b/icons-react/icons-js/clock-hour-9.js deleted file mode 100644 index 03aa15d62..000000000 --- a/icons-react/icons-js/clock-hour-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockHour9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockHour9; \ No newline at end of file diff --git a/icons-react/icons-js/clock-off.js b/icons-react/icons-js/clock-off.js deleted file mode 100644 index 1d4519b50..000000000 --- a/icons-react/icons-js/clock-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockOff; \ No newline at end of file diff --git a/icons-react/icons-js/clock-pause.js b/icons-react/icons-js/clock-pause.js deleted file mode 100644 index 90151e5a5..000000000 --- a/icons-react/icons-js/clock-pause.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockPause({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockPause; \ No newline at end of file diff --git a/icons-react/icons-js/clock-play.js b/icons-react/icons-js/clock-play.js deleted file mode 100644 index bef762b8e..000000000 --- a/icons-react/icons-js/clock-play.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockPlay({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockPlay; \ No newline at end of file diff --git a/icons-react/icons-js/clock-record.js b/icons-react/icons-js/clock-record.js deleted file mode 100644 index 2601abe0d..000000000 --- a/icons-react/icons-js/clock-record.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockRecord({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockRecord; \ No newline at end of file diff --git a/icons-react/icons-js/clock-stop.js b/icons-react/icons-js/clock-stop.js deleted file mode 100644 index 6ad09f3dd..000000000 --- a/icons-react/icons-js/clock-stop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClockStop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClockStop; \ No newline at end of file diff --git a/icons-react/icons-js/clock.js b/icons-react/icons-js/clock.js deleted file mode 100644 index 1ed0ea67c..000000000 --- a/icons-react/icons-js/clock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClock; \ No newline at end of file diff --git a/icons-react/icons-js/clothes-rack-off.js b/icons-react/icons-js/clothes-rack-off.js deleted file mode 100644 index 53294e007..000000000 --- a/icons-react/icons-js/clothes-rack-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClothesRackOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClothesRackOff; \ No newline at end of file diff --git a/icons-react/icons-js/clothes-rack.js b/icons-react/icons-js/clothes-rack.js deleted file mode 100644 index bbf6de625..000000000 --- a/icons-react/icons-js/clothes-rack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClothesRack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClothesRack; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-computing.js b/icons-react/icons-js/cloud-computing.js deleted file mode 100644 index ce71ae54d..000000000 --- a/icons-react/icons-js/cloud-computing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudComputing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudComputing; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-data-connection.js b/icons-react/icons-js/cloud-data-connection.js deleted file mode 100644 index 67d98b3df..000000000 --- a/icons-react/icons-js/cloud-data-connection.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudDataConnection({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudDataConnection; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-download.js b/icons-react/icons-js/cloud-download.js deleted file mode 100644 index ecb085575..000000000 --- a/icons-react/icons-js/cloud-download.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudDownload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudDownload; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-fog.js b/icons-react/icons-js/cloud-fog.js deleted file mode 100644 index a32645e3a..000000000 --- a/icons-react/icons-js/cloud-fog.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudFog({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudFog; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-lock-open.js b/icons-react/icons-js/cloud-lock-open.js deleted file mode 100644 index 28647dbad..000000000 --- a/icons-react/icons-js/cloud-lock-open.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudLockOpen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudLockOpen; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-lock.js b/icons-react/icons-js/cloud-lock.js deleted file mode 100644 index 605e60828..000000000 --- a/icons-react/icons-js/cloud-lock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudLock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudLock; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-off.js b/icons-react/icons-js/cloud-off.js deleted file mode 100644 index 3332dd826..000000000 --- a/icons-react/icons-js/cloud-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudOff; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-rain.js b/icons-react/icons-js/cloud-rain.js deleted file mode 100644 index 9b5f05161..000000000 --- a/icons-react/icons-js/cloud-rain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudRain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudRain; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-snow.js b/icons-react/icons-js/cloud-snow.js deleted file mode 100644 index c5eee152c..000000000 --- a/icons-react/icons-js/cloud-snow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudSnow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudSnow; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-storm.js b/icons-react/icons-js/cloud-storm.js deleted file mode 100644 index 4a385b25d..000000000 --- a/icons-react/icons-js/cloud-storm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudStorm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudStorm; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-upload.js b/icons-react/icons-js/cloud-upload.js deleted file mode 100644 index ce64ebc31..000000000 --- a/icons-react/icons-js/cloud-upload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloudUpload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloudUpload; \ No newline at end of file diff --git a/icons-react/icons-js/cloud.js b/icons-react/icons-js/cloud.js deleted file mode 100644 index bb859cb75..000000000 --- a/icons-react/icons-js/cloud.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCloud({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCloud; \ No newline at end of file diff --git a/icons-react/icons-js/clover-2.js b/icons-react/icons-js/clover-2.js deleted file mode 100644 index b6d6d0687..000000000 --- a/icons-react/icons-js/clover-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClover2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClover2; \ No newline at end of file diff --git a/icons-react/icons-js/clover.js b/icons-react/icons-js/clover.js deleted file mode 100644 index 8c2774943..000000000 --- a/icons-react/icons-js/clover.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClover({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClover; \ No newline at end of file diff --git a/icons-react/icons-js/clubs.js b/icons-react/icons-js/clubs.js deleted file mode 100644 index 8647b64fa..000000000 --- a/icons-react/icons-js/clubs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconClubs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconClubs; \ No newline at end of file diff --git a/icons-react/icons-js/code-asterix.js b/icons-react/icons-js/code-asterix.js deleted file mode 100644 index 0b690a9a7..000000000 --- a/icons-react/icons-js/code-asterix.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeAsterix({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeAsterix; \ No newline at end of file diff --git a/icons-react/icons-js/code-circle-2.js b/icons-react/icons-js/code-circle-2.js deleted file mode 100644 index 6968181a1..000000000 --- a/icons-react/icons-js/code-circle-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeCircle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeCircle2; \ No newline at end of file diff --git a/icons-react/icons-js/code-circle.js b/icons-react/icons-js/code-circle.js deleted file mode 100644 index 47b7920f7..000000000 --- a/icons-react/icons-js/code-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeCircle; \ No newline at end of file diff --git a/icons-react/icons-js/code-dots.js b/icons-react/icons-js/code-dots.js deleted file mode 100644 index 54e30d95f..000000000 --- a/icons-react/icons-js/code-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeDots; \ No newline at end of file diff --git a/icons-react/icons-js/code-minus.js b/icons-react/icons-js/code-minus.js deleted file mode 100644 index 7d484e5ac..000000000 --- a/icons-react/icons-js/code-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeMinus; \ No newline at end of file diff --git a/icons-react/icons-js/code-off.js b/icons-react/icons-js/code-off.js deleted file mode 100644 index 319f1e3f4..000000000 --- a/icons-react/icons-js/code-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodeOff; \ No newline at end of file diff --git a/icons-react/icons-js/code-plus.js b/icons-react/icons-js/code-plus.js deleted file mode 100644 index 0c5bb6d7c..000000000 --- a/icons-react/icons-js/code-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCodePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCodePlus; \ No newline at end of file diff --git a/icons-react/icons-js/code.js b/icons-react/icons-js/code.js deleted file mode 100644 index eb29400fc..000000000 --- a/icons-react/icons-js/code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCode; \ No newline at end of file diff --git a/icons-react/icons-js/coffee-off.js b/icons-react/icons-js/coffee-off.js deleted file mode 100644 index be4d0c352..000000000 --- a/icons-react/icons-js/coffee-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoffeeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoffeeOff; \ No newline at end of file diff --git a/icons-react/icons-js/coffee.js b/icons-react/icons-js/coffee.js deleted file mode 100644 index fe85fdcfc..000000000 --- a/icons-react/icons-js/coffee.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoffee({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoffee; \ No newline at end of file diff --git a/icons-react/icons-js/coffin.js b/icons-react/icons-js/coffin.js deleted file mode 100644 index af9a97dfb..000000000 --- a/icons-react/icons-js/coffin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoffin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoffin; \ No newline at end of file diff --git a/icons-react/icons-js/coin-bitcoin.js b/icons-react/icons-js/coin-bitcoin.js deleted file mode 100644 index 09e8f82ea..000000000 --- a/icons-react/icons-js/coin-bitcoin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinBitcoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinBitcoin; \ No newline at end of file diff --git a/icons-react/icons-js/coin-euro.js b/icons-react/icons-js/coin-euro.js deleted file mode 100644 index 186f8cfa0..000000000 --- a/icons-react/icons-js/coin-euro.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinEuro({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinEuro; \ No newline at end of file diff --git a/icons-react/icons-js/coin-monero.js b/icons-react/icons-js/coin-monero.js deleted file mode 100644 index e1ac26cd7..000000000 --- a/icons-react/icons-js/coin-monero.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinMonero({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinMonero; \ No newline at end of file diff --git a/icons-react/icons-js/coin-off.js b/icons-react/icons-js/coin-off.js deleted file mode 100644 index ac507d444..000000000 --- a/icons-react/icons-js/coin-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinOff; \ No newline at end of file diff --git a/icons-react/icons-js/coin-pound.js b/icons-react/icons-js/coin-pound.js deleted file mode 100644 index e3b0b4dc9..000000000 --- a/icons-react/icons-js/coin-pound.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinPound({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinPound; \ No newline at end of file diff --git a/icons-react/icons-js/coin-rupee.js b/icons-react/icons-js/coin-rupee.js deleted file mode 100644 index 173529af9..000000000 --- a/icons-react/icons-js/coin-rupee.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinRupee({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinRupee; \ No newline at end of file diff --git a/icons-react/icons-js/coin-yen.js b/icons-react/icons-js/coin-yen.js deleted file mode 100644 index 4b689f263..000000000 --- a/icons-react/icons-js/coin-yen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinYen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinYen; \ No newline at end of file diff --git a/icons-react/icons-js/coin-yuan.js b/icons-react/icons-js/coin-yuan.js deleted file mode 100644 index cc8d1b423..000000000 --- a/icons-react/icons-js/coin-yuan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoinYuan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoinYuan; \ No newline at end of file diff --git a/icons-react/icons-js/coin.js b/icons-react/icons-js/coin.js deleted file mode 100644 index 1898c4d2d..000000000 --- a/icons-react/icons-js/coin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoin; \ No newline at end of file diff --git a/icons-react/icons-js/coins.js b/icons-react/icons-js/coins.js deleted file mode 100644 index bdc674fd0..000000000 --- a/icons-react/icons-js/coins.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCoins({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCoins; \ No newline at end of file diff --git a/icons-react/icons-js/color-filter.js b/icons-react/icons-js/color-filter.js deleted file mode 100644 index 2ba1327a4..000000000 --- a/icons-react/icons-js/color-filter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColorFilter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColorFilter; \ No newline at end of file diff --git a/icons-react/icons-js/color-picker-off.js b/icons-react/icons-js/color-picker-off.js deleted file mode 100644 index fbea7e7db..000000000 --- a/icons-react/icons-js/color-picker-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColorPickerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColorPickerOff; \ No newline at end of file diff --git a/icons-react/icons-js/color-picker.js b/icons-react/icons-js/color-picker.js deleted file mode 100644 index 134d0d38b..000000000 --- a/icons-react/icons-js/color-picker.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColorPicker({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColorPicker; \ No newline at end of file diff --git a/icons-react/icons-js/color-swatch-off.js b/icons-react/icons-js/color-swatch-off.js deleted file mode 100644 index 2a3885d9a..000000000 --- a/icons-react/icons-js/color-swatch-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColorSwatchOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColorSwatchOff; \ No newline at end of file diff --git a/icons-react/icons-js/color-swatch.js b/icons-react/icons-js/color-swatch.js deleted file mode 100644 index d52ebfff9..000000000 --- a/icons-react/icons-js/color-swatch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColorSwatch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColorSwatch; \ No newline at end of file diff --git a/icons-react/icons-js/column-insert-left.js b/icons-react/icons-js/column-insert-left.js deleted file mode 100644 index 4d75cd57e..000000000 --- a/icons-react/icons-js/column-insert-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColumnInsertLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColumnInsertLeft; \ No newline at end of file diff --git a/icons-react/icons-js/column-insert-right.js b/icons-react/icons-js/column-insert-right.js deleted file mode 100644 index 60a8bf68e..000000000 --- a/icons-react/icons-js/column-insert-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColumnInsertRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColumnInsertRight; \ No newline at end of file diff --git a/icons-react/icons-js/columns-off.js b/icons-react/icons-js/columns-off.js deleted file mode 100644 index 57de98d2b..000000000 --- a/icons-react/icons-js/columns-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColumnsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColumnsOff; \ No newline at end of file diff --git a/icons-react/icons-js/columns.js b/icons-react/icons-js/columns.js deleted file mode 100644 index a4870c6e3..000000000 --- a/icons-react/icons-js/columns.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconColumns({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconColumns; \ No newline at end of file diff --git a/icons-react/icons-js/comet.js b/icons-react/icons-js/comet.js deleted file mode 100644 index be5c3e0c7..000000000 --- a/icons-react/icons-js/comet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconComet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconComet; \ No newline at end of file diff --git a/icons-react/icons-js/command-off.js b/icons-react/icons-js/command-off.js deleted file mode 100644 index e3161387c..000000000 --- a/icons-react/icons-js/command-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCommandOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCommandOff; \ No newline at end of file diff --git a/icons-react/icons-js/command.js b/icons-react/icons-js/command.js deleted file mode 100644 index f1c197089..000000000 --- a/icons-react/icons-js/command.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCommand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCommand; \ No newline at end of file diff --git a/icons-react/icons-js/compass-off.js b/icons-react/icons-js/compass-off.js deleted file mode 100644 index 009267785..000000000 --- a/icons-react/icons-js/compass-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCompassOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCompassOff; \ No newline at end of file diff --git a/icons-react/icons-js/compass.js b/icons-react/icons-js/compass.js deleted file mode 100644 index 7bde6e978..000000000 --- a/icons-react/icons-js/compass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCompass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCompass; \ No newline at end of file diff --git a/icons-react/icons-js/components-off.js b/icons-react/icons-js/components-off.js deleted file mode 100644 index ad5133253..000000000 --- a/icons-react/icons-js/components-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconComponentsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconComponentsOff; \ No newline at end of file diff --git a/icons-react/icons-js/components.js b/icons-react/icons-js/components.js deleted file mode 100644 index 260ec2ed5..000000000 --- a/icons-react/icons-js/components.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconComponents({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconComponents; \ No newline at end of file diff --git a/icons-react/icons-js/cone-2.js b/icons-react/icons-js/cone-2.js deleted file mode 100644 index e2448d50b..000000000 --- a/icons-react/icons-js/cone-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCone2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCone2; \ No newline at end of file diff --git a/icons-react/icons-js/cone-off.js b/icons-react/icons-js/cone-off.js deleted file mode 100644 index d6f79d965..000000000 --- a/icons-react/icons-js/cone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconConeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconConeOff; \ No newline at end of file diff --git a/icons-react/icons-js/cone.js b/icons-react/icons-js/cone.js deleted file mode 100644 index 5eb4837d0..000000000 --- a/icons-react/icons-js/cone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCone; \ No newline at end of file diff --git a/icons-react/icons-js/confetti-off.js b/icons-react/icons-js/confetti-off.js deleted file mode 100644 index 48f0c1ea4..000000000 --- a/icons-react/icons-js/confetti-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconConfettiOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconConfettiOff; \ No newline at end of file diff --git a/icons-react/icons-js/confetti.js b/icons-react/icons-js/confetti.js deleted file mode 100644 index bfe55c98c..000000000 --- a/icons-react/icons-js/confetti.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconConfetti({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconConfetti; \ No newline at end of file diff --git a/icons-react/icons-js/confucius.js b/icons-react/icons-js/confucius.js deleted file mode 100644 index c11b426ff..000000000 --- a/icons-react/icons-js/confucius.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconConfucius({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconConfucius; \ No newline at end of file diff --git a/icons-react/icons-js/container-off.js b/icons-react/icons-js/container-off.js deleted file mode 100644 index f99392158..000000000 --- a/icons-react/icons-js/container-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContainerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContainerOff; \ No newline at end of file diff --git a/icons-react/icons-js/container.js b/icons-react/icons-js/container.js deleted file mode 100644 index f4a7dbd0c..000000000 --- a/icons-react/icons-js/container.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContainer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContainer; \ No newline at end of file diff --git a/icons-react/icons-js/contrast-2-off.js b/icons-react/icons-js/contrast-2-off.js deleted file mode 100644 index df65a313e..000000000 --- a/icons-react/icons-js/contrast-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContrast2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContrast2Off; \ No newline at end of file diff --git a/icons-react/icons-js/contrast-2.js b/icons-react/icons-js/contrast-2.js deleted file mode 100644 index 222ae671f..000000000 --- a/icons-react/icons-js/contrast-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContrast2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContrast2; \ No newline at end of file diff --git a/icons-react/icons-js/contrast-off.js b/icons-react/icons-js/contrast-off.js deleted file mode 100644 index 8ccb338d0..000000000 --- a/icons-react/icons-js/contrast-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContrastOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContrastOff; \ No newline at end of file diff --git a/icons-react/icons-js/contrast.js b/icons-react/icons-js/contrast.js deleted file mode 100644 index ca28c6fcb..000000000 --- a/icons-react/icons-js/contrast.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconContrast({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconContrast; \ No newline at end of file diff --git a/icons-react/icons-js/cooker.js b/icons-react/icons-js/cooker.js deleted file mode 100644 index 623441773..000000000 --- a/icons-react/icons-js/cooker.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCooker({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCooker; \ No newline at end of file diff --git a/icons-react/icons-js/cookie-man.js b/icons-react/icons-js/cookie-man.js deleted file mode 100644 index 8e6775ea2..000000000 --- a/icons-react/icons-js/cookie-man.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCookieMan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCookieMan; \ No newline at end of file diff --git a/icons-react/icons-js/cookie-off.js b/icons-react/icons-js/cookie-off.js deleted file mode 100644 index 28f669d7e..000000000 --- a/icons-react/icons-js/cookie-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCookieOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCookieOff; \ No newline at end of file diff --git a/icons-react/icons-js/cookie.js b/icons-react/icons-js/cookie.js deleted file mode 100644 index a28f3b0a6..000000000 --- a/icons-react/icons-js/cookie.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCookie({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCookie; \ No newline at end of file diff --git a/icons-react/icons-js/copy-off.js b/icons-react/icons-js/copy-off.js deleted file mode 100644 index 6d35491a5..000000000 --- a/icons-react/icons-js/copy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopyOff; \ No newline at end of file diff --git a/icons-react/icons-js/copy.js b/icons-react/icons-js/copy.js deleted file mode 100644 index 6e9722f54..000000000 --- a/icons-react/icons-js/copy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopy; \ No newline at end of file diff --git a/icons-react/icons-js/copyleft-off.js b/icons-react/icons-js/copyleft-off.js deleted file mode 100644 index 8468a7b58..000000000 --- a/icons-react/icons-js/copyleft-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopyleftOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopyleftOff; \ No newline at end of file diff --git a/icons-react/icons-js/copyleft.js b/icons-react/icons-js/copyleft.js deleted file mode 100644 index a18159380..000000000 --- a/icons-react/icons-js/copyleft.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopyleft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopyleft; \ No newline at end of file diff --git a/icons-react/icons-js/copyright-off.js b/icons-react/icons-js/copyright-off.js deleted file mode 100644 index ebfb2518a..000000000 --- a/icons-react/icons-js/copyright-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopyrightOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopyrightOff; \ No newline at end of file diff --git a/icons-react/icons-js/copyright.js b/icons-react/icons-js/copyright.js deleted file mode 100644 index 2e0d1d2ad..000000000 --- a/icons-react/icons-js/copyright.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCopyright({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCopyright; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-left-double.js b/icons-react/icons-js/corner-down-left-double.js deleted file mode 100644 index dab1d1c49..000000000 --- a/icons-react/icons-js/corner-down-left-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerDownLeftDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerDownLeftDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-left.js b/icons-react/icons-js/corner-down-left.js deleted file mode 100644 index 6ec372bf3..000000000 --- a/icons-react/icons-js/corner-down-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerDownLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-right-double.js b/icons-react/icons-js/corner-down-right-double.js deleted file mode 100644 index c4e7523b2..000000000 --- a/icons-react/icons-js/corner-down-right-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerDownRightDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerDownRightDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-right.js b/icons-react/icons-js/corner-down-right.js deleted file mode 100644 index 7ff2ff94b..000000000 --- a/icons-react/icons-js/corner-down-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerDownRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-down-double.js b/icons-react/icons-js/corner-left-down-double.js deleted file mode 100644 index 30b78d89c..000000000 --- a/icons-react/icons-js/corner-left-down-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerLeftDownDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerLeftDownDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-down.js b/icons-react/icons-js/corner-left-down.js deleted file mode 100644 index 3e3562ec6..000000000 --- a/icons-react/icons-js/corner-left-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerLeftDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerLeftDown; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-up-double.js b/icons-react/icons-js/corner-left-up-double.js deleted file mode 100644 index 70d2411a9..000000000 --- a/icons-react/icons-js/corner-left-up-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerLeftUpDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerLeftUpDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-up.js b/icons-react/icons-js/corner-left-up.js deleted file mode 100644 index 2abf6ab83..000000000 --- a/icons-react/icons-js/corner-left-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerLeftUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerLeftUp; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-down-double.js b/icons-react/icons-js/corner-right-down-double.js deleted file mode 100644 index b3ef06e14..000000000 --- a/icons-react/icons-js/corner-right-down-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerRightDownDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerRightDownDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-down.js b/icons-react/icons-js/corner-right-down.js deleted file mode 100644 index c08cefef3..000000000 --- a/icons-react/icons-js/corner-right-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerRightDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerRightDown; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-up-double.js b/icons-react/icons-js/corner-right-up-double.js deleted file mode 100644 index e051ecf35..000000000 --- a/icons-react/icons-js/corner-right-up-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerRightUpDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerRightUpDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-up.js b/icons-react/icons-js/corner-right-up.js deleted file mode 100644 index 73e3b258f..000000000 --- a/icons-react/icons-js/corner-right-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerRightUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerRightUp; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-left-double.js b/icons-react/icons-js/corner-up-left-double.js deleted file mode 100644 index 41b976260..000000000 --- a/icons-react/icons-js/corner-up-left-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerUpLeftDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerUpLeftDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-left.js b/icons-react/icons-js/corner-up-left.js deleted file mode 100644 index cee899188..000000000 --- a/icons-react/icons-js/corner-up-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerUpLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-right-double.js b/icons-react/icons-js/corner-up-right-double.js deleted file mode 100644 index e39634a0c..000000000 --- a/icons-react/icons-js/corner-up-right-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerUpRightDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerUpRightDouble; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-right.js b/icons-react/icons-js/corner-up-right.js deleted file mode 100644 index a8d25ee3e..000000000 --- a/icons-react/icons-js/corner-up-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCornerUpRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCornerUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/cpu-2.js b/icons-react/icons-js/cpu-2.js deleted file mode 100644 index 734e60e99..000000000 --- a/icons-react/icons-js/cpu-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCpu2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCpu2; \ No newline at end of file diff --git a/icons-react/icons-js/cpu-off.js b/icons-react/icons-js/cpu-off.js deleted file mode 100644 index ccb73c49f..000000000 --- a/icons-react/icons-js/cpu-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCpuOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCpuOff; \ No newline at end of file diff --git a/icons-react/icons-js/cpu.js b/icons-react/icons-js/cpu.js deleted file mode 100644 index c0baefb57..000000000 --- a/icons-react/icons-js/cpu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCpu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCpu; \ No newline at end of file diff --git a/icons-react/icons-js/crane-off.js b/icons-react/icons-js/crane-off.js deleted file mode 100644 index 88f522519..000000000 --- a/icons-react/icons-js/crane-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCraneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCraneOff; \ No newline at end of file diff --git a/icons-react/icons-js/crane.js b/icons-react/icons-js/crane.js deleted file mode 100644 index e9d5001c5..000000000 --- a/icons-react/icons-js/crane.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrane({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrane; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-by.js b/icons-react/icons-js/creative-commons-by.js deleted file mode 100644 index 8e7967d1f..000000000 --- a/icons-react/icons-js/creative-commons-by.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsBy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsBy; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-nc.js b/icons-react/icons-js/creative-commons-nc.js deleted file mode 100644 index dc915f3ee..000000000 --- a/icons-react/icons-js/creative-commons-nc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsNc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsNc; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-nd.js b/icons-react/icons-js/creative-commons-nd.js deleted file mode 100644 index 3dcc130ca..000000000 --- a/icons-react/icons-js/creative-commons-nd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsNd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsNd; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-off.js b/icons-react/icons-js/creative-commons-off.js deleted file mode 100644 index d07d14ef3..000000000 --- a/icons-react/icons-js/creative-commons-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsOff; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-sa.js b/icons-react/icons-js/creative-commons-sa.js deleted file mode 100644 index 8467601e9..000000000 --- a/icons-react/icons-js/creative-commons-sa.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsSa({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsSa; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons-zero.js b/icons-react/icons-js/creative-commons-zero.js deleted file mode 100644 index f7cf1de69..000000000 --- a/icons-react/icons-js/creative-commons-zero.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommonsZero({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommonsZero; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons.js b/icons-react/icons-js/creative-commons.js deleted file mode 100644 index 071d63ea1..000000000 --- a/icons-react/icons-js/creative-commons.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreativeCommons({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreativeCommons; \ No newline at end of file diff --git a/icons-react/icons-js/credit-card-off.js b/icons-react/icons-js/credit-card-off.js deleted file mode 100644 index 6682d29ed..000000000 --- a/icons-react/icons-js/credit-card-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreditCardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreditCardOff; \ No newline at end of file diff --git a/icons-react/icons-js/credit-card.js b/icons-react/icons-js/credit-card.js deleted file mode 100644 index 43805f037..000000000 --- a/icons-react/icons-js/credit-card.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCreditCard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCreditCard; \ No newline at end of file diff --git a/icons-react/icons-js/cricket.js b/icons-react/icons-js/cricket.js deleted file mode 100644 index e018d9ca7..000000000 --- a/icons-react/icons-js/cricket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCricket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCricket; \ No newline at end of file diff --git a/icons-react/icons-js/crop.js b/icons-react/icons-js/crop.js deleted file mode 100644 index 027a5d8ae..000000000 --- a/icons-react/icons-js/crop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrop; \ No newline at end of file diff --git a/icons-react/icons-js/cross-off.js b/icons-react/icons-js/cross-off.js deleted file mode 100644 index 3901eabc3..000000000 --- a/icons-react/icons-js/cross-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrossOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrossOff; \ No newline at end of file diff --git a/icons-react/icons-js/cross.js b/icons-react/icons-js/cross.js deleted file mode 100644 index ecedd25ba..000000000 --- a/icons-react/icons-js/cross.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCross({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCross; \ No newline at end of file diff --git a/icons-react/icons-js/crosshair.js b/icons-react/icons-js/crosshair.js deleted file mode 100644 index 1bead029a..000000000 --- a/icons-react/icons-js/crosshair.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrosshair({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrosshair; \ No newline at end of file diff --git a/icons-react/icons-js/crown-off.js b/icons-react/icons-js/crown-off.js deleted file mode 100644 index 0df2787d2..000000000 --- a/icons-react/icons-js/crown-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrownOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrownOff; \ No newline at end of file diff --git a/icons-react/icons-js/crown.js b/icons-react/icons-js/crown.js deleted file mode 100644 index 8f5017463..000000000 --- a/icons-react/icons-js/crown.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrown; \ No newline at end of file diff --git a/icons-react/icons-js/crutches-off.js b/icons-react/icons-js/crutches-off.js deleted file mode 100644 index 287a8114b..000000000 --- a/icons-react/icons-js/crutches-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrutchesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrutchesOff; \ No newline at end of file diff --git a/icons-react/icons-js/crutches.js b/icons-react/icons-js/crutches.js deleted file mode 100644 index c54a40e4b..000000000 --- a/icons-react/icons-js/crutches.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrutches({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrutches; \ No newline at end of file diff --git a/icons-react/icons-js/crystal-ball.js b/icons-react/icons-js/crystal-ball.js deleted file mode 100644 index f0b4b0de6..000000000 --- a/icons-react/icons-js/crystal-ball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCrystalBall({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCrystalBall; \ No newline at end of file diff --git a/icons-react/icons-js/cube-send.js b/icons-react/icons-js/cube-send.js deleted file mode 100644 index 49f0f78ad..000000000 --- a/icons-react/icons-js/cube-send.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCubeSend({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCubeSend; \ No newline at end of file diff --git a/icons-react/icons-js/cube-unfolded.js b/icons-react/icons-js/cube-unfolded.js deleted file mode 100644 index c95df831e..000000000 --- a/icons-react/icons-js/cube-unfolded.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCubeUnfolded({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCubeUnfolded; \ No newline at end of file diff --git a/icons-react/icons-js/cup-off.js b/icons-react/icons-js/cup-off.js deleted file mode 100644 index da86640fe..000000000 --- a/icons-react/icons-js/cup-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCupOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCupOff; \ No newline at end of file diff --git a/icons-react/icons-js/cup.js b/icons-react/icons-js/cup.js deleted file mode 100644 index 655b43940..000000000 --- a/icons-react/icons-js/cup.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCup({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCup; \ No newline at end of file diff --git a/icons-react/icons-js/curling.js b/icons-react/icons-js/curling.js deleted file mode 100644 index f0a46fa24..000000000 --- a/icons-react/icons-js/curling.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurling({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurling; \ No newline at end of file diff --git a/icons-react/icons-js/curly-loop.js b/icons-react/icons-js/curly-loop.js deleted file mode 100644 index 8e38b6ee7..000000000 --- a/icons-react/icons-js/curly-loop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurlyLoop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurlyLoop; \ No newline at end of file diff --git a/icons-react/icons-js/currency-afghani.js b/icons-react/icons-js/currency-afghani.js deleted file mode 100644 index 25deb618b..000000000 --- a/icons-react/icons-js/currency-afghani.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyAfghani({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyAfghani; \ No newline at end of file diff --git a/icons-react/icons-js/currency-bahraini.js b/icons-react/icons-js/currency-bahraini.js deleted file mode 100644 index b0f2190e0..000000000 --- a/icons-react/icons-js/currency-bahraini.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyBahraini({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyBahraini; \ No newline at end of file diff --git a/icons-react/icons-js/currency-baht.js b/icons-react/icons-js/currency-baht.js deleted file mode 100644 index d93696def..000000000 --- a/icons-react/icons-js/currency-baht.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyBaht({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyBaht; \ No newline at end of file diff --git a/icons-react/icons-js/currency-bath.js b/icons-react/icons-js/currency-bath.js deleted file mode 100644 index 504352324..000000000 --- a/icons-react/icons-js/currency-bath.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyBath({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyBath; \ No newline at end of file diff --git a/icons-react/icons-js/currency-bitcoin.js b/icons-react/icons-js/currency-bitcoin.js deleted file mode 100644 index 159264354..000000000 --- a/icons-react/icons-js/currency-bitcoin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyBitcoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyBitcoin; \ No newline at end of file diff --git a/icons-react/icons-js/currency-cent.js b/icons-react/icons-js/currency-cent.js deleted file mode 100644 index 8a8cfdff9..000000000 --- a/icons-react/icons-js/currency-cent.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyCent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyCent; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dinar.js b/icons-react/icons-js/currency-dinar.js deleted file mode 100644 index ad7be807a..000000000 --- a/icons-react/icons-js/currency-dinar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDinar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDinar; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dirham.js b/icons-react/icons-js/currency-dirham.js deleted file mode 100644 index c0b149a07..000000000 --- a/icons-react/icons-js/currency-dirham.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDirham({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDirham; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dogecoin.js b/icons-react/icons-js/currency-dogecoin.js deleted file mode 100644 index cb6a54739..000000000 --- a/icons-react/icons-js/currency-dogecoin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDogecoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDogecoin; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-australian.js b/icons-react/icons-js/currency-dollar-australian.js deleted file mode 100644 index 3bd78f365..000000000 --- a/icons-react/icons-js/currency-dollar-australian.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarAustralian({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarAustralian; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-brunei.js b/icons-react/icons-js/currency-dollar-brunei.js deleted file mode 100644 index 570bda316..000000000 --- a/icons-react/icons-js/currency-dollar-brunei.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarBrunei({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarBrunei; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-canadian.js b/icons-react/icons-js/currency-dollar-canadian.js deleted file mode 100644 index 6fb39070b..000000000 --- a/icons-react/icons-js/currency-dollar-canadian.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarCanadian({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarCanadian; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-guyanese.js b/icons-react/icons-js/currency-dollar-guyanese.js deleted file mode 100644 index 69facba94..000000000 --- a/icons-react/icons-js/currency-dollar-guyanese.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarGuyanese({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarGuyanese; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-off.js b/icons-react/icons-js/currency-dollar-off.js deleted file mode 100644 index 33d1d0141..000000000 --- a/icons-react/icons-js/currency-dollar-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarOff; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-singapore.js b/icons-react/icons-js/currency-dollar-singapore.js deleted file mode 100644 index 0c5b726f8..000000000 --- a/icons-react/icons-js/currency-dollar-singapore.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarSingapore({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarSingapore; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar-zimbabwean.js b/icons-react/icons-js/currency-dollar-zimbabwean.js deleted file mode 100644 index b3769fc47..000000000 --- a/icons-react/icons-js/currency-dollar-zimbabwean.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollarZimbabwean({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollarZimbabwean; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar.js b/icons-react/icons-js/currency-dollar.js deleted file mode 100644 index 44f2f4a34..000000000 --- a/icons-react/icons-js/currency-dollar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDollar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDollar; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dong.js b/icons-react/icons-js/currency-dong.js deleted file mode 100644 index e1aae3a58..000000000 --- a/icons-react/icons-js/currency-dong.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDong({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDong; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dram.js b/icons-react/icons-js/currency-dram.js deleted file mode 100644 index b55009b33..000000000 --- a/icons-react/icons-js/currency-dram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyDram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyDram; \ No newline at end of file diff --git a/icons-react/icons-js/currency-ethereum.js b/icons-react/icons-js/currency-ethereum.js deleted file mode 100644 index bde5cd7a3..000000000 --- a/icons-react/icons-js/currency-ethereum.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyEthereum({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyEthereum; \ No newline at end of file diff --git a/icons-react/icons-js/currency-euro-off.js b/icons-react/icons-js/currency-euro-off.js deleted file mode 100644 index 80a732345..000000000 --- a/icons-react/icons-js/currency-euro-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyEuroOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyEuroOff; \ No newline at end of file diff --git a/icons-react/icons-js/currency-euro.js b/icons-react/icons-js/currency-euro.js deleted file mode 100644 index 05238a33f..000000000 --- a/icons-react/icons-js/currency-euro.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyEuro({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyEuro; \ No newline at end of file diff --git a/icons-react/icons-js/currency-forint.js b/icons-react/icons-js/currency-forint.js deleted file mode 100644 index cb4148ab3..000000000 --- a/icons-react/icons-js/currency-forint.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyForint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyForint; \ No newline at end of file diff --git a/icons-react/icons-js/currency-frank.js b/icons-react/icons-js/currency-frank.js deleted file mode 100644 index 21cb2b16d..000000000 --- a/icons-react/icons-js/currency-frank.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyFrank({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyFrank; \ No newline at end of file diff --git a/icons-react/icons-js/currency-guarani.js b/icons-react/icons-js/currency-guarani.js deleted file mode 100644 index 389c19144..000000000 --- a/icons-react/icons-js/currency-guarani.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyGuarani({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyGuarani; \ No newline at end of file diff --git a/icons-react/icons-js/currency-hryvnia.js b/icons-react/icons-js/currency-hryvnia.js deleted file mode 100644 index 55280d15f..000000000 --- a/icons-react/icons-js/currency-hryvnia.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyHryvnia({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyHryvnia; \ No newline at end of file diff --git a/icons-react/icons-js/currency-kip.js b/icons-react/icons-js/currency-kip.js deleted file mode 100644 index 4bf58ff47..000000000 --- a/icons-react/icons-js/currency-kip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyKip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyKip; \ No newline at end of file diff --git a/icons-react/icons-js/currency-krone-czech.js b/icons-react/icons-js/currency-krone-czech.js deleted file mode 100644 index 0b2f7f5b7..000000000 --- a/icons-react/icons-js/currency-krone-czech.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyKroneCzech({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyKroneCzech; \ No newline at end of file diff --git a/icons-react/icons-js/currency-krone-danish.js b/icons-react/icons-js/currency-krone-danish.js deleted file mode 100644 index af22b685d..000000000 --- a/icons-react/icons-js/currency-krone-danish.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyKroneDanish({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyKroneDanish; \ No newline at end of file diff --git a/icons-react/icons-js/currency-krone-swedish.js b/icons-react/icons-js/currency-krone-swedish.js deleted file mode 100644 index c1777df6a..000000000 --- a/icons-react/icons-js/currency-krone-swedish.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyKroneSwedish({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyKroneSwedish; \ No newline at end of file diff --git a/icons-react/icons-js/currency-lari.js b/icons-react/icons-js/currency-lari.js deleted file mode 100644 index c6b03cd7a..000000000 --- a/icons-react/icons-js/currency-lari.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyLari({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyLari; \ No newline at end of file diff --git a/icons-react/icons-js/currency-leu.js b/icons-react/icons-js/currency-leu.js deleted file mode 100644 index 6d9776a49..000000000 --- a/icons-react/icons-js/currency-leu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyLeu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyLeu; \ No newline at end of file diff --git a/icons-react/icons-js/currency-lira.js b/icons-react/icons-js/currency-lira.js deleted file mode 100644 index 88de7b11b..000000000 --- a/icons-react/icons-js/currency-lira.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyLira({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyLira; \ No newline at end of file diff --git a/icons-react/icons-js/currency-litecoin.js b/icons-react/icons-js/currency-litecoin.js deleted file mode 100644 index e98c6c639..000000000 --- a/icons-react/icons-js/currency-litecoin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyLitecoin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyLitecoin; \ No newline at end of file diff --git a/icons-react/icons-js/currency-lyd.js b/icons-react/icons-js/currency-lyd.js deleted file mode 100644 index c9be6b5b1..000000000 --- a/icons-react/icons-js/currency-lyd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyLyd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyLyd; \ No newline at end of file diff --git a/icons-react/icons-js/currency-manat.js b/icons-react/icons-js/currency-manat.js deleted file mode 100644 index b48886ccf..000000000 --- a/icons-react/icons-js/currency-manat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyManat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyManat; \ No newline at end of file diff --git a/icons-react/icons-js/currency-monero.js b/icons-react/icons-js/currency-monero.js deleted file mode 100644 index 9c9829e5a..000000000 --- a/icons-react/icons-js/currency-monero.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyMonero({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyMonero; \ No newline at end of file diff --git a/icons-react/icons-js/currency-naira.js b/icons-react/icons-js/currency-naira.js deleted file mode 100644 index e646d0426..000000000 --- a/icons-react/icons-js/currency-naira.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyNaira({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyNaira; \ No newline at end of file diff --git a/icons-react/icons-js/currency-off.js b/icons-react/icons-js/currency-off.js deleted file mode 100644 index c0cb82ea6..000000000 --- a/icons-react/icons-js/currency-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyOff; \ No newline at end of file diff --git a/icons-react/icons-js/currency-paanga.js b/icons-react/icons-js/currency-paanga.js deleted file mode 100644 index f69d3b628..000000000 --- a/icons-react/icons-js/currency-paanga.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyPaanga({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyPaanga; \ No newline at end of file diff --git a/icons-react/icons-js/currency-peso.js b/icons-react/icons-js/currency-peso.js deleted file mode 100644 index cb2203d86..000000000 --- a/icons-react/icons-js/currency-peso.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyPeso({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyPeso; \ No newline at end of file diff --git a/icons-react/icons-js/currency-pound-off.js b/icons-react/icons-js/currency-pound-off.js deleted file mode 100644 index 4cedcc909..000000000 --- a/icons-react/icons-js/currency-pound-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyPoundOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyPoundOff; \ No newline at end of file diff --git a/icons-react/icons-js/currency-pound.js b/icons-react/icons-js/currency-pound.js deleted file mode 100644 index 4ebaf68af..000000000 --- a/icons-react/icons-js/currency-pound.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyPound({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyPound; \ No newline at end of file diff --git a/icons-react/icons-js/currency-quetzal.js b/icons-react/icons-js/currency-quetzal.js deleted file mode 100644 index 5a9a7189d..000000000 --- a/icons-react/icons-js/currency-quetzal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyQuetzal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyQuetzal; \ No newline at end of file diff --git a/icons-react/icons-js/currency-real.js b/icons-react/icons-js/currency-real.js deleted file mode 100644 index 1e907815c..000000000 --- a/icons-react/icons-js/currency-real.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyReal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyReal; \ No newline at end of file diff --git a/icons-react/icons-js/currency-renminbi.js b/icons-react/icons-js/currency-renminbi.js deleted file mode 100644 index 4581ea4c7..000000000 --- a/icons-react/icons-js/currency-renminbi.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRenminbi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRenminbi; \ No newline at end of file diff --git a/icons-react/icons-js/currency-ripple.js b/icons-react/icons-js/currency-ripple.js deleted file mode 100644 index 0155785af..000000000 --- a/icons-react/icons-js/currency-ripple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRipple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRipple; \ No newline at end of file diff --git a/icons-react/icons-js/currency-riyal.js b/icons-react/icons-js/currency-riyal.js deleted file mode 100644 index e12644607..000000000 --- a/icons-react/icons-js/currency-riyal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRiyal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRiyal; \ No newline at end of file diff --git a/icons-react/icons-js/currency-rubel.js b/icons-react/icons-js/currency-rubel.js deleted file mode 100644 index d35fefccf..000000000 --- a/icons-react/icons-js/currency-rubel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRubel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRubel; \ No newline at end of file diff --git a/icons-react/icons-js/currency-rufiyaa.js b/icons-react/icons-js/currency-rufiyaa.js deleted file mode 100644 index 5fd8828f9..000000000 --- a/icons-react/icons-js/currency-rufiyaa.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRufiyaa({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRufiyaa; \ No newline at end of file diff --git a/icons-react/icons-js/currency-rupee-nepalese.js b/icons-react/icons-js/currency-rupee-nepalese.js deleted file mode 100644 index 091e1c616..000000000 --- a/icons-react/icons-js/currency-rupee-nepalese.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRupeeNepalese({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRupeeNepalese; \ No newline at end of file diff --git a/icons-react/icons-js/currency-rupee.js b/icons-react/icons-js/currency-rupee.js deleted file mode 100644 index ddd6bf394..000000000 --- a/icons-react/icons-js/currency-rupee.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyRupee({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyRupee; \ No newline at end of file diff --git a/icons-react/icons-js/currency-shekel.js b/icons-react/icons-js/currency-shekel.js deleted file mode 100644 index 8de05536d..000000000 --- a/icons-react/icons-js/currency-shekel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyShekel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyShekel; \ No newline at end of file diff --git a/icons-react/icons-js/currency-solana.js b/icons-react/icons-js/currency-solana.js deleted file mode 100644 index 84539f4c8..000000000 --- a/icons-react/icons-js/currency-solana.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencySolana({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencySolana; \ No newline at end of file diff --git a/icons-react/icons-js/currency-som.js b/icons-react/icons-js/currency-som.js deleted file mode 100644 index d5bba29f7..000000000 --- a/icons-react/icons-js/currency-som.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencySom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencySom; \ No newline at end of file diff --git a/icons-react/icons-js/currency-taka.js b/icons-react/icons-js/currency-taka.js deleted file mode 100644 index ad70fcb46..000000000 --- a/icons-react/icons-js/currency-taka.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyTaka({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyTaka; \ No newline at end of file diff --git a/icons-react/icons-js/currency-tenge.js b/icons-react/icons-js/currency-tenge.js deleted file mode 100644 index e3e389568..000000000 --- a/icons-react/icons-js/currency-tenge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyTenge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyTenge; \ No newline at end of file diff --git a/icons-react/icons-js/currency-tugrik.js b/icons-react/icons-js/currency-tugrik.js deleted file mode 100644 index 2ca7a33d5..000000000 --- a/icons-react/icons-js/currency-tugrik.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyTugrik({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyTugrik; \ No newline at end of file diff --git a/icons-react/icons-js/currency-won.js b/icons-react/icons-js/currency-won.js deleted file mode 100644 index 9e984f72c..000000000 --- a/icons-react/icons-js/currency-won.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyWon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyWon; \ No newline at end of file diff --git a/icons-react/icons-js/currency-yen-off.js b/icons-react/icons-js/currency-yen-off.js deleted file mode 100644 index 0b4c8979c..000000000 --- a/icons-react/icons-js/currency-yen-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyYenOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyYenOff; \ No newline at end of file diff --git a/icons-react/icons-js/currency-yen.js b/icons-react/icons-js/currency-yen.js deleted file mode 100644 index 81a4e6f2f..000000000 --- a/icons-react/icons-js/currency-yen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyYen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyYen; \ No newline at end of file diff --git a/icons-react/icons-js/currency-yuan.js b/icons-react/icons-js/currency-yuan.js deleted file mode 100644 index a5b1d894a..000000000 --- a/icons-react/icons-js/currency-yuan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyYuan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyYuan; \ No newline at end of file diff --git a/icons-react/icons-js/currency-zloty.js b/icons-react/icons-js/currency-zloty.js deleted file mode 100644 index 91bd5411e..000000000 --- a/icons-react/icons-js/currency-zloty.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrencyZloty({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrencyZloty; \ No newline at end of file diff --git a/icons-react/icons-js/currency.js b/icons-react/icons-js/currency.js deleted file mode 100644 index 027853670..000000000 --- a/icons-react/icons-js/currency.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrency({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrency; \ No newline at end of file diff --git a/icons-react/icons-js/current-location-off.js b/icons-react/icons-js/current-location-off.js deleted file mode 100644 index f2793cad5..000000000 --- a/icons-react/icons-js/current-location-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrentLocationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrentLocationOff; \ No newline at end of file diff --git a/icons-react/icons-js/current-location.js b/icons-react/icons-js/current-location.js deleted file mode 100644 index 9af06edf5..000000000 --- a/icons-react/icons-js/current-location.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCurrentLocation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCurrentLocation; \ No newline at end of file diff --git a/icons-react/icons-js/cursor-off.js b/icons-react/icons-js/cursor-off.js deleted file mode 100644 index fcad85307..000000000 --- a/icons-react/icons-js/cursor-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCursorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCursorOff; \ No newline at end of file diff --git a/icons-react/icons-js/cursor-text.js b/icons-react/icons-js/cursor-text.js deleted file mode 100644 index 827145062..000000000 --- a/icons-react/icons-js/cursor-text.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCursorText({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCursorText; \ No newline at end of file diff --git a/icons-react/icons-js/cut.js b/icons-react/icons-js/cut.js deleted file mode 100644 index 2255b785c..000000000 --- a/icons-react/icons-js/cut.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCut; \ No newline at end of file diff --git a/icons-react/icons-js/cylinder.js b/icons-react/icons-js/cylinder.js deleted file mode 100644 index 4564be173..000000000 --- a/icons-react/icons-js/cylinder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconCylinder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconCylinder; \ No newline at end of file diff --git a/icons-react/icons-js/dashboard-off.js b/icons-react/icons-js/dashboard-off.js deleted file mode 100644 index 4cc5787ce..000000000 --- a/icons-react/icons-js/dashboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDashboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDashboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/dashboard.js b/icons-react/icons-js/dashboard.js deleted file mode 100644 index 6e6d3d707..000000000 --- a/icons-react/icons-js/dashboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDashboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDashboard; \ No newline at end of file diff --git a/icons-react/icons-js/database-export.js b/icons-react/icons-js/database-export.js deleted file mode 100644 index ea23f183f..000000000 --- a/icons-react/icons-js/database-export.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDatabaseExport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDatabaseExport; \ No newline at end of file diff --git a/icons-react/icons-js/database-import.js b/icons-react/icons-js/database-import.js deleted file mode 100644 index 54125a7db..000000000 --- a/icons-react/icons-js/database-import.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDatabaseImport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDatabaseImport; \ No newline at end of file diff --git a/icons-react/icons-js/database-off.js b/icons-react/icons-js/database-off.js deleted file mode 100644 index a4e7275c0..000000000 --- a/icons-react/icons-js/database-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDatabaseOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDatabaseOff; \ No newline at end of file diff --git a/icons-react/icons-js/database.js b/icons-react/icons-js/database.js deleted file mode 100644 index b6590f9ed..000000000 --- a/icons-react/icons-js/database.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDatabase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDatabase; \ No newline at end of file diff --git a/icons-react/icons-js/deer.js b/icons-react/icons-js/deer.js deleted file mode 100644 index f1c417da8..000000000 --- a/icons-react/icons-js/deer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeer; \ No newline at end of file diff --git a/icons-react/icons-js/delta.js b/icons-react/icons-js/delta.js deleted file mode 100644 index 73d7da63c..000000000 --- a/icons-react/icons-js/delta.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDelta({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDelta; \ No newline at end of file diff --git a/icons-react/icons-js/dental-broken.js b/icons-react/icons-js/dental-broken.js deleted file mode 100644 index 8f70d914a..000000000 --- a/icons-react/icons-js/dental-broken.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDentalBroken({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDentalBroken; \ No newline at end of file diff --git a/icons-react/icons-js/dental-off.js b/icons-react/icons-js/dental-off.js deleted file mode 100644 index 616a468a1..000000000 --- a/icons-react/icons-js/dental-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDentalOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDentalOff; \ No newline at end of file diff --git a/icons-react/icons-js/dental.js b/icons-react/icons-js/dental.js deleted file mode 100644 index c618e2e89..000000000 --- a/icons-react/icons-js/dental.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDental({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDental; \ No newline at end of file diff --git a/icons-react/icons-js/details-off.js b/icons-react/icons-js/details-off.js deleted file mode 100644 index bdfe4e1a7..000000000 --- a/icons-react/icons-js/details-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDetailsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDetailsOff; \ No newline at end of file diff --git a/icons-react/icons-js/details.js b/icons-react/icons-js/details.js deleted file mode 100644 index 5336ad3a5..000000000 --- a/icons-react/icons-js/details.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDetails({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDetails; \ No newline at end of file diff --git a/icons-react/icons-js/device-airpods-case.js b/icons-react/icons-js/device-airpods-case.js deleted file mode 100644 index 6edc5804a..000000000 --- a/icons-react/icons-js/device-airpods-case.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceAirpodsCase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceAirpodsCase; \ No newline at end of file diff --git a/icons-react/icons-js/device-airpods.js b/icons-react/icons-js/device-airpods.js deleted file mode 100644 index 0dfef2cf4..000000000 --- a/icons-react/icons-js/device-airpods.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceAirpods({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceAirpods; \ No newline at end of file diff --git a/icons-react/icons-js/device-analytics.js b/icons-react/icons-js/device-analytics.js deleted file mode 100644 index 545be4ccb..000000000 --- a/icons-react/icons-js/device-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/device-audio-tape.js b/icons-react/icons-js/device-audio-tape.js deleted file mode 100644 index aae897bc8..000000000 --- a/icons-react/icons-js/device-audio-tape.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceAudioTape({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceAudioTape; \ No newline at end of file diff --git a/icons-react/icons-js/device-camera-phone.js b/icons-react/icons-js/device-camera-phone.js deleted file mode 100644 index 7524b1d8b..000000000 --- a/icons-react/icons-js/device-camera-phone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceCameraPhone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceCameraPhone; \ No newline at end of file diff --git a/icons-react/icons-js/device-cctv-off.js b/icons-react/icons-js/device-cctv-off.js deleted file mode 100644 index d1d41b9e6..000000000 --- a/icons-react/icons-js/device-cctv-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceCctvOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceCctvOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-cctv.js b/icons-react/icons-js/device-cctv.js deleted file mode 100644 index 7fffcea04..000000000 --- a/icons-react/icons-js/device-cctv.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceCctv({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceCctv; \ No newline at end of file diff --git a/icons-react/icons-js/device-computer-camera-off.js b/icons-react/icons-js/device-computer-camera-off.js deleted file mode 100644 index a05be94c6..000000000 --- a/icons-react/icons-js/device-computer-camera-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceComputerCameraOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceComputerCameraOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-computer-camera.js b/icons-react/icons-js/device-computer-camera.js deleted file mode 100644 index 223932acd..000000000 --- a/icons-react/icons-js/device-computer-camera.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceComputerCamera({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceComputerCamera; \ No newline at end of file diff --git a/icons-react/icons-js/device-desktop-analytics.js b/icons-react/icons-js/device-desktop-analytics.js deleted file mode 100644 index 25e3775d8..000000000 --- a/icons-react/icons-js/device-desktop-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceDesktopAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceDesktopAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/device-desktop-off.js b/icons-react/icons-js/device-desktop-off.js deleted file mode 100644 index 5d27e8709..000000000 --- a/icons-react/icons-js/device-desktop-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceDesktopOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceDesktopOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-desktop.js b/icons-react/icons-js/device-desktop.js deleted file mode 100644 index dbca3ef4a..000000000 --- a/icons-react/icons-js/device-desktop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceDesktop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceDesktop; \ No newline at end of file diff --git a/icons-react/icons-js/device-floppy.js b/icons-react/icons-js/device-floppy.js deleted file mode 100644 index b967a01ee..000000000 --- a/icons-react/icons-js/device-floppy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceFloppy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceFloppy; \ No newline at end of file diff --git a/icons-react/icons-js/device-gamepad-2.js b/icons-react/icons-js/device-gamepad-2.js deleted file mode 100644 index d6c2f041f..000000000 --- a/icons-react/icons-js/device-gamepad-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceGamepad2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceGamepad2; \ No newline at end of file diff --git a/icons-react/icons-js/device-gamepad.js b/icons-react/icons-js/device-gamepad.js deleted file mode 100644 index de3c2279e..000000000 --- a/icons-react/icons-js/device-gamepad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceGamepad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceGamepad; \ No newline at end of file diff --git a/icons-react/icons-js/device-heart-monitor.js b/icons-react/icons-js/device-heart-monitor.js deleted file mode 100644 index 1932a3668..000000000 --- a/icons-react/icons-js/device-heart-monitor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceHeartMonitor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceHeartMonitor; \ No newline at end of file diff --git a/icons-react/icons-js/device-ipad-horizontal.js b/icons-react/icons-js/device-ipad-horizontal.js deleted file mode 100644 index 343507075..000000000 --- a/icons-react/icons-js/device-ipad-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceIpadHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceIpadHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/device-ipad.js b/icons-react/icons-js/device-ipad.js deleted file mode 100644 index 1f9595505..000000000 --- a/icons-react/icons-js/device-ipad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceIpad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceIpad; \ No newline at end of file diff --git a/icons-react/icons-js/device-landline-phone.js b/icons-react/icons-js/device-landline-phone.js deleted file mode 100644 index 48832c0fc..000000000 --- a/icons-react/icons-js/device-landline-phone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceLandlinePhone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceLandlinePhone; \ No newline at end of file diff --git a/icons-react/icons-js/device-laptop-off.js b/icons-react/icons-js/device-laptop-off.js deleted file mode 100644 index 1781df4c9..000000000 --- a/icons-react/icons-js/device-laptop-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceLaptopOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceLaptopOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-laptop.js b/icons-react/icons-js/device-laptop.js deleted file mode 100644 index 448e9bb1f..000000000 --- a/icons-react/icons-js/device-laptop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceLaptop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceLaptop; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-charging.js b/icons-react/icons-js/device-mobile-charging.js deleted file mode 100644 index 170846c6e..000000000 --- a/icons-react/icons-js/device-mobile-charging.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobileCharging({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobileCharging; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-message.js b/icons-react/icons-js/device-mobile-message.js deleted file mode 100644 index d7e844075..000000000 --- a/icons-react/icons-js/device-mobile-message.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobileMessage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobileMessage; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-off.js b/icons-react/icons-js/device-mobile-off.js deleted file mode 100644 index 191ac02b6..000000000 --- a/icons-react/icons-js/device-mobile-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobileOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobileOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-rotated.js b/icons-react/icons-js/device-mobile-rotated.js deleted file mode 100644 index 257e0181f..000000000 --- a/icons-react/icons-js/device-mobile-rotated.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobileRotated({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobileRotated; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-vibration.js b/icons-react/icons-js/device-mobile-vibration.js deleted file mode 100644 index 3bb94d22e..000000000 --- a/icons-react/icons-js/device-mobile-vibration.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobileVibration({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobileVibration; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile.js b/icons-react/icons-js/device-mobile.js deleted file mode 100644 index c06535153..000000000 --- a/icons-react/icons-js/device-mobile.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceMobile({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceMobile; \ No newline at end of file diff --git a/icons-react/icons-js/device-nintendo-off.js b/icons-react/icons-js/device-nintendo-off.js deleted file mode 100644 index 67ce10f7d..000000000 --- a/icons-react/icons-js/device-nintendo-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceNintendoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceNintendoOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-nintendo.js b/icons-react/icons-js/device-nintendo.js deleted file mode 100644 index 5a9a68396..000000000 --- a/icons-react/icons-js/device-nintendo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceNintendo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceNintendo; \ No newline at end of file diff --git a/icons-react/icons-js/device-sd-card.js b/icons-react/icons-js/device-sd-card.js deleted file mode 100644 index 1955fff45..000000000 --- a/icons-react/icons-js/device-sd-card.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSdCard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSdCard; \ No newline at end of file diff --git a/icons-react/icons-js/device-sim-1.js b/icons-react/icons-js/device-sim-1.js deleted file mode 100644 index 898dc49ca..000000000 --- a/icons-react/icons-js/device-sim-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSim1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSim1; \ No newline at end of file diff --git a/icons-react/icons-js/device-sim-2.js b/icons-react/icons-js/device-sim-2.js deleted file mode 100644 index 005defa3f..000000000 --- a/icons-react/icons-js/device-sim-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSim2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSim2; \ No newline at end of file diff --git a/icons-react/icons-js/device-sim-3.js b/icons-react/icons-js/device-sim-3.js deleted file mode 100644 index d44394dd8..000000000 --- a/icons-react/icons-js/device-sim-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSim3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSim3; \ No newline at end of file diff --git a/icons-react/icons-js/device-sim.js b/icons-react/icons-js/device-sim.js deleted file mode 100644 index 0761450d7..000000000 --- a/icons-react/icons-js/device-sim.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSim({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSim; \ No newline at end of file diff --git a/icons-react/icons-js/device-speaker-off.js b/icons-react/icons-js/device-speaker-off.js deleted file mode 100644 index e4b889809..000000000 --- a/icons-react/icons-js/device-speaker-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSpeakerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSpeakerOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-speaker.js b/icons-react/icons-js/device-speaker.js deleted file mode 100644 index ea0b50fca..000000000 --- a/icons-react/icons-js/device-speaker.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceSpeaker({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceSpeaker; \ No newline at end of file diff --git a/icons-react/icons-js/device-tablet-off.js b/icons-react/icons-js/device-tablet-off.js deleted file mode 100644 index 02e6dfe18..000000000 --- a/icons-react/icons-js/device-tablet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceTabletOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceTabletOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-tablet.js b/icons-react/icons-js/device-tablet.js deleted file mode 100644 index 347fb5af4..000000000 --- a/icons-react/icons-js/device-tablet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceTablet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceTablet; \ No newline at end of file diff --git a/icons-react/icons-js/device-tv-off.js b/icons-react/icons-js/device-tv-off.js deleted file mode 100644 index 59cb0468d..000000000 --- a/icons-react/icons-js/device-tv-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceTvOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceTvOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-tv-old.js b/icons-react/icons-js/device-tv-old.js deleted file mode 100644 index 8ae7a275e..000000000 --- a/icons-react/icons-js/device-tv-old.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceTvOld({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceTvOld; \ No newline at end of file diff --git a/icons-react/icons-js/device-tv.js b/icons-react/icons-js/device-tv.js deleted file mode 100644 index c21e135a9..000000000 --- a/icons-react/icons-js/device-tv.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceTv({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceTv; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch-off.js b/icons-react/icons-js/device-watch-off.js deleted file mode 100644 index 5604f5df9..000000000 --- a/icons-react/icons-js/device-watch-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceWatchOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceWatchOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch-stats-2.js b/icons-react/icons-js/device-watch-stats-2.js deleted file mode 100644 index ba8ffb825..000000000 --- a/icons-react/icons-js/device-watch-stats-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceWatchStats2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceWatchStats2; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch-stats.js b/icons-react/icons-js/device-watch-stats.js deleted file mode 100644 index 21ef5c98e..000000000 --- a/icons-react/icons-js/device-watch-stats.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceWatchStats({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceWatchStats; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch.js b/icons-react/icons-js/device-watch.js deleted file mode 100644 index c6e2ba72f..000000000 --- a/icons-react/icons-js/device-watch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDeviceWatch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDeviceWatch; \ No newline at end of file diff --git a/icons-react/icons-js/devices-2.js b/icons-react/icons-js/devices-2.js deleted file mode 100644 index 1e8093d47..000000000 --- a/icons-react/icons-js/devices-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDevices2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDevices2; \ No newline at end of file diff --git a/icons-react/icons-js/devices-off.js b/icons-react/icons-js/devices-off.js deleted file mode 100644 index dec4e94ee..000000000 --- a/icons-react/icons-js/devices-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDevicesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDevicesOff; \ No newline at end of file diff --git a/icons-react/icons-js/devices-pc-off.js b/icons-react/icons-js/devices-pc-off.js deleted file mode 100644 index b65673d61..000000000 --- a/icons-react/icons-js/devices-pc-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDevicesPcOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDevicesPcOff; \ No newline at end of file diff --git a/icons-react/icons-js/devices-pc.js b/icons-react/icons-js/devices-pc.js deleted file mode 100644 index 17c312226..000000000 --- a/icons-react/icons-js/devices-pc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDevicesPc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDevicesPc; \ No newline at end of file diff --git a/icons-react/icons-js/devices.js b/icons-react/icons-js/devices.js deleted file mode 100644 index 7ca1f84b5..000000000 --- a/icons-react/icons-js/devices.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDevices({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDevices; \ No newline at end of file diff --git a/icons-react/icons-js/dialpad-off.js b/icons-react/icons-js/dialpad-off.js deleted file mode 100644 index 05a97900e..000000000 --- a/icons-react/icons-js/dialpad-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDialpadOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDialpadOff; \ No newline at end of file diff --git a/icons-react/icons-js/dialpad.js b/icons-react/icons-js/dialpad.js deleted file mode 100644 index 41868167c..000000000 --- a/icons-react/icons-js/dialpad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDialpad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDialpad; \ No newline at end of file diff --git a/icons-react/icons-js/diamond-off.js b/icons-react/icons-js/diamond-off.js deleted file mode 100644 index 81b11d893..000000000 --- a/icons-react/icons-js/diamond-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiamondOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiamondOff; \ No newline at end of file diff --git a/icons-react/icons-js/diamond.js b/icons-react/icons-js/diamond.js deleted file mode 100644 index 2a474bec0..000000000 --- a/icons-react/icons-js/diamond.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiamond({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiamond; \ No newline at end of file diff --git a/icons-react/icons-js/diamonds.js b/icons-react/icons-js/diamonds.js deleted file mode 100644 index 524f40039..000000000 --- a/icons-react/icons-js/diamonds.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiamonds({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiamonds; \ No newline at end of file diff --git a/icons-react/icons-js/dice-1.js b/icons-react/icons-js/dice-1.js deleted file mode 100644 index 1faa18070..000000000 --- a/icons-react/icons-js/dice-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice1; \ No newline at end of file diff --git a/icons-react/icons-js/dice-2.js b/icons-react/icons-js/dice-2.js deleted file mode 100644 index 7c30b51a3..000000000 --- a/icons-react/icons-js/dice-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice2; \ No newline at end of file diff --git a/icons-react/icons-js/dice-3.js b/icons-react/icons-js/dice-3.js deleted file mode 100644 index 93f5e1162..000000000 --- a/icons-react/icons-js/dice-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice3; \ No newline at end of file diff --git a/icons-react/icons-js/dice-4.js b/icons-react/icons-js/dice-4.js deleted file mode 100644 index 07dbb9773..000000000 --- a/icons-react/icons-js/dice-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice4; \ No newline at end of file diff --git a/icons-react/icons-js/dice-5.js b/icons-react/icons-js/dice-5.js deleted file mode 100644 index 00a9b4deb..000000000 --- a/icons-react/icons-js/dice-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice5; \ No newline at end of file diff --git a/icons-react/icons-js/dice-6.js b/icons-react/icons-js/dice-6.js deleted file mode 100644 index 53183bb75..000000000 --- a/icons-react/icons-js/dice-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice6; \ No newline at end of file diff --git a/icons-react/icons-js/dice.js b/icons-react/icons-js/dice.js deleted file mode 100644 index f2e79ddbd..000000000 --- a/icons-react/icons-js/dice.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDice({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDice; \ No newline at end of file diff --git a/icons-react/icons-js/dimensions.js b/icons-react/icons-js/dimensions.js deleted file mode 100644 index 76b37a57f..000000000 --- a/icons-react/icons-js/dimensions.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDimensions({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDimensions; \ No newline at end of file diff --git a/icons-react/icons-js/direction-horizontal.js b/icons-react/icons-js/direction-horizontal.js deleted file mode 100644 index 5b6dfaf9b..000000000 --- a/icons-react/icons-js/direction-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirectionHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirectionHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/direction-sign-off.js b/icons-react/icons-js/direction-sign-off.js deleted file mode 100644 index 38b86e808..000000000 --- a/icons-react/icons-js/direction-sign-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirectionSignOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirectionSignOff; \ No newline at end of file diff --git a/icons-react/icons-js/direction-sign.js b/icons-react/icons-js/direction-sign.js deleted file mode 100644 index 48bcd5d4e..000000000 --- a/icons-react/icons-js/direction-sign.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirectionSign({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirectionSign; \ No newline at end of file diff --git a/icons-react/icons-js/direction.js b/icons-react/icons-js/direction.js deleted file mode 100644 index d7180a250..000000000 --- a/icons-react/icons-js/direction.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirection({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirection; \ No newline at end of file diff --git a/icons-react/icons-js/directions-off.js b/icons-react/icons-js/directions-off.js deleted file mode 100644 index bbdfdd28c..000000000 --- a/icons-react/icons-js/directions-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirectionsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirectionsOff; \ No newline at end of file diff --git a/icons-react/icons-js/directions.js b/icons-react/icons-js/directions.js deleted file mode 100644 index 31ff16d7c..000000000 --- a/icons-react/icons-js/directions.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDirections({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDirections; \ No newline at end of file diff --git a/icons-react/icons-js/disabled-2.js b/icons-react/icons-js/disabled-2.js deleted file mode 100644 index 106e3de67..000000000 --- a/icons-react/icons-js/disabled-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDisabled2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDisabled2; \ No newline at end of file diff --git a/icons-react/icons-js/disabled-off.js b/icons-react/icons-js/disabled-off.js deleted file mode 100644 index 6a8a63aa4..000000000 --- a/icons-react/icons-js/disabled-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDisabledOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDisabledOff; \ No newline at end of file diff --git a/icons-react/icons-js/disabled.js b/icons-react/icons-js/disabled.js deleted file mode 100644 index ecf496db8..000000000 --- a/icons-react/icons-js/disabled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDisabled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDisabled; \ No newline at end of file diff --git a/icons-react/icons-js/disc-golf.js b/icons-react/icons-js/disc-golf.js deleted file mode 100644 index 7f0ce8fec..000000000 --- a/icons-react/icons-js/disc-golf.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscGolf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscGolf; \ No newline at end of file diff --git a/icons-react/icons-js/disc-off.js b/icons-react/icons-js/disc-off.js deleted file mode 100644 index cbb2432be..000000000 --- a/icons-react/icons-js/disc-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscOff; \ No newline at end of file diff --git a/icons-react/icons-js/disc.js b/icons-react/icons-js/disc.js deleted file mode 100644 index 6c7d9910a..000000000 --- a/icons-react/icons-js/disc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDisc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDisc; \ No newline at end of file diff --git a/icons-react/icons-js/discount-2-off.js b/icons-react/icons-js/discount-2-off.js deleted file mode 100644 index c0b590589..000000000 --- a/icons-react/icons-js/discount-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscount2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscount2Off; \ No newline at end of file diff --git a/icons-react/icons-js/discount-2.js b/icons-react/icons-js/discount-2.js deleted file mode 100644 index 86b773d16..000000000 --- a/icons-react/icons-js/discount-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscount2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscount2; \ No newline at end of file diff --git a/icons-react/icons-js/discount-check.js b/icons-react/icons-js/discount-check.js deleted file mode 100644 index eff2312ca..000000000 --- a/icons-react/icons-js/discount-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscountCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscountCheck; \ No newline at end of file diff --git a/icons-react/icons-js/discount-off.js b/icons-react/icons-js/discount-off.js deleted file mode 100644 index 67dbc47a7..000000000 --- a/icons-react/icons-js/discount-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscountOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscountOff; \ No newline at end of file diff --git a/icons-react/icons-js/discount.js b/icons-react/icons-js/discount.js deleted file mode 100644 index b8c46c54e..000000000 --- a/icons-react/icons-js/discount.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDiscount({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDiscount; \ No newline at end of file diff --git a/icons-react/icons-js/divide.js b/icons-react/icons-js/divide.js deleted file mode 100644 index 44e1cea7f..000000000 --- a/icons-react/icons-js/divide.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDivide({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDivide; \ No newline at end of file diff --git a/icons-react/icons-js/dna-2-off.js b/icons-react/icons-js/dna-2-off.js deleted file mode 100644 index 654e5849a..000000000 --- a/icons-react/icons-js/dna-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDna2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDna2Off; \ No newline at end of file diff --git a/icons-react/icons-js/dna-2.js b/icons-react/icons-js/dna-2.js deleted file mode 100644 index adce038be..000000000 --- a/icons-react/icons-js/dna-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDna2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDna2; \ No newline at end of file diff --git a/icons-react/icons-js/dna-off.js b/icons-react/icons-js/dna-off.js deleted file mode 100644 index 534eefad4..000000000 --- a/icons-react/icons-js/dna-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDnaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDnaOff; \ No newline at end of file diff --git a/icons-react/icons-js/dna.js b/icons-react/icons-js/dna.js deleted file mode 100644 index 087659352..000000000 --- a/icons-react/icons-js/dna.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDna({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDna; \ No newline at end of file diff --git a/icons-react/icons-js/dog-bowl.js b/icons-react/icons-js/dog-bowl.js deleted file mode 100644 index 4afa542c6..000000000 --- a/icons-react/icons-js/dog-bowl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDogBowl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDogBowl; \ No newline at end of file diff --git a/icons-react/icons-js/dog.js b/icons-react/icons-js/dog.js deleted file mode 100644 index fa80a3d63..000000000 --- a/icons-react/icons-js/dog.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDog({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDog; \ No newline at end of file diff --git a/icons-react/icons-js/door-enter.js b/icons-react/icons-js/door-enter.js deleted file mode 100644 index 5c0be5039..000000000 --- a/icons-react/icons-js/door-enter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDoorEnter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDoorEnter; \ No newline at end of file diff --git a/icons-react/icons-js/door-exit.js b/icons-react/icons-js/door-exit.js deleted file mode 100644 index d26804930..000000000 --- a/icons-react/icons-js/door-exit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDoorExit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDoorExit; \ No newline at end of file diff --git a/icons-react/icons-js/door-off.js b/icons-react/icons-js/door-off.js deleted file mode 100644 index 494d238b5..000000000 --- a/icons-react/icons-js/door-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDoorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDoorOff; \ No newline at end of file diff --git a/icons-react/icons-js/door.js b/icons-react/icons-js/door.js deleted file mode 100644 index 9be2b4ee6..000000000 --- a/icons-react/icons-js/door.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDoor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDoor; \ No newline at end of file diff --git a/icons-react/icons-js/dots-circle-horizontal.js b/icons-react/icons-js/dots-circle-horizontal.js deleted file mode 100644 index aaba1cebc..000000000 --- a/icons-react/icons-js/dots-circle-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDotsCircleHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDotsCircleHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/dots-diagonal-2.js b/icons-react/icons-js/dots-diagonal-2.js deleted file mode 100644 index 28ab452a3..000000000 --- a/icons-react/icons-js/dots-diagonal-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDotsDiagonal2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDotsDiagonal2; \ No newline at end of file diff --git a/icons-react/icons-js/dots-diagonal.js b/icons-react/icons-js/dots-diagonal.js deleted file mode 100644 index 053cf385a..000000000 --- a/icons-react/icons-js/dots-diagonal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDotsDiagonal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDotsDiagonal; \ No newline at end of file diff --git a/icons-react/icons-js/dots-vertical.js b/icons-react/icons-js/dots-vertical.js deleted file mode 100644 index 6ddc2614c..000000000 --- a/icons-react/icons-js/dots-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDotsVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDotsVertical; \ No newline at end of file diff --git a/icons-react/icons-js/dots.js b/icons-react/icons-js/dots.js deleted file mode 100644 index 4378488b7..000000000 --- a/icons-react/icons-js/dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDots; \ No newline at end of file diff --git a/icons-react/icons-js/download-off.js b/icons-react/icons-js/download-off.js deleted file mode 100644 index 17e04752e..000000000 --- a/icons-react/icons-js/download-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDownloadOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDownloadOff; \ No newline at end of file diff --git a/icons-react/icons-js/download.js b/icons-react/icons-js/download.js deleted file mode 100644 index 0c8420158..000000000 --- a/icons-react/icons-js/download.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDownload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDownload; \ No newline at end of file diff --git a/icons-react/icons-js/drag-drop-2.js b/icons-react/icons-js/drag-drop-2.js deleted file mode 100644 index ab75a45d2..000000000 --- a/icons-react/icons-js/drag-drop-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDragDrop2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDragDrop2; \ No newline at end of file diff --git a/icons-react/icons-js/drag-drop.js b/icons-react/icons-js/drag-drop.js deleted file mode 100644 index a8fa63dfa..000000000 --- a/icons-react/icons-js/drag-drop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDragDrop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDragDrop; \ No newline at end of file diff --git a/icons-react/icons-js/drone-off.js b/icons-react/icons-js/drone-off.js deleted file mode 100644 index 8d78e6bb6..000000000 --- a/icons-react/icons-js/drone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDroneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDroneOff; \ No newline at end of file diff --git a/icons-react/icons-js/drone.js b/icons-react/icons-js/drone.js deleted file mode 100644 index a92920e5f..000000000 --- a/icons-react/icons-js/drone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDrone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDrone; \ No newline at end of file diff --git a/icons-react/icons-js/drop-circle.js b/icons-react/icons-js/drop-circle.js deleted file mode 100644 index accc3a354..000000000 --- a/icons-react/icons-js/drop-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropCircle; \ No newline at end of file diff --git a/icons-react/icons-js/droplet-filled-2.js b/icons-react/icons-js/droplet-filled-2.js deleted file mode 100644 index 79f8dc9cf..000000000 --- a/icons-react/icons-js/droplet-filled-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropletFilled2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropletFilled2; \ No newline at end of file diff --git a/icons-react/icons-js/droplet-filled.js b/icons-react/icons-js/droplet-filled.js deleted file mode 100644 index dfbe90788..000000000 --- a/icons-react/icons-js/droplet-filled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropletFilled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropletFilled; \ No newline at end of file diff --git a/icons-react/icons-js/droplet-half-2.js b/icons-react/icons-js/droplet-half-2.js deleted file mode 100644 index 629396752..000000000 --- a/icons-react/icons-js/droplet-half-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropletHalf2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropletHalf2; \ No newline at end of file diff --git a/icons-react/icons-js/droplet-half.js b/icons-react/icons-js/droplet-half.js deleted file mode 100644 index fdf4de706..000000000 --- a/icons-react/icons-js/droplet-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropletHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropletHalf; \ No newline at end of file diff --git a/icons-react/icons-js/droplet-off.js b/icons-react/icons-js/droplet-off.js deleted file mode 100644 index 7c0b35a8d..000000000 --- a/icons-react/icons-js/droplet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDropletOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDropletOff; \ No newline at end of file diff --git a/icons-react/icons-js/droplet.js b/icons-react/icons-js/droplet.js deleted file mode 100644 index c36f08b41..000000000 --- a/icons-react/icons-js/droplet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconDroplet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconDroplet; \ No newline at end of file diff --git a/icons-react/icons-js/e-passport.js b/icons-react/icons-js/e-passport.js deleted file mode 100644 index 39327ea70..000000000 --- a/icons-react/icons-js/e-passport.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEPassport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEPassport; \ No newline at end of file diff --git a/icons-react/icons-js/ear-off.js b/icons-react/icons-js/ear-off.js deleted file mode 100644 index 8b42fe5bf..000000000 --- a/icons-react/icons-js/ear-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEarOff; \ No newline at end of file diff --git a/icons-react/icons-js/ear.js b/icons-react/icons-js/ear.js deleted file mode 100644 index 381813c3f..000000000 --- a/icons-react/icons-js/ear.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEar; \ No newline at end of file diff --git a/icons-react/icons-js/ease-in-control-point.js b/icons-react/icons-js/ease-in-control-point.js deleted file mode 100644 index e89ec92ad..000000000 --- a/icons-react/icons-js/ease-in-control-point.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseInControlPoint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseInControlPoint; \ No newline at end of file diff --git a/icons-react/icons-js/ease-in-out-control-points.js b/icons-react/icons-js/ease-in-out-control-points.js deleted file mode 100644 index ede30734b..000000000 --- a/icons-react/icons-js/ease-in-out-control-points.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseInOutControlPoints({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseInOutControlPoints; \ No newline at end of file diff --git a/icons-react/icons-js/ease-in-out.js b/icons-react/icons-js/ease-in-out.js deleted file mode 100644 index 716f0572f..000000000 --- a/icons-react/icons-js/ease-in-out.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseInOut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseInOut; \ No newline at end of file diff --git a/icons-react/icons-js/ease-in.js b/icons-react/icons-js/ease-in.js deleted file mode 100644 index 63faac958..000000000 --- a/icons-react/icons-js/ease-in.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseIn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseIn; \ No newline at end of file diff --git a/icons-react/icons-js/ease-out-control-point.js b/icons-react/icons-js/ease-out-control-point.js deleted file mode 100644 index 0872eadaa..000000000 --- a/icons-react/icons-js/ease-out-control-point.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseOutControlPoint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseOutControlPoint; \ No newline at end of file diff --git a/icons-react/icons-js/ease-out.js b/icons-react/icons-js/ease-out.js deleted file mode 100644 index f3224947e..000000000 --- a/icons-react/icons-js/ease-out.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEaseOut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEaseOut; \ No newline at end of file diff --git a/icons-react/icons-js/edit-circle-off.js b/icons-react/icons-js/edit-circle-off.js deleted file mode 100644 index 61d03970d..000000000 --- a/icons-react/icons-js/edit-circle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEditCircleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEditCircleOff; \ No newline at end of file diff --git a/icons-react/icons-js/edit-circle.js b/icons-react/icons-js/edit-circle.js deleted file mode 100644 index 0b9088578..000000000 --- a/icons-react/icons-js/edit-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEditCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEditCircle; \ No newline at end of file diff --git a/icons-react/icons-js/edit-off.js b/icons-react/icons-js/edit-off.js deleted file mode 100644 index 67925d42e..000000000 --- a/icons-react/icons-js/edit-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEditOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEditOff; \ No newline at end of file diff --git a/icons-react/icons-js/edit.js b/icons-react/icons-js/edit.js deleted file mode 100644 index ab39efb3c..000000000 --- a/icons-react/icons-js/edit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEdit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEdit; \ No newline at end of file diff --git a/icons-react/icons-js/egg-cracked.js b/icons-react/icons-js/egg-cracked.js deleted file mode 100644 index c5ef5d44a..000000000 --- a/icons-react/icons-js/egg-cracked.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEggCracked({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEggCracked; \ No newline at end of file diff --git a/icons-react/icons-js/egg-fried.js b/icons-react/icons-js/egg-fried.js deleted file mode 100644 index 69d9cfbd4..000000000 --- a/icons-react/icons-js/egg-fried.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEggFried({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEggFried; \ No newline at end of file diff --git a/icons-react/icons-js/egg-off.js b/icons-react/icons-js/egg-off.js deleted file mode 100644 index fa3ad6082..000000000 --- a/icons-react/icons-js/egg-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEggOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEggOff; \ No newline at end of file diff --git a/icons-react/icons-js/egg.js b/icons-react/icons-js/egg.js deleted file mode 100644 index cc3321a40..000000000 --- a/icons-react/icons-js/egg.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEgg({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEgg; \ No newline at end of file diff --git a/icons-react/icons-js/eggs.js b/icons-react/icons-js/eggs.js deleted file mode 100644 index a3e972773..000000000 --- a/icons-react/icons-js/eggs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEggs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEggs; \ No newline at end of file diff --git a/icons-react/icons-js/elevator-off.js b/icons-react/icons-js/elevator-off.js deleted file mode 100644 index 5ab14b18f..000000000 --- a/icons-react/icons-js/elevator-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconElevatorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconElevatorOff; \ No newline at end of file diff --git a/icons-react/icons-js/elevator.js b/icons-react/icons-js/elevator.js deleted file mode 100644 index 27e8bb17e..000000000 --- a/icons-react/icons-js/elevator.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconElevator({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconElevator; \ No newline at end of file diff --git a/icons-react/icons-js/emergency-bed.js b/icons-react/icons-js/emergency-bed.js deleted file mode 100644 index 3e3538278..000000000 --- a/icons-react/icons-js/emergency-bed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEmergencyBed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEmergencyBed; \ No newline at end of file diff --git a/icons-react/icons-js/empathize-off.js b/icons-react/icons-js/empathize-off.js deleted file mode 100644 index 5a231d0d6..000000000 --- a/icons-react/icons-js/empathize-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEmpathizeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEmpathizeOff; \ No newline at end of file diff --git a/icons-react/icons-js/empathize.js b/icons-react/icons-js/empathize.js deleted file mode 100644 index 4a3b2cb19..000000000 --- a/icons-react/icons-js/empathize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEmpathize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEmpathize; \ No newline at end of file diff --git a/icons-react/icons-js/emphasis.js b/icons-react/icons-js/emphasis.js deleted file mode 100644 index 404f06623..000000000 --- a/icons-react/icons-js/emphasis.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEmphasis({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEmphasis; \ No newline at end of file diff --git a/icons-react/icons-js/engine-off.js b/icons-react/icons-js/engine-off.js deleted file mode 100644 index 78cbfb78a..000000000 --- a/icons-react/icons-js/engine-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEngineOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEngineOff; \ No newline at end of file diff --git a/icons-react/icons-js/engine.js b/icons-react/icons-js/engine.js deleted file mode 100644 index 7fb3d6f42..000000000 --- a/icons-react/icons-js/engine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEngine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEngine; \ No newline at end of file diff --git a/icons-react/icons-js/equal-double.js b/icons-react/icons-js/equal-double.js deleted file mode 100644 index d60bba9ee..000000000 --- a/icons-react/icons-js/equal-double.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEqualDouble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEqualDouble; \ No newline at end of file diff --git a/icons-react/icons-js/equal-not.js b/icons-react/icons-js/equal-not.js deleted file mode 100644 index dc307a7db..000000000 --- a/icons-react/icons-js/equal-not.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEqualNot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEqualNot; \ No newline at end of file diff --git a/icons-react/icons-js/equal.js b/icons-react/icons-js/equal.js deleted file mode 100644 index 411281450..000000000 --- a/icons-react/icons-js/equal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEqual({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEqual; \ No newline at end of file diff --git a/icons-react/icons-js/eraser-off.js b/icons-react/icons-js/eraser-off.js deleted file mode 100644 index a8542d4f5..000000000 --- a/icons-react/icons-js/eraser-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEraserOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEraserOff; \ No newline at end of file diff --git a/icons-react/icons-js/eraser.js b/icons-react/icons-js/eraser.js deleted file mode 100644 index 672b5eea8..000000000 --- a/icons-react/icons-js/eraser.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEraser({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEraser; \ No newline at end of file diff --git a/icons-react/icons-js/error-404-off.js b/icons-react/icons-js/error-404-off.js deleted file mode 100644 index f9dca2796..000000000 --- a/icons-react/icons-js/error-404-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconError404Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconError404Off; \ No newline at end of file diff --git a/icons-react/icons-js/error-404.js b/icons-react/icons-js/error-404.js deleted file mode 100644 index 8dc9c8181..000000000 --- a/icons-react/icons-js/error-404.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconError404({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconError404; \ No newline at end of file diff --git a/icons-react/icons-js/exchange-off.js b/icons-react/icons-js/exchange-off.js deleted file mode 100644 index 607625e4c..000000000 --- a/icons-react/icons-js/exchange-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExchangeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExchangeOff; \ No newline at end of file diff --git a/icons-react/icons-js/exchange.js b/icons-react/icons-js/exchange.js deleted file mode 100644 index 55ed0fb03..000000000 --- a/icons-react/icons-js/exchange.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExchange({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExchange; \ No newline at end of file diff --git a/icons-react/icons-js/exclamation-circle.js b/icons-react/icons-js/exclamation-circle.js deleted file mode 100644 index 868fb68d0..000000000 --- a/icons-react/icons-js/exclamation-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExclamationCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExclamationCircle; \ No newline at end of file diff --git a/icons-react/icons-js/exclamation-mark-off.js b/icons-react/icons-js/exclamation-mark-off.js deleted file mode 100644 index 568659063..000000000 --- a/icons-react/icons-js/exclamation-mark-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExclamationMarkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExclamationMarkOff; \ No newline at end of file diff --git a/icons-react/icons-js/exclamation-mark.js b/icons-react/icons-js/exclamation-mark.js deleted file mode 100644 index 7e2f1368c..000000000 --- a/icons-react/icons-js/exclamation-mark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExclamationMark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExclamationMark; \ No newline at end of file diff --git a/icons-react/icons-js/explicit-off.js b/icons-react/icons-js/explicit-off.js deleted file mode 100644 index fae43f49c..000000000 --- a/icons-react/icons-js/explicit-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExplicitOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExplicitOff; \ No newline at end of file diff --git a/icons-react/icons-js/explicit.js b/icons-react/icons-js/explicit.js deleted file mode 100644 index c9e8f6c49..000000000 --- a/icons-react/icons-js/explicit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExplicit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExplicit; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-0.js b/icons-react/icons-js/exposure-0.js deleted file mode 100644 index b915de977..000000000 --- a/icons-react/icons-js/exposure-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposure0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposure0; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-minus-1.js b/icons-react/icons-js/exposure-minus-1.js deleted file mode 100644 index c06fb82ce..000000000 --- a/icons-react/icons-js/exposure-minus-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposureMinus1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposureMinus1; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-minus-2.js b/icons-react/icons-js/exposure-minus-2.js deleted file mode 100644 index 290b4315d..000000000 --- a/icons-react/icons-js/exposure-minus-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposureMinus2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposureMinus2; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-off.js b/icons-react/icons-js/exposure-off.js deleted file mode 100644 index a6864cf45..000000000 --- a/icons-react/icons-js/exposure-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposureOff; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-plus-1.js b/icons-react/icons-js/exposure-plus-1.js deleted file mode 100644 index 2e51db5ab..000000000 --- a/icons-react/icons-js/exposure-plus-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposurePlus1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposurePlus1; \ No newline at end of file diff --git a/icons-react/icons-js/exposure-plus-2.js b/icons-react/icons-js/exposure-plus-2.js deleted file mode 100644 index c538dda5f..000000000 --- a/icons-react/icons-js/exposure-plus-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposurePlus2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposurePlus2; \ No newline at end of file diff --git a/icons-react/icons-js/exposure.js b/icons-react/icons-js/exposure.js deleted file mode 100644 index 87ab459b9..000000000 --- a/icons-react/icons-js/exposure.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExposure({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExposure; \ No newline at end of file diff --git a/icons-react/icons-js/external-link-off.js b/icons-react/icons-js/external-link-off.js deleted file mode 100644 index 249021a08..000000000 --- a/icons-react/icons-js/external-link-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExternalLinkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExternalLinkOff; \ No newline at end of file diff --git a/icons-react/icons-js/external-link.js b/icons-react/icons-js/external-link.js deleted file mode 100644 index 3e540bdc1..000000000 --- a/icons-react/icons-js/external-link.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconExternalLink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconExternalLink; \ No newline at end of file diff --git a/icons-react/icons-js/eye-check.js b/icons-react/icons-js/eye-check.js deleted file mode 100644 index 57fc68d81..000000000 --- a/icons-react/icons-js/eye-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeCheck; \ No newline at end of file diff --git a/icons-react/icons-js/eye-off.js b/icons-react/icons-js/eye-off.js deleted file mode 100644 index 395db7ce7..000000000 --- a/icons-react/icons-js/eye-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeOff; \ No newline at end of file diff --git a/icons-react/icons-js/eye-table.js b/icons-react/icons-js/eye-table.js deleted file mode 100644 index c5ff13a5a..000000000 --- a/icons-react/icons-js/eye-table.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeTable({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeTable; \ No newline at end of file diff --git a/icons-react/icons-js/eye.js b/icons-react/icons-js/eye.js deleted file mode 100644 index d436e5e30..000000000 --- a/icons-react/icons-js/eye.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEye({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEye; \ No newline at end of file diff --git a/icons-react/icons-js/eyeglass-2.js b/icons-react/icons-js/eyeglass-2.js deleted file mode 100644 index 940f40548..000000000 --- a/icons-react/icons-js/eyeglass-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeglass2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeglass2; \ No newline at end of file diff --git a/icons-react/icons-js/eyeglass-off.js b/icons-react/icons-js/eyeglass-off.js deleted file mode 100644 index 640a58c35..000000000 --- a/icons-react/icons-js/eyeglass-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeglassOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeglassOff; \ No newline at end of file diff --git a/icons-react/icons-js/eyeglass.js b/icons-react/icons-js/eyeglass.js deleted file mode 100644 index c9989cb1c..000000000 --- a/icons-react/icons-js/eyeglass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconEyeglass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconEyeglass; \ No newline at end of file diff --git a/icons-react/icons-js/face-id-error.js b/icons-react/icons-js/face-id-error.js deleted file mode 100644 index 3a9613d27..000000000 --- a/icons-react/icons-js/face-id-error.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFaceIdError({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFaceIdError; \ No newline at end of file diff --git a/icons-react/icons-js/face-id.js b/icons-react/icons-js/face-id.js deleted file mode 100644 index 3753efe0b..000000000 --- a/icons-react/icons-js/face-id.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFaceId({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFaceId; \ No newline at end of file diff --git a/icons-react/icons-js/face-mask-off.js b/icons-react/icons-js/face-mask-off.js deleted file mode 100644 index 5498ff068..000000000 --- a/icons-react/icons-js/face-mask-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFaceMaskOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFaceMaskOff; \ No newline at end of file diff --git a/icons-react/icons-js/face-mask.js b/icons-react/icons-js/face-mask.js deleted file mode 100644 index 81833c8dd..000000000 --- a/icons-react/icons-js/face-mask.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFaceMask({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFaceMask; \ No newline at end of file diff --git a/icons-react/icons-js/fall.js b/icons-react/icons-js/fall.js deleted file mode 100644 index 9852a04fa..000000000 --- a/icons-react/icons-js/fall.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFall({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFall; \ No newline at end of file diff --git a/icons-react/icons-js/feather-off.js b/icons-react/icons-js/feather-off.js deleted file mode 100644 index 904655c2b..000000000 --- a/icons-react/icons-js/feather-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFeatherOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFeatherOff; \ No newline at end of file diff --git a/icons-react/icons-js/feather.js b/icons-react/icons-js/feather.js deleted file mode 100644 index 7f31d3f5a..000000000 --- a/icons-react/icons-js/feather.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFeather({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFeather; \ No newline at end of file diff --git a/icons-react/icons-js/fence-off.js b/icons-react/icons-js/fence-off.js deleted file mode 100644 index a4f864469..000000000 --- a/icons-react/icons-js/fence-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFenceOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFenceOff; \ No newline at end of file diff --git a/icons-react/icons-js/fence.js b/icons-react/icons-js/fence.js deleted file mode 100644 index d951ed89a..000000000 --- a/icons-react/icons-js/fence.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFence({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFence; \ No newline at end of file diff --git a/icons-react/icons-js/fidget-spinner.js b/icons-react/icons-js/fidget-spinner.js deleted file mode 100644 index 5db2040c0..000000000 --- a/icons-react/icons-js/fidget-spinner.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFidgetSpinner({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFidgetSpinner; \ No newline at end of file diff --git a/icons-react/icons-js/file-3d.js b/icons-react/icons-js/file-3d.js deleted file mode 100644 index ffefd49ec..000000000 --- a/icons-react/icons-js/file-3d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFile3d({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFile3d; \ No newline at end of file diff --git a/icons-react/icons-js/file-alert.js b/icons-react/icons-js/file-alert.js deleted file mode 100644 index d1968a656..000000000 --- a/icons-react/icons-js/file-alert.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileAlert({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileAlert; \ No newline at end of file diff --git a/icons-react/icons-js/file-analytics.js b/icons-react/icons-js/file-analytics.js deleted file mode 100644 index e9d94eaa2..000000000 --- a/icons-react/icons-js/file-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/file-arrow-left.js b/icons-react/icons-js/file-arrow-left.js deleted file mode 100644 index a88b4882c..000000000 --- a/icons-react/icons-js/file-arrow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileArrowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileArrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/file-arrow-right.js b/icons-react/icons-js/file-arrow-right.js deleted file mode 100644 index f89d8be5f..000000000 --- a/icons-react/icons-js/file-arrow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileArrowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileArrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/file-barcode.js b/icons-react/icons-js/file-barcode.js deleted file mode 100644 index 4add511e6..000000000 --- a/icons-react/icons-js/file-barcode.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileBarcode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileBarcode; \ No newline at end of file diff --git a/icons-react/icons-js/file-broken.js b/icons-react/icons-js/file-broken.js deleted file mode 100644 index 9baabeb12..000000000 --- a/icons-react/icons-js/file-broken.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileBroken({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileBroken; \ No newline at end of file diff --git a/icons-react/icons-js/file-certificate.js b/icons-react/icons-js/file-certificate.js deleted file mode 100644 index b67a48242..000000000 --- a/icons-react/icons-js/file-certificate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileCertificate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileCertificate; \ No newline at end of file diff --git a/icons-react/icons-js/file-chart.js b/icons-react/icons-js/file-chart.js deleted file mode 100644 index 274f5d23a..000000000 --- a/icons-react/icons-js/file-chart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileChart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileChart; \ No newline at end of file diff --git a/icons-react/icons-js/file-check.js b/icons-react/icons-js/file-check.js deleted file mode 100644 index 9939597da..000000000 --- a/icons-react/icons-js/file-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileCheck; \ No newline at end of file diff --git a/icons-react/icons-js/file-code-2.js b/icons-react/icons-js/file-code-2.js deleted file mode 100644 index 08ef28f16..000000000 --- a/icons-react/icons-js/file-code-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileCode2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileCode2; \ No newline at end of file diff --git a/icons-react/icons-js/file-code.js b/icons-react/icons-js/file-code.js deleted file mode 100644 index 2e3fd907e..000000000 --- a/icons-react/icons-js/file-code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileCode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileCode; \ No newline at end of file diff --git a/icons-react/icons-js/file-database.js b/icons-react/icons-js/file-database.js deleted file mode 100644 index f5fcf8ca3..000000000 --- a/icons-react/icons-js/file-database.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDatabase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDatabase; \ No newline at end of file diff --git a/icons-react/icons-js/file-delta.js b/icons-react/icons-js/file-delta.js deleted file mode 100644 index d757de8c4..000000000 --- a/icons-react/icons-js/file-delta.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDelta({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDelta; \ No newline at end of file diff --git a/icons-react/icons-js/file-description.js b/icons-react/icons-js/file-description.js deleted file mode 100644 index 55ac9ee97..000000000 --- a/icons-react/icons-js/file-description.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDescription({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDescription; \ No newline at end of file diff --git a/icons-react/icons-js/file-diff.js b/icons-react/icons-js/file-diff.js deleted file mode 100644 index d9c3ac0e1..000000000 --- a/icons-react/icons-js/file-diff.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDiff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDiff; \ No newline at end of file diff --git a/icons-react/icons-js/file-digit.js b/icons-react/icons-js/file-digit.js deleted file mode 100644 index 545156e13..000000000 --- a/icons-react/icons-js/file-digit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDigit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDigit; \ No newline at end of file diff --git a/icons-react/icons-js/file-dislike.js b/icons-react/icons-js/file-dislike.js deleted file mode 100644 index 360f0eedd..000000000 --- a/icons-react/icons-js/file-dislike.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDislike({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDislike; \ No newline at end of file diff --git a/icons-react/icons-js/file-dollar.js b/icons-react/icons-js/file-dollar.js deleted file mode 100644 index 2563acc01..000000000 --- a/icons-react/icons-js/file-dollar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDollar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDollar; \ No newline at end of file diff --git a/icons-react/icons-js/file-dots.js b/icons-react/icons-js/file-dots.js deleted file mode 100644 index 377b1e4e6..000000000 --- a/icons-react/icons-js/file-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDots; \ No newline at end of file diff --git a/icons-react/icons-js/file-download.js b/icons-react/icons-js/file-download.js deleted file mode 100644 index df68e21ca..000000000 --- a/icons-react/icons-js/file-download.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileDownload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileDownload; \ No newline at end of file diff --git a/icons-react/icons-js/file-euro.js b/icons-react/icons-js/file-euro.js deleted file mode 100644 index e94c77c3c..000000000 --- a/icons-react/icons-js/file-euro.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileEuro({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileEuro; \ No newline at end of file diff --git a/icons-react/icons-js/file-export.js b/icons-react/icons-js/file-export.js deleted file mode 100644 index 07e085957..000000000 --- a/icons-react/icons-js/file-export.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileExport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileExport; \ No newline at end of file diff --git a/icons-react/icons-js/file-function.js b/icons-react/icons-js/file-function.js deleted file mode 100644 index d5d613f63..000000000 --- a/icons-react/icons-js/file-function.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileFunction({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileFunction; \ No newline at end of file diff --git a/icons-react/icons-js/file-horizontal.js b/icons-react/icons-js/file-horizontal.js deleted file mode 100644 index f20d2e38b..000000000 --- a/icons-react/icons-js/file-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/file-import.js b/icons-react/icons-js/file-import.js deleted file mode 100644 index 361d220de..000000000 --- a/icons-react/icons-js/file-import.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileImport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileImport; \ No newline at end of file diff --git a/icons-react/icons-js/file-infinity.js b/icons-react/icons-js/file-infinity.js deleted file mode 100644 index 61a54f702..000000000 --- a/icons-react/icons-js/file-infinity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileInfinity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileInfinity; \ No newline at end of file diff --git a/icons-react/icons-js/file-info.js b/icons-react/icons-js/file-info.js deleted file mode 100644 index 73764ced3..000000000 --- a/icons-react/icons-js/file-info.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileInfo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileInfo; \ No newline at end of file diff --git a/icons-react/icons-js/file-invoice.js b/icons-react/icons-js/file-invoice.js deleted file mode 100644 index f1e7c62a1..000000000 --- a/icons-react/icons-js/file-invoice.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileInvoice({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileInvoice; \ No newline at end of file diff --git a/icons-react/icons-js/file-lambda.js b/icons-react/icons-js/file-lambda.js deleted file mode 100644 index b8e33a346..000000000 --- a/icons-react/icons-js/file-lambda.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileLambda({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileLambda; \ No newline at end of file diff --git a/icons-react/icons-js/file-like.js b/icons-react/icons-js/file-like.js deleted file mode 100644 index 2e31e6986..000000000 --- a/icons-react/icons-js/file-like.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileLike({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileLike; \ No newline at end of file diff --git a/icons-react/icons-js/file-minus.js b/icons-react/icons-js/file-minus.js deleted file mode 100644 index c25a62dc6..000000000 --- a/icons-react/icons-js/file-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileMinus; \ No newline at end of file diff --git a/icons-react/icons-js/file-music.js b/icons-react/icons-js/file-music.js deleted file mode 100644 index 1504962ad..000000000 --- a/icons-react/icons-js/file-music.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileMusic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileMusic; \ No newline at end of file diff --git a/icons-react/icons-js/file-off.js b/icons-react/icons-js/file-off.js deleted file mode 100644 index 6ece9ea34..000000000 --- a/icons-react/icons-js/file-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileOff; \ No newline at end of file diff --git a/icons-react/icons-js/file-orientation.js b/icons-react/icons-js/file-orientation.js deleted file mode 100644 index 553826f85..000000000 --- a/icons-react/icons-js/file-orientation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileOrientation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileOrientation; \ No newline at end of file diff --git a/icons-react/icons-js/file-pencil.js b/icons-react/icons-js/file-pencil.js deleted file mode 100644 index 7c2f9911d..000000000 --- a/icons-react/icons-js/file-pencil.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilePencil({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilePencil; \ No newline at end of file diff --git a/icons-react/icons-js/file-percent.js b/icons-react/icons-js/file-percent.js deleted file mode 100644 index 9e4b643f4..000000000 --- a/icons-react/icons-js/file-percent.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilePercent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilePercent; \ No newline at end of file diff --git a/icons-react/icons-js/file-phone.js b/icons-react/icons-js/file-phone.js deleted file mode 100644 index fbfaedd95..000000000 --- a/icons-react/icons-js/file-phone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilePhone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilePhone; \ No newline at end of file diff --git a/icons-react/icons-js/file-plus.js b/icons-react/icons-js/file-plus.js deleted file mode 100644 index 6ee322fb6..000000000 --- a/icons-react/icons-js/file-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilePlus; \ No newline at end of file diff --git a/icons-react/icons-js/file-power.js b/icons-react/icons-js/file-power.js deleted file mode 100644 index 12d809404..000000000 --- a/icons-react/icons-js/file-power.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilePower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilePower; \ No newline at end of file diff --git a/icons-react/icons-js/file-report.js b/icons-react/icons-js/file-report.js deleted file mode 100644 index 49d0ede0b..000000000 --- a/icons-react/icons-js/file-report.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileReport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileReport; \ No newline at end of file diff --git a/icons-react/icons-js/file-rss.js b/icons-react/icons-js/file-rss.js deleted file mode 100644 index f555aa4be..000000000 --- a/icons-react/icons-js/file-rss.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileRss({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileRss; \ No newline at end of file diff --git a/icons-react/icons-js/file-scissors.js b/icons-react/icons-js/file-scissors.js deleted file mode 100644 index eeaf62f43..000000000 --- a/icons-react/icons-js/file-scissors.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileScissors({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileScissors; \ No newline at end of file diff --git a/icons-react/icons-js/file-search.js b/icons-react/icons-js/file-search.js deleted file mode 100644 index a6c44a583..000000000 --- a/icons-react/icons-js/file-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileSearch; \ No newline at end of file diff --git a/icons-react/icons-js/file-settings.js b/icons-react/icons-js/file-settings.js deleted file mode 100644 index a9de67927..000000000 --- a/icons-react/icons-js/file-settings.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileSettings({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileSettings; \ No newline at end of file diff --git a/icons-react/icons-js/file-shredder.js b/icons-react/icons-js/file-shredder.js deleted file mode 100644 index ddaf277a4..000000000 --- a/icons-react/icons-js/file-shredder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileShredder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileShredder; \ No newline at end of file diff --git a/icons-react/icons-js/file-signal.js b/icons-react/icons-js/file-signal.js deleted file mode 100644 index e84739114..000000000 --- a/icons-react/icons-js/file-signal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileSignal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileSignal; \ No newline at end of file diff --git a/icons-react/icons-js/file-spreadsheet.js b/icons-react/icons-js/file-spreadsheet.js deleted file mode 100644 index 4936d21ef..000000000 --- a/icons-react/icons-js/file-spreadsheet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileSpreadsheet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileSpreadsheet; \ No newline at end of file diff --git a/icons-react/icons-js/file-stack.js b/icons-react/icons-js/file-stack.js deleted file mode 100644 index 466ab1101..000000000 --- a/icons-react/icons-js/file-stack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileStack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileStack; \ No newline at end of file diff --git a/icons-react/icons-js/file-star.js b/icons-react/icons-js/file-star.js deleted file mode 100644 index a9a05ea41..000000000 --- a/icons-react/icons-js/file-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileStar; \ No newline at end of file diff --git a/icons-react/icons-js/file-symlink.js b/icons-react/icons-js/file-symlink.js deleted file mode 100644 index bc5f24f83..000000000 --- a/icons-react/icons-js/file-symlink.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileSymlink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileSymlink; \ No newline at end of file diff --git a/icons-react/icons-js/file-text.js b/icons-react/icons-js/file-text.js deleted file mode 100644 index cc5c367c4..000000000 --- a/icons-react/icons-js/file-text.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileText({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileText; \ No newline at end of file diff --git a/icons-react/icons-js/file-time.js b/icons-react/icons-js/file-time.js deleted file mode 100644 index 41910ed72..000000000 --- a/icons-react/icons-js/file-time.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileTime({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileTime; \ No newline at end of file diff --git a/icons-react/icons-js/file-typography.js b/icons-react/icons-js/file-typography.js deleted file mode 100644 index 430821379..000000000 --- a/icons-react/icons-js/file-typography.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileTypography({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileTypography; \ No newline at end of file diff --git a/icons-react/icons-js/file-unknown.js b/icons-react/icons-js/file-unknown.js deleted file mode 100644 index a56609508..000000000 --- a/icons-react/icons-js/file-unknown.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileUnknown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileUnknown; \ No newline at end of file diff --git a/icons-react/icons-js/file-upload.js b/icons-react/icons-js/file-upload.js deleted file mode 100644 index 977513bd6..000000000 --- a/icons-react/icons-js/file-upload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileUpload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileUpload; \ No newline at end of file diff --git a/icons-react/icons-js/file-vector.js b/icons-react/icons-js/file-vector.js deleted file mode 100644 index 9c6a72b9a..000000000 --- a/icons-react/icons-js/file-vector.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileVector({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileVector; \ No newline at end of file diff --git a/icons-react/icons-js/file-x.js b/icons-react/icons-js/file-x.js deleted file mode 100644 index 9d5657b64..000000000 --- a/icons-react/icons-js/file-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileX; \ No newline at end of file diff --git a/icons-react/icons-js/file-zip.js b/icons-react/icons-js/file-zip.js deleted file mode 100644 index 24d926b49..000000000 --- a/icons-react/icons-js/file-zip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFileZip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFileZip; \ No newline at end of file diff --git a/icons-react/icons-js/file.js b/icons-react/icons-js/file.js deleted file mode 100644 index 298b52488..000000000 --- a/icons-react/icons-js/file.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFile({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFile; \ No newline at end of file diff --git a/icons-react/icons-js/files-off.js b/icons-react/icons-js/files-off.js deleted file mode 100644 index 74ab32ac3..000000000 --- a/icons-react/icons-js/files-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilesOff; \ No newline at end of file diff --git a/icons-react/icons-js/files.js b/icons-react/icons-js/files.js deleted file mode 100644 index ace514779..000000000 --- a/icons-react/icons-js/files.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFiles({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFiles; \ No newline at end of file diff --git a/icons-react/icons-js/filter-off.js b/icons-react/icons-js/filter-off.js deleted file mode 100644 index 626d5eca2..000000000 --- a/icons-react/icons-js/filter-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilterOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilterOff; \ No newline at end of file diff --git a/icons-react/icons-js/filter.js b/icons-react/icons-js/filter.js deleted file mode 100644 index b43c2b56e..000000000 --- a/icons-react/icons-js/filter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFilter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFilter; \ No newline at end of file diff --git a/icons-react/icons-js/fingerprint-off.js b/icons-react/icons-js/fingerprint-off.js deleted file mode 100644 index 8543f500c..000000000 --- a/icons-react/icons-js/fingerprint-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFingerprintOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFingerprintOff; \ No newline at end of file diff --git a/icons-react/icons-js/fingerprint.js b/icons-react/icons-js/fingerprint.js deleted file mode 100644 index 6c439b79c..000000000 --- a/icons-react/icons-js/fingerprint.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFingerprint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFingerprint; \ No newline at end of file diff --git a/icons-react/icons-js/fire-hydrant-off.js b/icons-react/icons-js/fire-hydrant-off.js deleted file mode 100644 index e54c706ca..000000000 --- a/icons-react/icons-js/fire-hydrant-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFireHydrantOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFireHydrantOff; \ No newline at end of file diff --git a/icons-react/icons-js/fire-hydrant.js b/icons-react/icons-js/fire-hydrant.js deleted file mode 100644 index 1332d8f2e..000000000 --- a/icons-react/icons-js/fire-hydrant.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFireHydrant({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFireHydrant; \ No newline at end of file diff --git a/icons-react/icons-js/firetruck.js b/icons-react/icons-js/firetruck.js deleted file mode 100644 index 3728bebcd..000000000 --- a/icons-react/icons-js/firetruck.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFiretruck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFiretruck; \ No newline at end of file diff --git a/icons-react/icons-js/first-aid-kit-off.js b/icons-react/icons-js/first-aid-kit-off.js deleted file mode 100644 index a0afe4aaf..000000000 --- a/icons-react/icons-js/first-aid-kit-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFirstAidKitOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFirstAidKitOff; \ No newline at end of file diff --git a/icons-react/icons-js/first-aid-kit.js b/icons-react/icons-js/first-aid-kit.js deleted file mode 100644 index e1f631eb1..000000000 --- a/icons-react/icons-js/first-aid-kit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFirstAidKit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFirstAidKit; \ No newline at end of file diff --git a/icons-react/icons-js/fish-bone.js b/icons-react/icons-js/fish-bone.js deleted file mode 100644 index 731dac44b..000000000 --- a/icons-react/icons-js/fish-bone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFishBone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFishBone; \ No newline at end of file diff --git a/icons-react/icons-js/fish-christianity.js b/icons-react/icons-js/fish-christianity.js deleted file mode 100644 index c594ced00..000000000 --- a/icons-react/icons-js/fish-christianity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFishChristianity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFishChristianity; \ No newline at end of file diff --git a/icons-react/icons-js/fish-hook-off.js b/icons-react/icons-js/fish-hook-off.js deleted file mode 100644 index fd54ad1cd..000000000 --- a/icons-react/icons-js/fish-hook-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFishHookOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFishHookOff; \ No newline at end of file diff --git a/icons-react/icons-js/fish-hook.js b/icons-react/icons-js/fish-hook.js deleted file mode 100644 index d754dfd1a..000000000 --- a/icons-react/icons-js/fish-hook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFishHook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFishHook; \ No newline at end of file diff --git a/icons-react/icons-js/fish-off.js b/icons-react/icons-js/fish-off.js deleted file mode 100644 index 4e96a5f03..000000000 --- a/icons-react/icons-js/fish-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFishOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFishOff; \ No newline at end of file diff --git a/icons-react/icons-js/fish.js b/icons-react/icons-js/fish.js deleted file mode 100644 index 43a03d4f6..000000000 --- a/icons-react/icons-js/fish.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFish({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFish; \ No newline at end of file diff --git a/icons-react/icons-js/flag-2-off.js b/icons-react/icons-js/flag-2-off.js deleted file mode 100644 index 352a112a5..000000000 --- a/icons-react/icons-js/flag-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlag2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlag2Off; \ No newline at end of file diff --git a/icons-react/icons-js/flag-2.js b/icons-react/icons-js/flag-2.js deleted file mode 100644 index f4bcbbdaf..000000000 --- a/icons-react/icons-js/flag-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlag2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlag2; \ No newline at end of file diff --git a/icons-react/icons-js/flag-3.js b/icons-react/icons-js/flag-3.js deleted file mode 100644 index 9e22e6fd0..000000000 --- a/icons-react/icons-js/flag-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlag3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlag3; \ No newline at end of file diff --git a/icons-react/icons-js/flag-off.js b/icons-react/icons-js/flag-off.js deleted file mode 100644 index 7a065b00b..000000000 --- a/icons-react/icons-js/flag-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlagOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlagOff; \ No newline at end of file diff --git a/icons-react/icons-js/flag.js b/icons-react/icons-js/flag.js deleted file mode 100644 index eb49f8b20..000000000 --- a/icons-react/icons-js/flag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlag; \ No newline at end of file diff --git a/icons-react/icons-js/flame-off.js b/icons-react/icons-js/flame-off.js deleted file mode 100644 index 5beb14312..000000000 --- a/icons-react/icons-js/flame-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlameOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlameOff; \ No newline at end of file diff --git a/icons-react/icons-js/flame.js b/icons-react/icons-js/flame.js deleted file mode 100644 index 997d1222d..000000000 --- a/icons-react/icons-js/flame.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlame({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlame; \ No newline at end of file diff --git a/icons-react/icons-js/flare.js b/icons-react/icons-js/flare.js deleted file mode 100644 index 3748cf175..000000000 --- a/icons-react/icons-js/flare.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlare; \ No newline at end of file diff --git a/icons-react/icons-js/flask-2-off.js b/icons-react/icons-js/flask-2-off.js deleted file mode 100644 index fc3b6ddec..000000000 --- a/icons-react/icons-js/flask-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlask2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlask2Off; \ No newline at end of file diff --git a/icons-react/icons-js/flask-2.js b/icons-react/icons-js/flask-2.js deleted file mode 100644 index 31bd40031..000000000 --- a/icons-react/icons-js/flask-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlask2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlask2; \ No newline at end of file diff --git a/icons-react/icons-js/flask-off.js b/icons-react/icons-js/flask-off.js deleted file mode 100644 index c12075823..000000000 --- a/icons-react/icons-js/flask-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlaskOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlaskOff; \ No newline at end of file diff --git a/icons-react/icons-js/flask.js b/icons-react/icons-js/flask.js deleted file mode 100644 index 75f98cb47..000000000 --- a/icons-react/icons-js/flask.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlask({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlask; \ No newline at end of file diff --git a/icons-react/icons-js/flip-flops.js b/icons-react/icons-js/flip-flops.js deleted file mode 100644 index fe354a32c..000000000 --- a/icons-react/icons-js/flip-flops.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlipFlops({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlipFlops; \ No newline at end of file diff --git a/icons-react/icons-js/flip-horizontal.js b/icons-react/icons-js/flip-horizontal.js deleted file mode 100644 index d4c315ceb..000000000 --- a/icons-react/icons-js/flip-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlipHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlipHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/flip-vertical.js b/icons-react/icons-js/flip-vertical.js deleted file mode 100644 index ef1a15f41..000000000 --- a/icons-react/icons-js/flip-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlipVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlipVertical; \ No newline at end of file diff --git a/icons-react/icons-js/float-center.js b/icons-react/icons-js/float-center.js deleted file mode 100644 index 5bb485fe5..000000000 --- a/icons-react/icons-js/float-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFloatCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFloatCenter; \ No newline at end of file diff --git a/icons-react/icons-js/float-left.js b/icons-react/icons-js/float-left.js deleted file mode 100644 index 0dbf69eb1..000000000 --- a/icons-react/icons-js/float-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFloatLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFloatLeft; \ No newline at end of file diff --git a/icons-react/icons-js/float-none.js b/icons-react/icons-js/float-none.js deleted file mode 100644 index 1f836dbb7..000000000 --- a/icons-react/icons-js/float-none.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFloatNone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFloatNone; \ No newline at end of file diff --git a/icons-react/icons-js/float-right.js b/icons-react/icons-js/float-right.js deleted file mode 100644 index 3232bd056..000000000 --- a/icons-react/icons-js/float-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFloatRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFloatRight; \ No newline at end of file diff --git a/icons-react/icons-js/flower-off.js b/icons-react/icons-js/flower-off.js deleted file mode 100644 index 2ac7326f7..000000000 --- a/icons-react/icons-js/flower-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlowerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlowerOff; \ No newline at end of file diff --git a/icons-react/icons-js/flower.js b/icons-react/icons-js/flower.js deleted file mode 100644 index 398abdc2b..000000000 --- a/icons-react/icons-js/flower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFlower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFlower; \ No newline at end of file diff --git a/icons-react/icons-js/focus-2.js b/icons-react/icons-js/focus-2.js deleted file mode 100644 index c0696fbac..000000000 --- a/icons-react/icons-js/focus-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFocus2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFocus2; \ No newline at end of file diff --git a/icons-react/icons-js/focus-centered.js b/icons-react/icons-js/focus-centered.js deleted file mode 100644 index b2c33481b..000000000 --- a/icons-react/icons-js/focus-centered.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFocusCentered({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFocusCentered; \ No newline at end of file diff --git a/icons-react/icons-js/focus.js b/icons-react/icons-js/focus.js deleted file mode 100644 index 4c9e15ea9..000000000 --- a/icons-react/icons-js/focus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFocus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFocus; \ No newline at end of file diff --git a/icons-react/icons-js/fold-down.js b/icons-react/icons-js/fold-down.js deleted file mode 100644 index ef42d7137..000000000 --- a/icons-react/icons-js/fold-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFoldDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFoldDown; \ No newline at end of file diff --git a/icons-react/icons-js/fold-up.js b/icons-react/icons-js/fold-up.js deleted file mode 100644 index b0587bf96..000000000 --- a/icons-react/icons-js/fold-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFoldUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFoldUp; \ No newline at end of file diff --git a/icons-react/icons-js/fold.js b/icons-react/icons-js/fold.js deleted file mode 100644 index 51361a96c..000000000 --- a/icons-react/icons-js/fold.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFold({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFold; \ No newline at end of file diff --git a/icons-react/icons-js/folder-minus.js b/icons-react/icons-js/folder-minus.js deleted file mode 100644 index 486b7ec02..000000000 --- a/icons-react/icons-js/folder-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolderMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolderMinus; \ No newline at end of file diff --git a/icons-react/icons-js/folder-off.js b/icons-react/icons-js/folder-off.js deleted file mode 100644 index 56c73190a..000000000 --- a/icons-react/icons-js/folder-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolderOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolderOff; \ No newline at end of file diff --git a/icons-react/icons-js/folder-plus.js b/icons-react/icons-js/folder-plus.js deleted file mode 100644 index 07ca7cfd1..000000000 --- a/icons-react/icons-js/folder-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolderPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolderPlus; \ No newline at end of file diff --git a/icons-react/icons-js/folder-x.js b/icons-react/icons-js/folder-x.js deleted file mode 100644 index 91f0acbf4..000000000 --- a/icons-react/icons-js/folder-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolderX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolderX; \ No newline at end of file diff --git a/icons-react/icons-js/folder.js b/icons-react/icons-js/folder.js deleted file mode 100644 index 016e14d10..000000000 --- a/icons-react/icons-js/folder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolder; \ No newline at end of file diff --git a/icons-react/icons-js/folders-off.js b/icons-react/icons-js/folders-off.js deleted file mode 100644 index cf8e26e42..000000000 --- a/icons-react/icons-js/folders-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFoldersOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFoldersOff; \ No newline at end of file diff --git a/icons-react/icons-js/folders.js b/icons-react/icons-js/folders.js deleted file mode 100644 index 8d7f72b79..000000000 --- a/icons-react/icons-js/folders.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFolders({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFolders; \ No newline at end of file diff --git a/icons-react/icons-js/forbid-2.js b/icons-react/icons-js/forbid-2.js deleted file mode 100644 index f87a6d069..000000000 --- a/icons-react/icons-js/forbid-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconForbid2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/forbid.js b/icons-react/icons-js/forbid.js deleted file mode 100644 index 56af3d0da..000000000 --- a/icons-react/icons-js/forbid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconForbid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconForbid; \ No newline at end of file diff --git a/icons-react/icons-js/forklift.js b/icons-react/icons-js/forklift.js deleted file mode 100644 index b968cb464..000000000 --- a/icons-react/icons-js/forklift.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconForklift({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconForklift; \ No newline at end of file diff --git a/icons-react/icons-js/forms.js b/icons-react/icons-js/forms.js deleted file mode 100644 index 04aaa41cc..000000000 --- a/icons-react/icons-js/forms.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconForms({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconForms; \ No newline at end of file diff --git a/icons-react/icons-js/fountain-off.js b/icons-react/icons-js/fountain-off.js deleted file mode 100644 index 290f7343c..000000000 --- a/icons-react/icons-js/fountain-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFountainOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFountainOff; \ No newline at end of file diff --git a/icons-react/icons-js/fountain.js b/icons-react/icons-js/fountain.js deleted file mode 100644 index da23ef4bb..000000000 --- a/icons-react/icons-js/fountain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFountain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFountain; \ No newline at end of file diff --git a/icons-react/icons-js/frame-off.js b/icons-react/icons-js/frame-off.js deleted file mode 100644 index d2c8eeddf..000000000 --- a/icons-react/icons-js/frame-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFrameOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFrameOff; \ No newline at end of file diff --git a/icons-react/icons-js/frame.js b/icons-react/icons-js/frame.js deleted file mode 100644 index 767d451ed..000000000 --- a/icons-react/icons-js/frame.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFrame({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFrame; \ No newline at end of file diff --git a/icons-react/icons-js/free-rights.js b/icons-react/icons-js/free-rights.js deleted file mode 100644 index 88f6ae753..000000000 --- a/icons-react/icons-js/free-rights.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFreeRights({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFreeRights; \ No newline at end of file diff --git a/icons-react/icons-js/fridge-off.js b/icons-react/icons-js/fridge-off.js deleted file mode 100644 index f0431b876..000000000 --- a/icons-react/icons-js/fridge-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFridgeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFridgeOff; \ No newline at end of file diff --git a/icons-react/icons-js/fridge.js b/icons-react/icons-js/fridge.js deleted file mode 100644 index 9135f7592..000000000 --- a/icons-react/icons-js/fridge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFridge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFridge; \ No newline at end of file diff --git a/icons-react/icons-js/friends-off.js b/icons-react/icons-js/friends-off.js deleted file mode 100644 index 4d966da80..000000000 --- a/icons-react/icons-js/friends-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFriendsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFriendsOff; \ No newline at end of file diff --git a/icons-react/icons-js/friends.js b/icons-react/icons-js/friends.js deleted file mode 100644 index 480c35f18..000000000 --- a/icons-react/icons-js/friends.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFriends({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFriends; \ No newline at end of file diff --git a/icons-react/icons-js/function-off.js b/icons-react/icons-js/function-off.js deleted file mode 100644 index 399fee62e..000000000 --- a/icons-react/icons-js/function-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFunctionOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFunctionOff; \ No newline at end of file diff --git a/icons-react/icons-js/function.js b/icons-react/icons-js/function.js deleted file mode 100644 index c4505298f..000000000 --- a/icons-react/icons-js/function.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconFunction({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconFunction; \ No newline at end of file diff --git a/icons-react/icons-js/garden-cart-off.js b/icons-react/icons-js/garden-cart-off.js deleted file mode 100644 index d8eca3465..000000000 --- a/icons-react/icons-js/garden-cart-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGardenCartOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGardenCartOff; \ No newline at end of file diff --git a/icons-react/icons-js/garden-cart.js b/icons-react/icons-js/garden-cart.js deleted file mode 100644 index 3a76c486b..000000000 --- a/icons-react/icons-js/garden-cart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGardenCart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGardenCart; \ No newline at end of file diff --git a/icons-react/icons-js/gas-station-off.js b/icons-react/icons-js/gas-station-off.js deleted file mode 100644 index 100bdcc18..000000000 --- a/icons-react/icons-js/gas-station-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGasStationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGasStationOff; \ No newline at end of file diff --git a/icons-react/icons-js/gas-station.js b/icons-react/icons-js/gas-station.js deleted file mode 100644 index 19099bb4a..000000000 --- a/icons-react/icons-js/gas-station.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGasStation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGasStation; \ No newline at end of file diff --git a/icons-react/icons-js/gauge-off.js b/icons-react/icons-js/gauge-off.js deleted file mode 100644 index 5f0ac09cf..000000000 --- a/icons-react/icons-js/gauge-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGaugeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGaugeOff; \ No newline at end of file diff --git a/icons-react/icons-js/gauge.js b/icons-react/icons-js/gauge.js deleted file mode 100644 index d0abec3d8..000000000 --- a/icons-react/icons-js/gauge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGauge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGauge; \ No newline at end of file diff --git a/icons-react/icons-js/gavel.js b/icons-react/icons-js/gavel.js deleted file mode 100644 index 18f5b2df9..000000000 --- a/icons-react/icons-js/gavel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGavel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGavel; \ No newline at end of file diff --git a/icons-react/icons-js/gender-agender.js b/icons-react/icons-js/gender-agender.js deleted file mode 100644 index fd26d7e62..000000000 --- a/icons-react/icons-js/gender-agender.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderAgender({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderAgender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-androgyne.js b/icons-react/icons-js/gender-androgyne.js deleted file mode 100644 index da38012c1..000000000 --- a/icons-react/icons-js/gender-androgyne.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderAndrogyne({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderAndrogyne; \ No newline at end of file diff --git a/icons-react/icons-js/gender-bigender.js b/icons-react/icons-js/gender-bigender.js deleted file mode 100644 index 610069250..000000000 --- a/icons-react/icons-js/gender-bigender.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderBigender({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderBigender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-demiboy.js b/icons-react/icons-js/gender-demiboy.js deleted file mode 100644 index b294b6404..000000000 --- a/icons-react/icons-js/gender-demiboy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderDemiboy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderDemiboy; \ No newline at end of file diff --git a/icons-react/icons-js/gender-demigirl.js b/icons-react/icons-js/gender-demigirl.js deleted file mode 100644 index 0146c1151..000000000 --- a/icons-react/icons-js/gender-demigirl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderDemigirl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderDemigirl; \ No newline at end of file diff --git a/icons-react/icons-js/gender-epicene.js b/icons-react/icons-js/gender-epicene.js deleted file mode 100644 index 803307bdb..000000000 --- a/icons-react/icons-js/gender-epicene.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderEpicene({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderEpicene; \ No newline at end of file diff --git a/icons-react/icons-js/gender-female.js b/icons-react/icons-js/gender-female.js deleted file mode 100644 index f0f6bb216..000000000 --- a/icons-react/icons-js/gender-female.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderFemale({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderFemale; \ No newline at end of file diff --git a/icons-react/icons-js/gender-femme.js b/icons-react/icons-js/gender-femme.js deleted file mode 100644 index 2d1d0dbde..000000000 --- a/icons-react/icons-js/gender-femme.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderFemme({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderFemme; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderfluid.js b/icons-react/icons-js/gender-genderfluid.js deleted file mode 100644 index 34253b7f4..000000000 --- a/icons-react/icons-js/gender-genderfluid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderGenderfluid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderGenderfluid; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderless.js b/icons-react/icons-js/gender-genderless.js deleted file mode 100644 index 9a524ad9b..000000000 --- a/icons-react/icons-js/gender-genderless.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderGenderless({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderGenderless; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderqueer.js b/icons-react/icons-js/gender-genderqueer.js deleted file mode 100644 index 7b91327fa..000000000 --- a/icons-react/icons-js/gender-genderqueer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderGenderqueer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderGenderqueer; \ No newline at end of file diff --git a/icons-react/icons-js/gender-hermaphrodite.js b/icons-react/icons-js/gender-hermaphrodite.js deleted file mode 100644 index 15969ea2e..000000000 --- a/icons-react/icons-js/gender-hermaphrodite.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderHermaphrodite({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderHermaphrodite; \ No newline at end of file diff --git a/icons-react/icons-js/gender-intergender.js b/icons-react/icons-js/gender-intergender.js deleted file mode 100644 index 961693f53..000000000 --- a/icons-react/icons-js/gender-intergender.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderIntergender({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderIntergender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-male.js b/icons-react/icons-js/gender-male.js deleted file mode 100644 index 9964fef74..000000000 --- a/icons-react/icons-js/gender-male.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderMale({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderMale; \ No newline at end of file diff --git a/icons-react/icons-js/gender-neutrois.js b/icons-react/icons-js/gender-neutrois.js deleted file mode 100644 index 8a14b1487..000000000 --- a/icons-react/icons-js/gender-neutrois.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderNeutrois({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderNeutrois; \ No newline at end of file diff --git a/icons-react/icons-js/gender-third.js b/icons-react/icons-js/gender-third.js deleted file mode 100644 index a3d25f319..000000000 --- a/icons-react/icons-js/gender-third.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderThird({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderThird; \ No newline at end of file diff --git a/icons-react/icons-js/gender-transgender.js b/icons-react/icons-js/gender-transgender.js deleted file mode 100644 index 35593e678..000000000 --- a/icons-react/icons-js/gender-transgender.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderTransgender({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderTransgender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-trasvesti.js b/icons-react/icons-js/gender-trasvesti.js deleted file mode 100644 index c0019fb8b..000000000 --- a/icons-react/icons-js/gender-trasvesti.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGenderTrasvesti({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGenderTrasvesti; \ No newline at end of file diff --git a/icons-react/icons-js/geometry.js b/icons-react/icons-js/geometry.js deleted file mode 100644 index a8bf264ca..000000000 --- a/icons-react/icons-js/geometry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGeometry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGeometry; \ No newline at end of file diff --git a/icons-react/icons-js/ghost-2.js b/icons-react/icons-js/ghost-2.js deleted file mode 100644 index a4c4e3ad5..000000000 --- a/icons-react/icons-js/ghost-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGhost2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGhost2; \ No newline at end of file diff --git a/icons-react/icons-js/ghost-off.js b/icons-react/icons-js/ghost-off.js deleted file mode 100644 index c39669bd3..000000000 --- a/icons-react/icons-js/ghost-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGhostOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGhostOff; \ No newline at end of file diff --git a/icons-react/icons-js/ghost.js b/icons-react/icons-js/ghost.js deleted file mode 100644 index 0679575bc..000000000 --- a/icons-react/icons-js/ghost.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGhost({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGhost; \ No newline at end of file diff --git a/icons-react/icons-js/gif.js b/icons-react/icons-js/gif.js deleted file mode 100644 index c2a45c17c..000000000 --- a/icons-react/icons-js/gif.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGif({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGif; \ No newline at end of file diff --git a/icons-react/icons-js/gift-card.js b/icons-react/icons-js/gift-card.js deleted file mode 100644 index b7cf694cc..000000000 --- a/icons-react/icons-js/gift-card.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGiftCard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGiftCard; \ No newline at end of file diff --git a/icons-react/icons-js/gift-off.js b/icons-react/icons-js/gift-off.js deleted file mode 100644 index c0fc97710..000000000 --- a/icons-react/icons-js/gift-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGiftOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGiftOff; \ No newline at end of file diff --git a/icons-react/icons-js/gift.js b/icons-react/icons-js/gift.js deleted file mode 100644 index a0482b445..000000000 --- a/icons-react/icons-js/gift.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGift({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGift; \ No newline at end of file diff --git a/icons-react/icons-js/git-branch-deleted.js b/icons-react/icons-js/git-branch-deleted.js deleted file mode 100644 index ab1f371c8..000000000 --- a/icons-react/icons-js/git-branch-deleted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitBranchDeleted({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitBranchDeleted; \ No newline at end of file diff --git a/icons-react/icons-js/git-branch.js b/icons-react/icons-js/git-branch.js deleted file mode 100644 index c648f2707..000000000 --- a/icons-react/icons-js/git-branch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitBranch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitBranch; \ No newline at end of file diff --git a/icons-react/icons-js/git-cherry-pick.js b/icons-react/icons-js/git-cherry-pick.js deleted file mode 100644 index 9df4b529c..000000000 --- a/icons-react/icons-js/git-cherry-pick.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitCherryPick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitCherryPick; \ No newline at end of file diff --git a/icons-react/icons-js/git-commit.js b/icons-react/icons-js/git-commit.js deleted file mode 100644 index 140ef9155..000000000 --- a/icons-react/icons-js/git-commit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitCommit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitCommit; \ No newline at end of file diff --git a/icons-react/icons-js/git-compare.js b/icons-react/icons-js/git-compare.js deleted file mode 100644 index a9046c9cd..000000000 --- a/icons-react/icons-js/git-compare.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitCompare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitCompare; \ No newline at end of file diff --git a/icons-react/icons-js/git-fork.js b/icons-react/icons-js/git-fork.js deleted file mode 100644 index 46cb1f3db..000000000 --- a/icons-react/icons-js/git-fork.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitFork({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitFork; \ No newline at end of file diff --git a/icons-react/icons-js/git-merge.js b/icons-react/icons-js/git-merge.js deleted file mode 100644 index 459202805..000000000 --- a/icons-react/icons-js/git-merge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitMerge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitMerge; \ No newline at end of file diff --git a/icons-react/icons-js/git-pull-request-closed.js b/icons-react/icons-js/git-pull-request-closed.js deleted file mode 100644 index 12549154c..000000000 --- a/icons-react/icons-js/git-pull-request-closed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitPullRequestClosed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitPullRequestClosed; \ No newline at end of file diff --git a/icons-react/icons-js/git-pull-request-draft.js b/icons-react/icons-js/git-pull-request-draft.js deleted file mode 100644 index 4f0d959a3..000000000 --- a/icons-react/icons-js/git-pull-request-draft.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitPullRequestDraft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitPullRequestDraft; \ No newline at end of file diff --git a/icons-react/icons-js/git-pull-request.js b/icons-react/icons-js/git-pull-request.js deleted file mode 100644 index 4be13d430..000000000 --- a/icons-react/icons-js/git-pull-request.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGitPullRequest({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGitPullRequest; \ No newline at end of file diff --git a/icons-react/icons-js/gizmo.js b/icons-react/icons-js/gizmo.js deleted file mode 100644 index f53f87c5f..000000000 --- a/icons-react/icons-js/gizmo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGizmo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGizmo; \ No newline at end of file diff --git a/icons-react/icons-js/glass-full.js b/icons-react/icons-js/glass-full.js deleted file mode 100644 index 358095d0f..000000000 --- a/icons-react/icons-js/glass-full.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGlassFull({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGlassFull; \ No newline at end of file diff --git a/icons-react/icons-js/glass-off.js b/icons-react/icons-js/glass-off.js deleted file mode 100644 index a20cd044f..000000000 --- a/icons-react/icons-js/glass-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGlassOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGlassOff; \ No newline at end of file diff --git a/icons-react/icons-js/glass.js b/icons-react/icons-js/glass.js deleted file mode 100644 index bfc8f3274..000000000 --- a/icons-react/icons-js/glass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGlass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGlass; \ No newline at end of file diff --git a/icons-react/icons-js/globe-off.js b/icons-react/icons-js/globe-off.js deleted file mode 100644 index 303787427..000000000 --- a/icons-react/icons-js/globe-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGlobeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGlobeOff; \ No newline at end of file diff --git a/icons-react/icons-js/globe.js b/icons-react/icons-js/globe.js deleted file mode 100644 index 1ed5ce7f3..000000000 --- a/icons-react/icons-js/globe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGlobe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGlobe; \ No newline at end of file diff --git a/icons-react/icons-js/go-game.js b/icons-react/icons-js/go-game.js deleted file mode 100644 index 7be548392..000000000 --- a/icons-react/icons-js/go-game.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGoGame({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGoGame; \ No newline at end of file diff --git a/icons-react/icons-js/golf-off.js b/icons-react/icons-js/golf-off.js deleted file mode 100644 index d648fc0fb..000000000 --- a/icons-react/icons-js/golf-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGolfOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGolfOff; \ No newline at end of file diff --git a/icons-react/icons-js/golf.js b/icons-react/icons-js/golf.js deleted file mode 100644 index a4ad77b10..000000000 --- a/icons-react/icons-js/golf.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGolf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGolf; \ No newline at end of file diff --git a/icons-react/icons-js/gps.js b/icons-react/icons-js/gps.js deleted file mode 100644 index 182b27405..000000000 --- a/icons-react/icons-js/gps.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGps({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGps; \ No newline at end of file diff --git a/icons-react/icons-js/gradienter.js b/icons-react/icons-js/gradienter.js deleted file mode 100644 index 60129297d..000000000 --- a/icons-react/icons-js/gradienter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGradienter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGradienter; \ No newline at end of file diff --git a/icons-react/icons-js/grain.js b/icons-react/icons-js/grain.js deleted file mode 100644 index 9215b00ae..000000000 --- a/icons-react/icons-js/grain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrain; \ No newline at end of file diff --git a/icons-react/icons-js/graph-off.js b/icons-react/icons-js/graph-off.js deleted file mode 100644 index 953c93290..000000000 --- a/icons-react/icons-js/graph-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGraphOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGraphOff; \ No newline at end of file diff --git a/icons-react/icons-js/graph.js b/icons-react/icons-js/graph.js deleted file mode 100644 index 45063110f..000000000 --- a/icons-react/icons-js/graph.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGraph({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGraph; \ No newline at end of file diff --git a/icons-react/icons-js/grave-2.js b/icons-react/icons-js/grave-2.js deleted file mode 100644 index f4baf0f2e..000000000 --- a/icons-react/icons-js/grave-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrave2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrave2; \ No newline at end of file diff --git a/icons-react/icons-js/grave.js b/icons-react/icons-js/grave.js deleted file mode 100644 index bc57f08b3..000000000 --- a/icons-react/icons-js/grave.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrave({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrave; \ No newline at end of file diff --git a/icons-react/icons-js/grid-dots.js b/icons-react/icons-js/grid-dots.js deleted file mode 100644 index 9ad99e5b3..000000000 --- a/icons-react/icons-js/grid-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGridDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGridDots; \ No newline at end of file diff --git a/icons-react/icons-js/grid-pattern.js b/icons-react/icons-js/grid-pattern.js deleted file mode 100644 index 939ddd359..000000000 --- a/icons-react/icons-js/grid-pattern.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGridPattern({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGridPattern; \ No newline at end of file diff --git a/icons-react/icons-js/grid.js b/icons-react/icons-js/grid.js deleted file mode 100644 index 6b788ab7b..000000000 --- a/icons-react/icons-js/grid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrid; \ No newline at end of file diff --git a/icons-react/icons-js/grill-fork.js b/icons-react/icons-js/grill-fork.js deleted file mode 100644 index 3d777d729..000000000 --- a/icons-react/icons-js/grill-fork.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrillFork({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrillFork; \ No newline at end of file diff --git a/icons-react/icons-js/grill-off.js b/icons-react/icons-js/grill-off.js deleted file mode 100644 index fd994c21c..000000000 --- a/icons-react/icons-js/grill-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrillOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrillOff; \ No newline at end of file diff --git a/icons-react/icons-js/grill-spatula.js b/icons-react/icons-js/grill-spatula.js deleted file mode 100644 index 94fe3d02d..000000000 --- a/icons-react/icons-js/grill-spatula.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrillSpatula({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrillSpatula; \ No newline at end of file diff --git a/icons-react/icons-js/grill.js b/icons-react/icons-js/grill.js deleted file mode 100644 index f57a925e8..000000000 --- a/icons-react/icons-js/grill.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrill({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrill; \ No newline at end of file diff --git a/icons-react/icons-js/grip-horizontal.js b/icons-react/icons-js/grip-horizontal.js deleted file mode 100644 index 553ac0c77..000000000 --- a/icons-react/icons-js/grip-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGripHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGripHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/grip-vertical.js b/icons-react/icons-js/grip-vertical.js deleted file mode 100644 index 5a87caeb1..000000000 --- a/icons-react/icons-js/grip-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGripVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGripVertical; \ No newline at end of file diff --git a/icons-react/icons-js/ground.js b/icons-react/icons-js/ground.js deleted file mode 100644 index 65fbe1fca..000000000 --- a/icons-react/icons-js/ground.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGround({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGround; \ No newline at end of file diff --git a/icons-react/icons-js/growth.js b/icons-react/icons-js/growth.js deleted file mode 100644 index 121b00693..000000000 --- a/icons-react/icons-js/growth.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGrowth({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGrowth; \ No newline at end of file diff --git a/icons-react/icons-js/guitar-pick.js b/icons-react/icons-js/guitar-pick.js deleted file mode 100644 index 23e51e21a..000000000 --- a/icons-react/icons-js/guitar-pick.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconGuitarPick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconGuitarPick; \ No newline at end of file diff --git a/icons-react/icons-js/h-1.js b/icons-react/icons-js/h-1.js deleted file mode 100644 index b4d3f63e6..000000000 --- a/icons-react/icons-js/h-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH1; \ No newline at end of file diff --git a/icons-react/icons-js/h-2.js b/icons-react/icons-js/h-2.js deleted file mode 100644 index 30dcd1eae..000000000 --- a/icons-react/icons-js/h-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH2; \ No newline at end of file diff --git a/icons-react/icons-js/h-3.js b/icons-react/icons-js/h-3.js deleted file mode 100644 index 2936ec0aa..000000000 --- a/icons-react/icons-js/h-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH3; \ No newline at end of file diff --git a/icons-react/icons-js/h-4.js b/icons-react/icons-js/h-4.js deleted file mode 100644 index 05ed3ecda..000000000 --- a/icons-react/icons-js/h-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH4; \ No newline at end of file diff --git a/icons-react/icons-js/h-5.js b/icons-react/icons-js/h-5.js deleted file mode 100644 index 7f202b5b6..000000000 --- a/icons-react/icons-js/h-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH5; \ No newline at end of file diff --git a/icons-react/icons-js/h-6.js b/icons-react/icons-js/h-6.js deleted file mode 100644 index 0120d00dc..000000000 --- a/icons-react/icons-js/h-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconH6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconH6; \ No newline at end of file diff --git a/icons-react/icons-js/hammer-off.js b/icons-react/icons-js/hammer-off.js deleted file mode 100644 index dc7f2429e..000000000 --- a/icons-react/icons-js/hammer-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHammerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHammerOff; \ No newline at end of file diff --git a/icons-react/icons-js/hammer.js b/icons-react/icons-js/hammer.js deleted file mode 100644 index e130b17a0..000000000 --- a/icons-react/icons-js/hammer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHammer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHammer; \ No newline at end of file diff --git a/icons-react/icons-js/hand-click.js b/icons-react/icons-js/hand-click.js deleted file mode 100644 index d64225e40..000000000 --- a/icons-react/icons-js/hand-click.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandClick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandClick; \ No newline at end of file diff --git a/icons-react/icons-js/hand-finger-off.js b/icons-react/icons-js/hand-finger-off.js deleted file mode 100644 index 1d4f5abca..000000000 --- a/icons-react/icons-js/hand-finger-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandFingerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandFingerOff; \ No newline at end of file diff --git a/icons-react/icons-js/hand-finger.js b/icons-react/icons-js/hand-finger.js deleted file mode 100644 index 46ec61f56..000000000 --- a/icons-react/icons-js/hand-finger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandFinger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandFinger; \ No newline at end of file diff --git a/icons-react/icons-js/hand-grab.js b/icons-react/icons-js/hand-grab.js deleted file mode 100644 index 2651823fa..000000000 --- a/icons-react/icons-js/hand-grab.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandGrab({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandGrab; \ No newline at end of file diff --git a/icons-react/icons-js/hand-little-finger.js b/icons-react/icons-js/hand-little-finger.js deleted file mode 100644 index 01f537a75..000000000 --- a/icons-react/icons-js/hand-little-finger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandLittleFinger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandLittleFinger; \ No newline at end of file diff --git a/icons-react/icons-js/hand-middle-finger.js b/icons-react/icons-js/hand-middle-finger.js deleted file mode 100644 index 427de5a77..000000000 --- a/icons-react/icons-js/hand-middle-finger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandMiddleFinger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandMiddleFinger; \ No newline at end of file diff --git a/icons-react/icons-js/hand-move.js b/icons-react/icons-js/hand-move.js deleted file mode 100644 index 23823acce..000000000 --- a/icons-react/icons-js/hand-move.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandMove({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandMove; \ No newline at end of file diff --git a/icons-react/icons-js/hand-off.js b/icons-react/icons-js/hand-off.js deleted file mode 100644 index a670441ca..000000000 --- a/icons-react/icons-js/hand-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandOff; \ No newline at end of file diff --git a/icons-react/icons-js/hand-ring-finger.js b/icons-react/icons-js/hand-ring-finger.js deleted file mode 100644 index 44015c653..000000000 --- a/icons-react/icons-js/hand-ring-finger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandRingFinger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandRingFinger; \ No newline at end of file diff --git a/icons-react/icons-js/hand-rock.js b/icons-react/icons-js/hand-rock.js deleted file mode 100644 index 5679119bf..000000000 --- a/icons-react/icons-js/hand-rock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandRock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandRock; \ No newline at end of file diff --git a/icons-react/icons-js/hand-sanitizer.js b/icons-react/icons-js/hand-sanitizer.js deleted file mode 100644 index f9cb7b549..000000000 --- a/icons-react/icons-js/hand-sanitizer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandSanitizer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandSanitizer; \ No newline at end of file diff --git a/icons-react/icons-js/hand-stop.js b/icons-react/icons-js/hand-stop.js deleted file mode 100644 index 416c0de5a..000000000 --- a/icons-react/icons-js/hand-stop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandStop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandStop; \ No newline at end of file diff --git a/icons-react/icons-js/hand-three-fingers.js b/icons-react/icons-js/hand-three-fingers.js deleted file mode 100644 index 985f819fd..000000000 --- a/icons-react/icons-js/hand-three-fingers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandThreeFingers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandThreeFingers; \ No newline at end of file diff --git a/icons-react/icons-js/hand-two-fingers.js b/icons-react/icons-js/hand-two-fingers.js deleted file mode 100644 index 502e1ea28..000000000 --- a/icons-react/icons-js/hand-two-fingers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHandTwoFingers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHandTwoFingers; \ No newline at end of file diff --git a/icons-react/icons-js/hanger-2.js b/icons-react/icons-js/hanger-2.js deleted file mode 100644 index 77a49f48f..000000000 --- a/icons-react/icons-js/hanger-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHanger2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHanger2; \ No newline at end of file diff --git a/icons-react/icons-js/hanger-off.js b/icons-react/icons-js/hanger-off.js deleted file mode 100644 index 313350c8d..000000000 --- a/icons-react/icons-js/hanger-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHangerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHangerOff; \ No newline at end of file diff --git a/icons-react/icons-js/hanger.js b/icons-react/icons-js/hanger.js deleted file mode 100644 index 046a8dbd2..000000000 --- a/icons-react/icons-js/hanger.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHanger({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHanger; \ No newline at end of file diff --git a/icons-react/icons-js/hash.js b/icons-react/icons-js/hash.js deleted file mode 100644 index 4b40c1344..000000000 --- a/icons-react/icons-js/hash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHash; \ No newline at end of file diff --git a/icons-react/icons-js/haze.js b/icons-react/icons-js/haze.js deleted file mode 100644 index d38f8e51c..000000000 --- a/icons-react/icons-js/haze.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHaze({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHaze; \ No newline at end of file diff --git a/icons-react/icons-js/heading-off.js b/icons-react/icons-js/heading-off.js deleted file mode 100644 index f9ccab434..000000000 --- a/icons-react/icons-js/heading-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeadingOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeadingOff; \ No newline at end of file diff --git a/icons-react/icons-js/heading.js b/icons-react/icons-js/heading.js deleted file mode 100644 index 1ea4cafc0..000000000 --- a/icons-react/icons-js/heading.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeading({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeading; \ No newline at end of file diff --git a/icons-react/icons-js/headphones-off.js b/icons-react/icons-js/headphones-off.js deleted file mode 100644 index cf13fc613..000000000 --- a/icons-react/icons-js/headphones-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeadphonesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeadphonesOff; \ No newline at end of file diff --git a/icons-react/icons-js/headphones.js b/icons-react/icons-js/headphones.js deleted file mode 100644 index c5c4b9610..000000000 --- a/icons-react/icons-js/headphones.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeadphones({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeadphones; \ No newline at end of file diff --git a/icons-react/icons-js/headset-off.js b/icons-react/icons-js/headset-off.js deleted file mode 100644 index 1156c7f46..000000000 --- a/icons-react/icons-js/headset-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeadsetOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeadsetOff; \ No newline at end of file diff --git a/icons-react/icons-js/headset.js b/icons-react/icons-js/headset.js deleted file mode 100644 index 17a654e8a..000000000 --- a/icons-react/icons-js/headset.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeadset({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeadset; \ No newline at end of file diff --git a/icons-react/icons-js/health-recognition.js b/icons-react/icons-js/health-recognition.js deleted file mode 100644 index 5c2ca4c81..000000000 --- a/icons-react/icons-js/health-recognition.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHealthRecognition({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHealthRecognition; \ No newline at end of file diff --git a/icons-react/icons-js/heart-broken.js b/icons-react/icons-js/heart-broken.js deleted file mode 100644 index 549386a99..000000000 --- a/icons-react/icons-js/heart-broken.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartBroken({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartBroken; \ No newline at end of file diff --git a/icons-react/icons-js/heart-handshake.js b/icons-react/icons-js/heart-handshake.js deleted file mode 100644 index 826e11f77..000000000 --- a/icons-react/icons-js/heart-handshake.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartHandshake({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartHandshake; \ No newline at end of file diff --git a/icons-react/icons-js/heart-minus.js b/icons-react/icons-js/heart-minus.js deleted file mode 100644 index 6f606b9de..000000000 --- a/icons-react/icons-js/heart-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartMinus; \ No newline at end of file diff --git a/icons-react/icons-js/heart-off.js b/icons-react/icons-js/heart-off.js deleted file mode 100644 index dd6b06d1f..000000000 --- a/icons-react/icons-js/heart-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartOff; \ No newline at end of file diff --git a/icons-react/icons-js/heart-plus.js b/icons-react/icons-js/heart-plus.js deleted file mode 100644 index 5327e001f..000000000 --- a/icons-react/icons-js/heart-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartPlus; \ No newline at end of file diff --git a/icons-react/icons-js/heart-rate-monitor.js b/icons-react/icons-js/heart-rate-monitor.js deleted file mode 100644 index f256e4938..000000000 --- a/icons-react/icons-js/heart-rate-monitor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartRateMonitor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartRateMonitor; \ No newline at end of file diff --git a/icons-react/icons-js/heart.js b/icons-react/icons-js/heart.js deleted file mode 100644 index 1099980d3..000000000 --- a/icons-react/icons-js/heart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeart; \ No newline at end of file diff --git a/icons-react/icons-js/heartbeat.js b/icons-react/icons-js/heartbeat.js deleted file mode 100644 index 5f3f67ddb..000000000 --- a/icons-react/icons-js/heartbeat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartbeat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartbeat; \ No newline at end of file diff --git a/icons-react/icons-js/hearts-off.js b/icons-react/icons-js/hearts-off.js deleted file mode 100644 index 9a4316147..000000000 --- a/icons-react/icons-js/hearts-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHeartsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHeartsOff; \ No newline at end of file diff --git a/icons-react/icons-js/hearts.js b/icons-react/icons-js/hearts.js deleted file mode 100644 index 2768a54c1..000000000 --- a/icons-react/icons-js/hearts.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHearts({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHearts; \ No newline at end of file diff --git a/icons-react/icons-js/helicopter-landing.js b/icons-react/icons-js/helicopter-landing.js deleted file mode 100644 index 19608ee2e..000000000 --- a/icons-react/icons-js/helicopter-landing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelicopterLanding({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelicopterLanding; \ No newline at end of file diff --git a/icons-react/icons-js/helicopter.js b/icons-react/icons-js/helicopter.js deleted file mode 100644 index 1db0af65f..000000000 --- a/icons-react/icons-js/helicopter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelicopter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelicopter; \ No newline at end of file diff --git a/icons-react/icons-js/helmet-off.js b/icons-react/icons-js/helmet-off.js deleted file mode 100644 index b3a85d4a1..000000000 --- a/icons-react/icons-js/helmet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelmetOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelmetOff; \ No newline at end of file diff --git a/icons-react/icons-js/helmet.js b/icons-react/icons-js/helmet.js deleted file mode 100644 index 7d46aed35..000000000 --- a/icons-react/icons-js/helmet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelmet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelmet; \ No newline at end of file diff --git a/icons-react/icons-js/help-off.js b/icons-react/icons-js/help-off.js deleted file mode 100644 index 2708144be..000000000 --- a/icons-react/icons-js/help-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelpOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelpOff; \ No newline at end of file diff --git a/icons-react/icons-js/help.js b/icons-react/icons-js/help.js deleted file mode 100644 index 67659d161..000000000 --- a/icons-react/icons-js/help.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHelp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHelp; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-0.js b/icons-react/icons-js/hexagon-0.js deleted file mode 100644 index ac49fc23a..000000000 --- a/icons-react/icons-js/hexagon-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon0; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-1.js b/icons-react/icons-js/hexagon-1.js deleted file mode 100644 index db6e2dd52..000000000 --- a/icons-react/icons-js/hexagon-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon1; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-2.js b/icons-react/icons-js/hexagon-2.js deleted file mode 100644 index daeb0f82b..000000000 --- a/icons-react/icons-js/hexagon-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon2; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-3.js b/icons-react/icons-js/hexagon-3.js deleted file mode 100644 index bf8e1bd23..000000000 --- a/icons-react/icons-js/hexagon-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon3; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-3d.js b/icons-react/icons-js/hexagon-3d.js deleted file mode 100644 index 6c49c140d..000000000 --- a/icons-react/icons-js/hexagon-3d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon3d({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon3d; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-4.js b/icons-react/icons-js/hexagon-4.js deleted file mode 100644 index 52f120ec0..000000000 --- a/icons-react/icons-js/hexagon-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon4; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-5.js b/icons-react/icons-js/hexagon-5.js deleted file mode 100644 index e21d251ef..000000000 --- a/icons-react/icons-js/hexagon-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon5; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-6.js b/icons-react/icons-js/hexagon-6.js deleted file mode 100644 index fc4ff5ab1..000000000 --- a/icons-react/icons-js/hexagon-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon6; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-7.js b/icons-react/icons-js/hexagon-7.js deleted file mode 100644 index c78432a02..000000000 --- a/icons-react/icons-js/hexagon-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon7; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-8.js b/icons-react/icons-js/hexagon-8.js deleted file mode 100644 index 40df2e5b9..000000000 --- a/icons-react/icons-js/hexagon-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon8; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-9.js b/icons-react/icons-js/hexagon-9.js deleted file mode 100644 index ec90d1abb..000000000 --- a/icons-react/icons-js/hexagon-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon9; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-a.js b/icons-react/icons-js/hexagon-a.js deleted file mode 100644 index 0a8d6b314..000000000 --- a/icons-react/icons-js/hexagon-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonA; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-b.js b/icons-react/icons-js/hexagon-b.js deleted file mode 100644 index 7af04ebec..000000000 --- a/icons-react/icons-js/hexagon-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonB; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-c.js b/icons-react/icons-js/hexagon-c.js deleted file mode 100644 index 090377e1b..000000000 --- a/icons-react/icons-js/hexagon-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonC; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-d.js b/icons-react/icons-js/hexagon-d.js deleted file mode 100644 index 9e53905da..000000000 --- a/icons-react/icons-js/hexagon-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonD; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-e.js b/icons-react/icons-js/hexagon-e.js deleted file mode 100644 index e478da20a..000000000 --- a/icons-react/icons-js/hexagon-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonE; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-f.js b/icons-react/icons-js/hexagon-f.js deleted file mode 100644 index 7312cb790..000000000 --- a/icons-react/icons-js/hexagon-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonF; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-g.js b/icons-react/icons-js/hexagon-g.js deleted file mode 100644 index 309d6b1a3..000000000 --- a/icons-react/icons-js/hexagon-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonG; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-h.js b/icons-react/icons-js/hexagon-h.js deleted file mode 100644 index 05ee07b40..000000000 --- a/icons-react/icons-js/hexagon-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonH; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-i.js b/icons-react/icons-js/hexagon-i.js deleted file mode 100644 index 4a34738d3..000000000 --- a/icons-react/icons-js/hexagon-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonI; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-j.js b/icons-react/icons-js/hexagon-j.js deleted file mode 100644 index 535a747bb..000000000 --- a/icons-react/icons-js/hexagon-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonJ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-k.js b/icons-react/icons-js/hexagon-k.js deleted file mode 100644 index 49f7c8a4f..000000000 --- a/icons-react/icons-js/hexagon-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonK; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-l.js b/icons-react/icons-js/hexagon-l.js deleted file mode 100644 index bca45247d..000000000 --- a/icons-react/icons-js/hexagon-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonL; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-a.js b/icons-react/icons-js/hexagon-letter-a.js deleted file mode 100644 index fb0fed693..000000000 --- a/icons-react/icons-js/hexagon-letter-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-b.js b/icons-react/icons-js/hexagon-letter-b.js deleted file mode 100644 index 2113ec5ec..000000000 --- a/icons-react/icons-js/hexagon-letter-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-c.js b/icons-react/icons-js/hexagon-letter-c.js deleted file mode 100644 index 33fb4bc65..000000000 --- a/icons-react/icons-js/hexagon-letter-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-d.js b/icons-react/icons-js/hexagon-letter-d.js deleted file mode 100644 index 77d5d2ecb..000000000 --- a/icons-react/icons-js/hexagon-letter-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-e.js b/icons-react/icons-js/hexagon-letter-e.js deleted file mode 100644 index fedf23277..000000000 --- a/icons-react/icons-js/hexagon-letter-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-f.js b/icons-react/icons-js/hexagon-letter-f.js deleted file mode 100644 index 527803875..000000000 --- a/icons-react/icons-js/hexagon-letter-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-g.js b/icons-react/icons-js/hexagon-letter-g.js deleted file mode 100644 index d7c9da80a..000000000 --- a/icons-react/icons-js/hexagon-letter-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-h.js b/icons-react/icons-js/hexagon-letter-h.js deleted file mode 100644 index 90e2c0909..000000000 --- a/icons-react/icons-js/hexagon-letter-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-i.js b/icons-react/icons-js/hexagon-letter-i.js deleted file mode 100644 index 7e32503d2..000000000 --- a/icons-react/icons-js/hexagon-letter-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-j.js b/icons-react/icons-js/hexagon-letter-j.js deleted file mode 100644 index 528614a60..000000000 --- a/icons-react/icons-js/hexagon-letter-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-k.js b/icons-react/icons-js/hexagon-letter-k.js deleted file mode 100644 index ffa525c50..000000000 --- a/icons-react/icons-js/hexagon-letter-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-l.js b/icons-react/icons-js/hexagon-letter-l.js deleted file mode 100644 index 5f195e76b..000000000 --- a/icons-react/icons-js/hexagon-letter-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-m.js b/icons-react/icons-js/hexagon-letter-m.js deleted file mode 100644 index 21b08dfee..000000000 --- a/icons-react/icons-js/hexagon-letter-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-n.js b/icons-react/icons-js/hexagon-letter-n.js deleted file mode 100644 index 1d658274a..000000000 --- a/icons-react/icons-js/hexagon-letter-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-o.js b/icons-react/icons-js/hexagon-letter-o.js deleted file mode 100644 index 64b22f808..000000000 --- a/icons-react/icons-js/hexagon-letter-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-p.js b/icons-react/icons-js/hexagon-letter-p.js deleted file mode 100644 index 6a403f6ff..000000000 --- a/icons-react/icons-js/hexagon-letter-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-q.js b/icons-react/icons-js/hexagon-letter-q.js deleted file mode 100644 index 8b6e624a6..000000000 --- a/icons-react/icons-js/hexagon-letter-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-r.js b/icons-react/icons-js/hexagon-letter-r.js deleted file mode 100644 index 0f029d58c..000000000 --- a/icons-react/icons-js/hexagon-letter-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-s.js b/icons-react/icons-js/hexagon-letter-s.js deleted file mode 100644 index 4ef14aa01..000000000 --- a/icons-react/icons-js/hexagon-letter-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-t.js b/icons-react/icons-js/hexagon-letter-t.js deleted file mode 100644 index 61deaeab4..000000000 --- a/icons-react/icons-js/hexagon-letter-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-u.js b/icons-react/icons-js/hexagon-letter-u.js deleted file mode 100644 index cca7d9db9..000000000 --- a/icons-react/icons-js/hexagon-letter-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-v.js b/icons-react/icons-js/hexagon-letter-v.js deleted file mode 100644 index a1c8a699c..000000000 --- a/icons-react/icons-js/hexagon-letter-v.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterV({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-w.js b/icons-react/icons-js/hexagon-letter-w.js deleted file mode 100644 index 0f81160e8..000000000 --- a/icons-react/icons-js/hexagon-letter-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-x.js b/icons-react/icons-js/hexagon-letter-x.js deleted file mode 100644 index e74ca48a2..000000000 --- a/icons-react/icons-js/hexagon-letter-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-y.js b/icons-react/icons-js/hexagon-letter-y.js deleted file mode 100644 index 7a6dfbdf2..000000000 --- a/icons-react/icons-js/hexagon-letter-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-letter-z.js b/icons-react/icons-js/hexagon-letter-z.js deleted file mode 100644 index 5090d0174..000000000 --- a/icons-react/icons-js/hexagon-letter-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonLetterZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-m.js b/icons-react/icons-js/hexagon-m.js deleted file mode 100644 index cba7b2408..000000000 --- a/icons-react/icons-js/hexagon-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonM; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-n.js b/icons-react/icons-js/hexagon-n.js deleted file mode 100644 index 74785f257..000000000 --- a/icons-react/icons-js/hexagon-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonN; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-0.js b/icons-react/icons-js/hexagon-number-0.js deleted file mode 100644 index 85273221f..000000000 --- a/icons-react/icons-js/hexagon-number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-1.js b/icons-react/icons-js/hexagon-number-1.js deleted file mode 100644 index 4917af23b..000000000 --- a/icons-react/icons-js/hexagon-number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-2.js b/icons-react/icons-js/hexagon-number-2.js deleted file mode 100644 index 377344018..000000000 --- a/icons-react/icons-js/hexagon-number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-3.js b/icons-react/icons-js/hexagon-number-3.js deleted file mode 100644 index 7caa5c52f..000000000 --- a/icons-react/icons-js/hexagon-number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-4.js b/icons-react/icons-js/hexagon-number-4.js deleted file mode 100644 index 5387412e2..000000000 --- a/icons-react/icons-js/hexagon-number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-5.js b/icons-react/icons-js/hexagon-number-5.js deleted file mode 100644 index ee2cfb567..000000000 --- a/icons-react/icons-js/hexagon-number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-6.js b/icons-react/icons-js/hexagon-number-6.js deleted file mode 100644 index 5462b5aed..000000000 --- a/icons-react/icons-js/hexagon-number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-7.js b/icons-react/icons-js/hexagon-number-7.js deleted file mode 100644 index 52cc8bb23..000000000 --- a/icons-react/icons-js/hexagon-number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-8.js b/icons-react/icons-js/hexagon-number-8.js deleted file mode 100644 index 19d351ecd..000000000 --- a/icons-react/icons-js/hexagon-number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-number-9.js b/icons-react/icons-js/hexagon-number-9.js deleted file mode 100644 index 10d5e1abb..000000000 --- a/icons-react/icons-js/hexagon-number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-o.js b/icons-react/icons-js/hexagon-o.js deleted file mode 100644 index ad09205fc..000000000 --- a/icons-react/icons-js/hexagon-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonO; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-off.js b/icons-react/icons-js/hexagon-off.js deleted file mode 100644 index 2e738914a..000000000 --- a/icons-react/icons-js/hexagon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonOff; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-p.js b/icons-react/icons-js/hexagon-p.js deleted file mode 100644 index 6bd49eb28..000000000 --- a/icons-react/icons-js/hexagon-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonP; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-q.js b/icons-react/icons-js/hexagon-q.js deleted file mode 100644 index e054001d3..000000000 --- a/icons-react/icons-js/hexagon-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonQ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-r.js b/icons-react/icons-js/hexagon-r.js deleted file mode 100644 index cf2d1a9bb..000000000 --- a/icons-react/icons-js/hexagon-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonR; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-s.js b/icons-react/icons-js/hexagon-s.js deleted file mode 100644 index ba2f0bfdf..000000000 --- a/icons-react/icons-js/hexagon-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonS; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-t.js b/icons-react/icons-js/hexagon-t.js deleted file mode 100644 index 218582ced..000000000 --- a/icons-react/icons-js/hexagon-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonT; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-u.js b/icons-react/icons-js/hexagon-u.js deleted file mode 100644 index 92e223e53..000000000 --- a/icons-react/icons-js/hexagon-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonU; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-w.js b/icons-react/icons-js/hexagon-w.js deleted file mode 100644 index 09dc7113f..000000000 --- a/icons-react/icons-js/hexagon-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonW; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-x.js b/icons-react/icons-js/hexagon-x.js deleted file mode 100644 index 0f8274856..000000000 --- a/icons-react/icons-js/hexagon-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonX; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-y.js b/icons-react/icons-js/hexagon-y.js deleted file mode 100644 index e3eb0b33c..000000000 --- a/icons-react/icons-js/hexagon-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonY; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon-z.js b/icons-react/icons-js/hexagon-z.js deleted file mode 100644 index bf441ad33..000000000 --- a/icons-react/icons-js/hexagon-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonZ; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon.js b/icons-react/icons-js/hexagon.js deleted file mode 100644 index eb1229fd2..000000000 --- a/icons-react/icons-js/hexagon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagon; \ No newline at end of file diff --git a/icons-react/icons-js/hexagons-off.js b/icons-react/icons-js/hexagons-off.js deleted file mode 100644 index d8b752472..000000000 --- a/icons-react/icons-js/hexagons-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagonsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagonsOff; \ No newline at end of file diff --git a/icons-react/icons-js/hexagons.js b/icons-react/icons-js/hexagons.js deleted file mode 100644 index e48789a0b..000000000 --- a/icons-react/icons-js/hexagons.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHexagons({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHexagons; \ No newline at end of file diff --git a/icons-react/icons-js/hierarchy-2.js b/icons-react/icons-js/hierarchy-2.js deleted file mode 100644 index d5182966e..000000000 --- a/icons-react/icons-js/hierarchy-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHierarchy2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHierarchy2; \ No newline at end of file diff --git a/icons-react/icons-js/hierarchy-3.js b/icons-react/icons-js/hierarchy-3.js deleted file mode 100644 index 6bba3fa14..000000000 --- a/icons-react/icons-js/hierarchy-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHierarchy3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHierarchy3; \ No newline at end of file diff --git a/icons-react/icons-js/hierarchy-off.js b/icons-react/icons-js/hierarchy-off.js deleted file mode 100644 index c34fff526..000000000 --- a/icons-react/icons-js/hierarchy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHierarchyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHierarchyOff; \ No newline at end of file diff --git a/icons-react/icons-js/hierarchy.js b/icons-react/icons-js/hierarchy.js deleted file mode 100644 index 15d238722..000000000 --- a/icons-react/icons-js/hierarchy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHierarchy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHierarchy; \ No newline at end of file diff --git a/icons-react/icons-js/highlight-off.js b/icons-react/icons-js/highlight-off.js deleted file mode 100644 index ed06a2c4e..000000000 --- a/icons-react/icons-js/highlight-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHighlightOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHighlightOff; \ No newline at end of file diff --git a/icons-react/icons-js/highlight.js b/icons-react/icons-js/highlight.js deleted file mode 100644 index decf6dfc0..000000000 --- a/icons-react/icons-js/highlight.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHighlight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHighlight; \ No newline at end of file diff --git a/icons-react/icons-js/history-off.js b/icons-react/icons-js/history-off.js deleted file mode 100644 index 922b72843..000000000 --- a/icons-react/icons-js/history-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHistoryOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHistoryOff; \ No newline at end of file diff --git a/icons-react/icons-js/history-toggle.js b/icons-react/icons-js/history-toggle.js deleted file mode 100644 index c624acb35..000000000 --- a/icons-react/icons-js/history-toggle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHistoryToggle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHistoryToggle; \ No newline at end of file diff --git a/icons-react/icons-js/history.js b/icons-react/icons-js/history.js deleted file mode 100644 index 8e215c022..000000000 --- a/icons-react/icons-js/history.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHistory({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHistory; \ No newline at end of file diff --git a/icons-react/icons-js/home-2.js b/icons-react/icons-js/home-2.js deleted file mode 100644 index 64053cc04..000000000 --- a/icons-react/icons-js/home-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHome2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHome2; \ No newline at end of file diff --git a/icons-react/icons-js/home-bolt.js b/icons-react/icons-js/home-bolt.js deleted file mode 100644 index cad852b52..000000000 --- a/icons-react/icons-js/home-bolt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeBolt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeBolt; \ No newline at end of file diff --git a/icons-react/icons-js/home-cancel.js b/icons-react/icons-js/home-cancel.js deleted file mode 100644 index e1d15dd60..000000000 --- a/icons-react/icons-js/home-cancel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeCancel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeCancel; \ No newline at end of file diff --git a/icons-react/icons-js/home-check.js b/icons-react/icons-js/home-check.js deleted file mode 100644 index d715f2cea..000000000 --- a/icons-react/icons-js/home-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeCheck; \ No newline at end of file diff --git a/icons-react/icons-js/home-cog.js b/icons-react/icons-js/home-cog.js deleted file mode 100644 index 292d178ca..000000000 --- a/icons-react/icons-js/home-cog.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeCog({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeCog; \ No newline at end of file diff --git a/icons-react/icons-js/home-dollar.js b/icons-react/icons-js/home-dollar.js deleted file mode 100644 index 0c4d31144..000000000 --- a/icons-react/icons-js/home-dollar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeDollar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeDollar; \ No newline at end of file diff --git a/icons-react/icons-js/home-dot.js b/icons-react/icons-js/home-dot.js deleted file mode 100644 index d9fc4b9d0..000000000 --- a/icons-react/icons-js/home-dot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeDot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeDot; \ No newline at end of file diff --git a/icons-react/icons-js/home-down.js b/icons-react/icons-js/home-down.js deleted file mode 100644 index 00d8b2cb5..000000000 --- a/icons-react/icons-js/home-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeDown; \ No newline at end of file diff --git a/icons-react/icons-js/home-eco.js b/icons-react/icons-js/home-eco.js deleted file mode 100644 index 7b6eb34d6..000000000 --- a/icons-react/icons-js/home-eco.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeEco({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeEco; \ No newline at end of file diff --git a/icons-react/icons-js/home-edit.js b/icons-react/icons-js/home-edit.js deleted file mode 100644 index 9f8cd8805..000000000 --- a/icons-react/icons-js/home-edit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeEdit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeEdit; \ No newline at end of file diff --git a/icons-react/icons-js/home-exclamation.js b/icons-react/icons-js/home-exclamation.js deleted file mode 100644 index 55356f8c3..000000000 --- a/icons-react/icons-js/home-exclamation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeExclamation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeExclamation; \ No newline at end of file diff --git a/icons-react/icons-js/home-hand.js b/icons-react/icons-js/home-hand.js deleted file mode 100644 index 74907d2ed..000000000 --- a/icons-react/icons-js/home-hand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeHand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeHand; \ No newline at end of file diff --git a/icons-react/icons-js/home-heart.js b/icons-react/icons-js/home-heart.js deleted file mode 100644 index 6dda010ff..000000000 --- a/icons-react/icons-js/home-heart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeHeart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeHeart; \ No newline at end of file diff --git a/icons-react/icons-js/home-infinity.js b/icons-react/icons-js/home-infinity.js deleted file mode 100644 index 066bd12a0..000000000 --- a/icons-react/icons-js/home-infinity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeInfinity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeInfinity; \ No newline at end of file diff --git a/icons-react/icons-js/home-link.js b/icons-react/icons-js/home-link.js deleted file mode 100644 index f6d8dacf6..000000000 --- a/icons-react/icons-js/home-link.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeLink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeLink; \ No newline at end of file diff --git a/icons-react/icons-js/home-minus.js b/icons-react/icons-js/home-minus.js deleted file mode 100644 index a393e9d01..000000000 --- a/icons-react/icons-js/home-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeMinus; \ No newline at end of file diff --git a/icons-react/icons-js/home-move.js b/icons-react/icons-js/home-move.js deleted file mode 100644 index c280ce8a1..000000000 --- a/icons-react/icons-js/home-move.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeMove({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeMove; \ No newline at end of file diff --git a/icons-react/icons-js/home-off.js b/icons-react/icons-js/home-off.js deleted file mode 100644 index ac2e019c8..000000000 --- a/icons-react/icons-js/home-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeOff; \ No newline at end of file diff --git a/icons-react/icons-js/home-plus.js b/icons-react/icons-js/home-plus.js deleted file mode 100644 index f97bc39ad..000000000 --- a/icons-react/icons-js/home-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomePlus; \ No newline at end of file diff --git a/icons-react/icons-js/home-question.js b/icons-react/icons-js/home-question.js deleted file mode 100644 index a8cf2b0b1..000000000 --- a/icons-react/icons-js/home-question.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeQuestion({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeQuestion; \ No newline at end of file diff --git a/icons-react/icons-js/home-ribbon.js b/icons-react/icons-js/home-ribbon.js deleted file mode 100644 index 7bd40f35b..000000000 --- a/icons-react/icons-js/home-ribbon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeRibbon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeRibbon; \ No newline at end of file diff --git a/icons-react/icons-js/home-search.js b/icons-react/icons-js/home-search.js deleted file mode 100644 index c9d9de126..000000000 --- a/icons-react/icons-js/home-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeSearch; \ No newline at end of file diff --git a/icons-react/icons-js/home-share.js b/icons-react/icons-js/home-share.js deleted file mode 100644 index cd2d8cf5c..000000000 --- a/icons-react/icons-js/home-share.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeShare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeShare; \ No newline at end of file diff --git a/icons-react/icons-js/home-shield.js b/icons-react/icons-js/home-shield.js deleted file mode 100644 index d9f90e3cf..000000000 --- a/icons-react/icons-js/home-shield.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeShield({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeShield; \ No newline at end of file diff --git a/icons-react/icons-js/home-signal.js b/icons-react/icons-js/home-signal.js deleted file mode 100644 index 517aac81f..000000000 --- a/icons-react/icons-js/home-signal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeSignal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeSignal; \ No newline at end of file diff --git a/icons-react/icons-js/home-star.js b/icons-react/icons-js/home-star.js deleted file mode 100644 index 5d2d1dec0..000000000 --- a/icons-react/icons-js/home-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeStar; \ No newline at end of file diff --git a/icons-react/icons-js/home-stats.js b/icons-react/icons-js/home-stats.js deleted file mode 100644 index a2ee5ef1c..000000000 --- a/icons-react/icons-js/home-stats.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeStats({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeStats; \ No newline at end of file diff --git a/icons-react/icons-js/home-up.js b/icons-react/icons-js/home-up.js deleted file mode 100644 index 02981b03c..000000000 --- a/icons-react/icons-js/home-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeUp; \ No newline at end of file diff --git a/icons-react/icons-js/home-x.js b/icons-react/icons-js/home-x.js deleted file mode 100644 index d67b6d7a7..000000000 --- a/icons-react/icons-js/home-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHomeX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHomeX; \ No newline at end of file diff --git a/icons-react/icons-js/home.js b/icons-react/icons-js/home.js deleted file mode 100644 index eb0c8c72a..000000000 --- a/icons-react/icons-js/home.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHome({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHome; \ No newline at end of file diff --git a/icons-react/icons-js/horse-toy.js b/icons-react/icons-js/horse-toy.js deleted file mode 100644 index c4c06994d..000000000 --- a/icons-react/icons-js/horse-toy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHorseToy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHorseToy; \ No newline at end of file diff --git a/icons-react/icons-js/hotel-service.js b/icons-react/icons-js/hotel-service.js deleted file mode 100644 index 577177c2b..000000000 --- a/icons-react/icons-js/hotel-service.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHotelService({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHotelService; \ No newline at end of file diff --git a/icons-react/icons-js/hourglass-empty.js b/icons-react/icons-js/hourglass-empty.js deleted file mode 100644 index 346b320ba..000000000 --- a/icons-react/icons-js/hourglass-empty.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHourglassEmpty({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHourglassEmpty; \ No newline at end of file diff --git a/icons-react/icons-js/hourglass-high.js b/icons-react/icons-js/hourglass-high.js deleted file mode 100644 index da48037e3..000000000 --- a/icons-react/icons-js/hourglass-high.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHourglassHigh({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHourglassHigh; \ No newline at end of file diff --git a/icons-react/icons-js/hourglass-low.js b/icons-react/icons-js/hourglass-low.js deleted file mode 100644 index d95d9a497..000000000 --- a/icons-react/icons-js/hourglass-low.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHourglassLow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHourglassLow; \ No newline at end of file diff --git a/icons-react/icons-js/hourglass-off.js b/icons-react/icons-js/hourglass-off.js deleted file mode 100644 index 4506fad62..000000000 --- a/icons-react/icons-js/hourglass-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHourglassOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHourglassOff; \ No newline at end of file diff --git a/icons-react/icons-js/hourglass.js b/icons-react/icons-js/hourglass.js deleted file mode 100644 index 0d599e748..000000000 --- a/icons-react/icons-js/hourglass.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconHourglass({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconHourglass; \ No newline at end of file diff --git a/icons-react/icons-js/ice-cream-2.js b/icons-react/icons-js/ice-cream-2.js deleted file mode 100644 index b57d671e9..000000000 --- a/icons-react/icons-js/ice-cream-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIceCream2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIceCream2; \ No newline at end of file diff --git a/icons-react/icons-js/ice-cream-off.js b/icons-react/icons-js/ice-cream-off.js deleted file mode 100644 index 162ebdcf1..000000000 --- a/icons-react/icons-js/ice-cream-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIceCreamOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIceCreamOff; \ No newline at end of file diff --git a/icons-react/icons-js/ice-cream.js b/icons-react/icons-js/ice-cream.js deleted file mode 100644 index 841cad1f1..000000000 --- a/icons-react/icons-js/ice-cream.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIceCream({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIceCream; \ No newline at end of file diff --git a/icons-react/icons-js/ice-skating.js b/icons-react/icons-js/ice-skating.js deleted file mode 100644 index 7fec866f9..000000000 --- a/icons-react/icons-js/ice-skating.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIceSkating({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIceSkating; \ No newline at end of file diff --git a/icons-react/icons-js/icons-off.js b/icons-react/icons-js/icons-off.js deleted file mode 100644 index 5425d2051..000000000 --- a/icons-react/icons-js/icons-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIconsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIconsOff; \ No newline at end of file diff --git a/icons-react/icons-js/icons.js b/icons-react/icons-js/icons.js deleted file mode 100644 index d9724cde9..000000000 --- a/icons-react/icons-js/icons.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIcons({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIcons; \ No newline at end of file diff --git a/icons-react/icons-js/id-badge-2.js b/icons-react/icons-js/id-badge-2.js deleted file mode 100644 index 5aada2fca..000000000 --- a/icons-react/icons-js/id-badge-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIdBadge2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIdBadge2; \ No newline at end of file diff --git a/icons-react/icons-js/id-badge-off.js b/icons-react/icons-js/id-badge-off.js deleted file mode 100644 index 5a6242340..000000000 --- a/icons-react/icons-js/id-badge-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIdBadgeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIdBadgeOff; \ No newline at end of file diff --git a/icons-react/icons-js/id-badge.js b/icons-react/icons-js/id-badge.js deleted file mode 100644 index 16f888880..000000000 --- a/icons-react/icons-js/id-badge.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIdBadge({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIdBadge; \ No newline at end of file diff --git a/icons-react/icons-js/id-off.js b/icons-react/icons-js/id-off.js deleted file mode 100644 index 2b1d3169e..000000000 --- a/icons-react/icons-js/id-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIdOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIdOff; \ No newline at end of file diff --git a/icons-react/icons-js/id.js b/icons-react/icons-js/id.js deleted file mode 100644 index adb6ebe24..000000000 --- a/icons-react/icons-js/id.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconId({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconId; \ No newline at end of file diff --git a/icons-react/icons-js/inbox-off.js b/icons-react/icons-js/inbox-off.js deleted file mode 100644 index 2529a79e3..000000000 --- a/icons-react/icons-js/inbox-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInboxOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInboxOff; \ No newline at end of file diff --git a/icons-react/icons-js/inbox.js b/icons-react/icons-js/inbox.js deleted file mode 100644 index f324f4e9e..000000000 --- a/icons-react/icons-js/inbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInbox; \ No newline at end of file diff --git a/icons-react/icons-js/indent-decrease.js b/icons-react/icons-js/indent-decrease.js deleted file mode 100644 index 979b6f41e..000000000 --- a/icons-react/icons-js/indent-decrease.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIndentDecrease({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIndentDecrease; \ No newline at end of file diff --git a/icons-react/icons-js/indent-increase.js b/icons-react/icons-js/indent-increase.js deleted file mode 100644 index 04824204a..000000000 --- a/icons-react/icons-js/indent-increase.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIndentIncrease({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIndentIncrease; \ No newline at end of file diff --git a/icons-react/icons-js/infinity-off.js b/icons-react/icons-js/infinity-off.js deleted file mode 100644 index 1926252d9..000000000 --- a/icons-react/icons-js/infinity-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInfinityOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInfinityOff; \ No newline at end of file diff --git a/icons-react/icons-js/infinity.js b/icons-react/icons-js/infinity.js deleted file mode 100644 index ab7c183dc..000000000 --- a/icons-react/icons-js/infinity.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInfinity({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInfinity; \ No newline at end of file diff --git a/icons-react/icons-js/info-circle.js b/icons-react/icons-js/info-circle.js deleted file mode 100644 index c4b8d9a0e..000000000 --- a/icons-react/icons-js/info-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInfoCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInfoCircle; \ No newline at end of file diff --git a/icons-react/icons-js/info-square-rounded.js b/icons-react/icons-js/info-square-rounded.js deleted file mode 100644 index aa3782bb0..000000000 --- a/icons-react/icons-js/info-square-rounded.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInfoSquareRounded({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInfoSquareRounded; \ No newline at end of file diff --git a/icons-react/icons-js/info-square.js b/icons-react/icons-js/info-square.js deleted file mode 100644 index 281e633c4..000000000 --- a/icons-react/icons-js/info-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInfoSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInfoSquare; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-bottom-left.js b/icons-react/icons-js/inner-shadow-bottom-left.js deleted file mode 100644 index 281d3eded..000000000 --- a/icons-react/icons-js/inner-shadow-bottom-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowBottomLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowBottomLeft; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-bottom-right.js b/icons-react/icons-js/inner-shadow-bottom-right.js deleted file mode 100644 index 1fca46bd0..000000000 --- a/icons-react/icons-js/inner-shadow-bottom-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowBottomRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowBottomRight; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-bottom.js b/icons-react/icons-js/inner-shadow-bottom.js deleted file mode 100644 index b909931d1..000000000 --- a/icons-react/icons-js/inner-shadow-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowBottom; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-left.js b/icons-react/icons-js/inner-shadow-left.js deleted file mode 100644 index bdb3b1618..000000000 --- a/icons-react/icons-js/inner-shadow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-right.js b/icons-react/icons-js/inner-shadow-right.js deleted file mode 100644 index 74aace9ab..000000000 --- a/icons-react/icons-js/inner-shadow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowRight; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-top-left.js b/icons-react/icons-js/inner-shadow-top-left.js deleted file mode 100644 index fff18d6f5..000000000 --- a/icons-react/icons-js/inner-shadow-top-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowTopLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowTopLeft; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-top-right.js b/icons-react/icons-js/inner-shadow-top-right.js deleted file mode 100644 index 10dcb1917..000000000 --- a/icons-react/icons-js/inner-shadow-top-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowTopRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowTopRight; \ No newline at end of file diff --git a/icons-react/icons-js/inner-shadow-top.js b/icons-react/icons-js/inner-shadow-top.js deleted file mode 100644 index 2a300b30d..000000000 --- a/icons-react/icons-js/inner-shadow-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInnerShadowTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInnerShadowTop; \ No newline at end of file diff --git a/icons-react/icons-js/input-search.js b/icons-react/icons-js/input-search.js deleted file mode 100644 index 76e82f670..000000000 --- a/icons-react/icons-js/input-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconInputSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconInputSearch; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-1.js b/icons-react/icons-js/ironing-1.js deleted file mode 100644 index 419535dd5..000000000 --- a/icons-react/icons-js/ironing-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroning1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroning1; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-2.js b/icons-react/icons-js/ironing-2.js deleted file mode 100644 index b05bf2ef1..000000000 --- a/icons-react/icons-js/ironing-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroning2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroning2; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-3.js b/icons-react/icons-js/ironing-3.js deleted file mode 100644 index 454396b66..000000000 --- a/icons-react/icons-js/ironing-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroning3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroning3; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-off.js b/icons-react/icons-js/ironing-off.js deleted file mode 100644 index 16dcbc4d7..000000000 --- a/icons-react/icons-js/ironing-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroningOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroningOff; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-steam-off.js b/icons-react/icons-js/ironing-steam-off.js deleted file mode 100644 index f511313f7..000000000 --- a/icons-react/icons-js/ironing-steam-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroningSteamOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroningSteamOff; \ No newline at end of file diff --git a/icons-react/icons-js/ironing-steam.js b/icons-react/icons-js/ironing-steam.js deleted file mode 100644 index 6ea3a8568..000000000 --- a/icons-react/icons-js/ironing-steam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconIroningSteam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconIroningSteam; \ No newline at end of file diff --git a/icons-react/icons-js/italic.js b/icons-react/icons-js/italic.js deleted file mode 100644 index 2265fc18d..000000000 --- a/icons-react/icons-js/italic.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconItalic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconItalic; \ No newline at end of file diff --git a/icons-react/icons-js/jacket.js b/icons-react/icons-js/jacket.js deleted file mode 100644 index 689cee976..000000000 --- a/icons-react/icons-js/jacket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconJacket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconJacket; \ No newline at end of file diff --git a/icons-react/icons-js/jetpack.js b/icons-react/icons-js/jetpack.js deleted file mode 100644 index a2704f11a..000000000 --- a/icons-react/icons-js/jetpack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconJetpack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconJetpack; \ No newline at end of file diff --git a/icons-react/icons-js/jewish-star.js b/icons-react/icons-js/jewish-star.js deleted file mode 100644 index 4578c3201..000000000 --- a/icons-react/icons-js/jewish-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconJewishStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconJewishStar; \ No newline at end of file diff --git a/icons-react/icons-js/jpg.js b/icons-react/icons-js/jpg.js deleted file mode 100644 index 02238da92..000000000 --- a/icons-react/icons-js/jpg.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconJpg({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconJpg; \ No newline at end of file diff --git a/icons-react/icons-js/jump-rope.js b/icons-react/icons-js/jump-rope.js deleted file mode 100644 index e57407d39..000000000 --- a/icons-react/icons-js/jump-rope.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconJumpRope({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconJumpRope; \ No newline at end of file diff --git a/icons-react/icons-js/karate.js b/icons-react/icons-js/karate.js deleted file mode 100644 index af83f3a96..000000000 --- a/icons-react/icons-js/karate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKarate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKarate; \ No newline at end of file diff --git a/icons-react/icons-js/kayak.js b/icons-react/icons-js/kayak.js deleted file mode 100644 index b25b68cec..000000000 --- a/icons-react/icons-js/kayak.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKayak({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKayak; \ No newline at end of file diff --git a/icons-react/icons-js/kering.js b/icons-react/icons-js/kering.js deleted file mode 100644 index 03e994ab4..000000000 --- a/icons-react/icons-js/kering.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKering({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKering; \ No newline at end of file diff --git a/icons-react/icons-js/key-off.js b/icons-react/icons-js/key-off.js deleted file mode 100644 index 7d6b8be3f..000000000 --- a/icons-react/icons-js/key-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyOff; \ No newline at end of file diff --git a/icons-react/icons-js/key.js b/icons-react/icons-js/key.js deleted file mode 100644 index 3ce4d684e..000000000 --- a/icons-react/icons-js/key.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKey; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard-hide.js b/icons-react/icons-js/keyboard-hide.js deleted file mode 100644 index e0e794f03..000000000 --- a/icons-react/icons-js/keyboard-hide.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyboardHide({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyboardHide; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard-off.js b/icons-react/icons-js/keyboard-off.js deleted file mode 100644 index 0de891da1..000000000 --- a/icons-react/icons-js/keyboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard-show.js b/icons-react/icons-js/keyboard-show.js deleted file mode 100644 index 527089447..000000000 --- a/icons-react/icons-js/keyboard-show.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyboardShow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyboardShow; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard.js b/icons-react/icons-js/keyboard.js deleted file mode 100644 index 2c1465219..000000000 --- a/icons-react/icons-js/keyboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyboard; \ No newline at end of file diff --git a/icons-react/icons-js/keyframe-align-center.js b/icons-react/icons-js/keyframe-align-center.js deleted file mode 100644 index 37505189a..000000000 --- a/icons-react/icons-js/keyframe-align-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyframeAlignCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyframeAlignCenter; \ No newline at end of file diff --git a/icons-react/icons-js/keyframe-align-horizontal.js b/icons-react/icons-js/keyframe-align-horizontal.js deleted file mode 100644 index 04cb434f8..000000000 --- a/icons-react/icons-js/keyframe-align-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyframeAlignHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyframeAlignHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/keyframe-align-vertical.js b/icons-react/icons-js/keyframe-align-vertical.js deleted file mode 100644 index f4593cf57..000000000 --- a/icons-react/icons-js/keyframe-align-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyframeAlignVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyframeAlignVertical; \ No newline at end of file diff --git a/icons-react/icons-js/keyframe.js b/icons-react/icons-js/keyframe.js deleted file mode 100644 index 3e2c3ba97..000000000 --- a/icons-react/icons-js/keyframe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyframe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyframe; \ No newline at end of file diff --git a/icons-react/icons-js/keyframes.js b/icons-react/icons-js/keyframes.js deleted file mode 100644 index 77e6eecd9..000000000 --- a/icons-react/icons-js/keyframes.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconKeyframes({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconKeyframes; \ No newline at end of file diff --git a/icons-react/icons-js/ladder-off.js b/icons-react/icons-js/ladder-off.js deleted file mode 100644 index 25e23b7b2..000000000 --- a/icons-react/icons-js/ladder-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLadderOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLadderOff; \ No newline at end of file diff --git a/icons-react/icons-js/ladder.js b/icons-react/icons-js/ladder.js deleted file mode 100644 index d92ba011a..000000000 --- a/icons-react/icons-js/ladder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLadder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLadder; \ No newline at end of file diff --git a/icons-react/icons-js/lambda.js b/icons-react/icons-js/lambda.js deleted file mode 100644 index faee52b2c..000000000 --- a/icons-react/icons-js/lambda.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLambda({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLambda; \ No newline at end of file diff --git a/icons-react/icons-js/lamp-2.js b/icons-react/icons-js/lamp-2.js deleted file mode 100644 index ca3c352ab..000000000 --- a/icons-react/icons-js/lamp-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLamp2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLamp2; \ No newline at end of file diff --git a/icons-react/icons-js/lamp-off.js b/icons-react/icons-js/lamp-off.js deleted file mode 100644 index 7c209f662..000000000 --- a/icons-react/icons-js/lamp-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLampOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLampOff; \ No newline at end of file diff --git a/icons-react/icons-js/lamp.js b/icons-react/icons-js/lamp.js deleted file mode 100644 index 934995b2d..000000000 --- a/icons-react/icons-js/lamp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLamp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLamp; \ No newline at end of file diff --git a/icons-react/icons-js/language-hiragana.js b/icons-react/icons-js/language-hiragana.js deleted file mode 100644 index 92c396670..000000000 --- a/icons-react/icons-js/language-hiragana.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLanguageHiragana({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLanguageHiragana; \ No newline at end of file diff --git a/icons-react/icons-js/language-katakana.js b/icons-react/icons-js/language-katakana.js deleted file mode 100644 index 53f5e8cc0..000000000 --- a/icons-react/icons-js/language-katakana.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLanguageKatakana({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLanguageKatakana; \ No newline at end of file diff --git a/icons-react/icons-js/language-off.js b/icons-react/icons-js/language-off.js deleted file mode 100644 index d089d77d8..000000000 --- a/icons-react/icons-js/language-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLanguageOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLanguageOff; \ No newline at end of file diff --git a/icons-react/icons-js/language.js b/icons-react/icons-js/language.js deleted file mode 100644 index c3b919460..000000000 --- a/icons-react/icons-js/language.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLanguage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLanguage; \ No newline at end of file diff --git a/icons-react/icons-js/lasso-off.js b/icons-react/icons-js/lasso-off.js deleted file mode 100644 index cdc816bb6..000000000 --- a/icons-react/icons-js/lasso-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLassoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLassoOff; \ No newline at end of file diff --git a/icons-react/icons-js/lasso-polygon.js b/icons-react/icons-js/lasso-polygon.js deleted file mode 100644 index 98bfb1fef..000000000 --- a/icons-react/icons-js/lasso-polygon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLassoPolygon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLassoPolygon; \ No newline at end of file diff --git a/icons-react/icons-js/lasso.js b/icons-react/icons-js/lasso.js deleted file mode 100644 index 9edce5671..000000000 --- a/icons-react/icons-js/lasso.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLasso({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLasso; \ No newline at end of file diff --git a/icons-react/icons-js/layers-difference.js b/icons-react/icons-js/layers-difference.js deleted file mode 100644 index 9c86748b1..000000000 --- a/icons-react/icons-js/layers-difference.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersDifference({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersDifference; \ No newline at end of file diff --git a/icons-react/icons-js/layers-intersect-2.js b/icons-react/icons-js/layers-intersect-2.js deleted file mode 100644 index f36e47ee2..000000000 --- a/icons-react/icons-js/layers-intersect-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersIntersect2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersIntersect2; \ No newline at end of file diff --git a/icons-react/icons-js/layers-intersect.js b/icons-react/icons-js/layers-intersect.js deleted file mode 100644 index 5eab0d8be..000000000 --- a/icons-react/icons-js/layers-intersect.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersIntersect({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersIntersect; \ No newline at end of file diff --git a/icons-react/icons-js/layers-linked.js b/icons-react/icons-js/layers-linked.js deleted file mode 100644 index e038b671a..000000000 --- a/icons-react/icons-js/layers-linked.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersLinked({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersLinked; \ No newline at end of file diff --git a/icons-react/icons-js/layers-off.js b/icons-react/icons-js/layers-off.js deleted file mode 100644 index 950ad58a1..000000000 --- a/icons-react/icons-js/layers-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersOff; \ No newline at end of file diff --git a/icons-react/icons-js/layers-subtract.js b/icons-react/icons-js/layers-subtract.js deleted file mode 100644 index c6b6f257b..000000000 --- a/icons-react/icons-js/layers-subtract.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersSubtract({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersSubtract; \ No newline at end of file diff --git a/icons-react/icons-js/layers-union.js b/icons-react/icons-js/layers-union.js deleted file mode 100644 index 815d86590..000000000 --- a/icons-react/icons-js/layers-union.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayersUnion({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayersUnion; \ No newline at end of file diff --git a/icons-react/icons-js/layout-2.js b/icons-react/icons-js/layout-2.js deleted file mode 100644 index 95ed1df0d..000000000 --- a/icons-react/icons-js/layout-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayout2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayout2; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-bottom.js b/icons-react/icons-js/layout-align-bottom.js deleted file mode 100644 index a8144f1ab..000000000 --- a/icons-react/icons-js/layout-align-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignBottom; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-center.js b/icons-react/icons-js/layout-align-center.js deleted file mode 100644 index ab81889a0..000000000 --- a/icons-react/icons-js/layout-align-center.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignCenter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignCenter; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-left.js b/icons-react/icons-js/layout-align-left.js deleted file mode 100644 index 73c588f0a..000000000 --- a/icons-react/icons-js/layout-align-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-middle.js b/icons-react/icons-js/layout-align-middle.js deleted file mode 100644 index 7a435e836..000000000 --- a/icons-react/icons-js/layout-align-middle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignMiddle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignMiddle; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-right.js b/icons-react/icons-js/layout-align-right.js deleted file mode 100644 index 2732842d5..000000000 --- a/icons-react/icons-js/layout-align-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignRight; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-top.js b/icons-react/icons-js/layout-align-top.js deleted file mode 100644 index 502db1f34..000000000 --- a/icons-react/icons-js/layout-align-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutAlignTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutAlignTop; \ No newline at end of file diff --git a/icons-react/icons-js/layout-board-split.js b/icons-react/icons-js/layout-board-split.js deleted file mode 100644 index 109c34628..000000000 --- a/icons-react/icons-js/layout-board-split.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutBoardSplit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutBoardSplit; \ No newline at end of file diff --git a/icons-react/icons-js/layout-board.js b/icons-react/icons-js/layout-board.js deleted file mode 100644 index 7847509cd..000000000 --- a/icons-react/icons-js/layout-board.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutBoard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutBoard; \ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar-collapse.js b/icons-react/icons-js/layout-bottombar-collapse.js deleted file mode 100644 index 32062bdec..000000000 --- a/icons-react/icons-js/layout-bottombar-collapse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutBottombarCollapse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutBottombarCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar-expand.js b/icons-react/icons-js/layout-bottombar-expand.js deleted file mode 100644 index 63285ffe4..000000000 --- a/icons-react/icons-js/layout-bottombar-expand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutBottombarExpand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutBottombarExpand; \ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar.js b/icons-react/icons-js/layout-bottombar.js deleted file mode 100644 index 20fd714ce..000000000 --- a/icons-react/icons-js/layout-bottombar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutBottombar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutBottombar; \ No newline at end of file diff --git a/icons-react/icons-js/layout-cards.js b/icons-react/icons-js/layout-cards.js deleted file mode 100644 index 298963c10..000000000 --- a/icons-react/icons-js/layout-cards.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutCards({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutCards; \ No newline at end of file diff --git a/icons-react/icons-js/layout-collage.js b/icons-react/icons-js/layout-collage.js deleted file mode 100644 index 3c2eafb1e..000000000 --- a/icons-react/icons-js/layout-collage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutCollage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutCollage; \ No newline at end of file diff --git a/icons-react/icons-js/layout-columns.js b/icons-react/icons-js/layout-columns.js deleted file mode 100644 index 7525f0d27..000000000 --- a/icons-react/icons-js/layout-columns.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutColumns({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutColumns; \ No newline at end of file diff --git a/icons-react/icons-js/layout-dashboard.js b/icons-react/icons-js/layout-dashboard.js deleted file mode 100644 index 48ff1d36e..000000000 --- a/icons-react/icons-js/layout-dashboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutDashboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutDashboard; \ No newline at end of file diff --git a/icons-react/icons-js/layout-distribute-horizontal.js b/icons-react/icons-js/layout-distribute-horizontal.js deleted file mode 100644 index a2c9b0a26..000000000 --- a/icons-react/icons-js/layout-distribute-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutDistributeHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutDistributeHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/layout-distribute-vertical.js b/icons-react/icons-js/layout-distribute-vertical.js deleted file mode 100644 index 68ca1790e..000000000 --- a/icons-react/icons-js/layout-distribute-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutDistributeVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutDistributeVertical; \ No newline at end of file diff --git a/icons-react/icons-js/layout-grid-add.js b/icons-react/icons-js/layout-grid-add.js deleted file mode 100644 index e03ca66c7..000000000 --- a/icons-react/icons-js/layout-grid-add.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutGridAdd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutGridAdd; \ No newline at end of file diff --git a/icons-react/icons-js/layout-grid.js b/icons-react/icons-js/layout-grid.js deleted file mode 100644 index 9b744ee3f..000000000 --- a/icons-react/icons-js/layout-grid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutGrid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutGrid; \ No newline at end of file diff --git a/icons-react/icons-js/layout-kanban.js b/icons-react/icons-js/layout-kanban.js deleted file mode 100644 index d94ac43e1..000000000 --- a/icons-react/icons-js/layout-kanban.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutKanban({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutKanban; \ No newline at end of file diff --git a/icons-react/icons-js/layout-list.js b/icons-react/icons-js/layout-list.js deleted file mode 100644 index dedb45f03..000000000 --- a/icons-react/icons-js/layout-list.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutList({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutList; \ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar-collapse.js b/icons-react/icons-js/layout-navbar-collapse.js deleted file mode 100644 index d617d2156..000000000 --- a/icons-react/icons-js/layout-navbar-collapse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutNavbarCollapse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutNavbarCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar-expand.js b/icons-react/icons-js/layout-navbar-expand.js deleted file mode 100644 index e7d137474..000000000 --- a/icons-react/icons-js/layout-navbar-expand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutNavbarExpand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutNavbarExpand; \ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar.js b/icons-react/icons-js/layout-navbar.js deleted file mode 100644 index c486bc79d..000000000 --- a/icons-react/icons-js/layout-navbar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutNavbar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutNavbar; \ No newline at end of file diff --git a/icons-react/icons-js/layout-off.js b/icons-react/icons-js/layout-off.js deleted file mode 100644 index c072cef56..000000000 --- a/icons-react/icons-js/layout-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutOff; \ No newline at end of file diff --git a/icons-react/icons-js/layout-rows.js b/icons-react/icons-js/layout-rows.js deleted file mode 100644 index 0cb67f13b..000000000 --- a/icons-react/icons-js/layout-rows.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutRows({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutRows; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-collapse.js b/icons-react/icons-js/layout-sidebar-left-collapse.js deleted file mode 100644 index c94dff619..000000000 --- a/icons-react/icons-js/layout-sidebar-left-collapse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebarLeftCollapse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebarLeftCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-expand.js b/icons-react/icons-js/layout-sidebar-left-expand.js deleted file mode 100644 index e5e525184..000000000 --- a/icons-react/icons-js/layout-sidebar-left-expand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebarLeftExpand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebarLeftExpand; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-collapse.js b/icons-react/icons-js/layout-sidebar-right-collapse.js deleted file mode 100644 index e7963c7bc..000000000 --- a/icons-react/icons-js/layout-sidebar-right-collapse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebarRightCollapse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebarRightCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-expand.js b/icons-react/icons-js/layout-sidebar-right-expand.js deleted file mode 100644 index cca3ce9f6..000000000 --- a/icons-react/icons-js/layout-sidebar-right-expand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebarRightExpand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebarRightExpand; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right.js b/icons-react/icons-js/layout-sidebar-right.js deleted file mode 100644 index 9a3e0f32b..000000000 --- a/icons-react/icons-js/layout-sidebar-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebarRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebarRight; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar.js b/icons-react/icons-js/layout-sidebar.js deleted file mode 100644 index 3651fc5a4..000000000 --- a/icons-react/icons-js/layout-sidebar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayoutSidebar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayoutSidebar; \ No newline at end of file diff --git a/icons-react/icons-js/layout.js b/icons-react/icons-js/layout.js deleted file mode 100644 index 327ff4da5..000000000 --- a/icons-react/icons-js/layout.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLayout({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLayout; \ No newline at end of file diff --git a/icons-react/icons-js/leaf-off.js b/icons-react/icons-js/leaf-off.js deleted file mode 100644 index bc187540d..000000000 --- a/icons-react/icons-js/leaf-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLeafOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLeafOff; \ No newline at end of file diff --git a/icons-react/icons-js/leaf.js b/icons-react/icons-js/leaf.js deleted file mode 100644 index 00c0fa504..000000000 --- a/icons-react/icons-js/leaf.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLeaf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLeaf; \ No newline at end of file diff --git a/icons-react/icons-js/lego-off.js b/icons-react/icons-js/lego-off.js deleted file mode 100644 index 0144e67b8..000000000 --- a/icons-react/icons-js/lego-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLegoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLegoOff; \ No newline at end of file diff --git a/icons-react/icons-js/lego.js b/icons-react/icons-js/lego.js deleted file mode 100644 index 457a7e556..000000000 --- a/icons-react/icons-js/lego.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLego({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLego; \ No newline at end of file diff --git a/icons-react/icons-js/lemon-2.js b/icons-react/icons-js/lemon-2.js deleted file mode 100644 index f8e5ec1c9..000000000 --- a/icons-react/icons-js/lemon-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLemon2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLemon2; \ No newline at end of file diff --git a/icons-react/icons-js/lemon.js b/icons-react/icons-js/lemon.js deleted file mode 100644 index 5a9cebd5d..000000000 --- a/icons-react/icons-js/lemon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLemon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLemon; \ No newline at end of file diff --git a/icons-react/icons-js/letter-a.js b/icons-react/icons-js/letter-a.js deleted file mode 100644 index 0b1eb5bea..000000000 --- a/icons-react/icons-js/letter-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/letter-b.js b/icons-react/icons-js/letter-b.js deleted file mode 100644 index 81acf5eb5..000000000 --- a/icons-react/icons-js/letter-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/letter-c.js b/icons-react/icons-js/letter-c.js deleted file mode 100644 index f2d898988..000000000 --- a/icons-react/icons-js/letter-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/letter-case-lower.js b/icons-react/icons-js/letter-case-lower.js deleted file mode 100644 index 43384ae83..000000000 --- a/icons-react/icons-js/letter-case-lower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterCaseLower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterCaseLower; \ No newline at end of file diff --git a/icons-react/icons-js/letter-case-toggle.js b/icons-react/icons-js/letter-case-toggle.js deleted file mode 100644 index 4fccd65ab..000000000 --- a/icons-react/icons-js/letter-case-toggle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterCaseToggle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterCaseToggle; \ No newline at end of file diff --git a/icons-react/icons-js/letter-case-upper.js b/icons-react/icons-js/letter-case-upper.js deleted file mode 100644 index eaac295d7..000000000 --- a/icons-react/icons-js/letter-case-upper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterCaseUpper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterCaseUpper; \ No newline at end of file diff --git a/icons-react/icons-js/letter-case.js b/icons-react/icons-js/letter-case.js deleted file mode 100644 index 9f0d6307f..000000000 --- a/icons-react/icons-js/letter-case.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterCase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterCase; \ No newline at end of file diff --git a/icons-react/icons-js/letter-d.js b/icons-react/icons-js/letter-d.js deleted file mode 100644 index 3d0e37bd7..000000000 --- a/icons-react/icons-js/letter-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/letter-e.js b/icons-react/icons-js/letter-e.js deleted file mode 100644 index 12785b2a6..000000000 --- a/icons-react/icons-js/letter-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/letter-f.js b/icons-react/icons-js/letter-f.js deleted file mode 100644 index 44aefe884..000000000 --- a/icons-react/icons-js/letter-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/letter-g.js b/icons-react/icons-js/letter-g.js deleted file mode 100644 index b80971992..000000000 --- a/icons-react/icons-js/letter-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/letter-h.js b/icons-react/icons-js/letter-h.js deleted file mode 100644 index d823e008b..000000000 --- a/icons-react/icons-js/letter-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/letter-i.js b/icons-react/icons-js/letter-i.js deleted file mode 100644 index 70f05f187..000000000 --- a/icons-react/icons-js/letter-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/letter-j.js b/icons-react/icons-js/letter-j.js deleted file mode 100644 index daac78630..000000000 --- a/icons-react/icons-js/letter-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/letter-k.js b/icons-react/icons-js/letter-k.js deleted file mode 100644 index 5aec8f69a..000000000 --- a/icons-react/icons-js/letter-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/letter-l.js b/icons-react/icons-js/letter-l.js deleted file mode 100644 index 523b66a79..000000000 --- a/icons-react/icons-js/letter-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/letter-m.js b/icons-react/icons-js/letter-m.js deleted file mode 100644 index 96bc068e1..000000000 --- a/icons-react/icons-js/letter-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/letter-n.js b/icons-react/icons-js/letter-n.js deleted file mode 100644 index 1c5de8934..000000000 --- a/icons-react/icons-js/letter-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/letter-o.js b/icons-react/icons-js/letter-o.js deleted file mode 100644 index f96131b6a..000000000 --- a/icons-react/icons-js/letter-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/letter-p.js b/icons-react/icons-js/letter-p.js deleted file mode 100644 index 251acb85e..000000000 --- a/icons-react/icons-js/letter-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/letter-q.js b/icons-react/icons-js/letter-q.js deleted file mode 100644 index 92be4a263..000000000 --- a/icons-react/icons-js/letter-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/letter-r.js b/icons-react/icons-js/letter-r.js deleted file mode 100644 index b15a94a54..000000000 --- a/icons-react/icons-js/letter-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/letter-s.js b/icons-react/icons-js/letter-s.js deleted file mode 100644 index 5bf4315ec..000000000 --- a/icons-react/icons-js/letter-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/letter-spacing.js b/icons-react/icons-js/letter-spacing.js deleted file mode 100644 index 26aafd64a..000000000 --- a/icons-react/icons-js/letter-spacing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterSpacing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterSpacing; \ No newline at end of file diff --git a/icons-react/icons-js/letter-t.js b/icons-react/icons-js/letter-t.js deleted file mode 100644 index 3396a6a29..000000000 --- a/icons-react/icons-js/letter-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/letter-u.js b/icons-react/icons-js/letter-u.js deleted file mode 100644 index 268d00f78..000000000 --- a/icons-react/icons-js/letter-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/letter-v.js b/icons-react/icons-js/letter-v.js deleted file mode 100644 index ec8eeaa17..000000000 --- a/icons-react/icons-js/letter-v.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterV({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/letter-w.js b/icons-react/icons-js/letter-w.js deleted file mode 100644 index 41b24ca58..000000000 --- a/icons-react/icons-js/letter-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/letter-x.js b/icons-react/icons-js/letter-x.js deleted file mode 100644 index 20a14333d..000000000 --- a/icons-react/icons-js/letter-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/letter-y.js b/icons-react/icons-js/letter-y.js deleted file mode 100644 index 26b6b4e77..000000000 --- a/icons-react/icons-js/letter-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/letter-z.js b/icons-react/icons-js/letter-z.js deleted file mode 100644 index 544556b13..000000000 --- a/icons-react/icons-js/letter-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLetterZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/letters-case.js b/icons-react/icons-js/letters-case.js deleted file mode 100644 index f2f6b3ffc..000000000 --- a/icons-react/icons-js/letters-case.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLettersCase({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLettersCase; \ No newline at end of file diff --git a/icons-react/icons-js/license-off.js b/icons-react/icons-js/license-off.js deleted file mode 100644 index 59f59ae37..000000000 --- a/icons-react/icons-js/license-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLicenseOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLicenseOff; \ No newline at end of file diff --git a/icons-react/icons-js/license.js b/icons-react/icons-js/license.js deleted file mode 100644 index 46c192e2c..000000000 --- a/icons-react/icons-js/license.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLicense({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLicense; \ No newline at end of file diff --git a/icons-react/icons-js/lifebuoy-off.js b/icons-react/icons-js/lifebuoy-off.js deleted file mode 100644 index aa0c34617..000000000 --- a/icons-react/icons-js/lifebuoy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLifebuoyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLifebuoyOff; \ No newline at end of file diff --git a/icons-react/icons-js/lifebuoy.js b/icons-react/icons-js/lifebuoy.js deleted file mode 100644 index 8f33903e6..000000000 --- a/icons-react/icons-js/lifebuoy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLifebuoy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLifebuoy; \ No newline at end of file diff --git a/icons-react/icons-js/line-dashed.js b/icons-react/icons-js/line-dashed.js deleted file mode 100644 index cdd5a642e..000000000 --- a/icons-react/icons-js/line-dashed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLineDashed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLineDashed; \ No newline at end of file diff --git a/icons-react/icons-js/line-dotted.js b/icons-react/icons-js/line-dotted.js deleted file mode 100644 index f82cfb011..000000000 --- a/icons-react/icons-js/line-dotted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLineDotted({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLineDotted; \ No newline at end of file diff --git a/icons-react/icons-js/line-height.js b/icons-react/icons-js/line-height.js deleted file mode 100644 index ce1ecbf4e..000000000 --- a/icons-react/icons-js/line-height.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLineHeight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLineHeight; \ No newline at end of file diff --git a/icons-react/icons-js/line.js b/icons-react/icons-js/line.js deleted file mode 100644 index 031aee457..000000000 --- a/icons-react/icons-js/line.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLine; \ No newline at end of file diff --git a/icons-react/icons-js/link-off.js b/icons-react/icons-js/link-off.js deleted file mode 100644 index ca8ad8926..000000000 --- a/icons-react/icons-js/link-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLinkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLinkOff; \ No newline at end of file diff --git a/icons-react/icons-js/link.js b/icons-react/icons-js/link.js deleted file mode 100644 index af883e927..000000000 --- a/icons-react/icons-js/link.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLink; \ No newline at end of file diff --git a/icons-react/icons-js/list-check.js b/icons-react/icons-js/list-check.js deleted file mode 100644 index b8a27ab7d..000000000 --- a/icons-react/icons-js/list-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconListCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconListCheck; \ No newline at end of file diff --git a/icons-react/icons-js/list-details.js b/icons-react/icons-js/list-details.js deleted file mode 100644 index 398431ea9..000000000 --- a/icons-react/icons-js/list-details.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconListDetails({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconListDetails; \ No newline at end of file diff --git a/icons-react/icons-js/list-numbers.js b/icons-react/icons-js/list-numbers.js deleted file mode 100644 index 7f3f55685..000000000 --- a/icons-react/icons-js/list-numbers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconListNumbers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconListNumbers; \ No newline at end of file diff --git a/icons-react/icons-js/list-search.js b/icons-react/icons-js/list-search.js deleted file mode 100644 index 14781ecd8..000000000 --- a/icons-react/icons-js/list-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconListSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconListSearch; \ No newline at end of file diff --git a/icons-react/icons-js/list.js b/icons-react/icons-js/list.js deleted file mode 100644 index 8b5e114c7..000000000 --- a/icons-react/icons-js/list.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconList({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconList; \ No newline at end of file diff --git a/icons-react/icons-js/live-photo-off.js b/icons-react/icons-js/live-photo-off.js deleted file mode 100644 index 4c17a9228..000000000 --- a/icons-react/icons-js/live-photo-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLivePhotoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLivePhotoOff; \ No newline at end of file diff --git a/icons-react/icons-js/live-photo.js b/icons-react/icons-js/live-photo.js deleted file mode 100644 index d43c8d471..000000000 --- a/icons-react/icons-js/live-photo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLivePhoto({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLivePhoto; \ No newline at end of file diff --git a/icons-react/icons-js/live-view.js b/icons-react/icons-js/live-view.js deleted file mode 100644 index a4592164f..000000000 --- a/icons-react/icons-js/live-view.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLiveView({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLiveView; \ No newline at end of file diff --git a/icons-react/icons-js/loader-2.js b/icons-react/icons-js/loader-2.js deleted file mode 100644 index 462e4069d..000000000 --- a/icons-react/icons-js/loader-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLoader2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLoader2; \ No newline at end of file diff --git a/icons-react/icons-js/loader-3.js b/icons-react/icons-js/loader-3.js deleted file mode 100644 index 1918b06e3..000000000 --- a/icons-react/icons-js/loader-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLoader3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLoader3; \ No newline at end of file diff --git a/icons-react/icons-js/loader-quarter.js b/icons-react/icons-js/loader-quarter.js deleted file mode 100644 index fa629f4b3..000000000 --- a/icons-react/icons-js/loader-quarter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLoaderQuarter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLoaderQuarter; \ No newline at end of file diff --git a/icons-react/icons-js/loader.js b/icons-react/icons-js/loader.js deleted file mode 100644 index e291165bd..000000000 --- a/icons-react/icons-js/loader.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLoader({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLoader; \ No newline at end of file diff --git a/icons-react/icons-js/location-broken.js b/icons-react/icons-js/location-broken.js deleted file mode 100644 index 1407f0bda..000000000 --- a/icons-react/icons-js/location-broken.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLocationBroken({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLocationBroken; \ No newline at end of file diff --git a/icons-react/icons-js/location-off.js b/icons-react/icons-js/location-off.js deleted file mode 100644 index b191d775d..000000000 --- a/icons-react/icons-js/location-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLocationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLocationOff; \ No newline at end of file diff --git a/icons-react/icons-js/location.js b/icons-react/icons-js/location.js deleted file mode 100644 index c72b24b0c..000000000 --- a/icons-react/icons-js/location.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLocation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLocation; \ No newline at end of file diff --git a/icons-react/icons-js/lock-access-off.js b/icons-react/icons-js/lock-access-off.js deleted file mode 100644 index 5e602fd3f..000000000 --- a/icons-react/icons-js/lock-access-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockAccessOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockAccessOff; \ No newline at end of file diff --git a/icons-react/icons-js/lock-access.js b/icons-react/icons-js/lock-access.js deleted file mode 100644 index 62b7d6d03..000000000 --- a/icons-react/icons-js/lock-access.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockAccess({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockAccess; \ No newline at end of file diff --git a/icons-react/icons-js/lock-off.js b/icons-react/icons-js/lock-off.js deleted file mode 100644 index 53ae84148..000000000 --- a/icons-react/icons-js/lock-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockOff; \ No newline at end of file diff --git a/icons-react/icons-js/lock-open-off.js b/icons-react/icons-js/lock-open-off.js deleted file mode 100644 index 348a1f001..000000000 --- a/icons-react/icons-js/lock-open-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockOpenOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockOpenOff; \ No newline at end of file diff --git a/icons-react/icons-js/lock-open.js b/icons-react/icons-js/lock-open.js deleted file mode 100644 index 9a7bade17..000000000 --- a/icons-react/icons-js/lock-open.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockOpen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockOpen; \ No newline at end of file diff --git a/icons-react/icons-js/lock-square-rounded.js b/icons-react/icons-js/lock-square-rounded.js deleted file mode 100644 index b06bafb3d..000000000 --- a/icons-react/icons-js/lock-square-rounded.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockSquareRounded({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockSquareRounded; \ No newline at end of file diff --git a/icons-react/icons-js/lock-square.js b/icons-react/icons-js/lock-square.js deleted file mode 100644 index 44e68570f..000000000 --- a/icons-react/icons-js/lock-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLockSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLockSquare; \ No newline at end of file diff --git a/icons-react/icons-js/lock.js b/icons-react/icons-js/lock.js deleted file mode 100644 index 64cffc64b..000000000 --- a/icons-react/icons-js/lock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLock; \ No newline at end of file diff --git a/icons-react/icons-js/logic-and.js b/icons-react/icons-js/logic-and.js deleted file mode 100644 index 43b62296e..000000000 --- a/icons-react/icons-js/logic-and.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicAnd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicAnd; \ No newline at end of file diff --git a/icons-react/icons-js/logic-buffer.js b/icons-react/icons-js/logic-buffer.js deleted file mode 100644 index a9e41befc..000000000 --- a/icons-react/icons-js/logic-buffer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicBuffer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicBuffer; \ No newline at end of file diff --git a/icons-react/icons-js/logic-nand.js b/icons-react/icons-js/logic-nand.js deleted file mode 100644 index ec2a09480..000000000 --- a/icons-react/icons-js/logic-nand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicNand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicNand; \ No newline at end of file diff --git a/icons-react/icons-js/logic-nor.js b/icons-react/icons-js/logic-nor.js deleted file mode 100644 index cd7749c5c..000000000 --- a/icons-react/icons-js/logic-nor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicNor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicNor; \ No newline at end of file diff --git a/icons-react/icons-js/logic-not.js b/icons-react/icons-js/logic-not.js deleted file mode 100644 index 632de58cb..000000000 --- a/icons-react/icons-js/logic-not.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicNot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicNot; \ No newline at end of file diff --git a/icons-react/icons-js/logic-or.js b/icons-react/icons-js/logic-or.js deleted file mode 100644 index 01d95bb29..000000000 --- a/icons-react/icons-js/logic-or.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicOr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicOr; \ No newline at end of file diff --git a/icons-react/icons-js/logic-xnor.js b/icons-react/icons-js/logic-xnor.js deleted file mode 100644 index d13a71b8e..000000000 --- a/icons-react/icons-js/logic-xnor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicXnor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicXnor; \ No newline at end of file diff --git a/icons-react/icons-js/logic-xor.js b/icons-react/icons-js/logic-xor.js deleted file mode 100644 index 2c8943178..000000000 --- a/icons-react/icons-js/logic-xor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogicXor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogicXor; \ No newline at end of file diff --git a/icons-react/icons-js/login.js b/icons-react/icons-js/login.js deleted file mode 100644 index b0b225936..000000000 --- a/icons-react/icons-js/login.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogin; \ No newline at end of file diff --git a/icons-react/icons-js/logout.js b/icons-react/icons-js/logout.js deleted file mode 100644 index 1889b99fd..000000000 --- a/icons-react/icons-js/logout.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLogout({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLogout; \ No newline at end of file diff --git a/icons-react/icons-js/lollipop-off.js b/icons-react/icons-js/lollipop-off.js deleted file mode 100644 index c7bbfb67d..000000000 --- a/icons-react/icons-js/lollipop-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLollipopOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLollipopOff; \ No newline at end of file diff --git a/icons-react/icons-js/lollipop.js b/icons-react/icons-js/lollipop.js deleted file mode 100644 index fb463e693..000000000 --- a/icons-react/icons-js/lollipop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLollipop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLollipop; \ No newline at end of file diff --git a/icons-react/icons-js/luggage-off.js b/icons-react/icons-js/luggage-off.js deleted file mode 100644 index 611bfcf05..000000000 --- a/icons-react/icons-js/luggage-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLuggageOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLuggageOff; \ No newline at end of file diff --git a/icons-react/icons-js/luggage.js b/icons-react/icons-js/luggage.js deleted file mode 100644 index 2d2ab84f4..000000000 --- a/icons-react/icons-js/luggage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLuggage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLuggage; \ No newline at end of file diff --git a/icons-react/icons-js/lungs-off.js b/icons-react/icons-js/lungs-off.js deleted file mode 100644 index 48f0bb5df..000000000 --- a/icons-react/icons-js/lungs-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLungsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLungsOff; \ No newline at end of file diff --git a/icons-react/icons-js/lungs.js b/icons-react/icons-js/lungs.js deleted file mode 100644 index 79b4c8731..000000000 --- a/icons-react/icons-js/lungs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconLungs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconLungs; \ No newline at end of file diff --git a/icons-react/icons-js/macro-off.js b/icons-react/icons-js/macro-off.js deleted file mode 100644 index 433cdff65..000000000 --- a/icons-react/icons-js/macro-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMacroOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMacroOff; \ No newline at end of file diff --git a/icons-react/icons-js/macro.js b/icons-react/icons-js/macro.js deleted file mode 100644 index 8111cc495..000000000 --- a/icons-react/icons-js/macro.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMacro({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMacro; \ No newline at end of file diff --git a/icons-react/icons-js/magnet-off.js b/icons-react/icons-js/magnet-off.js deleted file mode 100644 index 8a8bcfabf..000000000 --- a/icons-react/icons-js/magnet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMagnetOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMagnetOff; \ No newline at end of file diff --git a/icons-react/icons-js/magnet.js b/icons-react/icons-js/magnet.js deleted file mode 100644 index a9a655b0b..000000000 --- a/icons-react/icons-js/magnet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMagnet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMagnet; \ No newline at end of file diff --git a/icons-react/icons-js/mail-fast.js b/icons-react/icons-js/mail-fast.js deleted file mode 100644 index 055d2d276..000000000 --- a/icons-react/icons-js/mail-fast.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailFast({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailFast; \ No newline at end of file diff --git a/icons-react/icons-js/mail-forward.js b/icons-react/icons-js/mail-forward.js deleted file mode 100644 index e8070a7f8..000000000 --- a/icons-react/icons-js/mail-forward.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailForward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailForward; \ No newline at end of file diff --git a/icons-react/icons-js/mail-off.js b/icons-react/icons-js/mail-off.js deleted file mode 100644 index f46fd24a8..000000000 --- a/icons-react/icons-js/mail-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailOff; \ No newline at end of file diff --git a/icons-react/icons-js/mail-opened.js b/icons-react/icons-js/mail-opened.js deleted file mode 100644 index 17c0c034f..000000000 --- a/icons-react/icons-js/mail-opened.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailOpened({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailOpened; \ No newline at end of file diff --git a/icons-react/icons-js/mail.js b/icons-react/icons-js/mail.js deleted file mode 100644 index 2cfef99d0..000000000 --- a/icons-react/icons-js/mail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMail; \ No newline at end of file diff --git a/icons-react/icons-js/mailbox-off.js b/icons-react/icons-js/mailbox-off.js deleted file mode 100644 index 5d9ef13f6..000000000 --- a/icons-react/icons-js/mailbox-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailboxOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailboxOff; \ No newline at end of file diff --git a/icons-react/icons-js/mailbox.js b/icons-react/icons-js/mailbox.js deleted file mode 100644 index 0c3272451..000000000 --- a/icons-react/icons-js/mailbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMailbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMailbox; \ No newline at end of file diff --git a/icons-react/icons-js/man.js b/icons-react/icons-js/man.js deleted file mode 100644 index c31a30320..000000000 --- a/icons-react/icons-js/man.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMan; \ No newline at end of file diff --git a/icons-react/icons-js/manual-gearbox.js b/icons-react/icons-js/manual-gearbox.js deleted file mode 100644 index fee778a98..000000000 --- a/icons-react/icons-js/manual-gearbox.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconManualGearbox({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconManualGearbox; \ No newline at end of file diff --git a/icons-react/icons-js/map-2.js b/icons-react/icons-js/map-2.js deleted file mode 100644 index 7a6678fac..000000000 --- a/icons-react/icons-js/map-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMap2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMap2; \ No newline at end of file diff --git a/icons-react/icons-js/map-off.js b/icons-react/icons-js/map-off.js deleted file mode 100644 index 990b3e49b..000000000 --- a/icons-react/icons-js/map-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMapOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMapOff; \ No newline at end of file diff --git a/icons-react/icons-js/map-pin-off.js b/icons-react/icons-js/map-pin-off.js deleted file mode 100644 index 01529d880..000000000 --- a/icons-react/icons-js/map-pin-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMapPinOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMapPinOff; \ No newline at end of file diff --git a/icons-react/icons-js/map-pin.js b/icons-react/icons-js/map-pin.js deleted file mode 100644 index 1c7c81f43..000000000 --- a/icons-react/icons-js/map-pin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMapPin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMapPin; \ No newline at end of file diff --git a/icons-react/icons-js/map-pins.js b/icons-react/icons-js/map-pins.js deleted file mode 100644 index 9df91fa56..000000000 --- a/icons-react/icons-js/map-pins.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMapPins({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMapPins; \ No newline at end of file diff --git a/icons-react/icons-js/map-search.js b/icons-react/icons-js/map-search.js deleted file mode 100644 index 0a3499c72..000000000 --- a/icons-react/icons-js/map-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMapSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMapSearch; \ No newline at end of file diff --git a/icons-react/icons-js/map.js b/icons-react/icons-js/map.js deleted file mode 100644 index 8c73988ae..000000000 --- a/icons-react/icons-js/map.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMap({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMap; \ No newline at end of file diff --git a/icons-react/icons-js/markdown-off.js b/icons-react/icons-js/markdown-off.js deleted file mode 100644 index 2a0f339ef..000000000 --- a/icons-react/icons-js/markdown-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMarkdownOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMarkdownOff; \ No newline at end of file diff --git a/icons-react/icons-js/markdown.js b/icons-react/icons-js/markdown.js deleted file mode 100644 index 9d949d228..000000000 --- a/icons-react/icons-js/markdown.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMarkdown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMarkdown; \ No newline at end of file diff --git a/icons-react/icons-js/marquee-2.js b/icons-react/icons-js/marquee-2.js deleted file mode 100644 index 19fbd17f3..000000000 --- a/icons-react/icons-js/marquee-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMarquee2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMarquee2; \ No newline at end of file diff --git a/icons-react/icons-js/marquee-off.js b/icons-react/icons-js/marquee-off.js deleted file mode 100644 index c52e0a452..000000000 --- a/icons-react/icons-js/marquee-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMarqueeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMarqueeOff; \ No newline at end of file diff --git a/icons-react/icons-js/marquee.js b/icons-react/icons-js/marquee.js deleted file mode 100644 index 4b98d9cd5..000000000 --- a/icons-react/icons-js/marquee.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMarquee({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMarquee; \ No newline at end of file diff --git a/icons-react/icons-js/mars.js b/icons-react/icons-js/mars.js deleted file mode 100644 index 865ab8cad..000000000 --- a/icons-react/icons-js/mars.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMars({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMars; \ No newline at end of file diff --git a/icons-react/icons-js/mask-off.js b/icons-react/icons-js/mask-off.js deleted file mode 100644 index e88dd6f13..000000000 --- a/icons-react/icons-js/mask-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMaskOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMaskOff; \ No newline at end of file diff --git a/icons-react/icons-js/mask.js b/icons-react/icons-js/mask.js deleted file mode 100644 index 047404d86..000000000 --- a/icons-react/icons-js/mask.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMask({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMask; \ No newline at end of file diff --git a/icons-react/icons-js/masks-theater-off.js b/icons-react/icons-js/masks-theater-off.js deleted file mode 100644 index cc2c87dde..000000000 --- a/icons-react/icons-js/masks-theater-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMasksTheaterOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMasksTheaterOff; \ No newline at end of file diff --git a/icons-react/icons-js/masks-theater.js b/icons-react/icons-js/masks-theater.js deleted file mode 100644 index bbe233ffe..000000000 --- a/icons-react/icons-js/masks-theater.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMasksTheater({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMasksTheater; \ No newline at end of file diff --git a/icons-react/icons-js/massage.js b/icons-react/icons-js/massage.js deleted file mode 100644 index bc697802a..000000000 --- a/icons-react/icons-js/massage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMassage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMassage; \ No newline at end of file diff --git a/icons-react/icons-js/matchstick.js b/icons-react/icons-js/matchstick.js deleted file mode 100644 index 304793cb0..000000000 --- a/icons-react/icons-js/matchstick.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMatchstick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMatchstick; \ No newline at end of file diff --git a/icons-react/icons-js/math-1-divide-2.js b/icons-react/icons-js/math-1-divide-2.js deleted file mode 100644 index 3f024d6d9..000000000 --- a/icons-react/icons-js/math-1-divide-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMath1Divide2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMath1Divide2; \ No newline at end of file diff --git a/icons-react/icons-js/math-1-divide-3.js b/icons-react/icons-js/math-1-divide-3.js deleted file mode 100644 index 2b211b536..000000000 --- a/icons-react/icons-js/math-1-divide-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMath1Divide3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMath1Divide3; \ No newline at end of file diff --git a/icons-react/icons-js/math-avg.js b/icons-react/icons-js/math-avg.js deleted file mode 100644 index d93a148cf..000000000 --- a/icons-react/icons-js/math-avg.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathAvg({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathAvg; \ No newline at end of file diff --git a/icons-react/icons-js/math-equal-greater.js b/icons-react/icons-js/math-equal-greater.js deleted file mode 100644 index 17b9a6a79..000000000 --- a/icons-react/icons-js/math-equal-greater.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathEqualGreater({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathEqualGreater; \ No newline at end of file diff --git a/icons-react/icons-js/math-equal-lower.js b/icons-react/icons-js/math-equal-lower.js deleted file mode 100644 index 012adcc25..000000000 --- a/icons-react/icons-js/math-equal-lower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathEqualLower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathEqualLower; \ No newline at end of file diff --git a/icons-react/icons-js/math-function-off.js b/icons-react/icons-js/math-function-off.js deleted file mode 100644 index 72b1fac9f..000000000 --- a/icons-react/icons-js/math-function-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathFunctionOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathFunctionOff; \ No newline at end of file diff --git a/icons-react/icons-js/math-function-y.js b/icons-react/icons-js/math-function-y.js deleted file mode 100644 index 420b42a4b..000000000 --- a/icons-react/icons-js/math-function-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathFunctionY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathFunctionY; \ No newline at end of file diff --git a/icons-react/icons-js/math-function.js b/icons-react/icons-js/math-function.js deleted file mode 100644 index b360e1057..000000000 --- a/icons-react/icons-js/math-function.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathFunction({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathFunction; \ No newline at end of file diff --git a/icons-react/icons-js/math-greater.js b/icons-react/icons-js/math-greater.js deleted file mode 100644 index eca37b7ca..000000000 --- a/icons-react/icons-js/math-greater.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathGreater({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathGreater; \ No newline at end of file diff --git a/icons-react/icons-js/math-integral-x.js b/icons-react/icons-js/math-integral-x.js deleted file mode 100644 index 56aaaf88f..000000000 --- a/icons-react/icons-js/math-integral-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathIntegralX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathIntegralX; \ No newline at end of file diff --git a/icons-react/icons-js/math-integral.js b/icons-react/icons-js/math-integral.js deleted file mode 100644 index 0615e6889..000000000 --- a/icons-react/icons-js/math-integral.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathIntegral({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathIntegral; \ No newline at end of file diff --git a/icons-react/icons-js/math-integrals.js b/icons-react/icons-js/math-integrals.js deleted file mode 100644 index 9cd9d368a..000000000 --- a/icons-react/icons-js/math-integrals.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathIntegrals({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathIntegrals; \ No newline at end of file diff --git a/icons-react/icons-js/math-lower.js b/icons-react/icons-js/math-lower.js deleted file mode 100644 index 3cccbfd5e..000000000 --- a/icons-react/icons-js/math-lower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathLower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathLower; \ No newline at end of file diff --git a/icons-react/icons-js/math-max.js b/icons-react/icons-js/math-max.js deleted file mode 100644 index 61d176fa6..000000000 --- a/icons-react/icons-js/math-max.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathMax({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathMax; \ No newline at end of file diff --git a/icons-react/icons-js/math-min.js b/icons-react/icons-js/math-min.js deleted file mode 100644 index ae711640c..000000000 --- a/icons-react/icons-js/math-min.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathMin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathMin; \ No newline at end of file diff --git a/icons-react/icons-js/math-not.js b/icons-react/icons-js/math-not.js deleted file mode 100644 index 0653afab1..000000000 --- a/icons-react/icons-js/math-not.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathNot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathNot; \ No newline at end of file diff --git a/icons-react/icons-js/math-off.js b/icons-react/icons-js/math-off.js deleted file mode 100644 index cd52cf03d..000000000 --- a/icons-react/icons-js/math-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathOff; \ No newline at end of file diff --git a/icons-react/icons-js/math-pi-divide-2.js b/icons-react/icons-js/math-pi-divide-2.js deleted file mode 100644 index 3b44b2fa9..000000000 --- a/icons-react/icons-js/math-pi-divide-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathPiDivide2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathPiDivide2; \ No newline at end of file diff --git a/icons-react/icons-js/math-pi.js b/icons-react/icons-js/math-pi.js deleted file mode 100644 index 66a1eb63e..000000000 --- a/icons-react/icons-js/math-pi.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathPi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathPi; \ No newline at end of file diff --git a/icons-react/icons-js/math-symbols.js b/icons-react/icons-js/math-symbols.js deleted file mode 100644 index 41bdcb7fc..000000000 --- a/icons-react/icons-js/math-symbols.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathSymbols({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathSymbols; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-divide-2.js b/icons-react/icons-js/math-x-divide-2.js deleted file mode 100644 index 0a7fb3a37..000000000 --- a/icons-react/icons-js/math-x-divide-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXDivide2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXDivide2; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-divide-y-2.js b/icons-react/icons-js/math-x-divide-y-2.js deleted file mode 100644 index b158ae2c4..000000000 --- a/icons-react/icons-js/math-x-divide-y-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXDivideY2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXDivideY2; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-divide-y.js b/icons-react/icons-js/math-x-divide-y.js deleted file mode 100644 index 3ffc469d7..000000000 --- a/icons-react/icons-js/math-x-divide-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXDivideY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXDivideY; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-minus-x.js b/icons-react/icons-js/math-x-minus-x.js deleted file mode 100644 index aba0f9100..000000000 --- a/icons-react/icons-js/math-x-minus-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXMinusX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXMinusX; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-minus-y.js b/icons-react/icons-js/math-x-minus-y.js deleted file mode 100644 index c067b46ae..000000000 --- a/icons-react/icons-js/math-x-minus-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXMinusY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXMinusY; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-plus-x.js b/icons-react/icons-js/math-x-plus-x.js deleted file mode 100644 index 48e6d13a4..000000000 --- a/icons-react/icons-js/math-x-plus-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXPlusX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXPlusX; \ No newline at end of file diff --git a/icons-react/icons-js/math-x-plus-y.js b/icons-react/icons-js/math-x-plus-y.js deleted file mode 100644 index 55dcae2af..000000000 --- a/icons-react/icons-js/math-x-plus-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXPlusY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXPlusY; \ No newline at end of file diff --git a/icons-react/icons-js/math-xy.js b/icons-react/icons-js/math-xy.js deleted file mode 100644 index dbf01b0e5..000000000 --- a/icons-react/icons-js/math-xy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathXy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathXy; \ No newline at end of file diff --git a/icons-react/icons-js/math-y-minus-y.js b/icons-react/icons-js/math-y-minus-y.js deleted file mode 100644 index 5f9727ddd..000000000 --- a/icons-react/icons-js/math-y-minus-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathYMinusY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathYMinusY; \ No newline at end of file diff --git a/icons-react/icons-js/math-y-plus-y.js b/icons-react/icons-js/math-y-plus-y.js deleted file mode 100644 index 0af9622e5..000000000 --- a/icons-react/icons-js/math-y-plus-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMathYPlusY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMathYPlusY; \ No newline at end of file diff --git a/icons-react/icons-js/math.js b/icons-react/icons-js/math.js deleted file mode 100644 index b40b2356d..000000000 --- a/icons-react/icons-js/math.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMath({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMath; \ No newline at end of file diff --git a/icons-react/icons-js/maximize-off.js b/icons-react/icons-js/maximize-off.js deleted file mode 100644 index 396e32274..000000000 --- a/icons-react/icons-js/maximize-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMaximizeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMaximizeOff; \ No newline at end of file diff --git a/icons-react/icons-js/maximize.js b/icons-react/icons-js/maximize.js deleted file mode 100644 index 99b79702e..000000000 --- a/icons-react/icons-js/maximize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMaximize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMaximize; \ No newline at end of file diff --git a/icons-react/icons-js/meat-off.js b/icons-react/icons-js/meat-off.js deleted file mode 100644 index 6863a8e8c..000000000 --- a/icons-react/icons-js/meat-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMeatOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMeatOff; \ No newline at end of file diff --git a/icons-react/icons-js/meat.js b/icons-react/icons-js/meat.js deleted file mode 100644 index de5baaf90..000000000 --- a/icons-react/icons-js/meat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMeat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMeat; \ No newline at end of file diff --git a/icons-react/icons-js/medal-2.js b/icons-react/icons-js/medal-2.js deleted file mode 100644 index 19073017f..000000000 --- a/icons-react/icons-js/medal-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMedal2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMedal2; \ No newline at end of file diff --git a/icons-react/icons-js/medal.js b/icons-react/icons-js/medal.js deleted file mode 100644 index 3734f0bbf..000000000 --- a/icons-react/icons-js/medal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMedal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMedal; \ No newline at end of file diff --git a/icons-react/icons-js/medical-cross-off.js b/icons-react/icons-js/medical-cross-off.js deleted file mode 100644 index b7a7d746e..000000000 --- a/icons-react/icons-js/medical-cross-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMedicalCrossOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMedicalCrossOff; \ No newline at end of file diff --git a/icons-react/icons-js/medical-cross.js b/icons-react/icons-js/medical-cross.js deleted file mode 100644 index dc6c0c5ea..000000000 --- a/icons-react/icons-js/medical-cross.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMedicalCross({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMedicalCross; \ No newline at end of file diff --git a/icons-react/icons-js/medicine-syrup.js b/icons-react/icons-js/medicine-syrup.js deleted file mode 100644 index 34a1d4af2..000000000 --- a/icons-react/icons-js/medicine-syrup.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMedicineSyrup({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMedicineSyrup; \ No newline at end of file diff --git a/icons-react/icons-js/meeple.js b/icons-react/icons-js/meeple.js deleted file mode 100644 index 51e646605..000000000 --- a/icons-react/icons-js/meeple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMeeple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMeeple; \ No newline at end of file diff --git a/icons-react/icons-js/menorah.js b/icons-react/icons-js/menorah.js deleted file mode 100644 index dff648058..000000000 --- a/icons-react/icons-js/menorah.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMenorah({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMenorah; \ No newline at end of file diff --git a/icons-react/icons-js/menu-2.js b/icons-react/icons-js/menu-2.js deleted file mode 100644 index d0d2c1954..000000000 --- a/icons-react/icons-js/menu-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMenu2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMenu2; \ No newline at end of file diff --git a/icons-react/icons-js/menu-order.js b/icons-react/icons-js/menu-order.js deleted file mode 100644 index f7400cf17..000000000 --- a/icons-react/icons-js/menu-order.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMenuOrder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMenuOrder; \ No newline at end of file diff --git a/icons-react/icons-js/menu.js b/icons-react/icons-js/menu.js deleted file mode 100644 index 686941656..000000000 --- a/icons-react/icons-js/menu.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMenu({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMenu; \ No newline at end of file diff --git a/icons-react/icons-js/message-2-code.js b/icons-react/icons-js/message-2-code.js deleted file mode 100644 index a00ffaa16..000000000 --- a/icons-react/icons-js/message-2-code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessage2Code({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessage2Code; \ No newline at end of file diff --git a/icons-react/icons-js/message-2-off.js b/icons-react/icons-js/message-2-off.js deleted file mode 100644 index 99517530f..000000000 --- a/icons-react/icons-js/message-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessage2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessage2Off; \ No newline at end of file diff --git a/icons-react/icons-js/message-2-share.js b/icons-react/icons-js/message-2-share.js deleted file mode 100644 index 7dad84814..000000000 --- a/icons-react/icons-js/message-2-share.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessage2Share({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessage2Share; \ No newline at end of file diff --git a/icons-react/icons-js/message-2.js b/icons-react/icons-js/message-2.js deleted file mode 100644 index df652fb80..000000000 --- a/icons-react/icons-js/message-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessage2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessage2; \ No newline at end of file diff --git a/icons-react/icons-js/message-chatbot.js b/icons-react/icons-js/message-chatbot.js deleted file mode 100644 index 4c2634b1e..000000000 --- a/icons-react/icons-js/message-chatbot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageChatbot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageChatbot; \ No newline at end of file diff --git a/icons-react/icons-js/message-circle-2.js b/icons-react/icons-js/message-circle-2.js deleted file mode 100644 index 7f1381f7d..000000000 --- a/icons-react/icons-js/message-circle-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageCircle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageCircle2; \ No newline at end of file diff --git a/icons-react/icons-js/message-circle-off.js b/icons-react/icons-js/message-circle-off.js deleted file mode 100644 index e872e6994..000000000 --- a/icons-react/icons-js/message-circle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageCircleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageCircleOff; \ No newline at end of file diff --git a/icons-react/icons-js/message-circle.js b/icons-react/icons-js/message-circle.js deleted file mode 100644 index d79220e0b..000000000 --- a/icons-react/icons-js/message-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageCircle; \ No newline at end of file diff --git a/icons-react/icons-js/message-code.js b/icons-react/icons-js/message-code.js deleted file mode 100644 index 253ee6f81..000000000 --- a/icons-react/icons-js/message-code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageCode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageCode; \ No newline at end of file diff --git a/icons-react/icons-js/message-dots.js b/icons-react/icons-js/message-dots.js deleted file mode 100644 index e08dbee2e..000000000 --- a/icons-react/icons-js/message-dots.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageDots({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageDots; \ No newline at end of file diff --git a/icons-react/icons-js/message-forward.js b/icons-react/icons-js/message-forward.js deleted file mode 100644 index 7e868da82..000000000 --- a/icons-react/icons-js/message-forward.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageForward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageForward; \ No newline at end of file diff --git a/icons-react/icons-js/message-language.js b/icons-react/icons-js/message-language.js deleted file mode 100644 index 3d5ada246..000000000 --- a/icons-react/icons-js/message-language.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageLanguage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageLanguage; \ No newline at end of file diff --git a/icons-react/icons-js/message-off.js b/icons-react/icons-js/message-off.js deleted file mode 100644 index 5f7cbce8d..000000000 --- a/icons-react/icons-js/message-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageOff; \ No newline at end of file diff --git a/icons-react/icons-js/message-plus.js b/icons-react/icons-js/message-plus.js deleted file mode 100644 index af6670eab..000000000 --- a/icons-react/icons-js/message-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessagePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessagePlus; \ No newline at end of file diff --git a/icons-react/icons-js/message-report.js b/icons-react/icons-js/message-report.js deleted file mode 100644 index b456c0622..000000000 --- a/icons-react/icons-js/message-report.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageReport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageReport; \ No newline at end of file diff --git a/icons-react/icons-js/message-share.js b/icons-react/icons-js/message-share.js deleted file mode 100644 index 74455c0e7..000000000 --- a/icons-react/icons-js/message-share.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessageShare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessageShare; \ No newline at end of file diff --git a/icons-react/icons-js/message.js b/icons-react/icons-js/message.js deleted file mode 100644 index e1319fa35..000000000 --- a/icons-react/icons-js/message.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessage; \ No newline at end of file diff --git a/icons-react/icons-js/messages-off.js b/icons-react/icons-js/messages-off.js deleted file mode 100644 index 861c3af08..000000000 --- a/icons-react/icons-js/messages-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessagesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessagesOff; \ No newline at end of file diff --git a/icons-react/icons-js/messages.js b/icons-react/icons-js/messages.js deleted file mode 100644 index 2d6aca1e8..000000000 --- a/icons-react/icons-js/messages.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMessages({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMessages; \ No newline at end of file diff --git a/icons-react/icons-js/meteor-off.js b/icons-react/icons-js/meteor-off.js deleted file mode 100644 index b7e29e9d4..000000000 --- a/icons-react/icons-js/meteor-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMeteorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMeteorOff; \ No newline at end of file diff --git a/icons-react/icons-js/meteor.js b/icons-react/icons-js/meteor.js deleted file mode 100644 index 584403dc1..000000000 --- a/icons-react/icons-js/meteor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMeteor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMeteor; \ No newline at end of file diff --git a/icons-react/icons-js/mickey.js b/icons-react/icons-js/mickey.js deleted file mode 100644 index 1ab8c8f9e..000000000 --- a/icons-react/icons-js/mickey.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMickey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMickey; \ No newline at end of file diff --git a/icons-react/icons-js/microphone-2-off.js b/icons-react/icons-js/microphone-2-off.js deleted file mode 100644 index 63bf23e71..000000000 --- a/icons-react/icons-js/microphone-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrophone2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrophone2Off; \ No newline at end of file diff --git a/icons-react/icons-js/microphone-2.js b/icons-react/icons-js/microphone-2.js deleted file mode 100644 index a1014dc9d..000000000 --- a/icons-react/icons-js/microphone-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrophone2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrophone2; \ No newline at end of file diff --git a/icons-react/icons-js/microphone-off.js b/icons-react/icons-js/microphone-off.js deleted file mode 100644 index 2b0ec90b9..000000000 --- a/icons-react/icons-js/microphone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrophoneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrophoneOff; \ No newline at end of file diff --git a/icons-react/icons-js/microphone.js b/icons-react/icons-js/microphone.js deleted file mode 100644 index 9d52568d3..000000000 --- a/icons-react/icons-js/microphone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrophone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrophone; \ No newline at end of file diff --git a/icons-react/icons-js/microscope-off.js b/icons-react/icons-js/microscope-off.js deleted file mode 100644 index facb9ea54..000000000 --- a/icons-react/icons-js/microscope-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicroscopeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicroscopeOff; \ No newline at end of file diff --git a/icons-react/icons-js/microscope.js b/icons-react/icons-js/microscope.js deleted file mode 100644 index 05eba0eb9..000000000 --- a/icons-react/icons-js/microscope.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicroscope({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicroscope; \ No newline at end of file diff --git a/icons-react/icons-js/microwave-off.js b/icons-react/icons-js/microwave-off.js deleted file mode 100644 index 0431d6d52..000000000 --- a/icons-react/icons-js/microwave-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrowaveOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrowaveOff; \ No newline at end of file diff --git a/icons-react/icons-js/microwave.js b/icons-react/icons-js/microwave.js deleted file mode 100644 index a595f14bb..000000000 --- a/icons-react/icons-js/microwave.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMicrowave({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMicrowave; \ No newline at end of file diff --git a/icons-react/icons-js/miliraty-award.js b/icons-react/icons-js/miliraty-award.js deleted file mode 100644 index c79f6bbe6..000000000 --- a/icons-react/icons-js/miliraty-award.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMiliratyAward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMiliratyAward; \ No newline at end of file diff --git a/icons-react/icons-js/military-award.js b/icons-react/icons-js/military-award.js deleted file mode 100644 index 4494d9c7b..000000000 --- a/icons-react/icons-js/military-award.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMilitaryAward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMilitaryAward; \ No newline at end of file diff --git a/icons-react/icons-js/military-rank.js b/icons-react/icons-js/military-rank.js deleted file mode 100644 index 1a1590f9d..000000000 --- a/icons-react/icons-js/military-rank.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMilitaryRank({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMilitaryRank; \ No newline at end of file diff --git a/icons-react/icons-js/milk-off.js b/icons-react/icons-js/milk-off.js deleted file mode 100644 index 5b2e90bd3..000000000 --- a/icons-react/icons-js/milk-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMilkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMilkOff; \ No newline at end of file diff --git a/icons-react/icons-js/milk.js b/icons-react/icons-js/milk.js deleted file mode 100644 index 1ea969464..000000000 --- a/icons-react/icons-js/milk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMilk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMilk; \ No newline at end of file diff --git a/icons-react/icons-js/milkshake.js b/icons-react/icons-js/milkshake.js deleted file mode 100644 index 4bf718473..000000000 --- a/icons-react/icons-js/milkshake.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMilkshake({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMilkshake; \ No newline at end of file diff --git a/icons-react/icons-js/minimize.js b/icons-react/icons-js/minimize.js deleted file mode 100644 index 7646e62d5..000000000 --- a/icons-react/icons-js/minimize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMinimize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/minus-vertical.js b/icons-react/icons-js/minus-vertical.js deleted file mode 100644 index a2ad4a3ab..000000000 --- a/icons-react/icons-js/minus-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMinusVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMinusVertical; \ No newline at end of file diff --git a/icons-react/icons-js/minus.js b/icons-react/icons-js/minus.js deleted file mode 100644 index 73226836f..000000000 --- a/icons-react/icons-js/minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMinus; \ No newline at end of file diff --git a/icons-react/icons-js/mist-off.js b/icons-react/icons-js/mist-off.js deleted file mode 100644 index 910447d79..000000000 --- a/icons-react/icons-js/mist-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMistOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMistOff; \ No newline at end of file diff --git a/icons-react/icons-js/mist.js b/icons-react/icons-js/mist.js deleted file mode 100644 index 0153a2622..000000000 --- a/icons-react/icons-js/mist.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMist({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMist; \ No newline at end of file diff --git a/icons-react/icons-js/moneybag.js b/icons-react/icons-js/moneybag.js deleted file mode 100644 index 5f423b481..000000000 --- a/icons-react/icons-js/moneybag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoneybag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoneybag; \ No newline at end of file diff --git a/icons-react/icons-js/mood-angry.js b/icons-react/icons-js/mood-angry.js deleted file mode 100644 index 57adb215b..000000000 --- a/icons-react/icons-js/mood-angry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodAngry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodAngry; \ No newline at end of file diff --git a/icons-react/icons-js/mood-annoyed-2.js b/icons-react/icons-js/mood-annoyed-2.js deleted file mode 100644 index c59fdcd7e..000000000 --- a/icons-react/icons-js/mood-annoyed-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodAnnoyed2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodAnnoyed2; \ No newline at end of file diff --git a/icons-react/icons-js/mood-annoyed.js b/icons-react/icons-js/mood-annoyed.js deleted file mode 100644 index ae53a887c..000000000 --- a/icons-react/icons-js/mood-annoyed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodAnnoyed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodAnnoyed; \ No newline at end of file diff --git a/icons-react/icons-js/mood-boy.js b/icons-react/icons-js/mood-boy.js deleted file mode 100644 index 0f8f5bc4d..000000000 --- a/icons-react/icons-js/mood-boy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodBoy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodBoy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-confuzed.js b/icons-react/icons-js/mood-confuzed.js deleted file mode 100644 index 3ac6b44d0..000000000 --- a/icons-react/icons-js/mood-confuzed.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodConfuzed({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodConfuzed; \ No newline at end of file diff --git a/icons-react/icons-js/mood-crazy-happy.js b/icons-react/icons-js/mood-crazy-happy.js deleted file mode 100644 index 9d2972397..000000000 --- a/icons-react/icons-js/mood-crazy-happy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodCrazyHappy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodCrazyHappy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-cry.js b/icons-react/icons-js/mood-cry.js deleted file mode 100644 index 95beafdd2..000000000 --- a/icons-react/icons-js/mood-cry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodCry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodCry; \ No newline at end of file diff --git a/icons-react/icons-js/mood-empty.js b/icons-react/icons-js/mood-empty.js deleted file mode 100644 index 0fc123154..000000000 --- a/icons-react/icons-js/mood-empty.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodEmpty({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodEmpty; \ No newline at end of file diff --git a/icons-react/icons-js/mood-happy.js b/icons-react/icons-js/mood-happy.js deleted file mode 100644 index 75ccc7314..000000000 --- a/icons-react/icons-js/mood-happy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodHappy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodHappy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-kid.js b/icons-react/icons-js/mood-kid.js deleted file mode 100644 index 7da1ff0b2..000000000 --- a/icons-react/icons-js/mood-kid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodKid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodKid; \ No newline at end of file diff --git a/icons-react/icons-js/mood-look-left.js b/icons-react/icons-js/mood-look-left.js deleted file mode 100644 index 579c22330..000000000 --- a/icons-react/icons-js/mood-look-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodLookLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodLookLeft; \ No newline at end of file diff --git a/icons-react/icons-js/mood-look-right.js b/icons-react/icons-js/mood-look-right.js deleted file mode 100644 index 4389acf1e..000000000 --- a/icons-react/icons-js/mood-look-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodLookRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodLookRight; \ No newline at end of file diff --git a/icons-react/icons-js/mood-nerd.js b/icons-react/icons-js/mood-nerd.js deleted file mode 100644 index c20888d81..000000000 --- a/icons-react/icons-js/mood-nerd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodNerd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodNerd; \ No newline at end of file diff --git a/icons-react/icons-js/mood-nervous.js b/icons-react/icons-js/mood-nervous.js deleted file mode 100644 index 6124833f5..000000000 --- a/icons-react/icons-js/mood-nervous.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodNervous({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodNervous; \ No newline at end of file diff --git a/icons-react/icons-js/mood-neutral.js b/icons-react/icons-js/mood-neutral.js deleted file mode 100644 index 9a9857bc2..000000000 --- a/icons-react/icons-js/mood-neutral.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodNeutral({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodNeutral; \ No newline at end of file diff --git a/icons-react/icons-js/mood-off.js b/icons-react/icons-js/mood-off.js deleted file mode 100644 index 6e877b569..000000000 --- a/icons-react/icons-js/mood-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodOff; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-2.js b/icons-react/icons-js/mood-sad-2.js deleted file mode 100644 index c6bb61b75..000000000 --- a/icons-react/icons-js/mood-sad-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSad2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSad2; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-dizzy.js b/icons-react/icons-js/mood-sad-dizzy.js deleted file mode 100644 index c0c2e36d2..000000000 --- a/icons-react/icons-js/mood-sad-dizzy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSadDizzy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSadDizzy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-squint.js b/icons-react/icons-js/mood-sad-squint.js deleted file mode 100644 index 92b78dcff..000000000 --- a/icons-react/icons-js/mood-sad-squint.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSadSquint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSadSquint; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sad.js b/icons-react/icons-js/mood-sad.js deleted file mode 100644 index 182d6c585..000000000 --- a/icons-react/icons-js/mood-sad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSad; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sick.js b/icons-react/icons-js/mood-sick.js deleted file mode 100644 index cec07926e..000000000 --- a/icons-react/icons-js/mood-sick.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSick({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSick; \ No newline at end of file diff --git a/icons-react/icons-js/mood-silence.js b/icons-react/icons-js/mood-silence.js deleted file mode 100644 index 6705853c0..000000000 --- a/icons-react/icons-js/mood-silence.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSilence({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSilence; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sing.js b/icons-react/icons-js/mood-sing.js deleted file mode 100644 index 47fbd0b59..000000000 --- a/icons-react/icons-js/mood-sing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSing; \ No newline at end of file diff --git a/icons-react/icons-js/mood-smile-beam.js b/icons-react/icons-js/mood-smile-beam.js deleted file mode 100644 index 94d8e4a87..000000000 --- a/icons-react/icons-js/mood-smile-beam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSmileBeam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSmileBeam; \ No newline at end of file diff --git a/icons-react/icons-js/mood-smile-dizzy.js b/icons-react/icons-js/mood-smile-dizzy.js deleted file mode 100644 index 0532e55e4..000000000 --- a/icons-react/icons-js/mood-smile-dizzy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSmileDizzy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSmileDizzy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-smile.js b/icons-react/icons-js/mood-smile.js deleted file mode 100644 index ce8fc8ee2..000000000 --- a/icons-react/icons-js/mood-smile.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSmile({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSmile; \ No newline at end of file diff --git a/icons-react/icons-js/mood-suprised.js b/icons-react/icons-js/mood-suprised.js deleted file mode 100644 index 1c2fcdfd5..000000000 --- a/icons-react/icons-js/mood-suprised.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodSuprised({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodSuprised; \ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue-wink-2.js b/icons-react/icons-js/mood-tongue-wink-2.js deleted file mode 100644 index 67cf0d806..000000000 --- a/icons-react/icons-js/mood-tongue-wink-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodTongueWink2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodTongueWink2; \ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue-wink.js b/icons-react/icons-js/mood-tongue-wink.js deleted file mode 100644 index ce939b31c..000000000 --- a/icons-react/icons-js/mood-tongue-wink.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodTongueWink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodTongueWink; \ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue.js b/icons-react/icons-js/mood-tongue.js deleted file mode 100644 index 919f6f71b..000000000 --- a/icons-react/icons-js/mood-tongue.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodTongue({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodTongue; \ No newline at end of file diff --git a/icons-react/icons-js/mood-unamused.js b/icons-react/icons-js/mood-unamused.js deleted file mode 100644 index 4a47508b8..000000000 --- a/icons-react/icons-js/mood-unamused.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodUnamused({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodUnamused; \ No newline at end of file diff --git a/icons-react/icons-js/mood-wink-2.js b/icons-react/icons-js/mood-wink-2.js deleted file mode 100644 index e6af97584..000000000 --- a/icons-react/icons-js/mood-wink-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodWink2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodWink2; \ No newline at end of file diff --git a/icons-react/icons-js/mood-wink.js b/icons-react/icons-js/mood-wink.js deleted file mode 100644 index 183205439..000000000 --- a/icons-react/icons-js/mood-wink.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodWink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodWink; \ No newline at end of file diff --git a/icons-react/icons-js/mood-wrrr.js b/icons-react/icons-js/mood-wrrr.js deleted file mode 100644 index 5f5859512..000000000 --- a/icons-react/icons-js/mood-wrrr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodWrrr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodWrrr; \ No newline at end of file diff --git a/icons-react/icons-js/mood-xd.js b/icons-react/icons-js/mood-xd.js deleted file mode 100644 index d8a021a19..000000000 --- a/icons-react/icons-js/mood-xd.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoodXd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoodXd; \ No newline at end of file diff --git a/icons-react/icons-js/moon-2.js b/icons-react/icons-js/moon-2.js deleted file mode 100644 index 1d1c60671..000000000 --- a/icons-react/icons-js/moon-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoon2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoon2; \ No newline at end of file diff --git a/icons-react/icons-js/moon-off.js b/icons-react/icons-js/moon-off.js deleted file mode 100644 index 3d6f08da5..000000000 --- a/icons-react/icons-js/moon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoonOff; \ No newline at end of file diff --git a/icons-react/icons-js/moon-stars.js b/icons-react/icons-js/moon-stars.js deleted file mode 100644 index 96d7a955a..000000000 --- a/icons-react/icons-js/moon-stars.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoonStars({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoonStars; \ No newline at end of file diff --git a/icons-react/icons-js/moon.js b/icons-react/icons-js/moon.js deleted file mode 100644 index ae1209a0a..000000000 --- a/icons-react/icons-js/moon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoon; \ No newline at end of file diff --git a/icons-react/icons-js/moped.js b/icons-react/icons-js/moped.js deleted file mode 100644 index 7c02330fd..000000000 --- a/icons-react/icons-js/moped.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoped({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoped; \ No newline at end of file diff --git a/icons-react/icons-js/motorbike.js b/icons-react/icons-js/motorbike.js deleted file mode 100644 index c8c411263..000000000 --- a/icons-react/icons-js/motorbike.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMotorbike({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMotorbike; \ No newline at end of file diff --git a/icons-react/icons-js/mountain-off.js b/icons-react/icons-js/mountain-off.js deleted file mode 100644 index 8985fce7f..000000000 --- a/icons-react/icons-js/mountain-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMountainOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMountainOff; \ No newline at end of file diff --git a/icons-react/icons-js/mountain.js b/icons-react/icons-js/mountain.js deleted file mode 100644 index 1437bf72f..000000000 --- a/icons-react/icons-js/mountain.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMountain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMountain; \ No newline at end of file diff --git a/icons-react/icons-js/mouse-2.js b/icons-react/icons-js/mouse-2.js deleted file mode 100644 index 99baada2d..000000000 --- a/icons-react/icons-js/mouse-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMouse2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMouse2; \ No newline at end of file diff --git a/icons-react/icons-js/mouse-off.js b/icons-react/icons-js/mouse-off.js deleted file mode 100644 index c2f5d408d..000000000 --- a/icons-react/icons-js/mouse-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMouseOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMouseOff; \ No newline at end of file diff --git a/icons-react/icons-js/mouse.js b/icons-react/icons-js/mouse.js deleted file mode 100644 index d7082f42d..000000000 --- a/icons-react/icons-js/mouse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMouse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMouse; \ No newline at end of file diff --git a/icons-react/icons-js/moustache.js b/icons-react/icons-js/moustache.js deleted file mode 100644 index e52f01bce..000000000 --- a/icons-react/icons-js/moustache.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMoustache({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMoustache; \ No newline at end of file diff --git a/icons-react/icons-js/movie-off.js b/icons-react/icons-js/movie-off.js deleted file mode 100644 index 1e229f3bb..000000000 --- a/icons-react/icons-js/movie-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMovieOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMovieOff; \ No newline at end of file diff --git a/icons-react/icons-js/movie.js b/icons-react/icons-js/movie.js deleted file mode 100644 index ce0e5679d..000000000 --- a/icons-react/icons-js/movie.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMovie({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMovie; \ No newline at end of file diff --git a/icons-react/icons-js/mug-off.js b/icons-react/icons-js/mug-off.js deleted file mode 100644 index 4d4727767..000000000 --- a/icons-react/icons-js/mug-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMugOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMugOff; \ No newline at end of file diff --git a/icons-react/icons-js/mug.js b/icons-react/icons-js/mug.js deleted file mode 100644 index bfa28f343..000000000 --- a/icons-react/icons-js/mug.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMug({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMug; \ No newline at end of file diff --git a/icons-react/icons-js/multiplier-0-5x.js b/icons-react/icons-js/multiplier-0-5x.js deleted file mode 100644 index 987fdac90..000000000 --- a/icons-react/icons-js/multiplier-0-5x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMultiplier05x({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMultiplier05x; \ No newline at end of file diff --git a/icons-react/icons-js/multiplier-1-5x.js b/icons-react/icons-js/multiplier-1-5x.js deleted file mode 100644 index 3a10db76b..000000000 --- a/icons-react/icons-js/multiplier-1-5x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMultiplier15x({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMultiplier15x; \ No newline at end of file diff --git a/icons-react/icons-js/multiplier-1x.js b/icons-react/icons-js/multiplier-1x.js deleted file mode 100644 index ea2b65703..000000000 --- a/icons-react/icons-js/multiplier-1x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMultiplier1x({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMultiplier1x; \ No newline at end of file diff --git a/icons-react/icons-js/multiplier-2x.js b/icons-react/icons-js/multiplier-2x.js deleted file mode 100644 index fef012bc4..000000000 --- a/icons-react/icons-js/multiplier-2x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMultiplier2x({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMultiplier2x; \ No newline at end of file diff --git a/icons-react/icons-js/mushroom-off.js b/icons-react/icons-js/mushroom-off.js deleted file mode 100644 index 6e00f2d65..000000000 --- a/icons-react/icons-js/mushroom-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMushroomOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMushroomOff; \ No newline at end of file diff --git a/icons-react/icons-js/mushroom.js b/icons-react/icons-js/mushroom.js deleted file mode 100644 index ced300ad5..000000000 --- a/icons-react/icons-js/mushroom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMushroom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMushroom; \ No newline at end of file diff --git a/icons-react/icons-js/music-off.js b/icons-react/icons-js/music-off.js deleted file mode 100644 index f7ca67644..000000000 --- a/icons-react/icons-js/music-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMusicOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMusicOff; \ No newline at end of file diff --git a/icons-react/icons-js/music.js b/icons-react/icons-js/music.js deleted file mode 100644 index b3399e62c..000000000 --- a/icons-react/icons-js/music.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconMusic({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconMusic; \ No newline at end of file diff --git a/icons-react/icons-js/navigation-off.js b/icons-react/icons-js/navigation-off.js deleted file mode 100644 index 4694fbe01..000000000 --- a/icons-react/icons-js/navigation-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNavigationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNavigationOff; \ No newline at end of file diff --git a/icons-react/icons-js/navigation.js b/icons-react/icons-js/navigation.js deleted file mode 100644 index 73c11a485..000000000 --- a/icons-react/icons-js/navigation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNavigation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNavigation; \ No newline at end of file diff --git a/icons-react/icons-js/needle-thread.js b/icons-react/icons-js/needle-thread.js deleted file mode 100644 index fdc26d596..000000000 --- a/icons-react/icons-js/needle-thread.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNeedleThread({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNeedleThread; \ No newline at end of file diff --git a/icons-react/icons-js/needle.js b/icons-react/icons-js/needle.js deleted file mode 100644 index e5f208a6e..000000000 --- a/icons-react/icons-js/needle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNeedle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNeedle; \ No newline at end of file diff --git a/icons-react/icons-js/network-off.js b/icons-react/icons-js/network-off.js deleted file mode 100644 index 68e701e9f..000000000 --- a/icons-react/icons-js/network-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNetworkOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNetworkOff; \ No newline at end of file diff --git a/icons-react/icons-js/network.js b/icons-react/icons-js/network.js deleted file mode 100644 index a15e975f3..000000000 --- a/icons-react/icons-js/network.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNetwork({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNetwork; \ No newline at end of file diff --git a/icons-react/icons-js/new-section.js b/icons-react/icons-js/new-section.js deleted file mode 100644 index 6ff98c136..000000000 --- a/icons-react/icons-js/new-section.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNewSection({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNewSection; \ No newline at end of file diff --git a/icons-react/icons-js/news-off.js b/icons-react/icons-js/news-off.js deleted file mode 100644 index 3f4b981c3..000000000 --- a/icons-react/icons-js/news-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNewsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNewsOff; \ No newline at end of file diff --git a/icons-react/icons-js/news.js b/icons-react/icons-js/news.js deleted file mode 100644 index 10b2245af..000000000 --- a/icons-react/icons-js/news.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNews({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNews; \ No newline at end of file diff --git a/icons-react/icons-js/nfc-off.js b/icons-react/icons-js/nfc-off.js deleted file mode 100644 index 18db53b0e..000000000 --- a/icons-react/icons-js/nfc-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNfcOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNfcOff; \ No newline at end of file diff --git a/icons-react/icons-js/nfc.js b/icons-react/icons-js/nfc.js deleted file mode 100644 index 5edb78727..000000000 --- a/icons-react/icons-js/nfc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNfc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNfc; \ No newline at end of file diff --git a/icons-react/icons-js/no-copyright.js b/icons-react/icons-js/no-copyright.js deleted file mode 100644 index 407d3eec1..000000000 --- a/icons-react/icons-js/no-copyright.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNoCopyright({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNoCopyright; \ No newline at end of file diff --git a/icons-react/icons-js/no-creative-commons.js b/icons-react/icons-js/no-creative-commons.js deleted file mode 100644 index 86ac8dcd6..000000000 --- a/icons-react/icons-js/no-creative-commons.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNoCreativeCommons({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNoCreativeCommons; \ No newline at end of file diff --git a/icons-react/icons-js/no-derivatives.js b/icons-react/icons-js/no-derivatives.js deleted file mode 100644 index a5a30af99..000000000 --- a/icons-react/icons-js/no-derivatives.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNoDerivatives({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNoDerivatives; \ No newline at end of file diff --git a/icons-react/icons-js/north-star.js b/icons-react/icons-js/north-star.js deleted file mode 100644 index 6f6c5540b..000000000 --- a/icons-react/icons-js/north-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNorthStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNorthStar; \ No newline at end of file diff --git a/icons-react/icons-js/note-off.js b/icons-react/icons-js/note-off.js deleted file mode 100644 index 734802285..000000000 --- a/icons-react/icons-js/note-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNoteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNoteOff; \ No newline at end of file diff --git a/icons-react/icons-js/note.js b/icons-react/icons-js/note.js deleted file mode 100644 index 5621d654f..000000000 --- a/icons-react/icons-js/note.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNote({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNote; \ No newline at end of file diff --git a/icons-react/icons-js/notebook-off.js b/icons-react/icons-js/notebook-off.js deleted file mode 100644 index 942e681bb..000000000 --- a/icons-react/icons-js/notebook-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotebookOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotebookOff; \ No newline at end of file diff --git a/icons-react/icons-js/notebook.js b/icons-react/icons-js/notebook.js deleted file mode 100644 index c6cac399b..000000000 --- a/icons-react/icons-js/notebook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotebook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotebook; \ No newline at end of file diff --git a/icons-react/icons-js/notes-off.js b/icons-react/icons-js/notes-off.js deleted file mode 100644 index 910e41216..000000000 --- a/icons-react/icons-js/notes-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotesOff; \ No newline at end of file diff --git a/icons-react/icons-js/notes.js b/icons-react/icons-js/notes.js deleted file mode 100644 index 996cdcf9b..000000000 --- a/icons-react/icons-js/notes.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotes({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotes; \ No newline at end of file diff --git a/icons-react/icons-js/notification-off.js b/icons-react/icons-js/notification-off.js deleted file mode 100644 index 8be20d549..000000000 --- a/icons-react/icons-js/notification-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotificationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotificationOff; \ No newline at end of file diff --git a/icons-react/icons-js/notification.js b/icons-react/icons-js/notification.js deleted file mode 100644 index 1b7fd07d7..000000000 --- a/icons-react/icons-js/notification.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNotification({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNotification; \ No newline at end of file diff --git a/icons-react/icons-js/number-0.js b/icons-react/icons-js/number-0.js deleted file mode 100644 index 2c3ba237b..000000000 --- a/icons-react/icons-js/number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/number-1.js b/icons-react/icons-js/number-1.js deleted file mode 100644 index ee24f0cfd..000000000 --- a/icons-react/icons-js/number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/number-2.js b/icons-react/icons-js/number-2.js deleted file mode 100644 index b158c33ef..000000000 --- a/icons-react/icons-js/number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/number-3.js b/icons-react/icons-js/number-3.js deleted file mode 100644 index a4a4ef54f..000000000 --- a/icons-react/icons-js/number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/number-4.js b/icons-react/icons-js/number-4.js deleted file mode 100644 index 1d0d877de..000000000 --- a/icons-react/icons-js/number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/number-5.js b/icons-react/icons-js/number-5.js deleted file mode 100644 index 0f917f7b6..000000000 --- a/icons-react/icons-js/number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/number-6.js b/icons-react/icons-js/number-6.js deleted file mode 100644 index 60c5c6a43..000000000 --- a/icons-react/icons-js/number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/number-7.js b/icons-react/icons-js/number-7.js deleted file mode 100644 index e3511ed9e..000000000 --- a/icons-react/icons-js/number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/number-8.js b/icons-react/icons-js/number-8.js deleted file mode 100644 index 59108224b..000000000 --- a/icons-react/icons-js/number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/number-9.js b/icons-react/icons-js/number-9.js deleted file mode 100644 index e5425e329..000000000 --- a/icons-react/icons-js/number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/number.js b/icons-react/icons-js/number.js deleted file mode 100644 index 54f138081..000000000 --- a/icons-react/icons-js/number.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumber({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumber; \ No newline at end of file diff --git a/icons-react/icons-js/numbers.js b/icons-react/icons-js/numbers.js deleted file mode 100644 index 4aa892daa..000000000 --- a/icons-react/icons-js/numbers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNumbers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNumbers; \ No newline at end of file diff --git a/icons-react/icons-js/nurse.js b/icons-react/icons-js/nurse.js deleted file mode 100644 index 086b7a698..000000000 --- a/icons-react/icons-js/nurse.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconNurse({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconNurse; \ No newline at end of file diff --git a/icons-react/icons-js/octagon-off.js b/icons-react/icons-js/octagon-off.js deleted file mode 100644 index 2dccf4952..000000000 --- a/icons-react/icons-js/octagon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOctagonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOctagonOff; \ No newline at end of file diff --git a/icons-react/icons-js/octagon.js b/icons-react/icons-js/octagon.js deleted file mode 100644 index 6ba5373a6..000000000 --- a/icons-react/icons-js/octagon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOctagon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOctagon; \ No newline at end of file diff --git a/icons-react/icons-js/old.js b/icons-react/icons-js/old.js deleted file mode 100644 index b0291d63e..000000000 --- a/icons-react/icons-js/old.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOld({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOld; \ No newline at end of file diff --git a/icons-react/icons-js/olympics-off.js b/icons-react/icons-js/olympics-off.js deleted file mode 100644 index 9e37a28d5..000000000 --- a/icons-react/icons-js/olympics-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOlympicsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOlympicsOff; \ No newline at end of file diff --git a/icons-react/icons-js/olympics.js b/icons-react/icons-js/olympics.js deleted file mode 100644 index 09fa43b23..000000000 --- a/icons-react/icons-js/olympics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOlympics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOlympics; \ No newline at end of file diff --git a/icons-react/icons-js/om.js b/icons-react/icons-js/om.js deleted file mode 100644 index c23b62e50..000000000 --- a/icons-react/icons-js/om.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOm; \ No newline at end of file diff --git a/icons-react/icons-js/omega.js b/icons-react/icons-js/omega.js deleted file mode 100644 index a22e13388..000000000 --- a/icons-react/icons-js/omega.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOmega({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOmega; \ No newline at end of file diff --git a/icons-react/icons-js/outbound.js b/icons-react/icons-js/outbound.js deleted file mode 100644 index 380ae9ce2..000000000 --- a/icons-react/icons-js/outbound.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOutbound({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOutbound; \ No newline at end of file diff --git a/icons-react/icons-js/outlet.js b/icons-react/icons-js/outlet.js deleted file mode 100644 index 4026cbe03..000000000 --- a/icons-react/icons-js/outlet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOutlet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOutlet; \ No newline at end of file diff --git a/icons-react/icons-js/oval-vertical.js b/icons-react/icons-js/oval-vertical.js deleted file mode 100644 index 907b83a13..000000000 --- a/icons-react/icons-js/oval-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOvalVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOvalVertical; \ No newline at end of file diff --git a/icons-react/icons-js/oval.js b/icons-react/icons-js/oval.js deleted file mode 100644 index 671884a2f..000000000 --- a/icons-react/icons-js/oval.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOval({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOval; \ No newline at end of file diff --git a/icons-react/icons-js/overline.js b/icons-react/icons-js/overline.js deleted file mode 100644 index 664174998..000000000 --- a/icons-react/icons-js/overline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconOverline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconOverline; \ No newline at end of file diff --git a/icons-react/icons-js/package-off.js b/icons-react/icons-js/package-off.js deleted file mode 100644 index a8c8b0d07..000000000 --- a/icons-react/icons-js/package-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPackageOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPackageOff; \ No newline at end of file diff --git a/icons-react/icons-js/package.js b/icons-react/icons-js/package.js deleted file mode 100644 index 4589ba90d..000000000 --- a/icons-react/icons-js/package.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPackage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPackage; \ No newline at end of file diff --git a/icons-react/icons-js/packages.js b/icons-react/icons-js/packages.js deleted file mode 100644 index 6338a98cf..000000000 --- a/icons-react/icons-js/packages.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPackages({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPackages; \ No newline at end of file diff --git a/icons-react/icons-js/packge-export.js b/icons-react/icons-js/packge-export.js deleted file mode 100644 index 4978acaf1..000000000 --- a/icons-react/icons-js/packge-export.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPackgeExport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPackgeExport; \ No newline at end of file diff --git a/icons-react/icons-js/packge-import.js b/icons-react/icons-js/packge-import.js deleted file mode 100644 index 7a509e634..000000000 --- a/icons-react/icons-js/packge-import.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPackgeImport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPackgeImport; \ No newline at end of file diff --git a/icons-react/icons-js/pacman.js b/icons-react/icons-js/pacman.js deleted file mode 100644 index e1055210c..000000000 --- a/icons-react/icons-js/pacman.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPacman({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPacman; \ No newline at end of file diff --git a/icons-react/icons-js/page-break.js b/icons-react/icons-js/page-break.js deleted file mode 100644 index 8c3433277..000000000 --- a/icons-react/icons-js/page-break.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPageBreak({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPageBreak; \ No newline at end of file diff --git a/icons-react/icons-js/paint-off.js b/icons-react/icons-js/paint-off.js deleted file mode 100644 index 6ce7000cb..000000000 --- a/icons-react/icons-js/paint-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaintOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaintOff; \ No newline at end of file diff --git a/icons-react/icons-js/paint.js b/icons-react/icons-js/paint.js deleted file mode 100644 index 6378acc16..000000000 --- a/icons-react/icons-js/paint.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaint; \ No newline at end of file diff --git a/icons-react/icons-js/palette-off.js b/icons-react/icons-js/palette-off.js deleted file mode 100644 index 231923f41..000000000 --- a/icons-react/icons-js/palette-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaletteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaletteOff; \ No newline at end of file diff --git a/icons-react/icons-js/palette.js b/icons-react/icons-js/palette.js deleted file mode 100644 index 73ff4944e..000000000 --- a/icons-react/icons-js/palette.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPalette({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPalette; \ No newline at end of file diff --git a/icons-react/icons-js/panorama-horizontal-off.js b/icons-react/icons-js/panorama-horizontal-off.js deleted file mode 100644 index f3ad7616e..000000000 --- a/icons-react/icons-js/panorama-horizontal-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPanoramaHorizontalOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPanoramaHorizontalOff; \ No newline at end of file diff --git a/icons-react/icons-js/panorama-horizontal.js b/icons-react/icons-js/panorama-horizontal.js deleted file mode 100644 index 5fddc2495..000000000 --- a/icons-react/icons-js/panorama-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPanoramaHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPanoramaHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/panorama-vertical-off.js b/icons-react/icons-js/panorama-vertical-off.js deleted file mode 100644 index be3eb21f2..000000000 --- a/icons-react/icons-js/panorama-vertical-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPanoramaVerticalOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPanoramaVerticalOff; \ No newline at end of file diff --git a/icons-react/icons-js/panorama-vertical.js b/icons-react/icons-js/panorama-vertical.js deleted file mode 100644 index 7975f1169..000000000 --- a/icons-react/icons-js/panorama-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPanoramaVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPanoramaVertical; \ No newline at end of file diff --git a/icons-react/icons-js/paper-bag-off.js b/icons-react/icons-js/paper-bag-off.js deleted file mode 100644 index 8ba1bfc10..000000000 --- a/icons-react/icons-js/paper-bag-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaperBagOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaperBagOff; \ No newline at end of file diff --git a/icons-react/icons-js/paper-bag.js b/icons-react/icons-js/paper-bag.js deleted file mode 100644 index ea4d3d8fb..000000000 --- a/icons-react/icons-js/paper-bag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaperBag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaperBag; \ No newline at end of file diff --git a/icons-react/icons-js/paperclip.js b/icons-react/icons-js/paperclip.js deleted file mode 100644 index 0d7650cec..000000000 --- a/icons-react/icons-js/paperclip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaperclip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaperclip; \ No newline at end of file diff --git a/icons-react/icons-js/parachute-off.js b/icons-react/icons-js/parachute-off.js deleted file mode 100644 index b828b7cf1..000000000 --- a/icons-react/icons-js/parachute-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParachuteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParachuteOff; \ No newline at end of file diff --git a/icons-react/icons-js/parachute.js b/icons-react/icons-js/parachute.js deleted file mode 100644 index eb7e1a106..000000000 --- a/icons-react/icons-js/parachute.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParachute({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParachute; \ No newline at end of file diff --git a/icons-react/icons-js/parentheses-off.js b/icons-react/icons-js/parentheses-off.js deleted file mode 100644 index 756483eb7..000000000 --- a/icons-react/icons-js/parentheses-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParenthesesOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParenthesesOff; \ No newline at end of file diff --git a/icons-react/icons-js/parentheses.js b/icons-react/icons-js/parentheses.js deleted file mode 100644 index 58e665113..000000000 --- a/icons-react/icons-js/parentheses.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParentheses({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParentheses; \ No newline at end of file diff --git a/icons-react/icons-js/parking-off.js b/icons-react/icons-js/parking-off.js deleted file mode 100644 index e8e5f916d..000000000 --- a/icons-react/icons-js/parking-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParkingOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParkingOff; \ No newline at end of file diff --git a/icons-react/icons-js/parking.js b/icons-react/icons-js/parking.js deleted file mode 100644 index 3778a21aa..000000000 --- a/icons-react/icons-js/parking.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconParking({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconParking; \ No newline at end of file diff --git a/icons-react/icons-js/password.js b/icons-react/icons-js/password.js deleted file mode 100644 index 1366cfea4..000000000 --- a/icons-react/icons-js/password.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPassword({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPassword; \ No newline at end of file diff --git a/icons-react/icons-js/pause.js b/icons-react/icons-js/pause.js deleted file mode 100644 index abe992097..000000000 --- a/icons-react/icons-js/pause.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconPause = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconPause; \ No newline at end of file diff --git a/icons-react/icons-js/paw-off.js b/icons-react/icons-js/paw-off.js deleted file mode 100644 index 6d261796a..000000000 --- a/icons-react/icons-js/paw-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPawOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPawOff; \ No newline at end of file diff --git a/icons-react/icons-js/paw.js b/icons-react/icons-js/paw.js deleted file mode 100644 index 16d08ae4c..000000000 --- a/icons-react/icons-js/paw.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPaw({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPaw; \ No newline at end of file diff --git a/icons-react/icons-js/peace.js b/icons-react/icons-js/peace.js deleted file mode 100644 index 89bbadc6c..000000000 --- a/icons-react/icons-js/peace.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPeace({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPeace; \ No newline at end of file diff --git a/icons-react/icons-js/pencil-minus.js b/icons-react/icons-js/pencil-minus.js deleted file mode 100644 index 57a387612..000000000 --- a/icons-react/icons-js/pencil-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPencilMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPencilMinus; \ No newline at end of file diff --git a/icons-react/icons-js/pencil-off.js b/icons-react/icons-js/pencil-off.js deleted file mode 100644 index 772237299..000000000 --- a/icons-react/icons-js/pencil-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPencilOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPencilOff; \ No newline at end of file diff --git a/icons-react/icons-js/pencil-plus.js b/icons-react/icons-js/pencil-plus.js deleted file mode 100644 index 4ff6710c7..000000000 --- a/icons-react/icons-js/pencil-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPencilPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPencilPlus; \ No newline at end of file diff --git a/icons-react/icons-js/pencil.js b/icons-react/icons-js/pencil.js deleted file mode 100644 index adbc795d9..000000000 --- a/icons-react/icons-js/pencil.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPencil({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPencil; \ No newline at end of file diff --git a/icons-react/icons-js/pennant-2.js b/icons-react/icons-js/pennant-2.js deleted file mode 100644 index 686cc6347..000000000 --- a/icons-react/icons-js/pennant-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPennant2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPennant2; \ No newline at end of file diff --git a/icons-react/icons-js/pennant-off.js b/icons-react/icons-js/pennant-off.js deleted file mode 100644 index 9b01893b3..000000000 --- a/icons-react/icons-js/pennant-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPennantOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPennantOff; \ No newline at end of file diff --git a/icons-react/icons-js/pennant.js b/icons-react/icons-js/pennant.js deleted file mode 100644 index d8e4f6897..000000000 --- a/icons-react/icons-js/pennant.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPennant({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPennant; \ No newline at end of file diff --git a/icons-react/icons-js/pentagon-off.js b/icons-react/icons-js/pentagon-off.js deleted file mode 100644 index c3e184dba..000000000 --- a/icons-react/icons-js/pentagon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPentagonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPentagonOff; \ No newline at end of file diff --git a/icons-react/icons-js/pentagon.js b/icons-react/icons-js/pentagon.js deleted file mode 100644 index 56f516108..000000000 --- a/icons-react/icons-js/pentagon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPentagon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPentagon; \ No newline at end of file diff --git a/icons-react/icons-js/pentagram.js b/icons-react/icons-js/pentagram.js deleted file mode 100644 index a3b458aa7..000000000 --- a/icons-react/icons-js/pentagram.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPentagram({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPentagram; \ No newline at end of file diff --git a/icons-react/icons-js/pepper-off.js b/icons-react/icons-js/pepper-off.js deleted file mode 100644 index 6d2b17d62..000000000 --- a/icons-react/icons-js/pepper-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPepperOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPepperOff; \ No newline at end of file diff --git a/icons-react/icons-js/pepper.js b/icons-react/icons-js/pepper.js deleted file mode 100644 index cec9af09a..000000000 --- a/icons-react/icons-js/pepper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPepper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPepper; \ No newline at end of file diff --git a/icons-react/icons-js/percentage.js b/icons-react/icons-js/percentage.js deleted file mode 100644 index a24e64ff8..000000000 --- a/icons-react/icons-js/percentage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPercentage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPercentage; \ No newline at end of file diff --git a/icons-react/icons-js/perfume.js b/icons-react/icons-js/perfume.js deleted file mode 100644 index 41081fcc6..000000000 --- a/icons-react/icons-js/perfume.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPerfume({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPerfume; \ No newline at end of file diff --git a/icons-react/icons-js/perspective-off.js b/icons-react/icons-js/perspective-off.js deleted file mode 100644 index 56bd65a65..000000000 --- a/icons-react/icons-js/perspective-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPerspectiveOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPerspectiveOff; \ No newline at end of file diff --git a/icons-react/icons-js/perspective.js b/icons-react/icons-js/perspective.js deleted file mode 100644 index 228c01023..000000000 --- a/icons-react/icons-js/perspective.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPerspective({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPerspective; \ No newline at end of file diff --git a/icons-react/icons-js/phone-call.js b/icons-react/icons-js/phone-call.js deleted file mode 100644 index afbe2d955..000000000 --- a/icons-react/icons-js/phone-call.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneCall({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneCall; \ No newline at end of file diff --git a/icons-react/icons-js/phone-calling.js b/icons-react/icons-js/phone-calling.js deleted file mode 100644 index ea84bbd28..000000000 --- a/icons-react/icons-js/phone-calling.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneCalling({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneCalling; \ No newline at end of file diff --git a/icons-react/icons-js/phone-check.js b/icons-react/icons-js/phone-check.js deleted file mode 100644 index 686b5d5cd..000000000 --- a/icons-react/icons-js/phone-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneCheck; \ No newline at end of file diff --git a/icons-react/icons-js/phone-incoming.js b/icons-react/icons-js/phone-incoming.js deleted file mode 100644 index 08f2e1698..000000000 --- a/icons-react/icons-js/phone-incoming.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneIncoming({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneIncoming; \ No newline at end of file diff --git a/icons-react/icons-js/phone-off.js b/icons-react/icons-js/phone-off.js deleted file mode 100644 index 0cd73e629..000000000 --- a/icons-react/icons-js/phone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneOff; \ No newline at end of file diff --git a/icons-react/icons-js/phone-outgoing.js b/icons-react/icons-js/phone-outgoing.js deleted file mode 100644 index c078fb207..000000000 --- a/icons-react/icons-js/phone-outgoing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneOutgoing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneOutgoing; \ No newline at end of file diff --git a/icons-react/icons-js/phone-pause.js b/icons-react/icons-js/phone-pause.js deleted file mode 100644 index afe61f867..000000000 --- a/icons-react/icons-js/phone-pause.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhonePause({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhonePause; \ No newline at end of file diff --git a/icons-react/icons-js/phone-plus.js b/icons-react/icons-js/phone-plus.js deleted file mode 100644 index f93e1b5b3..000000000 --- a/icons-react/icons-js/phone-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhonePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhonePlus; \ No newline at end of file diff --git a/icons-react/icons-js/phone-x.js b/icons-react/icons-js/phone-x.js deleted file mode 100644 index d3aec5966..000000000 --- a/icons-react/icons-js/phone-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoneX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoneX; \ No newline at end of file diff --git a/icons-react/icons-js/phone.js b/icons-react/icons-js/phone.js deleted file mode 100644 index 53a7695ef..000000000 --- a/icons-react/icons-js/phone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhone; \ No newline at end of file diff --git a/icons-react/icons-js/photo-cancel.js b/icons-react/icons-js/photo-cancel.js deleted file mode 100644 index 79f9c7518..000000000 --- a/icons-react/icons-js/photo-cancel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoCancel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoCancel; \ No newline at end of file diff --git a/icons-react/icons-js/photo-check.js b/icons-react/icons-js/photo-check.js deleted file mode 100644 index 3d1ec7ef7..000000000 --- a/icons-react/icons-js/photo-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoCheck; \ No newline at end of file diff --git a/icons-react/icons-js/photo-down.js b/icons-react/icons-js/photo-down.js deleted file mode 100644 index efda6e944..000000000 --- a/icons-react/icons-js/photo-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoDown; \ No newline at end of file diff --git a/icons-react/icons-js/photo-edit.js b/icons-react/icons-js/photo-edit.js deleted file mode 100644 index 322a96512..000000000 --- a/icons-react/icons-js/photo-edit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoEdit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoEdit; \ No newline at end of file diff --git a/icons-react/icons-js/photo-heart.js b/icons-react/icons-js/photo-heart.js deleted file mode 100644 index 5ad9f62ca..000000000 --- a/icons-react/icons-js/photo-heart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoHeart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoHeart; \ No newline at end of file diff --git a/icons-react/icons-js/photo-minus.js b/icons-react/icons-js/photo-minus.js deleted file mode 100644 index afcb41379..000000000 --- a/icons-react/icons-js/photo-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoMinus; \ No newline at end of file diff --git a/icons-react/icons-js/photo-off.js b/icons-react/icons-js/photo-off.js deleted file mode 100644 index 2b22c8d1c..000000000 --- a/icons-react/icons-js/photo-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoOff; \ No newline at end of file diff --git a/icons-react/icons-js/photo-plus.js b/icons-react/icons-js/photo-plus.js deleted file mode 100644 index fa221e77f..000000000 --- a/icons-react/icons-js/photo-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoPlus; \ No newline at end of file diff --git a/icons-react/icons-js/photo-search.js b/icons-react/icons-js/photo-search.js deleted file mode 100644 index 5af20c0e5..000000000 --- a/icons-react/icons-js/photo-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoSearch; \ No newline at end of file diff --git a/icons-react/icons-js/photo-shield.js b/icons-react/icons-js/photo-shield.js deleted file mode 100644 index 4ab9f0bca..000000000 --- a/icons-react/icons-js/photo-shield.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoShield({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoShield; \ No newline at end of file diff --git a/icons-react/icons-js/photo-star.js b/icons-react/icons-js/photo-star.js deleted file mode 100644 index 72a9d24a4..000000000 --- a/icons-react/icons-js/photo-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoStar; \ No newline at end of file diff --git a/icons-react/icons-js/photo-up.js b/icons-react/icons-js/photo-up.js deleted file mode 100644 index 7ffe023cd..000000000 --- a/icons-react/icons-js/photo-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoUp; \ No newline at end of file diff --git a/icons-react/icons-js/photo-x.js b/icons-react/icons-js/photo-x.js deleted file mode 100644 index cec4ab72d..000000000 --- a/icons-react/icons-js/photo-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhotoX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhotoX; \ No newline at end of file diff --git a/icons-react/icons-js/photo.js b/icons-react/icons-js/photo.js deleted file mode 100644 index dc28250cc..000000000 --- a/icons-react/icons-js/photo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhoto({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhoto; \ No newline at end of file diff --git a/icons-react/icons-js/physotherapist.js b/icons-react/icons-js/physotherapist.js deleted file mode 100644 index 25df02a94..000000000 --- a/icons-react/icons-js/physotherapist.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPhysotherapist({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPhysotherapist; \ No newline at end of file diff --git a/icons-react/icons-js/picture-in-picture-off.js b/icons-react/icons-js/picture-in-picture-off.js deleted file mode 100644 index 0ace85858..000000000 --- a/icons-react/icons-js/picture-in-picture-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPictureInPictureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPictureInPictureOff; \ No newline at end of file diff --git a/icons-react/icons-js/picture-in-picture-on.js b/icons-react/icons-js/picture-in-picture-on.js deleted file mode 100644 index b2d35fb39..000000000 --- a/icons-react/icons-js/picture-in-picture-on.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPictureInPictureOn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPictureInPictureOn; \ No newline at end of file diff --git a/icons-react/icons-js/picture-in-picture-top.js b/icons-react/icons-js/picture-in-picture-top.js deleted file mode 100644 index 61c6fc3ce..000000000 --- a/icons-react/icons-js/picture-in-picture-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPictureInPictureTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPictureInPictureTop; \ No newline at end of file diff --git a/icons-react/icons-js/picture-in-picture.js b/icons-react/icons-js/picture-in-picture.js deleted file mode 100644 index 31c7beed8..000000000 --- a/icons-react/icons-js/picture-in-picture.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPictureInPicture({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPictureInPicture; \ No newline at end of file diff --git a/icons-react/icons-js/pig-money.js b/icons-react/icons-js/pig-money.js deleted file mode 100644 index fd304a5af..000000000 --- a/icons-react/icons-js/pig-money.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPigMoney({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPigMoney; \ No newline at end of file diff --git a/icons-react/icons-js/pig-off.js b/icons-react/icons-js/pig-off.js deleted file mode 100644 index 9a246641b..000000000 --- a/icons-react/icons-js/pig-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPigOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPigOff; \ No newline at end of file diff --git a/icons-react/icons-js/pig.js b/icons-react/icons-js/pig.js deleted file mode 100644 index 564ad5196..000000000 --- a/icons-react/icons-js/pig.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPig({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPig; \ No newline at end of file diff --git a/icons-react/icons-js/pilcrow.js b/icons-react/icons-js/pilcrow.js deleted file mode 100644 index 624c1ffa7..000000000 --- a/icons-react/icons-js/pilcrow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPilcrow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPilcrow; \ No newline at end of file diff --git a/icons-react/icons-js/pill-off.js b/icons-react/icons-js/pill-off.js deleted file mode 100644 index f0b585189..000000000 --- a/icons-react/icons-js/pill-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPillOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPillOff; \ No newline at end of file diff --git a/icons-react/icons-js/pill.js b/icons-react/icons-js/pill.js deleted file mode 100644 index f9aaab6e6..000000000 --- a/icons-react/icons-js/pill.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPill({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPill; \ No newline at end of file diff --git a/icons-react/icons-js/pills.js b/icons-react/icons-js/pills.js deleted file mode 100644 index 54438b7f1..000000000 --- a/icons-react/icons-js/pills.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPills({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPills; \ No newline at end of file diff --git a/icons-react/icons-js/pin.js b/icons-react/icons-js/pin.js deleted file mode 100644 index 730852885..000000000 --- a/icons-react/icons-js/pin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPin; \ No newline at end of file diff --git a/icons-react/icons-js/ping-pong.js b/icons-react/icons-js/ping-pong.js deleted file mode 100644 index 38381def2..000000000 --- a/icons-react/icons-js/ping-pong.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPingPong({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPingPong; \ No newline at end of file diff --git a/icons-react/icons-js/pinned-off.js b/icons-react/icons-js/pinned-off.js deleted file mode 100644 index 214a8a985..000000000 --- a/icons-react/icons-js/pinned-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPinnedOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPinnedOff; \ No newline at end of file diff --git a/icons-react/icons-js/pinned.js b/icons-react/icons-js/pinned.js deleted file mode 100644 index bc36173ee..000000000 --- a/icons-react/icons-js/pinned.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPinned({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPinned; \ No newline at end of file diff --git a/icons-react/icons-js/pizza-off.js b/icons-react/icons-js/pizza-off.js deleted file mode 100644 index ed0ecaec3..000000000 --- a/icons-react/icons-js/pizza-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPizzaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPizzaOff; \ No newline at end of file diff --git a/icons-react/icons-js/pizza.js b/icons-react/icons-js/pizza.js deleted file mode 100644 index edef86bc2..000000000 --- a/icons-react/icons-js/pizza.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPizza({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPizza; \ No newline at end of file diff --git a/icons-react/icons-js/placeholder.js b/icons-react/icons-js/placeholder.js deleted file mode 100644 index 5bf87552d..000000000 --- a/icons-react/icons-js/placeholder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaceholder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaceholder; \ No newline at end of file diff --git a/icons-react/icons-js/plane-arrival.js b/icons-react/icons-js/plane-arrival.js deleted file mode 100644 index daf75ce8b..000000000 --- a/icons-react/icons-js/plane-arrival.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaneArrival({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaneArrival; \ No newline at end of file diff --git a/icons-react/icons-js/plane-departure.js b/icons-react/icons-js/plane-departure.js deleted file mode 100644 index ea5a7c0d5..000000000 --- a/icons-react/icons-js/plane-departure.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaneDeparture({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaneDeparture; \ No newline at end of file diff --git a/icons-react/icons-js/plane-inflight.js b/icons-react/icons-js/plane-inflight.js deleted file mode 100644 index 3581af86d..000000000 --- a/icons-react/icons-js/plane-inflight.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaneInflight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaneInflight; \ No newline at end of file diff --git a/icons-react/icons-js/plane-off.js b/icons-react/icons-js/plane-off.js deleted file mode 100644 index 7a53e03ad..000000000 --- a/icons-react/icons-js/plane-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaneOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaneOff; \ No newline at end of file diff --git a/icons-react/icons-js/plane-tilt.js b/icons-react/icons-js/plane-tilt.js deleted file mode 100644 index be341a4bd..000000000 --- a/icons-react/icons-js/plane-tilt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaneTilt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaneTilt; \ No newline at end of file diff --git a/icons-react/icons-js/plane.js b/icons-react/icons-js/plane.js deleted file mode 100644 index 5372a66c9..000000000 --- a/icons-react/icons-js/plane.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlane({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlane; \ No newline at end of file diff --git a/icons-react/icons-js/planet-off.js b/icons-react/icons-js/planet-off.js deleted file mode 100644 index cf12c1be1..000000000 --- a/icons-react/icons-js/planet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlanetOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlanetOff; \ No newline at end of file diff --git a/icons-react/icons-js/planet.js b/icons-react/icons-js/planet.js deleted file mode 100644 index 2a70a545d..000000000 --- a/icons-react/icons-js/planet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlanet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlanet; \ No newline at end of file diff --git a/icons-react/icons-js/plant-2-off.js b/icons-react/icons-js/plant-2-off.js deleted file mode 100644 index 6aba989e9..000000000 --- a/icons-react/icons-js/plant-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlant2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlant2Off; \ No newline at end of file diff --git a/icons-react/icons-js/plant-2.js b/icons-react/icons-js/plant-2.js deleted file mode 100644 index 2c7282bbe..000000000 --- a/icons-react/icons-js/plant-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlant2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlant2; \ No newline at end of file diff --git a/icons-react/icons-js/plant-off.js b/icons-react/icons-js/plant-off.js deleted file mode 100644 index a84f7f703..000000000 --- a/icons-react/icons-js/plant-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlantOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlantOff; \ No newline at end of file diff --git a/icons-react/icons-js/plant.js b/icons-react/icons-js/plant.js deleted file mode 100644 index d41d246d6..000000000 --- a/icons-react/icons-js/plant.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlant({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlant; \ No newline at end of file diff --git a/icons-react/icons-js/play-card-off.js b/icons-react/icons-js/play-card-off.js deleted file mode 100644 index 30a9b4a9b..000000000 --- a/icons-react/icons-js/play-card-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayCardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayCardOff; \ No newline at end of file diff --git a/icons-react/icons-js/play-card.js b/icons-react/icons-js/play-card.js deleted file mode 100644 index 108ae9284..000000000 --- a/icons-react/icons-js/play-card.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayCard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayCard; \ No newline at end of file diff --git a/icons-react/icons-js/play.js b/icons-react/icons-js/play.js deleted file mode 100644 index 579e5c0b3..000000000 --- a/icons-react/icons-js/play.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconPlay = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconPlay; \ No newline at end of file diff --git a/icons-react/icons-js/player-eject.js b/icons-react/icons-js/player-eject.js deleted file mode 100644 index 2b9e78b2f..000000000 --- a/icons-react/icons-js/player-eject.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerEject({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerEject; \ No newline at end of file diff --git a/icons-react/icons-js/player-pause.js b/icons-react/icons-js/player-pause.js deleted file mode 100644 index faf0b3e57..000000000 --- a/icons-react/icons-js/player-pause.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerPause({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerPause; \ No newline at end of file diff --git a/icons-react/icons-js/player-play.js b/icons-react/icons-js/player-play.js deleted file mode 100644 index dfe101fb6..000000000 --- a/icons-react/icons-js/player-play.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerPlay({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerPlay; \ No newline at end of file diff --git a/icons-react/icons-js/player-record.js b/icons-react/icons-js/player-record.js deleted file mode 100644 index 3b7afc14e..000000000 --- a/icons-react/icons-js/player-record.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerRecord({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerRecord; \ No newline at end of file diff --git a/icons-react/icons-js/player-skip-back.js b/icons-react/icons-js/player-skip-back.js deleted file mode 100644 index 179d74416..000000000 --- a/icons-react/icons-js/player-skip-back.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerSkipBack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerSkipBack; \ No newline at end of file diff --git a/icons-react/icons-js/player-skip-forward.js b/icons-react/icons-js/player-skip-forward.js deleted file mode 100644 index dc23abda7..000000000 --- a/icons-react/icons-js/player-skip-forward.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerSkipForward({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerSkipForward; \ No newline at end of file diff --git a/icons-react/icons-js/player-stop.js b/icons-react/icons-js/player-stop.js deleted file mode 100644 index ec83e29fd..000000000 --- a/icons-react/icons-js/player-stop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerStop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerStop; \ No newline at end of file diff --git a/icons-react/icons-js/player-track-next.js b/icons-react/icons-js/player-track-next.js deleted file mode 100644 index 19f40c7ec..000000000 --- a/icons-react/icons-js/player-track-next.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerTrackNext({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerTrackNext; \ No newline at end of file diff --git a/icons-react/icons-js/player-track-prev.js b/icons-react/icons-js/player-track-prev.js deleted file mode 100644 index 3085bf1e6..000000000 --- a/icons-react/icons-js/player-track-prev.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlayerTrackPrev({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlayerTrackPrev; \ No newline at end of file diff --git a/icons-react/icons-js/playlist-add.js b/icons-react/icons-js/playlist-add.js deleted file mode 100644 index c7a95ddc7..000000000 --- a/icons-react/icons-js/playlist-add.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaylistAdd({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaylistAdd; \ No newline at end of file diff --git a/icons-react/icons-js/playlist-off.js b/icons-react/icons-js/playlist-off.js deleted file mode 100644 index bce3685e5..000000000 --- a/icons-react/icons-js/playlist-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaylistOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaylistOff; \ No newline at end of file diff --git a/icons-react/icons-js/playlist-x.js b/icons-react/icons-js/playlist-x.js deleted file mode 100644 index 2f20ef9fd..000000000 --- a/icons-react/icons-js/playlist-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaylistX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaylistX; \ No newline at end of file diff --git a/icons-react/icons-js/playlist.js b/icons-react/icons-js/playlist.js deleted file mode 100644 index 808eb36a4..000000000 --- a/icons-react/icons-js/playlist.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaylist({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaylist; \ No newline at end of file diff --git a/icons-react/icons-js/playstation-circle.js b/icons-react/icons-js/playstation-circle.js deleted file mode 100644 index a09a1f9f6..000000000 --- a/icons-react/icons-js/playstation-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaystationCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaystationCircle; \ No newline at end of file diff --git a/icons-react/icons-js/playstation-square.js b/icons-react/icons-js/playstation-square.js deleted file mode 100644 index 068117bac..000000000 --- a/icons-react/icons-js/playstation-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaystationSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaystationSquare; \ No newline at end of file diff --git a/icons-react/icons-js/playstation-triangle.js b/icons-react/icons-js/playstation-triangle.js deleted file mode 100644 index 0b9413b37..000000000 --- a/icons-react/icons-js/playstation-triangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaystationTriangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaystationTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/playstation-x.js b/icons-react/icons-js/playstation-x.js deleted file mode 100644 index 75fb77c75..000000000 --- a/icons-react/icons-js/playstation-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlaystationX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlaystationX; \ No newline at end of file diff --git a/icons-react/icons-js/plug-connected-x.js b/icons-react/icons-js/plug-connected-x.js deleted file mode 100644 index c98441556..000000000 --- a/icons-react/icons-js/plug-connected-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlugConnectedX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlugConnectedX; \ No newline at end of file diff --git a/icons-react/icons-js/plug-connected.js b/icons-react/icons-js/plug-connected.js deleted file mode 100644 index 2515fe3b4..000000000 --- a/icons-react/icons-js/plug-connected.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlugConnected({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlugConnected; \ No newline at end of file diff --git a/icons-react/icons-js/plug-off.js b/icons-react/icons-js/plug-off.js deleted file mode 100644 index cc4c7bb28..000000000 --- a/icons-react/icons-js/plug-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlugOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlugOff; \ No newline at end of file diff --git a/icons-react/icons-js/plug-x.js b/icons-react/icons-js/plug-x.js deleted file mode 100644 index e49d2352d..000000000 --- a/icons-react/icons-js/plug-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlugX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlugX; \ No newline at end of file diff --git a/icons-react/icons-js/plug.js b/icons-react/icons-js/plug.js deleted file mode 100644 index d0b8913d3..000000000 --- a/icons-react/icons-js/plug.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlug({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlug; \ No newline at end of file diff --git a/icons-react/icons-js/plus.js b/icons-react/icons-js/plus.js deleted file mode 100644 index 54d5de3fb..000000000 --- a/icons-react/icons-js/plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPlus; \ No newline at end of file diff --git a/icons-react/icons-js/png.js b/icons-react/icons-js/png.js deleted file mode 100644 index 5a709a56e..000000000 --- a/icons-react/icons-js/png.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPng({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPng; \ No newline at end of file diff --git a/icons-react/icons-js/podium-off.js b/icons-react/icons-js/podium-off.js deleted file mode 100644 index 596579ed9..000000000 --- a/icons-react/icons-js/podium-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPodiumOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPodiumOff; \ No newline at end of file diff --git a/icons-react/icons-js/podium.js b/icons-react/icons-js/podium.js deleted file mode 100644 index 08f8a969e..000000000 --- a/icons-react/icons-js/podium.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPodium({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPodium; \ No newline at end of file diff --git a/icons-react/icons-js/point-off.js b/icons-react/icons-js/point-off.js deleted file mode 100644 index 58d8efff5..000000000 --- a/icons-react/icons-js/point-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPointOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPointOff; \ No newline at end of file diff --git a/icons-react/icons-js/point.js b/icons-react/icons-js/point.js deleted file mode 100644 index b08432e2e..000000000 --- a/icons-react/icons-js/point.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPoint({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPoint; \ No newline at end of file diff --git a/icons-react/icons-js/pointer.js b/icons-react/icons-js/pointer.js deleted file mode 100644 index 8a42adcb0..000000000 --- a/icons-react/icons-js/pointer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPointer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPointer; \ No newline at end of file diff --git a/icons-react/icons-js/pokeball-off.js b/icons-react/icons-js/pokeball-off.js deleted file mode 100644 index 50cef3e3f..000000000 --- a/icons-react/icons-js/pokeball-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPokeballOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPokeballOff; \ No newline at end of file diff --git a/icons-react/icons-js/pokeball.js b/icons-react/icons-js/pokeball.js deleted file mode 100644 index f150937d0..000000000 --- a/icons-react/icons-js/pokeball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPokeball({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPokeball; \ No newline at end of file diff --git a/icons-react/icons-js/poker-chip.js b/icons-react/icons-js/poker-chip.js deleted file mode 100644 index 8ddfe1556..000000000 --- a/icons-react/icons-js/poker-chip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPokerChip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPokerChip; \ No newline at end of file diff --git a/icons-react/icons-js/polaroid.js b/icons-react/icons-js/polaroid.js deleted file mode 100644 index 759b3e3c5..000000000 --- a/icons-react/icons-js/polaroid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPolaroid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPolaroid; \ No newline at end of file diff --git a/icons-react/icons-js/polygon-off.js b/icons-react/icons-js/polygon-off.js deleted file mode 100644 index 0bd47fb9e..000000000 --- a/icons-react/icons-js/polygon-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPolygonOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPolygonOff; \ No newline at end of file diff --git a/icons-react/icons-js/polygon.js b/icons-react/icons-js/polygon.js deleted file mode 100644 index 8d8c12368..000000000 --- a/icons-react/icons-js/polygon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPolygon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPolygon; \ No newline at end of file diff --git a/icons-react/icons-js/poo.js b/icons-react/icons-js/poo.js deleted file mode 100644 index 5b225856b..000000000 --- a/icons-react/icons-js/poo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPoo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPoo; \ No newline at end of file diff --git a/icons-react/icons-js/pool-off.js b/icons-react/icons-js/pool-off.js deleted file mode 100644 index 356ffa415..000000000 --- a/icons-react/icons-js/pool-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPoolOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPoolOff; \ No newline at end of file diff --git a/icons-react/icons-js/pool.js b/icons-react/icons-js/pool.js deleted file mode 100644 index 10053b206..000000000 --- a/icons-react/icons-js/pool.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPool({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPool; \ No newline at end of file diff --git a/icons-react/icons-js/power.js b/icons-react/icons-js/power.js deleted file mode 100644 index 24cb3165b..000000000 --- a/icons-react/icons-js/power.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPower; \ No newline at end of file diff --git a/icons-react/icons-js/pray.js b/icons-react/icons-js/pray.js deleted file mode 100644 index afac94597..000000000 --- a/icons-react/icons-js/pray.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPray({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPray; \ No newline at end of file diff --git a/icons-react/icons-js/premium-rights.js b/icons-react/icons-js/premium-rights.js deleted file mode 100644 index ca5067942..000000000 --- a/icons-react/icons-js/premium-rights.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPremiumRights({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPremiumRights; \ No newline at end of file diff --git a/icons-react/icons-js/prescription.js b/icons-react/icons-js/prescription.js deleted file mode 100644 index 9748fd131..000000000 --- a/icons-react/icons-js/prescription.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPrescription({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPrescription; \ No newline at end of file diff --git a/icons-react/icons-js/presentation-analytics.js b/icons-react/icons-js/presentation-analytics.js deleted file mode 100644 index bed5549f0..000000000 --- a/icons-react/icons-js/presentation-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPresentationAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPresentationAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/presentation-off.js b/icons-react/icons-js/presentation-off.js deleted file mode 100644 index 4af809fab..000000000 --- a/icons-react/icons-js/presentation-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPresentationOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPresentationOff; \ No newline at end of file diff --git a/icons-react/icons-js/presentation.js b/icons-react/icons-js/presentation.js deleted file mode 100644 index d82cbfa77..000000000 --- a/icons-react/icons-js/presentation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPresentation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPresentation; \ No newline at end of file diff --git a/icons-react/icons-js/printer-off.js b/icons-react/icons-js/printer-off.js deleted file mode 100644 index 3949f69f4..000000000 --- a/icons-react/icons-js/printer-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPrinterOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPrinterOff; \ No newline at end of file diff --git a/icons-react/icons-js/printer.js b/icons-react/icons-js/printer.js deleted file mode 100644 index a1e9c911d..000000000 --- a/icons-react/icons-js/printer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPrinter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPrinter; \ No newline at end of file diff --git a/icons-react/icons-js/prison.js b/icons-react/icons-js/prison.js deleted file mode 100644 index b747b45d9..000000000 --- a/icons-react/icons-js/prison.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPrison({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPrison; \ No newline at end of file diff --git a/icons-react/icons-js/prompt.js b/icons-react/icons-js/prompt.js deleted file mode 100644 index 213e7ca59..000000000 --- a/icons-react/icons-js/prompt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPrompt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPrompt; \ No newline at end of file diff --git a/icons-react/icons-js/propeller-off.js b/icons-react/icons-js/propeller-off.js deleted file mode 100644 index 6cea19244..000000000 --- a/icons-react/icons-js/propeller-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPropellerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPropellerOff; \ No newline at end of file diff --git a/icons-react/icons-js/propeller.js b/icons-react/icons-js/propeller.js deleted file mode 100644 index 47d3a26e2..000000000 --- a/icons-react/icons-js/propeller.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPropeller({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPropeller; \ No newline at end of file diff --git a/icons-react/icons-js/pumpkin-scary.js b/icons-react/icons-js/pumpkin-scary.js deleted file mode 100644 index 1d507b150..000000000 --- a/icons-react/icons-js/pumpkin-scary.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPumpkinScary({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPumpkinScary; \ No newline at end of file diff --git a/icons-react/icons-js/puzzle-2.js b/icons-react/icons-js/puzzle-2.js deleted file mode 100644 index d0a2d5537..000000000 --- a/icons-react/icons-js/puzzle-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPuzzle2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPuzzle2; \ No newline at end of file diff --git a/icons-react/icons-js/puzzle-off.js b/icons-react/icons-js/puzzle-off.js deleted file mode 100644 index 988e1226b..000000000 --- a/icons-react/icons-js/puzzle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPuzzleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPuzzleOff; \ No newline at end of file diff --git a/icons-react/icons-js/puzzle.js b/icons-react/icons-js/puzzle.js deleted file mode 100644 index 9acad8465..000000000 --- a/icons-react/icons-js/puzzle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPuzzle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPuzzle; \ No newline at end of file diff --git a/icons-react/icons-js/pyramid-off.js b/icons-react/icons-js/pyramid-off.js deleted file mode 100644 index 5b74769d7..000000000 --- a/icons-react/icons-js/pyramid-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPyramidOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPyramidOff; \ No newline at end of file diff --git a/icons-react/icons-js/pyramid.js b/icons-react/icons-js/pyramid.js deleted file mode 100644 index 2a4724dab..000000000 --- a/icons-react/icons-js/pyramid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconPyramid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconPyramid; \ No newline at end of file diff --git a/icons-react/icons-js/qrcode-off.js b/icons-react/icons-js/qrcode-off.js deleted file mode 100644 index 1d7cc584c..000000000 --- a/icons-react/icons-js/qrcode-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQrcodeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQrcodeOff; \ No newline at end of file diff --git a/icons-react/icons-js/qrcode.js b/icons-react/icons-js/qrcode.js deleted file mode 100644 index 0f602a5a2..000000000 --- a/icons-react/icons-js/qrcode.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQrcode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQrcode; \ No newline at end of file diff --git a/icons-react/icons-js/question-circle.js b/icons-react/icons-js/question-circle.js deleted file mode 100644 index a7683e8fb..000000000 --- a/icons-react/icons-js/question-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQuestionCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQuestionCircle; \ No newline at end of file diff --git a/icons-react/icons-js/question-mark.js b/icons-react/icons-js/question-mark.js deleted file mode 100644 index dc6ed0832..000000000 --- a/icons-react/icons-js/question-mark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQuestionMark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQuestionMark; \ No newline at end of file diff --git a/icons-react/icons-js/quote-off.js b/icons-react/icons-js/quote-off.js deleted file mode 100644 index a21285395..000000000 --- a/icons-react/icons-js/quote-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQuoteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQuoteOff; \ No newline at end of file diff --git a/icons-react/icons-js/quote.js b/icons-react/icons-js/quote.js deleted file mode 100644 index 5e0ecf819..000000000 --- a/icons-react/icons-js/quote.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconQuote({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconQuote; \ No newline at end of file diff --git a/icons-react/icons-js/radar-2.js b/icons-react/icons-js/radar-2.js deleted file mode 100644 index db8e04254..000000000 --- a/icons-react/icons-js/radar-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadar2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadar2; \ No newline at end of file diff --git a/icons-react/icons-js/radar-off.js b/icons-react/icons-js/radar-off.js deleted file mode 100644 index f7ae7caf7..000000000 --- a/icons-react/icons-js/radar-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadarOff; \ No newline at end of file diff --git a/icons-react/icons-js/radar.js b/icons-react/icons-js/radar.js deleted file mode 100644 index f9152df1a..000000000 --- a/icons-react/icons-js/radar.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadar; \ No newline at end of file diff --git a/icons-react/icons-js/radio-off.js b/icons-react/icons-js/radio-off.js deleted file mode 100644 index 14aa14276..000000000 --- a/icons-react/icons-js/radio-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadioOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadioOff; \ No newline at end of file diff --git a/icons-react/icons-js/radio.js b/icons-react/icons-js/radio.js deleted file mode 100644 index e1ca332b9..000000000 --- a/icons-react/icons-js/radio.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadio({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadio; \ No newline at end of file diff --git a/icons-react/icons-js/radioactive-off.js b/icons-react/icons-js/radioactive-off.js deleted file mode 100644 index aca1f88ae..000000000 --- a/icons-react/icons-js/radioactive-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadioactiveOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadioactiveOff; \ No newline at end of file diff --git a/icons-react/icons-js/radioactive.js b/icons-react/icons-js/radioactive.js deleted file mode 100644 index 480922326..000000000 --- a/icons-react/icons-js/radioactive.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadioactive({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadioactive; \ No newline at end of file diff --git a/icons-react/icons-js/radius-bottom-left.js b/icons-react/icons-js/radius-bottom-left.js deleted file mode 100644 index b5eaf228b..000000000 --- a/icons-react/icons-js/radius-bottom-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadiusBottomLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadiusBottomLeft; \ No newline at end of file diff --git a/icons-react/icons-js/radius-bottom-right.js b/icons-react/icons-js/radius-bottom-right.js deleted file mode 100644 index fa45ddea8..000000000 --- a/icons-react/icons-js/radius-bottom-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadiusBottomRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadiusBottomRight; \ No newline at end of file diff --git a/icons-react/icons-js/radius-top-left.js b/icons-react/icons-js/radius-top-left.js deleted file mode 100644 index db2cb2eb8..000000000 --- a/icons-react/icons-js/radius-top-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadiusTopLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadiusTopLeft; \ No newline at end of file diff --git a/icons-react/icons-js/radius-top-right.js b/icons-react/icons-js/radius-top-right.js deleted file mode 100644 index 0e98ae93c..000000000 --- a/icons-react/icons-js/radius-top-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRadiusTopRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRadiusTopRight; \ No newline at end of file diff --git a/icons-react/icons-js/rainbow-off.js b/icons-react/icons-js/rainbow-off.js deleted file mode 100644 index fe00a6755..000000000 --- a/icons-react/icons-js/rainbow-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRainbowOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRainbowOff; \ No newline at end of file diff --git a/icons-react/icons-js/rainbow.js b/icons-react/icons-js/rainbow.js deleted file mode 100644 index 53811ec86..000000000 --- a/icons-react/icons-js/rainbow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRainbow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRainbow; \ No newline at end of file diff --git a/icons-react/icons-js/rating-12-plus.js b/icons-react/icons-js/rating-12-plus.js deleted file mode 100644 index 2909579c2..000000000 --- a/icons-react/icons-js/rating-12-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRating12Plus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRating12Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-14-plus.js b/icons-react/icons-js/rating-14-plus.js deleted file mode 100644 index 87c3ec2d9..000000000 --- a/icons-react/icons-js/rating-14-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRating14Plus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRating14Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-16-plus.js b/icons-react/icons-js/rating-16-plus.js deleted file mode 100644 index 27c8f045b..000000000 --- a/icons-react/icons-js/rating-16-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRating16Plus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRating16Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-18-plus.js b/icons-react/icons-js/rating-18-plus.js deleted file mode 100644 index 81bce85c5..000000000 --- a/icons-react/icons-js/rating-18-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRating18Plus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRating18Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-21-plus.js b/icons-react/icons-js/rating-21-plus.js deleted file mode 100644 index da0c541ff..000000000 --- a/icons-react/icons-js/rating-21-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRating21Plus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRating21Plus; \ No newline at end of file diff --git a/icons-react/icons-js/razor-electric.js b/icons-react/icons-js/razor-electric.js deleted file mode 100644 index c59cbe868..000000000 --- a/icons-react/icons-js/razor-electric.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRazorElectric({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRazorElectric; \ No newline at end of file diff --git a/icons-react/icons-js/razor.js b/icons-react/icons-js/razor.js deleted file mode 100644 index 9b2d4b6ce..000000000 --- a/icons-react/icons-js/razor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRazor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRazor; \ No newline at end of file diff --git a/icons-react/icons-js/receipt-2.js b/icons-react/icons-js/receipt-2.js deleted file mode 100644 index 6d51f98e4..000000000 --- a/icons-react/icons-js/receipt-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReceipt2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReceipt2; \ No newline at end of file diff --git a/icons-react/icons-js/receipt-off.js b/icons-react/icons-js/receipt-off.js deleted file mode 100644 index 2a50af8f8..000000000 --- a/icons-react/icons-js/receipt-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReceiptOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReceiptOff; \ No newline at end of file diff --git a/icons-react/icons-js/receipt-refund.js b/icons-react/icons-js/receipt-refund.js deleted file mode 100644 index a727c50d2..000000000 --- a/icons-react/icons-js/receipt-refund.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReceiptRefund({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReceiptRefund; \ No newline at end of file diff --git a/icons-react/icons-js/receipt-tax.js b/icons-react/icons-js/receipt-tax.js deleted file mode 100644 index 786abb50a..000000000 --- a/icons-react/icons-js/receipt-tax.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReceiptTax({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReceiptTax; \ No newline at end of file diff --git a/icons-react/icons-js/receipt.js b/icons-react/icons-js/receipt.js deleted file mode 100644 index 46c55e930..000000000 --- a/icons-react/icons-js/receipt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReceipt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReceipt; \ No newline at end of file diff --git a/icons-react/icons-js/recharging.js b/icons-react/icons-js/recharging.js deleted file mode 100644 index d25c93f1d..000000000 --- a/icons-react/icons-js/recharging.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRecharging({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRecharging; \ No newline at end of file diff --git a/icons-react/icons-js/record-mail-off.js b/icons-react/icons-js/record-mail-off.js deleted file mode 100644 index 22e70993e..000000000 --- a/icons-react/icons-js/record-mail-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRecordMailOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRecordMailOff; \ No newline at end of file diff --git a/icons-react/icons-js/record-mail.js b/icons-react/icons-js/record-mail.js deleted file mode 100644 index ed881f0e9..000000000 --- a/icons-react/icons-js/record-mail.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRecordMail({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRecordMail; \ No newline at end of file diff --git a/icons-react/icons-js/rectangle-vertical.js b/icons-react/icons-js/rectangle-vertical.js deleted file mode 100644 index 390af4d74..000000000 --- a/icons-react/icons-js/rectangle-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRectangleVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRectangleVertical; \ No newline at end of file diff --git a/icons-react/icons-js/rectangle.js b/icons-react/icons-js/rectangle.js deleted file mode 100644 index 8d03e5087..000000000 --- a/icons-react/icons-js/rectangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRectangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRectangle; \ No newline at end of file diff --git a/icons-react/icons-js/recycle-off.js b/icons-react/icons-js/recycle-off.js deleted file mode 100644 index 10bcff710..000000000 --- a/icons-react/icons-js/recycle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRecycleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRecycleOff; \ No newline at end of file diff --git a/icons-react/icons-js/recycle.js b/icons-react/icons-js/recycle.js deleted file mode 100644 index fe409bbf3..000000000 --- a/icons-react/icons-js/recycle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRecycle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRecycle; \ No newline at end of file diff --git a/icons-react/icons-js/refresh-alert.js b/icons-react/icons-js/refresh-alert.js deleted file mode 100644 index 041d9076b..000000000 --- a/icons-react/icons-js/refresh-alert.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRefreshAlert({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRefreshAlert; \ No newline at end of file diff --git a/icons-react/icons-js/refresh-dot.js b/icons-react/icons-js/refresh-dot.js deleted file mode 100644 index 0626be4d2..000000000 --- a/icons-react/icons-js/refresh-dot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRefreshDot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRefreshDot; \ No newline at end of file diff --git a/icons-react/icons-js/refresh-off.js b/icons-react/icons-js/refresh-off.js deleted file mode 100644 index 0d7419c59..000000000 --- a/icons-react/icons-js/refresh-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRefreshOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRefreshOff; \ No newline at end of file diff --git a/icons-react/icons-js/refresh.js b/icons-react/icons-js/refresh.js deleted file mode 100644 index 8d5666282..000000000 --- a/icons-react/icons-js/refresh.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRefresh({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRefresh; \ No newline at end of file diff --git a/icons-react/icons-js/regex-off.js b/icons-react/icons-js/regex-off.js deleted file mode 100644 index 0b569f8fc..000000000 --- a/icons-react/icons-js/regex-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRegexOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRegexOff; \ No newline at end of file diff --git a/icons-react/icons-js/regex.js b/icons-react/icons-js/regex.js deleted file mode 100644 index 4dbed3a35..000000000 --- a/icons-react/icons-js/regex.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRegex({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRegex; \ No newline at end of file diff --git a/icons-react/icons-js/registered.js b/icons-react/icons-js/registered.js deleted file mode 100644 index 30450d04c..000000000 --- a/icons-react/icons-js/registered.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRegistered({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRegistered; \ No newline at end of file diff --git a/icons-react/icons-js/relation-many-to-many.js b/icons-react/icons-js/relation-many-to-many.js deleted file mode 100644 index 38884da1d..000000000 --- a/icons-react/icons-js/relation-many-to-many.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRelationManyToMany({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRelationManyToMany; \ No newline at end of file diff --git a/icons-react/icons-js/relation-one-to-many.js b/icons-react/icons-js/relation-one-to-many.js deleted file mode 100644 index 0d3d2596b..000000000 --- a/icons-react/icons-js/relation-one-to-many.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRelationOneToMany({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRelationOneToMany; \ No newline at end of file diff --git a/icons-react/icons-js/relation-one-to-one.js b/icons-react/icons-js/relation-one-to-one.js deleted file mode 100644 index b52ea19b9..000000000 --- a/icons-react/icons-js/relation-one-to-one.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRelationOneToOne({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRelationOneToOne; \ No newline at end of file diff --git a/icons-react/icons-js/reload.js b/icons-react/icons-js/reload.js deleted file mode 100644 index 8eea53439..000000000 --- a/icons-react/icons-js/reload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReload; \ No newline at end of file diff --git a/icons-react/icons-js/repeat-off.js b/icons-react/icons-js/repeat-off.js deleted file mode 100644 index ea1f10c3c..000000000 --- a/icons-react/icons-js/repeat-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRepeatOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRepeatOff; \ No newline at end of file diff --git a/icons-react/icons-js/repeat-once.js b/icons-react/icons-js/repeat-once.js deleted file mode 100644 index 16c899d55..000000000 --- a/icons-react/icons-js/repeat-once.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRepeatOnce({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRepeatOnce; \ No newline at end of file diff --git a/icons-react/icons-js/repeat.js b/icons-react/icons-js/repeat.js deleted file mode 100644 index 7a3f0a1dc..000000000 --- a/icons-react/icons-js/repeat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRepeat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRepeat; \ No newline at end of file diff --git a/icons-react/icons-js/replace-off.js b/icons-react/icons-js/replace-off.js deleted file mode 100644 index 3aad45864..000000000 --- a/icons-react/icons-js/replace-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReplaceOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReplaceOff; \ No newline at end of file diff --git a/icons-react/icons-js/replace.js b/icons-react/icons-js/replace.js deleted file mode 100644 index 94a612d35..000000000 --- a/icons-react/icons-js/replace.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReplace({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReplace; \ No newline at end of file diff --git a/icons-react/icons-js/report-analytics.js b/icons-react/icons-js/report-analytics.js deleted file mode 100644 index 80ce9ae84..000000000 --- a/icons-react/icons-js/report-analytics.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReportAnalytics({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReportAnalytics; \ No newline at end of file diff --git a/icons-react/icons-js/report-medical.js b/icons-react/icons-js/report-medical.js deleted file mode 100644 index a6990c1e9..000000000 --- a/icons-react/icons-js/report-medical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReportMedical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReportMedical; \ No newline at end of file diff --git a/icons-react/icons-js/report-money.js b/icons-react/icons-js/report-money.js deleted file mode 100644 index b7523bf34..000000000 --- a/icons-react/icons-js/report-money.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReportMoney({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReportMoney; \ No newline at end of file diff --git a/icons-react/icons-js/report-off.js b/icons-react/icons-js/report-off.js deleted file mode 100644 index 97d85246e..000000000 --- a/icons-react/icons-js/report-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReportOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReportOff; \ No newline at end of file diff --git a/icons-react/icons-js/report-search.js b/icons-react/icons-js/report-search.js deleted file mode 100644 index 0131b66e9..000000000 --- a/icons-react/icons-js/report-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReportSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReportSearch; \ No newline at end of file diff --git a/icons-react/icons-js/report.js b/icons-react/icons-js/report.js deleted file mode 100644 index cb77b6315..000000000 --- a/icons-react/icons-js/report.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconReport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconReport; \ No newline at end of file diff --git a/icons-react/icons-js/resize.js b/icons-react/icons-js/resize.js deleted file mode 100644 index d3179ea5f..000000000 --- a/icons-react/icons-js/resize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconResize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconResize; \ No newline at end of file diff --git a/icons-react/icons-js/ribbon-health.js b/icons-react/icons-js/ribbon-health.js deleted file mode 100644 index 5bcc78c9c..000000000 --- a/icons-react/icons-js/ribbon-health.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRibbonHealth({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRibbonHealth; \ No newline at end of file diff --git a/icons-react/icons-js/ripple-off.js b/icons-react/icons-js/ripple-off.js deleted file mode 100644 index e02cfe56f..000000000 --- a/icons-react/icons-js/ripple-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRippleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRippleOff; \ No newline at end of file diff --git a/icons-react/icons-js/ripple.js b/icons-react/icons-js/ripple.js deleted file mode 100644 index be5470e02..000000000 --- a/icons-react/icons-js/ripple.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRipple({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRipple; \ No newline at end of file diff --git a/icons-react/icons-js/road-off.js b/icons-react/icons-js/road-off.js deleted file mode 100644 index 63524fc85..000000000 --- a/icons-react/icons-js/road-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRoadOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRoadOff; \ No newline at end of file diff --git a/icons-react/icons-js/road-sign.js b/icons-react/icons-js/road-sign.js deleted file mode 100644 index ec0542890..000000000 --- a/icons-react/icons-js/road-sign.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRoadSign({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRoadSign; \ No newline at end of file diff --git a/icons-react/icons-js/road.js b/icons-react/icons-js/road.js deleted file mode 100644 index 9580ac306..000000000 --- a/icons-react/icons-js/road.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRoad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRoad; \ No newline at end of file diff --git a/icons-react/icons-js/robot-off.js b/icons-react/icons-js/robot-off.js deleted file mode 100644 index 33a17d981..000000000 --- a/icons-react/icons-js/robot-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRobotOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRobotOff; \ No newline at end of file diff --git a/icons-react/icons-js/robot.js b/icons-react/icons-js/robot.js deleted file mode 100644 index c46923c90..000000000 --- a/icons-react/icons-js/robot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRobot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRobot; \ No newline at end of file diff --git a/icons-react/icons-js/rocket-off.js b/icons-react/icons-js/rocket-off.js deleted file mode 100644 index 022b56e7d..000000000 --- a/icons-react/icons-js/rocket-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRocketOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRocketOff; \ No newline at end of file diff --git a/icons-react/icons-js/rocket.js b/icons-react/icons-js/rocket.js deleted file mode 100644 index 5b0354c1a..000000000 --- a/icons-react/icons-js/rocket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRocket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRocket; \ No newline at end of file diff --git a/icons-react/icons-js/roller-skating.js b/icons-react/icons-js/roller-skating.js deleted file mode 100644 index ac3816fa2..000000000 --- a/icons-react/icons-js/roller-skating.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRollerSkating({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRollerSkating; \ No newline at end of file diff --git a/icons-react/icons-js/rollercoaster-off.js b/icons-react/icons-js/rollercoaster-off.js deleted file mode 100644 index 634faa7c8..000000000 --- a/icons-react/icons-js/rollercoaster-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRollercoasterOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRollercoasterOff; \ No newline at end of file diff --git a/icons-react/icons-js/rollercoaster.js b/icons-react/icons-js/rollercoaster.js deleted file mode 100644 index dcd9e4a92..000000000 --- a/icons-react/icons-js/rollercoaster.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRollercoaster({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRollercoaster; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-0.js b/icons-react/icons-js/rosette-number-0.js deleted file mode 100644 index 40520671c..000000000 --- a/icons-react/icons-js/rosette-number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-1.js b/icons-react/icons-js/rosette-number-1.js deleted file mode 100644 index 856bd95f5..000000000 --- a/icons-react/icons-js/rosette-number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-2.js b/icons-react/icons-js/rosette-number-2.js deleted file mode 100644 index 95be4b485..000000000 --- a/icons-react/icons-js/rosette-number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-3.js b/icons-react/icons-js/rosette-number-3.js deleted file mode 100644 index 8ef5a3418..000000000 --- a/icons-react/icons-js/rosette-number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-4.js b/icons-react/icons-js/rosette-number-4.js deleted file mode 100644 index 85ad7e7c7..000000000 --- a/icons-react/icons-js/rosette-number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-5.js b/icons-react/icons-js/rosette-number-5.js deleted file mode 100644 index 7d7a448b3..000000000 --- a/icons-react/icons-js/rosette-number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-6.js b/icons-react/icons-js/rosette-number-6.js deleted file mode 100644 index 995128e78..000000000 --- a/icons-react/icons-js/rosette-number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-7.js b/icons-react/icons-js/rosette-number-7.js deleted file mode 100644 index 7e55d512e..000000000 --- a/icons-react/icons-js/rosette-number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-8.js b/icons-react/icons-js/rosette-number-8.js deleted file mode 100644 index 1c2241688..000000000 --- a/icons-react/icons-js/rosette-number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/rosette-number-9.js b/icons-react/icons-js/rosette-number-9.js deleted file mode 100644 index 6cbc23a85..000000000 --- a/icons-react/icons-js/rosette-number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosetteNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosetteNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/rosette.js b/icons-react/icons-js/rosette.js deleted file mode 100644 index baa6c53d1..000000000 --- a/icons-react/icons-js/rosette.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRosette({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRosette; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-2.js b/icons-react/icons-js/rotate-2.js deleted file mode 100644 index d9f01b3e6..000000000 --- a/icons-react/icons-js/rotate-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotate2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotate2; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-360.js b/icons-react/icons-js/rotate-360.js deleted file mode 100644 index 17fb7bb56..000000000 --- a/icons-react/icons-js/rotate-360.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotate360({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotate360; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-clockwise-2.js b/icons-react/icons-js/rotate-clockwise-2.js deleted file mode 100644 index faf596c18..000000000 --- a/icons-react/icons-js/rotate-clockwise-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotateClockwise2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotateClockwise2; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-clockwise.js b/icons-react/icons-js/rotate-clockwise.js deleted file mode 100644 index 618b13c90..000000000 --- a/icons-react/icons-js/rotate-clockwise.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotateClockwise({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotateClockwise; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-dot.js b/icons-react/icons-js/rotate-dot.js deleted file mode 100644 index 9d4525ee8..000000000 --- a/icons-react/icons-js/rotate-dot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotateDot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotateDot; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-rectangle.js b/icons-react/icons-js/rotate-rectangle.js deleted file mode 100644 index 52904cd8b..000000000 --- a/icons-react/icons-js/rotate-rectangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotateRectangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotateRectangle; \ No newline at end of file diff --git a/icons-react/icons-js/rotate.js b/icons-react/icons-js/rotate.js deleted file mode 100644 index 86784c353..000000000 --- a/icons-react/icons-js/rotate.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRotate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRotate; \ No newline at end of file diff --git a/icons-react/icons-js/route-2.js b/icons-react/icons-js/route-2.js deleted file mode 100644 index 0cad95da6..000000000 --- a/icons-react/icons-js/route-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRoute2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRoute2; \ No newline at end of file diff --git a/icons-react/icons-js/route-off.js b/icons-react/icons-js/route-off.js deleted file mode 100644 index f7aba0a8b..000000000 --- a/icons-react/icons-js/route-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRouteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRouteOff; \ No newline at end of file diff --git a/icons-react/icons-js/route.js b/icons-react/icons-js/route.js deleted file mode 100644 index b7cc0eb32..000000000 --- a/icons-react/icons-js/route.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRoute({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRoute; \ No newline at end of file diff --git a/icons-react/icons-js/router-off.js b/icons-react/icons-js/router-off.js deleted file mode 100644 index ee29e8400..000000000 --- a/icons-react/icons-js/router-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRouterOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRouterOff; \ No newline at end of file diff --git a/icons-react/icons-js/router.js b/icons-react/icons-js/router.js deleted file mode 100644 index 23f7a39d9..000000000 --- a/icons-react/icons-js/router.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRouter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRouter; \ No newline at end of file diff --git a/icons-react/icons-js/row-insert-bottom.js b/icons-react/icons-js/row-insert-bottom.js deleted file mode 100644 index 3e5bc44fc..000000000 --- a/icons-react/icons-js/row-insert-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRowInsertBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRowInsertBottom; \ No newline at end of file diff --git a/icons-react/icons-js/row-insert-top.js b/icons-react/icons-js/row-insert-top.js deleted file mode 100644 index 2b9d0f383..000000000 --- a/icons-react/icons-js/row-insert-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRowInsertTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRowInsertTop; \ No newline at end of file diff --git a/icons-react/icons-js/rss.js b/icons-react/icons-js/rss.js deleted file mode 100644 index 368516f84..000000000 --- a/icons-react/icons-js/rss.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRss({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRss; \ No newline at end of file diff --git a/icons-react/icons-js/rubber-stamp-off.js b/icons-react/icons-js/rubber-stamp-off.js deleted file mode 100644 index 2f5a42862..000000000 --- a/icons-react/icons-js/rubber-stamp-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRubberStampOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRubberStampOff; \ No newline at end of file diff --git a/icons-react/icons-js/rubber-stamp.js b/icons-react/icons-js/rubber-stamp.js deleted file mode 100644 index 73edae2e7..000000000 --- a/icons-react/icons-js/rubber-stamp.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRubberStamp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRubberStamp; \ No newline at end of file diff --git a/icons-react/icons-js/ruler-2-off.js b/icons-react/icons-js/ruler-2-off.js deleted file mode 100644 index a6224e85e..000000000 --- a/icons-react/icons-js/ruler-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRuler2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRuler2Off; \ No newline at end of file diff --git a/icons-react/icons-js/ruler-2.js b/icons-react/icons-js/ruler-2.js deleted file mode 100644 index 9933eedf0..000000000 --- a/icons-react/icons-js/ruler-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRuler2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRuler2; \ No newline at end of file diff --git a/icons-react/icons-js/ruler-3.js b/icons-react/icons-js/ruler-3.js deleted file mode 100644 index 7b497411d..000000000 --- a/icons-react/icons-js/ruler-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRuler3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRuler3; \ No newline at end of file diff --git a/icons-react/icons-js/ruler-measure.js b/icons-react/icons-js/ruler-measure.js deleted file mode 100644 index c7f7641c1..000000000 --- a/icons-react/icons-js/ruler-measure.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRulerMeasure({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRulerMeasure; \ No newline at end of file diff --git a/icons-react/icons-js/ruler-off.js b/icons-react/icons-js/ruler-off.js deleted file mode 100644 index 1a90003c2..000000000 --- a/icons-react/icons-js/ruler-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRulerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRulerOff; \ No newline at end of file diff --git a/icons-react/icons-js/ruler.js b/icons-react/icons-js/ruler.js deleted file mode 100644 index 0e23e0f54..000000000 --- a/icons-react/icons-js/ruler.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRuler({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRuler; \ No newline at end of file diff --git a/icons-react/icons-js/run.js b/icons-react/icons-js/run.js deleted file mode 100644 index 65032987a..000000000 --- a/icons-react/icons-js/run.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconRun({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconRun; \ No newline at end of file diff --git a/icons-react/icons-js/s-turn-down.js b/icons-react/icons-js/s-turn-down.js deleted file mode 100644 index d9db05e84..000000000 --- a/icons-react/icons-js/s-turn-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSTurnDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSTurnDown; \ No newline at end of file diff --git a/icons-react/icons-js/s-turn-left.js b/icons-react/icons-js/s-turn-left.js deleted file mode 100644 index 3723e9432..000000000 --- a/icons-react/icons-js/s-turn-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSTurnLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSTurnLeft; \ No newline at end of file diff --git a/icons-react/icons-js/s-turn-right.js b/icons-react/icons-js/s-turn-right.js deleted file mode 100644 index 27e1484bb..000000000 --- a/icons-react/icons-js/s-turn-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSTurnRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSTurnRight; \ No newline at end of file diff --git a/icons-react/icons-js/s-turn-up.js b/icons-react/icons-js/s-turn-up.js deleted file mode 100644 index e0df1844c..000000000 --- a/icons-react/icons-js/s-turn-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSTurnUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSTurnUp; \ No newline at end of file diff --git a/icons-react/icons-js/sailboat-2.js b/icons-react/icons-js/sailboat-2.js deleted file mode 100644 index 392fd365b..000000000 --- a/icons-react/icons-js/sailboat-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSailboat2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSailboat2; \ No newline at end of file diff --git a/icons-react/icons-js/sailboat-off.js b/icons-react/icons-js/sailboat-off.js deleted file mode 100644 index 68395d07d..000000000 --- a/icons-react/icons-js/sailboat-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSailboatOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSailboatOff; \ No newline at end of file diff --git a/icons-react/icons-js/sailboat.js b/icons-react/icons-js/sailboat.js deleted file mode 100644 index a2b75e524..000000000 --- a/icons-react/icons-js/sailboat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSailboat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSailboat; \ No newline at end of file diff --git a/icons-react/icons-js/salad.js b/icons-react/icons-js/salad.js deleted file mode 100644 index 8a30cf934..000000000 --- a/icons-react/icons-js/salad.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSalad({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSalad; \ No newline at end of file diff --git a/icons-react/icons-js/salt.js b/icons-react/icons-js/salt.js deleted file mode 100644 index 0f839e9a7..000000000 --- a/icons-react/icons-js/salt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSalt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSalt; \ No newline at end of file diff --git a/icons-react/icons-js/satellite-off.js b/icons-react/icons-js/satellite-off.js deleted file mode 100644 index 6b50e0b27..000000000 --- a/icons-react/icons-js/satellite-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSatelliteOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSatelliteOff; \ No newline at end of file diff --git a/icons-react/icons-js/satellite.js b/icons-react/icons-js/satellite.js deleted file mode 100644 index 6ed2762c0..000000000 --- a/icons-react/icons-js/satellite.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSatellite({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSatellite; \ No newline at end of file diff --git a/icons-react/icons-js/sausage.js b/icons-react/icons-js/sausage.js deleted file mode 100644 index 1b83867fe..000000000 --- a/icons-react/icons-js/sausage.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSausage({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSausage; \ No newline at end of file diff --git a/icons-react/icons-js/scale-off.js b/icons-react/icons-js/scale-off.js deleted file mode 100644 index a52fd54c1..000000000 --- a/icons-react/icons-js/scale-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScaleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScaleOff; \ No newline at end of file diff --git a/icons-react/icons-js/scale-outline-off.js b/icons-react/icons-js/scale-outline-off.js deleted file mode 100644 index 1d72cc42a..000000000 --- a/icons-react/icons-js/scale-outline-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScaleOutlineOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScaleOutlineOff; \ No newline at end of file diff --git a/icons-react/icons-js/scale-outline.js b/icons-react/icons-js/scale-outline.js deleted file mode 100644 index 71a32688b..000000000 --- a/icons-react/icons-js/scale-outline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScaleOutline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScaleOutline; \ No newline at end of file diff --git a/icons-react/icons-js/scale.js b/icons-react/icons-js/scale.js deleted file mode 100644 index ef4f402cb..000000000 --- a/icons-react/icons-js/scale.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScale({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScale; \ No newline at end of file diff --git a/icons-react/icons-js/scan-eye.js b/icons-react/icons-js/scan-eye.js deleted file mode 100644 index 95a0290dc..000000000 --- a/icons-react/icons-js/scan-eye.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScanEye({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScanEye; \ No newline at end of file diff --git a/icons-react/icons-js/scan.js b/icons-react/icons-js/scan.js deleted file mode 100644 index d99a01a9d..000000000 --- a/icons-react/icons-js/scan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScan; \ No newline at end of file diff --git a/icons-react/icons-js/schema-off.js b/icons-react/icons-js/schema-off.js deleted file mode 100644 index baea06e3e..000000000 --- a/icons-react/icons-js/schema-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSchemaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSchemaOff; \ No newline at end of file diff --git a/icons-react/icons-js/schema.js b/icons-react/icons-js/schema.js deleted file mode 100644 index 2a7143b41..000000000 --- a/icons-react/icons-js/schema.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSchema({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSchema; \ No newline at end of file diff --git a/icons-react/icons-js/school-bell.js b/icons-react/icons-js/school-bell.js deleted file mode 100644 index 0f6f1c9b6..000000000 --- a/icons-react/icons-js/school-bell.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSchoolBell({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSchoolBell; \ No newline at end of file diff --git a/icons-react/icons-js/school-off.js b/icons-react/icons-js/school-off.js deleted file mode 100644 index 212d80485..000000000 --- a/icons-react/icons-js/school-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSchoolOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSchoolOff; \ No newline at end of file diff --git a/icons-react/icons-js/school.js b/icons-react/icons-js/school.js deleted file mode 100644 index f1684d3f0..000000000 --- a/icons-react/icons-js/school.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSchool({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSchool; \ No newline at end of file diff --git a/icons-react/icons-js/scissors-off.js b/icons-react/icons-js/scissors-off.js deleted file mode 100644 index f776cf91e..000000000 --- a/icons-react/icons-js/scissors-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScissorsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScissorsOff; \ No newline at end of file diff --git a/icons-react/icons-js/scissors.js b/icons-react/icons-js/scissors.js deleted file mode 100644 index 1ea5e8fc7..000000000 --- a/icons-react/icons-js/scissors.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScissors({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScissors; \ No newline at end of file diff --git a/icons-react/icons-js/scooter-electric.js b/icons-react/icons-js/scooter-electric.js deleted file mode 100644 index a4bbb7450..000000000 --- a/icons-react/icons-js/scooter-electric.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScooterElectric({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScooterElectric; \ No newline at end of file diff --git a/icons-react/icons-js/scooter.js b/icons-react/icons-js/scooter.js deleted file mode 100644 index eb04eabb2..000000000 --- a/icons-react/icons-js/scooter.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScooter({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScooter; \ No newline at end of file diff --git a/icons-react/icons-js/screen-share-off.js b/icons-react/icons-js/screen-share-off.js deleted file mode 100644 index ad448cfcf..000000000 --- a/icons-react/icons-js/screen-share-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScreenShareOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScreenShareOff; \ No newline at end of file diff --git a/icons-react/icons-js/screen-share.js b/icons-react/icons-js/screen-share.js deleted file mode 100644 index 15a7dcb9b..000000000 --- a/icons-react/icons-js/screen-share.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScreenShare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScreenShare; \ No newline at end of file diff --git a/icons-react/icons-js/screenshot.js b/icons-react/icons-js/screenshot.js deleted file mode 100644 index 76796de13..000000000 --- a/icons-react/icons-js/screenshot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScreenshot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScreenshot; \ No newline at end of file diff --git a/icons-react/icons-js/scribble-off.js b/icons-react/icons-js/scribble-off.js deleted file mode 100644 index 2c7458a71..000000000 --- a/icons-react/icons-js/scribble-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScribbleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScribbleOff; \ No newline at end of file diff --git a/icons-react/icons-js/scribble.js b/icons-react/icons-js/scribble.js deleted file mode 100644 index 120394f64..000000000 --- a/icons-react/icons-js/scribble.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScribble({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScribble; \ No newline at end of file diff --git a/icons-react/icons-js/script-minus.js b/icons-react/icons-js/script-minus.js deleted file mode 100644 index 2538f33de..000000000 --- a/icons-react/icons-js/script-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScriptMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScriptMinus; \ No newline at end of file diff --git a/icons-react/icons-js/script-plus.js b/icons-react/icons-js/script-plus.js deleted file mode 100644 index 085ac2976..000000000 --- a/icons-react/icons-js/script-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScriptPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScriptPlus; \ No newline at end of file diff --git a/icons-react/icons-js/script-x.js b/icons-react/icons-js/script-x.js deleted file mode 100644 index c099dacdc..000000000 --- a/icons-react/icons-js/script-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScriptX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScriptX; \ No newline at end of file diff --git a/icons-react/icons-js/script.js b/icons-react/icons-js/script.js deleted file mode 100644 index 770d9883c..000000000 --- a/icons-react/icons-js/script.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScript({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScript; \ No newline at end of file diff --git a/icons-react/icons-js/scuba-mask-off.js b/icons-react/icons-js/scuba-mask-off.js deleted file mode 100644 index f6613e84e..000000000 --- a/icons-react/icons-js/scuba-mask-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScubaMaskOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScubaMaskOff; \ No newline at end of file diff --git a/icons-react/icons-js/scuba-mask.js b/icons-react/icons-js/scuba-mask.js deleted file mode 100644 index 257c9b939..000000000 --- a/icons-react/icons-js/scuba-mask.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconScubaMask({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconScubaMask; \ No newline at end of file diff --git a/icons-react/icons-js/sdk.js b/icons-react/icons-js/sdk.js deleted file mode 100644 index acc1b060e..000000000 --- a/icons-react/icons-js/sdk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSdk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSdk; \ No newline at end of file diff --git a/icons-react/icons-js/search-off.js b/icons-react/icons-js/search-off.js deleted file mode 100644 index bbdb1ecf4..000000000 --- a/icons-react/icons-js/search-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSearchOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSearchOff; \ No newline at end of file diff --git a/icons-react/icons-js/search.js b/icons-react/icons-js/search.js deleted file mode 100644 index bc1ccf55a..000000000 --- a/icons-react/icons-js/search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSearch; \ No newline at end of file diff --git a/icons-react/icons-js/section-sign.js b/icons-react/icons-js/section-sign.js deleted file mode 100644 index 87b3a3b9c..000000000 --- a/icons-react/icons-js/section-sign.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSectionSign({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSectionSign; \ No newline at end of file diff --git a/icons-react/icons-js/section.js b/icons-react/icons-js/section.js deleted file mode 100644 index 6c4e4cfc4..000000000 --- a/icons-react/icons-js/section.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSection({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSection; \ No newline at end of file diff --git a/icons-react/icons-js/seeding-off.js b/icons-react/icons-js/seeding-off.js deleted file mode 100644 index cf9decee2..000000000 --- a/icons-react/icons-js/seeding-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeedingOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeedingOff; \ No newline at end of file diff --git a/icons-react/icons-js/seeding.js b/icons-react/icons-js/seeding.js deleted file mode 100644 index 01a4032d8..000000000 --- a/icons-react/icons-js/seeding.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeeding({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeeding; \ No newline at end of file diff --git a/icons-react/icons-js/select.js b/icons-react/icons-js/select.js deleted file mode 100644 index aaf4cae9e..000000000 --- a/icons-react/icons-js/select.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSelect({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSelect; \ No newline at end of file diff --git a/icons-react/icons-js/selector.js b/icons-react/icons-js/selector.js deleted file mode 100644 index cd6677efe..000000000 --- a/icons-react/icons-js/selector.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSelector({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSelector; \ No newline at end of file diff --git a/icons-react/icons-js/send-off.js b/icons-react/icons-js/send-off.js deleted file mode 100644 index 1438a75a9..000000000 --- a/icons-react/icons-js/send-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSendOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSendOff; \ No newline at end of file diff --git a/icons-react/icons-js/send.js b/icons-react/icons-js/send.js deleted file mode 100644 index fb5136d8b..000000000 --- a/icons-react/icons-js/send.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSend({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSend; \ No newline at end of file diff --git a/icons-react/icons-js/seo.js b/icons-react/icons-js/seo.js deleted file mode 100644 index 74f7bc55a..000000000 --- a/icons-react/icons-js/seo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeo; \ No newline at end of file diff --git a/icons-react/icons-js/separator-horizontal.js b/icons-react/icons-js/separator-horizontal.js deleted file mode 100644 index 2bb0db0cb..000000000 --- a/icons-react/icons-js/separator-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeparatorHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeparatorHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/separator-vertical.js b/icons-react/icons-js/separator-vertical.js deleted file mode 100644 index 2d2dad9db..000000000 --- a/icons-react/icons-js/separator-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeparatorVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeparatorVertical; \ No newline at end of file diff --git a/icons-react/icons-js/separator.js b/icons-react/icons-js/separator.js deleted file mode 100644 index 1bb576b33..000000000 --- a/icons-react/icons-js/separator.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSeparator({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSeparator; \ No newline at end of file diff --git a/icons-react/icons-js/server-2.js b/icons-react/icons-js/server-2.js deleted file mode 100644 index 40ea8e12a..000000000 --- a/icons-react/icons-js/server-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServer2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServer2; \ No newline at end of file diff --git a/icons-react/icons-js/server-bolt.js b/icons-react/icons-js/server-bolt.js deleted file mode 100644 index 25ab5a888..000000000 --- a/icons-react/icons-js/server-bolt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServerBolt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServerBolt; \ No newline at end of file diff --git a/icons-react/icons-js/server-cog.js b/icons-react/icons-js/server-cog.js deleted file mode 100644 index 6d601e5b0..000000000 --- a/icons-react/icons-js/server-cog.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServerCog({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServerCog; \ No newline at end of file diff --git a/icons-react/icons-js/server-off.js b/icons-react/icons-js/server-off.js deleted file mode 100644 index e5aaa6f83..000000000 --- a/icons-react/icons-js/server-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServerOff; \ No newline at end of file diff --git a/icons-react/icons-js/server.js b/icons-react/icons-js/server.js deleted file mode 100644 index 21519f844..000000000 --- a/icons-react/icons-js/server.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServer; \ No newline at end of file diff --git a/icons-react/icons-js/servicemark.js b/icons-react/icons-js/servicemark.js deleted file mode 100644 index accdde73f..000000000 --- a/icons-react/icons-js/servicemark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconServicemark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconServicemark; \ No newline at end of file diff --git a/icons-react/icons-js/settings-2.js b/icons-react/icons-js/settings-2.js deleted file mode 100644 index 88e8cb3b4..000000000 --- a/icons-react/icons-js/settings-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSettings2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSettings2; \ No newline at end of file diff --git a/icons-react/icons-js/settings-automation.js b/icons-react/icons-js/settings-automation.js deleted file mode 100644 index 972b5e824..000000000 --- a/icons-react/icons-js/settings-automation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSettingsAutomation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSettingsAutomation; \ No newline at end of file diff --git a/icons-react/icons-js/settings-off.js b/icons-react/icons-js/settings-off.js deleted file mode 100644 index ff8597a94..000000000 --- a/icons-react/icons-js/settings-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSettingsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSettingsOff; \ No newline at end of file diff --git a/icons-react/icons-js/settings.js b/icons-react/icons-js/settings.js deleted file mode 100644 index 2b06fe000..000000000 --- a/icons-react/icons-js/settings.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSettings({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSettings; \ No newline at end of file diff --git a/icons-react/icons-js/shadow-off.js b/icons-react/icons-js/shadow-off.js deleted file mode 100644 index c2677f29a..000000000 --- a/icons-react/icons-js/shadow-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShadowOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShadowOff; \ No newline at end of file diff --git a/icons-react/icons-js/shadow.js b/icons-react/icons-js/shadow.js deleted file mode 100644 index 5e7500b4f..000000000 --- a/icons-react/icons-js/shadow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShadow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShadow; \ No newline at end of file diff --git a/icons-react/icons-js/shape-2.js b/icons-react/icons-js/shape-2.js deleted file mode 100644 index 5dd68f562..000000000 --- a/icons-react/icons-js/shape-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShape2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShape2; \ No newline at end of file diff --git a/icons-react/icons-js/shape-3.js b/icons-react/icons-js/shape-3.js deleted file mode 100644 index a4b1c5493..000000000 --- a/icons-react/icons-js/shape-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShape3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShape3; \ No newline at end of file diff --git a/icons-react/icons-js/shape-off.js b/icons-react/icons-js/shape-off.js deleted file mode 100644 index 97383580a..000000000 --- a/icons-react/icons-js/shape-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShapeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShapeOff; \ No newline at end of file diff --git a/icons-react/icons-js/shape.js b/icons-react/icons-js/shape.js deleted file mode 100644 index c1bbf35b7..000000000 --- a/icons-react/icons-js/shape.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShape({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShape; \ No newline at end of file diff --git a/icons-react/icons-js/share-off.js b/icons-react/icons-js/share-off.js deleted file mode 100644 index 2095b1a9c..000000000 --- a/icons-react/icons-js/share-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShareOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShareOff; \ No newline at end of file diff --git a/icons-react/icons-js/share.js b/icons-react/icons-js/share.js deleted file mode 100644 index f7ad7ae34..000000000 --- a/icons-react/icons-js/share.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShare; \ No newline at end of file diff --git a/icons-react/icons-js/shield-check.js b/icons-react/icons-js/shield-check.js deleted file mode 100644 index 4df8be74b..000000000 --- a/icons-react/icons-js/shield-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldCheck; \ No newline at end of file diff --git a/icons-react/icons-js/shield-checkered.js b/icons-react/icons-js/shield-checkered.js deleted file mode 100644 index be82a1134..000000000 --- a/icons-react/icons-js/shield-checkered.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldCheckered({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldCheckered; \ No newline at end of file diff --git a/icons-react/icons-js/shield-chevron.js b/icons-react/icons-js/shield-chevron.js deleted file mode 100644 index 6c13e1269..000000000 --- a/icons-react/icons-js/shield-chevron.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldChevron({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldChevron; \ No newline at end of file diff --git a/icons-react/icons-js/shield-half-filled.js b/icons-react/icons-js/shield-half-filled.js deleted file mode 100644 index d98dffd2c..000000000 --- a/icons-react/icons-js/shield-half-filled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldHalfFilled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldHalfFilled; \ No newline at end of file diff --git a/icons-react/icons-js/shield-half.js b/icons-react/icons-js/shield-half.js deleted file mode 100644 index 7323584c7..000000000 --- a/icons-react/icons-js/shield-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldHalf; \ No newline at end of file diff --git a/icons-react/icons-js/shield-lock.js b/icons-react/icons-js/shield-lock.js deleted file mode 100644 index 7a05aa840..000000000 --- a/icons-react/icons-js/shield-lock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldLock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldLock; \ No newline at end of file diff --git a/icons-react/icons-js/shield-off.js b/icons-react/icons-js/shield-off.js deleted file mode 100644 index 3237fc5f5..000000000 --- a/icons-react/icons-js/shield-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldOff; \ No newline at end of file diff --git a/icons-react/icons-js/shield-x.js b/icons-react/icons-js/shield-x.js deleted file mode 100644 index 044997f35..000000000 --- a/icons-react/icons-js/shield-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShieldX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShieldX; \ No newline at end of file diff --git a/icons-react/icons-js/shield.js b/icons-react/icons-js/shield.js deleted file mode 100644 index 4f71a1ddc..000000000 --- a/icons-react/icons-js/shield.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShield({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShield; \ No newline at end of file diff --git a/icons-react/icons-js/ship-off.js b/icons-react/icons-js/ship-off.js deleted file mode 100644 index 0a91fd965..000000000 --- a/icons-react/icons-js/ship-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShipOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShipOff; \ No newline at end of file diff --git a/icons-react/icons-js/ship.js b/icons-react/icons-js/ship.js deleted file mode 100644 index 6a3ecb941..000000000 --- a/icons-react/icons-js/ship.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShip; \ No newline at end of file diff --git a/icons-react/icons-js/shirt-off.js b/icons-react/icons-js/shirt-off.js deleted file mode 100644 index dd92b75b4..000000000 --- a/icons-react/icons-js/shirt-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShirtOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShirtOff; \ No newline at end of file diff --git a/icons-react/icons-js/shirt-sport.js b/icons-react/icons-js/shirt-sport.js deleted file mode 100644 index cdd3a84d6..000000000 --- a/icons-react/icons-js/shirt-sport.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShirtSport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShirtSport; \ No newline at end of file diff --git a/icons-react/icons-js/shirt.js b/icons-react/icons-js/shirt.js deleted file mode 100644 index 9b299fc43..000000000 --- a/icons-react/icons-js/shirt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShirt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShirt; \ No newline at end of file diff --git a/icons-react/icons-js/shoe-off.js b/icons-react/icons-js/shoe-off.js deleted file mode 100644 index 39245316c..000000000 --- a/icons-react/icons-js/shoe-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoeOff; \ No newline at end of file diff --git a/icons-react/icons-js/shoe.js b/icons-react/icons-js/shoe.js deleted file mode 100644 index 6b0577740..000000000 --- a/icons-react/icons-js/shoe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoe; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-bag.js b/icons-react/icons-js/shopping-bag.js deleted file mode 100644 index f82973829..000000000 --- a/icons-react/icons-js/shopping-bag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingBag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingBag; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart-discount.js b/icons-react/icons-js/shopping-cart-discount.js deleted file mode 100644 index eb89ee4f4..000000000 --- a/icons-react/icons-js/shopping-cart-discount.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingCartDiscount({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingCartDiscount; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart-off.js b/icons-react/icons-js/shopping-cart-off.js deleted file mode 100644 index 9e107044c..000000000 --- a/icons-react/icons-js/shopping-cart-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingCartOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingCartOff; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart-plus.js b/icons-react/icons-js/shopping-cart-plus.js deleted file mode 100644 index d90ce46eb..000000000 --- a/icons-react/icons-js/shopping-cart-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingCartPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingCartPlus; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart-x.js b/icons-react/icons-js/shopping-cart-x.js deleted file mode 100644 index fa0898582..000000000 --- a/icons-react/icons-js/shopping-cart-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingCartX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingCartX; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart.js b/icons-react/icons-js/shopping-cart.js deleted file mode 100644 index df709033a..000000000 --- a/icons-react/icons-js/shopping-cart.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShoppingCart({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShoppingCart; \ No newline at end of file diff --git a/icons-react/icons-js/shovel.js b/icons-react/icons-js/shovel.js deleted file mode 100644 index 8e4708d7b..000000000 --- a/icons-react/icons-js/shovel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShovel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShovel; \ No newline at end of file diff --git a/icons-react/icons-js/shredder.js b/icons-react/icons-js/shredder.js deleted file mode 100644 index 38c23cb0b..000000000 --- a/icons-react/icons-js/shredder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconShredder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconShredder; \ No newline at end of file diff --git a/icons-react/icons-js/sign-left.js b/icons-react/icons-js/sign-left.js deleted file mode 100644 index 94793161e..000000000 --- a/icons-react/icons-js/sign-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/sign-right.js b/icons-react/icons-js/sign-right.js deleted file mode 100644 index d389abe9f..000000000 --- a/icons-react/icons-js/sign-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignRight; \ No newline at end of file diff --git a/icons-react/icons-js/signal-3g.js b/icons-react/icons-js/signal-3g.js deleted file mode 100644 index c7a13c356..000000000 --- a/icons-react/icons-js/signal-3g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignal3g({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignal3g; \ No newline at end of file diff --git a/icons-react/icons-js/signal-4g-plus.js b/icons-react/icons-js/signal-4g-plus.js deleted file mode 100644 index 34c562bb0..000000000 --- a/icons-react/icons-js/signal-4g-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignal4gPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignal4gPlus; \ No newline at end of file diff --git a/icons-react/icons-js/signal-4g.js b/icons-react/icons-js/signal-4g.js deleted file mode 100644 index 1d7369165..000000000 --- a/icons-react/icons-js/signal-4g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignal4g({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignal4g; \ No newline at end of file diff --git a/icons-react/icons-js/signal-5g.js b/icons-react/icons-js/signal-5g.js deleted file mode 100644 index 302afcf45..000000000 --- a/icons-react/icons-js/signal-5g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignal5g({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignal5g; \ No newline at end of file diff --git a/icons-react/icons-js/signature-off.js b/icons-react/icons-js/signature-off.js deleted file mode 100644 index 5dff1a298..000000000 --- a/icons-react/icons-js/signature-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignatureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignatureOff; \ No newline at end of file diff --git a/icons-react/icons-js/signature.js b/icons-react/icons-js/signature.js deleted file mode 100644 index f1e740200..000000000 --- a/icons-react/icons-js/signature.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSignature({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSignature; \ No newline at end of file diff --git a/icons-react/icons-js/sitemap-off.js b/icons-react/icons-js/sitemap-off.js deleted file mode 100644 index 2cd0b6aa3..000000000 --- a/icons-react/icons-js/sitemap-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSitemapOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSitemapOff; \ No newline at end of file diff --git a/icons-react/icons-js/sitemap.js b/icons-react/icons-js/sitemap.js deleted file mode 100644 index ea3a37228..000000000 --- a/icons-react/icons-js/sitemap.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSitemap({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSitemap; \ No newline at end of file diff --git a/icons-react/icons-js/skateboard-off.js b/icons-react/icons-js/skateboard-off.js deleted file mode 100644 index c644f1907..000000000 --- a/icons-react/icons-js/skateboard-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSkateboardOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSkateboardOff; \ No newline at end of file diff --git a/icons-react/icons-js/skateboard.js b/icons-react/icons-js/skateboard.js deleted file mode 100644 index 1c94c6bbd..000000000 --- a/icons-react/icons-js/skateboard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSkateboard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSkateboard; \ No newline at end of file diff --git a/icons-react/icons-js/skip-back.js b/icons-react/icons-js/skip-back.js deleted file mode 100644 index 37432d483..000000000 --- a/icons-react/icons-js/skip-back.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconSkipBack = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconSkipBack; \ No newline at end of file diff --git a/icons-react/icons-js/skip-forward.js b/icons-react/icons-js/skip-forward.js deleted file mode 100644 index 28d30ef71..000000000 --- a/icons-react/icons-js/skip-forward.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconSkipForward = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconSkipForward; \ No newline at end of file diff --git a/icons-react/icons-js/skull.js b/icons-react/icons-js/skull.js deleted file mode 100644 index 6ed701f25..000000000 --- a/icons-react/icons-js/skull.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSkull({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSkull; \ No newline at end of file diff --git a/icons-react/icons-js/slash.js b/icons-react/icons-js/slash.js deleted file mode 100644 index f98ebe4d8..000000000 --- a/icons-react/icons-js/slash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSlash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSlash; \ No newline at end of file diff --git a/icons-react/icons-js/slashes.js b/icons-react/icons-js/slashes.js deleted file mode 100644 index aa1f9e1cb..000000000 --- a/icons-react/icons-js/slashes.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSlashes({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSlashes; \ No newline at end of file diff --git a/icons-react/icons-js/sleigh.js b/icons-react/icons-js/sleigh.js deleted file mode 100644 index 3552e5519..000000000 --- a/icons-react/icons-js/sleigh.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSleigh({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSleigh; \ No newline at end of file diff --git a/icons-react/icons-js/slice.js b/icons-react/icons-js/slice.js deleted file mode 100644 index 81ed8f258..000000000 --- a/icons-react/icons-js/slice.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSlice({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSlice; \ No newline at end of file diff --git a/icons-react/icons-js/slideshow.js b/icons-react/icons-js/slideshow.js deleted file mode 100644 index 13483cc9a..000000000 --- a/icons-react/icons-js/slideshow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSlideshow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSlideshow; \ No newline at end of file diff --git a/icons-react/icons-js/smart-home-off.js b/icons-react/icons-js/smart-home-off.js deleted file mode 100644 index 0c237e5a1..000000000 --- a/icons-react/icons-js/smart-home-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSmartHomeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSmartHomeOff; \ No newline at end of file diff --git a/icons-react/icons-js/smart-home.js b/icons-react/icons-js/smart-home.js deleted file mode 100644 index df1a06ea7..000000000 --- a/icons-react/icons-js/smart-home.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSmartHome({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSmartHome; \ No newline at end of file diff --git a/icons-react/icons-js/smoking-no.js b/icons-react/icons-js/smoking-no.js deleted file mode 100644 index 35ca2822d..000000000 --- a/icons-react/icons-js/smoking-no.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSmokingNo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSmokingNo; \ No newline at end of file diff --git a/icons-react/icons-js/smoking.js b/icons-react/icons-js/smoking.js deleted file mode 100644 index e865748cc..000000000 --- a/icons-react/icons-js/smoking.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSmoking({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSmoking; \ No newline at end of file diff --git a/icons-react/icons-js/snowflake-off.js b/icons-react/icons-js/snowflake-off.js deleted file mode 100644 index a50e132f9..000000000 --- a/icons-react/icons-js/snowflake-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSnowflakeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSnowflakeOff; \ No newline at end of file diff --git a/icons-react/icons-js/snowflake.js b/icons-react/icons-js/snowflake.js deleted file mode 100644 index 2ac049fd0..000000000 --- a/icons-react/icons-js/snowflake.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSnowflake({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSnowflake; \ No newline at end of file diff --git a/icons-react/icons-js/snowman.js b/icons-react/icons-js/snowman.js deleted file mode 100644 index b312c05c8..000000000 --- a/icons-react/icons-js/snowman.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSnowman({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSnowman; \ No newline at end of file diff --git a/icons-react/icons-js/soccer-field.js b/icons-react/icons-js/soccer-field.js deleted file mode 100644 index 399c39a69..000000000 --- a/icons-react/icons-js/soccer-field.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSoccerField({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSoccerField; \ No newline at end of file diff --git a/icons-react/icons-js/social-off.js b/icons-react/icons-js/social-off.js deleted file mode 100644 index 981f10fe7..000000000 --- a/icons-react/icons-js/social-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSocialOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSocialOff; \ No newline at end of file diff --git a/icons-react/icons-js/social.js b/icons-react/icons-js/social.js deleted file mode 100644 index 439257e5f..000000000 --- a/icons-react/icons-js/social.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSocial({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSocial; \ No newline at end of file diff --git a/icons-react/icons-js/sock.js b/icons-react/icons-js/sock.js deleted file mode 100644 index 773b6e3d8..000000000 --- a/icons-react/icons-js/sock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSock; \ No newline at end of file diff --git a/icons-react/icons-js/sofa-off.js b/icons-react/icons-js/sofa-off.js deleted file mode 100644 index fda245b13..000000000 --- a/icons-react/icons-js/sofa-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSofaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSofaOff; \ No newline at end of file diff --git a/icons-react/icons-js/sofa.js b/icons-react/icons-js/sofa.js deleted file mode 100644 index feeabb93e..000000000 --- a/icons-react/icons-js/sofa.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSofa({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSofa; \ No newline at end of file diff --git a/icons-react/icons-js/sort-0-9.js b/icons-react/icons-js/sort-0-9.js deleted file mode 100644 index 77fe3284c..000000000 --- a/icons-react/icons-js/sort-0-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSort09({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSort09; \ No newline at end of file diff --git a/icons-react/icons-js/sort-9-0.js b/icons-react/icons-js/sort-9-0.js deleted file mode 100644 index 42015a617..000000000 --- a/icons-react/icons-js/sort-9-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSort90({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSort90; \ No newline at end of file diff --git a/icons-react/icons-js/sort-a-z.js b/icons-react/icons-js/sort-a-z.js deleted file mode 100644 index 48473bab4..000000000 --- a/icons-react/icons-js/sort-a-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortAZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortAZ; \ No newline at end of file diff --git a/icons-react/icons-js/sort-ascending-2.js b/icons-react/icons-js/sort-ascending-2.js deleted file mode 100644 index e2a1b50b9..000000000 --- a/icons-react/icons-js/sort-ascending-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortAscending2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortAscending2; \ No newline at end of file diff --git a/icons-react/icons-js/sort-ascending-letters.js b/icons-react/icons-js/sort-ascending-letters.js deleted file mode 100644 index 5d87b9a76..000000000 --- a/icons-react/icons-js/sort-ascending-letters.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortAscendingLetters({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortAscendingLetters; \ No newline at end of file diff --git a/icons-react/icons-js/sort-ascending-numbers.js b/icons-react/icons-js/sort-ascending-numbers.js deleted file mode 100644 index fc5a85540..000000000 --- a/icons-react/icons-js/sort-ascending-numbers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortAscendingNumbers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortAscendingNumbers; \ No newline at end of file diff --git a/icons-react/icons-js/sort-ascending.js b/icons-react/icons-js/sort-ascending.js deleted file mode 100644 index 3b1e8ae81..000000000 --- a/icons-react/icons-js/sort-ascending.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortAscending({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortAscending; \ No newline at end of file diff --git a/icons-react/icons-js/sort-descending-2.js b/icons-react/icons-js/sort-descending-2.js deleted file mode 100644 index f107cba1f..000000000 --- a/icons-react/icons-js/sort-descending-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortDescending2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortDescending2; \ No newline at end of file diff --git a/icons-react/icons-js/sort-descending-letters.js b/icons-react/icons-js/sort-descending-letters.js deleted file mode 100644 index 177613a7f..000000000 --- a/icons-react/icons-js/sort-descending-letters.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortDescendingLetters({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortDescendingLetters; \ No newline at end of file diff --git a/icons-react/icons-js/sort-descending-numbers.js b/icons-react/icons-js/sort-descending-numbers.js deleted file mode 100644 index 7314bec50..000000000 --- a/icons-react/icons-js/sort-descending-numbers.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortDescendingNumbers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortDescendingNumbers; \ No newline at end of file diff --git a/icons-react/icons-js/sort-descending.js b/icons-react/icons-js/sort-descending.js deleted file mode 100644 index 339bc1613..000000000 --- a/icons-react/icons-js/sort-descending.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortDescending({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortDescending; \ No newline at end of file diff --git a/icons-react/icons-js/sort-z-a.js b/icons-react/icons-js/sort-z-a.js deleted file mode 100644 index bd78d1602..000000000 --- a/icons-react/icons-js/sort-z-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSortZA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSortZA; \ No newline at end of file diff --git a/icons-react/icons-js/sos.js b/icons-react/icons-js/sos.js deleted file mode 100644 index 728ccf0bd..000000000 --- a/icons-react/icons-js/sos.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSos({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSos; \ No newline at end of file diff --git a/icons-react/icons-js/soup-off.js b/icons-react/icons-js/soup-off.js deleted file mode 100644 index d22fafa1d..000000000 --- a/icons-react/icons-js/soup-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSoupOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSoupOff; \ No newline at end of file diff --git a/icons-react/icons-js/soup.js b/icons-react/icons-js/soup.js deleted file mode 100644 index 3f0397ee3..000000000 --- a/icons-react/icons-js/soup.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSoup({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSoup; \ No newline at end of file diff --git a/icons-react/icons-js/source-code.js b/icons-react/icons-js/source-code.js deleted file mode 100644 index 518771b7a..000000000 --- a/icons-react/icons-js/source-code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSourceCode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSourceCode; \ No newline at end of file diff --git a/icons-react/icons-js/space-off.js b/icons-react/icons-js/space-off.js deleted file mode 100644 index 075b22820..000000000 --- a/icons-react/icons-js/space-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpaceOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpaceOff; \ No newline at end of file diff --git a/icons-react/icons-js/space.js b/icons-react/icons-js/space.js deleted file mode 100644 index fffc4fbd8..000000000 --- a/icons-react/icons-js/space.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpace({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpace; \ No newline at end of file diff --git a/icons-react/icons-js/spacing-horizontal.js b/icons-react/icons-js/spacing-horizontal.js deleted file mode 100644 index 68d95403c..000000000 --- a/icons-react/icons-js/spacing-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpacingHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpacingHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/spacing-vertical.js b/icons-react/icons-js/spacing-vertical.js deleted file mode 100644 index 9f8a13f7c..000000000 --- a/icons-react/icons-js/spacing-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpacingVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpacingVertical; \ No newline at end of file diff --git a/icons-react/icons-js/spade.js b/icons-react/icons-js/spade.js deleted file mode 100644 index e37d31fd2..000000000 --- a/icons-react/icons-js/spade.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpade({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpade; \ No newline at end of file diff --git a/icons-react/icons-js/speakerphone.js b/icons-react/icons-js/speakerphone.js deleted file mode 100644 index b8e4fbe6b..000000000 --- a/icons-react/icons-js/speakerphone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpeakerphone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpeakerphone; \ No newline at end of file diff --git a/icons-react/icons-js/speedboat.js b/icons-react/icons-js/speedboat.js deleted file mode 100644 index 72439178a..000000000 --- a/icons-react/icons-js/speedboat.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpeedboat({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpeedboat; \ No newline at end of file diff --git a/icons-react/icons-js/spider.js b/icons-react/icons-js/spider.js deleted file mode 100644 index 41539e4ad..000000000 --- a/icons-react/icons-js/spider.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpider({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpider; \ No newline at end of file diff --git a/icons-react/icons-js/spiral-off.js b/icons-react/icons-js/spiral-off.js deleted file mode 100644 index 1ec9c765d..000000000 --- a/icons-react/icons-js/spiral-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpiralOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpiralOff; \ No newline at end of file diff --git a/icons-react/icons-js/spiral.js b/icons-react/icons-js/spiral.js deleted file mode 100644 index 2ddcd3f9d..000000000 --- a/icons-react/icons-js/spiral.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpiral({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpiral; \ No newline at end of file diff --git a/icons-react/icons-js/sport-billard.js b/icons-react/icons-js/sport-billard.js deleted file mode 100644 index 198cf9aed..000000000 --- a/icons-react/icons-js/sport-billard.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSportBillard({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSportBillard; \ No newline at end of file diff --git a/icons-react/icons-js/spray.js b/icons-react/icons-js/spray.js deleted file mode 100644 index 759d8e92d..000000000 --- a/icons-react/icons-js/spray.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpray({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpray; \ No newline at end of file diff --git a/icons-react/icons-js/spy-off.js b/icons-react/icons-js/spy-off.js deleted file mode 100644 index 0e8e494c8..000000000 --- a/icons-react/icons-js/spy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpyOff; \ No newline at end of file diff --git a/icons-react/icons-js/spy.js b/icons-react/icons-js/spy.js deleted file mode 100644 index 5924e132e..000000000 --- a/icons-react/icons-js/spy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSpy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSpy; \ No newline at end of file diff --git a/icons-react/icons-js/square-0.js b/icons-react/icons-js/square-0.js deleted file mode 100644 index 75c75a974..000000000 --- a/icons-react/icons-js/square-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare0; \ No newline at end of file diff --git a/icons-react/icons-js/square-1.js b/icons-react/icons-js/square-1.js deleted file mode 100644 index 556afad43..000000000 --- a/icons-react/icons-js/square-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare1; \ No newline at end of file diff --git a/icons-react/icons-js/square-2.js b/icons-react/icons-js/square-2.js deleted file mode 100644 index 27b8af2fd..000000000 --- a/icons-react/icons-js/square-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare2; \ No newline at end of file diff --git a/icons-react/icons-js/square-3.js b/icons-react/icons-js/square-3.js deleted file mode 100644 index 26552ca33..000000000 --- a/icons-react/icons-js/square-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare3; \ No newline at end of file diff --git a/icons-react/icons-js/square-4.js b/icons-react/icons-js/square-4.js deleted file mode 100644 index 370914484..000000000 --- a/icons-react/icons-js/square-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare4; \ No newline at end of file diff --git a/icons-react/icons-js/square-5.js b/icons-react/icons-js/square-5.js deleted file mode 100644 index 923bbd0b4..000000000 --- a/icons-react/icons-js/square-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare5; \ No newline at end of file diff --git a/icons-react/icons-js/square-6.js b/icons-react/icons-js/square-6.js deleted file mode 100644 index 01e30c192..000000000 --- a/icons-react/icons-js/square-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare6; \ No newline at end of file diff --git a/icons-react/icons-js/square-7.js b/icons-react/icons-js/square-7.js deleted file mode 100644 index 70df7de88..000000000 --- a/icons-react/icons-js/square-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare7; \ No newline at end of file diff --git a/icons-react/icons-js/square-8.js b/icons-react/icons-js/square-8.js deleted file mode 100644 index 356f3994d..000000000 --- a/icons-react/icons-js/square-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare8; \ No newline at end of file diff --git a/icons-react/icons-js/square-9.js b/icons-react/icons-js/square-9.js deleted file mode 100644 index 2db9b0d60..000000000 --- a/icons-react/icons-js/square-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare9; \ No newline at end of file diff --git a/icons-react/icons-js/square-a.js b/icons-react/icons-js/square-a.js deleted file mode 100644 index bbc3ca31d..000000000 --- a/icons-react/icons-js/square-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareA; \ No newline at end of file diff --git a/icons-react/icons-js/square-arrow-down.js b/icons-react/icons-js/square-arrow-down.js deleted file mode 100644 index 54eb03033..000000000 --- a/icons-react/icons-js/square-arrow-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareArrowDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareArrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-arrow-left.js b/icons-react/icons-js/square-arrow-left.js deleted file mode 100644 index 910c5f3fe..000000000 --- a/icons-react/icons-js/square-arrow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareArrowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareArrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-arrow-right.js b/icons-react/icons-js/square-arrow-right.js deleted file mode 100644 index c398d09ee..000000000 --- a/icons-react/icons-js/square-arrow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareArrowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareArrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-arrow-up.js b/icons-react/icons-js/square-arrow-up.js deleted file mode 100644 index 43629dc55..000000000 --- a/icons-react/icons-js/square-arrow-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareArrowUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareArrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-asterisk.js b/icons-react/icons-js/square-asterisk.js deleted file mode 100644 index 1dd5354f5..000000000 --- a/icons-react/icons-js/square-asterisk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareAsterisk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareAsterisk; \ No newline at end of file diff --git a/icons-react/icons-js/square-b.js b/icons-react/icons-js/square-b.js deleted file mode 100644 index 932e59a1c..000000000 --- a/icons-react/icons-js/square-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareB; \ No newline at end of file diff --git a/icons-react/icons-js/square-c.js b/icons-react/icons-js/square-c.js deleted file mode 100644 index 44296b0aa..000000000 --- a/icons-react/icons-js/square-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareC; \ No newline at end of file diff --git a/icons-react/icons-js/square-check.js b/icons-react/icons-js/square-check.js deleted file mode 100644 index 77a559e47..000000000 --- a/icons-react/icons-js/square-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareCheck; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevron-down.js b/icons-react/icons-js/square-chevron-down.js deleted file mode 100644 index 47bfd774e..000000000 --- a/icons-react/icons-js/square-chevron-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevron-left.js b/icons-react/icons-js/square-chevron-left.js deleted file mode 100644 index 00a22d01b..000000000 --- a/icons-react/icons-js/square-chevron-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevron-right.js b/icons-react/icons-js/square-chevron-right.js deleted file mode 100644 index 94e2d28cc..000000000 --- a/icons-react/icons-js/square-chevron-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevron-up.js b/icons-react/icons-js/square-chevron-up.js deleted file mode 100644 index 88f2b1021..000000000 --- a/icons-react/icons-js/square-chevron-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevrons-down.js b/icons-react/icons-js/square-chevrons-down.js deleted file mode 100644 index 062b063d2..000000000 --- a/icons-react/icons-js/square-chevrons-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronsDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevrons-left.js b/icons-react/icons-js/square-chevrons-left.js deleted file mode 100644 index a1668fedf..000000000 --- a/icons-react/icons-js/square-chevrons-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronsLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevrons-right.js b/icons-react/icons-js/square-chevrons-right.js deleted file mode 100644 index dc0a66278..000000000 --- a/icons-react/icons-js/square-chevrons-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronsRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronsRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-chevrons-up.js b/icons-react/icons-js/square-chevrons-up.js deleted file mode 100644 index e68565654..000000000 --- a/icons-react/icons-js/square-chevrons-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareChevronsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareChevronsUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-d.js b/icons-react/icons-js/square-d.js deleted file mode 100644 index 5b4fef327..000000000 --- a/icons-react/icons-js/square-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareD; \ No newline at end of file diff --git a/icons-react/icons-js/square-dot.js b/icons-react/icons-js/square-dot.js deleted file mode 100644 index 3651bc457..000000000 --- a/icons-react/icons-js/square-dot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareDot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareDot; \ No newline at end of file diff --git a/icons-react/icons-js/square-e.js b/icons-react/icons-js/square-e.js deleted file mode 100644 index f0c3f4c69..000000000 --- a/icons-react/icons-js/square-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareE; \ No newline at end of file diff --git a/icons-react/icons-js/square-f.js b/icons-react/icons-js/square-f.js deleted file mode 100644 index 1b5aa457c..000000000 --- a/icons-react/icons-js/square-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF; \ No newline at end of file diff --git a/icons-react/icons-js/square-f0.js b/icons-react/icons-js/square-f0.js deleted file mode 100644 index bf35560fa..000000000 --- a/icons-react/icons-js/square-f0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF0; \ No newline at end of file diff --git a/icons-react/icons-js/square-f1.js b/icons-react/icons-js/square-f1.js deleted file mode 100644 index 52c063424..000000000 --- a/icons-react/icons-js/square-f1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF1; \ No newline at end of file diff --git a/icons-react/icons-js/square-f2.js b/icons-react/icons-js/square-f2.js deleted file mode 100644 index 0630ea91e..000000000 --- a/icons-react/icons-js/square-f2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF2; \ No newline at end of file diff --git a/icons-react/icons-js/square-f3.js b/icons-react/icons-js/square-f3.js deleted file mode 100644 index 0667f4eb4..000000000 --- a/icons-react/icons-js/square-f3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF3; \ No newline at end of file diff --git a/icons-react/icons-js/square-f4.js b/icons-react/icons-js/square-f4.js deleted file mode 100644 index 42544cb4e..000000000 --- a/icons-react/icons-js/square-f4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF4; \ No newline at end of file diff --git a/icons-react/icons-js/square-f5.js b/icons-react/icons-js/square-f5.js deleted file mode 100644 index 9117d1d3a..000000000 --- a/icons-react/icons-js/square-f5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF5; \ No newline at end of file diff --git a/icons-react/icons-js/square-f6.js b/icons-react/icons-js/square-f6.js deleted file mode 100644 index 527c14a95..000000000 --- a/icons-react/icons-js/square-f6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF6; \ No newline at end of file diff --git a/icons-react/icons-js/square-f7.js b/icons-react/icons-js/square-f7.js deleted file mode 100644 index e15964c00..000000000 --- a/icons-react/icons-js/square-f7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF7; \ No newline at end of file diff --git a/icons-react/icons-js/square-f8.js b/icons-react/icons-js/square-f8.js deleted file mode 100644 index cf34a95ea..000000000 --- a/icons-react/icons-js/square-f8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF8; \ No newline at end of file diff --git a/icons-react/icons-js/square-f9.js b/icons-react/icons-js/square-f9.js deleted file mode 100644 index 478751ecd..000000000 --- a/icons-react/icons-js/square-f9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareF9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareF9; \ No newline at end of file diff --git a/icons-react/icons-js/square-forbid-2.js b/icons-react/icons-js/square-forbid-2.js deleted file mode 100644 index de8f1e0fb..000000000 --- a/icons-react/icons-js/square-forbid-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareForbid2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/square-forbid.js b/icons-react/icons-js/square-forbid.js deleted file mode 100644 index 27ba77c26..000000000 --- a/icons-react/icons-js/square-forbid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareForbid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareForbid; \ No newline at end of file diff --git a/icons-react/icons-js/square-g.js b/icons-react/icons-js/square-g.js deleted file mode 100644 index 415e6cc89..000000000 --- a/icons-react/icons-js/square-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareG; \ No newline at end of file diff --git a/icons-react/icons-js/square-h.js b/icons-react/icons-js/square-h.js deleted file mode 100644 index fbb57d377..000000000 --- a/icons-react/icons-js/square-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareH; \ No newline at end of file diff --git a/icons-react/icons-js/square-half.js b/icons-react/icons-js/square-half.js deleted file mode 100644 index 66c0e5755..000000000 --- a/icons-react/icons-js/square-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareHalf; \ No newline at end of file diff --git a/icons-react/icons-js/square-i.js b/icons-react/icons-js/square-i.js deleted file mode 100644 index a6f09d446..000000000 --- a/icons-react/icons-js/square-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareI; \ No newline at end of file diff --git a/icons-react/icons-js/square-j.js b/icons-react/icons-js/square-j.js deleted file mode 100644 index 2c7082537..000000000 --- a/icons-react/icons-js/square-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareJ; \ No newline at end of file diff --git a/icons-react/icons-js/square-k.js b/icons-react/icons-js/square-k.js deleted file mode 100644 index dae469de6..000000000 --- a/icons-react/icons-js/square-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareK; \ No newline at end of file diff --git a/icons-react/icons-js/square-key.js b/icons-react/icons-js/square-key.js deleted file mode 100644 index 135a28fbb..000000000 --- a/icons-react/icons-js/square-key.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareKey({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareKey; \ No newline at end of file diff --git a/icons-react/icons-js/square-l.js b/icons-react/icons-js/square-l.js deleted file mode 100644 index e16f7b6ae..000000000 --- a/icons-react/icons-js/square-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareL; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-a.js b/icons-react/icons-js/square-letter-a.js deleted file mode 100644 index ec64a2173..000000000 --- a/icons-react/icons-js/square-letter-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-b.js b/icons-react/icons-js/square-letter-b.js deleted file mode 100644 index 44f81c32f..000000000 --- a/icons-react/icons-js/square-letter-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-c.js b/icons-react/icons-js/square-letter-c.js deleted file mode 100644 index 67f43ef2c..000000000 --- a/icons-react/icons-js/square-letter-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-d.js b/icons-react/icons-js/square-letter-d.js deleted file mode 100644 index cb8d8ad8e..000000000 --- a/icons-react/icons-js/square-letter-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-e.js b/icons-react/icons-js/square-letter-e.js deleted file mode 100644 index 719d92563..000000000 --- a/icons-react/icons-js/square-letter-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-f.js b/icons-react/icons-js/square-letter-f.js deleted file mode 100644 index afecb5e7a..000000000 --- a/icons-react/icons-js/square-letter-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-g.js b/icons-react/icons-js/square-letter-g.js deleted file mode 100644 index 78d6d5f6b..000000000 --- a/icons-react/icons-js/square-letter-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-h.js b/icons-react/icons-js/square-letter-h.js deleted file mode 100644 index e5498e7f0..000000000 --- a/icons-react/icons-js/square-letter-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-i.js b/icons-react/icons-js/square-letter-i.js deleted file mode 100644 index 8b84441a3..000000000 --- a/icons-react/icons-js/square-letter-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-j.js b/icons-react/icons-js/square-letter-j.js deleted file mode 100644 index c1e0d3c43..000000000 --- a/icons-react/icons-js/square-letter-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-k.js b/icons-react/icons-js/square-letter-k.js deleted file mode 100644 index 573ab13d3..000000000 --- a/icons-react/icons-js/square-letter-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-l.js b/icons-react/icons-js/square-letter-l.js deleted file mode 100644 index fb06e24c5..000000000 --- a/icons-react/icons-js/square-letter-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-m.js b/icons-react/icons-js/square-letter-m.js deleted file mode 100644 index a8c9d1d91..000000000 --- a/icons-react/icons-js/square-letter-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-n.js b/icons-react/icons-js/square-letter-n.js deleted file mode 100644 index 2720107d9..000000000 --- a/icons-react/icons-js/square-letter-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-o.js b/icons-react/icons-js/square-letter-o.js deleted file mode 100644 index a29f81c8e..000000000 --- a/icons-react/icons-js/square-letter-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-p.js b/icons-react/icons-js/square-letter-p.js deleted file mode 100644 index f0d1d118b..000000000 --- a/icons-react/icons-js/square-letter-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-q.js b/icons-react/icons-js/square-letter-q.js deleted file mode 100644 index 72d509bc3..000000000 --- a/icons-react/icons-js/square-letter-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-r.js b/icons-react/icons-js/square-letter-r.js deleted file mode 100644 index 1d72dd1e2..000000000 --- a/icons-react/icons-js/square-letter-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-s.js b/icons-react/icons-js/square-letter-s.js deleted file mode 100644 index de376ff6a..000000000 --- a/icons-react/icons-js/square-letter-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-t.js b/icons-react/icons-js/square-letter-t.js deleted file mode 100644 index e3ba6c44d..000000000 --- a/icons-react/icons-js/square-letter-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-u.js b/icons-react/icons-js/square-letter-u.js deleted file mode 100644 index c0e5f0b1e..000000000 --- a/icons-react/icons-js/square-letter-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-v.js b/icons-react/icons-js/square-letter-v.js deleted file mode 100644 index d43492372..000000000 --- a/icons-react/icons-js/square-letter-v.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterV({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-w.js b/icons-react/icons-js/square-letter-w.js deleted file mode 100644 index 9e69c43dc..000000000 --- a/icons-react/icons-js/square-letter-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-x.js b/icons-react/icons-js/square-letter-x.js deleted file mode 100644 index 6d16e0897..000000000 --- a/icons-react/icons-js/square-letter-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-y.js b/icons-react/icons-js/square-letter-y.js deleted file mode 100644 index 11ed9ec6b..000000000 --- a/icons-react/icons-js/square-letter-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/square-letter-z.js b/icons-react/icons-js/square-letter-z.js deleted file mode 100644 index 99b6890e6..000000000 --- a/icons-react/icons-js/square-letter-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareLetterZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/square-m.js b/icons-react/icons-js/square-m.js deleted file mode 100644 index 8977a361d..000000000 --- a/icons-react/icons-js/square-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareM; \ No newline at end of file diff --git a/icons-react/icons-js/square-minus.js b/icons-react/icons-js/square-minus.js deleted file mode 100644 index f1a4badb3..000000000 --- a/icons-react/icons-js/square-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareMinus; \ No newline at end of file diff --git a/icons-react/icons-js/square-n.js b/icons-react/icons-js/square-n.js deleted file mode 100644 index 03079cdd9..000000000 --- a/icons-react/icons-js/square-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareN; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-0.js b/icons-react/icons-js/square-number-0.js deleted file mode 100644 index 692724b0b..000000000 --- a/icons-react/icons-js/square-number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-1.js b/icons-react/icons-js/square-number-1.js deleted file mode 100644 index 8eaa1b3a4..000000000 --- a/icons-react/icons-js/square-number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-2.js b/icons-react/icons-js/square-number-2.js deleted file mode 100644 index 214aaa1dc..000000000 --- a/icons-react/icons-js/square-number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-3.js b/icons-react/icons-js/square-number-3.js deleted file mode 100644 index c5b7c4b56..000000000 --- a/icons-react/icons-js/square-number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-4.js b/icons-react/icons-js/square-number-4.js deleted file mode 100644 index 067f71a66..000000000 --- a/icons-react/icons-js/square-number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-5.js b/icons-react/icons-js/square-number-5.js deleted file mode 100644 index 666231dd1..000000000 --- a/icons-react/icons-js/square-number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-6.js b/icons-react/icons-js/square-number-6.js deleted file mode 100644 index 17651b73d..000000000 --- a/icons-react/icons-js/square-number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-7.js b/icons-react/icons-js/square-number-7.js deleted file mode 100644 index 7d0c059b6..000000000 --- a/icons-react/icons-js/square-number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-8.js b/icons-react/icons-js/square-number-8.js deleted file mode 100644 index a30a8ec52..000000000 --- a/icons-react/icons-js/square-number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/square-number-9.js b/icons-react/icons-js/square-number-9.js deleted file mode 100644 index 2b9ccbe24..000000000 --- a/icons-react/icons-js/square-number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/square-o.js b/icons-react/icons-js/square-o.js deleted file mode 100644 index c29d6f931..000000000 --- a/icons-react/icons-js/square-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareO; \ No newline at end of file diff --git a/icons-react/icons-js/square-off.js b/icons-react/icons-js/square-off.js deleted file mode 100644 index e86c261e6..000000000 --- a/icons-react/icons-js/square-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareOff; \ No newline at end of file diff --git a/icons-react/icons-js/square-p.js b/icons-react/icons-js/square-p.js deleted file mode 100644 index ecb16d4b9..000000000 --- a/icons-react/icons-js/square-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareP; \ No newline at end of file diff --git a/icons-react/icons-js/square-plus.js b/icons-react/icons-js/square-plus.js deleted file mode 100644 index 9f8c52f54..000000000 --- a/icons-react/icons-js/square-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquarePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquarePlus; \ No newline at end of file diff --git a/icons-react/icons-js/square-q.js b/icons-react/icons-js/square-q.js deleted file mode 100644 index 779e598f7..000000000 --- a/icons-react/icons-js/square-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareQ; \ No newline at end of file diff --git a/icons-react/icons-js/square-r.js b/icons-react/icons-js/square-r.js deleted file mode 100644 index 4fe1688d3..000000000 --- a/icons-react/icons-js/square-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareR; \ No newline at end of file diff --git a/icons-react/icons-js/square-root-2.js b/icons-react/icons-js/square-root-2.js deleted file mode 100644 index 6d3877014..000000000 --- a/icons-react/icons-js/square-root-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoot2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoot2; \ No newline at end of file diff --git a/icons-react/icons-js/square-root.js b/icons-react/icons-js/square-root.js deleted file mode 100644 index 1a728fafe..000000000 --- a/icons-react/icons-js/square-root.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoot; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid-2.js b/icons-react/icons-js/square-rotated-forbid-2.js deleted file mode 100644 index 04aafdf9a..000000000 --- a/icons-react/icons-js/square-rotated-forbid-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRotatedForbid2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRotatedForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid.js b/icons-react/icons-js/square-rotated-forbid.js deleted file mode 100644 index ea59ea364..000000000 --- a/icons-react/icons-js/square-rotated-forbid.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRotatedForbid({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRotatedForbid; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-off.js b/icons-react/icons-js/square-rotated-off.js deleted file mode 100644 index 6d366b22a..000000000 --- a/icons-react/icons-js/square-rotated-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRotatedOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRotatedOff; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated.js b/icons-react/icons-js/square-rotated.js deleted file mode 100644 index 3d11f3857..000000000 --- a/icons-react/icons-js/square-rotated.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRotated({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRotated; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-arrow-down.js b/icons-react/icons-js/square-rounded-arrow-down.js deleted file mode 100644 index 8823b8470..000000000 --- a/icons-react/icons-js/square-rounded-arrow-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedArrowDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedArrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-arrow-left.js b/icons-react/icons-js/square-rounded-arrow-left.js deleted file mode 100644 index 93c84d998..000000000 --- a/icons-react/icons-js/square-rounded-arrow-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedArrowLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedArrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-arrow-right.js b/icons-react/icons-js/square-rounded-arrow-right.js deleted file mode 100644 index 082632e9c..000000000 --- a/icons-react/icons-js/square-rounded-arrow-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedArrowRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedArrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-arrow-up.js b/icons-react/icons-js/square-rounded-arrow-up.js deleted file mode 100644 index 693e2d5be..000000000 --- a/icons-react/icons-js/square-rounded-arrow-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedArrowUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedArrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-check.js b/icons-react/icons-js/square-rounded-check.js deleted file mode 100644 index ff9d04033..000000000 --- a/icons-react/icons-js/square-rounded-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedCheck; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevron-down.js b/icons-react/icons-js/square-rounded-chevron-down.js deleted file mode 100644 index f45411cd5..000000000 --- a/icons-react/icons-js/square-rounded-chevron-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevron-left.js b/icons-react/icons-js/square-rounded-chevron-left.js deleted file mode 100644 index 33d07c85c..000000000 --- a/icons-react/icons-js/square-rounded-chevron-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevron-right.js b/icons-react/icons-js/square-rounded-chevron-right.js deleted file mode 100644 index 109ae690b..000000000 --- a/icons-react/icons-js/square-rounded-chevron-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevron-up.js b/icons-react/icons-js/square-rounded-chevron-up.js deleted file mode 100644 index 3800cb0af..000000000 --- a/icons-react/icons-js/square-rounded-chevron-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevrons-down.js b/icons-react/icons-js/square-rounded-chevrons-down.js deleted file mode 100644 index c68554db3..000000000 --- a/icons-react/icons-js/square-rounded-chevrons-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronsDown; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevrons-left.js b/icons-react/icons-js/square-rounded-chevrons-left.js deleted file mode 100644 index abf110fa4..000000000 --- a/icons-react/icons-js/square-rounded-chevrons-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronsLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevrons-right.js b/icons-react/icons-js/square-rounded-chevrons-right.js deleted file mode 100644 index 7f519450d..000000000 --- a/icons-react/icons-js/square-rounded-chevrons-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronsRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronsRight; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-chevrons-up.js b/icons-react/icons-js/square-rounded-chevrons-up.js deleted file mode 100644 index cc58cb80c..000000000 --- a/icons-react/icons-js/square-rounded-chevrons-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedChevronsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedChevronsUp; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-a.js b/icons-react/icons-js/square-rounded-letter-a.js deleted file mode 100644 index 6b12c8c19..000000000 --- a/icons-react/icons-js/square-rounded-letter-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-b.js b/icons-react/icons-js/square-rounded-letter-b.js deleted file mode 100644 index d475dd864..000000000 --- a/icons-react/icons-js/square-rounded-letter-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-c.js b/icons-react/icons-js/square-rounded-letter-c.js deleted file mode 100644 index 007feda35..000000000 --- a/icons-react/icons-js/square-rounded-letter-c.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterC({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-d.js b/icons-react/icons-js/square-rounded-letter-d.js deleted file mode 100644 index ad00c7681..000000000 --- a/icons-react/icons-js/square-rounded-letter-d.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterD({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-e.js b/icons-react/icons-js/square-rounded-letter-e.js deleted file mode 100644 index e05735ab9..000000000 --- a/icons-react/icons-js/square-rounded-letter-e.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterE({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-f.js b/icons-react/icons-js/square-rounded-letter-f.js deleted file mode 100644 index ad630b0c0..000000000 --- a/icons-react/icons-js/square-rounded-letter-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-g.js b/icons-react/icons-js/square-rounded-letter-g.js deleted file mode 100644 index 3381db74c..000000000 --- a/icons-react/icons-js/square-rounded-letter-g.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterG({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-h.js b/icons-react/icons-js/square-rounded-letter-h.js deleted file mode 100644 index cebacae5e..000000000 --- a/icons-react/icons-js/square-rounded-letter-h.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterH({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-i.js b/icons-react/icons-js/square-rounded-letter-i.js deleted file mode 100644 index c8d6909b5..000000000 --- a/icons-react/icons-js/square-rounded-letter-i.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterI({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-j.js b/icons-react/icons-js/square-rounded-letter-j.js deleted file mode 100644 index bfe88d01b..000000000 --- a/icons-react/icons-js/square-rounded-letter-j.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterJ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-k.js b/icons-react/icons-js/square-rounded-letter-k.js deleted file mode 100644 index ede10b239..000000000 --- a/icons-react/icons-js/square-rounded-letter-k.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterK({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-l.js b/icons-react/icons-js/square-rounded-letter-l.js deleted file mode 100644 index 304704c4b..000000000 --- a/icons-react/icons-js/square-rounded-letter-l.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterL({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-m.js b/icons-react/icons-js/square-rounded-letter-m.js deleted file mode 100644 index da9949657..000000000 --- a/icons-react/icons-js/square-rounded-letter-m.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterM({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-n.js b/icons-react/icons-js/square-rounded-letter-n.js deleted file mode 100644 index 6faae64dd..000000000 --- a/icons-react/icons-js/square-rounded-letter-n.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterN({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-o.js b/icons-react/icons-js/square-rounded-letter-o.js deleted file mode 100644 index 4b1439768..000000000 --- a/icons-react/icons-js/square-rounded-letter-o.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterO({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-p.js b/icons-react/icons-js/square-rounded-letter-p.js deleted file mode 100644 index 928c9c6bc..000000000 --- a/icons-react/icons-js/square-rounded-letter-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-q.js b/icons-react/icons-js/square-rounded-letter-q.js deleted file mode 100644 index 44e7fedfe..000000000 --- a/icons-react/icons-js/square-rounded-letter-q.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterQ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-r.js b/icons-react/icons-js/square-rounded-letter-r.js deleted file mode 100644 index 02081a553..000000000 --- a/icons-react/icons-js/square-rounded-letter-r.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterR({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-s.js b/icons-react/icons-js/square-rounded-letter-s.js deleted file mode 100644 index 7f71ee3ec..000000000 --- a/icons-react/icons-js/square-rounded-letter-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-t.js b/icons-react/icons-js/square-rounded-letter-t.js deleted file mode 100644 index 04727d04e..000000000 --- a/icons-react/icons-js/square-rounded-letter-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-u.js b/icons-react/icons-js/square-rounded-letter-u.js deleted file mode 100644 index 0de2f7937..000000000 --- a/icons-react/icons-js/square-rounded-letter-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-v.js b/icons-react/icons-js/square-rounded-letter-v.js deleted file mode 100644 index 2c8b99a79..000000000 --- a/icons-react/icons-js/square-rounded-letter-v.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterV({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-w.js b/icons-react/icons-js/square-rounded-letter-w.js deleted file mode 100644 index 35118a429..000000000 --- a/icons-react/icons-js/square-rounded-letter-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-x.js b/icons-react/icons-js/square-rounded-letter-x.js deleted file mode 100644 index 7038f262a..000000000 --- a/icons-react/icons-js/square-rounded-letter-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-y.js b/icons-react/icons-js/square-rounded-letter-y.js deleted file mode 100644 index 9b319171d..000000000 --- a/icons-react/icons-js/square-rounded-letter-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-letter-z.js b/icons-react/icons-js/square-rounded-letter-z.js deleted file mode 100644 index 5b6ef2fbe..000000000 --- a/icons-react/icons-js/square-rounded-letter-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedLetterZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-minus.js b/icons-react/icons-js/square-rounded-minus.js deleted file mode 100644 index e1c4793ea..000000000 --- a/icons-react/icons-js/square-rounded-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedMinus; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-0.js b/icons-react/icons-js/square-rounded-number-0.js deleted file mode 100644 index ea1a23bb7..000000000 --- a/icons-react/icons-js/square-rounded-number-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber0; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-1.js b/icons-react/icons-js/square-rounded-number-1.js deleted file mode 100644 index 02e6f59d6..000000000 --- a/icons-react/icons-js/square-rounded-number-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber1; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-2.js b/icons-react/icons-js/square-rounded-number-2.js deleted file mode 100644 index 7d0ba7533..000000000 --- a/icons-react/icons-js/square-rounded-number-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber2; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-3.js b/icons-react/icons-js/square-rounded-number-3.js deleted file mode 100644 index 43ae3a2ac..000000000 --- a/icons-react/icons-js/square-rounded-number-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber3; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-4.js b/icons-react/icons-js/square-rounded-number-4.js deleted file mode 100644 index 2c9a491e4..000000000 --- a/icons-react/icons-js/square-rounded-number-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber4; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-5.js b/icons-react/icons-js/square-rounded-number-5.js deleted file mode 100644 index a0b0f6baa..000000000 --- a/icons-react/icons-js/square-rounded-number-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber5; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-6.js b/icons-react/icons-js/square-rounded-number-6.js deleted file mode 100644 index 6c19e36b9..000000000 --- a/icons-react/icons-js/square-rounded-number-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber6; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-7.js b/icons-react/icons-js/square-rounded-number-7.js deleted file mode 100644 index fd7fc9580..000000000 --- a/icons-react/icons-js/square-rounded-number-7.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber7({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber7; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-8.js b/icons-react/icons-js/square-rounded-number-8.js deleted file mode 100644 index 108d91540..000000000 --- a/icons-react/icons-js/square-rounded-number-8.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber8({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber8; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-number-9.js b/icons-react/icons-js/square-rounded-number-9.js deleted file mode 100644 index eee25b20a..000000000 --- a/icons-react/icons-js/square-rounded-number-9.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedNumber9({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedNumber9; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-plus.js b/icons-react/icons-js/square-rounded-plus.js deleted file mode 100644 index c25625ec3..000000000 --- a/icons-react/icons-js/square-rounded-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedPlus; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded-x.js b/icons-react/icons-js/square-rounded-x.js deleted file mode 100644 index d40ef828c..000000000 --- a/icons-react/icons-js/square-rounded-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRoundedX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRoundedX; \ No newline at end of file diff --git a/icons-react/icons-js/square-rounded.js b/icons-react/icons-js/square-rounded.js deleted file mode 100644 index 5072dd327..000000000 --- a/icons-react/icons-js/square-rounded.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareRounded({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareRounded; \ No newline at end of file diff --git a/icons-react/icons-js/square-s.js b/icons-react/icons-js/square-s.js deleted file mode 100644 index aaddfc2b9..000000000 --- a/icons-react/icons-js/square-s.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareS({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareS; \ No newline at end of file diff --git a/icons-react/icons-js/square-t.js b/icons-react/icons-js/square-t.js deleted file mode 100644 index 88b84a2ca..000000000 --- a/icons-react/icons-js/square-t.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareT({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareT; \ No newline at end of file diff --git a/icons-react/icons-js/square-toggle-horizontal.js b/icons-react/icons-js/square-toggle-horizontal.js deleted file mode 100644 index 66e7aff75..000000000 --- a/icons-react/icons-js/square-toggle-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareToggleHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareToggleHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/square-toggle.js b/icons-react/icons-js/square-toggle.js deleted file mode 100644 index 353af28c0..000000000 --- a/icons-react/icons-js/square-toggle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareToggle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareToggle; \ No newline at end of file diff --git a/icons-react/icons-js/square-u.js b/icons-react/icons-js/square-u.js deleted file mode 100644 index e31ddec4c..000000000 --- a/icons-react/icons-js/square-u.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareU({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareU; \ No newline at end of file diff --git a/icons-react/icons-js/square-w.js b/icons-react/icons-js/square-w.js deleted file mode 100644 index e155320df..000000000 --- a/icons-react/icons-js/square-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareW; \ No newline at end of file diff --git a/icons-react/icons-js/square-x.js b/icons-react/icons-js/square-x.js deleted file mode 100644 index ef22a09d8..000000000 --- a/icons-react/icons-js/square-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareX; \ No newline at end of file diff --git a/icons-react/icons-js/square-y.js b/icons-react/icons-js/square-y.js deleted file mode 100644 index 57e625a54..000000000 --- a/icons-react/icons-js/square-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareY; \ No newline at end of file diff --git a/icons-react/icons-js/square-z.js b/icons-react/icons-js/square-z.js deleted file mode 100644 index 5f0f5164e..000000000 --- a/icons-react/icons-js/square-z.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquareZ({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquareZ; \ No newline at end of file diff --git a/icons-react/icons-js/square.js b/icons-react/icons-js/square.js deleted file mode 100644 index d2c8dbc1a..000000000 --- a/icons-react/icons-js/square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquare; \ No newline at end of file diff --git a/icons-react/icons-js/squares-diagonal.js b/icons-react/icons-js/squares-diagonal.js deleted file mode 100644 index 84b7e18de..000000000 --- a/icons-react/icons-js/squares-diagonal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquaresDiagonal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquaresDiagonal; \ No newline at end of file diff --git a/icons-react/icons-js/squares-filled.js b/icons-react/icons-js/squares-filled.js deleted file mode 100644 index 39fa9c8e5..000000000 --- a/icons-react/icons-js/squares-filled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSquaresFilled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSquaresFilled; \ No newline at end of file diff --git a/icons-react/icons-js/stack-2.js b/icons-react/icons-js/stack-2.js deleted file mode 100644 index 3e39436d9..000000000 --- a/icons-react/icons-js/stack-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStack2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStack2; \ No newline at end of file diff --git a/icons-react/icons-js/stack-3.js b/icons-react/icons-js/stack-3.js deleted file mode 100644 index 6350fe999..000000000 --- a/icons-react/icons-js/stack-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStack3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStack3; \ No newline at end of file diff --git a/icons-react/icons-js/stack-pop.js b/icons-react/icons-js/stack-pop.js deleted file mode 100644 index 80c358b4f..000000000 --- a/icons-react/icons-js/stack-pop.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStackPop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStackPop; \ No newline at end of file diff --git a/icons-react/icons-js/stack-push.js b/icons-react/icons-js/stack-push.js deleted file mode 100644 index fa2bea207..000000000 --- a/icons-react/icons-js/stack-push.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStackPush({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStackPush; \ No newline at end of file diff --git a/icons-react/icons-js/stack.js b/icons-react/icons-js/stack.js deleted file mode 100644 index d3d27ff97..000000000 --- a/icons-react/icons-js/stack.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStack; \ No newline at end of file diff --git a/icons-react/icons-js/stairs-down.js b/icons-react/icons-js/stairs-down.js deleted file mode 100644 index a1f0d2faf..000000000 --- a/icons-react/icons-js/stairs-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStairsDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStairsDown; \ No newline at end of file diff --git a/icons-react/icons-js/stairs-up.js b/icons-react/icons-js/stairs-up.js deleted file mode 100644 index 3305e4c69..000000000 --- a/icons-react/icons-js/stairs-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStairsUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStairsUp; \ No newline at end of file diff --git a/icons-react/icons-js/stairs.js b/icons-react/icons-js/stairs.js deleted file mode 100644 index 922521257..000000000 --- a/icons-react/icons-js/stairs.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStairs({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStairs; \ No newline at end of file diff --git a/icons-react/icons-js/star-half.js b/icons-react/icons-js/star-half.js deleted file mode 100644 index d9a0d28fe..000000000 --- a/icons-react/icons-js/star-half.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStarHalf({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStarHalf; \ No newline at end of file diff --git a/icons-react/icons-js/star-off.js b/icons-react/icons-js/star-off.js deleted file mode 100644 index 5c406bdc0..000000000 --- a/icons-react/icons-js/star-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStarOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStarOff; \ No newline at end of file diff --git a/icons-react/icons-js/star.js b/icons-react/icons-js/star.js deleted file mode 100644 index 12d8974b4..000000000 --- a/icons-react/icons-js/star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStar; \ No newline at end of file diff --git a/icons-react/icons-js/stars-off.js b/icons-react/icons-js/stars-off.js deleted file mode 100644 index 4a7c04f0f..000000000 --- a/icons-react/icons-js/stars-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStarsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStarsOff; \ No newline at end of file diff --git a/icons-react/icons-js/stars.js b/icons-react/icons-js/stars.js deleted file mode 100644 index 62bc0a310..000000000 --- a/icons-react/icons-js/stars.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStars({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStars; \ No newline at end of file diff --git a/icons-react/icons-js/status-change.js b/icons-react/icons-js/status-change.js deleted file mode 100644 index 750f419b2..000000000 --- a/icons-react/icons-js/status-change.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStatusChange({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStatusChange; \ No newline at end of file diff --git a/icons-react/icons-js/steam.js b/icons-react/icons-js/steam.js deleted file mode 100644 index 57e8658e9..000000000 --- a/icons-react/icons-js/steam.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSteam({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSteam; \ No newline at end of file diff --git a/icons-react/icons-js/steering-wheel-off.js b/icons-react/icons-js/steering-wheel-off.js deleted file mode 100644 index d024f0003..000000000 --- a/icons-react/icons-js/steering-wheel-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSteeringWheelOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSteeringWheelOff; \ No newline at end of file diff --git a/icons-react/icons-js/steering-wheel.js b/icons-react/icons-js/steering-wheel.js deleted file mode 100644 index 163b89f50..000000000 --- a/icons-react/icons-js/steering-wheel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSteeringWheel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSteeringWheel; \ No newline at end of file diff --git a/icons-react/icons-js/step-into.js b/icons-react/icons-js/step-into.js deleted file mode 100644 index fde5d8b46..000000000 --- a/icons-react/icons-js/step-into.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStepInto({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStepInto; \ No newline at end of file diff --git a/icons-react/icons-js/step-out.js b/icons-react/icons-js/step-out.js deleted file mode 100644 index 70efaa07c..000000000 --- a/icons-react/icons-js/step-out.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStepOut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStepOut; \ No newline at end of file diff --git a/icons-react/icons-js/stereo-glasses.js b/icons-react/icons-js/stereo-glasses.js deleted file mode 100644 index 3c662c973..000000000 --- a/icons-react/icons-js/stereo-glasses.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStereoGlasses({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStereoGlasses; \ No newline at end of file diff --git a/icons-react/icons-js/stethoscope-off.js b/icons-react/icons-js/stethoscope-off.js deleted file mode 100644 index ec2ecf321..000000000 --- a/icons-react/icons-js/stethoscope-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStethoscopeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStethoscopeOff; \ No newline at end of file diff --git a/icons-react/icons-js/stethoscope.js b/icons-react/icons-js/stethoscope.js deleted file mode 100644 index 451d2fe5e..000000000 --- a/icons-react/icons-js/stethoscope.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStethoscope({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStethoscope; \ No newline at end of file diff --git a/icons-react/icons-js/sthetoscope.js b/icons-react/icons-js/sthetoscope.js deleted file mode 100644 index f5826076c..000000000 --- a/icons-react/icons-js/sthetoscope.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSthetoscope({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSthetoscope; \ No newline at end of file diff --git a/icons-react/icons-js/sticker.js b/icons-react/icons-js/sticker.js deleted file mode 100644 index c569acf83..000000000 --- a/icons-react/icons-js/sticker.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSticker({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSticker; \ No newline at end of file diff --git a/icons-react/icons-js/storm-off.js b/icons-react/icons-js/storm-off.js deleted file mode 100644 index a5e7e651b..000000000 --- a/icons-react/icons-js/storm-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStormOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStormOff; \ No newline at end of file diff --git a/icons-react/icons-js/storm.js b/icons-react/icons-js/storm.js deleted file mode 100644 index 244bc6c94..000000000 --- a/icons-react/icons-js/storm.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStorm({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStorm; \ No newline at end of file diff --git a/icons-react/icons-js/stretching.js b/icons-react/icons-js/stretching.js deleted file mode 100644 index c25a33814..000000000 --- a/icons-react/icons-js/stretching.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStretching({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStretching; \ No newline at end of file diff --git a/icons-react/icons-js/strikethrough.js b/icons-react/icons-js/strikethrough.js deleted file mode 100644 index fea31c0f1..000000000 --- a/icons-react/icons-js/strikethrough.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconStrikethrough({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconStrikethrough; \ No newline at end of file diff --git a/icons-react/icons-js/submarine.js b/icons-react/icons-js/submarine.js deleted file mode 100644 index 21ca2de41..000000000 --- a/icons-react/icons-js/submarine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSubmarine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSubmarine; \ No newline at end of file diff --git a/icons-react/icons-js/subscript.js b/icons-react/icons-js/subscript.js deleted file mode 100644 index 261a7757f..000000000 --- a/icons-react/icons-js/subscript.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSubscript({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSubscript; \ No newline at end of file diff --git a/icons-react/icons-js/subtask.js b/icons-react/icons-js/subtask.js deleted file mode 100644 index de29d6fee..000000000 --- a/icons-react/icons-js/subtask.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSubtask({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSubtask; \ No newline at end of file diff --git a/icons-react/icons-js/sum-off.js b/icons-react/icons-js/sum-off.js deleted file mode 100644 index b46ec6400..000000000 --- a/icons-react/icons-js/sum-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSumOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSumOff; \ No newline at end of file diff --git a/icons-react/icons-js/sum.js b/icons-react/icons-js/sum.js deleted file mode 100644 index b2d181896..000000000 --- a/icons-react/icons-js/sum.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSum({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSum; \ No newline at end of file diff --git a/icons-react/icons-js/sun-high.js b/icons-react/icons-js/sun-high.js deleted file mode 100644 index a9c5db5b7..000000000 --- a/icons-react/icons-js/sun-high.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunHigh({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunHigh; \ No newline at end of file diff --git a/icons-react/icons-js/sun-low.js b/icons-react/icons-js/sun-low.js deleted file mode 100644 index 69619e435..000000000 --- a/icons-react/icons-js/sun-low.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunLow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunLow; \ No newline at end of file diff --git a/icons-react/icons-js/sun-moon.js b/icons-react/icons-js/sun-moon.js deleted file mode 100644 index ffe984bb6..000000000 --- a/icons-react/icons-js/sun-moon.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunMoon({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunMoon; \ No newline at end of file diff --git a/icons-react/icons-js/sun-off.js b/icons-react/icons-js/sun-off.js deleted file mode 100644 index f3b889951..000000000 --- a/icons-react/icons-js/sun-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunOff; \ No newline at end of file diff --git a/icons-react/icons-js/sun-wind.js b/icons-react/icons-js/sun-wind.js deleted file mode 100644 index 0f0ed16d4..000000000 --- a/icons-react/icons-js/sun-wind.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunWind({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunWind; \ No newline at end of file diff --git a/icons-react/icons-js/sun.js b/icons-react/icons-js/sun.js deleted file mode 100644 index b5479213a..000000000 --- a/icons-react/icons-js/sun.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSun({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSun; \ No newline at end of file diff --git a/icons-react/icons-js/sunglasses.js b/icons-react/icons-js/sunglasses.js deleted file mode 100644 index 10ba19183..000000000 --- a/icons-react/icons-js/sunglasses.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunglasses({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunglasses; \ No newline at end of file diff --git a/icons-react/icons-js/sunrise.js b/icons-react/icons-js/sunrise.js deleted file mode 100644 index 46a9644b7..000000000 --- a/icons-react/icons-js/sunrise.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunrise({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunrise; \ No newline at end of file diff --git a/icons-react/icons-js/sunset-2.js b/icons-react/icons-js/sunset-2.js deleted file mode 100644 index 36238e645..000000000 --- a/icons-react/icons-js/sunset-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunset2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunset2; \ No newline at end of file diff --git a/icons-react/icons-js/sunset.js b/icons-react/icons-js/sunset.js deleted file mode 100644 index b468d24d6..000000000 --- a/icons-react/icons-js/sunset.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunset({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunset; \ No newline at end of file diff --git a/icons-react/icons-js/sunshine.js b/icons-react/icons-js/sunshine.js deleted file mode 100644 index eb977e6ce..000000000 --- a/icons-react/icons-js/sunshine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSunshine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSunshine; \ No newline at end of file diff --git a/icons-react/icons-js/superscript.js b/icons-react/icons-js/superscript.js deleted file mode 100644 index 1e3853429..000000000 --- a/icons-react/icons-js/superscript.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSuperscript({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSuperscript; \ No newline at end of file diff --git a/icons-react/icons-js/svg.js b/icons-react/icons-js/svg.js deleted file mode 100644 index 0bd19b54c..000000000 --- a/icons-react/icons-js/svg.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSvg({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSvg; \ No newline at end of file diff --git a/icons-react/icons-js/swimming.js b/icons-react/icons-js/swimming.js deleted file mode 100644 index a3cf77164..000000000 --- a/icons-react/icons-js/swimming.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwimming({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwimming; \ No newline at end of file diff --git a/icons-react/icons-js/swipe.js b/icons-react/icons-js/swipe.js deleted file mode 100644 index 31f669f48..000000000 --- a/icons-react/icons-js/swipe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwipe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwipe; \ No newline at end of file diff --git a/icons-react/icons-js/switch-2.js b/icons-react/icons-js/switch-2.js deleted file mode 100644 index 4606fb1a3..000000000 --- a/icons-react/icons-js/switch-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwitch2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwitch2; \ No newline at end of file diff --git a/icons-react/icons-js/switch-3.js b/icons-react/icons-js/switch-3.js deleted file mode 100644 index 5b53501b5..000000000 --- a/icons-react/icons-js/switch-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwitch3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwitch3; \ No newline at end of file diff --git a/icons-react/icons-js/switch-horizontal.js b/icons-react/icons-js/switch-horizontal.js deleted file mode 100644 index b00ec0faf..000000000 --- a/icons-react/icons-js/switch-horizontal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwitchHorizontal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwitchHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/switch-vertical.js b/icons-react/icons-js/switch-vertical.js deleted file mode 100644 index 323154437..000000000 --- a/icons-react/icons-js/switch-vertical.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwitchVertical({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwitchVertical; \ No newline at end of file diff --git a/icons-react/icons-js/switch.js b/icons-react/icons-js/switch.js deleted file mode 100644 index 2bbc43401..000000000 --- a/icons-react/icons-js/switch.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwitch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwitch; \ No newline at end of file diff --git a/icons-react/icons-js/sword-off.js b/icons-react/icons-js/sword-off.js deleted file mode 100644 index 322fdb65c..000000000 --- a/icons-react/icons-js/sword-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwordOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwordOff; \ No newline at end of file diff --git a/icons-react/icons-js/sword.js b/icons-react/icons-js/sword.js deleted file mode 100644 index a20827faa..000000000 --- a/icons-react/icons-js/sword.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSword({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSword; \ No newline at end of file diff --git a/icons-react/icons-js/swords.js b/icons-react/icons-js/swords.js deleted file mode 100644 index 034ae10a3..000000000 --- a/icons-react/icons-js/swords.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconSwords({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconSwords; \ No newline at end of file diff --git a/icons-react/icons-js/table-alias.js b/icons-react/icons-js/table-alias.js deleted file mode 100644 index e50dda2be..000000000 --- a/icons-react/icons-js/table-alias.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableAlias({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableAlias; \ No newline at end of file diff --git a/icons-react/icons-js/table-export.js b/icons-react/icons-js/table-export.js deleted file mode 100644 index c4ec02a24..000000000 --- a/icons-react/icons-js/table-export.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableExport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableExport; \ No newline at end of file diff --git a/icons-react/icons-js/table-import.js b/icons-react/icons-js/table-import.js deleted file mode 100644 index b21e353b5..000000000 --- a/icons-react/icons-js/table-import.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableImport({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableImport; \ No newline at end of file diff --git a/icons-react/icons-js/table-off.js b/icons-react/icons-js/table-off.js deleted file mode 100644 index af40fdcd0..000000000 --- a/icons-react/icons-js/table-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableOff; \ No newline at end of file diff --git a/icons-react/icons-js/table-options.js b/icons-react/icons-js/table-options.js deleted file mode 100644 index 0c76aa2da..000000000 --- a/icons-react/icons-js/table-options.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableOptions({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableOptions; \ No newline at end of file diff --git a/icons-react/icons-js/table-shortcut.js b/icons-react/icons-js/table-shortcut.js deleted file mode 100644 index 872e5c3ad..000000000 --- a/icons-react/icons-js/table-shortcut.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTableShortcut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTableShortcut; \ No newline at end of file diff --git a/icons-react/icons-js/table.js b/icons-react/icons-js/table.js deleted file mode 100644 index 079bc9965..000000000 --- a/icons-react/icons-js/table.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTable({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTable; \ No newline at end of file diff --git a/icons-react/icons-js/tag-off.js b/icons-react/icons-js/tag-off.js deleted file mode 100644 index a0021c315..000000000 --- a/icons-react/icons-js/tag-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTagOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTagOff; \ No newline at end of file diff --git a/icons-react/icons-js/tag.js b/icons-react/icons-js/tag.js deleted file mode 100644 index 038f0aee7..000000000 --- a/icons-react/icons-js/tag.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTag({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTag; \ No newline at end of file diff --git a/icons-react/icons-js/tags-off.js b/icons-react/icons-js/tags-off.js deleted file mode 100644 index f1d3aaaa1..000000000 --- a/icons-react/icons-js/tags-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTagsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTagsOff; \ No newline at end of file diff --git a/icons-react/icons-js/tags.js b/icons-react/icons-js/tags.js deleted file mode 100644 index 7e5259525..000000000 --- a/icons-react/icons-js/tags.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTags({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTags; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-1.js b/icons-react/icons-js/tallymark-1.js deleted file mode 100644 index c8e8f7b2f..000000000 --- a/icons-react/icons-js/tallymark-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTallymark1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTallymark1; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-2.js b/icons-react/icons-js/tallymark-2.js deleted file mode 100644 index 19f037247..000000000 --- a/icons-react/icons-js/tallymark-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTallymark2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTallymark2; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-3.js b/icons-react/icons-js/tallymark-3.js deleted file mode 100644 index 33999d3be..000000000 --- a/icons-react/icons-js/tallymark-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTallymark3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTallymark3; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-4.js b/icons-react/icons-js/tallymark-4.js deleted file mode 100644 index c14ab7a27..000000000 --- a/icons-react/icons-js/tallymark-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTallymark4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTallymark4; \ No newline at end of file diff --git a/icons-react/icons-js/tallymarks.js b/icons-react/icons-js/tallymarks.js deleted file mode 100644 index 957a2cfd7..000000000 --- a/icons-react/icons-js/tallymarks.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTallymarks({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTallymarks; \ No newline at end of file diff --git a/icons-react/icons-js/tank.js b/icons-react/icons-js/tank.js deleted file mode 100644 index 1471c5774..000000000 --- a/icons-react/icons-js/tank.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTank({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTank; \ No newline at end of file diff --git a/icons-react/icons-js/target-arrow.js b/icons-react/icons-js/target-arrow.js deleted file mode 100644 index 89d263f00..000000000 --- a/icons-react/icons-js/target-arrow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTargetArrow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTargetArrow; \ No newline at end of file diff --git a/icons-react/icons-js/target-off.js b/icons-react/icons-js/target-off.js deleted file mode 100644 index 1cbd5f76a..000000000 --- a/icons-react/icons-js/target-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTargetOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTargetOff; \ No newline at end of file diff --git a/icons-react/icons-js/target.js b/icons-react/icons-js/target.js deleted file mode 100644 index 92aac0b69..000000000 --- a/icons-react/icons-js/target.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTarget({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTarget; \ No newline at end of file diff --git a/icons-react/icons-js/tax.js b/icons-react/icons-js/tax.js deleted file mode 100644 index 35935c3da..000000000 --- a/icons-react/icons-js/tax.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTax({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTax; \ No newline at end of file diff --git a/icons-react/icons-js/teapot.js b/icons-react/icons-js/teapot.js deleted file mode 100644 index e760ba79b..000000000 --- a/icons-react/icons-js/teapot.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTeapot({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTeapot; \ No newline at end of file diff --git a/icons-react/icons-js/telescope-off.js b/icons-react/icons-js/telescope-off.js deleted file mode 100644 index 7f1531c55..000000000 --- a/icons-react/icons-js/telescope-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTelescopeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTelescopeOff; \ No newline at end of file diff --git a/icons-react/icons-js/telescope.js b/icons-react/icons-js/telescope.js deleted file mode 100644 index ac808e015..000000000 --- a/icons-react/icons-js/telescope.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTelescope({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTelescope; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-celsius.js b/icons-react/icons-js/temperature-celsius.js deleted file mode 100644 index e410db960..000000000 --- a/icons-react/icons-js/temperature-celsius.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperatureCelsius({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperatureCelsius; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-fahrenheit.js b/icons-react/icons-js/temperature-fahrenheit.js deleted file mode 100644 index cb6b03134..000000000 --- a/icons-react/icons-js/temperature-fahrenheit.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperatureFahrenheit({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperatureFahrenheit; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-minus.js b/icons-react/icons-js/temperature-minus.js deleted file mode 100644 index fa6924c42..000000000 --- a/icons-react/icons-js/temperature-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperatureMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperatureMinus; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-off.js b/icons-react/icons-js/temperature-off.js deleted file mode 100644 index 20fbe5e78..000000000 --- a/icons-react/icons-js/temperature-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperatureOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperatureOff; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-plus.js b/icons-react/icons-js/temperature-plus.js deleted file mode 100644 index cfdc222d5..000000000 --- a/icons-react/icons-js/temperature-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperaturePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperaturePlus; \ No newline at end of file diff --git a/icons-react/icons-js/temperature.js b/icons-react/icons-js/temperature.js deleted file mode 100644 index 9043bf4e6..000000000 --- a/icons-react/icons-js/temperature.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemperature({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemperature; \ No newline at end of file diff --git a/icons-react/icons-js/template-off.js b/icons-react/icons-js/template-off.js deleted file mode 100644 index 6106316b1..000000000 --- a/icons-react/icons-js/template-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemplateOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemplateOff; \ No newline at end of file diff --git a/icons-react/icons-js/template.js b/icons-react/icons-js/template.js deleted file mode 100644 index 23475bd62..000000000 --- a/icons-react/icons-js/template.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTemplate({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTemplate; \ No newline at end of file diff --git a/icons-react/icons-js/tent-off.js b/icons-react/icons-js/tent-off.js deleted file mode 100644 index 040e7aec1..000000000 --- a/icons-react/icons-js/tent-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTentOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTentOff; \ No newline at end of file diff --git a/icons-react/icons-js/tent.js b/icons-react/icons-js/tent.js deleted file mode 100644 index 1ccff6b23..000000000 --- a/icons-react/icons-js/tent.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTent; \ No newline at end of file diff --git a/icons-react/icons-js/terminal-2.js b/icons-react/icons-js/terminal-2.js deleted file mode 100644 index 95a6a2ed1..000000000 --- a/icons-react/icons-js/terminal-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTerminal2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTerminal2; \ No newline at end of file diff --git a/icons-react/icons-js/terminal.js b/icons-react/icons-js/terminal.js deleted file mode 100644 index 9e6690d37..000000000 --- a/icons-react/icons-js/terminal.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTerminal({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTerminal; \ No newline at end of file diff --git a/icons-react/icons-js/test-pipe-2.js b/icons-react/icons-js/test-pipe-2.js deleted file mode 100644 index 1b249198d..000000000 --- a/icons-react/icons-js/test-pipe-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTestPipe2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTestPipe2; \ No newline at end of file diff --git a/icons-react/icons-js/test-pipe-off.js b/icons-react/icons-js/test-pipe-off.js deleted file mode 100644 index 75669135b..000000000 --- a/icons-react/icons-js/test-pipe-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTestPipeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTestPipeOff; \ No newline at end of file diff --git a/icons-react/icons-js/test-pipe.js b/icons-react/icons-js/test-pipe.js deleted file mode 100644 index 693481a76..000000000 --- a/icons-react/icons-js/test-pipe.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTestPipe({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTestPipe; \ No newline at end of file diff --git a/icons-react/icons-js/tex.js b/icons-react/icons-js/tex.js deleted file mode 100644 index 6bf7490cf..000000000 --- a/icons-react/icons-js/tex.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTex({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTex; \ No newline at end of file diff --git a/icons-react/icons-js/text-caption.js b/icons-react/icons-js/text-caption.js deleted file mode 100644 index 451cd9afb..000000000 --- a/icons-react/icons-js/text-caption.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextCaption({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextCaption; \ No newline at end of file diff --git a/icons-react/icons-js/text-color.js b/icons-react/icons-js/text-color.js deleted file mode 100644 index 9526040f0..000000000 --- a/icons-react/icons-js/text-color.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextColor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextColor; \ No newline at end of file diff --git a/icons-react/icons-js/text-decrease.js b/icons-react/icons-js/text-decrease.js deleted file mode 100644 index 6819dae08..000000000 --- a/icons-react/icons-js/text-decrease.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextDecrease({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextDecrease; \ No newline at end of file diff --git a/icons-react/icons-js/text-direction-ltr.js b/icons-react/icons-js/text-direction-ltr.js deleted file mode 100644 index e19c9222c..000000000 --- a/icons-react/icons-js/text-direction-ltr.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextDirectionLtr({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextDirectionLtr; \ No newline at end of file diff --git a/icons-react/icons-js/text-direction-rtl.js b/icons-react/icons-js/text-direction-rtl.js deleted file mode 100644 index f28719f55..000000000 --- a/icons-react/icons-js/text-direction-rtl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextDirectionRtl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextDirectionRtl; \ No newline at end of file diff --git a/icons-react/icons-js/text-increase.js b/icons-react/icons-js/text-increase.js deleted file mode 100644 index aaa809a70..000000000 --- a/icons-react/icons-js/text-increase.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextIncrease({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextIncrease; \ No newline at end of file diff --git a/icons-react/icons-js/text-orientation.js b/icons-react/icons-js/text-orientation.js deleted file mode 100644 index 6829d8efe..000000000 --- a/icons-react/icons-js/text-orientation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextOrientation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextOrientation; \ No newline at end of file diff --git a/icons-react/icons-js/text-plus.js b/icons-react/icons-js/text-plus.js deleted file mode 100644 index df94eb4cd..000000000 --- a/icons-react/icons-js/text-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextPlus; \ No newline at end of file diff --git a/icons-react/icons-js/text-recognition.js b/icons-react/icons-js/text-recognition.js deleted file mode 100644 index 7a90fbf51..000000000 --- a/icons-react/icons-js/text-recognition.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextRecognition({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextRecognition; \ No newline at end of file diff --git a/icons-react/icons-js/text-resize.js b/icons-react/icons-js/text-resize.js deleted file mode 100644 index d9f6814c0..000000000 --- a/icons-react/icons-js/text-resize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextResize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextResize; \ No newline at end of file diff --git a/icons-react/icons-js/text-size.js b/icons-react/icons-js/text-size.js deleted file mode 100644 index 57211f19e..000000000 --- a/icons-react/icons-js/text-size.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextSize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextSize; \ No newline at end of file diff --git a/icons-react/icons-js/text-spellcheck.js b/icons-react/icons-js/text-spellcheck.js deleted file mode 100644 index 70fcf7cb9..000000000 --- a/icons-react/icons-js/text-spellcheck.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextSpellcheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextSpellcheck; \ No newline at end of file diff --git a/icons-react/icons-js/text-wrap-disabled.js b/icons-react/icons-js/text-wrap-disabled.js deleted file mode 100644 index 054bfc55c..000000000 --- a/icons-react/icons-js/text-wrap-disabled.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextWrapDisabled({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextWrapDisabled; \ No newline at end of file diff --git a/icons-react/icons-js/text-wrap.js b/icons-react/icons-js/text-wrap.js deleted file mode 100644 index 343c7953e..000000000 --- a/icons-react/icons-js/text-wrap.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTextWrap({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTextWrap; \ No newline at end of file diff --git a/icons-react/icons-js/texture.js b/icons-react/icons-js/texture.js deleted file mode 100644 index 56d6ceda4..000000000 --- a/icons-react/icons-js/texture.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTexture({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTexture; \ No newline at end of file diff --git a/icons-react/icons-js/thermometer.js b/icons-react/icons-js/thermometer.js deleted file mode 100644 index b08681587..000000000 --- a/icons-react/icons-js/thermometer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconThermometer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconThermometer; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-down-off.js b/icons-react/icons-js/thumb-down-off.js deleted file mode 100644 index 2f7459bc1..000000000 --- a/icons-react/icons-js/thumb-down-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconThumbDownOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconThumbDownOff; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-down.js b/icons-react/icons-js/thumb-down.js deleted file mode 100644 index 686dba9fa..000000000 --- a/icons-react/icons-js/thumb-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconThumbDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconThumbDown; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-up-off.js b/icons-react/icons-js/thumb-up-off.js deleted file mode 100644 index 150e593c4..000000000 --- a/icons-react/icons-js/thumb-up-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconThumbUpOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconThumbUpOff; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-up.js b/icons-react/icons-js/thumb-up.js deleted file mode 100644 index 534fa8f1f..000000000 --- a/icons-react/icons-js/thumb-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconThumbUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconThumbUp; \ No newline at end of file diff --git a/icons-react/icons-js/tic-tac.js b/icons-react/icons-js/tic-tac.js deleted file mode 100644 index a4a12ee7c..000000000 --- a/icons-react/icons-js/tic-tac.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTicTac({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTicTac; \ No newline at end of file diff --git a/icons-react/icons-js/ticket-off.js b/icons-react/icons-js/ticket-off.js deleted file mode 100644 index 29de13a37..000000000 --- a/icons-react/icons-js/ticket-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTicketOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTicketOff; \ No newline at end of file diff --git a/icons-react/icons-js/ticket.js b/icons-react/icons-js/ticket.js deleted file mode 100644 index 5525798a1..000000000 --- a/icons-react/icons-js/ticket.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTicket({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTicket; \ No newline at end of file diff --git a/icons-react/icons-js/tie.js b/icons-react/icons-js/tie.js deleted file mode 100644 index 63ee05bca..000000000 --- a/icons-react/icons-js/tie.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTie({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTie; \ No newline at end of file diff --git a/icons-react/icons-js/tilde.js b/icons-react/icons-js/tilde.js deleted file mode 100644 index d512869b8..000000000 --- a/icons-react/icons-js/tilde.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTilde({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTilde; \ No newline at end of file diff --git a/icons-react/icons-js/tilt-shift-off.js b/icons-react/icons-js/tilt-shift-off.js deleted file mode 100644 index 3dc45934a..000000000 --- a/icons-react/icons-js/tilt-shift-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTiltShiftOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTiltShiftOff; \ No newline at end of file diff --git a/icons-react/icons-js/tilt-shift.js b/icons-react/icons-js/tilt-shift.js deleted file mode 100644 index b0566995d..000000000 --- a/icons-react/icons-js/tilt-shift.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTiltShift({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTiltShift; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event-exclamation.js b/icons-react/icons-js/timeline-event-exclamation.js deleted file mode 100644 index ee55cf406..000000000 --- a/icons-react/icons-js/timeline-event-exclamation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEventExclamation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEventExclamation; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event-minus.js b/icons-react/icons-js/timeline-event-minus.js deleted file mode 100644 index eea7b592d..000000000 --- a/icons-react/icons-js/timeline-event-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEventMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEventMinus; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event-plus.js b/icons-react/icons-js/timeline-event-plus.js deleted file mode 100644 index 14bccde91..000000000 --- a/icons-react/icons-js/timeline-event-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEventPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEventPlus; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event-text.js b/icons-react/icons-js/timeline-event-text.js deleted file mode 100644 index a3868bf28..000000000 --- a/icons-react/icons-js/timeline-event-text.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEventText({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEventText; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event-x.js b/icons-react/icons-js/timeline-event-x.js deleted file mode 100644 index 393ef06f9..000000000 --- a/icons-react/icons-js/timeline-event-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEventX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEventX; \ No newline at end of file diff --git a/icons-react/icons-js/timeline-event.js b/icons-react/icons-js/timeline-event.js deleted file mode 100644 index 70888a429..000000000 --- a/icons-react/icons-js/timeline-event.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimelineEvent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimelineEvent; \ No newline at end of file diff --git a/icons-react/icons-js/timeline.js b/icons-react/icons-js/timeline.js deleted file mode 100644 index 1ddeed7df..000000000 --- a/icons-react/icons-js/timeline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTimeline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTimeline; \ No newline at end of file diff --git a/icons-react/icons-js/tir.js b/icons-react/icons-js/tir.js deleted file mode 100644 index 83e3dd732..000000000 --- a/icons-react/icons-js/tir.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTir({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTir; \ No newline at end of file diff --git a/icons-react/icons-js/toggle-left.js b/icons-react/icons-js/toggle-left.js deleted file mode 100644 index 4a5fb36de..000000000 --- a/icons-react/icons-js/toggle-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToggleLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToggleLeft; \ No newline at end of file diff --git a/icons-react/icons-js/toggle-right.js b/icons-react/icons-js/toggle-right.js deleted file mode 100644 index db11969bb..000000000 --- a/icons-react/icons-js/toggle-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToggleRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToggleRight; \ No newline at end of file diff --git a/icons-react/icons-js/toilet-paper-off.js b/icons-react/icons-js/toilet-paper-off.js deleted file mode 100644 index 5c42a221a..000000000 --- a/icons-react/icons-js/toilet-paper-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToiletPaperOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToiletPaperOff; \ No newline at end of file diff --git a/icons-react/icons-js/toilet-paper.js b/icons-react/icons-js/toilet-paper.js deleted file mode 100644 index 63227ecc8..000000000 --- a/icons-react/icons-js/toilet-paper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToiletPaper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToiletPaper; \ No newline at end of file diff --git a/icons-react/icons-js/tool.js b/icons-react/icons-js/tool.js deleted file mode 100644 index 76b4bcafc..000000000 --- a/icons-react/icons-js/tool.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTool({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTool; \ No newline at end of file diff --git a/icons-react/icons-js/tools-kitchen-2-off.js b/icons-react/icons-js/tools-kitchen-2-off.js deleted file mode 100644 index deb5aeb6d..000000000 --- a/icons-react/icons-js/tools-kitchen-2-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToolsKitchen2Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToolsKitchen2Off; \ No newline at end of file diff --git a/icons-react/icons-js/tools-kitchen-2.js b/icons-react/icons-js/tools-kitchen-2.js deleted file mode 100644 index e40ff7474..000000000 --- a/icons-react/icons-js/tools-kitchen-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToolsKitchen2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToolsKitchen2; \ No newline at end of file diff --git a/icons-react/icons-js/tools-kitchen-off.js b/icons-react/icons-js/tools-kitchen-off.js deleted file mode 100644 index 5a5a5ceb7..000000000 --- a/icons-react/icons-js/tools-kitchen-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToolsKitchenOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToolsKitchenOff; \ No newline at end of file diff --git a/icons-react/icons-js/tools-kitchen.js b/icons-react/icons-js/tools-kitchen.js deleted file mode 100644 index ea826f76e..000000000 --- a/icons-react/icons-js/tools-kitchen.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToolsKitchen({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToolsKitchen; \ No newline at end of file diff --git a/icons-react/icons-js/tools-off.js b/icons-react/icons-js/tools-off.js deleted file mode 100644 index 8d304dcde..000000000 --- a/icons-react/icons-js/tools-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconToolsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconToolsOff; \ No newline at end of file diff --git a/icons-react/icons-js/tools.js b/icons-react/icons-js/tools.js deleted file mode 100644 index 8c8e3f852..000000000 --- a/icons-react/icons-js/tools.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTools({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTools; \ No newline at end of file diff --git a/icons-react/icons-js/tooltip.js b/icons-react/icons-js/tooltip.js deleted file mode 100644 index 603410b65..000000000 --- a/icons-react/icons-js/tooltip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTooltip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTooltip; \ No newline at end of file diff --git a/icons-react/icons-js/topology-bus.js b/icons-react/icons-js/topology-bus.js deleted file mode 100644 index 9d8b1ab27..000000000 --- a/icons-react/icons-js/topology-bus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyBus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyBus; \ No newline at end of file diff --git a/icons-react/icons-js/topology-complex.js b/icons-react/icons-js/topology-complex.js deleted file mode 100644 index 47307fbd5..000000000 --- a/icons-react/icons-js/topology-complex.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyComplex({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyComplex; \ No newline at end of file diff --git a/icons-react/icons-js/topology-full-hierarchy.js b/icons-react/icons-js/topology-full-hierarchy.js deleted file mode 100644 index 3267fc234..000000000 --- a/icons-react/icons-js/topology-full-hierarchy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyFullHierarchy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyFullHierarchy; \ No newline at end of file diff --git a/icons-react/icons-js/topology-full.js b/icons-react/icons-js/topology-full.js deleted file mode 100644 index 04b7a1b1f..000000000 --- a/icons-react/icons-js/topology-full.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyFull({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyFull; \ No newline at end of file diff --git a/icons-react/icons-js/topology-ring-2.js b/icons-react/icons-js/topology-ring-2.js deleted file mode 100644 index c291df956..000000000 --- a/icons-react/icons-js/topology-ring-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyRing2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyRing2; \ No newline at end of file diff --git a/icons-react/icons-js/topology-ring-3.js b/icons-react/icons-js/topology-ring-3.js deleted file mode 100644 index 9211a7f8a..000000000 --- a/icons-react/icons-js/topology-ring-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyRing3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyRing3; \ No newline at end of file diff --git a/icons-react/icons-js/topology-ring.js b/icons-react/icons-js/topology-ring.js deleted file mode 100644 index 258a36ffe..000000000 --- a/icons-react/icons-js/topology-ring.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyRing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyRing; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star-2.js b/icons-react/icons-js/topology-star-2.js deleted file mode 100644 index 681a63470..000000000 --- a/icons-react/icons-js/topology-star-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStar2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStar2; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star-3.js b/icons-react/icons-js/topology-star-3.js deleted file mode 100644 index b9f59a556..000000000 --- a/icons-react/icons-js/topology-star-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStar3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStar3; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star-ring-2.js b/icons-react/icons-js/topology-star-ring-2.js deleted file mode 100644 index 865f201c8..000000000 --- a/icons-react/icons-js/topology-star-ring-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStarRing2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStarRing2; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star-ring-3.js b/icons-react/icons-js/topology-star-ring-3.js deleted file mode 100644 index 55858c37e..000000000 --- a/icons-react/icons-js/topology-star-ring-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStarRing3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStarRing3; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star-ring.js b/icons-react/icons-js/topology-star-ring.js deleted file mode 100644 index a6c8985ba..000000000 --- a/icons-react/icons-js/topology-star-ring.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStarRing({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStarRing; \ No newline at end of file diff --git a/icons-react/icons-js/topology-star.js b/icons-react/icons-js/topology-star.js deleted file mode 100644 index fa74cabb3..000000000 --- a/icons-react/icons-js/topology-star.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTopologyStar({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTopologyStar; \ No newline at end of file diff --git a/icons-react/icons-js/torii.js b/icons-react/icons-js/torii.js deleted file mode 100644 index 247c823d1..000000000 --- a/icons-react/icons-js/torii.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTorii({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTorii; \ No newline at end of file diff --git a/icons-react/icons-js/tornado.js b/icons-react/icons-js/tornado.js deleted file mode 100644 index 56f541604..000000000 --- a/icons-react/icons-js/tornado.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTornado({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTornado; \ No newline at end of file diff --git a/icons-react/icons-js/tournament.js b/icons-react/icons-js/tournament.js deleted file mode 100644 index 32a701154..000000000 --- a/icons-react/icons-js/tournament.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTournament({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTournament; \ No newline at end of file diff --git a/icons-react/icons-js/tower-off.js b/icons-react/icons-js/tower-off.js deleted file mode 100644 index 5cbc5283c..000000000 --- a/icons-react/icons-js/tower-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTowerOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTowerOff; \ No newline at end of file diff --git a/icons-react/icons-js/tower.js b/icons-react/icons-js/tower.js deleted file mode 100644 index 84ff5ccb7..000000000 --- a/icons-react/icons-js/tower.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTower({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTower; \ No newline at end of file diff --git a/icons-react/icons-js/track-next.js b/icons-react/icons-js/track-next.js deleted file mode 100644 index 4f7547a64..000000000 --- a/icons-react/icons-js/track-next.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconTrackNext = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconTrackNext; \ No newline at end of file diff --git a/icons-react/icons-js/track-prev.js b/icons-react/icons-js/track-prev.js deleted file mode 100644 index 64cfdbb7d..000000000 --- a/icons-react/icons-js/track-prev.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconTrackPrev = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconTrackPrev; \ No newline at end of file diff --git a/icons-react/icons-js/track.js b/icons-react/icons-js/track.js deleted file mode 100644 index 6f0a0822b..000000000 --- a/icons-react/icons-js/track.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrack({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrack; \ No newline at end of file diff --git a/icons-react/icons-js/tractor.js b/icons-react/icons-js/tractor.js deleted file mode 100644 index 0c9b8e65d..000000000 --- a/icons-react/icons-js/tractor.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTractor({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTractor; \ No newline at end of file diff --git a/icons-react/icons-js/trademark.js b/icons-react/icons-js/trademark.js deleted file mode 100644 index b7699ac6d..000000000 --- a/icons-react/icons-js/trademark.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrademark({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrademark; \ No newline at end of file diff --git a/icons-react/icons-js/traffic-cone-off.js b/icons-react/icons-js/traffic-cone-off.js deleted file mode 100644 index 43f344543..000000000 --- a/icons-react/icons-js/traffic-cone-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrafficConeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrafficConeOff; \ No newline at end of file diff --git a/icons-react/icons-js/traffic-cone.js b/icons-react/icons-js/traffic-cone.js deleted file mode 100644 index 1a9d05a4a..000000000 --- a/icons-react/icons-js/traffic-cone.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrafficCone({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrafficCone; \ No newline at end of file diff --git a/icons-react/icons-js/traffic-lights-off.js b/icons-react/icons-js/traffic-lights-off.js deleted file mode 100644 index 08a47eb04..000000000 --- a/icons-react/icons-js/traffic-lights-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrafficLightsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrafficLightsOff; \ No newline at end of file diff --git a/icons-react/icons-js/traffic-lights.js b/icons-react/icons-js/traffic-lights.js deleted file mode 100644 index 843ea2548..000000000 --- a/icons-react/icons-js/traffic-lights.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrafficLights({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrafficLights; \ No newline at end of file diff --git a/icons-react/icons-js/train.js b/icons-react/icons-js/train.js deleted file mode 100644 index 7f9205dbb..000000000 --- a/icons-react/icons-js/train.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrain({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrain; \ No newline at end of file diff --git a/icons-react/icons-js/transfer-in.js b/icons-react/icons-js/transfer-in.js deleted file mode 100644 index 2b0b18374..000000000 --- a/icons-react/icons-js/transfer-in.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransferIn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransferIn; \ No newline at end of file diff --git a/icons-react/icons-js/transfer-out.js b/icons-react/icons-js/transfer-out.js deleted file mode 100644 index 01d20eb8d..000000000 --- a/icons-react/icons-js/transfer-out.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransferOut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransferOut; \ No newline at end of file diff --git a/icons-react/icons-js/transform.js b/icons-react/icons-js/transform.js deleted file mode 100644 index 88a858b66..000000000 --- a/icons-react/icons-js/transform.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransform({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransform; \ No newline at end of file diff --git a/icons-react/icons-js/transition-bottom.js b/icons-react/icons-js/transition-bottom.js deleted file mode 100644 index a5f103c25..000000000 --- a/icons-react/icons-js/transition-bottom.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransitionBottom({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransitionBottom; \ No newline at end of file diff --git a/icons-react/icons-js/transition-left.js b/icons-react/icons-js/transition-left.js deleted file mode 100644 index 83416aa65..000000000 --- a/icons-react/icons-js/transition-left.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransitionLeft({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransitionLeft; \ No newline at end of file diff --git a/icons-react/icons-js/transition-right.js b/icons-react/icons-js/transition-right.js deleted file mode 100644 index 0743da419..000000000 --- a/icons-react/icons-js/transition-right.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransitionRight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransitionRight; \ No newline at end of file diff --git a/icons-react/icons-js/transition-top.js b/icons-react/icons-js/transition-top.js deleted file mode 100644 index 6f1ef9f43..000000000 --- a/icons-react/icons-js/transition-top.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTransitionTop({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTransitionTop; \ No newline at end of file diff --git a/icons-react/icons-js/trash-off.js b/icons-react/icons-js/trash-off.js deleted file mode 100644 index 85d06a607..000000000 --- a/icons-react/icons-js/trash-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrashOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrashOff; \ No newline at end of file diff --git a/icons-react/icons-js/trash-x.js b/icons-react/icons-js/trash-x.js deleted file mode 100644 index e2b570452..000000000 --- a/icons-react/icons-js/trash-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrashX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrashX; \ No newline at end of file diff --git a/icons-react/icons-js/trash.js b/icons-react/icons-js/trash.js deleted file mode 100644 index 2e2d4c434..000000000 --- a/icons-react/icons-js/trash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrash; \ No newline at end of file diff --git a/icons-react/icons-js/tree.js b/icons-react/icons-js/tree.js deleted file mode 100644 index 8d638271b..000000000 --- a/icons-react/icons-js/tree.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTree({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTree; \ No newline at end of file diff --git a/icons-react/icons-js/trees.js b/icons-react/icons-js/trees.js deleted file mode 100644 index 30a6d2ef6..000000000 --- a/icons-react/icons-js/trees.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrees({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrees; \ No newline at end of file diff --git a/icons-react/icons-js/trekking.js b/icons-react/icons-js/trekking.js deleted file mode 100644 index 3217de4cf..000000000 --- a/icons-react/icons-js/trekking.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrekking({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrekking; \ No newline at end of file diff --git a/icons-react/icons-js/trending-down-2.js b/icons-react/icons-js/trending-down-2.js deleted file mode 100644 index b6bab961f..000000000 --- a/icons-react/icons-js/trending-down-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingDown2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingDown2; \ No newline at end of file diff --git a/icons-react/icons-js/trending-down-3.js b/icons-react/icons-js/trending-down-3.js deleted file mode 100644 index 373b7be20..000000000 --- a/icons-react/icons-js/trending-down-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingDown3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingDown3; \ No newline at end of file diff --git a/icons-react/icons-js/trending-down.js b/icons-react/icons-js/trending-down.js deleted file mode 100644 index 976c3d203..000000000 --- a/icons-react/icons-js/trending-down.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingDown({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingDown; \ No newline at end of file diff --git a/icons-react/icons-js/trending-up-2.js b/icons-react/icons-js/trending-up-2.js deleted file mode 100644 index a06e04f39..000000000 --- a/icons-react/icons-js/trending-up-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingUp2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingUp2; \ No newline at end of file diff --git a/icons-react/icons-js/trending-up-3.js b/icons-react/icons-js/trending-up-3.js deleted file mode 100644 index fd5c9fc88..000000000 --- a/icons-react/icons-js/trending-up-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingUp3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingUp3; \ No newline at end of file diff --git a/icons-react/icons-js/trending-up.js b/icons-react/icons-js/trending-up.js deleted file mode 100644 index a6518f820..000000000 --- a/icons-react/icons-js/trending-up.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrendingUp({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrendingUp; \ No newline at end of file diff --git a/icons-react/icons-js/triangle-inverted.js b/icons-react/icons-js/triangle-inverted.js deleted file mode 100644 index 2ebb838ba..000000000 --- a/icons-react/icons-js/triangle-inverted.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTriangleInverted({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTriangleInverted; \ No newline at end of file diff --git a/icons-react/icons-js/triangle-off.js b/icons-react/icons-js/triangle-off.js deleted file mode 100644 index 421fb15aa..000000000 --- a/icons-react/icons-js/triangle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTriangleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTriangleOff; \ No newline at end of file diff --git a/icons-react/icons-js/triangle-square-circle.js b/icons-react/icons-js/triangle-square-circle.js deleted file mode 100644 index dbef08598..000000000 --- a/icons-react/icons-js/triangle-square-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTriangleSquareCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTriangleSquareCircle; \ No newline at end of file diff --git a/icons-react/icons-js/triangle.js b/icons-react/icons-js/triangle.js deleted file mode 100644 index a2961b2c0..000000000 --- a/icons-react/icons-js/triangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTriangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/triangles.js b/icons-react/icons-js/triangles.js deleted file mode 100644 index 8d3618b21..000000000 --- a/icons-react/icons-js/triangles.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTriangles({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTriangles; \ No newline at end of file diff --git a/icons-react/icons-js/trident.js b/icons-react/icons-js/trident.js deleted file mode 100644 index 8702f7aa1..000000000 --- a/icons-react/icons-js/trident.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrident({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrident; \ No newline at end of file diff --git a/icons-react/icons-js/trolley.js b/icons-react/icons-js/trolley.js deleted file mode 100644 index 6ad65f57c..000000000 --- a/icons-react/icons-js/trolley.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrolley({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrolley; \ No newline at end of file diff --git a/icons-react/icons-js/trophy-off.js b/icons-react/icons-js/trophy-off.js deleted file mode 100644 index 2f17dcede..000000000 --- a/icons-react/icons-js/trophy-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrophyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrophyOff; \ No newline at end of file diff --git a/icons-react/icons-js/trophy.js b/icons-react/icons-js/trophy.js deleted file mode 100644 index fff92ae24..000000000 --- a/icons-react/icons-js/trophy.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrophy({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrophy; \ No newline at end of file diff --git a/icons-react/icons-js/trowel.js b/icons-react/icons-js/trowel.js deleted file mode 100644 index d69888895..000000000 --- a/icons-react/icons-js/trowel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTrowel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTrowel; \ No newline at end of file diff --git a/icons-react/icons-js/truck-delivery.js b/icons-react/icons-js/truck-delivery.js deleted file mode 100644 index 7db5a0e3f..000000000 --- a/icons-react/icons-js/truck-delivery.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTruckDelivery({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTruckDelivery; \ No newline at end of file diff --git a/icons-react/icons-js/truck-loading.js b/icons-react/icons-js/truck-loading.js deleted file mode 100644 index 3390c8fcc..000000000 --- a/icons-react/icons-js/truck-loading.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTruckLoading({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTruckLoading; \ No newline at end of file diff --git a/icons-react/icons-js/truck-off.js b/icons-react/icons-js/truck-off.js deleted file mode 100644 index c3f1808e0..000000000 --- a/icons-react/icons-js/truck-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTruckOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTruckOff; \ No newline at end of file diff --git a/icons-react/icons-js/truck-return.js b/icons-react/icons-js/truck-return.js deleted file mode 100644 index 69711d47a..000000000 --- a/icons-react/icons-js/truck-return.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTruckReturn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTruckReturn; \ No newline at end of file diff --git a/icons-react/icons-js/truck.js b/icons-react/icons-js/truck.js deleted file mode 100644 index 7052157d7..000000000 --- a/icons-react/icons-js/truck.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTruck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTruck; \ No newline at end of file diff --git a/icons-react/icons-js/txt.js b/icons-react/icons-js/txt.js deleted file mode 100644 index 6680db102..000000000 --- a/icons-react/icons-js/txt.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTxt({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTxt; \ No newline at end of file diff --git a/icons-react/icons-js/typography-off.js b/icons-react/icons-js/typography-off.js deleted file mode 100644 index 62ae7a8c6..000000000 --- a/icons-react/icons-js/typography-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTypographyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTypographyOff; \ No newline at end of file diff --git a/icons-react/icons-js/typography.js b/icons-react/icons-js/typography.js deleted file mode 100644 index f7851b834..000000000 --- a/icons-react/icons-js/typography.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconTypography({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconTypography; \ No newline at end of file diff --git a/icons-react/icons-js/uf-off.js b/icons-react/icons-js/uf-off.js deleted file mode 100644 index bc85bc9de..000000000 --- a/icons-react/icons-js/uf-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUfOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUfOff; \ No newline at end of file diff --git a/icons-react/icons-js/ufo.js b/icons-react/icons-js/ufo.js deleted file mode 100644 index 2eae8268a..000000000 --- a/icons-react/icons-js/ufo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUfo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUfo; \ No newline at end of file diff --git a/icons-react/icons-js/umbrella-off.js b/icons-react/icons-js/umbrella-off.js deleted file mode 100644 index 20bfaa46a..000000000 --- a/icons-react/icons-js/umbrella-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUmbrellaOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUmbrellaOff; \ No newline at end of file diff --git a/icons-react/icons-js/umbrella.js b/icons-react/icons-js/umbrella.js deleted file mode 100644 index cfdbcc995..000000000 --- a/icons-react/icons-js/umbrella.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUmbrella({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUmbrella; \ No newline at end of file diff --git a/icons-react/icons-js/underline.js b/icons-react/icons-js/underline.js deleted file mode 100644 index 85ceb4a4f..000000000 --- a/icons-react/icons-js/underline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUnderline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUnderline; \ No newline at end of file diff --git a/icons-react/icons-js/unlink.js b/icons-react/icons-js/unlink.js deleted file mode 100644 index 8cd5aaae4..000000000 --- a/icons-react/icons-js/unlink.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUnlink({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUnlink; \ No newline at end of file diff --git a/icons-react/icons-js/upload.js b/icons-react/icons-js/upload.js deleted file mode 100644 index de45c55cf..000000000 --- a/icons-react/icons-js/upload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUpload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUpload; \ No newline at end of file diff --git a/icons-react/icons-js/urgent.js b/icons-react/icons-js/urgent.js deleted file mode 100644 index 67d482eda..000000000 --- a/icons-react/icons-js/urgent.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUrgent({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUrgent; \ No newline at end of file diff --git a/icons-react/icons-js/usb.js b/icons-react/icons-js/usb.js deleted file mode 100644 index 769b1ec11..000000000 --- a/icons-react/icons-js/usb.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUsb({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUsb; \ No newline at end of file diff --git a/icons-react/icons-js/user-check.js b/icons-react/icons-js/user-check.js deleted file mode 100644 index 34359041e..000000000 --- a/icons-react/icons-js/user-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserCheck; \ No newline at end of file diff --git a/icons-react/icons-js/user-circle.js b/icons-react/icons-js/user-circle.js deleted file mode 100644 index b163c0d91..000000000 --- a/icons-react/icons-js/user-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserCircle; \ No newline at end of file diff --git a/icons-react/icons-js/user-exclamation.js b/icons-react/icons-js/user-exclamation.js deleted file mode 100644 index 5db9cc5df..000000000 --- a/icons-react/icons-js/user-exclamation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserExclamation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserExclamation; \ No newline at end of file diff --git a/icons-react/icons-js/user-minus.js b/icons-react/icons-js/user-minus.js deleted file mode 100644 index 5392ca4a2..000000000 --- a/icons-react/icons-js/user-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserMinus; \ No newline at end of file diff --git a/icons-react/icons-js/user-off.js b/icons-react/icons-js/user-off.js deleted file mode 100644 index 0454c43d3..000000000 --- a/icons-react/icons-js/user-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserOff; \ No newline at end of file diff --git a/icons-react/icons-js/user-plus.js b/icons-react/icons-js/user-plus.js deleted file mode 100644 index ad4c50693..000000000 --- a/icons-react/icons-js/user-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserPlus; \ No newline at end of file diff --git a/icons-react/icons-js/user-search.js b/icons-react/icons-js/user-search.js deleted file mode 100644 index 743757e96..000000000 --- a/icons-react/icons-js/user-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserSearch; \ No newline at end of file diff --git a/icons-react/icons-js/user-x.js b/icons-react/icons-js/user-x.js deleted file mode 100644 index 6dce360cc..000000000 --- a/icons-react/icons-js/user-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUserX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUserX; \ No newline at end of file diff --git a/icons-react/icons-js/user.js b/icons-react/icons-js/user.js deleted file mode 100644 index 6f032609c..000000000 --- a/icons-react/icons-js/user.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUser({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUser; \ No newline at end of file diff --git a/icons-react/icons-js/users.js b/icons-react/icons-js/users.js deleted file mode 100644 index e97b187cf..000000000 --- a/icons-react/icons-js/users.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUsers({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUsers; \ No newline at end of file diff --git a/icons-react/icons-js/uv-index.js b/icons-react/icons-js/uv-index.js deleted file mode 100644 index aaf35dd54..000000000 --- a/icons-react/icons-js/uv-index.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUvIndex({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUvIndex; \ No newline at end of file diff --git a/icons-react/icons-js/ux-circle.js b/icons-react/icons-js/ux-circle.js deleted file mode 100644 index aa5d68305..000000000 --- a/icons-react/icons-js/ux-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconUxCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconUxCircle; \ No newline at end of file diff --git a/icons-react/icons-js/vaccine-bottle-off.js b/icons-react/icons-js/vaccine-bottle-off.js deleted file mode 100644 index 03cd6b3d3..000000000 --- a/icons-react/icons-js/vaccine-bottle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVaccineBottleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVaccineBottleOff; \ No newline at end of file diff --git a/icons-react/icons-js/vaccine-bottle.js b/icons-react/icons-js/vaccine-bottle.js deleted file mode 100644 index e50ead583..000000000 --- a/icons-react/icons-js/vaccine-bottle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVaccineBottle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVaccineBottle; \ No newline at end of file diff --git a/icons-react/icons-js/vaccine-off.js b/icons-react/icons-js/vaccine-off.js deleted file mode 100644 index 0f8cbb0ea..000000000 --- a/icons-react/icons-js/vaccine-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVaccineOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVaccineOff; \ No newline at end of file diff --git a/icons-react/icons-js/vaccine.js b/icons-react/icons-js/vaccine.js deleted file mode 100644 index 7a2ba8a2e..000000000 --- a/icons-react/icons-js/vaccine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVaccine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVaccine; \ No newline at end of file diff --git a/icons-react/icons-js/vacuum-cleaner.js b/icons-react/icons-js/vacuum-cleaner.js deleted file mode 100644 index f69a73c32..000000000 --- a/icons-react/icons-js/vacuum-cleaner.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVacuumCleaner({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVacuumCleaner; \ No newline at end of file diff --git a/icons-react/icons-js/variable-minus.js b/icons-react/icons-js/variable-minus.js deleted file mode 100644 index 5dba6ca68..000000000 --- a/icons-react/icons-js/variable-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVariableMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVariableMinus; \ No newline at end of file diff --git a/icons-react/icons-js/variable-off.js b/icons-react/icons-js/variable-off.js deleted file mode 100644 index 4165c99d0..000000000 --- a/icons-react/icons-js/variable-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVariableOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVariableOff; \ No newline at end of file diff --git a/icons-react/icons-js/variable-plus.js b/icons-react/icons-js/variable-plus.js deleted file mode 100644 index 0130decee..000000000 --- a/icons-react/icons-js/variable-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVariablePlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVariablePlus; \ No newline at end of file diff --git a/icons-react/icons-js/variable.js b/icons-react/icons-js/variable.js deleted file mode 100644 index d14bcee12..000000000 --- a/icons-react/icons-js/variable.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVariable({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVariable; \ No newline at end of file diff --git a/icons-react/icons-js/vector-beizer-2.js b/icons-react/icons-js/vector-beizer-2.js deleted file mode 100644 index 5a964c292..000000000 --- a/icons-react/icons-js/vector-beizer-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBeizer2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBeizer2; \ No newline at end of file diff --git a/icons-react/icons-js/vector-beizer.js b/icons-react/icons-js/vector-beizer.js deleted file mode 100644 index ccc5eadaa..000000000 --- a/icons-react/icons-js/vector-beizer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBeizer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBeizer; \ No newline at end of file diff --git a/icons-react/icons-js/vector-bezier-2.js b/icons-react/icons-js/vector-bezier-2.js deleted file mode 100644 index 7362f183f..000000000 --- a/icons-react/icons-js/vector-bezier-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBezier2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBezier2; \ No newline at end of file diff --git a/icons-react/icons-js/vector-bezier-arc.js b/icons-react/icons-js/vector-bezier-arc.js deleted file mode 100644 index b7b90e631..000000000 --- a/icons-react/icons-js/vector-bezier-arc.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBezierArc({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBezierArc; \ No newline at end of file diff --git a/icons-react/icons-js/vector-bezier-circle.js b/icons-react/icons-js/vector-bezier-circle.js deleted file mode 100644 index 63cb3bfb3..000000000 --- a/icons-react/icons-js/vector-bezier-circle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBezierCircle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBezierCircle; \ No newline at end of file diff --git a/icons-react/icons-js/vector-bezier.js b/icons-react/icons-js/vector-bezier.js deleted file mode 100644 index 11b51f7de..000000000 --- a/icons-react/icons-js/vector-bezier.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorBezier({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorBezier; \ No newline at end of file diff --git a/icons-react/icons-js/vector-off.js b/icons-react/icons-js/vector-off.js deleted file mode 100644 index 4e8e0b928..000000000 --- a/icons-react/icons-js/vector-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorOff; \ No newline at end of file diff --git a/icons-react/icons-js/vector-spline.js b/icons-react/icons-js/vector-spline.js deleted file mode 100644 index a6eb5599f..000000000 --- a/icons-react/icons-js/vector-spline.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorSpline({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorSpline; \ No newline at end of file diff --git a/icons-react/icons-js/vector-triangle-off.js b/icons-react/icons-js/vector-triangle-off.js deleted file mode 100644 index 5ac8242f5..000000000 --- a/icons-react/icons-js/vector-triangle-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorTriangleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorTriangleOff; \ No newline at end of file diff --git a/icons-react/icons-js/vector-triangle.js b/icons-react/icons-js/vector-triangle.js deleted file mode 100644 index 1d9918d7e..000000000 --- a/icons-react/icons-js/vector-triangle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVectorTriangle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVectorTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/vector.js b/icons-react/icons-js/vector.js deleted file mode 100644 index 7a5b24768..000000000 --- a/icons-react/icons-js/vector.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVector({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVector; \ No newline at end of file diff --git a/icons-react/icons-js/venus.js b/icons-react/icons-js/venus.js deleted file mode 100644 index 24c553a85..000000000 --- a/icons-react/icons-js/venus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVenus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVenus; \ No newline at end of file diff --git a/icons-react/icons-js/versions-off.js b/icons-react/icons-js/versions-off.js deleted file mode 100644 index 834138c10..000000000 --- a/icons-react/icons-js/versions-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVersionsOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVersionsOff; \ No newline at end of file diff --git a/icons-react/icons-js/versions.js b/icons-react/icons-js/versions.js deleted file mode 100644 index 6048fe880..000000000 --- a/icons-react/icons-js/versions.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVersions({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVersions; \ No newline at end of file diff --git a/icons-react/icons-js/video-minus.js b/icons-react/icons-js/video-minus.js deleted file mode 100644 index 608da3b8f..000000000 --- a/icons-react/icons-js/video-minus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVideoMinus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVideoMinus; \ No newline at end of file diff --git a/icons-react/icons-js/video-off.js b/icons-react/icons-js/video-off.js deleted file mode 100644 index 61ba1c221..000000000 --- a/icons-react/icons-js/video-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVideoOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVideoOff; \ No newline at end of file diff --git a/icons-react/icons-js/video-plus.js b/icons-react/icons-js/video-plus.js deleted file mode 100644 index af5c995da..000000000 --- a/icons-react/icons-js/video-plus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVideoPlus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVideoPlus; \ No newline at end of file diff --git a/icons-react/icons-js/video.js b/icons-react/icons-js/video.js deleted file mode 100644 index 2a178b0f1..000000000 --- a/icons-react/icons-js/video.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVideo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVideo; \ No newline at end of file diff --git a/icons-react/icons-js/view-360-off.js b/icons-react/icons-js/view-360-off.js deleted file mode 100644 index d4f5f519d..000000000 --- a/icons-react/icons-js/view-360-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconView360Off({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconView360Off; \ No newline at end of file diff --git a/icons-react/icons-js/view-360.js b/icons-react/icons-js/view-360.js deleted file mode 100644 index 62f5fefbf..000000000 --- a/icons-react/icons-js/view-360.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconView360({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconView360; \ No newline at end of file diff --git a/icons-react/icons-js/viewfinder-off.js b/icons-react/icons-js/viewfinder-off.js deleted file mode 100644 index 4b11dae0f..000000000 --- a/icons-react/icons-js/viewfinder-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconViewfinderOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconViewfinderOff; \ No newline at end of file diff --git a/icons-react/icons-js/viewfinder.js b/icons-react/icons-js/viewfinder.js deleted file mode 100644 index 1a19d3cc9..000000000 --- a/icons-react/icons-js/viewfinder.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconViewfinder({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconViewfinder; \ No newline at end of file diff --git a/icons-react/icons-js/viewport-narrow.js b/icons-react/icons-js/viewport-narrow.js deleted file mode 100644 index f6dc5385e..000000000 --- a/icons-react/icons-js/viewport-narrow.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconViewportNarrow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconViewportNarrow; \ No newline at end of file diff --git a/icons-react/icons-js/viewport-wide.js b/icons-react/icons-js/viewport-wide.js deleted file mode 100644 index 5e608607b..000000000 --- a/icons-react/icons-js/viewport-wide.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconViewportWide({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconViewportWide; \ No newline at end of file diff --git a/icons-react/icons-js/vinyl.js b/icons-react/icons-js/vinyl.js deleted file mode 100644 index e6131a08e..000000000 --- a/icons-react/icons-js/vinyl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVinyl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVinyl; \ No newline at end of file diff --git a/icons-react/icons-js/vip-off.js b/icons-react/icons-js/vip-off.js deleted file mode 100644 index 5f383f7b8..000000000 --- a/icons-react/icons-js/vip-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVipOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVipOff; \ No newline at end of file diff --git a/icons-react/icons-js/vip.js b/icons-react/icons-js/vip.js deleted file mode 100644 index 733b811c8..000000000 --- a/icons-react/icons-js/vip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVip; \ No newline at end of file diff --git a/icons-react/icons-js/virus-off.js b/icons-react/icons-js/virus-off.js deleted file mode 100644 index 3824fd8dc..000000000 --- a/icons-react/icons-js/virus-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVirusOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVirusOff; \ No newline at end of file diff --git a/icons-react/icons-js/virus-search.js b/icons-react/icons-js/virus-search.js deleted file mode 100644 index 8207f5a2e..000000000 --- a/icons-react/icons-js/virus-search.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVirusSearch({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVirusSearch; \ No newline at end of file diff --git a/icons-react/icons-js/virus.js b/icons-react/icons-js/virus.js deleted file mode 100644 index 604e6889e..000000000 --- a/icons-react/icons-js/virus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVirus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVirus; \ No newline at end of file diff --git a/icons-react/icons-js/vocabulary-off.js b/icons-react/icons-js/vocabulary-off.js deleted file mode 100644 index bc2c65427..000000000 --- a/icons-react/icons-js/vocabulary-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVocabularyOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVocabularyOff; \ No newline at end of file diff --git a/icons-react/icons-js/vocabulary.js b/icons-react/icons-js/vocabulary.js deleted file mode 100644 index 41ed69eb3..000000000 --- a/icons-react/icons-js/vocabulary.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVocabulary({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVocabulary; \ No newline at end of file diff --git a/icons-react/icons-js/volume-2.js b/icons-react/icons-js/volume-2.js deleted file mode 100644 index 9db87d056..000000000 --- a/icons-react/icons-js/volume-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVolume2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVolume2; \ No newline at end of file diff --git a/icons-react/icons-js/volume-3.js b/icons-react/icons-js/volume-3.js deleted file mode 100644 index 6637a7c7e..000000000 --- a/icons-react/icons-js/volume-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVolume3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVolume3; \ No newline at end of file diff --git a/icons-react/icons-js/volume-off.js b/icons-react/icons-js/volume-off.js deleted file mode 100644 index 9d79282e9..000000000 --- a/icons-react/icons-js/volume-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVolumeOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVolumeOff; \ No newline at end of file diff --git a/icons-react/icons-js/volume.js b/icons-react/icons-js/volume.js deleted file mode 100644 index 934dc7562..000000000 --- a/icons-react/icons-js/volume.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconVolume({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconVolume; \ No newline at end of file diff --git a/icons-react/icons-js/walk.js b/icons-react/icons-js/walk.js deleted file mode 100644 index 2bc169ae0..000000000 --- a/icons-react/icons-js/walk.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWalk({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWalk; \ No newline at end of file diff --git a/icons-react/icons-js/wall-off.js b/icons-react/icons-js/wall-off.js deleted file mode 100644 index 7295010e2..000000000 --- a/icons-react/icons-js/wall-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWallOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWallOff; \ No newline at end of file diff --git a/icons-react/icons-js/wall.js b/icons-react/icons-js/wall.js deleted file mode 100644 index 844c20a39..000000000 --- a/icons-react/icons-js/wall.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWall({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWall; \ No newline at end of file diff --git a/icons-react/icons-js/wallet-off.js b/icons-react/icons-js/wallet-off.js deleted file mode 100644 index e8203ff23..000000000 --- a/icons-react/icons-js/wallet-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWalletOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWalletOff; \ No newline at end of file diff --git a/icons-react/icons-js/wallet.js b/icons-react/icons-js/wallet.js deleted file mode 100644 index 934933b12..000000000 --- a/icons-react/icons-js/wallet.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWallet({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWallet; \ No newline at end of file diff --git a/icons-react/icons-js/wallpaper-off.js b/icons-react/icons-js/wallpaper-off.js deleted file mode 100644 index d1aa75711..000000000 --- a/icons-react/icons-js/wallpaper-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWallpaperOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWallpaperOff; \ No newline at end of file diff --git a/icons-react/icons-js/wallpaper.js b/icons-react/icons-js/wallpaper.js deleted file mode 100644 index 87a550b0d..000000000 --- a/icons-react/icons-js/wallpaper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWallpaper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWallpaper; \ No newline at end of file diff --git a/icons-react/icons-js/wand-off.js b/icons-react/icons-js/wand-off.js deleted file mode 100644 index 9199346fc..000000000 --- a/icons-react/icons-js/wand-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWandOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWandOff; \ No newline at end of file diff --git a/icons-react/icons-js/wand.js b/icons-react/icons-js/wand.js deleted file mode 100644 index 4a8cd2323..000000000 --- a/icons-react/icons-js/wand.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWand({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWand; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-1.js b/icons-react/icons-js/wash-dry-1.js deleted file mode 100644 index 2194f736c..000000000 --- a/icons-react/icons-js/wash-dry-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDry1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDry1; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-2.js b/icons-react/icons-js/wash-dry-2.js deleted file mode 100644 index 005d29144..000000000 --- a/icons-react/icons-js/wash-dry-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDry2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDry2; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-3.js b/icons-react/icons-js/wash-dry-3.js deleted file mode 100644 index d9c2f3bc9..000000000 --- a/icons-react/icons-js/wash-dry-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDry3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDry3; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-a.js b/icons-react/icons-js/wash-dry-a.js deleted file mode 100644 index f783a4b3d..000000000 --- a/icons-react/icons-js/wash-dry-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryA; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-dip.js b/icons-react/icons-js/wash-dry-dip.js deleted file mode 100644 index 445fbe0fd..000000000 --- a/icons-react/icons-js/wash-dry-dip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryDip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryDip; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-f.js b/icons-react/icons-js/wash-dry-f.js deleted file mode 100644 index 33ec6b21b..000000000 --- a/icons-react/icons-js/wash-dry-f.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryF({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryF; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-hang.js b/icons-react/icons-js/wash-dry-hang.js deleted file mode 100644 index 830b1faba..000000000 --- a/icons-react/icons-js/wash-dry-hang.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryHang({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryHang; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-off.js b/icons-react/icons-js/wash-dry-off.js deleted file mode 100644 index 5e8d6243f..000000000 --- a/icons-react/icons-js/wash-dry-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryOff; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-p.js b/icons-react/icons-js/wash-dry-p.js deleted file mode 100644 index 60ce1c883..000000000 --- a/icons-react/icons-js/wash-dry-p.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryP({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryP; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-shade.js b/icons-react/icons-js/wash-dry-shade.js deleted file mode 100644 index 376037c10..000000000 --- a/icons-react/icons-js/wash-dry-shade.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryShade({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryShade; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry-w.js b/icons-react/icons-js/wash-dry-w.js deleted file mode 100644 index d4c1cdb49..000000000 --- a/icons-react/icons-js/wash-dry-w.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryW({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryW; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dry.js b/icons-react/icons-js/wash-dry.js deleted file mode 100644 index 662445e18..000000000 --- a/icons-react/icons-js/wash-dry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDry; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dryclean-off.js b/icons-react/icons-js/wash-dryclean-off.js deleted file mode 100644 index 026f4f936..000000000 --- a/icons-react/icons-js/wash-dryclean-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDrycleanOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDrycleanOff; \ No newline at end of file diff --git a/icons-react/icons-js/wash-dryclean.js b/icons-react/icons-js/wash-dryclean.js deleted file mode 100644 index 95b2ee238..000000000 --- a/icons-react/icons-js/wash-dryclean.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashDryclean({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashDryclean; \ No newline at end of file diff --git a/icons-react/icons-js/wash-gentle.js b/icons-react/icons-js/wash-gentle.js deleted file mode 100644 index 873a3f713..000000000 --- a/icons-react/icons-js/wash-gentle.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashGentle({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashGentle; \ No newline at end of file diff --git a/icons-react/icons-js/wash-machine.js b/icons-react/icons-js/wash-machine.js deleted file mode 100644 index 06531610b..000000000 --- a/icons-react/icons-js/wash-machine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashMachine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashMachine; \ No newline at end of file diff --git a/icons-react/icons-js/wash-off.js b/icons-react/icons-js/wash-off.js deleted file mode 100644 index 1c808847d..000000000 --- a/icons-react/icons-js/wash-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashOff; \ No newline at end of file diff --git a/icons-react/icons-js/wash-press.js b/icons-react/icons-js/wash-press.js deleted file mode 100644 index 1b6e61d33..000000000 --- a/icons-react/icons-js/wash-press.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashPress({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashPress; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-1.js b/icons-react/icons-js/wash-temperature-1.js deleted file mode 100644 index bd49dffaf..000000000 --- a/icons-react/icons-js/wash-temperature-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature1; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-2.js b/icons-react/icons-js/wash-temperature-2.js deleted file mode 100644 index 268c94dd5..000000000 --- a/icons-react/icons-js/wash-temperature-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature2; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-3.js b/icons-react/icons-js/wash-temperature-3.js deleted file mode 100644 index 2952eac27..000000000 --- a/icons-react/icons-js/wash-temperature-3.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature3({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature3; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-4.js b/icons-react/icons-js/wash-temperature-4.js deleted file mode 100644 index ceba0c89d..000000000 --- a/icons-react/icons-js/wash-temperature-4.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature4({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature4; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-5.js b/icons-react/icons-js/wash-temperature-5.js deleted file mode 100644 index 25167687f..000000000 --- a/icons-react/icons-js/wash-temperature-5.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature5({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature5; \ No newline at end of file diff --git a/icons-react/icons-js/wash-temperature-6.js b/icons-react/icons-js/wash-temperature-6.js deleted file mode 100644 index 2cab522f6..000000000 --- a/icons-react/icons-js/wash-temperature-6.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTemperature6({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTemperature6; \ No newline at end of file diff --git a/icons-react/icons-js/wash-tumble-dry.js b/icons-react/icons-js/wash-tumble-dry.js deleted file mode 100644 index 755e60e46..000000000 --- a/icons-react/icons-js/wash-tumble-dry.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTumbleDry({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTumbleDry; \ No newline at end of file diff --git a/icons-react/icons-js/wash-tumble-off.js b/icons-react/icons-js/wash-tumble-off.js deleted file mode 100644 index a0566c085..000000000 --- a/icons-react/icons-js/wash-tumble-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWashTumbleOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWashTumbleOff; \ No newline at end of file diff --git a/icons-react/icons-js/wash.js b/icons-react/icons-js/wash.js deleted file mode 100644 index 5b486289a..000000000 --- a/icons-react/icons-js/wash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWash; \ No newline at end of file diff --git a/icons-react/icons-js/wave-saw-tool.js b/icons-react/icons-js/wave-saw-tool.js deleted file mode 100644 index 4f8e864cc..000000000 --- a/icons-react/icons-js/wave-saw-tool.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWaveSawTool({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWaveSawTool; \ No newline at end of file diff --git a/icons-react/icons-js/wave-sine.js b/icons-react/icons-js/wave-sine.js deleted file mode 100644 index 7ad79ef50..000000000 --- a/icons-react/icons-js/wave-sine.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWaveSine({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWaveSine; \ No newline at end of file diff --git a/icons-react/icons-js/wave-square.js b/icons-react/icons-js/wave-square.js deleted file mode 100644 index 04f055cab..000000000 --- a/icons-react/icons-js/wave-square.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWaveSquare({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWaveSquare; \ No newline at end of file diff --git a/icons-react/icons-js/wave-triangle.js b/icons-react/icons-js/wave-triangle.js deleted file mode 100644 index 1bc119bef..000000000 --- a/icons-react/icons-js/wave-triangle.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconWaveTriangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -export default IconWaveTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/webhook-off.js b/icons-react/icons-js/webhook-off.js deleted file mode 100644 index dcbd9ed6c..000000000 --- a/icons-react/icons-js/webhook-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWebhookOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWebhookOff; \ No newline at end of file diff --git a/icons-react/icons-js/webhook.js b/icons-react/icons-js/webhook.js deleted file mode 100644 index ee22d4c2e..000000000 --- a/icons-react/icons-js/webhook.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWebhook({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWebhook; \ No newline at end of file diff --git a/icons-react/icons-js/weight.js b/icons-react/icons-js/weight.js deleted file mode 100644 index 643d2b30a..000000000 --- a/icons-react/icons-js/weight.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWeight({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWeight; \ No newline at end of file diff --git a/icons-react/icons-js/wheelchair-off.js b/icons-react/icons-js/wheelchair-off.js deleted file mode 100644 index c2b070aba..000000000 --- a/icons-react/icons-js/wheelchair-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWheelchairOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWheelchairOff; \ No newline at end of file diff --git a/icons-react/icons-js/wheelchair.js b/icons-react/icons-js/wheelchair.js deleted file mode 100644 index dda2ce10f..000000000 --- a/icons-react/icons-js/wheelchair.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWheelchair({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWheelchair; \ No newline at end of file diff --git a/icons-react/icons-js/whirl.js b/icons-react/icons-js/whirl.js deleted file mode 100644 index 121caa204..000000000 --- a/icons-react/icons-js/whirl.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWhirl({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWhirl; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-0.js b/icons-react/icons-js/wifi-0.js deleted file mode 100644 index c8b878bb2..000000000 --- a/icons-react/icons-js/wifi-0.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWifi0({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWifi0; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-1.js b/icons-react/icons-js/wifi-1.js deleted file mode 100644 index d6b0cf1b7..000000000 --- a/icons-react/icons-js/wifi-1.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWifi1({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWifi1; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-2.js b/icons-react/icons-js/wifi-2.js deleted file mode 100644 index 404e2478e..000000000 --- a/icons-react/icons-js/wifi-2.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWifi2({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWifi2; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-off.js b/icons-react/icons-js/wifi-off.js deleted file mode 100644 index 047e89b02..000000000 --- a/icons-react/icons-js/wifi-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWifiOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWifiOff; \ No newline at end of file diff --git a/icons-react/icons-js/wifi.js b/icons-react/icons-js/wifi.js deleted file mode 100644 index 2933b286b..000000000 --- a/icons-react/icons-js/wifi.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWifi({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWifi; \ No newline at end of file diff --git a/icons-react/icons-js/wind-off.js b/icons-react/icons-js/wind-off.js deleted file mode 100644 index 652f40f4d..000000000 --- a/icons-react/icons-js/wind-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindOff; \ No newline at end of file diff --git a/icons-react/icons-js/wind.js b/icons-react/icons-js/wind.js deleted file mode 100644 index 0085824ad..000000000 --- a/icons-react/icons-js/wind.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWind({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWind; \ No newline at end of file diff --git a/icons-react/icons-js/windmill-off.js b/icons-react/icons-js/windmill-off.js deleted file mode 100644 index f802345bf..000000000 --- a/icons-react/icons-js/windmill-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindmillOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindmillOff; \ No newline at end of file diff --git a/icons-react/icons-js/windmill.js b/icons-react/icons-js/windmill.js deleted file mode 100644 index b4362bd4e..000000000 --- a/icons-react/icons-js/windmill.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindmill({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindmill; \ No newline at end of file diff --git a/icons-react/icons-js/window-maximize.js b/icons-react/icons-js/window-maximize.js deleted file mode 100644 index 81b48717c..000000000 --- a/icons-react/icons-js/window-maximize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindowMaximize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindowMaximize; \ No newline at end of file diff --git a/icons-react/icons-js/window-minimize.js b/icons-react/icons-js/window-minimize.js deleted file mode 100644 index 073194943..000000000 --- a/icons-react/icons-js/window-minimize.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindowMinimize({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindowMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/window-off.js b/icons-react/icons-js/window-off.js deleted file mode 100644 index 8265d27f3..000000000 --- a/icons-react/icons-js/window-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindowOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindowOff; \ No newline at end of file diff --git a/icons-react/icons-js/window.js b/icons-react/icons-js/window.js deleted file mode 100644 index 9133f1be1..000000000 --- a/icons-react/icons-js/window.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindow({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindow; \ No newline at end of file diff --git a/icons-react/icons-js/windsock.js b/icons-react/icons-js/windsock.js deleted file mode 100644 index f2b4d9d94..000000000 --- a/icons-react/icons-js/windsock.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWindsock({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWindsock; \ No newline at end of file diff --git a/icons-react/icons-js/wiper-wash.js b/icons-react/icons-js/wiper-wash.js deleted file mode 100644 index 82bbd8aca..000000000 --- a/icons-react/icons-js/wiper-wash.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWiperWash({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWiperWash; \ No newline at end of file diff --git a/icons-react/icons-js/wiper.js b/icons-react/icons-js/wiper.js deleted file mode 100644 index 820dd0441..000000000 --- a/icons-react/icons-js/wiper.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWiper({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWiper; \ No newline at end of file diff --git a/icons-react/icons-js/woman.js b/icons-react/icons-js/woman.js deleted file mode 100644 index 0946657a8..000000000 --- a/icons-react/icons-js/woman.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWoman({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWoman; \ No newline at end of file diff --git a/icons-react/icons-js/wood.js b/icons-react/icons-js/wood.js deleted file mode 100644 index 8b31be933..000000000 --- a/icons-react/icons-js/wood.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWood({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWood; \ No newline at end of file diff --git a/icons-react/icons-js/world-download.js b/icons-react/icons-js/world-download.js deleted file mode 100644 index c306e1e1d..000000000 --- a/icons-react/icons-js/world-download.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldDownload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldDownload; \ No newline at end of file diff --git a/icons-react/icons-js/world-latitude.js b/icons-react/icons-js/world-latitude.js deleted file mode 100644 index 0942d6f90..000000000 --- a/icons-react/icons-js/world-latitude.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldLatitude({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldLatitude; \ No newline at end of file diff --git a/icons-react/icons-js/world-longitude.js b/icons-react/icons-js/world-longitude.js deleted file mode 100644 index b72973dd8..000000000 --- a/icons-react/icons-js/world-longitude.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldLongitude({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldLongitude; \ No newline at end of file diff --git a/icons-react/icons-js/world-off.js b/icons-react/icons-js/world-off.js deleted file mode 100644 index 1cf4991fc..000000000 --- a/icons-react/icons-js/world-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldOff; \ No newline at end of file diff --git a/icons-react/icons-js/world-upload.js b/icons-react/icons-js/world-upload.js deleted file mode 100644 index 34a5d633e..000000000 --- a/icons-react/icons-js/world-upload.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldUpload({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldUpload; \ No newline at end of file diff --git a/icons-react/icons-js/world-www.js b/icons-react/icons-js/world-www.js deleted file mode 100644 index b296a093c..000000000 --- a/icons-react/icons-js/world-www.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorldWww({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorldWww; \ No newline at end of file diff --git a/icons-react/icons-js/world.js b/icons-react/icons-js/world.js deleted file mode 100644 index 1179b4088..000000000 --- a/icons-react/icons-js/world.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWorld({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWorld; \ No newline at end of file diff --git a/icons-react/icons-js/wrecking-ball.js b/icons-react/icons-js/wrecking-ball.js deleted file mode 100644 index a9650a39e..000000000 --- a/icons-react/icons-js/wrecking-ball.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWreckingBall({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWreckingBall; \ No newline at end of file diff --git a/icons-react/icons-js/writing-off.js b/icons-react/icons-js/writing-off.js deleted file mode 100644 index 929a7c784..000000000 --- a/icons-react/icons-js/writing-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWritingOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWritingOff; \ No newline at end of file diff --git a/icons-react/icons-js/writing-sign-off.js b/icons-react/icons-js/writing-sign-off.js deleted file mode 100644 index 4e05d0a5e..000000000 --- a/icons-react/icons-js/writing-sign-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWritingSignOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWritingSignOff; \ No newline at end of file diff --git a/icons-react/icons-js/writing-sign.js b/icons-react/icons-js/writing-sign.js deleted file mode 100644 index 4e22a3180..000000000 --- a/icons-react/icons-js/writing-sign.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWritingSign({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWritingSign; \ No newline at end of file diff --git a/icons-react/icons-js/writing.js b/icons-react/icons-js/writing.js deleted file mode 100644 index 30a3a3037..000000000 --- a/icons-react/icons-js/writing.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconWriting({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconWriting; \ No newline at end of file diff --git a/icons-react/icons-js/x.js b/icons-react/icons-js/x.js deleted file mode 100644 index 91441f6b2..000000000 --- a/icons-react/icons-js/x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconX; \ No newline at end of file diff --git a/icons-react/icons-js/xbox-a.js b/icons-react/icons-js/xbox-a.js deleted file mode 100644 index e146057da..000000000 --- a/icons-react/icons-js/xbox-a.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconXboxA({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconXboxA; \ No newline at end of file diff --git a/icons-react/icons-js/xbox-b.js b/icons-react/icons-js/xbox-b.js deleted file mode 100644 index f49adcdbe..000000000 --- a/icons-react/icons-js/xbox-b.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconXboxB({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconXboxB; \ No newline at end of file diff --git a/icons-react/icons-js/xbox-x.js b/icons-react/icons-js/xbox-x.js deleted file mode 100644 index 475dd0046..000000000 --- a/icons-react/icons-js/xbox-x.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconXboxX({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconXboxX; \ No newline at end of file diff --git a/icons-react/icons-js/xbox-y.js b/icons-react/icons-js/xbox-y.js deleted file mode 100644 index 4bb2fd2f7..000000000 --- a/icons-react/icons-js/xbox-y.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconXboxY({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconXboxY; \ No newline at end of file diff --git a/icons-react/icons-js/yin-yang.js b/icons-react/icons-js/yin-yang.js deleted file mode 100644 index 87b62e076..000000000 --- a/icons-react/icons-js/yin-yang.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconYinYang({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconYinYang; \ No newline at end of file diff --git a/icons-react/icons-js/yoga.js b/icons-react/icons-js/yoga.js deleted file mode 100644 index 226860fe4..000000000 --- a/icons-react/icons-js/yoga.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconYoga({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconYoga; \ No newline at end of file diff --git a/icons-react/icons-js/zeppelin-off.js b/icons-react/icons-js/zeppelin-off.js deleted file mode 100644 index 6801ca8b4..000000000 --- a/icons-react/icons-js/zeppelin-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZeppelinOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZeppelinOff; \ No newline at end of file diff --git a/icons-react/icons-js/zeppelin.js b/icons-react/icons-js/zeppelin.js deleted file mode 100644 index 1c405d377..000000000 --- a/icons-react/icons-js/zeppelin.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZeppelin({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZeppelin; \ No newline at end of file diff --git a/icons-react/icons-js/zip.js b/icons-react/icons-js/zip.js deleted file mode 100644 index 7c0bd1081..000000000 --- a/icons-react/icons-js/zip.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZip({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZip; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-aquarius.js b/icons-react/icons-js/zodiac-aquarius.js deleted file mode 100644 index 455bcbdbd..000000000 --- a/icons-react/icons-js/zodiac-aquarius.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacAquarius({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacAquarius; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-aries.js b/icons-react/icons-js/zodiac-aries.js deleted file mode 100644 index 1a3e1a671..000000000 --- a/icons-react/icons-js/zodiac-aries.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacAries({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacAries; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-cancer.js b/icons-react/icons-js/zodiac-cancer.js deleted file mode 100644 index 5d90b4937..000000000 --- a/icons-react/icons-js/zodiac-cancer.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacCancer({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacCancer; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-capricorn.js b/icons-react/icons-js/zodiac-capricorn.js deleted file mode 100644 index 81c2294d7..000000000 --- a/icons-react/icons-js/zodiac-capricorn.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacCapricorn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacCapricorn; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-gemini.js b/icons-react/icons-js/zodiac-gemini.js deleted file mode 100644 index 81a7ef639..000000000 --- a/icons-react/icons-js/zodiac-gemini.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacGemini({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacGemini; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-leo.js b/icons-react/icons-js/zodiac-leo.js deleted file mode 100644 index d77b0d93b..000000000 --- a/icons-react/icons-js/zodiac-leo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacLeo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacLeo; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-libra.js b/icons-react/icons-js/zodiac-libra.js deleted file mode 100644 index 71ef4229b..000000000 --- a/icons-react/icons-js/zodiac-libra.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacLibra({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacLibra; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-pisces.js b/icons-react/icons-js/zodiac-pisces.js deleted file mode 100644 index ac0991f1c..000000000 --- a/icons-react/icons-js/zodiac-pisces.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacPisces({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacPisces; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-sagittarius.js b/icons-react/icons-js/zodiac-sagittarius.js deleted file mode 100644 index fcbb24bcc..000000000 --- a/icons-react/icons-js/zodiac-sagittarius.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacSagittarius({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacSagittarius; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-scorpio.js b/icons-react/icons-js/zodiac-scorpio.js deleted file mode 100644 index f0d23510f..000000000 --- a/icons-react/icons-js/zodiac-scorpio.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacScorpio({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacScorpio; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-taurus.js b/icons-react/icons-js/zodiac-taurus.js deleted file mode 100644 index 8a3699f61..000000000 --- a/icons-react/icons-js/zodiac-taurus.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacTaurus({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacTaurus; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-virgo.js b/icons-react/icons-js/zodiac-virgo.js deleted file mode 100644 index 54826e676..000000000 --- a/icons-react/icons-js/zodiac-virgo.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZodiacVirgo({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZodiacVirgo; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-cancel.js b/icons-react/icons-js/zoom-cancel.js deleted file mode 100644 index 7b18821fe..000000000 --- a/icons-react/icons-js/zoom-cancel.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomCancel({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomCancel; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-check.js b/icons-react/icons-js/zoom-check.js deleted file mode 100644 index 7c62e25aa..000000000 --- a/icons-react/icons-js/zoom-check.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomCheck({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomCheck; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-code.js b/icons-react/icons-js/zoom-code.js deleted file mode 100644 index 728ab6853..000000000 --- a/icons-react/icons-js/zoom-code.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomCode({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomCode; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-exclamation.js b/icons-react/icons-js/zoom-exclamation.js deleted file mode 100644 index 63be048f1..000000000 --- a/icons-react/icons-js/zoom-exclamation.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomExclamation({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomExclamation; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-in-area.js b/icons-react/icons-js/zoom-in-area.js deleted file mode 100644 index f69799055..000000000 --- a/icons-react/icons-js/zoom-in-area.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomInArea({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomInArea; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-in.js b/icons-react/icons-js/zoom-in.js deleted file mode 100644 index c8310e67a..000000000 --- a/icons-react/icons-js/zoom-in.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomIn({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomIn; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-money.js b/icons-react/icons-js/zoom-money.js deleted file mode 100644 index 81687dded..000000000 --- a/icons-react/icons-js/zoom-money.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomMoney({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomMoney; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-out-area.js b/icons-react/icons-js/zoom-out-area.js deleted file mode 100644 index 3a3e21a27..000000000 --- a/icons-react/icons-js/zoom-out-area.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomOutArea({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomOutArea; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-out.js b/icons-react/icons-js/zoom-out.js deleted file mode 100644 index 098691b92..000000000 --- a/icons-react/icons-js/zoom-out.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomOut({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomOut; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-pan.js b/icons-react/icons-js/zoom-pan.js deleted file mode 100644 index fcb71b53f..000000000 --- a/icons-react/icons-js/zoom-pan.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomPan({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomPan; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-question.js b/icons-react/icons-js/zoom-question.js deleted file mode 100644 index 348a9a957..000000000 --- a/icons-react/icons-js/zoom-question.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomQuestion({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomQuestion; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-replace.js b/icons-react/icons-js/zoom-replace.js deleted file mode 100644 index 976fce045..000000000 --- a/icons-react/icons-js/zoom-replace.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomReplace({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomReplace; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-reset.js b/icons-react/icons-js/zoom-reset.js deleted file mode 100644 index 1b42cccd0..000000000 --- a/icons-react/icons-js/zoom-reset.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZoomReset({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZoomReset; \ No newline at end of file diff --git a/icons-react/icons-js/zzz-off.js b/icons-react/icons-js/zzz-off.js deleted file mode 100644 index 28f125adf..000000000 --- a/icons-react/icons-js/zzz-off.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZzzOff({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZzzOff; \ No newline at end of file diff --git a/icons-react/icons-js/zzz.js b/icons-react/icons-js/zzz.js deleted file mode 100644 index 0079cfc59..000000000 --- a/icons-react/icons-js/zzz.js +++ /dev/null @@ -1,12 +0,0 @@ -import * as React from "react"; - -function IconZzz({ - size = 24, - color = "currentColor", - stroke = 2, - ...props -}) { - return ; -} - -export default IconZzz; \ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts deleted file mode 100644 index 2e09113e4..000000000 --- a/icons-react/index.d.ts +++ /dev/null @@ -1,3138 +0,0 @@ -import { FC, SVGAttributes } from 'react'; - -type TablerIconProps = Omit, 'color' | 'stroke'> & { - color?: SVGAttributes['stroke']; - size?: SVGAttributes['width']; - stroke?: SVGAttributes['strokeWidth']; -} - -type TablerIcon = FC; - -export const Icon123: TablerIcon; -export const Icon24Hours: TablerIcon; -export const Icon2fa: TablerIcon; -export const Icon360View: TablerIcon; -export const Icon360: TablerIcon; -export const Icon3dCubeSphereOff: TablerIcon; -export const Icon3dCubeSphere: TablerIcon; -export const Icon3dRotate: TablerIcon; -export const IconAB2: TablerIcon; -export const IconABOff: TablerIcon; -export const IconAB: TablerIcon; -export const IconAbacusOff: TablerIcon; -export const IconAbacus: TablerIcon; -export const IconAbc: TablerIcon; -export const IconAccessPointOff: TablerIcon; -export const IconAccessPoint: TablerIcon; -export const IconAccessibleOff: TablerIcon; -export const IconAccessible: TablerIcon; -export const IconActivityHeartbeat: TablerIcon; -export const IconActivity: TablerIcon; -export const IconAd2: TablerIcon; -export const IconAdOff: TablerIcon; -export const IconAd: TablerIcon; -export const IconAddressBookOff: TablerIcon; -export const IconAddressBook: TablerIcon; -export const IconAdjustmentsAlt: TablerIcon; -export const IconAdjustmentsHorizontal: TablerIcon; -export const IconAdjustmentsOff: TablerIcon; -export const IconAdjustments: TablerIcon; -export const IconAerialLift: TablerIcon; -export const IconAffiliate: TablerIcon; -export const IconAirBalloon: TablerIcon; -export const IconAirConditioningDisabled: TablerIcon; -export const IconAirConditioning: TablerIcon; -export const IconAlarmMinus: TablerIcon; -export const IconAlarmOff: TablerIcon; -export const IconAlarmPlus: TablerIcon; -export const IconAlarmSnooze: TablerIcon; -export const IconAlarm: TablerIcon; -export const IconAlbumOff: TablerIcon; -export const IconAlbum: TablerIcon; -export const IconAlertCircle: TablerIcon; -export const IconAlertOctagon: TablerIcon; -export const IconAlertTriangle: TablerIcon; -export const IconAlien: TablerIcon; -export const IconAlignBoxBottomCenter: TablerIcon; -export const IconAlignBoxBottomLeft: TablerIcon; -export const IconAlignBoxBottomRight: TablerIcon; -export const IconAlignBoxLeftBottom: TablerIcon; -export const IconAlignBoxLeftMiddle: TablerIcon; -export const IconAlignBoxLeftTop: TablerIcon; -export const IconAlignBoxRightBottom: TablerIcon; -export const IconAlignBoxRightMiddle: TablerIcon; -export const IconAlignBoxRightTop: TablerIcon; -export const IconAlignBoxTopCenter: TablerIcon; -export const IconAlignBoxTopLeft: TablerIcon; -export const IconAlignBoxTopRight: TablerIcon; -export const IconAlignCenter: TablerIcon; -export const IconAlignJustified: TablerIcon; -export const IconAlignLeft: TablerIcon; -export const IconAlignRight: TablerIcon; -export const IconAlpha: TablerIcon; -export const IconAlphabetCyrillic: TablerIcon; -export const IconAlphabetGreek: TablerIcon; -export const IconAlphabetLatin: TablerIcon; -export const IconAmbulance: TablerIcon; -export const IconAmpersand: TablerIcon; -export const IconAnalyzeOff: TablerIcon; -export const IconAnalyze: TablerIcon; -export const IconAnchorOff: TablerIcon; -export const IconAnchor: TablerIcon; -export const IconAngle: TablerIcon; -export const IconAnkh: TablerIcon; -export const IconAntennaBars1: TablerIcon; -export const IconAntennaBars2: TablerIcon; -export const IconAntennaBars3: TablerIcon; -export const IconAntennaBars4: TablerIcon; -export const IconAntennaBars5: TablerIcon; -export const IconAntennaBarsOff: TablerIcon; -export const IconAntennaOff: TablerIcon; -export const IconAntenna: TablerIcon; -export const IconApertureOff: TablerIcon; -export const IconAperture: TablerIcon; -export const IconApiAppOff: TablerIcon; -export const IconApiApp: TablerIcon; -export const IconApiOff: TablerIcon; -export const IconApi: TablerIcon; -export const IconAppWindow: TablerIcon; -export const IconApple: TablerIcon; -export const IconAppsOff: TablerIcon; -export const IconApps: TablerIcon; -export const IconArchiveOff: TablerIcon; -export const IconArchive: TablerIcon; -export const IconArmchair2Off: TablerIcon; -export const IconArmchair2: TablerIcon; -export const IconArmchairOff: TablerIcon; -export const IconArmchair: TablerIcon; -export const IconArrowAutofitContent: TablerIcon; -export const IconArrowAutofitDown: TablerIcon; -export const IconArrowAutofitHeight: TablerIcon; -export const IconArrowAutofitLeft: TablerIcon; -export const IconArrowAutofitRight: TablerIcon; -export const IconArrowAutofitUp: TablerIcon; -export const IconArrowAutofitWidth: TablerIcon; -export const IconArrowBackUp: TablerIcon; -export const IconArrowBack: TablerIcon; -export const IconArrowBadgeDown: TablerIcon; -export const IconArrowBadgeLeft: TablerIcon; -export const IconArrowBadgeRight: TablerIcon; -export const IconArrowBadgeUp: TablerIcon; -export const IconArrowBarDown: TablerIcon; -export const IconArrowBarLeft: TablerIcon; -export const IconArrowBarRight: TablerIcon; -export const IconArrowBarToDown: TablerIcon; -export const IconArrowBarToLeft: TablerIcon; -export const IconArrowBarToRight: TablerIcon; -export const IconArrowBarToUp: TablerIcon; -export const IconArrowBarUp: TablerIcon; -export const IconArrowBearLeft2: TablerIcon; -export const IconArrowBearLeft: TablerIcon; -export const IconArrowBearRight2: TablerIcon; -export const IconArrowBearRight: TablerIcon; -export const IconArrowBigDownLine: TablerIcon; -export const IconArrowBigDownLines: TablerIcon; -export const IconArrowBigDown: TablerIcon; -export const IconArrowBigLeftLine: TablerIcon; -export const IconArrowBigLeftLines: TablerIcon; -export const IconArrowBigLeft: TablerIcon; -export const IconArrowBigRightLine: TablerIcon; -export const IconArrowBigRightLines: TablerIcon; -export const IconArrowBigRight: TablerIcon; -export const IconArrowBigTop: TablerIcon; -export const IconArrowBigUpLine: TablerIcon; -export const IconArrowBigUpLines: TablerIcon; -export const IconArrowBounce: TablerIcon; -export const IconArrowCurveLeft: TablerIcon; -export const IconArrowCurveRight: TablerIcon; -export const IconArrowDownBar: TablerIcon; -export const IconArrowDownCircle: TablerIcon; -export const IconArrowDownLeftCircle: TablerIcon; -export const IconArrowDownLeft: TablerIcon; -export const IconArrowDownRhombus: TablerIcon; -export const IconArrowDownRightCircle: TablerIcon; -export const IconArrowDownRight: TablerIcon; -export const IconArrowDownSquare: TablerIcon; -export const IconArrowDownTail: TablerIcon; -export const IconArrowDown: TablerIcon; -export const IconArrowFork: TablerIcon; -export const IconArrowForwardUp: TablerIcon; -export const IconArrowForward: TablerIcon; -export const IconArrowGuide: TablerIcon; -export const IconArrowIteration: TablerIcon; -export const IconArrowLeftBar: TablerIcon; -export const IconArrowLeftCircle: TablerIcon; -export const IconArrowLeftRhombus: TablerIcon; -export const IconArrowLeftRight: TablerIcon; -export const IconArrowLeftSquare: TablerIcon; -export const IconArrowLeftTail: TablerIcon; -export const IconArrowLeft: TablerIcon; -export const IconArrowLoopLeft2: TablerIcon; -export const IconArrowLoopLeft: TablerIcon; -export const IconArrowLoopRight2: TablerIcon; -export const IconArrowLoopRight: TablerIcon; -export const IconArrowMergeBoth: TablerIcon; -export const IconArrowMergeLeft: TablerIcon; -export const IconArrowMergeRight: TablerIcon; -export const IconArrowMerge: TablerIcon; -export const IconArrowMoveDown: TablerIcon; -export const IconArrowMoveLeft: TablerIcon; -export const IconArrowMoveRight: TablerIcon; -export const IconArrowMoveUp: TablerIcon; -export const IconArrowNarrowDown: TablerIcon; -export const IconArrowNarrowLeft: TablerIcon; -export const IconArrowNarrowRight: TablerIcon; -export const IconArrowNarrowUp: TablerIcon; -export const IconArrowRampLeft2: TablerIcon; -export const IconArrowRampLeft3: TablerIcon; -export const IconArrowRampLeft: TablerIcon; -export const IconArrowRampRight2: TablerIcon; -export const IconArrowRampRight3: TablerIcon; -export const IconArrowRampRight: TablerIcon; -export const IconArrowRightBar: TablerIcon; -export const IconArrowRightCircle: TablerIcon; -export const IconArrowRightRhombus: TablerIcon; -export const IconArrowRightSquare: TablerIcon; -export const IconArrowRightTail: TablerIcon; -export const IconArrowRight: TablerIcon; -export const IconArrowRotaryFirstLeft: TablerIcon; -export const IconArrowRotaryFirstRight: TablerIcon; -export const IconArrowRotaryLastLeft: TablerIcon; -export const IconArrowRotaryLastRight: TablerIcon; -export const IconArrowRotaryLeft: TablerIcon; -export const IconArrowRotaryRight: TablerIcon; -export const IconArrowRotaryStraight: TablerIcon; -export const IconArrowRoundaboutLeft: TablerIcon; -export const IconArrowRoundaboutRight: TablerIcon; -export const IconArrowSharpTurnLeft: TablerIcon; -export const IconArrowSharpTurnRight: TablerIcon; -export const IconArrowUpBar: TablerIcon; -export const IconArrowUpCircle: TablerIcon; -export const IconArrowUpLeftCircle: TablerIcon; -export const IconArrowUpLeft: TablerIcon; -export const IconArrowUpRhombus: TablerIcon; -export const IconArrowUpRightCircle: TablerIcon; -export const IconArrowUpRight: TablerIcon; -export const IconArrowUpSquare: TablerIcon; -export const IconArrowUpTail: TablerIcon; -export const IconArrowUp: TablerIcon; -export const IconArrowWaveLeftDown: TablerIcon; -export const IconArrowWaveLeftUp: TablerIcon; -export const IconArrowWaveRightDown: TablerIcon; -export const IconArrowWaveRightUp: TablerIcon; -export const IconArrowZigZag: TablerIcon; -export const IconArrowsCross: TablerIcon; -export const IconArrowsDiagonal2: TablerIcon; -export const IconArrowsDiagonalMinimize2: TablerIcon; -export const IconArrowsDiagonalMinimize: TablerIcon; -export const IconArrowsDiagonal: TablerIcon; -export const IconArrowsDiff: TablerIcon; -export const IconArrowsDoubleNeSw: TablerIcon; -export const IconArrowsDoubleNwSe: TablerIcon; -export const IconArrowsDoubleSeNw: TablerIcon; -export const IconArrowsDoubleSwNe: TablerIcon; -export const IconArrowsDownUp: TablerIcon; -export const IconArrowsDown: TablerIcon; -export const IconArrowsExchange2: TablerIcon; -export const IconArrowsExchange: TablerIcon; -export const IconArrowsHorizontal: TablerIcon; -export const IconArrowsJoin2: TablerIcon; -export const IconArrowsJoin: TablerIcon; -export const IconArrowsLeftDown: TablerIcon; -export const IconArrowsLeftRight: TablerIcon; -export const IconArrowsLeft: TablerIcon; -export const IconArrowsMaximize: TablerIcon; -export const IconArrowsMinimize: TablerIcon; -export const IconArrowsMoveHorizontal: TablerIcon; -export const IconArrowsMoveVertical: TablerIcon; -export const IconArrowsMove: TablerIcon; -export const IconArrowsRandom: TablerIcon; -export const IconArrowsRightDown: TablerIcon; -export const IconArrowsRightLeft: TablerIcon; -export const IconArrowsRight: TablerIcon; -export const IconArrowsShuffle2: TablerIcon; -export const IconArrowsShuffle: TablerIcon; -export const IconArrowsSort: TablerIcon; -export const IconArrowsSplit2: TablerIcon; -export const IconArrowsSplit: TablerIcon; -export const IconArrowsTransferDown: TablerIcon; -export const IconArrowsTransferUp: TablerIcon; -export const IconArrowsUpDown: TablerIcon; -export const IconArrowsUpLeft: TablerIcon; -export const IconArrowsUpRight: TablerIcon; -export const IconArrowsUp: TablerIcon; -export const IconArrowsVertical: TablerIcon; -export const IconArtboardOff: TablerIcon; -export const IconArtboard: TablerIcon; -export const IconArticleOff: TablerIcon; -export const IconArticle: TablerIcon; -export const IconAspectRatioOff: TablerIcon; -export const IconAspectRatio: TablerIcon; -export const IconAssemblyOff: TablerIcon; -export const IconAssembly: TablerIcon; -export const IconAsset: TablerIcon; -export const IconAsteriskSimple: TablerIcon; -export const IconAsterisk: TablerIcon; -export const IconAtOff: TablerIcon; -export const IconAt: TablerIcon; -export const IconAtom2: TablerIcon; -export const IconAtomOff: TablerIcon; -export const IconAtom: TablerIcon; -export const IconAugmentedReality2: TablerIcon; -export const IconAugmentedRealityOff: TablerIcon; -export const IconAugmentedReality: TablerIcon; -export const IconAwardOff: TablerIcon; -export const IconAward: TablerIcon; -export const IconAxe: TablerIcon; -export const IconAxisX: TablerIcon; -export const IconAxisY: TablerIcon; -export const IconBabyBottle: TablerIcon; -export const IconBabyCarriage: TablerIcon; -export const IconBackhoe: TablerIcon; -export const IconBackpackOff: TablerIcon; -export const IconBackpack: TablerIcon; -export const IconBackspace: TablerIcon; -export const IconBadge3d: TablerIcon; -export const IconBadge4k: TablerIcon; -export const IconBadge8k: TablerIcon; -export const IconBadgeAd: TablerIcon; -export const IconBadgeAr: TablerIcon; -export const IconBadgeCc: TablerIcon; -export const IconBadgeHd: TablerIcon; -export const IconBadgeOff: TablerIcon; -export const IconBadgeSd: TablerIcon; -export const IconBadgeTm: TablerIcon; -export const IconBadgeVo: TablerIcon; -export const IconBadgeVr: TablerIcon; -export const IconBadgeWc: TablerIcon; -export const IconBadge: TablerIcon; -export const IconBadgesOff: TablerIcon; -export const IconBadges: TablerIcon; -export const IconBaguette: TablerIcon; -export const IconBallAmericanFootballOff: TablerIcon; -export const IconBallAmericanFootball: TablerIcon; -export const IconBallBaseball: TablerIcon; -export const IconBallBasketball: TablerIcon; -export const IconBallBowling: TablerIcon; -export const IconBallFootballOff: TablerIcon; -export const IconBallFootball: TablerIcon; -export const IconBallTennis: TablerIcon; -export const IconBallVolleyball: TablerIcon; -export const IconBallonOff: TablerIcon; -export const IconBallon: TablerIcon; -export const IconBallpenOff: TablerIcon; -export const IconBallpen: TablerIcon; -export const IconBan: TablerIcon; -export const IconBandageOff: TablerIcon; -export const IconBandage: TablerIcon; -export const IconBarbellOff: TablerIcon; -export const IconBarbell: TablerIcon; -export const IconBarcodeOff: TablerIcon; -export const IconBarcode: TablerIcon; -export const IconBarrelOff: TablerIcon; -export const IconBarrel: TablerIcon; -export const IconBarrierBlockOff: TablerIcon; -export const IconBarrierBlock: TablerIcon; -export const IconBaseline: TablerIcon; -export const IconBasketOff: TablerIcon; -export const IconBasket: TablerIcon; -export const IconBat: TablerIcon; -export const IconBathOff: TablerIcon; -export const IconBath: TablerIcon; -export const IconBattery1: TablerIcon; -export const IconBattery2: TablerIcon; -export const IconBattery3: TablerIcon; -export const IconBattery4: TablerIcon; -export const IconBatteryAutomotive: TablerIcon; -export const IconBatteryCharging2: TablerIcon; -export const IconBatteryCharging: TablerIcon; -export const IconBatteryEco: TablerIcon; -export const IconBatteryOff: TablerIcon; -export const IconBattery: TablerIcon; -export const IconBeachOff: TablerIcon; -export const IconBeach: TablerIcon; -export const IconBedOff: TablerIcon; -export const IconBed: TablerIcon; -export const IconBeerOff: TablerIcon; -export const IconBeer: TablerIcon; -export const IconBellMinus: TablerIcon; -export const IconBellOff: TablerIcon; -export const IconBellPlus: TablerIcon; -export const IconBellRinging2: TablerIcon; -export const IconBellRinging: TablerIcon; -export const IconBellSchool: TablerIcon; -export const IconBellX: TablerIcon; -export const IconBellZ: TablerIcon; -export const IconBell: TablerIcon; -export const IconBeta: TablerIcon; -export const IconBible: TablerIcon; -export const IconBikeOff: TablerIcon; -export const IconBike: TablerIcon; -export const IconBinaryOff: TablerIcon; -export const IconBinaryTree2: TablerIcon; -export const IconBinaryTree: TablerIcon; -export const IconBinary: TablerIcon; -export const IconBiohazardOff: TablerIcon; -export const IconBiohazard: TablerIcon; -export const IconBlade: TablerIcon; -export const IconBleachChlorine: TablerIcon; -export const IconBleachNoChlorine: TablerIcon; -export const IconBleachOff: TablerIcon; -export const IconBleach: TablerIcon; -export const IconBlockquote: TablerIcon; -export const IconBluetoothConnected: TablerIcon; -export const IconBluetoothOff: TablerIcon; -export const IconBluetoothX: TablerIcon; -export const IconBluetooth: TablerIcon; -export const IconBlurOff: TablerIcon; -export const IconBlur: TablerIcon; -export const IconBmp: TablerIcon; -export const IconBoldOff: TablerIcon; -export const IconBold: TablerIcon; -export const IconBoltOff: TablerIcon; -export const IconBolt: TablerIcon; -export const IconBomb: TablerIcon; -export const IconBoneOff: TablerIcon; -export const IconBone: TablerIcon; -export const IconBongOff: TablerIcon; -export const IconBong: TablerIcon; -export const IconBook2: TablerIcon; -export const IconBookDownload: TablerIcon; -export const IconBookOff: TablerIcon; -export const IconBookUpload: TablerIcon; -export const IconBook: TablerIcon; -export const IconBookmarkOff: TablerIcon; -export const IconBookmark: TablerIcon; -export const IconBookmarksOff: TablerIcon; -export const IconBookmarks: TablerIcon; -export const IconBooksOff: TablerIcon; -export const IconBooks: TablerIcon; -export const IconBorderAll: TablerIcon; -export const IconBorderBottom: TablerIcon; -export const IconBorderHorizontal: TablerIcon; -export const IconBorderInner: TablerIcon; -export const IconBorderLeft: TablerIcon; -export const IconBorderNone: TablerIcon; -export const IconBorderOuter: TablerIcon; -export const IconBorderRadius: TablerIcon; -export const IconBorderRight: TablerIcon; -export const IconBorderStyle2: TablerIcon; -export const IconBorderStyle: TablerIcon; -export const IconBorderTop: TablerIcon; -export const IconBorderVertical: TablerIcon; -export const IconBottleOff: TablerIcon; -export const IconBottle: TablerIcon; -export const IconBounceLeft: TablerIcon; -export const IconBounceRight: TablerIcon; -export const IconBow: TablerIcon; -export const IconBowl: TablerIcon; -export const IconBoxAlignBottomLeft: TablerIcon; -export const IconBoxAlignBottomRight: TablerIcon; -export const IconBoxAlignBottom: TablerIcon; -export const IconBoxAlignLeft: TablerIcon; -export const IconBoxAlignRight: TablerIcon; -export const IconBoxAlignTopLeft: TablerIcon; -export const IconBoxAlignTopRight: TablerIcon; -export const IconBoxAlignTop: TablerIcon; -export const IconBoxMargin: TablerIcon; -export const IconBoxModel2Off: TablerIcon; -export const IconBoxModel2: TablerIcon; -export const IconBoxModelOff: TablerIcon; -export const IconBoxModel: TablerIcon; -export const IconBoxMultiple0: TablerIcon; -export const IconBoxMultiple1: TablerIcon; -export const IconBoxMultiple2: TablerIcon; -export const IconBoxMultiple3: TablerIcon; -export const IconBoxMultiple4: TablerIcon; -export const IconBoxMultiple5: TablerIcon; -export const IconBoxMultiple6: TablerIcon; -export const IconBoxMultiple7: TablerIcon; -export const IconBoxMultiple8: TablerIcon; -export const IconBoxMultiple9: TablerIcon; -export const IconBoxMultiple: TablerIcon; -export const IconBoxOff: TablerIcon; -export const IconBoxPadding: TablerIcon; -export const IconBoxSeam: TablerIcon; -export const IconBox: TablerIcon; -export const IconBracesOff: TablerIcon; -export const IconBraces: TablerIcon; -export const IconBracketsContainEnd: TablerIcon; -export const IconBracketsContainStart: TablerIcon; -export const IconBracketsContain: TablerIcon; -export const IconBracketsOff: TablerIcon; -export const IconBrackets: TablerIcon; -export const IconBraile: TablerIcon; -export const IconBrain: TablerIcon; -export const IconBrand4chan: TablerIcon; -export const IconBrandAbstract: TablerIcon; -export const IconBrandAdobe: TablerIcon; -export const IconBrandAdonisJs: TablerIcon; -export const IconBrandAirbnb: TablerIcon; -export const IconBrandAirtable: TablerIcon; -export const IconBrandAlgolia: TablerIcon; -export const IconBrandAlpineJs: TablerIcon; -export const IconBrandAmazon: TablerIcon; -export const IconBrandAmd: TablerIcon; -export const IconBrandAmigo: TablerIcon; -export const IconBrandAmongus: TablerIcon; -export const IconBrandAndroid: TablerIcon; -export const IconBrandAngular: TablerIcon; -export const IconBrandAo3: TablerIcon; -export const IconBrandAppgallery: TablerIcon; -export const IconBrandAppleArcade: TablerIcon; -export const IconBrandApplePodcast: TablerIcon; -export const IconBrandApple: TablerIcon; -export const IconBrandAppstore: TablerIcon; -export const IconBrandAsana: TablerIcon; -export const IconBrandBackbone: TablerIcon; -export const IconBrandBadoo: TablerIcon; -export const IconBrandBaidu: TablerIcon; -export const IconBrandBandcamp: TablerIcon; -export const IconBrandBandlab: TablerIcon; -export const IconBrandBeats: TablerIcon; -export const IconBrandBehance: TablerIcon; -export const IconBrandBinance: TablerIcon; -export const IconBrandBing: TablerIcon; -export const IconBrandBitbucket: TablerIcon; -export const IconBrandBlackbery: TablerIcon; -export const IconBrandBlender: TablerIcon; -export const IconBrandBlogger: TablerIcon; -export const IconBrandBooking: TablerIcon; -export const IconBrandBootstrap: TablerIcon; -export const IconBrandBulma: TablerIcon; -export const IconBrandBumble: TablerIcon; -export const IconBrandBunpo: TablerIcon; -export const IconBrandCampaignmonitor: TablerIcon; -export const IconBrandCarbon: TablerIcon; -export const IconBrandCashapp: TablerIcon; -export const IconBrandChrome: TablerIcon; -export const IconBrandCitymapper: TablerIcon; -export const IconBrandCodecov: TablerIcon; -export const IconBrandCodepen: TablerIcon; -export const IconBrandCodesandbox: TablerIcon; -export const IconBrandCohost: TablerIcon; -export const IconBrandCoinbase: TablerIcon; -export const IconBrandComedyCentral: TablerIcon; -export const IconBrandCoreos: TablerIcon; -export const IconBrandCouchdb: TablerIcon; -export const IconBrandCouchsurfing: TablerIcon; -export const IconBrandCpp: TablerIcon; -export const IconBrandCss3: TablerIcon; -export const IconBrandCtemplar: TablerIcon; -export const IconBrandCucumber: TablerIcon; -export const IconBrandCupra: TablerIcon; -export const IconBrandCypress: TablerIcon; -export const IconBrandD3: TablerIcon; -export const IconBrandDaysCounter: TablerIcon; -export const IconBrandDcos: TablerIcon; -export const IconBrandDebian: TablerIcon; -export const IconBrandDeliveroo: TablerIcon; -export const IconBrandDeno: TablerIcon; -export const IconBrandDenodo: TablerIcon; -export const IconBrandDeviantart: TablerIcon; -export const IconBrandDingtalk: TablerIcon; -export const IconBrandDiscord: TablerIcon; -export const IconBrandDisney: TablerIcon; -export const IconBrandDisqus: TablerIcon; -export const IconBrandDjango: TablerIcon; -export const IconBrandDocker: TablerIcon; -export const IconBrandDoctrine: TablerIcon; -export const IconBrandDolbyDigital: TablerIcon; -export const IconBrandDouban: TablerIcon; -export const IconBrandDribbble: TablerIcon; -export const IconBrandDrops: TablerIcon; -export const IconBrandDrupal: TablerIcon; -export const IconBrandEdge: TablerIcon; -export const IconBrandElastic: TablerIcon; -export const IconBrandEmber: TablerIcon; -export const IconBrandEnvato: TablerIcon; -export const IconBrandEtsy: TablerIcon; -export const IconBrandEvernote: TablerIcon; -export const IconBrandFacebook: TablerIcon; -export const IconBrandFigma: TablerIcon; -export const IconBrandFinder: TablerIcon; -export const IconBrandFirebase: TablerIcon; -export const IconBrandFirefox: TablerIcon; -export const IconBrandFlickr: TablerIcon; -export const IconBrandFlightradar24: TablerIcon; -export const IconBrandFlipboard: TablerIcon; -export const IconBrandFlutter: TablerIcon; -export const IconBrandFortnite: TablerIcon; -export const IconBrandFoursquare: TablerIcon; -export const IconBrandFramer: TablerIcon; -export const IconBrandFunimation: TablerIcon; -export const IconBrandGatsby: TablerIcon; -export const IconBrandGit: TablerIcon; -export const IconBrandGithubCopilot: TablerIcon; -export const IconBrandGithub: TablerIcon; -export const IconBrandGitlab: TablerIcon; -export const IconBrandGmail: TablerIcon; -export const IconBrandGoogleAnalytics: TablerIcon; -export const IconBrandGoogleBigQuery: TablerIcon; -export const IconBrandGoogleDrive: TablerIcon; -export const IconBrandGoogleFit: TablerIcon; -export const IconBrandGoogleHome: TablerIcon; -export const IconBrandGoogleOne: TablerIcon; -export const IconBrandGooglePhotos: TablerIcon; -export const IconBrandGooglePlay: TablerIcon; -export const IconBrandGooglePodcasts: TablerIcon; -export const IconBrandGoogle: TablerIcon; -export const IconBrandGrammarly: TablerIcon; -export const IconBrandGraphql: TablerIcon; -export const IconBrandGravatar: TablerIcon; -export const IconBrandGrindr: TablerIcon; -export const IconBrandGuardian: TablerIcon; -export const IconBrandGumroad: TablerIcon; -export const IconBrandHbo: TablerIcon; -export const IconBrandHeadlessui: TablerIcon; -export const IconBrandHipchat: TablerIcon; -export const IconBrandHtml5: TablerIcon; -export const IconBrandInertia: TablerIcon; -export const IconBrandInstagram: TablerIcon; -export const IconBrandIntercom: TablerIcon; -export const IconBrandJavascript: TablerIcon; -export const IconBrandKickstarter: TablerIcon; -export const IconBrandKotlin: TablerIcon; -export const IconBrandLaravel: TablerIcon; -export const IconBrandLastfm: TablerIcon; -export const IconBrandLinkedin: TablerIcon; -export const IconBrandLinktree: TablerIcon; -export const IconBrandLinqpad: TablerIcon; -export const IconBrandLoom: TablerIcon; -export const IconBrandMailgun: TablerIcon; -export const IconBrandMantine: TablerIcon; -export const IconBrandMastercard: TablerIcon; -export const IconBrandMastodon: TablerIcon; -export const IconBrandMatrix: TablerIcon; -export const IconBrandMcdonalds: TablerIcon; -export const IconBrandMedium: TablerIcon; -export const IconBrandMercedes: TablerIcon; -export const IconBrandMessenger: TablerIcon; -export const IconBrandMeta: TablerIcon; -export const IconBrandMiniprogram: TablerIcon; -export const IconBrandMixpanel: TablerIcon; -export const IconBrandMonday: TablerIcon; -export const IconBrandMongodb: TablerIcon; -export const IconBrandMyOppo: TablerIcon; -export const IconBrandMysql: TablerIcon; -export const IconBrandNationalGeographic: TablerIcon; -export const IconBrandNem: TablerIcon; -export const IconBrandNetbeans: TablerIcon; -export const IconBrandNeteaseMusic: TablerIcon; -export const IconBrandNetflix: TablerIcon; -export const IconBrandNexo: TablerIcon; -export const IconBrandNextcloud: TablerIcon; -export const IconBrandNextjs: TablerIcon; -export const IconBrandNordVpn: TablerIcon; -export const IconBrandNotion: TablerIcon; -export const IconBrandNpm: TablerIcon; -export const IconBrandNuxt: TablerIcon; -export const IconBrandNytimes: TablerIcon; -export const IconBrandOffice: TablerIcon; -export const IconBrandOkRu: TablerIcon; -export const IconBrandOnedrive: TablerIcon; -export const IconBrandOnlyfans: TablerIcon; -export const IconBrandOpenSource: TablerIcon; -export const IconBrandOpenvpn: TablerIcon; -export const IconBrandOpera: TablerIcon; -export const IconBrandPagekit: TablerIcon; -export const IconBrandPatreon: TablerIcon; -export const IconBrandPaypal: TablerIcon; -export const IconBrandPaypay: TablerIcon; -export const IconBrandPeanut: TablerIcon; -export const IconBrandPepsi: TablerIcon; -export const IconBrandPhp: TablerIcon; -export const IconBrandPicsart: TablerIcon; -export const IconBrandPinterest: TablerIcon; -export const IconBrandPocket: TablerIcon; -export const IconBrandPolymer: TablerIcon; -export const IconBrandPowershell: TablerIcon; -export const IconBrandPrisma: TablerIcon; -export const IconBrandProducthunt: TablerIcon; -export const IconBrandPushbullet: TablerIcon; -export const IconBrandPushover: TablerIcon; -export const IconBrandPython: TablerIcon; -export const IconBrandQq: TablerIcon; -export const IconBrandReactNative: TablerIcon; -export const IconBrandReact: TablerIcon; -export const IconBrandReason: TablerIcon; -export const IconBrandReddit: TablerIcon; -export const IconBrandRedhat: TablerIcon; -export const IconBrandRedux: TablerIcon; -export const IconBrandRevolut: TablerIcon; -export const IconBrandSafari: TablerIcon; -export const IconBrandSamsungpass: TablerIcon; -export const IconBrandSass: TablerIcon; -export const IconBrandSentry: TablerIcon; -export const IconBrandSharik: TablerIcon; -export const IconBrandShazam: TablerIcon; -export const IconBrandShopee: TablerIcon; -export const IconBrandSketch: TablerIcon; -export const IconBrandSkype: TablerIcon; -export const IconBrandSlack: TablerIcon; -export const IconBrandSnapchat: TablerIcon; -export const IconBrandSnapseed: TablerIcon; -export const IconBrandSnowflake: TablerIcon; -export const IconBrandSocketIo: TablerIcon; -export const IconBrandSolidjs: TablerIcon; -export const IconBrandSoundcloud: TablerIcon; -export const IconBrandSpacehey: TablerIcon; -export const IconBrandSpotify: TablerIcon; -export const IconBrandStackoverflow: TablerIcon; -export const IconBrandStackshare: TablerIcon; -export const IconBrandSteam: TablerIcon; -export const IconBrandStorybook: TablerIcon; -export const IconBrandStorytel: TablerIcon; -export const IconBrandStrava: TablerIcon; -export const IconBrandStripe: TablerIcon; -export const IconBrandSublimeText: TablerIcon; -export const IconBrandSuperhuman: TablerIcon; -export const IconBrandSupernova: TablerIcon; -export const IconBrandSurfshark: TablerIcon; -export const IconBrandSvelte: TablerIcon; -export const IconBrandSymfony: TablerIcon; -export const IconBrandTabler: TablerIcon; -export const IconBrandTailwind: TablerIcon; -export const IconBrandTaobao: TablerIcon; -export const IconBrandTed: TablerIcon; -export const IconBrandTelegram: TablerIcon; -export const IconBrandTether: TablerIcon; -export const IconBrandThreejs: TablerIcon; -export const IconBrandTidal: TablerIcon; -export const IconBrandTiktok: TablerIcon; -export const IconBrandTinder: TablerIcon; -export const IconBrandTopbuzz: TablerIcon; -export const IconBrandTorchain: TablerIcon; -export const IconBrandToyota: TablerIcon; -export const IconBrandTrello: TablerIcon; -export const IconBrandTripadvisor: TablerIcon; -export const IconBrandTumblr: TablerIcon; -export const IconBrandTwilio: TablerIcon; -export const IconBrandTwitch: TablerIcon; -export const IconBrandTwitter: TablerIcon; -export const IconBrandTypescript: TablerIcon; -export const IconBrandUber: TablerIcon; -export const IconBrandUbuntu: TablerIcon; -export const IconBrandUnity: TablerIcon; -export const IconBrandUnsplash: TablerIcon; -export const IconBrandUpwork: TablerIcon; -export const IconBrandValorant: TablerIcon; -export const IconBrandVercel: TablerIcon; -export const IconBrandVimeo: TablerIcon; -export const IconBrandVinted: TablerIcon; -export const IconBrandVisa: TablerIcon; -export const IconBrandVisualStudio: TablerIcon; -export const IconBrandVite: TablerIcon; -export const IconBrandVivaldi: TablerIcon; -export const IconBrandVk: TablerIcon; -export const IconBrandVolkswagen: TablerIcon; -export const IconBrandVsco: TablerIcon; -export const IconBrandVscode: TablerIcon; -export const IconBrandVue: TablerIcon; -export const IconBrandWalmart: TablerIcon; -export const IconBrandWaze: TablerIcon; -export const IconBrandWebflow: TablerIcon; -export const IconBrandWechat: TablerIcon; -export const IconBrandWeibo: TablerIcon; -export const IconBrandWhatsapp: TablerIcon; -export const IconBrandWindows: TablerIcon; -export const IconBrandWindy: TablerIcon; -export const IconBrandWish: TablerIcon; -export const IconBrandWix: TablerIcon; -export const IconBrandWordpress: TablerIcon; -export const IconBrandXbox: TablerIcon; -export const IconBrandXing: TablerIcon; -export const IconBrandYahoo: TablerIcon; -export const IconBrandYatse: TablerIcon; -export const IconBrandYcombinator: TablerIcon; -export const IconBrandYoutubeKids: TablerIcon; -export const IconBrandYoutube: TablerIcon; -export const IconBrandZalando: TablerIcon; -export const IconBrandZapier: TablerIcon; -export const IconBrandZeit: TablerIcon; -export const IconBrandZhihu: TablerIcon; -export const IconBrandZoom: TablerIcon; -export const IconBrandZulip: TablerIcon; -export const IconBrandZwift: TablerIcon; -export const IconBreadOff: TablerIcon; -export const IconBread: TablerIcon; -export const IconBriefcaseOff: TablerIcon; -export const IconBriefcase: TablerIcon; -export const IconBrightness2: TablerIcon; -export const IconBrightnessDown: TablerIcon; -export const IconBrightnessHalf: TablerIcon; -export const IconBrightnessOff: TablerIcon; -export const IconBrightnessUp: TablerIcon; -export const IconBrightness: TablerIcon; -export const IconBroadcastOff: TablerIcon; -export const IconBroadcast: TablerIcon; -export const IconBrowserCheck: TablerIcon; -export const IconBrowserOff: TablerIcon; -export const IconBrowserPlus: TablerIcon; -export const IconBrowserX: TablerIcon; -export const IconBrowser: TablerIcon; -export const IconBrushOff: TablerIcon; -export const IconBrush: TablerIcon; -export const IconBucketDroplet: TablerIcon; -export const IconBucketOff: TablerIcon; -export const IconBucket: TablerIcon; -export const IconBugOff: TablerIcon; -export const IconBug: TablerIcon; -export const IconBuildingArch: TablerIcon; -export const IconBuildingBank: TablerIcon; -export const IconBuildingBridge2: TablerIcon; -export const IconBuildingBridge: TablerIcon; -export const IconBuildingBroadcastTower: TablerIcon; -export const IconBuildingCarousel: TablerIcon; -export const IconBuildingCastle: TablerIcon; -export const IconBuildingChurch: TablerIcon; -export const IconBuildingCircus: TablerIcon; -export const IconBuildingCommunity: TablerIcon; -export const IconBuildingCottage: TablerIcon; -export const IconBuildingEstate: TablerIcon; -export const IconBuildingFactory2: TablerIcon; -export const IconBuildingFactory: TablerIcon; -export const IconBuildingFortress: TablerIcon; -export const IconBuildingHospital: TablerIcon; -export const IconBuildingLighthouse: TablerIcon; -export const IconBuildingMonument: TablerIcon; -export const IconBuildingPavilon: TablerIcon; -export const IconBuildingSkyscraper: TablerIcon; -export const IconBuildingStadium: TablerIcon; -export const IconBuildingStore: TablerIcon; -export const IconBuildingTunnel: TablerIcon; -export const IconBuildingWarehouse: TablerIcon; -export const IconBuildingWindTurbine: TablerIcon; -export const IconBuilding: TablerIcon; -export const IconBulbOff: TablerIcon; -export const IconBulb: TablerIcon; -export const IconBulldozer: TablerIcon; -export const IconBusOff: TablerIcon; -export const IconBusStop: TablerIcon; -export const IconBus: TablerIcon; -export const IconBusinessplan: TablerIcon; -export const IconButterfly: TablerIcon; -export const IconCSharp: TablerIcon; -export const IconCactusOff: TablerIcon; -export const IconCactus: TablerIcon; -export const IconCakeOff: TablerIcon; -export const IconCake: TablerIcon; -export const IconCalculatorOff: TablerIcon; -export const IconCalculator: TablerIcon; -export const IconCalendarDue: TablerIcon; -export const IconCalendarEvent: TablerIcon; -export const IconCalendarMinus: TablerIcon; -export const IconCalendarOff: TablerIcon; -export const IconCalendarPlus: TablerIcon; -export const IconCalendarStats: TablerIcon; -export const IconCalendarTime: TablerIcon; -export const IconCalendar: TablerIcon; -export const IconCameraMinus: TablerIcon; -export const IconCameraOff: TablerIcon; -export const IconCameraPlus: TablerIcon; -export const IconCameraRotate: TablerIcon; -export const IconCameraSelfie: TablerIcon; -export const IconCamera: TablerIcon; -export const IconCampfire: TablerIcon; -export const IconCandle: TablerIcon; -export const IconCandyOff: TablerIcon; -export const IconCandy: TablerIcon; -export const IconCane: TablerIcon; -export const IconCannabis: TablerIcon; -export const IconCaptureOff: TablerIcon; -export const IconCapture: TablerIcon; -export const IconCarCrane: TablerIcon; -export const IconCarCrash: TablerIcon; -export const IconCarOff: TablerIcon; -export const IconCarTurbine: TablerIcon; -export const IconCar: TablerIcon; -export const IconCaravan: TablerIcon; -export const IconCardboardsOff: TablerIcon; -export const IconCardboards: TablerIcon; -export const IconCards: TablerIcon; -export const IconCaretDown: TablerIcon; -export const IconCaretLeft: TablerIcon; -export const IconCaretRight: TablerIcon; -export const IconCaretUp: TablerIcon; -export const IconCarouselHorizontal: TablerIcon; -export const IconCarouselVertical: TablerIcon; -export const IconCarrotOff: TablerIcon; -export const IconCarrot: TablerIcon; -export const IconCashBanknoteOff: TablerIcon; -export const IconCashBanknote: TablerIcon; -export const IconCashOff: TablerIcon; -export const IconCash: TablerIcon; -export const IconCastOff: TablerIcon; -export const IconCast: TablerIcon; -export const IconCat: TablerIcon; -export const IconCategory2: TablerIcon; -export const IconCategory: TablerIcon; -export const IconCeOff: TablerIcon; -export const IconCe: TablerIcon; -export const IconCellSignal1: TablerIcon; -export const IconCellSignal2: TablerIcon; -export const IconCellSignal3: TablerIcon; -export const IconCellSignal4: TablerIcon; -export const IconCellSignal5: TablerIcon; -export const IconCellSignalOff: TablerIcon; -export const IconCell: TablerIcon; -export const IconCertificate2Off: TablerIcon; -export const IconCertificate2: TablerIcon; -export const IconCertificateOff: TablerIcon; -export const IconCertificate: TablerIcon; -export const IconChairDirector: TablerIcon; -export const IconChalkboardOff: TablerIcon; -export const IconChalkboard: TablerIcon; -export const IconChargingPile: TablerIcon; -export const IconChartArcs3: TablerIcon; -export const IconChartArcs: TablerIcon; -export const IconChartAreaLine: TablerIcon; -export const IconChartArea: TablerIcon; -export const IconChartArrowsVertical: TablerIcon; -export const IconChartArrows: TablerIcon; -export const IconChartBarOff: TablerIcon; -export const IconChartBar: TablerIcon; -export const IconChartBubble: TablerIcon; -export const IconChartCandle: TablerIcon; -export const IconChartCircles: TablerIcon; -export const IconChartDonut2: TablerIcon; -export const IconChartDonut3: TablerIcon; -export const IconChartDonut4: TablerIcon; -export const IconChartDonut: TablerIcon; -export const IconChartDots2: TablerIcon; -export const IconChartDots3: TablerIcon; -export const IconChartDots: TablerIcon; -export const IconChartGridDots: TablerIcon; -export const IconChartHistogram: TablerIcon; -export const IconChartInfographic: TablerIcon; -export const IconChartLine: TablerIcon; -export const IconChartPie2: TablerIcon; -export const IconChartPie3: TablerIcon; -export const IconChartPie4: TablerIcon; -export const IconChartPieOff: TablerIcon; -export const IconChartPie: TablerIcon; -export const IconChartPpf: TablerIcon; -export const IconChartRadar: TablerIcon; -export const IconChartSankey: TablerIcon; -export const IconChartTreemap: TablerIcon; -export const IconCheck: TablerIcon; -export const IconCheckbox: TablerIcon; -export const IconChecklist: TablerIcon; -export const IconChecks: TablerIcon; -export const IconCheckupList: TablerIcon; -export const IconCheese: TablerIcon; -export const IconChefHatOff: TablerIcon; -export const IconChefHat: TablerIcon; -export const IconCherry: TablerIcon; -export const IconChessBishop: TablerIcon; -export const IconChessKing: TablerIcon; -export const IconChessKnight: TablerIcon; -export const IconChessQueen: TablerIcon; -export const IconChessRook: TablerIcon; -export const IconChess: TablerIcon; -export const IconChevronDownLeft: TablerIcon; -export const IconChevronDownRight: TablerIcon; -export const IconChevronDown: TablerIcon; -export const IconChevronLeft: TablerIcon; -export const IconChevronRight: TablerIcon; -export const IconChevronUpLeft: TablerIcon; -export const IconChevronUpRight: TablerIcon; -export const IconChevronUp: TablerIcon; -export const IconChevronsDownLeft: TablerIcon; -export const IconChevronsDownRight: TablerIcon; -export const IconChevronsDown: TablerIcon; -export const IconChevronsLeft: TablerIcon; -export const IconChevronsRight: TablerIcon; -export const IconChevronsUpLeft: TablerIcon; -export const IconChevronsUpRight: TablerIcon; -export const IconChevronsUp: TablerIcon; -export const IconChisel: TablerIcon; -export const IconChristmasTreeOff: TablerIcon; -export const IconChristmasTree: TablerIcon; -export const IconCircleCaretDown: TablerIcon; -export const IconCircleCaretLeft: TablerIcon; -export const IconCircleCaretRight: TablerIcon; -export const IconCircleCaretUp: TablerIcon; -export const IconCircleCheck: TablerIcon; -export const IconCircleChevronDown: TablerIcon; -export const IconCircleChevronLeft: TablerIcon; -export const IconCircleChevronRight: TablerIcon; -export const IconCircleChevronUp: TablerIcon; -export const IconCircleChevronsDown: TablerIcon; -export const IconCircleChevronsLeft: TablerIcon; -export const IconCircleChevronsRight: TablerIcon; -export const IconCircleChevronsUp: TablerIcon; -export const IconCircleDashed: TablerIcon; -export const IconCircleDot: TablerIcon; -export const IconCircleDotted: TablerIcon; -export const IconCircleHalf2: TablerIcon; -export const IconCircleHalfVertical: TablerIcon; -export const IconCircleHalf: TablerIcon; -export const IconCircleKey: TablerIcon; -export const IconCircleLetterA: TablerIcon; -export const IconCircleLetterB: TablerIcon; -export const IconCircleLetterC: TablerIcon; -export const IconCircleLetterD: TablerIcon; -export const IconCircleLetterE: TablerIcon; -export const IconCircleLetterF: TablerIcon; -export const IconCircleLetterG: TablerIcon; -export const IconCircleLetterH: TablerIcon; -export const IconCircleLetterI: TablerIcon; -export const IconCircleLetterJ: TablerIcon; -export const IconCircleLetterK: TablerIcon; -export const IconCircleLetterL: TablerIcon; -export const IconCircleLetterM: TablerIcon; -export const IconCircleLetterN: TablerIcon; -export const IconCircleLetterO: TablerIcon; -export const IconCircleLetterP: TablerIcon; -export const IconCircleLetterQ: TablerIcon; -export const IconCircleLetterR: TablerIcon; -export const IconCircleLetterS: TablerIcon; -export const IconCircleLetterT: TablerIcon; -export const IconCircleLetterU: TablerIcon; -export const IconCircleLetterV: TablerIcon; -export const IconCircleLetterW: TablerIcon; -export const IconCircleLetterX: TablerIcon; -export const IconCircleLetterY: TablerIcon; -export const IconCircleLetterZ: TablerIcon; -export const IconCircleMinus: TablerIcon; -export const IconCircleNumber0: TablerIcon; -export const IconCircleNumber1: TablerIcon; -export const IconCircleNumber2: TablerIcon; -export const IconCircleNumber3: TablerIcon; -export const IconCircleNumber4: TablerIcon; -export const IconCircleNumber5: TablerIcon; -export const IconCircleNumber6: TablerIcon; -export const IconCircleNumber7: TablerIcon; -export const IconCircleNumber8: TablerIcon; -export const IconCircleNumber9: TablerIcon; -export const IconCircleOff: TablerIcon; -export const IconCirclePlus: TablerIcon; -export const IconCircleRectangleOff: TablerIcon; -export const IconCircleRectangle: TablerIcon; -export const IconCircleSquare: TablerIcon; -export const IconCircleTriangle: TablerIcon; -export const IconCircleX: TablerIcon; -export const IconCircle: TablerIcon; -export const IconCirclesRelation: TablerIcon; -export const IconCircles: TablerIcon; -export const IconCircuitAmmeter: TablerIcon; -export const IconCircuitBattery: TablerIcon; -export const IconCircuitBulb: TablerIcon; -export const IconCircuitCapacitorPolarized: TablerIcon; -export const IconCircuitCapacitor: TablerIcon; -export const IconCircuitCellPlus: TablerIcon; -export const IconCircuitCell: TablerIcon; -export const IconCircuitChangeover: TablerIcon; -export const IconCircuitDiodeZener: TablerIcon; -export const IconCircuitDiode: TablerIcon; -export const IconCircuitGroundDigital: TablerIcon; -export const IconCircuitGround: TablerIcon; -export const IconCircuitInductor: TablerIcon; -export const IconCircuitMotor: TablerIcon; -export const IconCircuitPushbutton: TablerIcon; -export const IconCircuitResistor: TablerIcon; -export const IconCircuitSwitchClosed: TablerIcon; -export const IconCircuitSwitchOpen: TablerIcon; -export const IconCircuitVoltmeter: TablerIcon; -export const IconClearAll: TablerIcon; -export const IconClearFormatting: TablerIcon; -export const IconClick: TablerIcon; -export const IconClipboardCheck: TablerIcon; -export const IconClipboardCopy: TablerIcon; -export const IconClipboardData: TablerIcon; -export const IconClipboardHeart: TablerIcon; -export const IconClipboardList: TablerIcon; -export const IconClipboardOff: TablerIcon; -export const IconClipboardPlus: TablerIcon; -export const IconClipboardText: TablerIcon; -export const IconClipboardTypography: TablerIcon; -export const IconClipboardX: TablerIcon; -export const IconClipboard: TablerIcon; -export const IconClock2: TablerIcon; -export const IconClockCancel: TablerIcon; -export const IconClockEdit: TablerIcon; -export const IconClockHour1: TablerIcon; -export const IconClockHour10: TablerIcon; -export const IconClockHour11: TablerIcon; -export const IconClockHour12: TablerIcon; -export const IconClockHour2: TablerIcon; -export const IconClockHour3: TablerIcon; -export const IconClockHour4: TablerIcon; -export const IconClockHour5: TablerIcon; -export const IconClockHour6: TablerIcon; -export const IconClockHour7: TablerIcon; -export const IconClockHour8: TablerIcon; -export const IconClockHour9: TablerIcon; -export const IconClockOff: TablerIcon; -export const IconClockPause: TablerIcon; -export const IconClockPlay: TablerIcon; -export const IconClockRecord: TablerIcon; -export const IconClockStop: TablerIcon; -export const IconClock: TablerIcon; -export const IconClothesRackOff: TablerIcon; -export const IconClothesRack: TablerIcon; -export const IconCloudComputing: TablerIcon; -export const IconCloudDataConnection: TablerIcon; -export const IconCloudDownload: TablerIcon; -export const IconCloudFog: TablerIcon; -export const IconCloudLockOpen: TablerIcon; -export const IconCloudLock: TablerIcon; -export const IconCloudOff: TablerIcon; -export const IconCloudRain: TablerIcon; -export const IconCloudSnow: TablerIcon; -export const IconCloudStorm: TablerIcon; -export const IconCloudUpload: TablerIcon; -export const IconCloud: TablerIcon; -export const IconClover2: TablerIcon; -export const IconClover: TablerIcon; -export const IconClubs: TablerIcon; -export const IconCodeAsterix: TablerIcon; -export const IconCodeCircle2: TablerIcon; -export const IconCodeCircle: TablerIcon; -export const IconCodeDots: TablerIcon; -export const IconCodeMinus: TablerIcon; -export const IconCodeOff: TablerIcon; -export const IconCodePlus: TablerIcon; -export const IconCode: TablerIcon; -export const IconCoffeeOff: TablerIcon; -export const IconCoffee: TablerIcon; -export const IconCoffin: TablerIcon; -export const IconCoinBitcoin: TablerIcon; -export const IconCoinEuro: TablerIcon; -export const IconCoinMonero: TablerIcon; -export const IconCoinOff: TablerIcon; -export const IconCoinPound: TablerIcon; -export const IconCoinRupee: TablerIcon; -export const IconCoinYen: TablerIcon; -export const IconCoinYuan: TablerIcon; -export const IconCoin: TablerIcon; -export const IconCoins: TablerIcon; -export const IconColorFilter: TablerIcon; -export const IconColorPickerOff: TablerIcon; -export const IconColorPicker: TablerIcon; -export const IconColorSwatchOff: TablerIcon; -export const IconColorSwatch: TablerIcon; -export const IconColumnInsertLeft: TablerIcon; -export const IconColumnInsertRight: TablerIcon; -export const IconColumnsOff: TablerIcon; -export const IconColumns: TablerIcon; -export const IconComet: TablerIcon; -export const IconCommandOff: TablerIcon; -export const IconCommand: TablerIcon; -export const IconCompassOff: TablerIcon; -export const IconCompass: TablerIcon; -export const IconComponentsOff: TablerIcon; -export const IconComponents: TablerIcon; -export const IconCone2: TablerIcon; -export const IconConeOff: TablerIcon; -export const IconCone: TablerIcon; -export const IconConfettiOff: TablerIcon; -export const IconConfetti: TablerIcon; -export const IconConfucius: TablerIcon; -export const IconContainerOff: TablerIcon; -export const IconContainer: TablerIcon; -export const IconContrast2Off: TablerIcon; -export const IconContrast2: TablerIcon; -export const IconContrastOff: TablerIcon; -export const IconContrast: TablerIcon; -export const IconCooker: TablerIcon; -export const IconCookieMan: TablerIcon; -export const IconCookieOff: TablerIcon; -export const IconCookie: TablerIcon; -export const IconCopyOff: TablerIcon; -export const IconCopy: TablerIcon; -export const IconCopyleftOff: TablerIcon; -export const IconCopyleft: TablerIcon; -export const IconCopyrightOff: TablerIcon; -export const IconCopyright: TablerIcon; -export const IconCornerDownLeftDouble: TablerIcon; -export const IconCornerDownLeft: TablerIcon; -export const IconCornerDownRightDouble: TablerIcon; -export const IconCornerDownRight: TablerIcon; -export const IconCornerLeftDownDouble: TablerIcon; -export const IconCornerLeftDown: TablerIcon; -export const IconCornerLeftUpDouble: TablerIcon; -export const IconCornerLeftUp: TablerIcon; -export const IconCornerRightDownDouble: TablerIcon; -export const IconCornerRightDown: TablerIcon; -export const IconCornerRightUpDouble: TablerIcon; -export const IconCornerRightUp: TablerIcon; -export const IconCornerUpLeftDouble: TablerIcon; -export const IconCornerUpLeft: TablerIcon; -export const IconCornerUpRightDouble: TablerIcon; -export const IconCornerUpRight: TablerIcon; -export const IconCpu2: TablerIcon; -export const IconCpuOff: TablerIcon; -export const IconCpu: TablerIcon; -export const IconCraneOff: TablerIcon; -export const IconCrane: TablerIcon; -export const IconCreativeCommonsBy: TablerIcon; -export const IconCreativeCommonsNc: TablerIcon; -export const IconCreativeCommonsNd: TablerIcon; -export const IconCreativeCommonsOff: TablerIcon; -export const IconCreativeCommonsSa: TablerIcon; -export const IconCreativeCommonsZero: TablerIcon; -export const IconCreativeCommons: TablerIcon; -export const IconCreditCardOff: TablerIcon; -export const IconCreditCard: TablerIcon; -export const IconCricket: TablerIcon; -export const IconCrop: TablerIcon; -export const IconCrossOff: TablerIcon; -export const IconCross: TablerIcon; -export const IconCrosshair: TablerIcon; -export const IconCrownOff: TablerIcon; -export const IconCrown: TablerIcon; -export const IconCrutchesOff: TablerIcon; -export const IconCrutches: TablerIcon; -export const IconCrystalBall: TablerIcon; -export const IconCubeSend: TablerIcon; -export const IconCubeUnfolded: TablerIcon; -export const IconCupOff: TablerIcon; -export const IconCup: TablerIcon; -export const IconCurling: TablerIcon; -export const IconCurlyLoop: TablerIcon; -export const IconCurrencyAfghani: TablerIcon; -export const IconCurrencyBahraini: TablerIcon; -export const IconCurrencyBaht: TablerIcon; -export const IconCurrencyBitcoin: TablerIcon; -export const IconCurrencyCent: TablerIcon; -export const IconCurrencyDinar: TablerIcon; -export const IconCurrencyDirham: TablerIcon; -export const IconCurrencyDogecoin: TablerIcon; -export const IconCurrencyDollarAustralian: TablerIcon; -export const IconCurrencyDollarBrunei: TablerIcon; -export const IconCurrencyDollarCanadian: TablerIcon; -export const IconCurrencyDollarGuyanese: TablerIcon; -export const IconCurrencyDollarOff: TablerIcon; -export const IconCurrencyDollarSingapore: TablerIcon; -export const IconCurrencyDollarZimbabwean: TablerIcon; -export const IconCurrencyDollar: TablerIcon; -export const IconCurrencyDong: TablerIcon; -export const IconCurrencyDram: TablerIcon; -export const IconCurrencyEthereum: TablerIcon; -export const IconCurrencyEuroOff: TablerIcon; -export const IconCurrencyEuro: TablerIcon; -export const IconCurrencyForint: TablerIcon; -export const IconCurrencyFrank: TablerIcon; -export const IconCurrencyGuarani: TablerIcon; -export const IconCurrencyHryvnia: TablerIcon; -export const IconCurrencyKip: TablerIcon; -export const IconCurrencyKroneCzech: TablerIcon; -export const IconCurrencyKroneDanish: TablerIcon; -export const IconCurrencyKroneSwedish: TablerIcon; -export const IconCurrencyLari: TablerIcon; -export const IconCurrencyLeu: TablerIcon; -export const IconCurrencyLira: TablerIcon; -export const IconCurrencyLitecoin: TablerIcon; -export const IconCurrencyLyd: TablerIcon; -export const IconCurrencyManat: TablerIcon; -export const IconCurrencyMonero: TablerIcon; -export const IconCurrencyNaira: TablerIcon; -export const IconCurrencyOff: TablerIcon; -export const IconCurrencyPaanga: TablerIcon; -export const IconCurrencyPeso: TablerIcon; -export const IconCurrencyPoundOff: TablerIcon; -export const IconCurrencyPound: TablerIcon; -export const IconCurrencyQuetzal: TablerIcon; -export const IconCurrencyReal: TablerIcon; -export const IconCurrencyRenminbi: TablerIcon; -export const IconCurrencyRipple: TablerIcon; -export const IconCurrencyRiyal: TablerIcon; -export const IconCurrencyRubel: TablerIcon; -export const IconCurrencyRufiyaa: TablerIcon; -export const IconCurrencyRupeeNepalese: TablerIcon; -export const IconCurrencyRupee: TablerIcon; -export const IconCurrencyShekel: TablerIcon; -export const IconCurrencySolana: TablerIcon; -export const IconCurrencySom: TablerIcon; -export const IconCurrencyTaka: TablerIcon; -export const IconCurrencyTenge: TablerIcon; -export const IconCurrencyTugrik: TablerIcon; -export const IconCurrencyWon: TablerIcon; -export const IconCurrencyYenOff: TablerIcon; -export const IconCurrencyYen: TablerIcon; -export const IconCurrencyYuan: TablerIcon; -export const IconCurrencyZloty: TablerIcon; -export const IconCurrency: TablerIcon; -export const IconCurrentLocationOff: TablerIcon; -export const IconCurrentLocation: TablerIcon; -export const IconCursorOff: TablerIcon; -export const IconCursorText: TablerIcon; -export const IconCut: TablerIcon; -export const IconCylinder: TablerIcon; -export const IconDashboardOff: TablerIcon; -export const IconDashboard: TablerIcon; -export const IconDatabaseExport: TablerIcon; -export const IconDatabaseImport: TablerIcon; -export const IconDatabaseOff: TablerIcon; -export const IconDatabase: TablerIcon; -export const IconDeer: TablerIcon; -export const IconDelta: TablerIcon; -export const IconDentalBroken: TablerIcon; -export const IconDentalOff: TablerIcon; -export const IconDental: TablerIcon; -export const IconDetailsOff: TablerIcon; -export const IconDetails: TablerIcon; -export const IconDeviceAirpodsCase: TablerIcon; -export const IconDeviceAirpods: TablerIcon; -export const IconDeviceAnalytics: TablerIcon; -export const IconDeviceAudioTape: TablerIcon; -export const IconDeviceCameraPhone: TablerIcon; -export const IconDeviceCctvOff: TablerIcon; -export const IconDeviceCctv: TablerIcon; -export const IconDeviceComputerCameraOff: TablerIcon; -export const IconDeviceComputerCamera: TablerIcon; -export const IconDeviceDesktopAnalytics: TablerIcon; -export const IconDeviceDesktopOff: TablerIcon; -export const IconDeviceDesktop: TablerIcon; -export const IconDeviceFloppy: TablerIcon; -export const IconDeviceGamepad2: TablerIcon; -export const IconDeviceGamepad: TablerIcon; -export const IconDeviceHeartMonitor: TablerIcon; -export const IconDeviceIpadHorizontal: TablerIcon; -export const IconDeviceIpad: TablerIcon; -export const IconDeviceLandlinePhone: TablerIcon; -export const IconDeviceLaptopOff: TablerIcon; -export const IconDeviceLaptop: TablerIcon; -export const IconDeviceMobileCharging: TablerIcon; -export const IconDeviceMobileMessage: TablerIcon; -export const IconDeviceMobileOff: TablerIcon; -export const IconDeviceMobileRotated: TablerIcon; -export const IconDeviceMobileVibration: TablerIcon; -export const IconDeviceMobile: TablerIcon; -export const IconDeviceNintendoOff: TablerIcon; -export const IconDeviceNintendo: TablerIcon; -export const IconDeviceSdCard: TablerIcon; -export const IconDeviceSim1: TablerIcon; -export const IconDeviceSim2: TablerIcon; -export const IconDeviceSim3: TablerIcon; -export const IconDeviceSim: TablerIcon; -export const IconDeviceSpeakerOff: TablerIcon; -export const IconDeviceSpeaker: TablerIcon; -export const IconDeviceTabletOff: TablerIcon; -export const IconDeviceTablet: TablerIcon; -export const IconDeviceTvOff: TablerIcon; -export const IconDeviceTvOld: TablerIcon; -export const IconDeviceTv: TablerIcon; -export const IconDeviceWatchOff: TablerIcon; -export const IconDeviceWatchStats2: TablerIcon; -export const IconDeviceWatchStats: TablerIcon; -export const IconDeviceWatch: TablerIcon; -export const IconDevices2: TablerIcon; -export const IconDevicesOff: TablerIcon; -export const IconDevicesPcOff: TablerIcon; -export const IconDevicesPc: TablerIcon; -export const IconDevices: TablerIcon; -export const IconDialpadOff: TablerIcon; -export const IconDialpad: TablerIcon; -export const IconDiamondOff: TablerIcon; -export const IconDiamond: TablerIcon; -export const IconDiamonds: TablerIcon; -export const IconDice1: TablerIcon; -export const IconDice2: TablerIcon; -export const IconDice3: TablerIcon; -export const IconDice4: TablerIcon; -export const IconDice5: TablerIcon; -export const IconDice6: TablerIcon; -export const IconDice: TablerIcon; -export const IconDimensions: TablerIcon; -export const IconDirectionHorizontal: TablerIcon; -export const IconDirectionSignOff: TablerIcon; -export const IconDirectionSign: TablerIcon; -export const IconDirection: TablerIcon; -export const IconDirectionsOff: TablerIcon; -export const IconDirections: TablerIcon; -export const IconDisabled2: TablerIcon; -export const IconDisabledOff: TablerIcon; -export const IconDisabled: TablerIcon; -export const IconDiscGolf: TablerIcon; -export const IconDiscOff: TablerIcon; -export const IconDisc: TablerIcon; -export const IconDiscount2Off: TablerIcon; -export const IconDiscount2: TablerIcon; -export const IconDiscountCheck: TablerIcon; -export const IconDiscountOff: TablerIcon; -export const IconDiscount: TablerIcon; -export const IconDivide: TablerIcon; -export const IconDna2Off: TablerIcon; -export const IconDna2: TablerIcon; -export const IconDnaOff: TablerIcon; -export const IconDna: TablerIcon; -export const IconDogBowl: TablerIcon; -export const IconDog: TablerIcon; -export const IconDoorEnter: TablerIcon; -export const IconDoorExit: TablerIcon; -export const IconDoorOff: TablerIcon; -export const IconDoor: TablerIcon; -export const IconDotsCircleHorizontal: TablerIcon; -export const IconDotsDiagonal2: TablerIcon; -export const IconDotsDiagonal: TablerIcon; -export const IconDotsVertical: TablerIcon; -export const IconDots: TablerIcon; -export const IconDownloadOff: TablerIcon; -export const IconDownload: TablerIcon; -export const IconDragDrop2: TablerIcon; -export const IconDragDrop: TablerIcon; -export const IconDroneOff: TablerIcon; -export const IconDrone: TablerIcon; -export const IconDropCircle: TablerIcon; -export const IconDropletFilled2: TablerIcon; -export const IconDropletFilled: TablerIcon; -export const IconDropletHalf2: TablerIcon; -export const IconDropletHalf: TablerIcon; -export const IconDropletOff: TablerIcon; -export const IconDroplet: TablerIcon; -export const IconEPassport: TablerIcon; -export const IconEarOff: TablerIcon; -export const IconEar: TablerIcon; -export const IconEaseInControlPoint: TablerIcon; -export const IconEaseInOutControlPoints: TablerIcon; -export const IconEaseInOut: TablerIcon; -export const IconEaseIn: TablerIcon; -export const IconEaseOutControlPoint: TablerIcon; -export const IconEaseOut: TablerIcon; -export const IconEditCircleOff: TablerIcon; -export const IconEditCircle: TablerIcon; -export const IconEditOff: TablerIcon; -export const IconEdit: TablerIcon; -export const IconEggCracked: TablerIcon; -export const IconEggFried: TablerIcon; -export const IconEggOff: TablerIcon; -export const IconEgg: TablerIcon; -export const IconEggs: TablerIcon; -export const IconElevatorOff: TablerIcon; -export const IconElevator: TablerIcon; -export const IconEmergencyBed: TablerIcon; -export const IconEmpathizeOff: TablerIcon; -export const IconEmpathize: TablerIcon; -export const IconEmphasis: TablerIcon; -export const IconEngineOff: TablerIcon; -export const IconEngine: TablerIcon; -export const IconEqualDouble: TablerIcon; -export const IconEqualNot: TablerIcon; -export const IconEqual: TablerIcon; -export const IconEraserOff: TablerIcon; -export const IconEraser: TablerIcon; -export const IconError404Off: TablerIcon; -export const IconError404: TablerIcon; -export const IconExchangeOff: TablerIcon; -export const IconExchange: TablerIcon; -export const IconExclamationCircle: TablerIcon; -export const IconExclamationMarkOff: TablerIcon; -export const IconExclamationMark: TablerIcon; -export const IconExplicitOff: TablerIcon; -export const IconExplicit: TablerIcon; -export const IconExposure0: TablerIcon; -export const IconExposureMinus1: TablerIcon; -export const IconExposureMinus2: TablerIcon; -export const IconExposureOff: TablerIcon; -export const IconExposurePlus1: TablerIcon; -export const IconExposurePlus2: TablerIcon; -export const IconExposure: TablerIcon; -export const IconExternalLinkOff: TablerIcon; -export const IconExternalLink: TablerIcon; -export const IconEyeCheck: TablerIcon; -export const IconEyeOff: TablerIcon; -export const IconEyeTable: TablerIcon; -export const IconEye: TablerIcon; -export const IconEyeglass2: TablerIcon; -export const IconEyeglassOff: TablerIcon; -export const IconEyeglass: TablerIcon; -export const IconFaceIdError: TablerIcon; -export const IconFaceId: TablerIcon; -export const IconFaceMaskOff: TablerIcon; -export const IconFaceMask: TablerIcon; -export const IconFall: TablerIcon; -export const IconFeatherOff: TablerIcon; -export const IconFeather: TablerIcon; -export const IconFenceOff: TablerIcon; -export const IconFence: TablerIcon; -export const IconFidgetSpinner: TablerIcon; -export const IconFile3d: TablerIcon; -export const IconFileAlert: TablerIcon; -export const IconFileAnalytics: TablerIcon; -export const IconFileArrowLeft: TablerIcon; -export const IconFileArrowRight: TablerIcon; -export const IconFileBarcode: TablerIcon; -export const IconFileBroken: TablerIcon; -export const IconFileCertificate: TablerIcon; -export const IconFileChart: TablerIcon; -export const IconFileCheck: TablerIcon; -export const IconFileCode2: TablerIcon; -export const IconFileCode: TablerIcon; -export const IconFileDatabase: TablerIcon; -export const IconFileDelta: TablerIcon; -export const IconFileDescription: TablerIcon; -export const IconFileDiff: TablerIcon; -export const IconFileDigit: TablerIcon; -export const IconFileDislike: TablerIcon; -export const IconFileDollar: TablerIcon; -export const IconFileDots: TablerIcon; -export const IconFileDownload: TablerIcon; -export const IconFileEuro: TablerIcon; -export const IconFileExport: TablerIcon; -export const IconFileFunction: TablerIcon; -export const IconFileHorizontal: TablerIcon; -export const IconFileImport: TablerIcon; -export const IconFileInfinity: TablerIcon; -export const IconFileInfo: TablerIcon; -export const IconFileInvoice: TablerIcon; -export const IconFileLambda: TablerIcon; -export const IconFileLike: TablerIcon; -export const IconFileMinus: TablerIcon; -export const IconFileMusic: TablerIcon; -export const IconFileOff: TablerIcon; -export const IconFileOrientation: TablerIcon; -export const IconFilePencil: TablerIcon; -export const IconFilePercent: TablerIcon; -export const IconFilePhone: TablerIcon; -export const IconFilePlus: TablerIcon; -export const IconFilePower: TablerIcon; -export const IconFileReport: TablerIcon; -export const IconFileRss: TablerIcon; -export const IconFileScissors: TablerIcon; -export const IconFileSearch: TablerIcon; -export const IconFileSettings: TablerIcon; -export const IconFileShredder: TablerIcon; -export const IconFileSignal: TablerIcon; -export const IconFileSpreadsheet: TablerIcon; -export const IconFileStack: TablerIcon; -export const IconFileStar: TablerIcon; -export const IconFileSymlink: TablerIcon; -export const IconFileText: TablerIcon; -export const IconFileTime: TablerIcon; -export const IconFileTypography: TablerIcon; -export const IconFileUnknown: TablerIcon; -export const IconFileUpload: TablerIcon; -export const IconFileVector: TablerIcon; -export const IconFileX: TablerIcon; -export const IconFileZip: TablerIcon; -export const IconFile: TablerIcon; -export const IconFilesOff: TablerIcon; -export const IconFiles: TablerIcon; -export const IconFilterOff: TablerIcon; -export const IconFilter: TablerIcon; -export const IconFingerprintOff: TablerIcon; -export const IconFingerprint: TablerIcon; -export const IconFireHydrantOff: TablerIcon; -export const IconFireHydrant: TablerIcon; -export const IconFiretruck: TablerIcon; -export const IconFirstAidKitOff: TablerIcon; -export const IconFirstAidKit: TablerIcon; -export const IconFishBone: TablerIcon; -export const IconFishChristianity: TablerIcon; -export const IconFishHookOff: TablerIcon; -export const IconFishHook: TablerIcon; -export const IconFishOff: TablerIcon; -export const IconFish: TablerIcon; -export const IconFlag2Off: TablerIcon; -export const IconFlag2: TablerIcon; -export const IconFlag3: TablerIcon; -export const IconFlagOff: TablerIcon; -export const IconFlag: TablerIcon; -export const IconFlameOff: TablerIcon; -export const IconFlame: TablerIcon; -export const IconFlare: TablerIcon; -export const IconFlask2Off: TablerIcon; -export const IconFlask2: TablerIcon; -export const IconFlaskOff: TablerIcon; -export const IconFlask: TablerIcon; -export const IconFlipFlops: TablerIcon; -export const IconFlipHorizontal: TablerIcon; -export const IconFlipVertical: TablerIcon; -export const IconFloatCenter: TablerIcon; -export const IconFloatLeft: TablerIcon; -export const IconFloatNone: TablerIcon; -export const IconFloatRight: TablerIcon; -export const IconFlowerOff: TablerIcon; -export const IconFlower: TablerIcon; -export const IconFocus2: TablerIcon; -export const IconFocusCentered: TablerIcon; -export const IconFocus: TablerIcon; -export const IconFoldDown: TablerIcon; -export const IconFoldUp: TablerIcon; -export const IconFold: TablerIcon; -export const IconFolderMinus: TablerIcon; -export const IconFolderOff: TablerIcon; -export const IconFolderPlus: TablerIcon; -export const IconFolderX: TablerIcon; -export const IconFolder: TablerIcon; -export const IconFoldersOff: TablerIcon; -export const IconFolders: TablerIcon; -export const IconForbid2: TablerIcon; -export const IconForbid: TablerIcon; -export const IconForklift: TablerIcon; -export const IconForms: TablerIcon; -export const IconFountainOff: TablerIcon; -export const IconFountain: TablerIcon; -export const IconFrameOff: TablerIcon; -export const IconFrame: TablerIcon; -export const IconFreeRights: TablerIcon; -export const IconFridgeOff: TablerIcon; -export const IconFridge: TablerIcon; -export const IconFriendsOff: TablerIcon; -export const IconFriends: TablerIcon; -export const IconFunctionOff: TablerIcon; -export const IconFunction: TablerIcon; -export const IconGardenCartOff: TablerIcon; -export const IconGardenCart: TablerIcon; -export const IconGasStationOff: TablerIcon; -export const IconGasStation: TablerIcon; -export const IconGaugeOff: TablerIcon; -export const IconGauge: TablerIcon; -export const IconGavel: TablerIcon; -export const IconGenderAgender: TablerIcon; -export const IconGenderAndrogyne: TablerIcon; -export const IconGenderBigender: TablerIcon; -export const IconGenderDemiboy: TablerIcon; -export const IconGenderDemigirl: TablerIcon; -export const IconGenderEpicene: TablerIcon; -export const IconGenderFemale: TablerIcon; -export const IconGenderFemme: TablerIcon; -export const IconGenderGenderfluid: TablerIcon; -export const IconGenderGenderless: TablerIcon; -export const IconGenderGenderqueer: TablerIcon; -export const IconGenderHermaphrodite: TablerIcon; -export const IconGenderIntergender: TablerIcon; -export const IconGenderMale: TablerIcon; -export const IconGenderNeutrois: TablerIcon; -export const IconGenderThird: TablerIcon; -export const IconGenderTransgender: TablerIcon; -export const IconGenderTrasvesti: TablerIcon; -export const IconGeometry: TablerIcon; -export const IconGhost2: TablerIcon; -export const IconGhostOff: TablerIcon; -export const IconGhost: TablerIcon; -export const IconGif: TablerIcon; -export const IconGiftCard: TablerIcon; -export const IconGiftOff: TablerIcon; -export const IconGift: TablerIcon; -export const IconGitBranchDeleted: TablerIcon; -export const IconGitBranch: TablerIcon; -export const IconGitCherryPick: TablerIcon; -export const IconGitCommit: TablerIcon; -export const IconGitCompare: TablerIcon; -export const IconGitFork: TablerIcon; -export const IconGitMerge: TablerIcon; -export const IconGitPullRequestClosed: TablerIcon; -export const IconGitPullRequestDraft: TablerIcon; -export const IconGitPullRequest: TablerIcon; -export const IconGizmo: TablerIcon; -export const IconGlassFull: TablerIcon; -export const IconGlassOff: TablerIcon; -export const IconGlass: TablerIcon; -export const IconGlobeOff: TablerIcon; -export const IconGlobe: TablerIcon; -export const IconGoGame: TablerIcon; -export const IconGolfOff: TablerIcon; -export const IconGolf: TablerIcon; -export const IconGps: TablerIcon; -export const IconGradienter: TablerIcon; -export const IconGrain: TablerIcon; -export const IconGraphOff: TablerIcon; -export const IconGraph: TablerIcon; -export const IconGrave2: TablerIcon; -export const IconGrave: TablerIcon; -export const IconGridDots: TablerIcon; -export const IconGridPattern: TablerIcon; -export const IconGrillFork: TablerIcon; -export const IconGrillOff: TablerIcon; -export const IconGrillSpatula: TablerIcon; -export const IconGrill: TablerIcon; -export const IconGripHorizontal: TablerIcon; -export const IconGripVertical: TablerIcon; -export const IconGrowth: TablerIcon; -export const IconGuitarPick: TablerIcon; -export const IconH1: TablerIcon; -export const IconH2: TablerIcon; -export const IconH3: TablerIcon; -export const IconH4: TablerIcon; -export const IconH5: TablerIcon; -export const IconH6: TablerIcon; -export const IconHammerOff: TablerIcon; -export const IconHammer: TablerIcon; -export const IconHandClick: TablerIcon; -export const IconHandFingerOff: TablerIcon; -export const IconHandFinger: TablerIcon; -export const IconHandGrab: TablerIcon; -export const IconHandLittleFinger: TablerIcon; -export const IconHandMiddleFinger: TablerIcon; -export const IconHandMove: TablerIcon; -export const IconHandOff: TablerIcon; -export const IconHandRingFinger: TablerIcon; -export const IconHandRock: TablerIcon; -export const IconHandSanitizer: TablerIcon; -export const IconHandStop: TablerIcon; -export const IconHandThreeFingers: TablerIcon; -export const IconHandTwoFingers: TablerIcon; -export const IconHanger2: TablerIcon; -export const IconHangerOff: TablerIcon; -export const IconHanger: TablerIcon; -export const IconHash: TablerIcon; -export const IconHaze: TablerIcon; -export const IconHeadingOff: TablerIcon; -export const IconHeading: TablerIcon; -export const IconHeadphonesOff: TablerIcon; -export const IconHeadphones: TablerIcon; -export const IconHeadsetOff: TablerIcon; -export const IconHeadset: TablerIcon; -export const IconHealthRecognition: TablerIcon; -export const IconHeartBroken: TablerIcon; -export const IconHeartHandshake: TablerIcon; -export const IconHeartMinus: TablerIcon; -export const IconHeartOff: TablerIcon; -export const IconHeartPlus: TablerIcon; -export const IconHeartRateMonitor: TablerIcon; -export const IconHeart: TablerIcon; -export const IconHeartbeat: TablerIcon; -export const IconHeartsOff: TablerIcon; -export const IconHearts: TablerIcon; -export const IconHelicopterLanding: TablerIcon; -export const IconHelicopter: TablerIcon; -export const IconHelmetOff: TablerIcon; -export const IconHelmet: TablerIcon; -export const IconHelpOff: TablerIcon; -export const IconHelp: TablerIcon; -export const IconHexagon3d: TablerIcon; -export const IconHexagonLetterA: TablerIcon; -export const IconHexagonLetterB: TablerIcon; -export const IconHexagonLetterC: TablerIcon; -export const IconHexagonLetterD: TablerIcon; -export const IconHexagonLetterE: TablerIcon; -export const IconHexagonLetterF: TablerIcon; -export const IconHexagonLetterG: TablerIcon; -export const IconHexagonLetterH: TablerIcon; -export const IconHexagonLetterI: TablerIcon; -export const IconHexagonLetterJ: TablerIcon; -export const IconHexagonLetterK: TablerIcon; -export const IconHexagonLetterL: TablerIcon; -export const IconHexagonLetterM: TablerIcon; -export const IconHexagonLetterN: TablerIcon; -export const IconHexagonLetterO: TablerIcon; -export const IconHexagonLetterP: TablerIcon; -export const IconHexagonLetterQ: TablerIcon; -export const IconHexagonLetterR: TablerIcon; -export const IconHexagonLetterS: TablerIcon; -export const IconHexagonLetterT: TablerIcon; -export const IconHexagonLetterU: TablerIcon; -export const IconHexagonLetterV: TablerIcon; -export const IconHexagonLetterW: TablerIcon; -export const IconHexagonLetterX: TablerIcon; -export const IconHexagonLetterY: TablerIcon; -export const IconHexagonLetterZ: TablerIcon; -export const IconHexagonNumber0: TablerIcon; -export const IconHexagonNumber1: TablerIcon; -export const IconHexagonNumber2: TablerIcon; -export const IconHexagonNumber3: TablerIcon; -export const IconHexagonNumber4: TablerIcon; -export const IconHexagonNumber5: TablerIcon; -export const IconHexagonNumber6: TablerIcon; -export const IconHexagonNumber7: TablerIcon; -export const IconHexagonNumber8: TablerIcon; -export const IconHexagonNumber9: TablerIcon; -export const IconHexagonOff: TablerIcon; -export const IconHexagon: TablerIcon; -export const IconHexagonsOff: TablerIcon; -export const IconHexagons: TablerIcon; -export const IconHierarchy2: TablerIcon; -export const IconHierarchy3: TablerIcon; -export const IconHierarchyOff: TablerIcon; -export const IconHierarchy: TablerIcon; -export const IconHighlightOff: TablerIcon; -export const IconHighlight: TablerIcon; -export const IconHistoryOff: TablerIcon; -export const IconHistoryToggle: TablerIcon; -export const IconHistory: TablerIcon; -export const IconHome2: TablerIcon; -export const IconHomeBolt: TablerIcon; -export const IconHomeCancel: TablerIcon; -export const IconHomeCheck: TablerIcon; -export const IconHomeCog: TablerIcon; -export const IconHomeDollar: TablerIcon; -export const IconHomeDot: TablerIcon; -export const IconHomeDown: TablerIcon; -export const IconHomeEco: TablerIcon; -export const IconHomeEdit: TablerIcon; -export const IconHomeExclamation: TablerIcon; -export const IconHomeHand: TablerIcon; -export const IconHomeHeart: TablerIcon; -export const IconHomeInfinity: TablerIcon; -export const IconHomeLink: TablerIcon; -export const IconHomeMinus: TablerIcon; -export const IconHomeMove: TablerIcon; -export const IconHomeOff: TablerIcon; -export const IconHomePlus: TablerIcon; -export const IconHomeQuestion: TablerIcon; -export const IconHomeRibbon: TablerIcon; -export const IconHomeSearch: TablerIcon; -export const IconHomeShare: TablerIcon; -export const IconHomeShield: TablerIcon; -export const IconHomeSignal: TablerIcon; -export const IconHomeStar: TablerIcon; -export const IconHomeStats: TablerIcon; -export const IconHomeUp: TablerIcon; -export const IconHomeX: TablerIcon; -export const IconHome: TablerIcon; -export const IconHorseToy: TablerIcon; -export const IconHotelService: TablerIcon; -export const IconHourglassEmpty: TablerIcon; -export const IconHourglassHigh: TablerIcon; -export const IconHourglassLow: TablerIcon; -export const IconHourglassOff: TablerIcon; -export const IconHourglass: TablerIcon; -export const IconIceCream2: TablerIcon; -export const IconIceCreamOff: TablerIcon; -export const IconIceCream: TablerIcon; -export const IconIceSkating: TablerIcon; -export const IconIconsOff: TablerIcon; -export const IconIcons: TablerIcon; -export const IconIdBadge2: TablerIcon; -export const IconIdBadgeOff: TablerIcon; -export const IconIdBadge: TablerIcon; -export const IconIdOff: TablerIcon; -export const IconId: TablerIcon; -export const IconInboxOff: TablerIcon; -export const IconInbox: TablerIcon; -export const IconIndentDecrease: TablerIcon; -export const IconIndentIncrease: TablerIcon; -export const IconInfinityOff: TablerIcon; -export const IconInfinity: TablerIcon; -export const IconInfoCircle: TablerIcon; -export const IconInfoSquareRounded: TablerIcon; -export const IconInfoSquare: TablerIcon; -export const IconInnerShadowBottomLeft: TablerIcon; -export const IconInnerShadowBottomRight: TablerIcon; -export const IconInnerShadowBottom: TablerIcon; -export const IconInnerShadowLeft: TablerIcon; -export const IconInnerShadowRight: TablerIcon; -export const IconInnerShadowTopLeft: TablerIcon; -export const IconInnerShadowTopRight: TablerIcon; -export const IconInnerShadowTop: TablerIcon; -export const IconInputSearch: TablerIcon; -export const IconIroning1: TablerIcon; -export const IconIroning2: TablerIcon; -export const IconIroning3: TablerIcon; -export const IconIroningOff: TablerIcon; -export const IconIroningSteamOff: TablerIcon; -export const IconIroningSteam: TablerIcon; -export const IconItalic: TablerIcon; -export const IconJacket: TablerIcon; -export const IconJetpack: TablerIcon; -export const IconJewishStar: TablerIcon; -export const IconJpg: TablerIcon; -export const IconJumpRope: TablerIcon; -export const IconKarate: TablerIcon; -export const IconKayak: TablerIcon; -export const IconKering: TablerIcon; -export const IconKeyOff: TablerIcon; -export const IconKey: TablerIcon; -export const IconKeyboardHide: TablerIcon; -export const IconKeyboardOff: TablerIcon; -export const IconKeyboardShow: TablerIcon; -export const IconKeyboard: TablerIcon; -export const IconKeyframeAlignCenter: TablerIcon; -export const IconKeyframeAlignHorizontal: TablerIcon; -export const IconKeyframeAlignVertical: TablerIcon; -export const IconKeyframe: TablerIcon; -export const IconKeyframes: TablerIcon; -export const IconLadderOff: TablerIcon; -export const IconLadder: TablerIcon; -export const IconLambda: TablerIcon; -export const IconLamp2: TablerIcon; -export const IconLampOff: TablerIcon; -export const IconLamp: TablerIcon; -export const IconLanguageHiragana: TablerIcon; -export const IconLanguageKatakana: TablerIcon; -export const IconLanguageOff: TablerIcon; -export const IconLanguage: TablerIcon; -export const IconLassoOff: TablerIcon; -export const IconLassoPolygon: TablerIcon; -export const IconLasso: TablerIcon; -export const IconLayersDifference: TablerIcon; -export const IconLayersIntersect2: TablerIcon; -export const IconLayersIntersect: TablerIcon; -export const IconLayersLinked: TablerIcon; -export const IconLayersOff: TablerIcon; -export const IconLayersSubtract: TablerIcon; -export const IconLayersUnion: TablerIcon; -export const IconLayout2: TablerIcon; -export const IconLayoutAlignBottom: TablerIcon; -export const IconLayoutAlignCenter: TablerIcon; -export const IconLayoutAlignLeft: TablerIcon; -export const IconLayoutAlignMiddle: TablerIcon; -export const IconLayoutAlignRight: TablerIcon; -export const IconLayoutAlignTop: TablerIcon; -export const IconLayoutBoardSplit: TablerIcon; -export const IconLayoutBoard: TablerIcon; -export const IconLayoutBottombarCollapse: TablerIcon; -export const IconLayoutBottombarExpand: TablerIcon; -export const IconLayoutBottombar: TablerIcon; -export const IconLayoutCards: TablerIcon; -export const IconLayoutCollage: TablerIcon; -export const IconLayoutColumns: TablerIcon; -export const IconLayoutDashboard: TablerIcon; -export const IconLayoutDistributeHorizontal: TablerIcon; -export const IconLayoutDistributeVertical: TablerIcon; -export const IconLayoutGridAdd: TablerIcon; -export const IconLayoutGrid: TablerIcon; -export const IconLayoutKanban: TablerIcon; -export const IconLayoutList: TablerIcon; -export const IconLayoutNavbarCollapse: TablerIcon; -export const IconLayoutNavbarExpand: TablerIcon; -export const IconLayoutNavbar: TablerIcon; -export const IconLayoutOff: TablerIcon; -export const IconLayoutRows: TablerIcon; -export const IconLayoutSidebarLeftCollapse: TablerIcon; -export const IconLayoutSidebarLeftExpand: TablerIcon; -export const IconLayoutSidebarRightCollapse: TablerIcon; -export const IconLayoutSidebarRightExpand: TablerIcon; -export const IconLayoutSidebarRight: TablerIcon; -export const IconLayoutSidebar: TablerIcon; -export const IconLayout: TablerIcon; -export const IconLeafOff: TablerIcon; -export const IconLeaf: TablerIcon; -export const IconLegoOff: TablerIcon; -export const IconLego: TablerIcon; -export const IconLemon2: TablerIcon; -export const IconLemon: TablerIcon; -export const IconLetterA: TablerIcon; -export const IconLetterB: TablerIcon; -export const IconLetterC: TablerIcon; -export const IconLetterCaseLower: TablerIcon; -export const IconLetterCaseToggle: TablerIcon; -export const IconLetterCaseUpper: TablerIcon; -export const IconLetterCase: TablerIcon; -export const IconLetterD: TablerIcon; -export const IconLetterE: TablerIcon; -export const IconLetterF: TablerIcon; -export const IconLetterG: TablerIcon; -export const IconLetterH: TablerIcon; -export const IconLetterI: TablerIcon; -export const IconLetterJ: TablerIcon; -export const IconLetterK: TablerIcon; -export const IconLetterL: TablerIcon; -export const IconLetterM: TablerIcon; -export const IconLetterN: TablerIcon; -export const IconLetterO: TablerIcon; -export const IconLetterP: TablerIcon; -export const IconLetterQ: TablerIcon; -export const IconLetterR: TablerIcon; -export const IconLetterS: TablerIcon; -export const IconLetterSpacing: TablerIcon; -export const IconLetterT: TablerIcon; -export const IconLetterU: TablerIcon; -export const IconLetterV: TablerIcon; -export const IconLetterW: TablerIcon; -export const IconLetterX: TablerIcon; -export const IconLetterY: TablerIcon; -export const IconLetterZ: TablerIcon; -export const IconLicenseOff: TablerIcon; -export const IconLicense: TablerIcon; -export const IconLifebuoyOff: TablerIcon; -export const IconLifebuoy: TablerIcon; -export const IconLineDashed: TablerIcon; -export const IconLineDotted: TablerIcon; -export const IconLineHeight: TablerIcon; -export const IconLine: TablerIcon; -export const IconLinkOff: TablerIcon; -export const IconLink: TablerIcon; -export const IconListCheck: TablerIcon; -export const IconListDetails: TablerIcon; -export const IconListNumbers: TablerIcon; -export const IconListSearch: TablerIcon; -export const IconList: TablerIcon; -export const IconLivePhotoOff: TablerIcon; -export const IconLivePhoto: TablerIcon; -export const IconLiveView: TablerIcon; -export const IconLoader2: TablerIcon; -export const IconLoader3: TablerIcon; -export const IconLoaderQuarter: TablerIcon; -export const IconLoader: TablerIcon; -export const IconLocationBroken: TablerIcon; -export const IconLocationOff: TablerIcon; -export const IconLocation: TablerIcon; -export const IconLockAccessOff: TablerIcon; -export const IconLockAccess: TablerIcon; -export const IconLockOff: TablerIcon; -export const IconLockOpenOff: TablerIcon; -export const IconLockOpen: TablerIcon; -export const IconLockSquareRounded: TablerIcon; -export const IconLockSquare: TablerIcon; -export const IconLock: TablerIcon; -export const IconLogicAnd: TablerIcon; -export const IconLogicBuffer: TablerIcon; -export const IconLogicNand: TablerIcon; -export const IconLogicNor: TablerIcon; -export const IconLogicNot: TablerIcon; -export const IconLogicOr: TablerIcon; -export const IconLogicXnor: TablerIcon; -export const IconLogicXor: TablerIcon; -export const IconLogin: TablerIcon; -export const IconLogout: TablerIcon; -export const IconLollipopOff: TablerIcon; -export const IconLollipop: TablerIcon; -export const IconLuggageOff: TablerIcon; -export const IconLuggage: TablerIcon; -export const IconLungsOff: TablerIcon; -export const IconLungs: TablerIcon; -export const IconMacroOff: TablerIcon; -export const IconMacro: TablerIcon; -export const IconMagnetOff: TablerIcon; -export const IconMagnet: TablerIcon; -export const IconMailFast: TablerIcon; -export const IconMailForward: TablerIcon; -export const IconMailOff: TablerIcon; -export const IconMailOpened: TablerIcon; -export const IconMail: TablerIcon; -export const IconMailboxOff: TablerIcon; -export const IconMailbox: TablerIcon; -export const IconMan: TablerIcon; -export const IconManualGearbox: TablerIcon; -export const IconMap2: TablerIcon; -export const IconMapOff: TablerIcon; -export const IconMapPinOff: TablerIcon; -export const IconMapPin: TablerIcon; -export const IconMapPins: TablerIcon; -export const IconMapSearch: TablerIcon; -export const IconMap: TablerIcon; -export const IconMarkdownOff: TablerIcon; -export const IconMarkdown: TablerIcon; -export const IconMarquee2: TablerIcon; -export const IconMarqueeOff: TablerIcon; -export const IconMarquee: TablerIcon; -export const IconMars: TablerIcon; -export const IconMaskOff: TablerIcon; -export const IconMask: TablerIcon; -export const IconMasksTheaterOff: TablerIcon; -export const IconMasksTheater: TablerIcon; -export const IconMassage: TablerIcon; -export const IconMatchstick: TablerIcon; -export const IconMath1Divide2: TablerIcon; -export const IconMath1Divide3: TablerIcon; -export const IconMathAvg: TablerIcon; -export const IconMathEqualGreater: TablerIcon; -export const IconMathEqualLower: TablerIcon; -export const IconMathFunctionOff: TablerIcon; -export const IconMathFunctionY: TablerIcon; -export const IconMathFunction: TablerIcon; -export const IconMathGreater: TablerIcon; -export const IconMathIntegralX: TablerIcon; -export const IconMathIntegral: TablerIcon; -export const IconMathIntegrals: TablerIcon; -export const IconMathLower: TablerIcon; -export const IconMathMax: TablerIcon; -export const IconMathMin: TablerIcon; -export const IconMathNot: TablerIcon; -export const IconMathOff: TablerIcon; -export const IconMathPiDivide2: TablerIcon; -export const IconMathPi: TablerIcon; -export const IconMathSymbols: TablerIcon; -export const IconMathXDivide2: TablerIcon; -export const IconMathXDivideY2: TablerIcon; -export const IconMathXDivideY: TablerIcon; -export const IconMathXMinusX: TablerIcon; -export const IconMathXMinusY: TablerIcon; -export const IconMathXPlusX: TablerIcon; -export const IconMathXPlusY: TablerIcon; -export const IconMathXy: TablerIcon; -export const IconMathYMinusY: TablerIcon; -export const IconMathYPlusY: TablerIcon; -export const IconMath: TablerIcon; -export const IconMaximizeOff: TablerIcon; -export const IconMaximize: TablerIcon; -export const IconMeatOff: TablerIcon; -export const IconMeat: TablerIcon; -export const IconMedal2: TablerIcon; -export const IconMedal: TablerIcon; -export const IconMedicalCrossOff: TablerIcon; -export const IconMedicalCross: TablerIcon; -export const IconMedicineSyrup: TablerIcon; -export const IconMeeple: TablerIcon; -export const IconMenorah: TablerIcon; -export const IconMenu2: TablerIcon; -export const IconMenuOrder: TablerIcon; -export const IconMenu: TablerIcon; -export const IconMessage2Code: TablerIcon; -export const IconMessage2Off: TablerIcon; -export const IconMessage2Share: TablerIcon; -export const IconMessage2: TablerIcon; -export const IconMessageChatbot: TablerIcon; -export const IconMessageCircle2: TablerIcon; -export const IconMessageCircleOff: TablerIcon; -export const IconMessageCircle: TablerIcon; -export const IconMessageCode: TablerIcon; -export const IconMessageDots: TablerIcon; -export const IconMessageForward: TablerIcon; -export const IconMessageLanguage: TablerIcon; -export const IconMessageOff: TablerIcon; -export const IconMessagePlus: TablerIcon; -export const IconMessageReport: TablerIcon; -export const IconMessageShare: TablerIcon; -export const IconMessage: TablerIcon; -export const IconMessagesOff: TablerIcon; -export const IconMessages: TablerIcon; -export const IconMeteorOff: TablerIcon; -export const IconMeteor: TablerIcon; -export const IconMickey: TablerIcon; -export const IconMicrophone2Off: TablerIcon; -export const IconMicrophone2: TablerIcon; -export const IconMicrophoneOff: TablerIcon; -export const IconMicrophone: TablerIcon; -export const IconMicroscopeOff: TablerIcon; -export const IconMicroscope: TablerIcon; -export const IconMicrowaveOff: TablerIcon; -export const IconMicrowave: TablerIcon; -export const IconMilitaryAward: TablerIcon; -export const IconMilitaryRank: TablerIcon; -export const IconMilkOff: TablerIcon; -export const IconMilk: TablerIcon; -export const IconMilkshake: TablerIcon; -export const IconMinimize: TablerIcon; -export const IconMinusVertical: TablerIcon; -export const IconMinus: TablerIcon; -export const IconMistOff: TablerIcon; -export const IconMist: TablerIcon; -export const IconMoneybag: TablerIcon; -export const IconMoodAngry: TablerIcon; -export const IconMoodAnnoyed2: TablerIcon; -export const IconMoodAnnoyed: TablerIcon; -export const IconMoodBoy: TablerIcon; -export const IconMoodConfuzed: TablerIcon; -export const IconMoodCrazyHappy: TablerIcon; -export const IconMoodCry: TablerIcon; -export const IconMoodEmpty: TablerIcon; -export const IconMoodHappy: TablerIcon; -export const IconMoodKid: TablerIcon; -export const IconMoodLookLeft: TablerIcon; -export const IconMoodLookRight: TablerIcon; -export const IconMoodNerd: TablerIcon; -export const IconMoodNervous: TablerIcon; -export const IconMoodNeutral: TablerIcon; -export const IconMoodOff: TablerIcon; -export const IconMoodSad2: TablerIcon; -export const IconMoodSadDizzy: TablerIcon; -export const IconMoodSadSquint: TablerIcon; -export const IconMoodSad: TablerIcon; -export const IconMoodSick: TablerIcon; -export const IconMoodSilence: TablerIcon; -export const IconMoodSing: TablerIcon; -export const IconMoodSmileBeam: TablerIcon; -export const IconMoodSmileDizzy: TablerIcon; -export const IconMoodSmile: TablerIcon; -export const IconMoodSuprised: TablerIcon; -export const IconMoodTongueWink2: TablerIcon; -export const IconMoodTongueWink: TablerIcon; -export const IconMoodTongue: TablerIcon; -export const IconMoodUnamused: TablerIcon; -export const IconMoodWink2: TablerIcon; -export const IconMoodWink: TablerIcon; -export const IconMoodWrrr: TablerIcon; -export const IconMoodXd: TablerIcon; -export const IconMoon2: TablerIcon; -export const IconMoonOff: TablerIcon; -export const IconMoonStars: TablerIcon; -export const IconMoon: TablerIcon; -export const IconMoped: TablerIcon; -export const IconMotorbike: TablerIcon; -export const IconMountainOff: TablerIcon; -export const IconMountain: TablerIcon; -export const IconMouse2: TablerIcon; -export const IconMouseOff: TablerIcon; -export const IconMouse: TablerIcon; -export const IconMoustache: TablerIcon; -export const IconMovieOff: TablerIcon; -export const IconMovie: TablerIcon; -export const IconMugOff: TablerIcon; -export const IconMug: TablerIcon; -export const IconMultiplier05x: TablerIcon; -export const IconMultiplier15x: TablerIcon; -export const IconMultiplier1x: TablerIcon; -export const IconMultiplier2x: TablerIcon; -export const IconMushroomOff: TablerIcon; -export const IconMushroom: TablerIcon; -export const IconMusicOff: TablerIcon; -export const IconMusic: TablerIcon; -export const IconNavigationOff: TablerIcon; -export const IconNavigation: TablerIcon; -export const IconNeedleThread: TablerIcon; -export const IconNeedle: TablerIcon; -export const IconNetworkOff: TablerIcon; -export const IconNetwork: TablerIcon; -export const IconNewSection: TablerIcon; -export const IconNewsOff: TablerIcon; -export const IconNews: TablerIcon; -export const IconNfcOff: TablerIcon; -export const IconNfc: TablerIcon; -export const IconNoCopyright: TablerIcon; -export const IconNoCreativeCommons: TablerIcon; -export const IconNoDerivatives: TablerIcon; -export const IconNorthStar: TablerIcon; -export const IconNoteOff: TablerIcon; -export const IconNote: TablerIcon; -export const IconNotebookOff: TablerIcon; -export const IconNotebook: TablerIcon; -export const IconNotesOff: TablerIcon; -export const IconNotes: TablerIcon; -export const IconNotificationOff: TablerIcon; -export const IconNotification: TablerIcon; -export const IconNumber0: TablerIcon; -export const IconNumber1: TablerIcon; -export const IconNumber2: TablerIcon; -export const IconNumber3: TablerIcon; -export const IconNumber4: TablerIcon; -export const IconNumber5: TablerIcon; -export const IconNumber6: TablerIcon; -export const IconNumber7: TablerIcon; -export const IconNumber8: TablerIcon; -export const IconNumber9: TablerIcon; -export const IconNumber: TablerIcon; -export const IconNumbers: TablerIcon; -export const IconNurse: TablerIcon; -export const IconOctagonOff: TablerIcon; -export const IconOctagon: TablerIcon; -export const IconOld: TablerIcon; -export const IconOlympicsOff: TablerIcon; -export const IconOlympics: TablerIcon; -export const IconOm: TablerIcon; -export const IconOmega: TablerIcon; -export const IconOutbound: TablerIcon; -export const IconOutlet: TablerIcon; -export const IconOvalVertical: TablerIcon; -export const IconOval: TablerIcon; -export const IconOverline: TablerIcon; -export const IconPackageOff: TablerIcon; -export const IconPackage: TablerIcon; -export const IconPackages: TablerIcon; -export const IconPackgeExport: TablerIcon; -export const IconPackgeImport: TablerIcon; -export const IconPacman: TablerIcon; -export const IconPageBreak: TablerIcon; -export const IconPaintOff: TablerIcon; -export const IconPaint: TablerIcon; -export const IconPaletteOff: TablerIcon; -export const IconPalette: TablerIcon; -export const IconPanoramaHorizontalOff: TablerIcon; -export const IconPanoramaHorizontal: TablerIcon; -export const IconPanoramaVerticalOff: TablerIcon; -export const IconPanoramaVertical: TablerIcon; -export const IconPaperBagOff: TablerIcon; -export const IconPaperBag: TablerIcon; -export const IconPaperclip: TablerIcon; -export const IconParachuteOff: TablerIcon; -export const IconParachute: TablerIcon; -export const IconParenthesesOff: TablerIcon; -export const IconParentheses: TablerIcon; -export const IconParkingOff: TablerIcon; -export const IconParking: TablerIcon; -export const IconPassword: TablerIcon; -export const IconPawOff: TablerIcon; -export const IconPaw: TablerIcon; -export const IconPeace: TablerIcon; -export const IconPencilMinus: TablerIcon; -export const IconPencilOff: TablerIcon; -export const IconPencilPlus: TablerIcon; -export const IconPencil: TablerIcon; -export const IconPennant2: TablerIcon; -export const IconPennantOff: TablerIcon; -export const IconPennant: TablerIcon; -export const IconPentagonOff: TablerIcon; -export const IconPentagon: TablerIcon; -export const IconPentagram: TablerIcon; -export const IconPepperOff: TablerIcon; -export const IconPepper: TablerIcon; -export const IconPercentage: TablerIcon; -export const IconPerfume: TablerIcon; -export const IconPerspectiveOff: TablerIcon; -export const IconPerspective: TablerIcon; -export const IconPhoneCall: TablerIcon; -export const IconPhoneCalling: TablerIcon; -export const IconPhoneCheck: TablerIcon; -export const IconPhoneIncoming: TablerIcon; -export const IconPhoneOff: TablerIcon; -export const IconPhoneOutgoing: TablerIcon; -export const IconPhonePause: TablerIcon; -export const IconPhonePlus: TablerIcon; -export const IconPhoneX: TablerIcon; -export const IconPhone: TablerIcon; -export const IconPhotoCancel: TablerIcon; -export const IconPhotoCheck: TablerIcon; -export const IconPhotoDown: TablerIcon; -export const IconPhotoEdit: TablerIcon; -export const IconPhotoHeart: TablerIcon; -export const IconPhotoMinus: TablerIcon; -export const IconPhotoOff: TablerIcon; -export const IconPhotoPlus: TablerIcon; -export const IconPhotoSearch: TablerIcon; -export const IconPhotoShield: TablerIcon; -export const IconPhotoStar: TablerIcon; -export const IconPhotoUp: TablerIcon; -export const IconPhotoX: TablerIcon; -export const IconPhoto: TablerIcon; -export const IconPhysotherapist: TablerIcon; -export const IconPictureInPictureOff: TablerIcon; -export const IconPictureInPictureOn: TablerIcon; -export const IconPictureInPictureTop: TablerIcon; -export const IconPictureInPicture: TablerIcon; -export const IconPigMoney: TablerIcon; -export const IconPigOff: TablerIcon; -export const IconPig: TablerIcon; -export const IconPilcrow: TablerIcon; -export const IconPillOff: TablerIcon; -export const IconPill: TablerIcon; -export const IconPills: TablerIcon; -export const IconPin: TablerIcon; -export const IconPingPong: TablerIcon; -export const IconPinnedOff: TablerIcon; -export const IconPinned: TablerIcon; -export const IconPizzaOff: TablerIcon; -export const IconPizza: TablerIcon; -export const IconPlaceholder: TablerIcon; -export const IconPlaneArrival: TablerIcon; -export const IconPlaneDeparture: TablerIcon; -export const IconPlaneInflight: TablerIcon; -export const IconPlaneOff: TablerIcon; -export const IconPlaneTilt: TablerIcon; -export const IconPlane: TablerIcon; -export const IconPlanetOff: TablerIcon; -export const IconPlanet: TablerIcon; -export const IconPlant2Off: TablerIcon; -export const IconPlant2: TablerIcon; -export const IconPlantOff: TablerIcon; -export const IconPlant: TablerIcon; -export const IconPlayCardOff: TablerIcon; -export const IconPlayCard: TablerIcon; -export const IconPlayerEject: TablerIcon; -export const IconPlayerPause: TablerIcon; -export const IconPlayerPlay: TablerIcon; -export const IconPlayerRecord: TablerIcon; -export const IconPlayerSkipBack: TablerIcon; -export const IconPlayerSkipForward: TablerIcon; -export const IconPlayerStop: TablerIcon; -export const IconPlayerTrackNext: TablerIcon; -export const IconPlayerTrackPrev: TablerIcon; -export const IconPlaylistAdd: TablerIcon; -export const IconPlaylistOff: TablerIcon; -export const IconPlaylistX: TablerIcon; -export const IconPlaylist: TablerIcon; -export const IconPlaystationCircle: TablerIcon; -export const IconPlaystationSquare: TablerIcon; -export const IconPlaystationTriangle: TablerIcon; -export const IconPlaystationX: TablerIcon; -export const IconPlugConnectedX: TablerIcon; -export const IconPlugConnected: TablerIcon; -export const IconPlugOff: TablerIcon; -export const IconPlugX: TablerIcon; -export const IconPlug: TablerIcon; -export const IconPlus: TablerIcon; -export const IconPng: TablerIcon; -export const IconPodiumOff: TablerIcon; -export const IconPodium: TablerIcon; -export const IconPointOff: TablerIcon; -export const IconPoint: TablerIcon; -export const IconPointer: TablerIcon; -export const IconPokeballOff: TablerIcon; -export const IconPokeball: TablerIcon; -export const IconPokerChip: TablerIcon; -export const IconPolaroid: TablerIcon; -export const IconPolygonOff: TablerIcon; -export const IconPolygon: TablerIcon; -export const IconPoo: TablerIcon; -export const IconPoolOff: TablerIcon; -export const IconPool: TablerIcon; -export const IconPower: TablerIcon; -export const IconPray: TablerIcon; -export const IconPremiumRights: TablerIcon; -export const IconPrescription: TablerIcon; -export const IconPresentationAnalytics: TablerIcon; -export const IconPresentationOff: TablerIcon; -export const IconPresentation: TablerIcon; -export const IconPrinterOff: TablerIcon; -export const IconPrinter: TablerIcon; -export const IconPrison: TablerIcon; -export const IconPrompt: TablerIcon; -export const IconPropellerOff: TablerIcon; -export const IconPropeller: TablerIcon; -export const IconPumpkinScary: TablerIcon; -export const IconPuzzle2: TablerIcon; -export const IconPuzzleOff: TablerIcon; -export const IconPuzzle: TablerIcon; -export const IconPyramidOff: TablerIcon; -export const IconPyramid: TablerIcon; -export const IconQrcodeOff: TablerIcon; -export const IconQrcode: TablerIcon; -export const IconQuestionCircle: TablerIcon; -export const IconQuestionMark: TablerIcon; -export const IconQuoteOff: TablerIcon; -export const IconQuote: TablerIcon; -export const IconRadar2: TablerIcon; -export const IconRadarOff: TablerIcon; -export const IconRadar: TablerIcon; -export const IconRadioOff: TablerIcon; -export const IconRadio: TablerIcon; -export const IconRadioactiveOff: TablerIcon; -export const IconRadioactive: TablerIcon; -export const IconRadiusBottomLeft: TablerIcon; -export const IconRadiusBottomRight: TablerIcon; -export const IconRadiusTopLeft: TablerIcon; -export const IconRadiusTopRight: TablerIcon; -export const IconRainbowOff: TablerIcon; -export const IconRainbow: TablerIcon; -export const IconRating12Plus: TablerIcon; -export const IconRating14Plus: TablerIcon; -export const IconRating16Plus: TablerIcon; -export const IconRating18Plus: TablerIcon; -export const IconRating21Plus: TablerIcon; -export const IconRazorElectric: TablerIcon; -export const IconRazor: TablerIcon; -export const IconReceipt2: TablerIcon; -export const IconReceiptOff: TablerIcon; -export const IconReceiptRefund: TablerIcon; -export const IconReceiptTax: TablerIcon; -export const IconReceipt: TablerIcon; -export const IconRecharging: TablerIcon; -export const IconRecordMailOff: TablerIcon; -export const IconRecordMail: TablerIcon; -export const IconRectangleVertical: TablerIcon; -export const IconRectangle: TablerIcon; -export const IconRecycleOff: TablerIcon; -export const IconRecycle: TablerIcon; -export const IconRefreshAlert: TablerIcon; -export const IconRefreshDot: TablerIcon; -export const IconRefreshOff: TablerIcon; -export const IconRefresh: TablerIcon; -export const IconRegexOff: TablerIcon; -export const IconRegex: TablerIcon; -export const IconRegistered: TablerIcon; -export const IconRelationManyToMany: TablerIcon; -export const IconRelationOneToMany: TablerIcon; -export const IconRelationOneToOne: TablerIcon; -export const IconReload: TablerIcon; -export const IconRepeatOff: TablerIcon; -export const IconRepeatOnce: TablerIcon; -export const IconRepeat: TablerIcon; -export const IconReplaceOff: TablerIcon; -export const IconReplace: TablerIcon; -export const IconReportAnalytics: TablerIcon; -export const IconReportMedical: TablerIcon; -export const IconReportMoney: TablerIcon; -export const IconReportOff: TablerIcon; -export const IconReportSearch: TablerIcon; -export const IconReport: TablerIcon; -export const IconResize: TablerIcon; -export const IconRibbonHealth: TablerIcon; -export const IconRippleOff: TablerIcon; -export const IconRipple: TablerIcon; -export const IconRoadOff: TablerIcon; -export const IconRoadSign: TablerIcon; -export const IconRoad: TablerIcon; -export const IconRobotOff: TablerIcon; -export const IconRobot: TablerIcon; -export const IconRocketOff: TablerIcon; -export const IconRocket: TablerIcon; -export const IconRollerSkating: TablerIcon; -export const IconRollercoasterOff: TablerIcon; -export const IconRollercoaster: TablerIcon; -export const IconRosetteNumber0: TablerIcon; -export const IconRosetteNumber1: TablerIcon; -export const IconRosetteNumber2: TablerIcon; -export const IconRosetteNumber3: TablerIcon; -export const IconRosetteNumber4: TablerIcon; -export const IconRosetteNumber5: TablerIcon; -export const IconRosetteNumber6: TablerIcon; -export const IconRosetteNumber7: TablerIcon; -export const IconRosetteNumber8: TablerIcon; -export const IconRosetteNumber9: TablerIcon; -export const IconRosette: TablerIcon; -export const IconRotate2: TablerIcon; -export const IconRotate360: TablerIcon; -export const IconRotateClockwise2: TablerIcon; -export const IconRotateClockwise: TablerIcon; -export const IconRotateDot: TablerIcon; -export const IconRotateRectangle: TablerIcon; -export const IconRotate: TablerIcon; -export const IconRoute2: TablerIcon; -export const IconRouteOff: TablerIcon; -export const IconRoute: TablerIcon; -export const IconRouterOff: TablerIcon; -export const IconRouter: TablerIcon; -export const IconRowInsertBottom: TablerIcon; -export const IconRowInsertTop: TablerIcon; -export const IconRss: TablerIcon; -export const IconRubberStampOff: TablerIcon; -export const IconRubberStamp: TablerIcon; -export const IconRuler2Off: TablerIcon; -export const IconRuler2: TablerIcon; -export const IconRuler3: TablerIcon; -export const IconRulerMeasure: TablerIcon; -export const IconRulerOff: TablerIcon; -export const IconRuler: TablerIcon; -export const IconRun: TablerIcon; -export const IconSTurnDown: TablerIcon; -export const IconSTurnLeft: TablerIcon; -export const IconSTurnRight: TablerIcon; -export const IconSTurnUp: TablerIcon; -export const IconSailboat2: TablerIcon; -export const IconSailboatOff: TablerIcon; -export const IconSailboat: TablerIcon; -export const IconSalad: TablerIcon; -export const IconSalt: TablerIcon; -export const IconSatelliteOff: TablerIcon; -export const IconSatellite: TablerIcon; -export const IconSausage: TablerIcon; -export const IconScaleOff: TablerIcon; -export const IconScaleOutlineOff: TablerIcon; -export const IconScaleOutline: TablerIcon; -export const IconScale: TablerIcon; -export const IconScanEye: TablerIcon; -export const IconScan: TablerIcon; -export const IconSchemaOff: TablerIcon; -export const IconSchema: TablerIcon; -export const IconSchoolBell: TablerIcon; -export const IconSchoolOff: TablerIcon; -export const IconSchool: TablerIcon; -export const IconScissorsOff: TablerIcon; -export const IconScissors: TablerIcon; -export const IconScooterElectric: TablerIcon; -export const IconScooter: TablerIcon; -export const IconScreenShareOff: TablerIcon; -export const IconScreenShare: TablerIcon; -export const IconScreenshot: TablerIcon; -export const IconScribbleOff: TablerIcon; -export const IconScribble: TablerIcon; -export const IconScriptMinus: TablerIcon; -export const IconScriptPlus: TablerIcon; -export const IconScriptX: TablerIcon; -export const IconScript: TablerIcon; -export const IconScubaMaskOff: TablerIcon; -export const IconScubaMask: TablerIcon; -export const IconSdk: TablerIcon; -export const IconSearchOff: TablerIcon; -export const IconSearch: TablerIcon; -export const IconSectionSign: TablerIcon; -export const IconSection: TablerIcon; -export const IconSeedingOff: TablerIcon; -export const IconSeeding: TablerIcon; -export const IconSelect: TablerIcon; -export const IconSelector: TablerIcon; -export const IconSendOff: TablerIcon; -export const IconSend: TablerIcon; -export const IconSeo: TablerIcon; -export const IconSeparatorHorizontal: TablerIcon; -export const IconSeparatorVertical: TablerIcon; -export const IconSeparator: TablerIcon; -export const IconServer2: TablerIcon; -export const IconServerBolt: TablerIcon; -export const IconServerCog: TablerIcon; -export const IconServerOff: TablerIcon; -export const IconServer: TablerIcon; -export const IconServicemark: TablerIcon; -export const IconSettings2: TablerIcon; -export const IconSettingsAutomation: TablerIcon; -export const IconSettingsOff: TablerIcon; -export const IconSettings: TablerIcon; -export const IconShadowOff: TablerIcon; -export const IconShadow: TablerIcon; -export const IconShape2: TablerIcon; -export const IconShape3: TablerIcon; -export const IconShapeOff: TablerIcon; -export const IconShape: TablerIcon; -export const IconShareOff: TablerIcon; -export const IconShare: TablerIcon; -export const IconShieldCheck: TablerIcon; -export const IconShieldCheckered: TablerIcon; -export const IconShieldChevron: TablerIcon; -export const IconShieldHalfFilled: TablerIcon; -export const IconShieldHalf: TablerIcon; -export const IconShieldLock: TablerIcon; -export const IconShieldOff: TablerIcon; -export const IconShieldX: TablerIcon; -export const IconShield: TablerIcon; -export const IconShipOff: TablerIcon; -export const IconShip: TablerIcon; -export const IconShirtOff: TablerIcon; -export const IconShirtSport: TablerIcon; -export const IconShirt: TablerIcon; -export const IconShoeOff: TablerIcon; -export const IconShoe: TablerIcon; -export const IconShoppingBag: TablerIcon; -export const IconShoppingCartDiscount: TablerIcon; -export const IconShoppingCartOff: TablerIcon; -export const IconShoppingCartPlus: TablerIcon; -export const IconShoppingCartX: TablerIcon; -export const IconShoppingCart: TablerIcon; -export const IconShovel: TablerIcon; -export const IconShredder: TablerIcon; -export const IconSignLeft: TablerIcon; -export const IconSignRight: TablerIcon; -export const IconSignal3g: TablerIcon; -export const IconSignal4gPlus: TablerIcon; -export const IconSignal4g: TablerIcon; -export const IconSignal5g: TablerIcon; -export const IconSignatureOff: TablerIcon; -export const IconSignature: TablerIcon; -export const IconSitemapOff: TablerIcon; -export const IconSitemap: TablerIcon; -export const IconSkateboardOff: TablerIcon; -export const IconSkateboard: TablerIcon; -export const IconSkull: TablerIcon; -export const IconSlash: TablerIcon; -export const IconSlashes: TablerIcon; -export const IconSleigh: TablerIcon; -export const IconSlice: TablerIcon; -export const IconSlideshow: TablerIcon; -export const IconSmartHomeOff: TablerIcon; -export const IconSmartHome: TablerIcon; -export const IconSmokingNo: TablerIcon; -export const IconSmoking: TablerIcon; -export const IconSnowflakeOff: TablerIcon; -export const IconSnowflake: TablerIcon; -export const IconSnowman: TablerIcon; -export const IconSoccerField: TablerIcon; -export const IconSocialOff: TablerIcon; -export const IconSocial: TablerIcon; -export const IconSock: TablerIcon; -export const IconSofaOff: TablerIcon; -export const IconSofa: TablerIcon; -export const IconSort09: TablerIcon; -export const IconSort90: TablerIcon; -export const IconSortAZ: TablerIcon; -export const IconSortAscending2: TablerIcon; -export const IconSortAscendingLetters: TablerIcon; -export const IconSortAscendingNumbers: TablerIcon; -export const IconSortAscending: TablerIcon; -export const IconSortDescending2: TablerIcon; -export const IconSortDescendingLetters: TablerIcon; -export const IconSortDescendingNumbers: TablerIcon; -export const IconSortDescending: TablerIcon; -export const IconSortZA: TablerIcon; -export const IconSos: TablerIcon; -export const IconSoupOff: TablerIcon; -export const IconSoup: TablerIcon; -export const IconSourceCode: TablerIcon; -export const IconSpaceOff: TablerIcon; -export const IconSpace: TablerIcon; -export const IconSpacingHorizontal: TablerIcon; -export const IconSpacingVertical: TablerIcon; -export const IconSpade: TablerIcon; -export const IconSpeakerphone: TablerIcon; -export const IconSpeedboat: TablerIcon; -export const IconSpider: TablerIcon; -export const IconSpiralOff: TablerIcon; -export const IconSpiral: TablerIcon; -export const IconSportBillard: TablerIcon; -export const IconSpray: TablerIcon; -export const IconSpyOff: TablerIcon; -export const IconSpy: TablerIcon; -export const IconSquareArrowDown: TablerIcon; -export const IconSquareArrowLeft: TablerIcon; -export const IconSquareArrowRight: TablerIcon; -export const IconSquareArrowUp: TablerIcon; -export const IconSquareAsterisk: TablerIcon; -export const IconSquareCheck: TablerIcon; -export const IconSquareChevronDown: TablerIcon; -export const IconSquareChevronLeft: TablerIcon; -export const IconSquareChevronRight: TablerIcon; -export const IconSquareChevronUp: TablerIcon; -export const IconSquareChevronsDown: TablerIcon; -export const IconSquareChevronsLeft: TablerIcon; -export const IconSquareChevronsRight: TablerIcon; -export const IconSquareChevronsUp: TablerIcon; -export const IconSquareDot: TablerIcon; -export const IconSquareF0: TablerIcon; -export const IconSquareF1: TablerIcon; -export const IconSquareF2: TablerIcon; -export const IconSquareF3: TablerIcon; -export const IconSquareF4: TablerIcon; -export const IconSquareF5: TablerIcon; -export const IconSquareF6: TablerIcon; -export const IconSquareF7: TablerIcon; -export const IconSquareF8: TablerIcon; -export const IconSquareF9: TablerIcon; -export const IconSquareForbid2: TablerIcon; -export const IconSquareForbid: TablerIcon; -export const IconSquareHalf: TablerIcon; -export const IconSquareKey: TablerIcon; -export const IconSquareLetterA: TablerIcon; -export const IconSquareLetterB: TablerIcon; -export const IconSquareLetterC: TablerIcon; -export const IconSquareLetterD: TablerIcon; -export const IconSquareLetterE: TablerIcon; -export const IconSquareLetterF: TablerIcon; -export const IconSquareLetterG: TablerIcon; -export const IconSquareLetterH: TablerIcon; -export const IconSquareLetterI: TablerIcon; -export const IconSquareLetterJ: TablerIcon; -export const IconSquareLetterK: TablerIcon; -export const IconSquareLetterL: TablerIcon; -export const IconSquareLetterM: TablerIcon; -export const IconSquareLetterN: TablerIcon; -export const IconSquareLetterO: TablerIcon; -export const IconSquareLetterP: TablerIcon; -export const IconSquareLetterQ: TablerIcon; -export const IconSquareLetterR: TablerIcon; -export const IconSquareLetterS: TablerIcon; -export const IconSquareLetterT: TablerIcon; -export const IconSquareLetterU: TablerIcon; -export const IconSquareLetterV: TablerIcon; -export const IconSquareLetterW: TablerIcon; -export const IconSquareLetterX: TablerIcon; -export const IconSquareLetterY: TablerIcon; -export const IconSquareLetterZ: TablerIcon; -export const IconSquareMinus: TablerIcon; -export const IconSquareNumber0: TablerIcon; -export const IconSquareNumber1: TablerIcon; -export const IconSquareNumber2: TablerIcon; -export const IconSquareNumber3: TablerIcon; -export const IconSquareNumber4: TablerIcon; -export const IconSquareNumber5: TablerIcon; -export const IconSquareNumber6: TablerIcon; -export const IconSquareNumber7: TablerIcon; -export const IconSquareNumber8: TablerIcon; -export const IconSquareNumber9: TablerIcon; -export const IconSquareOff: TablerIcon; -export const IconSquarePlus: TablerIcon; -export const IconSquareRoot2: TablerIcon; -export const IconSquareRoot: TablerIcon; -export const IconSquareRotatedForbid2: TablerIcon; -export const IconSquareRotatedForbid: TablerIcon; -export const IconSquareRotatedOff: TablerIcon; -export const IconSquareRotated: TablerIcon; -export const IconSquareRoundedArrowDown: TablerIcon; -export const IconSquareRoundedArrowLeft: TablerIcon; -export const IconSquareRoundedArrowRight: TablerIcon; -export const IconSquareRoundedArrowUp: TablerIcon; -export const IconSquareRoundedCheck: TablerIcon; -export const IconSquareRoundedChevronDown: TablerIcon; -export const IconSquareRoundedChevronLeft: TablerIcon; -export const IconSquareRoundedChevronRight: TablerIcon; -export const IconSquareRoundedChevronUp: TablerIcon; -export const IconSquareRoundedChevronsDown: TablerIcon; -export const IconSquareRoundedChevronsLeft: TablerIcon; -export const IconSquareRoundedChevronsRight: TablerIcon; -export const IconSquareRoundedChevronsUp: TablerIcon; -export const IconSquareRoundedLetterA: TablerIcon; -export const IconSquareRoundedLetterB: TablerIcon; -export const IconSquareRoundedLetterC: TablerIcon; -export const IconSquareRoundedLetterD: TablerIcon; -export const IconSquareRoundedLetterE: TablerIcon; -export const IconSquareRoundedLetterF: TablerIcon; -export const IconSquareRoundedLetterG: TablerIcon; -export const IconSquareRoundedLetterH: TablerIcon; -export const IconSquareRoundedLetterI: TablerIcon; -export const IconSquareRoundedLetterJ: TablerIcon; -export const IconSquareRoundedLetterK: TablerIcon; -export const IconSquareRoundedLetterL: TablerIcon; -export const IconSquareRoundedLetterM: TablerIcon; -export const IconSquareRoundedLetterN: TablerIcon; -export const IconSquareRoundedLetterO: TablerIcon; -export const IconSquareRoundedLetterP: TablerIcon; -export const IconSquareRoundedLetterQ: TablerIcon; -export const IconSquareRoundedLetterR: TablerIcon; -export const IconSquareRoundedLetterS: TablerIcon; -export const IconSquareRoundedLetterT: TablerIcon; -export const IconSquareRoundedLetterU: TablerIcon; -export const IconSquareRoundedLetterV: TablerIcon; -export const IconSquareRoundedLetterW: TablerIcon; -export const IconSquareRoundedLetterX: TablerIcon; -export const IconSquareRoundedLetterY: TablerIcon; -export const IconSquareRoundedLetterZ: TablerIcon; -export const IconSquareRoundedMinus: TablerIcon; -export const IconSquareRoundedNumber0: TablerIcon; -export const IconSquareRoundedNumber1: TablerIcon; -export const IconSquareRoundedNumber2: TablerIcon; -export const IconSquareRoundedNumber3: TablerIcon; -export const IconSquareRoundedNumber4: TablerIcon; -export const IconSquareRoundedNumber5: TablerIcon; -export const IconSquareRoundedNumber6: TablerIcon; -export const IconSquareRoundedNumber7: TablerIcon; -export const IconSquareRoundedNumber8: TablerIcon; -export const IconSquareRoundedNumber9: TablerIcon; -export const IconSquareRoundedPlus: TablerIcon; -export const IconSquareRoundedX: TablerIcon; -export const IconSquareRounded: TablerIcon; -export const IconSquareToggleHorizontal: TablerIcon; -export const IconSquareToggle: TablerIcon; -export const IconSquareX: TablerIcon; -export const IconSquare: TablerIcon; -export const IconSquaresDiagonal: TablerIcon; -export const IconSquaresFilled: TablerIcon; -export const IconStack2: TablerIcon; -export const IconStack3: TablerIcon; -export const IconStackPop: TablerIcon; -export const IconStackPush: TablerIcon; -export const IconStack: TablerIcon; -export const IconStairsDown: TablerIcon; -export const IconStairsUp: TablerIcon; -export const IconStairs: TablerIcon; -export const IconStarHalf: TablerIcon; -export const IconStarOff: TablerIcon; -export const IconStar: TablerIcon; -export const IconStarsOff: TablerIcon; -export const IconStars: TablerIcon; -export const IconStatusChange: TablerIcon; -export const IconSteam: TablerIcon; -export const IconSteeringWheelOff: TablerIcon; -export const IconSteeringWheel: TablerIcon; -export const IconStepInto: TablerIcon; -export const IconStepOut: TablerIcon; -export const IconStereoGlasses: TablerIcon; -export const IconStethoscopeOff: TablerIcon; -export const IconStethoscope: TablerIcon; -export const IconSticker: TablerIcon; -export const IconStormOff: TablerIcon; -export const IconStorm: TablerIcon; -export const IconStretching: TablerIcon; -export const IconStrikethrough: TablerIcon; -export const IconSubmarine: TablerIcon; -export const IconSubscript: TablerIcon; -export const IconSubtask: TablerIcon; -export const IconSumOff: TablerIcon; -export const IconSum: TablerIcon; -export const IconSunHigh: TablerIcon; -export const IconSunLow: TablerIcon; -export const IconSunMoon: TablerIcon; -export const IconSunOff: TablerIcon; -export const IconSunWind: TablerIcon; -export const IconSun: TablerIcon; -export const IconSunglasses: TablerIcon; -export const IconSunrise: TablerIcon; -export const IconSunset2: TablerIcon; -export const IconSunset: TablerIcon; -export const IconSuperscript: TablerIcon; -export const IconSvg: TablerIcon; -export const IconSwimming: TablerIcon; -export const IconSwipe: TablerIcon; -export const IconSwitch2: TablerIcon; -export const IconSwitch3: TablerIcon; -export const IconSwitchHorizontal: TablerIcon; -export const IconSwitchVertical: TablerIcon; -export const IconSwitch: TablerIcon; -export const IconSwordOff: TablerIcon; -export const IconSword: TablerIcon; -export const IconSwords: TablerIcon; -export const IconTableAlias: TablerIcon; -export const IconTableExport: TablerIcon; -export const IconTableImport: TablerIcon; -export const IconTableOff: TablerIcon; -export const IconTableOptions: TablerIcon; -export const IconTableShortcut: TablerIcon; -export const IconTable: TablerIcon; -export const IconTagOff: TablerIcon; -export const IconTag: TablerIcon; -export const IconTagsOff: TablerIcon; -export const IconTags: TablerIcon; -export const IconTallymark1: TablerIcon; -export const IconTallymark2: TablerIcon; -export const IconTallymark3: TablerIcon; -export const IconTallymark4: TablerIcon; -export const IconTallymarks: TablerIcon; -export const IconTank: TablerIcon; -export const IconTargetArrow: TablerIcon; -export const IconTargetOff: TablerIcon; -export const IconTarget: TablerIcon; -export const IconTeapot: TablerIcon; -export const IconTelescopeOff: TablerIcon; -export const IconTelescope: TablerIcon; -export const IconTemperatureCelsius: TablerIcon; -export const IconTemperatureFahrenheit: TablerIcon; -export const IconTemperatureMinus: TablerIcon; -export const IconTemperatureOff: TablerIcon; -export const IconTemperaturePlus: TablerIcon; -export const IconTemperature: TablerIcon; -export const IconTemplateOff: TablerIcon; -export const IconTemplate: TablerIcon; -export const IconTentOff: TablerIcon; -export const IconTent: TablerIcon; -export const IconTerminal2: TablerIcon; -export const IconTerminal: TablerIcon; -export const IconTestPipe2: TablerIcon; -export const IconTestPipeOff: TablerIcon; -export const IconTestPipe: TablerIcon; -export const IconTex: TablerIcon; -export const IconTextCaption: TablerIcon; -export const IconTextColor: TablerIcon; -export const IconTextDecrease: TablerIcon; -export const IconTextDirectionLtr: TablerIcon; -export const IconTextDirectionRtl: TablerIcon; -export const IconTextIncrease: TablerIcon; -export const IconTextOrientation: TablerIcon; -export const IconTextPlus: TablerIcon; -export const IconTextRecognition: TablerIcon; -export const IconTextResize: TablerIcon; -export const IconTextSize: TablerIcon; -export const IconTextSpellcheck: TablerIcon; -export const IconTextWrapDisabled: TablerIcon; -export const IconTextWrap: TablerIcon; -export const IconTexture: TablerIcon; -export const IconThermometer: TablerIcon; -export const IconThumbDownOff: TablerIcon; -export const IconThumbDown: TablerIcon; -export const IconThumbUpOff: TablerIcon; -export const IconThumbUp: TablerIcon; -export const IconTicTac: TablerIcon; -export const IconTicketOff: TablerIcon; -export const IconTicket: TablerIcon; -export const IconTie: TablerIcon; -export const IconTilde: TablerIcon; -export const IconTiltShiftOff: TablerIcon; -export const IconTiltShift: TablerIcon; -export const IconTimelineEventExclamation: TablerIcon; -export const IconTimelineEventMinus: TablerIcon; -export const IconTimelineEventPlus: TablerIcon; -export const IconTimelineEventText: TablerIcon; -export const IconTimelineEventX: TablerIcon; -export const IconTimelineEvent: TablerIcon; -export const IconTimeline: TablerIcon; -export const IconTir: TablerIcon; -export const IconToggleLeft: TablerIcon; -export const IconToggleRight: TablerIcon; -export const IconToiletPaperOff: TablerIcon; -export const IconToiletPaper: TablerIcon; -export const IconTool: TablerIcon; -export const IconToolsKitchen2Off: TablerIcon; -export const IconToolsKitchen2: TablerIcon; -export const IconToolsKitchenOff: TablerIcon; -export const IconToolsKitchen: TablerIcon; -export const IconToolsOff: TablerIcon; -export const IconTools: TablerIcon; -export const IconTooltip: TablerIcon; -export const IconTopologyBus: TablerIcon; -export const IconTopologyComplex: TablerIcon; -export const IconTopologyFullHierarchy: TablerIcon; -export const IconTopologyFull: TablerIcon; -export const IconTopologyRing2: TablerIcon; -export const IconTopologyRing3: TablerIcon; -export const IconTopologyRing: TablerIcon; -export const IconTopologyStar2: TablerIcon; -export const IconTopologyStar3: TablerIcon; -export const IconTopologyStarRing2: TablerIcon; -export const IconTopologyStarRing3: TablerIcon; -export const IconTopologyStarRing: TablerIcon; -export const IconTopologyStar: TablerIcon; -export const IconTorii: TablerIcon; -export const IconTornado: TablerIcon; -export const IconTournament: TablerIcon; -export const IconTowerOff: TablerIcon; -export const IconTower: TablerIcon; -export const IconTrack: TablerIcon; -export const IconTractor: TablerIcon; -export const IconTrademark: TablerIcon; -export const IconTrafficConeOff: TablerIcon; -export const IconTrafficCone: TablerIcon; -export const IconTrafficLightsOff: TablerIcon; -export const IconTrafficLights: TablerIcon; -export const IconTrain: TablerIcon; -export const IconTransferIn: TablerIcon; -export const IconTransferOut: TablerIcon; -export const IconTransform: TablerIcon; -export const IconTransitionBottom: TablerIcon; -export const IconTransitionLeft: TablerIcon; -export const IconTransitionRight: TablerIcon; -export const IconTransitionTop: TablerIcon; -export const IconTrashOff: TablerIcon; -export const IconTrashX: TablerIcon; -export const IconTrash: TablerIcon; -export const IconTree: TablerIcon; -export const IconTrees: TablerIcon; -export const IconTrekking: TablerIcon; -export const IconTrendingDown2: TablerIcon; -export const IconTrendingDown3: TablerIcon; -export const IconTrendingDown: TablerIcon; -export const IconTrendingUp2: TablerIcon; -export const IconTrendingUp3: TablerIcon; -export const IconTrendingUp: TablerIcon; -export const IconTriangleInverted: TablerIcon; -export const IconTriangleOff: TablerIcon; -export const IconTriangleSquareCircle: TablerIcon; -export const IconTriangle: TablerIcon; -export const IconTriangles: TablerIcon; -export const IconTrident: TablerIcon; -export const IconTrolley: TablerIcon; -export const IconTrophyOff: TablerIcon; -export const IconTrophy: TablerIcon; -export const IconTrowel: TablerIcon; -export const IconTruckDelivery: TablerIcon; -export const IconTruckLoading: TablerIcon; -export const IconTruckOff: TablerIcon; -export const IconTruckReturn: TablerIcon; -export const IconTruck: TablerIcon; -export const IconTxt: TablerIcon; -export const IconTypographyOff: TablerIcon; -export const IconTypography: TablerIcon; -export const IconUfOff: TablerIcon; -export const IconUfo: TablerIcon; -export const IconUmbrellaOff: TablerIcon; -export const IconUmbrella: TablerIcon; -export const IconUnderline: TablerIcon; -export const IconUnlink: TablerIcon; -export const IconUpload: TablerIcon; -export const IconUrgent: TablerIcon; -export const IconUsb: TablerIcon; -export const IconUserCheck: TablerIcon; -export const IconUserCircle: TablerIcon; -export const IconUserExclamation: TablerIcon; -export const IconUserMinus: TablerIcon; -export const IconUserOff: TablerIcon; -export const IconUserPlus: TablerIcon; -export const IconUserSearch: TablerIcon; -export const IconUserX: TablerIcon; -export const IconUser: TablerIcon; -export const IconUsers: TablerIcon; -export const IconUvIndex: TablerIcon; -export const IconUxCircle: TablerIcon; -export const IconVaccineBottleOff: TablerIcon; -export const IconVaccineBottle: TablerIcon; -export const IconVaccineOff: TablerIcon; -export const IconVaccine: TablerIcon; -export const IconVacuumCleaner: TablerIcon; -export const IconVariableMinus: TablerIcon; -export const IconVariableOff: TablerIcon; -export const IconVariablePlus: TablerIcon; -export const IconVariable: TablerIcon; -export const IconVectorBezier2: TablerIcon; -export const IconVectorBezierArc: TablerIcon; -export const IconVectorBezierCircle: TablerIcon; -export const IconVectorBezier: TablerIcon; -export const IconVectorOff: TablerIcon; -export const IconVectorSpline: TablerIcon; -export const IconVectorTriangleOff: TablerIcon; -export const IconVectorTriangle: TablerIcon; -export const IconVector: TablerIcon; -export const IconVenus: TablerIcon; -export const IconVersionsOff: TablerIcon; -export const IconVersions: TablerIcon; -export const IconVideoMinus: TablerIcon; -export const IconVideoOff: TablerIcon; -export const IconVideoPlus: TablerIcon; -export const IconVideo: TablerIcon; -export const IconView360Off: TablerIcon; -export const IconView360: TablerIcon; -export const IconViewfinderOff: TablerIcon; -export const IconViewfinder: TablerIcon; -export const IconViewportNarrow: TablerIcon; -export const IconViewportWide: TablerIcon; -export const IconVinyl: TablerIcon; -export const IconVipOff: TablerIcon; -export const IconVip: TablerIcon; -export const IconVirusOff: TablerIcon; -export const IconVirusSearch: TablerIcon; -export const IconVirus: TablerIcon; -export const IconVocabularyOff: TablerIcon; -export const IconVocabulary: TablerIcon; -export const IconVolume2: TablerIcon; -export const IconVolume3: TablerIcon; -export const IconVolumeOff: TablerIcon; -export const IconVolume: TablerIcon; -export const IconWalk: TablerIcon; -export const IconWallOff: TablerIcon; -export const IconWall: TablerIcon; -export const IconWalletOff: TablerIcon; -export const IconWallet: TablerIcon; -export const IconWallpaperOff: TablerIcon; -export const IconWallpaper: TablerIcon; -export const IconWandOff: TablerIcon; -export const IconWand: TablerIcon; -export const IconWashDry1: TablerIcon; -export const IconWashDry2: TablerIcon; -export const IconWashDry3: TablerIcon; -export const IconWashDryA: TablerIcon; -export const IconWashDryDip: TablerIcon; -export const IconWashDryF: TablerIcon; -export const IconWashDryHang: TablerIcon; -export const IconWashDryOff: TablerIcon; -export const IconWashDryP: TablerIcon; -export const IconWashDryShade: TablerIcon; -export const IconWashDryW: TablerIcon; -export const IconWashDry: TablerIcon; -export const IconWashDrycleanOff: TablerIcon; -export const IconWashDryclean: TablerIcon; -export const IconWashGentle: TablerIcon; -export const IconWashMachine: TablerIcon; -export const IconWashOff: TablerIcon; -export const IconWashPress: TablerIcon; -export const IconWashTemperature1: TablerIcon; -export const IconWashTemperature2: TablerIcon; -export const IconWashTemperature3: TablerIcon; -export const IconWashTemperature4: TablerIcon; -export const IconWashTemperature5: TablerIcon; -export const IconWashTemperature6: TablerIcon; -export const IconWashTumbleDry: TablerIcon; -export const IconWashTumbleOff: TablerIcon; -export const IconWash: TablerIcon; -export const IconWaveSawTool: TablerIcon; -export const IconWaveSine: TablerIcon; -export const IconWaveSquare: TablerIcon; -export const IconWebhookOff: TablerIcon; -export const IconWebhook: TablerIcon; -export const IconWeight: TablerIcon; -export const IconWheelchairOff: TablerIcon; -export const IconWheelchair: TablerIcon; -export const IconWhirl: TablerIcon; -export const IconWifi0: TablerIcon; -export const IconWifi1: TablerIcon; -export const IconWifi2: TablerIcon; -export const IconWifiOff: TablerIcon; -export const IconWifi: TablerIcon; -export const IconWindOff: TablerIcon; -export const IconWind: TablerIcon; -export const IconWindmillOff: TablerIcon; -export const IconWindmill: TablerIcon; -export const IconWindowMaximize: TablerIcon; -export const IconWindowMinimize: TablerIcon; -export const IconWindowOff: TablerIcon; -export const IconWindow: TablerIcon; -export const IconWindsock: TablerIcon; -export const IconWiperWash: TablerIcon; -export const IconWiper: TablerIcon; -export const IconWoman: TablerIcon; -export const IconWood: TablerIcon; -export const IconWorldDownload: TablerIcon; -export const IconWorldLatitude: TablerIcon; -export const IconWorldLongitude: TablerIcon; -export const IconWorldOff: TablerIcon; -export const IconWorldUpload: TablerIcon; -export const IconWorldWww: TablerIcon; -export const IconWorld: TablerIcon; -export const IconWreckingBall: TablerIcon; -export const IconWritingOff: TablerIcon; -export const IconWritingSignOff: TablerIcon; -export const IconWritingSign: TablerIcon; -export const IconWriting: TablerIcon; -export const IconX: TablerIcon; -export const IconXboxA: TablerIcon; -export const IconXboxB: TablerIcon; -export const IconXboxX: TablerIcon; -export const IconXboxY: TablerIcon; -export const IconYinYang: TablerIcon; -export const IconYoga: TablerIcon; -export const IconZeppelinOff: TablerIcon; -export const IconZeppelin: TablerIcon; -export const IconZip: TablerIcon; -export const IconZodiacAquarius: TablerIcon; -export const IconZodiacAries: TablerIcon; -export const IconZodiacCancer: TablerIcon; -export const IconZodiacCapricorn: TablerIcon; -export const IconZodiacGemini: TablerIcon; -export const IconZodiacLeo: TablerIcon; -export const IconZodiacLibra: TablerIcon; -export const IconZodiacPisces: TablerIcon; -export const IconZodiacSagittarius: TablerIcon; -export const IconZodiacScorpio: TablerIcon; -export const IconZodiacTaurus: TablerIcon; -export const IconZodiacVirgo: TablerIcon; -export const IconZoomCancel: TablerIcon; -export const IconZoomCheck: TablerIcon; -export const IconZoomCode: TablerIcon; -export const IconZoomExclamation: TablerIcon; -export const IconZoomInArea: TablerIcon; -export const IconZoomIn: TablerIcon; -export const IconZoomMoney: TablerIcon; -export const IconZoomOutArea: TablerIcon; -export const IconZoomOut: TablerIcon; -export const IconZoomPan: TablerIcon; -export const IconZoomQuestion: TablerIcon; -export const IconZoomReplace: TablerIcon; -export const IconZoomReset: TablerIcon; -export const IconZzzOff: TablerIcon; -export const IconZzz: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js deleted file mode 100644 index 185b0e848..000000000 --- a/icons-react/index.js +++ /dev/null @@ -1,3128 +0,0 @@ -export { default as Icon123 } from './icons-js/123.js'; -export { default as Icon24Hours } from './icons-js/24-hours.js'; -export { default as Icon2fa } from './icons-js/2fa.js'; -export { default as Icon360View } from './icons-js/360-view.js'; -export { default as Icon360 } from './icons-js/360.js'; -export { default as Icon3dCubeSphereOff } from './icons-js/3d-cube-sphere-off.js'; -export { default as Icon3dCubeSphere } from './icons-js/3d-cube-sphere.js'; -export { default as Icon3dRotate } from './icons-js/3d-rotate.js'; -export { default as IconAB2 } from './icons-js/a-b-2.js'; -export { default as IconABOff } from './icons-js/a-b-off.js'; -export { default as IconAB } from './icons-js/a-b.js'; -export { default as IconAbacusOff } from './icons-js/abacus-off.js'; -export { default as IconAbacus } from './icons-js/abacus.js'; -export { default as IconAbc } from './icons-js/abc.js'; -export { default as IconAccessPointOff } from './icons-js/access-point-off.js'; -export { default as IconAccessPoint } from './icons-js/access-point.js'; -export { default as IconAccessibleOff } from './icons-js/accessible-off.js'; -export { default as IconAccessible } from './icons-js/accessible.js'; -export { default as IconActivityHeartbeat } from './icons-js/activity-heartbeat.js'; -export { default as IconActivity } from './icons-js/activity.js'; -export { default as IconAd2 } from './icons-js/ad-2.js'; -export { default as IconAdOff } from './icons-js/ad-off.js'; -export { default as IconAd } from './icons-js/ad.js'; -export { default as IconAddressBookOff } from './icons-js/address-book-off.js'; -export { default as IconAddressBook } from './icons-js/address-book.js'; -export { default as IconAdjustmentsAlt } from './icons-js/adjustments-alt.js'; -export { default as IconAdjustmentsHorizontal } from './icons-js/adjustments-horizontal.js'; -export { default as IconAdjustmentsOff } from './icons-js/adjustments-off.js'; -export { default as IconAdjustments } from './icons-js/adjustments.js'; -export { default as IconAerialLift } from './icons-js/aerial-lift.js'; -export { default as IconAffiliate } from './icons-js/affiliate.js'; -export { default as IconAirBalloon } from './icons-js/air-balloon.js'; -export { default as IconAirConditioningDisabled } from './icons-js/air-conditioning-disabled.js'; -export { default as IconAirConditioning } from './icons-js/air-conditioning.js'; -export { default as IconAlarmMinus } from './icons-js/alarm-minus.js'; -export { default as IconAlarmOff } from './icons-js/alarm-off.js'; -export { default as IconAlarmPlus } from './icons-js/alarm-plus.js'; -export { default as IconAlarmSnooze } from './icons-js/alarm-snooze.js'; -export { default as IconAlarm } from './icons-js/alarm.js'; -export { default as IconAlbumOff } from './icons-js/album-off.js'; -export { default as IconAlbum } from './icons-js/album.js'; -export { default as IconAlertCircle } from './icons-js/alert-circle.js'; -export { default as IconAlertOctagon } from './icons-js/alert-octagon.js'; -export { default as IconAlertTriangle } from './icons-js/alert-triangle.js'; -export { default as IconAlien } from './icons-js/alien.js'; -export { default as IconAlignBoxBottomCenter } from './icons-js/align-box-bottom-center.js'; -export { default as IconAlignBoxBottomLeft } from './icons-js/align-box-bottom-left.js'; -export { default as IconAlignBoxBottomRight } from './icons-js/align-box-bottom-right.js'; -export { default as IconAlignBoxLeftBottom } from './icons-js/align-box-left-bottom.js'; -export { default as IconAlignBoxLeftMiddle } from './icons-js/align-box-left-middle.js'; -export { default as IconAlignBoxLeftTop } from './icons-js/align-box-left-top.js'; -export { default as IconAlignBoxRightBottom } from './icons-js/align-box-right-bottom.js'; -export { default as IconAlignBoxRightMiddle } from './icons-js/align-box-right-middle.js'; -export { default as IconAlignBoxRightTop } from './icons-js/align-box-right-top.js'; -export { default as IconAlignBoxTopCenter } from './icons-js/align-box-top-center.js'; -export { default as IconAlignBoxTopLeft } from './icons-js/align-box-top-left.js'; -export { default as IconAlignBoxTopRight } from './icons-js/align-box-top-right.js'; -export { default as IconAlignCenter } from './icons-js/align-center.js'; -export { default as IconAlignJustified } from './icons-js/align-justified.js'; -export { default as IconAlignLeft } from './icons-js/align-left.js'; -export { default as IconAlignRight } from './icons-js/align-right.js'; -export { default as IconAlpha } from './icons-js/alpha.js'; -export { default as IconAlphabetCyrillic } from './icons-js/alphabet-cyrillic.js'; -export { default as IconAlphabetGreek } from './icons-js/alphabet-greek.js'; -export { default as IconAlphabetLatin } from './icons-js/alphabet-latin.js'; -export { default as IconAmbulance } from './icons-js/ambulance.js'; -export { default as IconAmpersand } from './icons-js/ampersand.js'; -export { default as IconAnalyzeOff } from './icons-js/analyze-off.js'; -export { default as IconAnalyze } from './icons-js/analyze.js'; -export { default as IconAnchorOff } from './icons-js/anchor-off.js'; -export { default as IconAnchor } from './icons-js/anchor.js'; -export { default as IconAngle } from './icons-js/angle.js'; -export { default as IconAnkh } from './icons-js/ankh.js'; -export { default as IconAntennaBars1 } from './icons-js/antenna-bars-1.js'; -export { default as IconAntennaBars2 } from './icons-js/antenna-bars-2.js'; -export { default as IconAntennaBars3 } from './icons-js/antenna-bars-3.js'; -export { default as IconAntennaBars4 } from './icons-js/antenna-bars-4.js'; -export { default as IconAntennaBars5 } from './icons-js/antenna-bars-5.js'; -export { default as IconAntennaBarsOff } from './icons-js/antenna-bars-off.js'; -export { default as IconAntennaOff } from './icons-js/antenna-off.js'; -export { default as IconAntenna } from './icons-js/antenna.js'; -export { default as IconApertureOff } from './icons-js/aperture-off.js'; -export { default as IconAperture } from './icons-js/aperture.js'; -export { default as IconApiAppOff } from './icons-js/api-app-off.js'; -export { default as IconApiApp } from './icons-js/api-app.js'; -export { default as IconApiOff } from './icons-js/api-off.js'; -export { default as IconApi } from './icons-js/api.js'; -export { default as IconAppWindow } from './icons-js/app-window.js'; -export { default as IconApple } from './icons-js/apple.js'; -export { default as IconAppsOff } from './icons-js/apps-off.js'; -export { default as IconApps } from './icons-js/apps.js'; -export { default as IconArchiveOff } from './icons-js/archive-off.js'; -export { default as IconArchive } from './icons-js/archive.js'; -export { default as IconArmchair2Off } from './icons-js/armchair-2-off.js'; -export { default as IconArmchair2 } from './icons-js/armchair-2.js'; -export { default as IconArmchairOff } from './icons-js/armchair-off.js'; -export { default as IconArmchair } from './icons-js/armchair.js'; -export { default as IconArrowAutofitContent } from './icons-js/arrow-autofit-content.js'; -export { default as IconArrowAutofitDown } from './icons-js/arrow-autofit-down.js'; -export { default as IconArrowAutofitHeight } from './icons-js/arrow-autofit-height.js'; -export { default as IconArrowAutofitLeft } from './icons-js/arrow-autofit-left.js'; -export { default as IconArrowAutofitRight } from './icons-js/arrow-autofit-right.js'; -export { default as IconArrowAutofitUp } from './icons-js/arrow-autofit-up.js'; -export { default as IconArrowAutofitWidth } from './icons-js/arrow-autofit-width.js'; -export { default as IconArrowBackUp } from './icons-js/arrow-back-up.js'; -export { default as IconArrowBack } from './icons-js/arrow-back.js'; -export { default as IconArrowBadgeDown } from './icons-js/arrow-badge-down.js'; -export { default as IconArrowBadgeLeft } from './icons-js/arrow-badge-left.js'; -export { default as IconArrowBadgeRight } from './icons-js/arrow-badge-right.js'; -export { default as IconArrowBadgeUp } from './icons-js/arrow-badge-up.js'; -export { default as IconArrowBarDown } from './icons-js/arrow-bar-down.js'; -export { default as IconArrowBarLeft } from './icons-js/arrow-bar-left.js'; -export { default as IconArrowBarRight } from './icons-js/arrow-bar-right.js'; -export { default as IconArrowBarToDown } from './icons-js/arrow-bar-to-down.js'; -export { default as IconArrowBarToLeft } from './icons-js/arrow-bar-to-left.js'; -export { default as IconArrowBarToRight } from './icons-js/arrow-bar-to-right.js'; -export { default as IconArrowBarToUp } from './icons-js/arrow-bar-to-up.js'; -export { default as IconArrowBarUp } from './icons-js/arrow-bar-up.js'; -export { default as IconArrowBearLeft2 } from './icons-js/arrow-bear-left-2.js'; -export { default as IconArrowBearLeft } from './icons-js/arrow-bear-left.js'; -export { default as IconArrowBearRight2 } from './icons-js/arrow-bear-right-2.js'; -export { default as IconArrowBearRight } from './icons-js/arrow-bear-right.js'; -export { default as IconArrowBigDownLine } from './icons-js/arrow-big-down-line.js'; -export { default as IconArrowBigDownLines } from './icons-js/arrow-big-down-lines.js'; -export { default as IconArrowBigDown } from './icons-js/arrow-big-down.js'; -export { default as IconArrowBigLeftLine } from './icons-js/arrow-big-left-line.js'; -export { default as IconArrowBigLeftLines } from './icons-js/arrow-big-left-lines.js'; -export { default as IconArrowBigLeft } from './icons-js/arrow-big-left.js'; -export { default as IconArrowBigRightLine } from './icons-js/arrow-big-right-line.js'; -export { default as IconArrowBigRightLines } from './icons-js/arrow-big-right-lines.js'; -export { default as IconArrowBigRight } from './icons-js/arrow-big-right.js'; -export { default as IconArrowBigTop } from './icons-js/arrow-big-top.js'; -export { default as IconArrowBigUpLine } from './icons-js/arrow-big-up-line.js'; -export { default as IconArrowBigUpLines } from './icons-js/arrow-big-up-lines.js'; -export { default as IconArrowBounce } from './icons-js/arrow-bounce.js'; -export { default as IconArrowCurveLeft } from './icons-js/arrow-curve-left.js'; -export { default as IconArrowCurveRight } from './icons-js/arrow-curve-right.js'; -export { default as IconArrowDownBar } from './icons-js/arrow-down-bar.js'; -export { default as IconArrowDownCircle } from './icons-js/arrow-down-circle.js'; -export { default as IconArrowDownLeftCircle } from './icons-js/arrow-down-left-circle.js'; -export { default as IconArrowDownLeft } from './icons-js/arrow-down-left.js'; -export { default as IconArrowDownRhombus } from './icons-js/arrow-down-rhombus.js'; -export { default as IconArrowDownRightCircle } from './icons-js/arrow-down-right-circle.js'; -export { default as IconArrowDownRight } from './icons-js/arrow-down-right.js'; -export { default as IconArrowDownSquare } from './icons-js/arrow-down-square.js'; -export { default as IconArrowDownTail } from './icons-js/arrow-down-tail.js'; -export { default as IconArrowDown } from './icons-js/arrow-down.js'; -export { default as IconArrowFork } from './icons-js/arrow-fork.js'; -export { default as IconArrowForwardUp } from './icons-js/arrow-forward-up.js'; -export { default as IconArrowForward } from './icons-js/arrow-forward.js'; -export { default as IconArrowGuide } from './icons-js/arrow-guide.js'; -export { default as IconArrowIteration } from './icons-js/arrow-iteration.js'; -export { default as IconArrowLeftBar } from './icons-js/arrow-left-bar.js'; -export { default as IconArrowLeftCircle } from './icons-js/arrow-left-circle.js'; -export { default as IconArrowLeftRhombus } from './icons-js/arrow-left-rhombus.js'; -export { default as IconArrowLeftRight } from './icons-js/arrow-left-right.js'; -export { default as IconArrowLeftSquare } from './icons-js/arrow-left-square.js'; -export { default as IconArrowLeftTail } from './icons-js/arrow-left-tail.js'; -export { default as IconArrowLeft } from './icons-js/arrow-left.js'; -export { default as IconArrowLoopLeft2 } from './icons-js/arrow-loop-left-2.js'; -export { default as IconArrowLoopLeft } from './icons-js/arrow-loop-left.js'; -export { default as IconArrowLoopRight2 } from './icons-js/arrow-loop-right-2.js'; -export { default as IconArrowLoopRight } from './icons-js/arrow-loop-right.js'; -export { default as IconArrowMergeBoth } from './icons-js/arrow-merge-both.js'; -export { default as IconArrowMergeLeft } from './icons-js/arrow-merge-left.js'; -export { default as IconArrowMergeRight } from './icons-js/arrow-merge-right.js'; -export { default as IconArrowMerge } from './icons-js/arrow-merge.js'; -export { default as IconArrowMoveDown } from './icons-js/arrow-move-down.js'; -export { default as IconArrowMoveLeft } from './icons-js/arrow-move-left.js'; -export { default as IconArrowMoveRight } from './icons-js/arrow-move-right.js'; -export { default as IconArrowMoveUp } from './icons-js/arrow-move-up.js'; -export { default as IconArrowNarrowDown } from './icons-js/arrow-narrow-down.js'; -export { default as IconArrowNarrowLeft } from './icons-js/arrow-narrow-left.js'; -export { default as IconArrowNarrowRight } from './icons-js/arrow-narrow-right.js'; -export { default as IconArrowNarrowUp } from './icons-js/arrow-narrow-up.js'; -export { default as IconArrowRampLeft2 } from './icons-js/arrow-ramp-left-2.js'; -export { default as IconArrowRampLeft3 } from './icons-js/arrow-ramp-left-3.js'; -export { default as IconArrowRampLeft } from './icons-js/arrow-ramp-left.js'; -export { default as IconArrowRampRight2 } from './icons-js/arrow-ramp-right-2.js'; -export { default as IconArrowRampRight3 } from './icons-js/arrow-ramp-right-3.js'; -export { default as IconArrowRampRight } from './icons-js/arrow-ramp-right.js'; -export { default as IconArrowRightBar } from './icons-js/arrow-right-bar.js'; -export { default as IconArrowRightCircle } from './icons-js/arrow-right-circle.js'; -export { default as IconArrowRightRhombus } from './icons-js/arrow-right-rhombus.js'; -export { default as IconArrowRightSquare } from './icons-js/arrow-right-square.js'; -export { default as IconArrowRightTail } from './icons-js/arrow-right-tail.js'; -export { default as IconArrowRight } from './icons-js/arrow-right.js'; -export { default as IconArrowRotaryFirstLeft } from './icons-js/arrow-rotary-first-left.js'; -export { default as IconArrowRotaryFirstRight } from './icons-js/arrow-rotary-first-right.js'; -export { default as IconArrowRotaryLastLeft } from './icons-js/arrow-rotary-last-left.js'; -export { default as IconArrowRotaryLastRight } from './icons-js/arrow-rotary-last-right.js'; -export { default as IconArrowRotaryLeft } from './icons-js/arrow-rotary-left.js'; -export { default as IconArrowRotaryRight } from './icons-js/arrow-rotary-right.js'; -export { default as IconArrowRotaryStraight } from './icons-js/arrow-rotary-straight.js'; -export { default as IconArrowRoundaboutLeft } from './icons-js/arrow-roundabout-left.js'; -export { default as IconArrowRoundaboutRight } from './icons-js/arrow-roundabout-right.js'; -export { default as IconArrowSharpTurnLeft } from './icons-js/arrow-sharp-turn-left.js'; -export { default as IconArrowSharpTurnRight } from './icons-js/arrow-sharp-turn-right.js'; -export { default as IconArrowUpBar } from './icons-js/arrow-up-bar.js'; -export { default as IconArrowUpCircle } from './icons-js/arrow-up-circle.js'; -export { default as IconArrowUpLeftCircle } from './icons-js/arrow-up-left-circle.js'; -export { default as IconArrowUpLeft } from './icons-js/arrow-up-left.js'; -export { default as IconArrowUpRhombus } from './icons-js/arrow-up-rhombus.js'; -export { default as IconArrowUpRightCircle } from './icons-js/arrow-up-right-circle.js'; -export { default as IconArrowUpRight } from './icons-js/arrow-up-right.js'; -export { default as IconArrowUpSquare } from './icons-js/arrow-up-square.js'; -export { default as IconArrowUpTail } from './icons-js/arrow-up-tail.js'; -export { default as IconArrowUp } from './icons-js/arrow-up.js'; -export { default as IconArrowWaveLeftDown } from './icons-js/arrow-wave-left-down.js'; -export { default as IconArrowWaveLeftUp } from './icons-js/arrow-wave-left-up.js'; -export { default as IconArrowWaveRightDown } from './icons-js/arrow-wave-right-down.js'; -export { default as IconArrowWaveRightUp } from './icons-js/arrow-wave-right-up.js'; -export { default as IconArrowZigZag } from './icons-js/arrow-zig-zag.js'; -export { default as IconArrowsCross } from './icons-js/arrows-cross.js'; -export { default as IconArrowsDiagonal2 } from './icons-js/arrows-diagonal-2.js'; -export { default as IconArrowsDiagonalMinimize2 } from './icons-js/arrows-diagonal-minimize-2.js'; -export { default as IconArrowsDiagonalMinimize } from './icons-js/arrows-diagonal-minimize.js'; -export { default as IconArrowsDiagonal } from './icons-js/arrows-diagonal.js'; -export { default as IconArrowsDiff } from './icons-js/arrows-diff.js'; -export { default as IconArrowsDoubleNeSw } from './icons-js/arrows-double-ne-sw.js'; -export { default as IconArrowsDoubleNwSe } from './icons-js/arrows-double-nw-se.js'; -export { default as IconArrowsDoubleSeNw } from './icons-js/arrows-double-se-nw.js'; -export { default as IconArrowsDoubleSwNe } from './icons-js/arrows-double-sw-ne.js'; -export { default as IconArrowsDownUp } from './icons-js/arrows-down-up.js'; -export { default as IconArrowsDown } from './icons-js/arrows-down.js'; -export { default as IconArrowsExchange2 } from './icons-js/arrows-exchange-2.js'; -export { default as IconArrowsExchange } from './icons-js/arrows-exchange.js'; -export { default as IconArrowsHorizontal } from './icons-js/arrows-horizontal.js'; -export { default as IconArrowsJoin2 } from './icons-js/arrows-join-2.js'; -export { default as IconArrowsJoin } from './icons-js/arrows-join.js'; -export { default as IconArrowsLeftDown } from './icons-js/arrows-left-down.js'; -export { default as IconArrowsLeftRight } from './icons-js/arrows-left-right.js'; -export { default as IconArrowsLeft } from './icons-js/arrows-left.js'; -export { default as IconArrowsMaximize } from './icons-js/arrows-maximize.js'; -export { default as IconArrowsMinimize } from './icons-js/arrows-minimize.js'; -export { default as IconArrowsMoveHorizontal } from './icons-js/arrows-move-horizontal.js'; -export { default as IconArrowsMoveVertical } from './icons-js/arrows-move-vertical.js'; -export { default as IconArrowsMove } from './icons-js/arrows-move.js'; -export { default as IconArrowsRandom } from './icons-js/arrows-random.js'; -export { default as IconArrowsRightDown } from './icons-js/arrows-right-down.js'; -export { default as IconArrowsRightLeft } from './icons-js/arrows-right-left.js'; -export { default as IconArrowsRight } from './icons-js/arrows-right.js'; -export { default as IconArrowsShuffle2 } from './icons-js/arrows-shuffle-2.js'; -export { default as IconArrowsShuffle } from './icons-js/arrows-shuffle.js'; -export { default as IconArrowsSort } from './icons-js/arrows-sort.js'; -export { default as IconArrowsSplit2 } from './icons-js/arrows-split-2.js'; -export { default as IconArrowsSplit } from './icons-js/arrows-split.js'; -export { default as IconArrowsTransferDown } from './icons-js/arrows-transfer-down.js'; -export { default as IconArrowsTransferUp } from './icons-js/arrows-transfer-up.js'; -export { default as IconArrowsUpDown } from './icons-js/arrows-up-down.js'; -export { default as IconArrowsUpLeft } from './icons-js/arrows-up-left.js'; -export { default as IconArrowsUpRight } from './icons-js/arrows-up-right.js'; -export { default as IconArrowsUp } from './icons-js/arrows-up.js'; -export { default as IconArrowsVertical } from './icons-js/arrows-vertical.js'; -export { default as IconArtboardOff } from './icons-js/artboard-off.js'; -export { default as IconArtboard } from './icons-js/artboard.js'; -export { default as IconArticleOff } from './icons-js/article-off.js'; -export { default as IconArticle } from './icons-js/article.js'; -export { default as IconAspectRatioOff } from './icons-js/aspect-ratio-off.js'; -export { default as IconAspectRatio } from './icons-js/aspect-ratio.js'; -export { default as IconAssemblyOff } from './icons-js/assembly-off.js'; -export { default as IconAssembly } from './icons-js/assembly.js'; -export { default as IconAsset } from './icons-js/asset.js'; -export { default as IconAsteriskSimple } from './icons-js/asterisk-simple.js'; -export { default as IconAsterisk } from './icons-js/asterisk.js'; -export { default as IconAtOff } from './icons-js/at-off.js'; -export { default as IconAt } from './icons-js/at.js'; -export { default as IconAtom2 } from './icons-js/atom-2.js'; -export { default as IconAtomOff } from './icons-js/atom-off.js'; -export { default as IconAtom } from './icons-js/atom.js'; -export { default as IconAugmentedReality2 } from './icons-js/augmented-reality-2.js'; -export { default as IconAugmentedRealityOff } from './icons-js/augmented-reality-off.js'; -export { default as IconAugmentedReality } from './icons-js/augmented-reality.js'; -export { default as IconAwardOff } from './icons-js/award-off.js'; -export { default as IconAward } from './icons-js/award.js'; -export { default as IconAxe } from './icons-js/axe.js'; -export { default as IconAxisX } from './icons-js/axis-x.js'; -export { default as IconAxisY } from './icons-js/axis-y.js'; -export { default as IconBabyBottle } from './icons-js/baby-bottle.js'; -export { default as IconBabyCarriage } from './icons-js/baby-carriage.js'; -export { default as IconBackhoe } from './icons-js/backhoe.js'; -export { default as IconBackpackOff } from './icons-js/backpack-off.js'; -export { default as IconBackpack } from './icons-js/backpack.js'; -export { default as IconBackspace } from './icons-js/backspace.js'; -export { default as IconBadge3d } from './icons-js/badge-3d.js'; -export { default as IconBadge4k } from './icons-js/badge-4k.js'; -export { default as IconBadge8k } from './icons-js/badge-8k.js'; -export { default as IconBadgeAd } from './icons-js/badge-ad.js'; -export { default as IconBadgeAr } from './icons-js/badge-ar.js'; -export { default as IconBadgeCc } from './icons-js/badge-cc.js'; -export { default as IconBadgeHd } from './icons-js/badge-hd.js'; -export { default as IconBadgeOff } from './icons-js/badge-off.js'; -export { default as IconBadgeSd } from './icons-js/badge-sd.js'; -export { default as IconBadgeTm } from './icons-js/badge-tm.js'; -export { default as IconBadgeVo } from './icons-js/badge-vo.js'; -export { default as IconBadgeVr } from './icons-js/badge-vr.js'; -export { default as IconBadgeWc } from './icons-js/badge-wc.js'; -export { default as IconBadge } from './icons-js/badge.js'; -export { default as IconBadgesOff } from './icons-js/badges-off.js'; -export { default as IconBadges } from './icons-js/badges.js'; -export { default as IconBaguette } from './icons-js/baguette.js'; -export { default as IconBallAmericanFootballOff } from './icons-js/ball-american-football-off.js'; -export { default as IconBallAmericanFootball } from './icons-js/ball-american-football.js'; -export { default as IconBallBaseball } from './icons-js/ball-baseball.js'; -export { default as IconBallBasketball } from './icons-js/ball-basketball.js'; -export { default as IconBallBowling } from './icons-js/ball-bowling.js'; -export { default as IconBallFootballOff } from './icons-js/ball-football-off.js'; -export { default as IconBallFootball } from './icons-js/ball-football.js'; -export { default as IconBallTennis } from './icons-js/ball-tennis.js'; -export { default as IconBallVolleyball } from './icons-js/ball-volleyball.js'; -export { default as IconBallonOff } from './icons-js/ballon-off.js'; -export { default as IconBallon } from './icons-js/ballon.js'; -export { default as IconBallpenOff } from './icons-js/ballpen-off.js'; -export { default as IconBallpen } from './icons-js/ballpen.js'; -export { default as IconBan } from './icons-js/ban.js'; -export { default as IconBandageOff } from './icons-js/bandage-off.js'; -export { default as IconBandage } from './icons-js/bandage.js'; -export { default as IconBarbellOff } from './icons-js/barbell-off.js'; -export { default as IconBarbell } from './icons-js/barbell.js'; -export { default as IconBarcodeOff } from './icons-js/barcode-off.js'; -export { default as IconBarcode } from './icons-js/barcode.js'; -export { default as IconBarrelOff } from './icons-js/barrel-off.js'; -export { default as IconBarrel } from './icons-js/barrel.js'; -export { default as IconBarrierBlockOff } from './icons-js/barrier-block-off.js'; -export { default as IconBarrierBlock } from './icons-js/barrier-block.js'; -export { default as IconBaseline } from './icons-js/baseline.js'; -export { default as IconBasketOff } from './icons-js/basket-off.js'; -export { default as IconBasket } from './icons-js/basket.js'; -export { default as IconBat } from './icons-js/bat.js'; -export { default as IconBathOff } from './icons-js/bath-off.js'; -export { default as IconBath } from './icons-js/bath.js'; -export { default as IconBattery1 } from './icons-js/battery-1.js'; -export { default as IconBattery2 } from './icons-js/battery-2.js'; -export { default as IconBattery3 } from './icons-js/battery-3.js'; -export { default as IconBattery4 } from './icons-js/battery-4.js'; -export { default as IconBatteryAutomotive } from './icons-js/battery-automotive.js'; -export { default as IconBatteryCharging2 } from './icons-js/battery-charging-2.js'; -export { default as IconBatteryCharging } from './icons-js/battery-charging.js'; -export { default as IconBatteryEco } from './icons-js/battery-eco.js'; -export { default as IconBatteryOff } from './icons-js/battery-off.js'; -export { default as IconBattery } from './icons-js/battery.js'; -export { default as IconBeachOff } from './icons-js/beach-off.js'; -export { default as IconBeach } from './icons-js/beach.js'; -export { default as IconBedOff } from './icons-js/bed-off.js'; -export { default as IconBed } from './icons-js/bed.js'; -export { default as IconBeerOff } from './icons-js/beer-off.js'; -export { default as IconBeer } from './icons-js/beer.js'; -export { default as IconBellMinus } from './icons-js/bell-minus.js'; -export { default as IconBellOff } from './icons-js/bell-off.js'; -export { default as IconBellPlus } from './icons-js/bell-plus.js'; -export { default as IconBellRinging2 } from './icons-js/bell-ringing-2.js'; -export { default as IconBellRinging } from './icons-js/bell-ringing.js'; -export { default as IconBellSchool } from './icons-js/bell-school.js'; -export { default as IconBellX } from './icons-js/bell-x.js'; -export { default as IconBellZ } from './icons-js/bell-z.js'; -export { default as IconBell } from './icons-js/bell.js'; -export { default as IconBeta } from './icons-js/beta.js'; -export { default as IconBible } from './icons-js/bible.js'; -export { default as IconBikeOff } from './icons-js/bike-off.js'; -export { default as IconBike } from './icons-js/bike.js'; -export { default as IconBinaryOff } from './icons-js/binary-off.js'; -export { default as IconBinaryTree2 } from './icons-js/binary-tree-2.js'; -export { default as IconBinaryTree } from './icons-js/binary-tree.js'; -export { default as IconBinary } from './icons-js/binary.js'; -export { default as IconBiohazardOff } from './icons-js/biohazard-off.js'; -export { default as IconBiohazard } from './icons-js/biohazard.js'; -export { default as IconBlade } from './icons-js/blade.js'; -export { default as IconBleachChlorine } from './icons-js/bleach-chlorine.js'; -export { default as IconBleachNoChlorine } from './icons-js/bleach-no-chlorine.js'; -export { default as IconBleachOff } from './icons-js/bleach-off.js'; -export { default as IconBleach } from './icons-js/bleach.js'; -export { default as IconBlockquote } from './icons-js/blockquote.js'; -export { default as IconBluetoothConnected } from './icons-js/bluetooth-connected.js'; -export { default as IconBluetoothOff } from './icons-js/bluetooth-off.js'; -export { default as IconBluetoothX } from './icons-js/bluetooth-x.js'; -export { default as IconBluetooth } from './icons-js/bluetooth.js'; -export { default as IconBlurOff } from './icons-js/blur-off.js'; -export { default as IconBlur } from './icons-js/blur.js'; -export { default as IconBmp } from './icons-js/bmp.js'; -export { default as IconBoldOff } from './icons-js/bold-off.js'; -export { default as IconBold } from './icons-js/bold.js'; -export { default as IconBoltOff } from './icons-js/bolt-off.js'; -export { default as IconBolt } from './icons-js/bolt.js'; -export { default as IconBomb } from './icons-js/bomb.js'; -export { default as IconBoneOff } from './icons-js/bone-off.js'; -export { default as IconBone } from './icons-js/bone.js'; -export { default as IconBongOff } from './icons-js/bong-off.js'; -export { default as IconBong } from './icons-js/bong.js'; -export { default as IconBook2 } from './icons-js/book-2.js'; -export { default as IconBookDownload } from './icons-js/book-download.js'; -export { default as IconBookOff } from './icons-js/book-off.js'; -export { default as IconBookUpload } from './icons-js/book-upload.js'; -export { default as IconBook } from './icons-js/book.js'; -export { default as IconBookmarkOff } from './icons-js/bookmark-off.js'; -export { default as IconBookmark } from './icons-js/bookmark.js'; -export { default as IconBookmarksOff } from './icons-js/bookmarks-off.js'; -export { default as IconBookmarks } from './icons-js/bookmarks.js'; -export { default as IconBooksOff } from './icons-js/books-off.js'; -export { default as IconBooks } from './icons-js/books.js'; -export { default as IconBorderAll } from './icons-js/border-all.js'; -export { default as IconBorderBottom } from './icons-js/border-bottom.js'; -export { default as IconBorderHorizontal } from './icons-js/border-horizontal.js'; -export { default as IconBorderInner } from './icons-js/border-inner.js'; -export { default as IconBorderLeft } from './icons-js/border-left.js'; -export { default as IconBorderNone } from './icons-js/border-none.js'; -export { default as IconBorderOuter } from './icons-js/border-outer.js'; -export { default as IconBorderRadius } from './icons-js/border-radius.js'; -export { default as IconBorderRight } from './icons-js/border-right.js'; -export { default as IconBorderStyle2 } from './icons-js/border-style-2.js'; -export { default as IconBorderStyle } from './icons-js/border-style.js'; -export { default as IconBorderTop } from './icons-js/border-top.js'; -export { default as IconBorderVertical } from './icons-js/border-vertical.js'; -export { default as IconBottleOff } from './icons-js/bottle-off.js'; -export { default as IconBottle } from './icons-js/bottle.js'; -export { default as IconBounceLeft } from './icons-js/bounce-left.js'; -export { default as IconBounceRight } from './icons-js/bounce-right.js'; -export { default as IconBow } from './icons-js/bow.js'; -export { default as IconBowl } from './icons-js/bowl.js'; -export { default as IconBoxAlignBottomLeft } from './icons-js/box-align-bottom-left.js'; -export { default as IconBoxAlignBottomRight } from './icons-js/box-align-bottom-right.js'; -export { default as IconBoxAlignBottom } from './icons-js/box-align-bottom.js'; -export { default as IconBoxAlignLeft } from './icons-js/box-align-left.js'; -export { default as IconBoxAlignRight } from './icons-js/box-align-right.js'; -export { default as IconBoxAlignTopLeft } from './icons-js/box-align-top-left.js'; -export { default as IconBoxAlignTopRight } from './icons-js/box-align-top-right.js'; -export { default as IconBoxAlignTop } from './icons-js/box-align-top.js'; -export { default as IconBoxMargin } from './icons-js/box-margin.js'; -export { default as IconBoxModel2Off } from './icons-js/box-model-2-off.js'; -export { default as IconBoxModel2 } from './icons-js/box-model-2.js'; -export { default as IconBoxModelOff } from './icons-js/box-model-off.js'; -export { default as IconBoxModel } from './icons-js/box-model.js'; -export { default as IconBoxMultiple0 } from './icons-js/box-multiple-0.js'; -export { default as IconBoxMultiple1 } from './icons-js/box-multiple-1.js'; -export { default as IconBoxMultiple2 } from './icons-js/box-multiple-2.js'; -export { default as IconBoxMultiple3 } from './icons-js/box-multiple-3.js'; -export { default as IconBoxMultiple4 } from './icons-js/box-multiple-4.js'; -export { default as IconBoxMultiple5 } from './icons-js/box-multiple-5.js'; -export { default as IconBoxMultiple6 } from './icons-js/box-multiple-6.js'; -export { default as IconBoxMultiple7 } from './icons-js/box-multiple-7.js'; -export { default as IconBoxMultiple8 } from './icons-js/box-multiple-8.js'; -export { default as IconBoxMultiple9 } from './icons-js/box-multiple-9.js'; -export { default as IconBoxMultiple } from './icons-js/box-multiple.js'; -export { default as IconBoxOff } from './icons-js/box-off.js'; -export { default as IconBoxPadding } from './icons-js/box-padding.js'; -export { default as IconBoxSeam } from './icons-js/box-seam.js'; -export { default as IconBox } from './icons-js/box.js'; -export { default as IconBracesOff } from './icons-js/braces-off.js'; -export { default as IconBraces } from './icons-js/braces.js'; -export { default as IconBracketsContainEnd } from './icons-js/brackets-contain-end.js'; -export { default as IconBracketsContainStart } from './icons-js/brackets-contain-start.js'; -export { default as IconBracketsContain } from './icons-js/brackets-contain.js'; -export { default as IconBracketsOff } from './icons-js/brackets-off.js'; -export { default as IconBrackets } from './icons-js/brackets.js'; -export { default as IconBraile } from './icons-js/braile.js'; -export { default as IconBrain } from './icons-js/brain.js'; -export { default as IconBrand4chan } from './icons-js/brand-4chan.js'; -export { default as IconBrandAbstract } from './icons-js/brand-abstract.js'; -export { default as IconBrandAdobe } from './icons-js/brand-adobe.js'; -export { default as IconBrandAdonisJs } from './icons-js/brand-adonis-js.js'; -export { default as IconBrandAirbnb } from './icons-js/brand-airbnb.js'; -export { default as IconBrandAirtable } from './icons-js/brand-airtable.js'; -export { default as IconBrandAlgolia } from './icons-js/brand-algolia.js'; -export { default as IconBrandAlpineJs } from './icons-js/brand-alpine-js.js'; -export { default as IconBrandAmazon } from './icons-js/brand-amazon.js'; -export { default as IconBrandAmd } from './icons-js/brand-amd.js'; -export { default as IconBrandAmigo } from './icons-js/brand-amigo.js'; -export { default as IconBrandAmongus } from './icons-js/brand-amongus.js'; -export { default as IconBrandAndroid } from './icons-js/brand-android.js'; -export { default as IconBrandAngular } from './icons-js/brand-angular.js'; -export { default as IconBrandAo3 } from './icons-js/brand-ao3.js'; -export { default as IconBrandAppgallery } from './icons-js/brand-appgallery.js'; -export { default as IconBrandAppleArcade } from './icons-js/brand-apple-arcade.js'; -export { default as IconBrandApplePodcast } from './icons-js/brand-apple-podcast.js'; -export { default as IconBrandApple } from './icons-js/brand-apple.js'; -export { default as IconBrandAppstore } from './icons-js/brand-appstore.js'; -export { default as IconBrandAsana } from './icons-js/brand-asana.js'; -export { default as IconBrandBackbone } from './icons-js/brand-backbone.js'; -export { default as IconBrandBadoo } from './icons-js/brand-badoo.js'; -export { default as IconBrandBaidu } from './icons-js/brand-baidu.js'; -export { default as IconBrandBandcamp } from './icons-js/brand-bandcamp.js'; -export { default as IconBrandBandlab } from './icons-js/brand-bandlab.js'; -export { default as IconBrandBeats } from './icons-js/brand-beats.js'; -export { default as IconBrandBehance } from './icons-js/brand-behance.js'; -export { default as IconBrandBinance } from './icons-js/brand-binance.js'; -export { default as IconBrandBing } from './icons-js/brand-bing.js'; -export { default as IconBrandBitbucket } from './icons-js/brand-bitbucket.js'; -export { default as IconBrandBlackbery } from './icons-js/brand-blackbery.js'; -export { default as IconBrandBlender } from './icons-js/brand-blender.js'; -export { default as IconBrandBlogger } from './icons-js/brand-blogger.js'; -export { default as IconBrandBooking } from './icons-js/brand-booking.js'; -export { default as IconBrandBootstrap } from './icons-js/brand-bootstrap.js'; -export { default as IconBrandBulma } from './icons-js/brand-bulma.js'; -export { default as IconBrandBumble } from './icons-js/brand-bumble.js'; -export { default as IconBrandBunpo } from './icons-js/brand-bunpo.js'; -export { default as IconBrandCampaignmonitor } from './icons-js/brand-campaignmonitor.js'; -export { default as IconBrandCarbon } from './icons-js/brand-carbon.js'; -export { default as IconBrandCashapp } from './icons-js/brand-cashapp.js'; -export { default as IconBrandChrome } from './icons-js/brand-chrome.js'; -export { default as IconBrandCitymapper } from './icons-js/brand-citymapper.js'; -export { default as IconBrandCodecov } from './icons-js/brand-codecov.js'; -export { default as IconBrandCodepen } from './icons-js/brand-codepen.js'; -export { default as IconBrandCodesandbox } from './icons-js/brand-codesandbox.js'; -export { default as IconBrandCohost } from './icons-js/brand-cohost.js'; -export { default as IconBrandCoinbase } from './icons-js/brand-coinbase.js'; -export { default as IconBrandComedyCentral } from './icons-js/brand-comedy-central.js'; -export { default as IconBrandCoreos } from './icons-js/brand-coreos.js'; -export { default as IconBrandCouchdb } from './icons-js/brand-couchdb.js'; -export { default as IconBrandCouchsurfing } from './icons-js/brand-couchsurfing.js'; -export { default as IconBrandCpp } from './icons-js/brand-cpp.js'; -export { default as IconBrandCss3 } from './icons-js/brand-css3.js'; -export { default as IconBrandCtemplar } from './icons-js/brand-ctemplar.js'; -export { default as IconBrandCucumber } from './icons-js/brand-cucumber.js'; -export { default as IconBrandCupra } from './icons-js/brand-cupra.js'; -export { default as IconBrandCypress } from './icons-js/brand-cypress.js'; -export { default as IconBrandD3 } from './icons-js/brand-d3.js'; -export { default as IconBrandDaysCounter } from './icons-js/brand-days-counter.js'; -export { default as IconBrandDcos } from './icons-js/brand-dcos.js'; -export { default as IconBrandDebian } from './icons-js/brand-debian.js'; -export { default as IconBrandDeliveroo } from './icons-js/brand-deliveroo.js'; -export { default as IconBrandDeno } from './icons-js/brand-deno.js'; -export { default as IconBrandDenodo } from './icons-js/brand-denodo.js'; -export { default as IconBrandDeviantart } from './icons-js/brand-deviantart.js'; -export { default as IconBrandDingtalk } from './icons-js/brand-dingtalk.js'; -export { default as IconBrandDiscord } from './icons-js/brand-discord.js'; -export { default as IconBrandDisney } from './icons-js/brand-disney.js'; -export { default as IconBrandDisqus } from './icons-js/brand-disqus.js'; -export { default as IconBrandDjango } from './icons-js/brand-django.js'; -export { default as IconBrandDocker } from './icons-js/brand-docker.js'; -export { default as IconBrandDoctrine } from './icons-js/brand-doctrine.js'; -export { default as IconBrandDolbyDigital } from './icons-js/brand-dolby-digital.js'; -export { default as IconBrandDouban } from './icons-js/brand-douban.js'; -export { default as IconBrandDribbble } from './icons-js/brand-dribbble.js'; -export { default as IconBrandDrops } from './icons-js/brand-drops.js'; -export { default as IconBrandDrupal } from './icons-js/brand-drupal.js'; -export { default as IconBrandEdge } from './icons-js/brand-edge.js'; -export { default as IconBrandElastic } from './icons-js/brand-elastic.js'; -export { default as IconBrandEmber } from './icons-js/brand-ember.js'; -export { default as IconBrandEnvato } from './icons-js/brand-envato.js'; -export { default as IconBrandEtsy } from './icons-js/brand-etsy.js'; -export { default as IconBrandEvernote } from './icons-js/brand-evernote.js'; -export { default as IconBrandFacebook } from './icons-js/brand-facebook.js'; -export { default as IconBrandFigma } from './icons-js/brand-figma.js'; -export { default as IconBrandFinder } from './icons-js/brand-finder.js'; -export { default as IconBrandFirebase } from './icons-js/brand-firebase.js'; -export { default as IconBrandFirefox } from './icons-js/brand-firefox.js'; -export { default as IconBrandFlickr } from './icons-js/brand-flickr.js'; -export { default as IconBrandFlightradar24 } from './icons-js/brand-flightradar24.js'; -export { default as IconBrandFlipboard } from './icons-js/brand-flipboard.js'; -export { default as IconBrandFlutter } from './icons-js/brand-flutter.js'; -export { default as IconBrandFortnite } from './icons-js/brand-fortnite.js'; -export { default as IconBrandFoursquare } from './icons-js/brand-foursquare.js'; -export { default as IconBrandFramer } from './icons-js/brand-framer.js'; -export { default as IconBrandFunimation } from './icons-js/brand-funimation.js'; -export { default as IconBrandGatsby } from './icons-js/brand-gatsby.js'; -export { default as IconBrandGit } from './icons-js/brand-git.js'; -export { default as IconBrandGithubCopilot } from './icons-js/brand-github-copilot.js'; -export { default as IconBrandGithub } from './icons-js/brand-github.js'; -export { default as IconBrandGitlab } from './icons-js/brand-gitlab.js'; -export { default as IconBrandGmail } from './icons-js/brand-gmail.js'; -export { default as IconBrandGoogleAnalytics } from './icons-js/brand-google-analytics.js'; -export { default as IconBrandGoogleBigQuery } from './icons-js/brand-google-big-query.js'; -export { default as IconBrandGoogleDrive } from './icons-js/brand-google-drive.js'; -export { default as IconBrandGoogleFit } from './icons-js/brand-google-fit.js'; -export { default as IconBrandGoogleHome } from './icons-js/brand-google-home.js'; -export { default as IconBrandGoogleOne } from './icons-js/brand-google-one.js'; -export { default as IconBrandGooglePhotos } from './icons-js/brand-google-photos.js'; -export { default as IconBrandGooglePlay } from './icons-js/brand-google-play.js'; -export { default as IconBrandGooglePodcasts } from './icons-js/brand-google-podcasts.js'; -export { default as IconBrandGoogle } from './icons-js/brand-google.js'; -export { default as IconBrandGrammarly } from './icons-js/brand-grammarly.js'; -export { default as IconBrandGraphql } from './icons-js/brand-graphql.js'; -export { default as IconBrandGravatar } from './icons-js/brand-gravatar.js'; -export { default as IconBrandGrindr } from './icons-js/brand-grindr.js'; -export { default as IconBrandGuardian } from './icons-js/brand-guardian.js'; -export { default as IconBrandGumroad } from './icons-js/brand-gumroad.js'; -export { default as IconBrandHbo } from './icons-js/brand-hbo.js'; -export { default as IconBrandHeadlessui } from './icons-js/brand-headlessui.js'; -export { default as IconBrandHipchat } from './icons-js/brand-hipchat.js'; -export { default as IconBrandHtml5 } from './icons-js/brand-html5.js'; -export { default as IconBrandInertia } from './icons-js/brand-inertia.js'; -export { default as IconBrandInstagram } from './icons-js/brand-instagram.js'; -export { default as IconBrandIntercom } from './icons-js/brand-intercom.js'; -export { default as IconBrandJavascript } from './icons-js/brand-javascript.js'; -export { default as IconBrandKickstarter } from './icons-js/brand-kickstarter.js'; -export { default as IconBrandKotlin } from './icons-js/brand-kotlin.js'; -export { default as IconBrandLaravel } from './icons-js/brand-laravel.js'; -export { default as IconBrandLastfm } from './icons-js/brand-lastfm.js'; -export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js'; -export { default as IconBrandLinktree } from './icons-js/brand-linktree.js'; -export { default as IconBrandLinqpad } from './icons-js/brand-linqpad.js'; -export { default as IconBrandLoom } from './icons-js/brand-loom.js'; -export { default as IconBrandMailgun } from './icons-js/brand-mailgun.js'; -export { default as IconBrandMantine } from './icons-js/brand-mantine.js'; -export { default as IconBrandMastercard } from './icons-js/brand-mastercard.js'; -export { default as IconBrandMastodon } from './icons-js/brand-mastodon.js'; -export { default as IconBrandMatrix } from './icons-js/brand-matrix.js'; -export { default as IconBrandMcdonalds } from './icons-js/brand-mcdonalds.js'; -export { default as IconBrandMedium } from './icons-js/brand-medium.js'; -export { default as IconBrandMercedes } from './icons-js/brand-mercedes.js'; -export { default as IconBrandMessenger } from './icons-js/brand-messenger.js'; -export { default as IconBrandMeta } from './icons-js/brand-meta.js'; -export { default as IconBrandMiniprogram } from './icons-js/brand-miniprogram.js'; -export { default as IconBrandMixpanel } from './icons-js/brand-mixpanel.js'; -export { default as IconBrandMonday } from './icons-js/brand-monday.js'; -export { default as IconBrandMongodb } from './icons-js/brand-mongodb.js'; -export { default as IconBrandMyOppo } from './icons-js/brand-my-oppo.js'; -export { default as IconBrandMysql } from './icons-js/brand-mysql.js'; -export { default as IconBrandNationalGeographic } from './icons-js/brand-national-geographic.js'; -export { default as IconBrandNem } from './icons-js/brand-nem.js'; -export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js'; -export { default as IconBrandNeteaseMusic } from './icons-js/brand-netease-music.js'; -export { default as IconBrandNetflix } from './icons-js/brand-netflix.js'; -export { default as IconBrandNexo } from './icons-js/brand-nexo.js'; -export { default as IconBrandNextcloud } from './icons-js/brand-nextcloud.js'; -export { default as IconBrandNextjs } from './icons-js/brand-nextjs.js'; -export { default as IconBrandNordVpn } from './icons-js/brand-nord-vpn.js'; -export { default as IconBrandNotion } from './icons-js/brand-notion.js'; -export { default as IconBrandNpm } from './icons-js/brand-npm.js'; -export { default as IconBrandNuxt } from './icons-js/brand-nuxt.js'; -export { default as IconBrandNytimes } from './icons-js/brand-nytimes.js'; -export { default as IconBrandOffice } from './icons-js/brand-office.js'; -export { default as IconBrandOkRu } from './icons-js/brand-ok-ru.js'; -export { default as IconBrandOnedrive } from './icons-js/brand-onedrive.js'; -export { default as IconBrandOnlyfans } from './icons-js/brand-onlyfans.js'; -export { default as IconBrandOpenSource } from './icons-js/brand-open-source.js'; -export { default as IconBrandOpenvpn } from './icons-js/brand-openvpn.js'; -export { default as IconBrandOpera } from './icons-js/brand-opera.js'; -export { default as IconBrandPagekit } from './icons-js/brand-pagekit.js'; -export { default as IconBrandPatreon } from './icons-js/brand-patreon.js'; -export { default as IconBrandPaypal } from './icons-js/brand-paypal.js'; -export { default as IconBrandPaypay } from './icons-js/brand-paypay.js'; -export { default as IconBrandPeanut } from './icons-js/brand-peanut.js'; -export { default as IconBrandPepsi } from './icons-js/brand-pepsi.js'; -export { default as IconBrandPhp } from './icons-js/brand-php.js'; -export { default as IconBrandPicsart } from './icons-js/brand-picsart.js'; -export { default as IconBrandPinterest } from './icons-js/brand-pinterest.js'; -export { default as IconBrandPocket } from './icons-js/brand-pocket.js'; -export { default as IconBrandPolymer } from './icons-js/brand-polymer.js'; -export { default as IconBrandPowershell } from './icons-js/brand-powershell.js'; -export { default as IconBrandPrisma } from './icons-js/brand-prisma.js'; -export { default as IconBrandProducthunt } from './icons-js/brand-producthunt.js'; -export { default as IconBrandPushbullet } from './icons-js/brand-pushbullet.js'; -export { default as IconBrandPushover } from './icons-js/brand-pushover.js'; -export { default as IconBrandPython } from './icons-js/brand-python.js'; -export { default as IconBrandQq } from './icons-js/brand-qq.js'; -export { default as IconBrandReactNative } from './icons-js/brand-react-native.js'; -export { default as IconBrandReact } from './icons-js/brand-react.js'; -export { default as IconBrandReason } from './icons-js/brand-reason.js'; -export { default as IconBrandReddit } from './icons-js/brand-reddit.js'; -export { default as IconBrandRedhat } from './icons-js/brand-redhat.js'; -export { default as IconBrandRedux } from './icons-js/brand-redux.js'; -export { default as IconBrandRevolut } from './icons-js/brand-revolut.js'; -export { default as IconBrandSafari } from './icons-js/brand-safari.js'; -export { default as IconBrandSamsungpass } from './icons-js/brand-samsungpass.js'; -export { default as IconBrandSass } from './icons-js/brand-sass.js'; -export { default as IconBrandSentry } from './icons-js/brand-sentry.js'; -export { default as IconBrandSharik } from './icons-js/brand-sharik.js'; -export { default as IconBrandShazam } from './icons-js/brand-shazam.js'; -export { default as IconBrandShopee } from './icons-js/brand-shopee.js'; -export { default as IconBrandSketch } from './icons-js/brand-sketch.js'; -export { default as IconBrandSkype } from './icons-js/brand-skype.js'; -export { default as IconBrandSlack } from './icons-js/brand-slack.js'; -export { default as IconBrandSnapchat } from './icons-js/brand-snapchat.js'; -export { default as IconBrandSnapseed } from './icons-js/brand-snapseed.js'; -export { default as IconBrandSnowflake } from './icons-js/brand-snowflake.js'; -export { default as IconBrandSocketIo } from './icons-js/brand-socket-io.js'; -export { default as IconBrandSolidjs } from './icons-js/brand-solidjs.js'; -export { default as IconBrandSoundcloud } from './icons-js/brand-soundcloud.js'; -export { default as IconBrandSpacehey } from './icons-js/brand-spacehey.js'; -export { default as IconBrandSpotify } from './icons-js/brand-spotify.js'; -export { default as IconBrandStackoverflow } from './icons-js/brand-stackoverflow.js'; -export { default as IconBrandStackshare } from './icons-js/brand-stackshare.js'; -export { default as IconBrandSteam } from './icons-js/brand-steam.js'; -export { default as IconBrandStorybook } from './icons-js/brand-storybook.js'; -export { default as IconBrandStorytel } from './icons-js/brand-storytel.js'; -export { default as IconBrandStrava } from './icons-js/brand-strava.js'; -export { default as IconBrandStripe } from './icons-js/brand-stripe.js'; -export { default as IconBrandSublimeText } from './icons-js/brand-sublime-text.js'; -export { default as IconBrandSuperhuman } from './icons-js/brand-superhuman.js'; -export { default as IconBrandSupernova } from './icons-js/brand-supernova.js'; -export { default as IconBrandSurfshark } from './icons-js/brand-surfshark.js'; -export { default as IconBrandSvelte } from './icons-js/brand-svelte.js'; -export { default as IconBrandSymfony } from './icons-js/brand-symfony.js'; -export { default as IconBrandTabler } from './icons-js/brand-tabler.js'; -export { default as IconBrandTailwind } from './icons-js/brand-tailwind.js'; -export { default as IconBrandTaobao } from './icons-js/brand-taobao.js'; -export { default as IconBrandTed } from './icons-js/brand-ted.js'; -export { default as IconBrandTelegram } from './icons-js/brand-telegram.js'; -export { default as IconBrandTether } from './icons-js/brand-tether.js'; -export { default as IconBrandThreejs } from './icons-js/brand-threejs.js'; -export { default as IconBrandTidal } from './icons-js/brand-tidal.js'; -export { default as IconBrandTiktok } from './icons-js/brand-tiktok.js'; -export { default as IconBrandTinder } from './icons-js/brand-tinder.js'; -export { default as IconBrandTopbuzz } from './icons-js/brand-topbuzz.js'; -export { default as IconBrandTorchain } from './icons-js/brand-torchain.js'; -export { default as IconBrandToyota } from './icons-js/brand-toyota.js'; -export { default as IconBrandTrello } from './icons-js/brand-trello.js'; -export { default as IconBrandTripadvisor } from './icons-js/brand-tripadvisor.js'; -export { default as IconBrandTumblr } from './icons-js/brand-tumblr.js'; -export { default as IconBrandTwilio } from './icons-js/brand-twilio.js'; -export { default as IconBrandTwitch } from './icons-js/brand-twitch.js'; -export { default as IconBrandTwitter } from './icons-js/brand-twitter.js'; -export { default as IconBrandTypescript } from './icons-js/brand-typescript.js'; -export { default as IconBrandUber } from './icons-js/brand-uber.js'; -export { default as IconBrandUbuntu } from './icons-js/brand-ubuntu.js'; -export { default as IconBrandUnity } from './icons-js/brand-unity.js'; -export { default as IconBrandUnsplash } from './icons-js/brand-unsplash.js'; -export { default as IconBrandUpwork } from './icons-js/brand-upwork.js'; -export { default as IconBrandValorant } from './icons-js/brand-valorant.js'; -export { default as IconBrandVercel } from './icons-js/brand-vercel.js'; -export { default as IconBrandVimeo } from './icons-js/brand-vimeo.js'; -export { default as IconBrandVinted } from './icons-js/brand-vinted.js'; -export { default as IconBrandVisa } from './icons-js/brand-visa.js'; -export { default as IconBrandVisualStudio } from './icons-js/brand-visual-studio.js'; -export { default as IconBrandVite } from './icons-js/brand-vite.js'; -export { default as IconBrandVivaldi } from './icons-js/brand-vivaldi.js'; -export { default as IconBrandVk } from './icons-js/brand-vk.js'; -export { default as IconBrandVolkswagen } from './icons-js/brand-volkswagen.js'; -export { default as IconBrandVsco } from './icons-js/brand-vsco.js'; -export { default as IconBrandVscode } from './icons-js/brand-vscode.js'; -export { default as IconBrandVue } from './icons-js/brand-vue.js'; -export { default as IconBrandWalmart } from './icons-js/brand-walmart.js'; -export { default as IconBrandWaze } from './icons-js/brand-waze.js'; -export { default as IconBrandWebflow } from './icons-js/brand-webflow.js'; -export { default as IconBrandWechat } from './icons-js/brand-wechat.js'; -export { default as IconBrandWeibo } from './icons-js/brand-weibo.js'; -export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js'; -export { default as IconBrandWindows } from './icons-js/brand-windows.js'; -export { default as IconBrandWindy } from './icons-js/brand-windy.js'; -export { default as IconBrandWish } from './icons-js/brand-wish.js'; -export { default as IconBrandWix } from './icons-js/brand-wix.js'; -export { default as IconBrandWordpress } from './icons-js/brand-wordpress.js'; -export { default as IconBrandXbox } from './icons-js/brand-xbox.js'; -export { default as IconBrandXing } from './icons-js/brand-xing.js'; -export { default as IconBrandYahoo } from './icons-js/brand-yahoo.js'; -export { default as IconBrandYatse } from './icons-js/brand-yatse.js'; -export { default as IconBrandYcombinator } from './icons-js/brand-ycombinator.js'; -export { default as IconBrandYoutubeKids } from './icons-js/brand-youtube-kids.js'; -export { default as IconBrandYoutube } from './icons-js/brand-youtube.js'; -export { default as IconBrandZalando } from './icons-js/brand-zalando.js'; -export { default as IconBrandZapier } from './icons-js/brand-zapier.js'; -export { default as IconBrandZeit } from './icons-js/brand-zeit.js'; -export { default as IconBrandZhihu } from './icons-js/brand-zhihu.js'; -export { default as IconBrandZoom } from './icons-js/brand-zoom.js'; -export { default as IconBrandZulip } from './icons-js/brand-zulip.js'; -export { default as IconBrandZwift } from './icons-js/brand-zwift.js'; -export { default as IconBreadOff } from './icons-js/bread-off.js'; -export { default as IconBread } from './icons-js/bread.js'; -export { default as IconBriefcaseOff } from './icons-js/briefcase-off.js'; -export { default as IconBriefcase } from './icons-js/briefcase.js'; -export { default as IconBrightness2 } from './icons-js/brightness-2.js'; -export { default as IconBrightnessDown } from './icons-js/brightness-down.js'; -export { default as IconBrightnessHalf } from './icons-js/brightness-half.js'; -export { default as IconBrightnessOff } from './icons-js/brightness-off.js'; -export { default as IconBrightnessUp } from './icons-js/brightness-up.js'; -export { default as IconBrightness } from './icons-js/brightness.js'; -export { default as IconBroadcastOff } from './icons-js/broadcast-off.js'; -export { default as IconBroadcast } from './icons-js/broadcast.js'; -export { default as IconBrowserCheck } from './icons-js/browser-check.js'; -export { default as IconBrowserOff } from './icons-js/browser-off.js'; -export { default as IconBrowserPlus } from './icons-js/browser-plus.js'; -export { default as IconBrowserX } from './icons-js/browser-x.js'; -export { default as IconBrowser } from './icons-js/browser.js'; -export { default as IconBrushOff } from './icons-js/brush-off.js'; -export { default as IconBrush } from './icons-js/brush.js'; -export { default as IconBucketDroplet } from './icons-js/bucket-droplet.js'; -export { default as IconBucketOff } from './icons-js/bucket-off.js'; -export { default as IconBucket } from './icons-js/bucket.js'; -export { default as IconBugOff } from './icons-js/bug-off.js'; -export { default as IconBug } from './icons-js/bug.js'; -export { default as IconBuildingArch } from './icons-js/building-arch.js'; -export { default as IconBuildingBank } from './icons-js/building-bank.js'; -export { default as IconBuildingBridge2 } from './icons-js/building-bridge-2.js'; -export { default as IconBuildingBridge } from './icons-js/building-bridge.js'; -export { default as IconBuildingBroadcastTower } from './icons-js/building-broadcast-tower.js'; -export { default as IconBuildingCarousel } from './icons-js/building-carousel.js'; -export { default as IconBuildingCastle } from './icons-js/building-castle.js'; -export { default as IconBuildingChurch } from './icons-js/building-church.js'; -export { default as IconBuildingCircus } from './icons-js/building-circus.js'; -export { default as IconBuildingCommunity } from './icons-js/building-community.js'; -export { default as IconBuildingCottage } from './icons-js/building-cottage.js'; -export { default as IconBuildingEstate } from './icons-js/building-estate.js'; -export { default as IconBuildingFactory2 } from './icons-js/building-factory-2.js'; -export { default as IconBuildingFactory } from './icons-js/building-factory.js'; -export { default as IconBuildingFortress } from './icons-js/building-fortress.js'; -export { default as IconBuildingHospital } from './icons-js/building-hospital.js'; -export { default as IconBuildingLighthouse } from './icons-js/building-lighthouse.js'; -export { default as IconBuildingMonument } from './icons-js/building-monument.js'; -export { default as IconBuildingPavilon } from './icons-js/building-pavilon.js'; -export { default as IconBuildingSkyscraper } from './icons-js/building-skyscraper.js'; -export { default as IconBuildingStadium } from './icons-js/building-stadium.js'; -export { default as IconBuildingStore } from './icons-js/building-store.js'; -export { default as IconBuildingTunnel } from './icons-js/building-tunnel.js'; -export { default as IconBuildingWarehouse } from './icons-js/building-warehouse.js'; -export { default as IconBuildingWindTurbine } from './icons-js/building-wind-turbine.js'; -export { default as IconBuilding } from './icons-js/building.js'; -export { default as IconBulbOff } from './icons-js/bulb-off.js'; -export { default as IconBulb } from './icons-js/bulb.js'; -export { default as IconBulldozer } from './icons-js/bulldozer.js'; -export { default as IconBusOff } from './icons-js/bus-off.js'; -export { default as IconBusStop } from './icons-js/bus-stop.js'; -export { default as IconBus } from './icons-js/bus.js'; -export { default as IconBusinessplan } from './icons-js/businessplan.js'; -export { default as IconButterfly } from './icons-js/butterfly.js'; -export { default as IconCSharp } from './icons-js/c-sharp.js'; -export { default as IconCactusOff } from './icons-js/cactus-off.js'; -export { default as IconCactus } from './icons-js/cactus.js'; -export { default as IconCakeOff } from './icons-js/cake-off.js'; -export { default as IconCake } from './icons-js/cake.js'; -export { default as IconCalculatorOff } from './icons-js/calculator-off.js'; -export { default as IconCalculator } from './icons-js/calculator.js'; -export { default as IconCalendarDue } from './icons-js/calendar-due.js'; -export { default as IconCalendarEvent } from './icons-js/calendar-event.js'; -export { default as IconCalendarMinus } from './icons-js/calendar-minus.js'; -export { default as IconCalendarOff } from './icons-js/calendar-off.js'; -export { default as IconCalendarPlus } from './icons-js/calendar-plus.js'; -export { default as IconCalendarStats } from './icons-js/calendar-stats.js'; -export { default as IconCalendarTime } from './icons-js/calendar-time.js'; -export { default as IconCalendar } from './icons-js/calendar.js'; -export { default as IconCameraMinus } from './icons-js/camera-minus.js'; -export { default as IconCameraOff } from './icons-js/camera-off.js'; -export { default as IconCameraPlus } from './icons-js/camera-plus.js'; -export { default as IconCameraRotate } from './icons-js/camera-rotate.js'; -export { default as IconCameraSelfie } from './icons-js/camera-selfie.js'; -export { default as IconCamera } from './icons-js/camera.js'; -export { default as IconCampfire } from './icons-js/campfire.js'; -export { default as IconCandle } from './icons-js/candle.js'; -export { default as IconCandyOff } from './icons-js/candy-off.js'; -export { default as IconCandy } from './icons-js/candy.js'; -export { default as IconCane } from './icons-js/cane.js'; -export { default as IconCannabis } from './icons-js/cannabis.js'; -export { default as IconCaptureOff } from './icons-js/capture-off.js'; -export { default as IconCapture } from './icons-js/capture.js'; -export { default as IconCarCrane } from './icons-js/car-crane.js'; -export { default as IconCarCrash } from './icons-js/car-crash.js'; -export { default as IconCarOff } from './icons-js/car-off.js'; -export { default as IconCarTurbine } from './icons-js/car-turbine.js'; -export { default as IconCar } from './icons-js/car.js'; -export { default as IconCaravan } from './icons-js/caravan.js'; -export { default as IconCardboardsOff } from './icons-js/cardboards-off.js'; -export { default as IconCardboards } from './icons-js/cardboards.js'; -export { default as IconCards } from './icons-js/cards.js'; -export { default as IconCaretDown } from './icons-js/caret-down.js'; -export { default as IconCaretLeft } from './icons-js/caret-left.js'; -export { default as IconCaretRight } from './icons-js/caret-right.js'; -export { default as IconCaretUp } from './icons-js/caret-up.js'; -export { default as IconCarouselHorizontal } from './icons-js/carousel-horizontal.js'; -export { default as IconCarouselVertical } from './icons-js/carousel-vertical.js'; -export { default as IconCarrotOff } from './icons-js/carrot-off.js'; -export { default as IconCarrot } from './icons-js/carrot.js'; -export { default as IconCashBanknoteOff } from './icons-js/cash-banknote-off.js'; -export { default as IconCashBanknote } from './icons-js/cash-banknote.js'; -export { default as IconCashOff } from './icons-js/cash-off.js'; -export { default as IconCash } from './icons-js/cash.js'; -export { default as IconCastOff } from './icons-js/cast-off.js'; -export { default as IconCast } from './icons-js/cast.js'; -export { default as IconCat } from './icons-js/cat.js'; -export { default as IconCategory2 } from './icons-js/category-2.js'; -export { default as IconCategory } from './icons-js/category.js'; -export { default as IconCeOff } from './icons-js/ce-off.js'; -export { default as IconCe } from './icons-js/ce.js'; -export { default as IconCellSignal1 } from './icons-js/cell-signal-1.js'; -export { default as IconCellSignal2 } from './icons-js/cell-signal-2.js'; -export { default as IconCellSignal3 } from './icons-js/cell-signal-3.js'; -export { default as IconCellSignal4 } from './icons-js/cell-signal-4.js'; -export { default as IconCellSignal5 } from './icons-js/cell-signal-5.js'; -export { default as IconCellSignalOff } from './icons-js/cell-signal-off.js'; -export { default as IconCell } from './icons-js/cell.js'; -export { default as IconCertificate2Off } from './icons-js/certificate-2-off.js'; -export { default as IconCertificate2 } from './icons-js/certificate-2.js'; -export { default as IconCertificateOff } from './icons-js/certificate-off.js'; -export { default as IconCertificate } from './icons-js/certificate.js'; -export { default as IconChairDirector } from './icons-js/chair-director.js'; -export { default as IconChalkboardOff } from './icons-js/chalkboard-off.js'; -export { default as IconChalkboard } from './icons-js/chalkboard.js'; -export { default as IconChargingPile } from './icons-js/charging-pile.js'; -export { default as IconChartArcs3 } from './icons-js/chart-arcs-3.js'; -export { default as IconChartArcs } from './icons-js/chart-arcs.js'; -export { default as IconChartAreaLine } from './icons-js/chart-area-line.js'; -export { default as IconChartArea } from './icons-js/chart-area.js'; -export { default as IconChartArrowsVertical } from './icons-js/chart-arrows-vertical.js'; -export { default as IconChartArrows } from './icons-js/chart-arrows.js'; -export { default as IconChartBarOff } from './icons-js/chart-bar-off.js'; -export { default as IconChartBar } from './icons-js/chart-bar.js'; -export { default as IconChartBubble } from './icons-js/chart-bubble.js'; -export { default as IconChartCandle } from './icons-js/chart-candle.js'; -export { default as IconChartCircles } from './icons-js/chart-circles.js'; -export { default as IconChartDonut2 } from './icons-js/chart-donut-2.js'; -export { default as IconChartDonut3 } from './icons-js/chart-donut-3.js'; -export { default as IconChartDonut4 } from './icons-js/chart-donut-4.js'; -export { default as IconChartDonut } from './icons-js/chart-donut.js'; -export { default as IconChartDots2 } from './icons-js/chart-dots-2.js'; -export { default as IconChartDots3 } from './icons-js/chart-dots-3.js'; -export { default as IconChartDots } from './icons-js/chart-dots.js'; -export { default as IconChartGridDots } from './icons-js/chart-grid-dots.js'; -export { default as IconChartHistogram } from './icons-js/chart-histogram.js'; -export { default as IconChartInfographic } from './icons-js/chart-infographic.js'; -export { default as IconChartLine } from './icons-js/chart-line.js'; -export { default as IconChartPie2 } from './icons-js/chart-pie-2.js'; -export { default as IconChartPie3 } from './icons-js/chart-pie-3.js'; -export { default as IconChartPie4 } from './icons-js/chart-pie-4.js'; -export { default as IconChartPieOff } from './icons-js/chart-pie-off.js'; -export { default as IconChartPie } from './icons-js/chart-pie.js'; -export { default as IconChartPpf } from './icons-js/chart-ppf.js'; -export { default as IconChartRadar } from './icons-js/chart-radar.js'; -export { default as IconChartSankey } from './icons-js/chart-sankey.js'; -export { default as IconChartTreemap } from './icons-js/chart-treemap.js'; -export { default as IconCheck } from './icons-js/check.js'; -export { default as IconCheckbox } from './icons-js/checkbox.js'; -export { default as IconChecklist } from './icons-js/checklist.js'; -export { default as IconChecks } from './icons-js/checks.js'; -export { default as IconCheckupList } from './icons-js/checkup-list.js'; -export { default as IconCheese } from './icons-js/cheese.js'; -export { default as IconChefHatOff } from './icons-js/chef-hat-off.js'; -export { default as IconChefHat } from './icons-js/chef-hat.js'; -export { default as IconCherry } from './icons-js/cherry.js'; -export { default as IconChessBishop } from './icons-js/chess-bishop.js'; -export { default as IconChessKing } from './icons-js/chess-king.js'; -export { default as IconChessKnight } from './icons-js/chess-knight.js'; -export { default as IconChessQueen } from './icons-js/chess-queen.js'; -export { default as IconChessRook } from './icons-js/chess-rook.js'; -export { default as IconChess } from './icons-js/chess.js'; -export { default as IconChevronDownLeft } from './icons-js/chevron-down-left.js'; -export { default as IconChevronDownRight } from './icons-js/chevron-down-right.js'; -export { default as IconChevronDown } from './icons-js/chevron-down.js'; -export { default as IconChevronLeft } from './icons-js/chevron-left.js'; -export { default as IconChevronRight } from './icons-js/chevron-right.js'; -export { default as IconChevronUpLeft } from './icons-js/chevron-up-left.js'; -export { default as IconChevronUpRight } from './icons-js/chevron-up-right.js'; -export { default as IconChevronUp } from './icons-js/chevron-up.js'; -export { default as IconChevronsDownLeft } from './icons-js/chevrons-down-left.js'; -export { default as IconChevronsDownRight } from './icons-js/chevrons-down-right.js'; -export { default as IconChevronsDown } from './icons-js/chevrons-down.js'; -export { default as IconChevronsLeft } from './icons-js/chevrons-left.js'; -export { default as IconChevronsRight } from './icons-js/chevrons-right.js'; -export { default as IconChevronsUpLeft } from './icons-js/chevrons-up-left.js'; -export { default as IconChevronsUpRight } from './icons-js/chevrons-up-right.js'; -export { default as IconChevronsUp } from './icons-js/chevrons-up.js'; -export { default as IconChisel } from './icons-js/chisel.js'; -export { default as IconChristmasTreeOff } from './icons-js/christmas-tree-off.js'; -export { default as IconChristmasTree } from './icons-js/christmas-tree.js'; -export { default as IconCircleCaretDown } from './icons-js/circle-caret-down.js'; -export { default as IconCircleCaretLeft } from './icons-js/circle-caret-left.js'; -export { default as IconCircleCaretRight } from './icons-js/circle-caret-right.js'; -export { default as IconCircleCaretUp } from './icons-js/circle-caret-up.js'; -export { default as IconCircleCheck } from './icons-js/circle-check.js'; -export { default as IconCircleChevronDown } from './icons-js/circle-chevron-down.js'; -export { default as IconCircleChevronLeft } from './icons-js/circle-chevron-left.js'; -export { default as IconCircleChevronRight } from './icons-js/circle-chevron-right.js'; -export { default as IconCircleChevronUp } from './icons-js/circle-chevron-up.js'; -export { default as IconCircleChevronsDown } from './icons-js/circle-chevrons-down.js'; -export { default as IconCircleChevronsLeft } from './icons-js/circle-chevrons-left.js'; -export { default as IconCircleChevronsRight } from './icons-js/circle-chevrons-right.js'; -export { default as IconCircleChevronsUp } from './icons-js/circle-chevrons-up.js'; -export { default as IconCircleDashed } from './icons-js/circle-dashed.js'; -export { default as IconCircleDot } from './icons-js/circle-dot.js'; -export { default as IconCircleDotted } from './icons-js/circle-dotted.js'; -export { default as IconCircleHalf2 } from './icons-js/circle-half-2.js'; -export { default as IconCircleHalfVertical } from './icons-js/circle-half-vertical.js'; -export { default as IconCircleHalf } from './icons-js/circle-half.js'; -export { default as IconCircleKey } from './icons-js/circle-key.js'; -export { default as IconCircleLetterA } from './icons-js/circle-letter-a.js'; -export { default as IconCircleLetterB } from './icons-js/circle-letter-b.js'; -export { default as IconCircleLetterC } from './icons-js/circle-letter-c.js'; -export { default as IconCircleLetterD } from './icons-js/circle-letter-d.js'; -export { default as IconCircleLetterE } from './icons-js/circle-letter-e.js'; -export { default as IconCircleLetterF } from './icons-js/circle-letter-f.js'; -export { default as IconCircleLetterG } from './icons-js/circle-letter-g.js'; -export { default as IconCircleLetterH } from './icons-js/circle-letter-h.js'; -export { default as IconCircleLetterI } from './icons-js/circle-letter-i.js'; -export { default as IconCircleLetterJ } from './icons-js/circle-letter-j.js'; -export { default as IconCircleLetterK } from './icons-js/circle-letter-k.js'; -export { default as IconCircleLetterL } from './icons-js/circle-letter-l.js'; -export { default as IconCircleLetterM } from './icons-js/circle-letter-m.js'; -export { default as IconCircleLetterN } from './icons-js/circle-letter-n.js'; -export { default as IconCircleLetterO } from './icons-js/circle-letter-o.js'; -export { default as IconCircleLetterP } from './icons-js/circle-letter-p.js'; -export { default as IconCircleLetterQ } from './icons-js/circle-letter-q.js'; -export { default as IconCircleLetterR } from './icons-js/circle-letter-r.js'; -export { default as IconCircleLetterS } from './icons-js/circle-letter-s.js'; -export { default as IconCircleLetterT } from './icons-js/circle-letter-t.js'; -export { default as IconCircleLetterU } from './icons-js/circle-letter-u.js'; -export { default as IconCircleLetterV } from './icons-js/circle-letter-v.js'; -export { default as IconCircleLetterW } from './icons-js/circle-letter-w.js'; -export { default as IconCircleLetterX } from './icons-js/circle-letter-x.js'; -export { default as IconCircleLetterY } from './icons-js/circle-letter-y.js'; -export { default as IconCircleLetterZ } from './icons-js/circle-letter-z.js'; -export { default as IconCircleMinus } from './icons-js/circle-minus.js'; -export { default as IconCircleNumber0 } from './icons-js/circle-number-0.js'; -export { default as IconCircleNumber1 } from './icons-js/circle-number-1.js'; -export { default as IconCircleNumber2 } from './icons-js/circle-number-2.js'; -export { default as IconCircleNumber3 } from './icons-js/circle-number-3.js'; -export { default as IconCircleNumber4 } from './icons-js/circle-number-4.js'; -export { default as IconCircleNumber5 } from './icons-js/circle-number-5.js'; -export { default as IconCircleNumber6 } from './icons-js/circle-number-6.js'; -export { default as IconCircleNumber7 } from './icons-js/circle-number-7.js'; -export { default as IconCircleNumber8 } from './icons-js/circle-number-8.js'; -export { default as IconCircleNumber9 } from './icons-js/circle-number-9.js'; -export { default as IconCircleOff } from './icons-js/circle-off.js'; -export { default as IconCirclePlus } from './icons-js/circle-plus.js'; -export { default as IconCircleRectangleOff } from './icons-js/circle-rectangle-off.js'; -export { default as IconCircleRectangle } from './icons-js/circle-rectangle.js'; -export { default as IconCircleSquare } from './icons-js/circle-square.js'; -export { default as IconCircleTriangle } from './icons-js/circle-triangle.js'; -export { default as IconCircleX } from './icons-js/circle-x.js'; -export { default as IconCircle } from './icons-js/circle.js'; -export { default as IconCirclesRelation } from './icons-js/circles-relation.js'; -export { default as IconCircles } from './icons-js/circles.js'; -export { default as IconCircuitAmmeter } from './icons-js/circuit-ammeter.js'; -export { default as IconCircuitBattery } from './icons-js/circuit-battery.js'; -export { default as IconCircuitBulb } from './icons-js/circuit-bulb.js'; -export { default as IconCircuitCapacitorPolarized } from './icons-js/circuit-capacitor-polarized.js'; -export { default as IconCircuitCapacitor } from './icons-js/circuit-capacitor.js'; -export { default as IconCircuitCellPlus } from './icons-js/circuit-cell-plus.js'; -export { default as IconCircuitCell } from './icons-js/circuit-cell.js'; -export { default as IconCircuitChangeover } from './icons-js/circuit-changeover.js'; -export { default as IconCircuitDiodeZener } from './icons-js/circuit-diode-zener.js'; -export { default as IconCircuitDiode } from './icons-js/circuit-diode.js'; -export { default as IconCircuitGroundDigital } from './icons-js/circuit-ground-digital.js'; -export { default as IconCircuitGround } from './icons-js/circuit-ground.js'; -export { default as IconCircuitInductor } from './icons-js/circuit-inductor.js'; -export { default as IconCircuitMotor } from './icons-js/circuit-motor.js'; -export { default as IconCircuitPushbutton } from './icons-js/circuit-pushbutton.js'; -export { default as IconCircuitResistor } from './icons-js/circuit-resistor.js'; -export { default as IconCircuitSwitchClosed } from './icons-js/circuit-switch-closed.js'; -export { default as IconCircuitSwitchOpen } from './icons-js/circuit-switch-open.js'; -export { default as IconCircuitVoltmeter } from './icons-js/circuit-voltmeter.js'; -export { default as IconClearAll } from './icons-js/clear-all.js'; -export { default as IconClearFormatting } from './icons-js/clear-formatting.js'; -export { default as IconClick } from './icons-js/click.js'; -export { default as IconClipboardCheck } from './icons-js/clipboard-check.js'; -export { default as IconClipboardCopy } from './icons-js/clipboard-copy.js'; -export { default as IconClipboardData } from './icons-js/clipboard-data.js'; -export { default as IconClipboardHeart } from './icons-js/clipboard-heart.js'; -export { default as IconClipboardList } from './icons-js/clipboard-list.js'; -export { default as IconClipboardOff } from './icons-js/clipboard-off.js'; -export { default as IconClipboardPlus } from './icons-js/clipboard-plus.js'; -export { default as IconClipboardText } from './icons-js/clipboard-text.js'; -export { default as IconClipboardTypography } from './icons-js/clipboard-typography.js'; -export { default as IconClipboardX } from './icons-js/clipboard-x.js'; -export { default as IconClipboard } from './icons-js/clipboard.js'; -export { default as IconClock2 } from './icons-js/clock-2.js'; -export { default as IconClockCancel } from './icons-js/clock-cancel.js'; -export { default as IconClockEdit } from './icons-js/clock-edit.js'; -export { default as IconClockHour1 } from './icons-js/clock-hour-1.js'; -export { default as IconClockHour10 } from './icons-js/clock-hour-10.js'; -export { default as IconClockHour11 } from './icons-js/clock-hour-11.js'; -export { default as IconClockHour12 } from './icons-js/clock-hour-12.js'; -export { default as IconClockHour2 } from './icons-js/clock-hour-2.js'; -export { default as IconClockHour3 } from './icons-js/clock-hour-3.js'; -export { default as IconClockHour4 } from './icons-js/clock-hour-4.js'; -export { default as IconClockHour5 } from './icons-js/clock-hour-5.js'; -export { default as IconClockHour6 } from './icons-js/clock-hour-6.js'; -export { default as IconClockHour7 } from './icons-js/clock-hour-7.js'; -export { default as IconClockHour8 } from './icons-js/clock-hour-8.js'; -export { default as IconClockHour9 } from './icons-js/clock-hour-9.js'; -export { default as IconClockOff } from './icons-js/clock-off.js'; -export { default as IconClockPause } from './icons-js/clock-pause.js'; -export { default as IconClockPlay } from './icons-js/clock-play.js'; -export { default as IconClockRecord } from './icons-js/clock-record.js'; -export { default as IconClockStop } from './icons-js/clock-stop.js'; -export { default as IconClock } from './icons-js/clock.js'; -export { default as IconClothesRackOff } from './icons-js/clothes-rack-off.js'; -export { default as IconClothesRack } from './icons-js/clothes-rack.js'; -export { default as IconCloudComputing } from './icons-js/cloud-computing.js'; -export { default as IconCloudDataConnection } from './icons-js/cloud-data-connection.js'; -export { default as IconCloudDownload } from './icons-js/cloud-download.js'; -export { default as IconCloudFog } from './icons-js/cloud-fog.js'; -export { default as IconCloudLockOpen } from './icons-js/cloud-lock-open.js'; -export { default as IconCloudLock } from './icons-js/cloud-lock.js'; -export { default as IconCloudOff } from './icons-js/cloud-off.js'; -export { default as IconCloudRain } from './icons-js/cloud-rain.js'; -export { default as IconCloudSnow } from './icons-js/cloud-snow.js'; -export { default as IconCloudStorm } from './icons-js/cloud-storm.js'; -export { default as IconCloudUpload } from './icons-js/cloud-upload.js'; -export { default as IconCloud } from './icons-js/cloud.js'; -export { default as IconClover2 } from './icons-js/clover-2.js'; -export { default as IconClover } from './icons-js/clover.js'; -export { default as IconClubs } from './icons-js/clubs.js'; -export { default as IconCodeAsterix } from './icons-js/code-asterix.js'; -export { default as IconCodeCircle2 } from './icons-js/code-circle-2.js'; -export { default as IconCodeCircle } from './icons-js/code-circle.js'; -export { default as IconCodeDots } from './icons-js/code-dots.js'; -export { default as IconCodeMinus } from './icons-js/code-minus.js'; -export { default as IconCodeOff } from './icons-js/code-off.js'; -export { default as IconCodePlus } from './icons-js/code-plus.js'; -export { default as IconCode } from './icons-js/code.js'; -export { default as IconCoffeeOff } from './icons-js/coffee-off.js'; -export { default as IconCoffee } from './icons-js/coffee.js'; -export { default as IconCoffin } from './icons-js/coffin.js'; -export { default as IconCoinBitcoin } from './icons-js/coin-bitcoin.js'; -export { default as IconCoinEuro } from './icons-js/coin-euro.js'; -export { default as IconCoinMonero } from './icons-js/coin-monero.js'; -export { default as IconCoinOff } from './icons-js/coin-off.js'; -export { default as IconCoinPound } from './icons-js/coin-pound.js'; -export { default as IconCoinRupee } from './icons-js/coin-rupee.js'; -export { default as IconCoinYen } from './icons-js/coin-yen.js'; -export { default as IconCoinYuan } from './icons-js/coin-yuan.js'; -export { default as IconCoin } from './icons-js/coin.js'; -export { default as IconCoins } from './icons-js/coins.js'; -export { default as IconColorFilter } from './icons-js/color-filter.js'; -export { default as IconColorPickerOff } from './icons-js/color-picker-off.js'; -export { default as IconColorPicker } from './icons-js/color-picker.js'; -export { default as IconColorSwatchOff } from './icons-js/color-swatch-off.js'; -export { default as IconColorSwatch } from './icons-js/color-swatch.js'; -export { default as IconColumnInsertLeft } from './icons-js/column-insert-left.js'; -export { default as IconColumnInsertRight } from './icons-js/column-insert-right.js'; -export { default as IconColumnsOff } from './icons-js/columns-off.js'; -export { default as IconColumns } from './icons-js/columns.js'; -export { default as IconComet } from './icons-js/comet.js'; -export { default as IconCommandOff } from './icons-js/command-off.js'; -export { default as IconCommand } from './icons-js/command.js'; -export { default as IconCompassOff } from './icons-js/compass-off.js'; -export { default as IconCompass } from './icons-js/compass.js'; -export { default as IconComponentsOff } from './icons-js/components-off.js'; -export { default as IconComponents } from './icons-js/components.js'; -export { default as IconCone2 } from './icons-js/cone-2.js'; -export { default as IconConeOff } from './icons-js/cone-off.js'; -export { default as IconCone } from './icons-js/cone.js'; -export { default as IconConfettiOff } from './icons-js/confetti-off.js'; -export { default as IconConfetti } from './icons-js/confetti.js'; -export { default as IconConfucius } from './icons-js/confucius.js'; -export { default as IconContainerOff } from './icons-js/container-off.js'; -export { default as IconContainer } from './icons-js/container.js'; -export { default as IconContrast2Off } from './icons-js/contrast-2-off.js'; -export { default as IconContrast2 } from './icons-js/contrast-2.js'; -export { default as IconContrastOff } from './icons-js/contrast-off.js'; -export { default as IconContrast } from './icons-js/contrast.js'; -export { default as IconCooker } from './icons-js/cooker.js'; -export { default as IconCookieMan } from './icons-js/cookie-man.js'; -export { default as IconCookieOff } from './icons-js/cookie-off.js'; -export { default as IconCookie } from './icons-js/cookie.js'; -export { default as IconCopyOff } from './icons-js/copy-off.js'; -export { default as IconCopy } from './icons-js/copy.js'; -export { default as IconCopyleftOff } from './icons-js/copyleft-off.js'; -export { default as IconCopyleft } from './icons-js/copyleft.js'; -export { default as IconCopyrightOff } from './icons-js/copyright-off.js'; -export { default as IconCopyright } from './icons-js/copyright.js'; -export { default as IconCornerDownLeftDouble } from './icons-js/corner-down-left-double.js'; -export { default as IconCornerDownLeft } from './icons-js/corner-down-left.js'; -export { default as IconCornerDownRightDouble } from './icons-js/corner-down-right-double.js'; -export { default as IconCornerDownRight } from './icons-js/corner-down-right.js'; -export { default as IconCornerLeftDownDouble } from './icons-js/corner-left-down-double.js'; -export { default as IconCornerLeftDown } from './icons-js/corner-left-down.js'; -export { default as IconCornerLeftUpDouble } from './icons-js/corner-left-up-double.js'; -export { default as IconCornerLeftUp } from './icons-js/corner-left-up.js'; -export { default as IconCornerRightDownDouble } from './icons-js/corner-right-down-double.js'; -export { default as IconCornerRightDown } from './icons-js/corner-right-down.js'; -export { default as IconCornerRightUpDouble } from './icons-js/corner-right-up-double.js'; -export { default as IconCornerRightUp } from './icons-js/corner-right-up.js'; -export { default as IconCornerUpLeftDouble } from './icons-js/corner-up-left-double.js'; -export { default as IconCornerUpLeft } from './icons-js/corner-up-left.js'; -export { default as IconCornerUpRightDouble } from './icons-js/corner-up-right-double.js'; -export { default as IconCornerUpRight } from './icons-js/corner-up-right.js'; -export { default as IconCpu2 } from './icons-js/cpu-2.js'; -export { default as IconCpuOff } from './icons-js/cpu-off.js'; -export { default as IconCpu } from './icons-js/cpu.js'; -export { default as IconCraneOff } from './icons-js/crane-off.js'; -export { default as IconCrane } from './icons-js/crane.js'; -export { default as IconCreativeCommonsBy } from './icons-js/creative-commons-by.js'; -export { default as IconCreativeCommonsNc } from './icons-js/creative-commons-nc.js'; -export { default as IconCreativeCommonsNd } from './icons-js/creative-commons-nd.js'; -export { default as IconCreativeCommonsOff } from './icons-js/creative-commons-off.js'; -export { default as IconCreativeCommonsSa } from './icons-js/creative-commons-sa.js'; -export { default as IconCreativeCommonsZero } from './icons-js/creative-commons-zero.js'; -export { default as IconCreativeCommons } from './icons-js/creative-commons.js'; -export { default as IconCreditCardOff } from './icons-js/credit-card-off.js'; -export { default as IconCreditCard } from './icons-js/credit-card.js'; -export { default as IconCricket } from './icons-js/cricket.js'; -export { default as IconCrop } from './icons-js/crop.js'; -export { default as IconCrossOff } from './icons-js/cross-off.js'; -export { default as IconCross } from './icons-js/cross.js'; -export { default as IconCrosshair } from './icons-js/crosshair.js'; -export { default as IconCrownOff } from './icons-js/crown-off.js'; -export { default as IconCrown } from './icons-js/crown.js'; -export { default as IconCrutchesOff } from './icons-js/crutches-off.js'; -export { default as IconCrutches } from './icons-js/crutches.js'; -export { default as IconCrystalBall } from './icons-js/crystal-ball.js'; -export { default as IconCubeSend } from './icons-js/cube-send.js'; -export { default as IconCubeUnfolded } from './icons-js/cube-unfolded.js'; -export { default as IconCupOff } from './icons-js/cup-off.js'; -export { default as IconCup } from './icons-js/cup.js'; -export { default as IconCurling } from './icons-js/curling.js'; -export { default as IconCurlyLoop } from './icons-js/curly-loop.js'; -export { default as IconCurrencyAfghani } from './icons-js/currency-afghani.js'; -export { default as IconCurrencyBahraini } from './icons-js/currency-bahraini.js'; -export { default as IconCurrencyBaht } from './icons-js/currency-baht.js'; -export { default as IconCurrencyBitcoin } from './icons-js/currency-bitcoin.js'; -export { default as IconCurrencyCent } from './icons-js/currency-cent.js'; -export { default as IconCurrencyDinar } from './icons-js/currency-dinar.js'; -export { default as IconCurrencyDirham } from './icons-js/currency-dirham.js'; -export { default as IconCurrencyDogecoin } from './icons-js/currency-dogecoin.js'; -export { default as IconCurrencyDollarAustralian } from './icons-js/currency-dollar-australian.js'; -export { default as IconCurrencyDollarBrunei } from './icons-js/currency-dollar-brunei.js'; -export { default as IconCurrencyDollarCanadian } from './icons-js/currency-dollar-canadian.js'; -export { default as IconCurrencyDollarGuyanese } from './icons-js/currency-dollar-guyanese.js'; -export { default as IconCurrencyDollarOff } from './icons-js/currency-dollar-off.js'; -export { default as IconCurrencyDollarSingapore } from './icons-js/currency-dollar-singapore.js'; -export { default as IconCurrencyDollarZimbabwean } from './icons-js/currency-dollar-zimbabwean.js'; -export { default as IconCurrencyDollar } from './icons-js/currency-dollar.js'; -export { default as IconCurrencyDong } from './icons-js/currency-dong.js'; -export { default as IconCurrencyDram } from './icons-js/currency-dram.js'; -export { default as IconCurrencyEthereum } from './icons-js/currency-ethereum.js'; -export { default as IconCurrencyEuroOff } from './icons-js/currency-euro-off.js'; -export { default as IconCurrencyEuro } from './icons-js/currency-euro.js'; -export { default as IconCurrencyForint } from './icons-js/currency-forint.js'; -export { default as IconCurrencyFrank } from './icons-js/currency-frank.js'; -export { default as IconCurrencyGuarani } from './icons-js/currency-guarani.js'; -export { default as IconCurrencyHryvnia } from './icons-js/currency-hryvnia.js'; -export { default as IconCurrencyKip } from './icons-js/currency-kip.js'; -export { default as IconCurrencyKroneCzech } from './icons-js/currency-krone-czech.js'; -export { default as IconCurrencyKroneDanish } from './icons-js/currency-krone-danish.js'; -export { default as IconCurrencyKroneSwedish } from './icons-js/currency-krone-swedish.js'; -export { default as IconCurrencyLari } from './icons-js/currency-lari.js'; -export { default as IconCurrencyLeu } from './icons-js/currency-leu.js'; -export { default as IconCurrencyLira } from './icons-js/currency-lira.js'; -export { default as IconCurrencyLitecoin } from './icons-js/currency-litecoin.js'; -export { default as IconCurrencyLyd } from './icons-js/currency-lyd.js'; -export { default as IconCurrencyManat } from './icons-js/currency-manat.js'; -export { default as IconCurrencyMonero } from './icons-js/currency-monero.js'; -export { default as IconCurrencyNaira } from './icons-js/currency-naira.js'; -export { default as IconCurrencyOff } from './icons-js/currency-off.js'; -export { default as IconCurrencyPaanga } from './icons-js/currency-paanga.js'; -export { default as IconCurrencyPeso } from './icons-js/currency-peso.js'; -export { default as IconCurrencyPoundOff } from './icons-js/currency-pound-off.js'; -export { default as IconCurrencyPound } from './icons-js/currency-pound.js'; -export { default as IconCurrencyQuetzal } from './icons-js/currency-quetzal.js'; -export { default as IconCurrencyReal } from './icons-js/currency-real.js'; -export { default as IconCurrencyRenminbi } from './icons-js/currency-renminbi.js'; -export { default as IconCurrencyRipple } from './icons-js/currency-ripple.js'; -export { default as IconCurrencyRiyal } from './icons-js/currency-riyal.js'; -export { default as IconCurrencyRubel } from './icons-js/currency-rubel.js'; -export { default as IconCurrencyRufiyaa } from './icons-js/currency-rufiyaa.js'; -export { default as IconCurrencyRupeeNepalese } from './icons-js/currency-rupee-nepalese.js'; -export { default as IconCurrencyRupee } from './icons-js/currency-rupee.js'; -export { default as IconCurrencyShekel } from './icons-js/currency-shekel.js'; -export { default as IconCurrencySolana } from './icons-js/currency-solana.js'; -export { default as IconCurrencySom } from './icons-js/currency-som.js'; -export { default as IconCurrencyTaka } from './icons-js/currency-taka.js'; -export { default as IconCurrencyTenge } from './icons-js/currency-tenge.js'; -export { default as IconCurrencyTugrik } from './icons-js/currency-tugrik.js'; -export { default as IconCurrencyWon } from './icons-js/currency-won.js'; -export { default as IconCurrencyYenOff } from './icons-js/currency-yen-off.js'; -export { default as IconCurrencyYen } from './icons-js/currency-yen.js'; -export { default as IconCurrencyYuan } from './icons-js/currency-yuan.js'; -export { default as IconCurrencyZloty } from './icons-js/currency-zloty.js'; -export { default as IconCurrency } from './icons-js/currency.js'; -export { default as IconCurrentLocationOff } from './icons-js/current-location-off.js'; -export { default as IconCurrentLocation } from './icons-js/current-location.js'; -export { default as IconCursorOff } from './icons-js/cursor-off.js'; -export { default as IconCursorText } from './icons-js/cursor-text.js'; -export { default as IconCut } from './icons-js/cut.js'; -export { default as IconCylinder } from './icons-js/cylinder.js'; -export { default as IconDashboardOff } from './icons-js/dashboard-off.js'; -export { default as IconDashboard } from './icons-js/dashboard.js'; -export { default as IconDatabaseExport } from './icons-js/database-export.js'; -export { default as IconDatabaseImport } from './icons-js/database-import.js'; -export { default as IconDatabaseOff } from './icons-js/database-off.js'; -export { default as IconDatabase } from './icons-js/database.js'; -export { default as IconDeer } from './icons-js/deer.js'; -export { default as IconDelta } from './icons-js/delta.js'; -export { default as IconDentalBroken } from './icons-js/dental-broken.js'; -export { default as IconDentalOff } from './icons-js/dental-off.js'; -export { default as IconDental } from './icons-js/dental.js'; -export { default as IconDetailsOff } from './icons-js/details-off.js'; -export { default as IconDetails } from './icons-js/details.js'; -export { default as IconDeviceAirpodsCase } from './icons-js/device-airpods-case.js'; -export { default as IconDeviceAirpods } from './icons-js/device-airpods.js'; -export { default as IconDeviceAnalytics } from './icons-js/device-analytics.js'; -export { default as IconDeviceAudioTape } from './icons-js/device-audio-tape.js'; -export { default as IconDeviceCameraPhone } from './icons-js/device-camera-phone.js'; -export { default as IconDeviceCctvOff } from './icons-js/device-cctv-off.js'; -export { default as IconDeviceCctv } from './icons-js/device-cctv.js'; -export { default as IconDeviceComputerCameraOff } from './icons-js/device-computer-camera-off.js'; -export { default as IconDeviceComputerCamera } from './icons-js/device-computer-camera.js'; -export { default as IconDeviceDesktopAnalytics } from './icons-js/device-desktop-analytics.js'; -export { default as IconDeviceDesktopOff } from './icons-js/device-desktop-off.js'; -export { default as IconDeviceDesktop } from './icons-js/device-desktop.js'; -export { default as IconDeviceFloppy } from './icons-js/device-floppy.js'; -export { default as IconDeviceGamepad2 } from './icons-js/device-gamepad-2.js'; -export { default as IconDeviceGamepad } from './icons-js/device-gamepad.js'; -export { default as IconDeviceHeartMonitor } from './icons-js/device-heart-monitor.js'; -export { default as IconDeviceIpadHorizontal } from './icons-js/device-ipad-horizontal.js'; -export { default as IconDeviceIpad } from './icons-js/device-ipad.js'; -export { default as IconDeviceLandlinePhone } from './icons-js/device-landline-phone.js'; -export { default as IconDeviceLaptopOff } from './icons-js/device-laptop-off.js'; -export { default as IconDeviceLaptop } from './icons-js/device-laptop.js'; -export { default as IconDeviceMobileCharging } from './icons-js/device-mobile-charging.js'; -export { default as IconDeviceMobileMessage } from './icons-js/device-mobile-message.js'; -export { default as IconDeviceMobileOff } from './icons-js/device-mobile-off.js'; -export { default as IconDeviceMobileRotated } from './icons-js/device-mobile-rotated.js'; -export { default as IconDeviceMobileVibration } from './icons-js/device-mobile-vibration.js'; -export { default as IconDeviceMobile } from './icons-js/device-mobile.js'; -export { default as IconDeviceNintendoOff } from './icons-js/device-nintendo-off.js'; -export { default as IconDeviceNintendo } from './icons-js/device-nintendo.js'; -export { default as IconDeviceSdCard } from './icons-js/device-sd-card.js'; -export { default as IconDeviceSim1 } from './icons-js/device-sim-1.js'; -export { default as IconDeviceSim2 } from './icons-js/device-sim-2.js'; -export { default as IconDeviceSim3 } from './icons-js/device-sim-3.js'; -export { default as IconDeviceSim } from './icons-js/device-sim.js'; -export { default as IconDeviceSpeakerOff } from './icons-js/device-speaker-off.js'; -export { default as IconDeviceSpeaker } from './icons-js/device-speaker.js'; -export { default as IconDeviceTabletOff } from './icons-js/device-tablet-off.js'; -export { default as IconDeviceTablet } from './icons-js/device-tablet.js'; -export { default as IconDeviceTvOff } from './icons-js/device-tv-off.js'; -export { default as IconDeviceTvOld } from './icons-js/device-tv-old.js'; -export { default as IconDeviceTv } from './icons-js/device-tv.js'; -export { default as IconDeviceWatchOff } from './icons-js/device-watch-off.js'; -export { default as IconDeviceWatchStats2 } from './icons-js/device-watch-stats-2.js'; -export { default as IconDeviceWatchStats } from './icons-js/device-watch-stats.js'; -export { default as IconDeviceWatch } from './icons-js/device-watch.js'; -export { default as IconDevices2 } from './icons-js/devices-2.js'; -export { default as IconDevicesOff } from './icons-js/devices-off.js'; -export { default as IconDevicesPcOff } from './icons-js/devices-pc-off.js'; -export { default as IconDevicesPc } from './icons-js/devices-pc.js'; -export { default as IconDevices } from './icons-js/devices.js'; -export { default as IconDialpadOff } from './icons-js/dialpad-off.js'; -export { default as IconDialpad } from './icons-js/dialpad.js'; -export { default as IconDiamondOff } from './icons-js/diamond-off.js'; -export { default as IconDiamond } from './icons-js/diamond.js'; -export { default as IconDiamonds } from './icons-js/diamonds.js'; -export { default as IconDice1 } from './icons-js/dice-1.js'; -export { default as IconDice2 } from './icons-js/dice-2.js'; -export { default as IconDice3 } from './icons-js/dice-3.js'; -export { default as IconDice4 } from './icons-js/dice-4.js'; -export { default as IconDice5 } from './icons-js/dice-5.js'; -export { default as IconDice6 } from './icons-js/dice-6.js'; -export { default as IconDice } from './icons-js/dice.js'; -export { default as IconDimensions } from './icons-js/dimensions.js'; -export { default as IconDirectionHorizontal } from './icons-js/direction-horizontal.js'; -export { default as IconDirectionSignOff } from './icons-js/direction-sign-off.js'; -export { default as IconDirectionSign } from './icons-js/direction-sign.js'; -export { default as IconDirection } from './icons-js/direction.js'; -export { default as IconDirectionsOff } from './icons-js/directions-off.js'; -export { default as IconDirections } from './icons-js/directions.js'; -export { default as IconDisabled2 } from './icons-js/disabled-2.js'; -export { default as IconDisabledOff } from './icons-js/disabled-off.js'; -export { default as IconDisabled } from './icons-js/disabled.js'; -export { default as IconDiscGolf } from './icons-js/disc-golf.js'; -export { default as IconDiscOff } from './icons-js/disc-off.js'; -export { default as IconDisc } from './icons-js/disc.js'; -export { default as IconDiscount2Off } from './icons-js/discount-2-off.js'; -export { default as IconDiscount2 } from './icons-js/discount-2.js'; -export { default as IconDiscountCheck } from './icons-js/discount-check.js'; -export { default as IconDiscountOff } from './icons-js/discount-off.js'; -export { default as IconDiscount } from './icons-js/discount.js'; -export { default as IconDivide } from './icons-js/divide.js'; -export { default as IconDna2Off } from './icons-js/dna-2-off.js'; -export { default as IconDna2 } from './icons-js/dna-2.js'; -export { default as IconDnaOff } from './icons-js/dna-off.js'; -export { default as IconDna } from './icons-js/dna.js'; -export { default as IconDogBowl } from './icons-js/dog-bowl.js'; -export { default as IconDog } from './icons-js/dog.js'; -export { default as IconDoorEnter } from './icons-js/door-enter.js'; -export { default as IconDoorExit } from './icons-js/door-exit.js'; -export { default as IconDoorOff } from './icons-js/door-off.js'; -export { default as IconDoor } from './icons-js/door.js'; -export { default as IconDotsCircleHorizontal } from './icons-js/dots-circle-horizontal.js'; -export { default as IconDotsDiagonal2 } from './icons-js/dots-diagonal-2.js'; -export { default as IconDotsDiagonal } from './icons-js/dots-diagonal.js'; -export { default as IconDotsVertical } from './icons-js/dots-vertical.js'; -export { default as IconDots } from './icons-js/dots.js'; -export { default as IconDownloadOff } from './icons-js/download-off.js'; -export { default as IconDownload } from './icons-js/download.js'; -export { default as IconDragDrop2 } from './icons-js/drag-drop-2.js'; -export { default as IconDragDrop } from './icons-js/drag-drop.js'; -export { default as IconDroneOff } from './icons-js/drone-off.js'; -export { default as IconDrone } from './icons-js/drone.js'; -export { default as IconDropCircle } from './icons-js/drop-circle.js'; -export { default as IconDropletFilled2 } from './icons-js/droplet-filled-2.js'; -export { default as IconDropletFilled } from './icons-js/droplet-filled.js'; -export { default as IconDropletHalf2 } from './icons-js/droplet-half-2.js'; -export { default as IconDropletHalf } from './icons-js/droplet-half.js'; -export { default as IconDropletOff } from './icons-js/droplet-off.js'; -export { default as IconDroplet } from './icons-js/droplet.js'; -export { default as IconEPassport } from './icons-js/e-passport.js'; -export { default as IconEarOff } from './icons-js/ear-off.js'; -export { default as IconEar } from './icons-js/ear.js'; -export { default as IconEaseInControlPoint } from './icons-js/ease-in-control-point.js'; -export { default as IconEaseInOutControlPoints } from './icons-js/ease-in-out-control-points.js'; -export { default as IconEaseInOut } from './icons-js/ease-in-out.js'; -export { default as IconEaseIn } from './icons-js/ease-in.js'; -export { default as IconEaseOutControlPoint } from './icons-js/ease-out-control-point.js'; -export { default as IconEaseOut } from './icons-js/ease-out.js'; -export { default as IconEditCircleOff } from './icons-js/edit-circle-off.js'; -export { default as IconEditCircle } from './icons-js/edit-circle.js'; -export { default as IconEditOff } from './icons-js/edit-off.js'; -export { default as IconEdit } from './icons-js/edit.js'; -export { default as IconEggCracked } from './icons-js/egg-cracked.js'; -export { default as IconEggFried } from './icons-js/egg-fried.js'; -export { default as IconEggOff } from './icons-js/egg-off.js'; -export { default as IconEgg } from './icons-js/egg.js'; -export { default as IconEggs } from './icons-js/eggs.js'; -export { default as IconElevatorOff } from './icons-js/elevator-off.js'; -export { default as IconElevator } from './icons-js/elevator.js'; -export { default as IconEmergencyBed } from './icons-js/emergency-bed.js'; -export { default as IconEmpathizeOff } from './icons-js/empathize-off.js'; -export { default as IconEmpathize } from './icons-js/empathize.js'; -export { default as IconEmphasis } from './icons-js/emphasis.js'; -export { default as IconEngineOff } from './icons-js/engine-off.js'; -export { default as IconEngine } from './icons-js/engine.js'; -export { default as IconEqualDouble } from './icons-js/equal-double.js'; -export { default as IconEqualNot } from './icons-js/equal-not.js'; -export { default as IconEqual } from './icons-js/equal.js'; -export { default as IconEraserOff } from './icons-js/eraser-off.js'; -export { default as IconEraser } from './icons-js/eraser.js'; -export { default as IconError404Off } from './icons-js/error-404-off.js'; -export { default as IconError404 } from './icons-js/error-404.js'; -export { default as IconExchangeOff } from './icons-js/exchange-off.js'; -export { default as IconExchange } from './icons-js/exchange.js'; -export { default as IconExclamationCircle } from './icons-js/exclamation-circle.js'; -export { default as IconExclamationMarkOff } from './icons-js/exclamation-mark-off.js'; -export { default as IconExclamationMark } from './icons-js/exclamation-mark.js'; -export { default as IconExplicitOff } from './icons-js/explicit-off.js'; -export { default as IconExplicit } from './icons-js/explicit.js'; -export { default as IconExposure0 } from './icons-js/exposure-0.js'; -export { default as IconExposureMinus1 } from './icons-js/exposure-minus-1.js'; -export { default as IconExposureMinus2 } from './icons-js/exposure-minus-2.js'; -export { default as IconExposureOff } from './icons-js/exposure-off.js'; -export { default as IconExposurePlus1 } from './icons-js/exposure-plus-1.js'; -export { default as IconExposurePlus2 } from './icons-js/exposure-plus-2.js'; -export { default as IconExposure } from './icons-js/exposure.js'; -export { default as IconExternalLinkOff } from './icons-js/external-link-off.js'; -export { default as IconExternalLink } from './icons-js/external-link.js'; -export { default as IconEyeCheck } from './icons-js/eye-check.js'; -export { default as IconEyeOff } from './icons-js/eye-off.js'; -export { default as IconEyeTable } from './icons-js/eye-table.js'; -export { default as IconEye } from './icons-js/eye.js'; -export { default as IconEyeglass2 } from './icons-js/eyeglass-2.js'; -export { default as IconEyeglassOff } from './icons-js/eyeglass-off.js'; -export { default as IconEyeglass } from './icons-js/eyeglass.js'; -export { default as IconFaceIdError } from './icons-js/face-id-error.js'; -export { default as IconFaceId } from './icons-js/face-id.js'; -export { default as IconFaceMaskOff } from './icons-js/face-mask-off.js'; -export { default as IconFaceMask } from './icons-js/face-mask.js'; -export { default as IconFall } from './icons-js/fall.js'; -export { default as IconFeatherOff } from './icons-js/feather-off.js'; -export { default as IconFeather } from './icons-js/feather.js'; -export { default as IconFenceOff } from './icons-js/fence-off.js'; -export { default as IconFence } from './icons-js/fence.js'; -export { default as IconFidgetSpinner } from './icons-js/fidget-spinner.js'; -export { default as IconFile3d } from './icons-js/file-3d.js'; -export { default as IconFileAlert } from './icons-js/file-alert.js'; -export { default as IconFileAnalytics } from './icons-js/file-analytics.js'; -export { default as IconFileArrowLeft } from './icons-js/file-arrow-left.js'; -export { default as IconFileArrowRight } from './icons-js/file-arrow-right.js'; -export { default as IconFileBarcode } from './icons-js/file-barcode.js'; -export { default as IconFileBroken } from './icons-js/file-broken.js'; -export { default as IconFileCertificate } from './icons-js/file-certificate.js'; -export { default as IconFileChart } from './icons-js/file-chart.js'; -export { default as IconFileCheck } from './icons-js/file-check.js'; -export { default as IconFileCode2 } from './icons-js/file-code-2.js'; -export { default as IconFileCode } from './icons-js/file-code.js'; -export { default as IconFileDatabase } from './icons-js/file-database.js'; -export { default as IconFileDelta } from './icons-js/file-delta.js'; -export { default as IconFileDescription } from './icons-js/file-description.js'; -export { default as IconFileDiff } from './icons-js/file-diff.js'; -export { default as IconFileDigit } from './icons-js/file-digit.js'; -export { default as IconFileDislike } from './icons-js/file-dislike.js'; -export { default as IconFileDollar } from './icons-js/file-dollar.js'; -export { default as IconFileDots } from './icons-js/file-dots.js'; -export { default as IconFileDownload } from './icons-js/file-download.js'; -export { default as IconFileEuro } from './icons-js/file-euro.js'; -export { default as IconFileExport } from './icons-js/file-export.js'; -export { default as IconFileFunction } from './icons-js/file-function.js'; -export { default as IconFileHorizontal } from './icons-js/file-horizontal.js'; -export { default as IconFileImport } from './icons-js/file-import.js'; -export { default as IconFileInfinity } from './icons-js/file-infinity.js'; -export { default as IconFileInfo } from './icons-js/file-info.js'; -export { default as IconFileInvoice } from './icons-js/file-invoice.js'; -export { default as IconFileLambda } from './icons-js/file-lambda.js'; -export { default as IconFileLike } from './icons-js/file-like.js'; -export { default as IconFileMinus } from './icons-js/file-minus.js'; -export { default as IconFileMusic } from './icons-js/file-music.js'; -export { default as IconFileOff } from './icons-js/file-off.js'; -export { default as IconFileOrientation } from './icons-js/file-orientation.js'; -export { default as IconFilePencil } from './icons-js/file-pencil.js'; -export { default as IconFilePercent } from './icons-js/file-percent.js'; -export { default as IconFilePhone } from './icons-js/file-phone.js'; -export { default as IconFilePlus } from './icons-js/file-plus.js'; -export { default as IconFilePower } from './icons-js/file-power.js'; -export { default as IconFileReport } from './icons-js/file-report.js'; -export { default as IconFileRss } from './icons-js/file-rss.js'; -export { default as IconFileScissors } from './icons-js/file-scissors.js'; -export { default as IconFileSearch } from './icons-js/file-search.js'; -export { default as IconFileSettings } from './icons-js/file-settings.js'; -export { default as IconFileShredder } from './icons-js/file-shredder.js'; -export { default as IconFileSignal } from './icons-js/file-signal.js'; -export { default as IconFileSpreadsheet } from './icons-js/file-spreadsheet.js'; -export { default as IconFileStack } from './icons-js/file-stack.js'; -export { default as IconFileStar } from './icons-js/file-star.js'; -export { default as IconFileSymlink } from './icons-js/file-symlink.js'; -export { default as IconFileText } from './icons-js/file-text.js'; -export { default as IconFileTime } from './icons-js/file-time.js'; -export { default as IconFileTypography } from './icons-js/file-typography.js'; -export { default as IconFileUnknown } from './icons-js/file-unknown.js'; -export { default as IconFileUpload } from './icons-js/file-upload.js'; -export { default as IconFileVector } from './icons-js/file-vector.js'; -export { default as IconFileX } from './icons-js/file-x.js'; -export { default as IconFileZip } from './icons-js/file-zip.js'; -export { default as IconFile } from './icons-js/file.js'; -export { default as IconFilesOff } from './icons-js/files-off.js'; -export { default as IconFiles } from './icons-js/files.js'; -export { default as IconFilterOff } from './icons-js/filter-off.js'; -export { default as IconFilter } from './icons-js/filter.js'; -export { default as IconFingerprintOff } from './icons-js/fingerprint-off.js'; -export { default as IconFingerprint } from './icons-js/fingerprint.js'; -export { default as IconFireHydrantOff } from './icons-js/fire-hydrant-off.js'; -export { default as IconFireHydrant } from './icons-js/fire-hydrant.js'; -export { default as IconFiretruck } from './icons-js/firetruck.js'; -export { default as IconFirstAidKitOff } from './icons-js/first-aid-kit-off.js'; -export { default as IconFirstAidKit } from './icons-js/first-aid-kit.js'; -export { default as IconFishBone } from './icons-js/fish-bone.js'; -export { default as IconFishChristianity } from './icons-js/fish-christianity.js'; -export { default as IconFishHookOff } from './icons-js/fish-hook-off.js'; -export { default as IconFishHook } from './icons-js/fish-hook.js'; -export { default as IconFishOff } from './icons-js/fish-off.js'; -export { default as IconFish } from './icons-js/fish.js'; -export { default as IconFlag2Off } from './icons-js/flag-2-off.js'; -export { default as IconFlag2 } from './icons-js/flag-2.js'; -export { default as IconFlag3 } from './icons-js/flag-3.js'; -export { default as IconFlagOff } from './icons-js/flag-off.js'; -export { default as IconFlag } from './icons-js/flag.js'; -export { default as IconFlameOff } from './icons-js/flame-off.js'; -export { default as IconFlame } from './icons-js/flame.js'; -export { default as IconFlare } from './icons-js/flare.js'; -export { default as IconFlask2Off } from './icons-js/flask-2-off.js'; -export { default as IconFlask2 } from './icons-js/flask-2.js'; -export { default as IconFlaskOff } from './icons-js/flask-off.js'; -export { default as IconFlask } from './icons-js/flask.js'; -export { default as IconFlipFlops } from './icons-js/flip-flops.js'; -export { default as IconFlipHorizontal } from './icons-js/flip-horizontal.js'; -export { default as IconFlipVertical } from './icons-js/flip-vertical.js'; -export { default as IconFloatCenter } from './icons-js/float-center.js'; -export { default as IconFloatLeft } from './icons-js/float-left.js'; -export { default as IconFloatNone } from './icons-js/float-none.js'; -export { default as IconFloatRight } from './icons-js/float-right.js'; -export { default as IconFlowerOff } from './icons-js/flower-off.js'; -export { default as IconFlower } from './icons-js/flower.js'; -export { default as IconFocus2 } from './icons-js/focus-2.js'; -export { default as IconFocusCentered } from './icons-js/focus-centered.js'; -export { default as IconFocus } from './icons-js/focus.js'; -export { default as IconFoldDown } from './icons-js/fold-down.js'; -export { default as IconFoldUp } from './icons-js/fold-up.js'; -export { default as IconFold } from './icons-js/fold.js'; -export { default as IconFolderMinus } from './icons-js/folder-minus.js'; -export { default as IconFolderOff } from './icons-js/folder-off.js'; -export { default as IconFolderPlus } from './icons-js/folder-plus.js'; -export { default as IconFolderX } from './icons-js/folder-x.js'; -export { default as IconFolder } from './icons-js/folder.js'; -export { default as IconFoldersOff } from './icons-js/folders-off.js'; -export { default as IconFolders } from './icons-js/folders.js'; -export { default as IconForbid2 } from './icons-js/forbid-2.js'; -export { default as IconForbid } from './icons-js/forbid.js'; -export { default as IconForklift } from './icons-js/forklift.js'; -export { default as IconForms } from './icons-js/forms.js'; -export { default as IconFountainOff } from './icons-js/fountain-off.js'; -export { default as IconFountain } from './icons-js/fountain.js'; -export { default as IconFrameOff } from './icons-js/frame-off.js'; -export { default as IconFrame } from './icons-js/frame.js'; -export { default as IconFreeRights } from './icons-js/free-rights.js'; -export { default as IconFridgeOff } from './icons-js/fridge-off.js'; -export { default as IconFridge } from './icons-js/fridge.js'; -export { default as IconFriendsOff } from './icons-js/friends-off.js'; -export { default as IconFriends } from './icons-js/friends.js'; -export { default as IconFunctionOff } from './icons-js/function-off.js'; -export { default as IconFunction } from './icons-js/function.js'; -export { default as IconGardenCartOff } from './icons-js/garden-cart-off.js'; -export { default as IconGardenCart } from './icons-js/garden-cart.js'; -export { default as IconGasStationOff } from './icons-js/gas-station-off.js'; -export { default as IconGasStation } from './icons-js/gas-station.js'; -export { default as IconGaugeOff } from './icons-js/gauge-off.js'; -export { default as IconGauge } from './icons-js/gauge.js'; -export { default as IconGavel } from './icons-js/gavel.js'; -export { default as IconGenderAgender } from './icons-js/gender-agender.js'; -export { default as IconGenderAndrogyne } from './icons-js/gender-androgyne.js'; -export { default as IconGenderBigender } from './icons-js/gender-bigender.js'; -export { default as IconGenderDemiboy } from './icons-js/gender-demiboy.js'; -export { default as IconGenderDemigirl } from './icons-js/gender-demigirl.js'; -export { default as IconGenderEpicene } from './icons-js/gender-epicene.js'; -export { default as IconGenderFemale } from './icons-js/gender-female.js'; -export { default as IconGenderFemme } from './icons-js/gender-femme.js'; -export { default as IconGenderGenderfluid } from './icons-js/gender-genderfluid.js'; -export { default as IconGenderGenderless } from './icons-js/gender-genderless.js'; -export { default as IconGenderGenderqueer } from './icons-js/gender-genderqueer.js'; -export { default as IconGenderHermaphrodite } from './icons-js/gender-hermaphrodite.js'; -export { default as IconGenderIntergender } from './icons-js/gender-intergender.js'; -export { default as IconGenderMale } from './icons-js/gender-male.js'; -export { default as IconGenderNeutrois } from './icons-js/gender-neutrois.js'; -export { default as IconGenderThird } from './icons-js/gender-third.js'; -export { default as IconGenderTransgender } from './icons-js/gender-transgender.js'; -export { default as IconGenderTrasvesti } from './icons-js/gender-trasvesti.js'; -export { default as IconGeometry } from './icons-js/geometry.js'; -export { default as IconGhost2 } from './icons-js/ghost-2.js'; -export { default as IconGhostOff } from './icons-js/ghost-off.js'; -export { default as IconGhost } from './icons-js/ghost.js'; -export { default as IconGif } from './icons-js/gif.js'; -export { default as IconGiftCard } from './icons-js/gift-card.js'; -export { default as IconGiftOff } from './icons-js/gift-off.js'; -export { default as IconGift } from './icons-js/gift.js'; -export { default as IconGitBranchDeleted } from './icons-js/git-branch-deleted.js'; -export { default as IconGitBranch } from './icons-js/git-branch.js'; -export { default as IconGitCherryPick } from './icons-js/git-cherry-pick.js'; -export { default as IconGitCommit } from './icons-js/git-commit.js'; -export { default as IconGitCompare } from './icons-js/git-compare.js'; -export { default as IconGitFork } from './icons-js/git-fork.js'; -export { default as IconGitMerge } from './icons-js/git-merge.js'; -export { default as IconGitPullRequestClosed } from './icons-js/git-pull-request-closed.js'; -export { default as IconGitPullRequestDraft } from './icons-js/git-pull-request-draft.js'; -export { default as IconGitPullRequest } from './icons-js/git-pull-request.js'; -export { default as IconGizmo } from './icons-js/gizmo.js'; -export { default as IconGlassFull } from './icons-js/glass-full.js'; -export { default as IconGlassOff } from './icons-js/glass-off.js'; -export { default as IconGlass } from './icons-js/glass.js'; -export { default as IconGlobeOff } from './icons-js/globe-off.js'; -export { default as IconGlobe } from './icons-js/globe.js'; -export { default as IconGoGame } from './icons-js/go-game.js'; -export { default as IconGolfOff } from './icons-js/golf-off.js'; -export { default as IconGolf } from './icons-js/golf.js'; -export { default as IconGps } from './icons-js/gps.js'; -export { default as IconGradienter } from './icons-js/gradienter.js'; -export { default as IconGrain } from './icons-js/grain.js'; -export { default as IconGraphOff } from './icons-js/graph-off.js'; -export { default as IconGraph } from './icons-js/graph.js'; -export { default as IconGrave2 } from './icons-js/grave-2.js'; -export { default as IconGrave } from './icons-js/grave.js'; -export { default as IconGridDots } from './icons-js/grid-dots.js'; -export { default as IconGridPattern } from './icons-js/grid-pattern.js'; -export { default as IconGrillFork } from './icons-js/grill-fork.js'; -export { default as IconGrillOff } from './icons-js/grill-off.js'; -export { default as IconGrillSpatula } from './icons-js/grill-spatula.js'; -export { default as IconGrill } from './icons-js/grill.js'; -export { default as IconGripHorizontal } from './icons-js/grip-horizontal.js'; -export { default as IconGripVertical } from './icons-js/grip-vertical.js'; -export { default as IconGrowth } from './icons-js/growth.js'; -export { default as IconGuitarPick } from './icons-js/guitar-pick.js'; -export { default as IconH1 } from './icons-js/h-1.js'; -export { default as IconH2 } from './icons-js/h-2.js'; -export { default as IconH3 } from './icons-js/h-3.js'; -export { default as IconH4 } from './icons-js/h-4.js'; -export { default as IconH5 } from './icons-js/h-5.js'; -export { default as IconH6 } from './icons-js/h-6.js'; -export { default as IconHammerOff } from './icons-js/hammer-off.js'; -export { default as IconHammer } from './icons-js/hammer.js'; -export { default as IconHandClick } from './icons-js/hand-click.js'; -export { default as IconHandFingerOff } from './icons-js/hand-finger-off.js'; -export { default as IconHandFinger } from './icons-js/hand-finger.js'; -export { default as IconHandGrab } from './icons-js/hand-grab.js'; -export { default as IconHandLittleFinger } from './icons-js/hand-little-finger.js'; -export { default as IconHandMiddleFinger } from './icons-js/hand-middle-finger.js'; -export { default as IconHandMove } from './icons-js/hand-move.js'; -export { default as IconHandOff } from './icons-js/hand-off.js'; -export { default as IconHandRingFinger } from './icons-js/hand-ring-finger.js'; -export { default as IconHandRock } from './icons-js/hand-rock.js'; -export { default as IconHandSanitizer } from './icons-js/hand-sanitizer.js'; -export { default as IconHandStop } from './icons-js/hand-stop.js'; -export { default as IconHandThreeFingers } from './icons-js/hand-three-fingers.js'; -export { default as IconHandTwoFingers } from './icons-js/hand-two-fingers.js'; -export { default as IconHanger2 } from './icons-js/hanger-2.js'; -export { default as IconHangerOff } from './icons-js/hanger-off.js'; -export { default as IconHanger } from './icons-js/hanger.js'; -export { default as IconHash } from './icons-js/hash.js'; -export { default as IconHaze } from './icons-js/haze.js'; -export { default as IconHeadingOff } from './icons-js/heading-off.js'; -export { default as IconHeading } from './icons-js/heading.js'; -export { default as IconHeadphonesOff } from './icons-js/headphones-off.js'; -export { default as IconHeadphones } from './icons-js/headphones.js'; -export { default as IconHeadsetOff } from './icons-js/headset-off.js'; -export { default as IconHeadset } from './icons-js/headset.js'; -export { default as IconHealthRecognition } from './icons-js/health-recognition.js'; -export { default as IconHeartBroken } from './icons-js/heart-broken.js'; -export { default as IconHeartHandshake } from './icons-js/heart-handshake.js'; -export { default as IconHeartMinus } from './icons-js/heart-minus.js'; -export { default as IconHeartOff } from './icons-js/heart-off.js'; -export { default as IconHeartPlus } from './icons-js/heart-plus.js'; -export { default as IconHeartRateMonitor } from './icons-js/heart-rate-monitor.js'; -export { default as IconHeart } from './icons-js/heart.js'; -export { default as IconHeartbeat } from './icons-js/heartbeat.js'; -export { default as IconHeartsOff } from './icons-js/hearts-off.js'; -export { default as IconHearts } from './icons-js/hearts.js'; -export { default as IconHelicopterLanding } from './icons-js/helicopter-landing.js'; -export { default as IconHelicopter } from './icons-js/helicopter.js'; -export { default as IconHelmetOff } from './icons-js/helmet-off.js'; -export { default as IconHelmet } from './icons-js/helmet.js'; -export { default as IconHelpOff } from './icons-js/help-off.js'; -export { default as IconHelp } from './icons-js/help.js'; -export { default as IconHexagon3d } from './icons-js/hexagon-3d.js'; -export { default as IconHexagonLetterA } from './icons-js/hexagon-letter-a.js'; -export { default as IconHexagonLetterB } from './icons-js/hexagon-letter-b.js'; -export { default as IconHexagonLetterC } from './icons-js/hexagon-letter-c.js'; -export { default as IconHexagonLetterD } from './icons-js/hexagon-letter-d.js'; -export { default as IconHexagonLetterE } from './icons-js/hexagon-letter-e.js'; -export { default as IconHexagonLetterF } from './icons-js/hexagon-letter-f.js'; -export { default as IconHexagonLetterG } from './icons-js/hexagon-letter-g.js'; -export { default as IconHexagonLetterH } from './icons-js/hexagon-letter-h.js'; -export { default as IconHexagonLetterI } from './icons-js/hexagon-letter-i.js'; -export { default as IconHexagonLetterJ } from './icons-js/hexagon-letter-j.js'; -export { default as IconHexagonLetterK } from './icons-js/hexagon-letter-k.js'; -export { default as IconHexagonLetterL } from './icons-js/hexagon-letter-l.js'; -export { default as IconHexagonLetterM } from './icons-js/hexagon-letter-m.js'; -export { default as IconHexagonLetterN } from './icons-js/hexagon-letter-n.js'; -export { default as IconHexagonLetterO } from './icons-js/hexagon-letter-o.js'; -export { default as IconHexagonLetterP } from './icons-js/hexagon-letter-p.js'; -export { default as IconHexagonLetterQ } from './icons-js/hexagon-letter-q.js'; -export { default as IconHexagonLetterR } from './icons-js/hexagon-letter-r.js'; -export { default as IconHexagonLetterS } from './icons-js/hexagon-letter-s.js'; -export { default as IconHexagonLetterT } from './icons-js/hexagon-letter-t.js'; -export { default as IconHexagonLetterU } from './icons-js/hexagon-letter-u.js'; -export { default as IconHexagonLetterV } from './icons-js/hexagon-letter-v.js'; -export { default as IconHexagonLetterW } from './icons-js/hexagon-letter-w.js'; -export { default as IconHexagonLetterX } from './icons-js/hexagon-letter-x.js'; -export { default as IconHexagonLetterY } from './icons-js/hexagon-letter-y.js'; -export { default as IconHexagonLetterZ } from './icons-js/hexagon-letter-z.js'; -export { default as IconHexagonNumber0 } from './icons-js/hexagon-number-0.js'; -export { default as IconHexagonNumber1 } from './icons-js/hexagon-number-1.js'; -export { default as IconHexagonNumber2 } from './icons-js/hexagon-number-2.js'; -export { default as IconHexagonNumber3 } from './icons-js/hexagon-number-3.js'; -export { default as IconHexagonNumber4 } from './icons-js/hexagon-number-4.js'; -export { default as IconHexagonNumber5 } from './icons-js/hexagon-number-5.js'; -export { default as IconHexagonNumber6 } from './icons-js/hexagon-number-6.js'; -export { default as IconHexagonNumber7 } from './icons-js/hexagon-number-7.js'; -export { default as IconHexagonNumber8 } from './icons-js/hexagon-number-8.js'; -export { default as IconHexagonNumber9 } from './icons-js/hexagon-number-9.js'; -export { default as IconHexagonOff } from './icons-js/hexagon-off.js'; -export { default as IconHexagon } from './icons-js/hexagon.js'; -export { default as IconHexagonsOff } from './icons-js/hexagons-off.js'; -export { default as IconHexagons } from './icons-js/hexagons.js'; -export { default as IconHierarchy2 } from './icons-js/hierarchy-2.js'; -export { default as IconHierarchy3 } from './icons-js/hierarchy-3.js'; -export { default as IconHierarchyOff } from './icons-js/hierarchy-off.js'; -export { default as IconHierarchy } from './icons-js/hierarchy.js'; -export { default as IconHighlightOff } from './icons-js/highlight-off.js'; -export { default as IconHighlight } from './icons-js/highlight.js'; -export { default as IconHistoryOff } from './icons-js/history-off.js'; -export { default as IconHistoryToggle } from './icons-js/history-toggle.js'; -export { default as IconHistory } from './icons-js/history.js'; -export { default as IconHome2 } from './icons-js/home-2.js'; -export { default as IconHomeBolt } from './icons-js/home-bolt.js'; -export { default as IconHomeCancel } from './icons-js/home-cancel.js'; -export { default as IconHomeCheck } from './icons-js/home-check.js'; -export { default as IconHomeCog } from './icons-js/home-cog.js'; -export { default as IconHomeDollar } from './icons-js/home-dollar.js'; -export { default as IconHomeDot } from './icons-js/home-dot.js'; -export { default as IconHomeDown } from './icons-js/home-down.js'; -export { default as IconHomeEco } from './icons-js/home-eco.js'; -export { default as IconHomeEdit } from './icons-js/home-edit.js'; -export { default as IconHomeExclamation } from './icons-js/home-exclamation.js'; -export { default as IconHomeHand } from './icons-js/home-hand.js'; -export { default as IconHomeHeart } from './icons-js/home-heart.js'; -export { default as IconHomeInfinity } from './icons-js/home-infinity.js'; -export { default as IconHomeLink } from './icons-js/home-link.js'; -export { default as IconHomeMinus } from './icons-js/home-minus.js'; -export { default as IconHomeMove } from './icons-js/home-move.js'; -export { default as IconHomeOff } from './icons-js/home-off.js'; -export { default as IconHomePlus } from './icons-js/home-plus.js'; -export { default as IconHomeQuestion } from './icons-js/home-question.js'; -export { default as IconHomeRibbon } from './icons-js/home-ribbon.js'; -export { default as IconHomeSearch } from './icons-js/home-search.js'; -export { default as IconHomeShare } from './icons-js/home-share.js'; -export { default as IconHomeShield } from './icons-js/home-shield.js'; -export { default as IconHomeSignal } from './icons-js/home-signal.js'; -export { default as IconHomeStar } from './icons-js/home-star.js'; -export { default as IconHomeStats } from './icons-js/home-stats.js'; -export { default as IconHomeUp } from './icons-js/home-up.js'; -export { default as IconHomeX } from './icons-js/home-x.js'; -export { default as IconHome } from './icons-js/home.js'; -export { default as IconHorseToy } from './icons-js/horse-toy.js'; -export { default as IconHotelService } from './icons-js/hotel-service.js'; -export { default as IconHourglassEmpty } from './icons-js/hourglass-empty.js'; -export { default as IconHourglassHigh } from './icons-js/hourglass-high.js'; -export { default as IconHourglassLow } from './icons-js/hourglass-low.js'; -export { default as IconHourglassOff } from './icons-js/hourglass-off.js'; -export { default as IconHourglass } from './icons-js/hourglass.js'; -export { default as IconIceCream2 } from './icons-js/ice-cream-2.js'; -export { default as IconIceCreamOff } from './icons-js/ice-cream-off.js'; -export { default as IconIceCream } from './icons-js/ice-cream.js'; -export { default as IconIceSkating } from './icons-js/ice-skating.js'; -export { default as IconIconsOff } from './icons-js/icons-off.js'; -export { default as IconIcons } from './icons-js/icons.js'; -export { default as IconIdBadge2 } from './icons-js/id-badge-2.js'; -export { default as IconIdBadgeOff } from './icons-js/id-badge-off.js'; -export { default as IconIdBadge } from './icons-js/id-badge.js'; -export { default as IconIdOff } from './icons-js/id-off.js'; -export { default as IconId } from './icons-js/id.js'; -export { default as IconInboxOff } from './icons-js/inbox-off.js'; -export { default as IconInbox } from './icons-js/inbox.js'; -export { default as IconIndentDecrease } from './icons-js/indent-decrease.js'; -export { default as IconIndentIncrease } from './icons-js/indent-increase.js'; -export { default as IconInfinityOff } from './icons-js/infinity-off.js'; -export { default as IconInfinity } from './icons-js/infinity.js'; -export { default as IconInfoCircle } from './icons-js/info-circle.js'; -export { default as IconInfoSquareRounded } from './icons-js/info-square-rounded.js'; -export { default as IconInfoSquare } from './icons-js/info-square.js'; -export { default as IconInnerShadowBottomLeft } from './icons-js/inner-shadow-bottom-left.js'; -export { default as IconInnerShadowBottomRight } from './icons-js/inner-shadow-bottom-right.js'; -export { default as IconInnerShadowBottom } from './icons-js/inner-shadow-bottom.js'; -export { default as IconInnerShadowLeft } from './icons-js/inner-shadow-left.js'; -export { default as IconInnerShadowRight } from './icons-js/inner-shadow-right.js'; -export { default as IconInnerShadowTopLeft } from './icons-js/inner-shadow-top-left.js'; -export { default as IconInnerShadowTopRight } from './icons-js/inner-shadow-top-right.js'; -export { default as IconInnerShadowTop } from './icons-js/inner-shadow-top.js'; -export { default as IconInputSearch } from './icons-js/input-search.js'; -export { default as IconIroning1 } from './icons-js/ironing-1.js'; -export { default as IconIroning2 } from './icons-js/ironing-2.js'; -export { default as IconIroning3 } from './icons-js/ironing-3.js'; -export { default as IconIroningOff } from './icons-js/ironing-off.js'; -export { default as IconIroningSteamOff } from './icons-js/ironing-steam-off.js'; -export { default as IconIroningSteam } from './icons-js/ironing-steam.js'; -export { default as IconItalic } from './icons-js/italic.js'; -export { default as IconJacket } from './icons-js/jacket.js'; -export { default as IconJetpack } from './icons-js/jetpack.js'; -export { default as IconJewishStar } from './icons-js/jewish-star.js'; -export { default as IconJpg } from './icons-js/jpg.js'; -export { default as IconJumpRope } from './icons-js/jump-rope.js'; -export { default as IconKarate } from './icons-js/karate.js'; -export { default as IconKayak } from './icons-js/kayak.js'; -export { default as IconKering } from './icons-js/kering.js'; -export { default as IconKeyOff } from './icons-js/key-off.js'; -export { default as IconKey } from './icons-js/key.js'; -export { default as IconKeyboardHide } from './icons-js/keyboard-hide.js'; -export { default as IconKeyboardOff } from './icons-js/keyboard-off.js'; -export { default as IconKeyboardShow } from './icons-js/keyboard-show.js'; -export { default as IconKeyboard } from './icons-js/keyboard.js'; -export { default as IconKeyframeAlignCenter } from './icons-js/keyframe-align-center.js'; -export { default as IconKeyframeAlignHorizontal } from './icons-js/keyframe-align-horizontal.js'; -export { default as IconKeyframeAlignVertical } from './icons-js/keyframe-align-vertical.js'; -export { default as IconKeyframe } from './icons-js/keyframe.js'; -export { default as IconKeyframes } from './icons-js/keyframes.js'; -export { default as IconLadderOff } from './icons-js/ladder-off.js'; -export { default as IconLadder } from './icons-js/ladder.js'; -export { default as IconLambda } from './icons-js/lambda.js'; -export { default as IconLamp2 } from './icons-js/lamp-2.js'; -export { default as IconLampOff } from './icons-js/lamp-off.js'; -export { default as IconLamp } from './icons-js/lamp.js'; -export { default as IconLanguageHiragana } from './icons-js/language-hiragana.js'; -export { default as IconLanguageKatakana } from './icons-js/language-katakana.js'; -export { default as IconLanguageOff } from './icons-js/language-off.js'; -export { default as IconLanguage } from './icons-js/language.js'; -export { default as IconLassoOff } from './icons-js/lasso-off.js'; -export { default as IconLassoPolygon } from './icons-js/lasso-polygon.js'; -export { default as IconLasso } from './icons-js/lasso.js'; -export { default as IconLayersDifference } from './icons-js/layers-difference.js'; -export { default as IconLayersIntersect2 } from './icons-js/layers-intersect-2.js'; -export { default as IconLayersIntersect } from './icons-js/layers-intersect.js'; -export { default as IconLayersLinked } from './icons-js/layers-linked.js'; -export { default as IconLayersOff } from './icons-js/layers-off.js'; -export { default as IconLayersSubtract } from './icons-js/layers-subtract.js'; -export { default as IconLayersUnion } from './icons-js/layers-union.js'; -export { default as IconLayout2 } from './icons-js/layout-2.js'; -export { default as IconLayoutAlignBottom } from './icons-js/layout-align-bottom.js'; -export { default as IconLayoutAlignCenter } from './icons-js/layout-align-center.js'; -export { default as IconLayoutAlignLeft } from './icons-js/layout-align-left.js'; -export { default as IconLayoutAlignMiddle } from './icons-js/layout-align-middle.js'; -export { default as IconLayoutAlignRight } from './icons-js/layout-align-right.js'; -export { default as IconLayoutAlignTop } from './icons-js/layout-align-top.js'; -export { default as IconLayoutBoardSplit } from './icons-js/layout-board-split.js'; -export { default as IconLayoutBoard } from './icons-js/layout-board.js'; -export { default as IconLayoutBottombarCollapse } from './icons-js/layout-bottombar-collapse.js'; -export { default as IconLayoutBottombarExpand } from './icons-js/layout-bottombar-expand.js'; -export { default as IconLayoutBottombar } from './icons-js/layout-bottombar.js'; -export { default as IconLayoutCards } from './icons-js/layout-cards.js'; -export { default as IconLayoutCollage } from './icons-js/layout-collage.js'; -export { default as IconLayoutColumns } from './icons-js/layout-columns.js'; -export { default as IconLayoutDashboard } from './icons-js/layout-dashboard.js'; -export { default as IconLayoutDistributeHorizontal } from './icons-js/layout-distribute-horizontal.js'; -export { default as IconLayoutDistributeVertical } from './icons-js/layout-distribute-vertical.js'; -export { default as IconLayoutGridAdd } from './icons-js/layout-grid-add.js'; -export { default as IconLayoutGrid } from './icons-js/layout-grid.js'; -export { default as IconLayoutKanban } from './icons-js/layout-kanban.js'; -export { default as IconLayoutList } from './icons-js/layout-list.js'; -export { default as IconLayoutNavbarCollapse } from './icons-js/layout-navbar-collapse.js'; -export { default as IconLayoutNavbarExpand } from './icons-js/layout-navbar-expand.js'; -export { default as IconLayoutNavbar } from './icons-js/layout-navbar.js'; -export { default as IconLayoutOff } from './icons-js/layout-off.js'; -export { default as IconLayoutRows } from './icons-js/layout-rows.js'; -export { default as IconLayoutSidebarLeftCollapse } from './icons-js/layout-sidebar-left-collapse.js'; -export { default as IconLayoutSidebarLeftExpand } from './icons-js/layout-sidebar-left-expand.js'; -export { default as IconLayoutSidebarRightCollapse } from './icons-js/layout-sidebar-right-collapse.js'; -export { default as IconLayoutSidebarRightExpand } from './icons-js/layout-sidebar-right-expand.js'; -export { default as IconLayoutSidebarRight } from './icons-js/layout-sidebar-right.js'; -export { default as IconLayoutSidebar } from './icons-js/layout-sidebar.js'; -export { default as IconLayout } from './icons-js/layout.js'; -export { default as IconLeafOff } from './icons-js/leaf-off.js'; -export { default as IconLeaf } from './icons-js/leaf.js'; -export { default as IconLegoOff } from './icons-js/lego-off.js'; -export { default as IconLego } from './icons-js/lego.js'; -export { default as IconLemon2 } from './icons-js/lemon-2.js'; -export { default as IconLemon } from './icons-js/lemon.js'; -export { default as IconLetterA } from './icons-js/letter-a.js'; -export { default as IconLetterB } from './icons-js/letter-b.js'; -export { default as IconLetterC } from './icons-js/letter-c.js'; -export { default as IconLetterCaseLower } from './icons-js/letter-case-lower.js'; -export { default as IconLetterCaseToggle } from './icons-js/letter-case-toggle.js'; -export { default as IconLetterCaseUpper } from './icons-js/letter-case-upper.js'; -export { default as IconLetterCase } from './icons-js/letter-case.js'; -export { default as IconLetterD } from './icons-js/letter-d.js'; -export { default as IconLetterE } from './icons-js/letter-e.js'; -export { default as IconLetterF } from './icons-js/letter-f.js'; -export { default as IconLetterG } from './icons-js/letter-g.js'; -export { default as IconLetterH } from './icons-js/letter-h.js'; -export { default as IconLetterI } from './icons-js/letter-i.js'; -export { default as IconLetterJ } from './icons-js/letter-j.js'; -export { default as IconLetterK } from './icons-js/letter-k.js'; -export { default as IconLetterL } from './icons-js/letter-l.js'; -export { default as IconLetterM } from './icons-js/letter-m.js'; -export { default as IconLetterN } from './icons-js/letter-n.js'; -export { default as IconLetterO } from './icons-js/letter-o.js'; -export { default as IconLetterP } from './icons-js/letter-p.js'; -export { default as IconLetterQ } from './icons-js/letter-q.js'; -export { default as IconLetterR } from './icons-js/letter-r.js'; -export { default as IconLetterS } from './icons-js/letter-s.js'; -export { default as IconLetterSpacing } from './icons-js/letter-spacing.js'; -export { default as IconLetterT } from './icons-js/letter-t.js'; -export { default as IconLetterU } from './icons-js/letter-u.js'; -export { default as IconLetterV } from './icons-js/letter-v.js'; -export { default as IconLetterW } from './icons-js/letter-w.js'; -export { default as IconLetterX } from './icons-js/letter-x.js'; -export { default as IconLetterY } from './icons-js/letter-y.js'; -export { default as IconLetterZ } from './icons-js/letter-z.js'; -export { default as IconLicenseOff } from './icons-js/license-off.js'; -export { default as IconLicense } from './icons-js/license.js'; -export { default as IconLifebuoyOff } from './icons-js/lifebuoy-off.js'; -export { default as IconLifebuoy } from './icons-js/lifebuoy.js'; -export { default as IconLineDashed } from './icons-js/line-dashed.js'; -export { default as IconLineDotted } from './icons-js/line-dotted.js'; -export { default as IconLineHeight } from './icons-js/line-height.js'; -export { default as IconLine } from './icons-js/line.js'; -export { default as IconLinkOff } from './icons-js/link-off.js'; -export { default as IconLink } from './icons-js/link.js'; -export { default as IconListCheck } from './icons-js/list-check.js'; -export { default as IconListDetails } from './icons-js/list-details.js'; -export { default as IconListNumbers } from './icons-js/list-numbers.js'; -export { default as IconListSearch } from './icons-js/list-search.js'; -export { default as IconList } from './icons-js/list.js'; -export { default as IconLivePhotoOff } from './icons-js/live-photo-off.js'; -export { default as IconLivePhoto } from './icons-js/live-photo.js'; -export { default as IconLiveView } from './icons-js/live-view.js'; -export { default as IconLoader2 } from './icons-js/loader-2.js'; -export { default as IconLoader3 } from './icons-js/loader-3.js'; -export { default as IconLoaderQuarter } from './icons-js/loader-quarter.js'; -export { default as IconLoader } from './icons-js/loader.js'; -export { default as IconLocationBroken } from './icons-js/location-broken.js'; -export { default as IconLocationOff } from './icons-js/location-off.js'; -export { default as IconLocation } from './icons-js/location.js'; -export { default as IconLockAccessOff } from './icons-js/lock-access-off.js'; -export { default as IconLockAccess } from './icons-js/lock-access.js'; -export { default as IconLockOff } from './icons-js/lock-off.js'; -export { default as IconLockOpenOff } from './icons-js/lock-open-off.js'; -export { default as IconLockOpen } from './icons-js/lock-open.js'; -export { default as IconLockSquareRounded } from './icons-js/lock-square-rounded.js'; -export { default as IconLockSquare } from './icons-js/lock-square.js'; -export { default as IconLock } from './icons-js/lock.js'; -export { default as IconLogicAnd } from './icons-js/logic-and.js'; -export { default as IconLogicBuffer } from './icons-js/logic-buffer.js'; -export { default as IconLogicNand } from './icons-js/logic-nand.js'; -export { default as IconLogicNor } from './icons-js/logic-nor.js'; -export { default as IconLogicNot } from './icons-js/logic-not.js'; -export { default as IconLogicOr } from './icons-js/logic-or.js'; -export { default as IconLogicXnor } from './icons-js/logic-xnor.js'; -export { default as IconLogicXor } from './icons-js/logic-xor.js'; -export { default as IconLogin } from './icons-js/login.js'; -export { default as IconLogout } from './icons-js/logout.js'; -export { default as IconLollipopOff } from './icons-js/lollipop-off.js'; -export { default as IconLollipop } from './icons-js/lollipop.js'; -export { default as IconLuggageOff } from './icons-js/luggage-off.js'; -export { default as IconLuggage } from './icons-js/luggage.js'; -export { default as IconLungsOff } from './icons-js/lungs-off.js'; -export { default as IconLungs } from './icons-js/lungs.js'; -export { default as IconMacroOff } from './icons-js/macro-off.js'; -export { default as IconMacro } from './icons-js/macro.js'; -export { default as IconMagnetOff } from './icons-js/magnet-off.js'; -export { default as IconMagnet } from './icons-js/magnet.js'; -export { default as IconMailFast } from './icons-js/mail-fast.js'; -export { default as IconMailForward } from './icons-js/mail-forward.js'; -export { default as IconMailOff } from './icons-js/mail-off.js'; -export { default as IconMailOpened } from './icons-js/mail-opened.js'; -export { default as IconMail } from './icons-js/mail.js'; -export { default as IconMailboxOff } from './icons-js/mailbox-off.js'; -export { default as IconMailbox } from './icons-js/mailbox.js'; -export { default as IconMan } from './icons-js/man.js'; -export { default as IconManualGearbox } from './icons-js/manual-gearbox.js'; -export { default as IconMap2 } from './icons-js/map-2.js'; -export { default as IconMapOff } from './icons-js/map-off.js'; -export { default as IconMapPinOff } from './icons-js/map-pin-off.js'; -export { default as IconMapPin } from './icons-js/map-pin.js'; -export { default as IconMapPins } from './icons-js/map-pins.js'; -export { default as IconMapSearch } from './icons-js/map-search.js'; -export { default as IconMap } from './icons-js/map.js'; -export { default as IconMarkdownOff } from './icons-js/markdown-off.js'; -export { default as IconMarkdown } from './icons-js/markdown.js'; -export { default as IconMarquee2 } from './icons-js/marquee-2.js'; -export { default as IconMarqueeOff } from './icons-js/marquee-off.js'; -export { default as IconMarquee } from './icons-js/marquee.js'; -export { default as IconMars } from './icons-js/mars.js'; -export { default as IconMaskOff } from './icons-js/mask-off.js'; -export { default as IconMask } from './icons-js/mask.js'; -export { default as IconMasksTheaterOff } from './icons-js/masks-theater-off.js'; -export { default as IconMasksTheater } from './icons-js/masks-theater.js'; -export { default as IconMassage } from './icons-js/massage.js'; -export { default as IconMatchstick } from './icons-js/matchstick.js'; -export { default as IconMath1Divide2 } from './icons-js/math-1-divide-2.js'; -export { default as IconMath1Divide3 } from './icons-js/math-1-divide-3.js'; -export { default as IconMathAvg } from './icons-js/math-avg.js'; -export { default as IconMathEqualGreater } from './icons-js/math-equal-greater.js'; -export { default as IconMathEqualLower } from './icons-js/math-equal-lower.js'; -export { default as IconMathFunctionOff } from './icons-js/math-function-off.js'; -export { default as IconMathFunctionY } from './icons-js/math-function-y.js'; -export { default as IconMathFunction } from './icons-js/math-function.js'; -export { default as IconMathGreater } from './icons-js/math-greater.js'; -export { default as IconMathIntegralX } from './icons-js/math-integral-x.js'; -export { default as IconMathIntegral } from './icons-js/math-integral.js'; -export { default as IconMathIntegrals } from './icons-js/math-integrals.js'; -export { default as IconMathLower } from './icons-js/math-lower.js'; -export { default as IconMathMax } from './icons-js/math-max.js'; -export { default as IconMathMin } from './icons-js/math-min.js'; -export { default as IconMathNot } from './icons-js/math-not.js'; -export { default as IconMathOff } from './icons-js/math-off.js'; -export { default as IconMathPiDivide2 } from './icons-js/math-pi-divide-2.js'; -export { default as IconMathPi } from './icons-js/math-pi.js'; -export { default as IconMathSymbols } from './icons-js/math-symbols.js'; -export { default as IconMathXDivide2 } from './icons-js/math-x-divide-2.js'; -export { default as IconMathXDivideY2 } from './icons-js/math-x-divide-y-2.js'; -export { default as IconMathXDivideY } from './icons-js/math-x-divide-y.js'; -export { default as IconMathXMinusX } from './icons-js/math-x-minus-x.js'; -export { default as IconMathXMinusY } from './icons-js/math-x-minus-y.js'; -export { default as IconMathXPlusX } from './icons-js/math-x-plus-x.js'; -export { default as IconMathXPlusY } from './icons-js/math-x-plus-y.js'; -export { default as IconMathXy } from './icons-js/math-xy.js'; -export { default as IconMathYMinusY } from './icons-js/math-y-minus-y.js'; -export { default as IconMathYPlusY } from './icons-js/math-y-plus-y.js'; -export { default as IconMath } from './icons-js/math.js'; -export { default as IconMaximizeOff } from './icons-js/maximize-off.js'; -export { default as IconMaximize } from './icons-js/maximize.js'; -export { default as IconMeatOff } from './icons-js/meat-off.js'; -export { default as IconMeat } from './icons-js/meat.js'; -export { default as IconMedal2 } from './icons-js/medal-2.js'; -export { default as IconMedal } from './icons-js/medal.js'; -export { default as IconMedicalCrossOff } from './icons-js/medical-cross-off.js'; -export { default as IconMedicalCross } from './icons-js/medical-cross.js'; -export { default as IconMedicineSyrup } from './icons-js/medicine-syrup.js'; -export { default as IconMeeple } from './icons-js/meeple.js'; -export { default as IconMenorah } from './icons-js/menorah.js'; -export { default as IconMenu2 } from './icons-js/menu-2.js'; -export { default as IconMenuOrder } from './icons-js/menu-order.js'; -export { default as IconMenu } from './icons-js/menu.js'; -export { default as IconMessage2Code } from './icons-js/message-2-code.js'; -export { default as IconMessage2Off } from './icons-js/message-2-off.js'; -export { default as IconMessage2Share } from './icons-js/message-2-share.js'; -export { default as IconMessage2 } from './icons-js/message-2.js'; -export { default as IconMessageChatbot } from './icons-js/message-chatbot.js'; -export { default as IconMessageCircle2 } from './icons-js/message-circle-2.js'; -export { default as IconMessageCircleOff } from './icons-js/message-circle-off.js'; -export { default as IconMessageCircle } from './icons-js/message-circle.js'; -export { default as IconMessageCode } from './icons-js/message-code.js'; -export { default as IconMessageDots } from './icons-js/message-dots.js'; -export { default as IconMessageForward } from './icons-js/message-forward.js'; -export { default as IconMessageLanguage } from './icons-js/message-language.js'; -export { default as IconMessageOff } from './icons-js/message-off.js'; -export { default as IconMessagePlus } from './icons-js/message-plus.js'; -export { default as IconMessageReport } from './icons-js/message-report.js'; -export { default as IconMessageShare } from './icons-js/message-share.js'; -export { default as IconMessage } from './icons-js/message.js'; -export { default as IconMessagesOff } from './icons-js/messages-off.js'; -export { default as IconMessages } from './icons-js/messages.js'; -export { default as IconMeteorOff } from './icons-js/meteor-off.js'; -export { default as IconMeteor } from './icons-js/meteor.js'; -export { default as IconMickey } from './icons-js/mickey.js'; -export { default as IconMicrophone2Off } from './icons-js/microphone-2-off.js'; -export { default as IconMicrophone2 } from './icons-js/microphone-2.js'; -export { default as IconMicrophoneOff } from './icons-js/microphone-off.js'; -export { default as IconMicrophone } from './icons-js/microphone.js'; -export { default as IconMicroscopeOff } from './icons-js/microscope-off.js'; -export { default as IconMicroscope } from './icons-js/microscope.js'; -export { default as IconMicrowaveOff } from './icons-js/microwave-off.js'; -export { default as IconMicrowave } from './icons-js/microwave.js'; -export { default as IconMilitaryAward } from './icons-js/military-award.js'; -export { default as IconMilitaryRank } from './icons-js/military-rank.js'; -export { default as IconMilkOff } from './icons-js/milk-off.js'; -export { default as IconMilk } from './icons-js/milk.js'; -export { default as IconMilkshake } from './icons-js/milkshake.js'; -export { default as IconMinimize } from './icons-js/minimize.js'; -export { default as IconMinusVertical } from './icons-js/minus-vertical.js'; -export { default as IconMinus } from './icons-js/minus.js'; -export { default as IconMistOff } from './icons-js/mist-off.js'; -export { default as IconMist } from './icons-js/mist.js'; -export { default as IconMoneybag } from './icons-js/moneybag.js'; -export { default as IconMoodAngry } from './icons-js/mood-angry.js'; -export { default as IconMoodAnnoyed2 } from './icons-js/mood-annoyed-2.js'; -export { default as IconMoodAnnoyed } from './icons-js/mood-annoyed.js'; -export { default as IconMoodBoy } from './icons-js/mood-boy.js'; -export { default as IconMoodConfuzed } from './icons-js/mood-confuzed.js'; -export { default as IconMoodCrazyHappy } from './icons-js/mood-crazy-happy.js'; -export { default as IconMoodCry } from './icons-js/mood-cry.js'; -export { default as IconMoodEmpty } from './icons-js/mood-empty.js'; -export { default as IconMoodHappy } from './icons-js/mood-happy.js'; -export { default as IconMoodKid } from './icons-js/mood-kid.js'; -export { default as IconMoodLookLeft } from './icons-js/mood-look-left.js'; -export { default as IconMoodLookRight } from './icons-js/mood-look-right.js'; -export { default as IconMoodNerd } from './icons-js/mood-nerd.js'; -export { default as IconMoodNervous } from './icons-js/mood-nervous.js'; -export { default as IconMoodNeutral } from './icons-js/mood-neutral.js'; -export { default as IconMoodOff } from './icons-js/mood-off.js'; -export { default as IconMoodSad2 } from './icons-js/mood-sad-2.js'; -export { default as IconMoodSadDizzy } from './icons-js/mood-sad-dizzy.js'; -export { default as IconMoodSadSquint } from './icons-js/mood-sad-squint.js'; -export { default as IconMoodSad } from './icons-js/mood-sad.js'; -export { default as IconMoodSick } from './icons-js/mood-sick.js'; -export { default as IconMoodSilence } from './icons-js/mood-silence.js'; -export { default as IconMoodSing } from './icons-js/mood-sing.js'; -export { default as IconMoodSmileBeam } from './icons-js/mood-smile-beam.js'; -export { default as IconMoodSmileDizzy } from './icons-js/mood-smile-dizzy.js'; -export { default as IconMoodSmile } from './icons-js/mood-smile.js'; -export { default as IconMoodSuprised } from './icons-js/mood-suprised.js'; -export { default as IconMoodTongueWink2 } from './icons-js/mood-tongue-wink-2.js'; -export { default as IconMoodTongueWink } from './icons-js/mood-tongue-wink.js'; -export { default as IconMoodTongue } from './icons-js/mood-tongue.js'; -export { default as IconMoodUnamused } from './icons-js/mood-unamused.js'; -export { default as IconMoodWink2 } from './icons-js/mood-wink-2.js'; -export { default as IconMoodWink } from './icons-js/mood-wink.js'; -export { default as IconMoodWrrr } from './icons-js/mood-wrrr.js'; -export { default as IconMoodXd } from './icons-js/mood-xd.js'; -export { default as IconMoon2 } from './icons-js/moon-2.js'; -export { default as IconMoonOff } from './icons-js/moon-off.js'; -export { default as IconMoonStars } from './icons-js/moon-stars.js'; -export { default as IconMoon } from './icons-js/moon.js'; -export { default as IconMoped } from './icons-js/moped.js'; -export { default as IconMotorbike } from './icons-js/motorbike.js'; -export { default as IconMountainOff } from './icons-js/mountain-off.js'; -export { default as IconMountain } from './icons-js/mountain.js'; -export { default as IconMouse2 } from './icons-js/mouse-2.js'; -export { default as IconMouseOff } from './icons-js/mouse-off.js'; -export { default as IconMouse } from './icons-js/mouse.js'; -export { default as IconMoustache } from './icons-js/moustache.js'; -export { default as IconMovieOff } from './icons-js/movie-off.js'; -export { default as IconMovie } from './icons-js/movie.js'; -export { default as IconMugOff } from './icons-js/mug-off.js'; -export { default as IconMug } from './icons-js/mug.js'; -export { default as IconMultiplier05x } from './icons-js/multiplier-0-5x.js'; -export { default as IconMultiplier15x } from './icons-js/multiplier-1-5x.js'; -export { default as IconMultiplier1x } from './icons-js/multiplier-1x.js'; -export { default as IconMultiplier2x } from './icons-js/multiplier-2x.js'; -export { default as IconMushroomOff } from './icons-js/mushroom-off.js'; -export { default as IconMushroom } from './icons-js/mushroom.js'; -export { default as IconMusicOff } from './icons-js/music-off.js'; -export { default as IconMusic } from './icons-js/music.js'; -export { default as IconNavigationOff } from './icons-js/navigation-off.js'; -export { default as IconNavigation } from './icons-js/navigation.js'; -export { default as IconNeedleThread } from './icons-js/needle-thread.js'; -export { default as IconNeedle } from './icons-js/needle.js'; -export { default as IconNetworkOff } from './icons-js/network-off.js'; -export { default as IconNetwork } from './icons-js/network.js'; -export { default as IconNewSection } from './icons-js/new-section.js'; -export { default as IconNewsOff } from './icons-js/news-off.js'; -export { default as IconNews } from './icons-js/news.js'; -export { default as IconNfcOff } from './icons-js/nfc-off.js'; -export { default as IconNfc } from './icons-js/nfc.js'; -export { default as IconNoCopyright } from './icons-js/no-copyright.js'; -export { default as IconNoCreativeCommons } from './icons-js/no-creative-commons.js'; -export { default as IconNoDerivatives } from './icons-js/no-derivatives.js'; -export { default as IconNorthStar } from './icons-js/north-star.js'; -export { default as IconNoteOff } from './icons-js/note-off.js'; -export { default as IconNote } from './icons-js/note.js'; -export { default as IconNotebookOff } from './icons-js/notebook-off.js'; -export { default as IconNotebook } from './icons-js/notebook.js'; -export { default as IconNotesOff } from './icons-js/notes-off.js'; -export { default as IconNotes } from './icons-js/notes.js'; -export { default as IconNotificationOff } from './icons-js/notification-off.js'; -export { default as IconNotification } from './icons-js/notification.js'; -export { default as IconNumber0 } from './icons-js/number-0.js'; -export { default as IconNumber1 } from './icons-js/number-1.js'; -export { default as IconNumber2 } from './icons-js/number-2.js'; -export { default as IconNumber3 } from './icons-js/number-3.js'; -export { default as IconNumber4 } from './icons-js/number-4.js'; -export { default as IconNumber5 } from './icons-js/number-5.js'; -export { default as IconNumber6 } from './icons-js/number-6.js'; -export { default as IconNumber7 } from './icons-js/number-7.js'; -export { default as IconNumber8 } from './icons-js/number-8.js'; -export { default as IconNumber9 } from './icons-js/number-9.js'; -export { default as IconNumber } from './icons-js/number.js'; -export { default as IconNumbers } from './icons-js/numbers.js'; -export { default as IconNurse } from './icons-js/nurse.js'; -export { default as IconOctagonOff } from './icons-js/octagon-off.js'; -export { default as IconOctagon } from './icons-js/octagon.js'; -export { default as IconOld } from './icons-js/old.js'; -export { default as IconOlympicsOff } from './icons-js/olympics-off.js'; -export { default as IconOlympics } from './icons-js/olympics.js'; -export { default as IconOm } from './icons-js/om.js'; -export { default as IconOmega } from './icons-js/omega.js'; -export { default as IconOutbound } from './icons-js/outbound.js'; -export { default as IconOutlet } from './icons-js/outlet.js'; -export { default as IconOvalVertical } from './icons-js/oval-vertical.js'; -export { default as IconOval } from './icons-js/oval.js'; -export { default as IconOverline } from './icons-js/overline.js'; -export { default as IconPackageOff } from './icons-js/package-off.js'; -export { default as IconPackage } from './icons-js/package.js'; -export { default as IconPackages } from './icons-js/packages.js'; -export { default as IconPackgeExport } from './icons-js/packge-export.js'; -export { default as IconPackgeImport } from './icons-js/packge-import.js'; -export { default as IconPacman } from './icons-js/pacman.js'; -export { default as IconPageBreak } from './icons-js/page-break.js'; -export { default as IconPaintOff } from './icons-js/paint-off.js'; -export { default as IconPaint } from './icons-js/paint.js'; -export { default as IconPaletteOff } from './icons-js/palette-off.js'; -export { default as IconPalette } from './icons-js/palette.js'; -export { default as IconPanoramaHorizontalOff } from './icons-js/panorama-horizontal-off.js'; -export { default as IconPanoramaHorizontal } from './icons-js/panorama-horizontal.js'; -export { default as IconPanoramaVerticalOff } from './icons-js/panorama-vertical-off.js'; -export { default as IconPanoramaVertical } from './icons-js/panorama-vertical.js'; -export { default as IconPaperBagOff } from './icons-js/paper-bag-off.js'; -export { default as IconPaperBag } from './icons-js/paper-bag.js'; -export { default as IconPaperclip } from './icons-js/paperclip.js'; -export { default as IconParachuteOff } from './icons-js/parachute-off.js'; -export { default as IconParachute } from './icons-js/parachute.js'; -export { default as IconParenthesesOff } from './icons-js/parentheses-off.js'; -export { default as IconParentheses } from './icons-js/parentheses.js'; -export { default as IconParkingOff } from './icons-js/parking-off.js'; -export { default as IconParking } from './icons-js/parking.js'; -export { default as IconPassword } from './icons-js/password.js'; -export { default as IconPawOff } from './icons-js/paw-off.js'; -export { default as IconPaw } from './icons-js/paw.js'; -export { default as IconPeace } from './icons-js/peace.js'; -export { default as IconPencilMinus } from './icons-js/pencil-minus.js'; -export { default as IconPencilOff } from './icons-js/pencil-off.js'; -export { default as IconPencilPlus } from './icons-js/pencil-plus.js'; -export { default as IconPencil } from './icons-js/pencil.js'; -export { default as IconPennant2 } from './icons-js/pennant-2.js'; -export { default as IconPennantOff } from './icons-js/pennant-off.js'; -export { default as IconPennant } from './icons-js/pennant.js'; -export { default as IconPentagonOff } from './icons-js/pentagon-off.js'; -export { default as IconPentagon } from './icons-js/pentagon.js'; -export { default as IconPentagram } from './icons-js/pentagram.js'; -export { default as IconPepperOff } from './icons-js/pepper-off.js'; -export { default as IconPepper } from './icons-js/pepper.js'; -export { default as IconPercentage } from './icons-js/percentage.js'; -export { default as IconPerfume } from './icons-js/perfume.js'; -export { default as IconPerspectiveOff } from './icons-js/perspective-off.js'; -export { default as IconPerspective } from './icons-js/perspective.js'; -export { default as IconPhoneCall } from './icons-js/phone-call.js'; -export { default as IconPhoneCalling } from './icons-js/phone-calling.js'; -export { default as IconPhoneCheck } from './icons-js/phone-check.js'; -export { default as IconPhoneIncoming } from './icons-js/phone-incoming.js'; -export { default as IconPhoneOff } from './icons-js/phone-off.js'; -export { default as IconPhoneOutgoing } from './icons-js/phone-outgoing.js'; -export { default as IconPhonePause } from './icons-js/phone-pause.js'; -export { default as IconPhonePlus } from './icons-js/phone-plus.js'; -export { default as IconPhoneX } from './icons-js/phone-x.js'; -export { default as IconPhone } from './icons-js/phone.js'; -export { default as IconPhotoCancel } from './icons-js/photo-cancel.js'; -export { default as IconPhotoCheck } from './icons-js/photo-check.js'; -export { default as IconPhotoDown } from './icons-js/photo-down.js'; -export { default as IconPhotoEdit } from './icons-js/photo-edit.js'; -export { default as IconPhotoHeart } from './icons-js/photo-heart.js'; -export { default as IconPhotoMinus } from './icons-js/photo-minus.js'; -export { default as IconPhotoOff } from './icons-js/photo-off.js'; -export { default as IconPhotoPlus } from './icons-js/photo-plus.js'; -export { default as IconPhotoSearch } from './icons-js/photo-search.js'; -export { default as IconPhotoShield } from './icons-js/photo-shield.js'; -export { default as IconPhotoStar } from './icons-js/photo-star.js'; -export { default as IconPhotoUp } from './icons-js/photo-up.js'; -export { default as IconPhotoX } from './icons-js/photo-x.js'; -export { default as IconPhoto } from './icons-js/photo.js'; -export { default as IconPhysotherapist } from './icons-js/physotherapist.js'; -export { default as IconPictureInPictureOff } from './icons-js/picture-in-picture-off.js'; -export { default as IconPictureInPictureOn } from './icons-js/picture-in-picture-on.js'; -export { default as IconPictureInPictureTop } from './icons-js/picture-in-picture-top.js'; -export { default as IconPictureInPicture } from './icons-js/picture-in-picture.js'; -export { default as IconPigMoney } from './icons-js/pig-money.js'; -export { default as IconPigOff } from './icons-js/pig-off.js'; -export { default as IconPig } from './icons-js/pig.js'; -export { default as IconPilcrow } from './icons-js/pilcrow.js'; -export { default as IconPillOff } from './icons-js/pill-off.js'; -export { default as IconPill } from './icons-js/pill.js'; -export { default as IconPills } from './icons-js/pills.js'; -export { default as IconPin } from './icons-js/pin.js'; -export { default as IconPingPong } from './icons-js/ping-pong.js'; -export { default as IconPinnedOff } from './icons-js/pinned-off.js'; -export { default as IconPinned } from './icons-js/pinned.js'; -export { default as IconPizzaOff } from './icons-js/pizza-off.js'; -export { default as IconPizza } from './icons-js/pizza.js'; -export { default as IconPlaceholder } from './icons-js/placeholder.js'; -export { default as IconPlaneArrival } from './icons-js/plane-arrival.js'; -export { default as IconPlaneDeparture } from './icons-js/plane-departure.js'; -export { default as IconPlaneInflight } from './icons-js/plane-inflight.js'; -export { default as IconPlaneOff } from './icons-js/plane-off.js'; -export { default as IconPlaneTilt } from './icons-js/plane-tilt.js'; -export { default as IconPlane } from './icons-js/plane.js'; -export { default as IconPlanetOff } from './icons-js/planet-off.js'; -export { default as IconPlanet } from './icons-js/planet.js'; -export { default as IconPlant2Off } from './icons-js/plant-2-off.js'; -export { default as IconPlant2 } from './icons-js/plant-2.js'; -export { default as IconPlantOff } from './icons-js/plant-off.js'; -export { default as IconPlant } from './icons-js/plant.js'; -export { default as IconPlayCardOff } from './icons-js/play-card-off.js'; -export { default as IconPlayCard } from './icons-js/play-card.js'; -export { default as IconPlayerEject } from './icons-js/player-eject.js'; -export { default as IconPlayerPause } from './icons-js/player-pause.js'; -export { default as IconPlayerPlay } from './icons-js/player-play.js'; -export { default as IconPlayerRecord } from './icons-js/player-record.js'; -export { default as IconPlayerSkipBack } from './icons-js/player-skip-back.js'; -export { default as IconPlayerSkipForward } from './icons-js/player-skip-forward.js'; -export { default as IconPlayerStop } from './icons-js/player-stop.js'; -export { default as IconPlayerTrackNext } from './icons-js/player-track-next.js'; -export { default as IconPlayerTrackPrev } from './icons-js/player-track-prev.js'; -export { default as IconPlaylistAdd } from './icons-js/playlist-add.js'; -export { default as IconPlaylistOff } from './icons-js/playlist-off.js'; -export { default as IconPlaylistX } from './icons-js/playlist-x.js'; -export { default as IconPlaylist } from './icons-js/playlist.js'; -export { default as IconPlaystationCircle } from './icons-js/playstation-circle.js'; -export { default as IconPlaystationSquare } from './icons-js/playstation-square.js'; -export { default as IconPlaystationTriangle } from './icons-js/playstation-triangle.js'; -export { default as IconPlaystationX } from './icons-js/playstation-x.js'; -export { default as IconPlugConnectedX } from './icons-js/plug-connected-x.js'; -export { default as IconPlugConnected } from './icons-js/plug-connected.js'; -export { default as IconPlugOff } from './icons-js/plug-off.js'; -export { default as IconPlugX } from './icons-js/plug-x.js'; -export { default as IconPlug } from './icons-js/plug.js'; -export { default as IconPlus } from './icons-js/plus.js'; -export { default as IconPng } from './icons-js/png.js'; -export { default as IconPodiumOff } from './icons-js/podium-off.js'; -export { default as IconPodium } from './icons-js/podium.js'; -export { default as IconPointOff } from './icons-js/point-off.js'; -export { default as IconPoint } from './icons-js/point.js'; -export { default as IconPointer } from './icons-js/pointer.js'; -export { default as IconPokeballOff } from './icons-js/pokeball-off.js'; -export { default as IconPokeball } from './icons-js/pokeball.js'; -export { default as IconPokerChip } from './icons-js/poker-chip.js'; -export { default as IconPolaroid } from './icons-js/polaroid.js'; -export { default as IconPolygonOff } from './icons-js/polygon-off.js'; -export { default as IconPolygon } from './icons-js/polygon.js'; -export { default as IconPoo } from './icons-js/poo.js'; -export { default as IconPoolOff } from './icons-js/pool-off.js'; -export { default as IconPool } from './icons-js/pool.js'; -export { default as IconPower } from './icons-js/power.js'; -export { default as IconPray } from './icons-js/pray.js'; -export { default as IconPremiumRights } from './icons-js/premium-rights.js'; -export { default as IconPrescription } from './icons-js/prescription.js'; -export { default as IconPresentationAnalytics } from './icons-js/presentation-analytics.js'; -export { default as IconPresentationOff } from './icons-js/presentation-off.js'; -export { default as IconPresentation } from './icons-js/presentation.js'; -export { default as IconPrinterOff } from './icons-js/printer-off.js'; -export { default as IconPrinter } from './icons-js/printer.js'; -export { default as IconPrison } from './icons-js/prison.js'; -export { default as IconPrompt } from './icons-js/prompt.js'; -export { default as IconPropellerOff } from './icons-js/propeller-off.js'; -export { default as IconPropeller } from './icons-js/propeller.js'; -export { default as IconPumpkinScary } from './icons-js/pumpkin-scary.js'; -export { default as IconPuzzle2 } from './icons-js/puzzle-2.js'; -export { default as IconPuzzleOff } from './icons-js/puzzle-off.js'; -export { default as IconPuzzle } from './icons-js/puzzle.js'; -export { default as IconPyramidOff } from './icons-js/pyramid-off.js'; -export { default as IconPyramid } from './icons-js/pyramid.js'; -export { default as IconQrcodeOff } from './icons-js/qrcode-off.js'; -export { default as IconQrcode } from './icons-js/qrcode.js'; -export { default as IconQuestionCircle } from './icons-js/question-circle.js'; -export { default as IconQuestionMark } from './icons-js/question-mark.js'; -export { default as IconQuoteOff } from './icons-js/quote-off.js'; -export { default as IconQuote } from './icons-js/quote.js'; -export { default as IconRadar2 } from './icons-js/radar-2.js'; -export { default as IconRadarOff } from './icons-js/radar-off.js'; -export { default as IconRadar } from './icons-js/radar.js'; -export { default as IconRadioOff } from './icons-js/radio-off.js'; -export { default as IconRadio } from './icons-js/radio.js'; -export { default as IconRadioactiveOff } from './icons-js/radioactive-off.js'; -export { default as IconRadioactive } from './icons-js/radioactive.js'; -export { default as IconRadiusBottomLeft } from './icons-js/radius-bottom-left.js'; -export { default as IconRadiusBottomRight } from './icons-js/radius-bottom-right.js'; -export { default as IconRadiusTopLeft } from './icons-js/radius-top-left.js'; -export { default as IconRadiusTopRight } from './icons-js/radius-top-right.js'; -export { default as IconRainbowOff } from './icons-js/rainbow-off.js'; -export { default as IconRainbow } from './icons-js/rainbow.js'; -export { default as IconRating12Plus } from './icons-js/rating-12-plus.js'; -export { default as IconRating14Plus } from './icons-js/rating-14-plus.js'; -export { default as IconRating16Plus } from './icons-js/rating-16-plus.js'; -export { default as IconRating18Plus } from './icons-js/rating-18-plus.js'; -export { default as IconRating21Plus } from './icons-js/rating-21-plus.js'; -export { default as IconRazorElectric } from './icons-js/razor-electric.js'; -export { default as IconRazor } from './icons-js/razor.js'; -export { default as IconReceipt2 } from './icons-js/receipt-2.js'; -export { default as IconReceiptOff } from './icons-js/receipt-off.js'; -export { default as IconReceiptRefund } from './icons-js/receipt-refund.js'; -export { default as IconReceiptTax } from './icons-js/receipt-tax.js'; -export { default as IconReceipt } from './icons-js/receipt.js'; -export { default as IconRecharging } from './icons-js/recharging.js'; -export { default as IconRecordMailOff } from './icons-js/record-mail-off.js'; -export { default as IconRecordMail } from './icons-js/record-mail.js'; -export { default as IconRectangleVertical } from './icons-js/rectangle-vertical.js'; -export { default as IconRectangle } from './icons-js/rectangle.js'; -export { default as IconRecycleOff } from './icons-js/recycle-off.js'; -export { default as IconRecycle } from './icons-js/recycle.js'; -export { default as IconRefreshAlert } from './icons-js/refresh-alert.js'; -export { default as IconRefreshDot } from './icons-js/refresh-dot.js'; -export { default as IconRefreshOff } from './icons-js/refresh-off.js'; -export { default as IconRefresh } from './icons-js/refresh.js'; -export { default as IconRegexOff } from './icons-js/regex-off.js'; -export { default as IconRegex } from './icons-js/regex.js'; -export { default as IconRegistered } from './icons-js/registered.js'; -export { default as IconRelationManyToMany } from './icons-js/relation-many-to-many.js'; -export { default as IconRelationOneToMany } from './icons-js/relation-one-to-many.js'; -export { default as IconRelationOneToOne } from './icons-js/relation-one-to-one.js'; -export { default as IconReload } from './icons-js/reload.js'; -export { default as IconRepeatOff } from './icons-js/repeat-off.js'; -export { default as IconRepeatOnce } from './icons-js/repeat-once.js'; -export { default as IconRepeat } from './icons-js/repeat.js'; -export { default as IconReplaceOff } from './icons-js/replace-off.js'; -export { default as IconReplace } from './icons-js/replace.js'; -export { default as IconReportAnalytics } from './icons-js/report-analytics.js'; -export { default as IconReportMedical } from './icons-js/report-medical.js'; -export { default as IconReportMoney } from './icons-js/report-money.js'; -export { default as IconReportOff } from './icons-js/report-off.js'; -export { default as IconReportSearch } from './icons-js/report-search.js'; -export { default as IconReport } from './icons-js/report.js'; -export { default as IconResize } from './icons-js/resize.js'; -export { default as IconRibbonHealth } from './icons-js/ribbon-health.js'; -export { default as IconRippleOff } from './icons-js/ripple-off.js'; -export { default as IconRipple } from './icons-js/ripple.js'; -export { default as IconRoadOff } from './icons-js/road-off.js'; -export { default as IconRoadSign } from './icons-js/road-sign.js'; -export { default as IconRoad } from './icons-js/road.js'; -export { default as IconRobotOff } from './icons-js/robot-off.js'; -export { default as IconRobot } from './icons-js/robot.js'; -export { default as IconRocketOff } from './icons-js/rocket-off.js'; -export { default as IconRocket } from './icons-js/rocket.js'; -export { default as IconRollerSkating } from './icons-js/roller-skating.js'; -export { default as IconRollercoasterOff } from './icons-js/rollercoaster-off.js'; -export { default as IconRollercoaster } from './icons-js/rollercoaster.js'; -export { default as IconRosetteNumber0 } from './icons-js/rosette-number-0.js'; -export { default as IconRosetteNumber1 } from './icons-js/rosette-number-1.js'; -export { default as IconRosetteNumber2 } from './icons-js/rosette-number-2.js'; -export { default as IconRosetteNumber3 } from './icons-js/rosette-number-3.js'; -export { default as IconRosetteNumber4 } from './icons-js/rosette-number-4.js'; -export { default as IconRosetteNumber5 } from './icons-js/rosette-number-5.js'; -export { default as IconRosetteNumber6 } from './icons-js/rosette-number-6.js'; -export { default as IconRosetteNumber7 } from './icons-js/rosette-number-7.js'; -export { default as IconRosetteNumber8 } from './icons-js/rosette-number-8.js'; -export { default as IconRosetteNumber9 } from './icons-js/rosette-number-9.js'; -export { default as IconRosette } from './icons-js/rosette.js'; -export { default as IconRotate2 } from './icons-js/rotate-2.js'; -export { default as IconRotate360 } from './icons-js/rotate-360.js'; -export { default as IconRotateClockwise2 } from './icons-js/rotate-clockwise-2.js'; -export { default as IconRotateClockwise } from './icons-js/rotate-clockwise.js'; -export { default as IconRotateDot } from './icons-js/rotate-dot.js'; -export { default as IconRotateRectangle } from './icons-js/rotate-rectangle.js'; -export { default as IconRotate } from './icons-js/rotate.js'; -export { default as IconRoute2 } from './icons-js/route-2.js'; -export { default as IconRouteOff } from './icons-js/route-off.js'; -export { default as IconRoute } from './icons-js/route.js'; -export { default as IconRouterOff } from './icons-js/router-off.js'; -export { default as IconRouter } from './icons-js/router.js'; -export { default as IconRowInsertBottom } from './icons-js/row-insert-bottom.js'; -export { default as IconRowInsertTop } from './icons-js/row-insert-top.js'; -export { default as IconRss } from './icons-js/rss.js'; -export { default as IconRubberStampOff } from './icons-js/rubber-stamp-off.js'; -export { default as IconRubberStamp } from './icons-js/rubber-stamp.js'; -export { default as IconRuler2Off } from './icons-js/ruler-2-off.js'; -export { default as IconRuler2 } from './icons-js/ruler-2.js'; -export { default as IconRuler3 } from './icons-js/ruler-3.js'; -export { default as IconRulerMeasure } from './icons-js/ruler-measure.js'; -export { default as IconRulerOff } from './icons-js/ruler-off.js'; -export { default as IconRuler } from './icons-js/ruler.js'; -export { default as IconRun } from './icons-js/run.js'; -export { default as IconSTurnDown } from './icons-js/s-turn-down.js'; -export { default as IconSTurnLeft } from './icons-js/s-turn-left.js'; -export { default as IconSTurnRight } from './icons-js/s-turn-right.js'; -export { default as IconSTurnUp } from './icons-js/s-turn-up.js'; -export { default as IconSailboat2 } from './icons-js/sailboat-2.js'; -export { default as IconSailboatOff } from './icons-js/sailboat-off.js'; -export { default as IconSailboat } from './icons-js/sailboat.js'; -export { default as IconSalad } from './icons-js/salad.js'; -export { default as IconSalt } from './icons-js/salt.js'; -export { default as IconSatelliteOff } from './icons-js/satellite-off.js'; -export { default as IconSatellite } from './icons-js/satellite.js'; -export { default as IconSausage } from './icons-js/sausage.js'; -export { default as IconScaleOff } from './icons-js/scale-off.js'; -export { default as IconScaleOutlineOff } from './icons-js/scale-outline-off.js'; -export { default as IconScaleOutline } from './icons-js/scale-outline.js'; -export { default as IconScale } from './icons-js/scale.js'; -export { default as IconScanEye } from './icons-js/scan-eye.js'; -export { default as IconScan } from './icons-js/scan.js'; -export { default as IconSchemaOff } from './icons-js/schema-off.js'; -export { default as IconSchema } from './icons-js/schema.js'; -export { default as IconSchoolBell } from './icons-js/school-bell.js'; -export { default as IconSchoolOff } from './icons-js/school-off.js'; -export { default as IconSchool } from './icons-js/school.js'; -export { default as IconScissorsOff } from './icons-js/scissors-off.js'; -export { default as IconScissors } from './icons-js/scissors.js'; -export { default as IconScooterElectric } from './icons-js/scooter-electric.js'; -export { default as IconScooter } from './icons-js/scooter.js'; -export { default as IconScreenShareOff } from './icons-js/screen-share-off.js'; -export { default as IconScreenShare } from './icons-js/screen-share.js'; -export { default as IconScreenshot } from './icons-js/screenshot.js'; -export { default as IconScribbleOff } from './icons-js/scribble-off.js'; -export { default as IconScribble } from './icons-js/scribble.js'; -export { default as IconScriptMinus } from './icons-js/script-minus.js'; -export { default as IconScriptPlus } from './icons-js/script-plus.js'; -export { default as IconScriptX } from './icons-js/script-x.js'; -export { default as IconScript } from './icons-js/script.js'; -export { default as IconScubaMaskOff } from './icons-js/scuba-mask-off.js'; -export { default as IconScubaMask } from './icons-js/scuba-mask.js'; -export { default as IconSdk } from './icons-js/sdk.js'; -export { default as IconSearchOff } from './icons-js/search-off.js'; -export { default as IconSearch } from './icons-js/search.js'; -export { default as IconSectionSign } from './icons-js/section-sign.js'; -export { default as IconSection } from './icons-js/section.js'; -export { default as IconSeedingOff } from './icons-js/seeding-off.js'; -export { default as IconSeeding } from './icons-js/seeding.js'; -export { default as IconSelect } from './icons-js/select.js'; -export { default as IconSelector } from './icons-js/selector.js'; -export { default as IconSendOff } from './icons-js/send-off.js'; -export { default as IconSend } from './icons-js/send.js'; -export { default as IconSeo } from './icons-js/seo.js'; -export { default as IconSeparatorHorizontal } from './icons-js/separator-horizontal.js'; -export { default as IconSeparatorVertical } from './icons-js/separator-vertical.js'; -export { default as IconSeparator } from './icons-js/separator.js'; -export { default as IconServer2 } from './icons-js/server-2.js'; -export { default as IconServerBolt } from './icons-js/server-bolt.js'; -export { default as IconServerCog } from './icons-js/server-cog.js'; -export { default as IconServerOff } from './icons-js/server-off.js'; -export { default as IconServer } from './icons-js/server.js'; -export { default as IconServicemark } from './icons-js/servicemark.js'; -export { default as IconSettings2 } from './icons-js/settings-2.js'; -export { default as IconSettingsAutomation } from './icons-js/settings-automation.js'; -export { default as IconSettingsOff } from './icons-js/settings-off.js'; -export { default as IconSettings } from './icons-js/settings.js'; -export { default as IconShadowOff } from './icons-js/shadow-off.js'; -export { default as IconShadow } from './icons-js/shadow.js'; -export { default as IconShape2 } from './icons-js/shape-2.js'; -export { default as IconShape3 } from './icons-js/shape-3.js'; -export { default as IconShapeOff } from './icons-js/shape-off.js'; -export { default as IconShape } from './icons-js/shape.js'; -export { default as IconShareOff } from './icons-js/share-off.js'; -export { default as IconShare } from './icons-js/share.js'; -export { default as IconShieldCheck } from './icons-js/shield-check.js'; -export { default as IconShieldCheckered } from './icons-js/shield-checkered.js'; -export { default as IconShieldChevron } from './icons-js/shield-chevron.js'; -export { default as IconShieldHalfFilled } from './icons-js/shield-half-filled.js'; -export { default as IconShieldHalf } from './icons-js/shield-half.js'; -export { default as IconShieldLock } from './icons-js/shield-lock.js'; -export { default as IconShieldOff } from './icons-js/shield-off.js'; -export { default as IconShieldX } from './icons-js/shield-x.js'; -export { default as IconShield } from './icons-js/shield.js'; -export { default as IconShipOff } from './icons-js/ship-off.js'; -export { default as IconShip } from './icons-js/ship.js'; -export { default as IconShirtOff } from './icons-js/shirt-off.js'; -export { default as IconShirtSport } from './icons-js/shirt-sport.js'; -export { default as IconShirt } from './icons-js/shirt.js'; -export { default as IconShoeOff } from './icons-js/shoe-off.js'; -export { default as IconShoe } from './icons-js/shoe.js'; -export { default as IconShoppingBag } from './icons-js/shopping-bag.js'; -export { default as IconShoppingCartDiscount } from './icons-js/shopping-cart-discount.js'; -export { default as IconShoppingCartOff } from './icons-js/shopping-cart-off.js'; -export { default as IconShoppingCartPlus } from './icons-js/shopping-cart-plus.js'; -export { default as IconShoppingCartX } from './icons-js/shopping-cart-x.js'; -export { default as IconShoppingCart } from './icons-js/shopping-cart.js'; -export { default as IconShovel } from './icons-js/shovel.js'; -export { default as IconShredder } from './icons-js/shredder.js'; -export { default as IconSignLeft } from './icons-js/sign-left.js'; -export { default as IconSignRight } from './icons-js/sign-right.js'; -export { default as IconSignal3g } from './icons-js/signal-3g.js'; -export { default as IconSignal4gPlus } from './icons-js/signal-4g-plus.js'; -export { default as IconSignal4g } from './icons-js/signal-4g.js'; -export { default as IconSignal5g } from './icons-js/signal-5g.js'; -export { default as IconSignatureOff } from './icons-js/signature-off.js'; -export { default as IconSignature } from './icons-js/signature.js'; -export { default as IconSitemapOff } from './icons-js/sitemap-off.js'; -export { default as IconSitemap } from './icons-js/sitemap.js'; -export { default as IconSkateboardOff } from './icons-js/skateboard-off.js'; -export { default as IconSkateboard } from './icons-js/skateboard.js'; -export { default as IconSkull } from './icons-js/skull.js'; -export { default as IconSlash } from './icons-js/slash.js'; -export { default as IconSlashes } from './icons-js/slashes.js'; -export { default as IconSleigh } from './icons-js/sleigh.js'; -export { default as IconSlice } from './icons-js/slice.js'; -export { default as IconSlideshow } from './icons-js/slideshow.js'; -export { default as IconSmartHomeOff } from './icons-js/smart-home-off.js'; -export { default as IconSmartHome } from './icons-js/smart-home.js'; -export { default as IconSmokingNo } from './icons-js/smoking-no.js'; -export { default as IconSmoking } from './icons-js/smoking.js'; -export { default as IconSnowflakeOff } from './icons-js/snowflake-off.js'; -export { default as IconSnowflake } from './icons-js/snowflake.js'; -export { default as IconSnowman } from './icons-js/snowman.js'; -export { default as IconSoccerField } from './icons-js/soccer-field.js'; -export { default as IconSocialOff } from './icons-js/social-off.js'; -export { default as IconSocial } from './icons-js/social.js'; -export { default as IconSock } from './icons-js/sock.js'; -export { default as IconSofaOff } from './icons-js/sofa-off.js'; -export { default as IconSofa } from './icons-js/sofa.js'; -export { default as IconSort09 } from './icons-js/sort-0-9.js'; -export { default as IconSort90 } from './icons-js/sort-9-0.js'; -export { default as IconSortAZ } from './icons-js/sort-a-z.js'; -export { default as IconSortAscending2 } from './icons-js/sort-ascending-2.js'; -export { default as IconSortAscendingLetters } from './icons-js/sort-ascending-letters.js'; -export { default as IconSortAscendingNumbers } from './icons-js/sort-ascending-numbers.js'; -export { default as IconSortAscending } from './icons-js/sort-ascending.js'; -export { default as IconSortDescending2 } from './icons-js/sort-descending-2.js'; -export { default as IconSortDescendingLetters } from './icons-js/sort-descending-letters.js'; -export { default as IconSortDescendingNumbers } from './icons-js/sort-descending-numbers.js'; -export { default as IconSortDescending } from './icons-js/sort-descending.js'; -export { default as IconSortZA } from './icons-js/sort-z-a.js'; -export { default as IconSos } from './icons-js/sos.js'; -export { default as IconSoupOff } from './icons-js/soup-off.js'; -export { default as IconSoup } from './icons-js/soup.js'; -export { default as IconSourceCode } from './icons-js/source-code.js'; -export { default as IconSpaceOff } from './icons-js/space-off.js'; -export { default as IconSpace } from './icons-js/space.js'; -export { default as IconSpacingHorizontal } from './icons-js/spacing-horizontal.js'; -export { default as IconSpacingVertical } from './icons-js/spacing-vertical.js'; -export { default as IconSpade } from './icons-js/spade.js'; -export { default as IconSpeakerphone } from './icons-js/speakerphone.js'; -export { default as IconSpeedboat } from './icons-js/speedboat.js'; -export { default as IconSpider } from './icons-js/spider.js'; -export { default as IconSpiralOff } from './icons-js/spiral-off.js'; -export { default as IconSpiral } from './icons-js/spiral.js'; -export { default as IconSportBillard } from './icons-js/sport-billard.js'; -export { default as IconSpray } from './icons-js/spray.js'; -export { default as IconSpyOff } from './icons-js/spy-off.js'; -export { default as IconSpy } from './icons-js/spy.js'; -export { default as IconSquareArrowDown } from './icons-js/square-arrow-down.js'; -export { default as IconSquareArrowLeft } from './icons-js/square-arrow-left.js'; -export { default as IconSquareArrowRight } from './icons-js/square-arrow-right.js'; -export { default as IconSquareArrowUp } from './icons-js/square-arrow-up.js'; -export { default as IconSquareAsterisk } from './icons-js/square-asterisk.js'; -export { default as IconSquareCheck } from './icons-js/square-check.js'; -export { default as IconSquareChevronDown } from './icons-js/square-chevron-down.js'; -export { default as IconSquareChevronLeft } from './icons-js/square-chevron-left.js'; -export { default as IconSquareChevronRight } from './icons-js/square-chevron-right.js'; -export { default as IconSquareChevronUp } from './icons-js/square-chevron-up.js'; -export { default as IconSquareChevronsDown } from './icons-js/square-chevrons-down.js'; -export { default as IconSquareChevronsLeft } from './icons-js/square-chevrons-left.js'; -export { default as IconSquareChevronsRight } from './icons-js/square-chevrons-right.js'; -export { default as IconSquareChevronsUp } from './icons-js/square-chevrons-up.js'; -export { default as IconSquareDot } from './icons-js/square-dot.js'; -export { default as IconSquareF0 } from './icons-js/square-f0.js'; -export { default as IconSquareF1 } from './icons-js/square-f1.js'; -export { default as IconSquareF2 } from './icons-js/square-f2.js'; -export { default as IconSquareF3 } from './icons-js/square-f3.js'; -export { default as IconSquareF4 } from './icons-js/square-f4.js'; -export { default as IconSquareF5 } from './icons-js/square-f5.js'; -export { default as IconSquareF6 } from './icons-js/square-f6.js'; -export { default as IconSquareF7 } from './icons-js/square-f7.js'; -export { default as IconSquareF8 } from './icons-js/square-f8.js'; -export { default as IconSquareF9 } from './icons-js/square-f9.js'; -export { default as IconSquareForbid2 } from './icons-js/square-forbid-2.js'; -export { default as IconSquareForbid } from './icons-js/square-forbid.js'; -export { default as IconSquareHalf } from './icons-js/square-half.js'; -export { default as IconSquareKey } from './icons-js/square-key.js'; -export { default as IconSquareLetterA } from './icons-js/square-letter-a.js'; -export { default as IconSquareLetterB } from './icons-js/square-letter-b.js'; -export { default as IconSquareLetterC } from './icons-js/square-letter-c.js'; -export { default as IconSquareLetterD } from './icons-js/square-letter-d.js'; -export { default as IconSquareLetterE } from './icons-js/square-letter-e.js'; -export { default as IconSquareLetterF } from './icons-js/square-letter-f.js'; -export { default as IconSquareLetterG } from './icons-js/square-letter-g.js'; -export { default as IconSquareLetterH } from './icons-js/square-letter-h.js'; -export { default as IconSquareLetterI } from './icons-js/square-letter-i.js'; -export { default as IconSquareLetterJ } from './icons-js/square-letter-j.js'; -export { default as IconSquareLetterK } from './icons-js/square-letter-k.js'; -export { default as IconSquareLetterL } from './icons-js/square-letter-l.js'; -export { default as IconSquareLetterM } from './icons-js/square-letter-m.js'; -export { default as IconSquareLetterN } from './icons-js/square-letter-n.js'; -export { default as IconSquareLetterO } from './icons-js/square-letter-o.js'; -export { default as IconSquareLetterP } from './icons-js/square-letter-p.js'; -export { default as IconSquareLetterQ } from './icons-js/square-letter-q.js'; -export { default as IconSquareLetterR } from './icons-js/square-letter-r.js'; -export { default as IconSquareLetterS } from './icons-js/square-letter-s.js'; -export { default as IconSquareLetterT } from './icons-js/square-letter-t.js'; -export { default as IconSquareLetterU } from './icons-js/square-letter-u.js'; -export { default as IconSquareLetterV } from './icons-js/square-letter-v.js'; -export { default as IconSquareLetterW } from './icons-js/square-letter-w.js'; -export { default as IconSquareLetterX } from './icons-js/square-letter-x.js'; -export { default as IconSquareLetterY } from './icons-js/square-letter-y.js'; -export { default as IconSquareLetterZ } from './icons-js/square-letter-z.js'; -export { default as IconSquareMinus } from './icons-js/square-minus.js'; -export { default as IconSquareNumber0 } from './icons-js/square-number-0.js'; -export { default as IconSquareNumber1 } from './icons-js/square-number-1.js'; -export { default as IconSquareNumber2 } from './icons-js/square-number-2.js'; -export { default as IconSquareNumber3 } from './icons-js/square-number-3.js'; -export { default as IconSquareNumber4 } from './icons-js/square-number-4.js'; -export { default as IconSquareNumber5 } from './icons-js/square-number-5.js'; -export { default as IconSquareNumber6 } from './icons-js/square-number-6.js'; -export { default as IconSquareNumber7 } from './icons-js/square-number-7.js'; -export { default as IconSquareNumber8 } from './icons-js/square-number-8.js'; -export { default as IconSquareNumber9 } from './icons-js/square-number-9.js'; -export { default as IconSquareOff } from './icons-js/square-off.js'; -export { default as IconSquarePlus } from './icons-js/square-plus.js'; -export { default as IconSquareRoot2 } from './icons-js/square-root-2.js'; -export { default as IconSquareRoot } from './icons-js/square-root.js'; -export { default as IconSquareRotatedForbid2 } from './icons-js/square-rotated-forbid-2.js'; -export { default as IconSquareRotatedForbid } from './icons-js/square-rotated-forbid.js'; -export { default as IconSquareRotatedOff } from './icons-js/square-rotated-off.js'; -export { default as IconSquareRotated } from './icons-js/square-rotated.js'; -export { default as IconSquareRoundedArrowDown } from './icons-js/square-rounded-arrow-down.js'; -export { default as IconSquareRoundedArrowLeft } from './icons-js/square-rounded-arrow-left.js'; -export { default as IconSquareRoundedArrowRight } from './icons-js/square-rounded-arrow-right.js'; -export { default as IconSquareRoundedArrowUp } from './icons-js/square-rounded-arrow-up.js'; -export { default as IconSquareRoundedCheck } from './icons-js/square-rounded-check.js'; -export { default as IconSquareRoundedChevronDown } from './icons-js/square-rounded-chevron-down.js'; -export { default as IconSquareRoundedChevronLeft } from './icons-js/square-rounded-chevron-left.js'; -export { default as IconSquareRoundedChevronRight } from './icons-js/square-rounded-chevron-right.js'; -export { default as IconSquareRoundedChevronUp } from './icons-js/square-rounded-chevron-up.js'; -export { default as IconSquareRoundedChevronsDown } from './icons-js/square-rounded-chevrons-down.js'; -export { default as IconSquareRoundedChevronsLeft } from './icons-js/square-rounded-chevrons-left.js'; -export { default as IconSquareRoundedChevronsRight } from './icons-js/square-rounded-chevrons-right.js'; -export { default as IconSquareRoundedChevronsUp } from './icons-js/square-rounded-chevrons-up.js'; -export { default as IconSquareRoundedLetterA } from './icons-js/square-rounded-letter-a.js'; -export { default as IconSquareRoundedLetterB } from './icons-js/square-rounded-letter-b.js'; -export { default as IconSquareRoundedLetterC } from './icons-js/square-rounded-letter-c.js'; -export { default as IconSquareRoundedLetterD } from './icons-js/square-rounded-letter-d.js'; -export { default as IconSquareRoundedLetterE } from './icons-js/square-rounded-letter-e.js'; -export { default as IconSquareRoundedLetterF } from './icons-js/square-rounded-letter-f.js'; -export { default as IconSquareRoundedLetterG } from './icons-js/square-rounded-letter-g.js'; -export { default as IconSquareRoundedLetterH } from './icons-js/square-rounded-letter-h.js'; -export { default as IconSquareRoundedLetterI } from './icons-js/square-rounded-letter-i.js'; -export { default as IconSquareRoundedLetterJ } from './icons-js/square-rounded-letter-j.js'; -export { default as IconSquareRoundedLetterK } from './icons-js/square-rounded-letter-k.js'; -export { default as IconSquareRoundedLetterL } from './icons-js/square-rounded-letter-l.js'; -export { default as IconSquareRoundedLetterM } from './icons-js/square-rounded-letter-m.js'; -export { default as IconSquareRoundedLetterN } from './icons-js/square-rounded-letter-n.js'; -export { default as IconSquareRoundedLetterO } from './icons-js/square-rounded-letter-o.js'; -export { default as IconSquareRoundedLetterP } from './icons-js/square-rounded-letter-p.js'; -export { default as IconSquareRoundedLetterQ } from './icons-js/square-rounded-letter-q.js'; -export { default as IconSquareRoundedLetterR } from './icons-js/square-rounded-letter-r.js'; -export { default as IconSquareRoundedLetterS } from './icons-js/square-rounded-letter-s.js'; -export { default as IconSquareRoundedLetterT } from './icons-js/square-rounded-letter-t.js'; -export { default as IconSquareRoundedLetterU } from './icons-js/square-rounded-letter-u.js'; -export { default as IconSquareRoundedLetterV } from './icons-js/square-rounded-letter-v.js'; -export { default as IconSquareRoundedLetterW } from './icons-js/square-rounded-letter-w.js'; -export { default as IconSquareRoundedLetterX } from './icons-js/square-rounded-letter-x.js'; -export { default as IconSquareRoundedLetterY } from './icons-js/square-rounded-letter-y.js'; -export { default as IconSquareRoundedLetterZ } from './icons-js/square-rounded-letter-z.js'; -export { default as IconSquareRoundedMinus } from './icons-js/square-rounded-minus.js'; -export { default as IconSquareRoundedNumber0 } from './icons-js/square-rounded-number-0.js'; -export { default as IconSquareRoundedNumber1 } from './icons-js/square-rounded-number-1.js'; -export { default as IconSquareRoundedNumber2 } from './icons-js/square-rounded-number-2.js'; -export { default as IconSquareRoundedNumber3 } from './icons-js/square-rounded-number-3.js'; -export { default as IconSquareRoundedNumber4 } from './icons-js/square-rounded-number-4.js'; -export { default as IconSquareRoundedNumber5 } from './icons-js/square-rounded-number-5.js'; -export { default as IconSquareRoundedNumber6 } from './icons-js/square-rounded-number-6.js'; -export { default as IconSquareRoundedNumber7 } from './icons-js/square-rounded-number-7.js'; -export { default as IconSquareRoundedNumber8 } from './icons-js/square-rounded-number-8.js'; -export { default as IconSquareRoundedNumber9 } from './icons-js/square-rounded-number-9.js'; -export { default as IconSquareRoundedPlus } from './icons-js/square-rounded-plus.js'; -export { default as IconSquareRoundedX } from './icons-js/square-rounded-x.js'; -export { default as IconSquareRounded } from './icons-js/square-rounded.js'; -export { default as IconSquareToggleHorizontal } from './icons-js/square-toggle-horizontal.js'; -export { default as IconSquareToggle } from './icons-js/square-toggle.js'; -export { default as IconSquareX } from './icons-js/square-x.js'; -export { default as IconSquare } from './icons-js/square.js'; -export { default as IconSquaresDiagonal } from './icons-js/squares-diagonal.js'; -export { default as IconSquaresFilled } from './icons-js/squares-filled.js'; -export { default as IconStack2 } from './icons-js/stack-2.js'; -export { default as IconStack3 } from './icons-js/stack-3.js'; -export { default as IconStackPop } from './icons-js/stack-pop.js'; -export { default as IconStackPush } from './icons-js/stack-push.js'; -export { default as IconStack } from './icons-js/stack.js'; -export { default as IconStairsDown } from './icons-js/stairs-down.js'; -export { default as IconStairsUp } from './icons-js/stairs-up.js'; -export { default as IconStairs } from './icons-js/stairs.js'; -export { default as IconStarHalf } from './icons-js/star-half.js'; -export { default as IconStarOff } from './icons-js/star-off.js'; -export { default as IconStar } from './icons-js/star.js'; -export { default as IconStarsOff } from './icons-js/stars-off.js'; -export { default as IconStars } from './icons-js/stars.js'; -export { default as IconStatusChange } from './icons-js/status-change.js'; -export { default as IconSteam } from './icons-js/steam.js'; -export { default as IconSteeringWheelOff } from './icons-js/steering-wheel-off.js'; -export { default as IconSteeringWheel } from './icons-js/steering-wheel.js'; -export { default as IconStepInto } from './icons-js/step-into.js'; -export { default as IconStepOut } from './icons-js/step-out.js'; -export { default as IconStereoGlasses } from './icons-js/stereo-glasses.js'; -export { default as IconStethoscopeOff } from './icons-js/stethoscope-off.js'; -export { default as IconStethoscope } from './icons-js/stethoscope.js'; -export { default as IconSticker } from './icons-js/sticker.js'; -export { default as IconStormOff } from './icons-js/storm-off.js'; -export { default as IconStorm } from './icons-js/storm.js'; -export { default as IconStretching } from './icons-js/stretching.js'; -export { default as IconStrikethrough } from './icons-js/strikethrough.js'; -export { default as IconSubmarine } from './icons-js/submarine.js'; -export { default as IconSubscript } from './icons-js/subscript.js'; -export { default as IconSubtask } from './icons-js/subtask.js'; -export { default as IconSumOff } from './icons-js/sum-off.js'; -export { default as IconSum } from './icons-js/sum.js'; -export { default as IconSunHigh } from './icons-js/sun-high.js'; -export { default as IconSunLow } from './icons-js/sun-low.js'; -export { default as IconSunMoon } from './icons-js/sun-moon.js'; -export { default as IconSunOff } from './icons-js/sun-off.js'; -export { default as IconSunWind } from './icons-js/sun-wind.js'; -export { default as IconSun } from './icons-js/sun.js'; -export { default as IconSunglasses } from './icons-js/sunglasses.js'; -export { default as IconSunrise } from './icons-js/sunrise.js'; -export { default as IconSunset2 } from './icons-js/sunset-2.js'; -export { default as IconSunset } from './icons-js/sunset.js'; -export { default as IconSuperscript } from './icons-js/superscript.js'; -export { default as IconSvg } from './icons-js/svg.js'; -export { default as IconSwimming } from './icons-js/swimming.js'; -export { default as IconSwipe } from './icons-js/swipe.js'; -export { default as IconSwitch2 } from './icons-js/switch-2.js'; -export { default as IconSwitch3 } from './icons-js/switch-3.js'; -export { default as IconSwitchHorizontal } from './icons-js/switch-horizontal.js'; -export { default as IconSwitchVertical } from './icons-js/switch-vertical.js'; -export { default as IconSwitch } from './icons-js/switch.js'; -export { default as IconSwordOff } from './icons-js/sword-off.js'; -export { default as IconSword } from './icons-js/sword.js'; -export { default as IconSwords } from './icons-js/swords.js'; -export { default as IconTableAlias } from './icons-js/table-alias.js'; -export { default as IconTableExport } from './icons-js/table-export.js'; -export { default as IconTableImport } from './icons-js/table-import.js'; -export { default as IconTableOff } from './icons-js/table-off.js'; -export { default as IconTableOptions } from './icons-js/table-options.js'; -export { default as IconTableShortcut } from './icons-js/table-shortcut.js'; -export { default as IconTable } from './icons-js/table.js'; -export { default as IconTagOff } from './icons-js/tag-off.js'; -export { default as IconTag } from './icons-js/tag.js'; -export { default as IconTagsOff } from './icons-js/tags-off.js'; -export { default as IconTags } from './icons-js/tags.js'; -export { default as IconTallymark1 } from './icons-js/tallymark-1.js'; -export { default as IconTallymark2 } from './icons-js/tallymark-2.js'; -export { default as IconTallymark3 } from './icons-js/tallymark-3.js'; -export { default as IconTallymark4 } from './icons-js/tallymark-4.js'; -export { default as IconTallymarks } from './icons-js/tallymarks.js'; -export { default as IconTank } from './icons-js/tank.js'; -export { default as IconTargetArrow } from './icons-js/target-arrow.js'; -export { default as IconTargetOff } from './icons-js/target-off.js'; -export { default as IconTarget } from './icons-js/target.js'; -export { default as IconTeapot } from './icons-js/teapot.js'; -export { default as IconTelescopeOff } from './icons-js/telescope-off.js'; -export { default as IconTelescope } from './icons-js/telescope.js'; -export { default as IconTemperatureCelsius } from './icons-js/temperature-celsius.js'; -export { default as IconTemperatureFahrenheit } from './icons-js/temperature-fahrenheit.js'; -export { default as IconTemperatureMinus } from './icons-js/temperature-minus.js'; -export { default as IconTemperatureOff } from './icons-js/temperature-off.js'; -export { default as IconTemperaturePlus } from './icons-js/temperature-plus.js'; -export { default as IconTemperature } from './icons-js/temperature.js'; -export { default as IconTemplateOff } from './icons-js/template-off.js'; -export { default as IconTemplate } from './icons-js/template.js'; -export { default as IconTentOff } from './icons-js/tent-off.js'; -export { default as IconTent } from './icons-js/tent.js'; -export { default as IconTerminal2 } from './icons-js/terminal-2.js'; -export { default as IconTerminal } from './icons-js/terminal.js'; -export { default as IconTestPipe2 } from './icons-js/test-pipe-2.js'; -export { default as IconTestPipeOff } from './icons-js/test-pipe-off.js'; -export { default as IconTestPipe } from './icons-js/test-pipe.js'; -export { default as IconTex } from './icons-js/tex.js'; -export { default as IconTextCaption } from './icons-js/text-caption.js'; -export { default as IconTextColor } from './icons-js/text-color.js'; -export { default as IconTextDecrease } from './icons-js/text-decrease.js'; -export { default as IconTextDirectionLtr } from './icons-js/text-direction-ltr.js'; -export { default as IconTextDirectionRtl } from './icons-js/text-direction-rtl.js'; -export { default as IconTextIncrease } from './icons-js/text-increase.js'; -export { default as IconTextOrientation } from './icons-js/text-orientation.js'; -export { default as IconTextPlus } from './icons-js/text-plus.js'; -export { default as IconTextRecognition } from './icons-js/text-recognition.js'; -export { default as IconTextResize } from './icons-js/text-resize.js'; -export { default as IconTextSize } from './icons-js/text-size.js'; -export { default as IconTextSpellcheck } from './icons-js/text-spellcheck.js'; -export { default as IconTextWrapDisabled } from './icons-js/text-wrap-disabled.js'; -export { default as IconTextWrap } from './icons-js/text-wrap.js'; -export { default as IconTexture } from './icons-js/texture.js'; -export { default as IconThermometer } from './icons-js/thermometer.js'; -export { default as IconThumbDownOff } from './icons-js/thumb-down-off.js'; -export { default as IconThumbDown } from './icons-js/thumb-down.js'; -export { default as IconThumbUpOff } from './icons-js/thumb-up-off.js'; -export { default as IconThumbUp } from './icons-js/thumb-up.js'; -export { default as IconTicTac } from './icons-js/tic-tac.js'; -export { default as IconTicketOff } from './icons-js/ticket-off.js'; -export { default as IconTicket } from './icons-js/ticket.js'; -export { default as IconTie } from './icons-js/tie.js'; -export { default as IconTilde } from './icons-js/tilde.js'; -export { default as IconTiltShiftOff } from './icons-js/tilt-shift-off.js'; -export { default as IconTiltShift } from './icons-js/tilt-shift.js'; -export { default as IconTimelineEventExclamation } from './icons-js/timeline-event-exclamation.js'; -export { default as IconTimelineEventMinus } from './icons-js/timeline-event-minus.js'; -export { default as IconTimelineEventPlus } from './icons-js/timeline-event-plus.js'; -export { default as IconTimelineEventText } from './icons-js/timeline-event-text.js'; -export { default as IconTimelineEventX } from './icons-js/timeline-event-x.js'; -export { default as IconTimelineEvent } from './icons-js/timeline-event.js'; -export { default as IconTimeline } from './icons-js/timeline.js'; -export { default as IconTir } from './icons-js/tir.js'; -export { default as IconToggleLeft } from './icons-js/toggle-left.js'; -export { default as IconToggleRight } from './icons-js/toggle-right.js'; -export { default as IconToiletPaperOff } from './icons-js/toilet-paper-off.js'; -export { default as IconToiletPaper } from './icons-js/toilet-paper.js'; -export { default as IconTool } from './icons-js/tool.js'; -export { default as IconToolsKitchen2Off } from './icons-js/tools-kitchen-2-off.js'; -export { default as IconToolsKitchen2 } from './icons-js/tools-kitchen-2.js'; -export { default as IconToolsKitchenOff } from './icons-js/tools-kitchen-off.js'; -export { default as IconToolsKitchen } from './icons-js/tools-kitchen.js'; -export { default as IconToolsOff } from './icons-js/tools-off.js'; -export { default as IconTools } from './icons-js/tools.js'; -export { default as IconTooltip } from './icons-js/tooltip.js'; -export { default as IconTopologyBus } from './icons-js/topology-bus.js'; -export { default as IconTopologyComplex } from './icons-js/topology-complex.js'; -export { default as IconTopologyFullHierarchy } from './icons-js/topology-full-hierarchy.js'; -export { default as IconTopologyFull } from './icons-js/topology-full.js'; -export { default as IconTopologyRing2 } from './icons-js/topology-ring-2.js'; -export { default as IconTopologyRing3 } from './icons-js/topology-ring-3.js'; -export { default as IconTopologyRing } from './icons-js/topology-ring.js'; -export { default as IconTopologyStar2 } from './icons-js/topology-star-2.js'; -export { default as IconTopologyStar3 } from './icons-js/topology-star-3.js'; -export { default as IconTopologyStarRing2 } from './icons-js/topology-star-ring-2.js'; -export { default as IconTopologyStarRing3 } from './icons-js/topology-star-ring-3.js'; -export { default as IconTopologyStarRing } from './icons-js/topology-star-ring.js'; -export { default as IconTopologyStar } from './icons-js/topology-star.js'; -export { default as IconTorii } from './icons-js/torii.js'; -export { default as IconTornado } from './icons-js/tornado.js'; -export { default as IconTournament } from './icons-js/tournament.js'; -export { default as IconTowerOff } from './icons-js/tower-off.js'; -export { default as IconTower } from './icons-js/tower.js'; -export { default as IconTrack } from './icons-js/track.js'; -export { default as IconTractor } from './icons-js/tractor.js'; -export { default as IconTrademark } from './icons-js/trademark.js'; -export { default as IconTrafficConeOff } from './icons-js/traffic-cone-off.js'; -export { default as IconTrafficCone } from './icons-js/traffic-cone.js'; -export { default as IconTrafficLightsOff } from './icons-js/traffic-lights-off.js'; -export { default as IconTrafficLights } from './icons-js/traffic-lights.js'; -export { default as IconTrain } from './icons-js/train.js'; -export { default as IconTransferIn } from './icons-js/transfer-in.js'; -export { default as IconTransferOut } from './icons-js/transfer-out.js'; -export { default as IconTransform } from './icons-js/transform.js'; -export { default as IconTransitionBottom } from './icons-js/transition-bottom.js'; -export { default as IconTransitionLeft } from './icons-js/transition-left.js'; -export { default as IconTransitionRight } from './icons-js/transition-right.js'; -export { default as IconTransitionTop } from './icons-js/transition-top.js'; -export { default as IconTrashOff } from './icons-js/trash-off.js'; -export { default as IconTrashX } from './icons-js/trash-x.js'; -export { default as IconTrash } from './icons-js/trash.js'; -export { default as IconTree } from './icons-js/tree.js'; -export { default as IconTrees } from './icons-js/trees.js'; -export { default as IconTrekking } from './icons-js/trekking.js'; -export { default as IconTrendingDown2 } from './icons-js/trending-down-2.js'; -export { default as IconTrendingDown3 } from './icons-js/trending-down-3.js'; -export { default as IconTrendingDown } from './icons-js/trending-down.js'; -export { default as IconTrendingUp2 } from './icons-js/trending-up-2.js'; -export { default as IconTrendingUp3 } from './icons-js/trending-up-3.js'; -export { default as IconTrendingUp } from './icons-js/trending-up.js'; -export { default as IconTriangleInverted } from './icons-js/triangle-inverted.js'; -export { default as IconTriangleOff } from './icons-js/triangle-off.js'; -export { default as IconTriangleSquareCircle } from './icons-js/triangle-square-circle.js'; -export { default as IconTriangle } from './icons-js/triangle.js'; -export { default as IconTriangles } from './icons-js/triangles.js'; -export { default as IconTrident } from './icons-js/trident.js'; -export { default as IconTrolley } from './icons-js/trolley.js'; -export { default as IconTrophyOff } from './icons-js/trophy-off.js'; -export { default as IconTrophy } from './icons-js/trophy.js'; -export { default as IconTrowel } from './icons-js/trowel.js'; -export { default as IconTruckDelivery } from './icons-js/truck-delivery.js'; -export { default as IconTruckLoading } from './icons-js/truck-loading.js'; -export { default as IconTruckOff } from './icons-js/truck-off.js'; -export { default as IconTruckReturn } from './icons-js/truck-return.js'; -export { default as IconTruck } from './icons-js/truck.js'; -export { default as IconTxt } from './icons-js/txt.js'; -export { default as IconTypographyOff } from './icons-js/typography-off.js'; -export { default as IconTypography } from './icons-js/typography.js'; -export { default as IconUfOff } from './icons-js/uf-off.js'; -export { default as IconUfo } from './icons-js/ufo.js'; -export { default as IconUmbrellaOff } from './icons-js/umbrella-off.js'; -export { default as IconUmbrella } from './icons-js/umbrella.js'; -export { default as IconUnderline } from './icons-js/underline.js'; -export { default as IconUnlink } from './icons-js/unlink.js'; -export { default as IconUpload } from './icons-js/upload.js'; -export { default as IconUrgent } from './icons-js/urgent.js'; -export { default as IconUsb } from './icons-js/usb.js'; -export { default as IconUserCheck } from './icons-js/user-check.js'; -export { default as IconUserCircle } from './icons-js/user-circle.js'; -export { default as IconUserExclamation } from './icons-js/user-exclamation.js'; -export { default as IconUserMinus } from './icons-js/user-minus.js'; -export { default as IconUserOff } from './icons-js/user-off.js'; -export { default as IconUserPlus } from './icons-js/user-plus.js'; -export { default as IconUserSearch } from './icons-js/user-search.js'; -export { default as IconUserX } from './icons-js/user-x.js'; -export { default as IconUser } from './icons-js/user.js'; -export { default as IconUsers } from './icons-js/users.js'; -export { default as IconUvIndex } from './icons-js/uv-index.js'; -export { default as IconUxCircle } from './icons-js/ux-circle.js'; -export { default as IconVaccineBottleOff } from './icons-js/vaccine-bottle-off.js'; -export { default as IconVaccineBottle } from './icons-js/vaccine-bottle.js'; -export { default as IconVaccineOff } from './icons-js/vaccine-off.js'; -export { default as IconVaccine } from './icons-js/vaccine.js'; -export { default as IconVacuumCleaner } from './icons-js/vacuum-cleaner.js'; -export { default as IconVariableMinus } from './icons-js/variable-minus.js'; -export { default as IconVariableOff } from './icons-js/variable-off.js'; -export { default as IconVariablePlus } from './icons-js/variable-plus.js'; -export { default as IconVariable } from './icons-js/variable.js'; -export { default as IconVectorBezier2 } from './icons-js/vector-bezier-2.js'; -export { default as IconVectorBezierArc } from './icons-js/vector-bezier-arc.js'; -export { default as IconVectorBezierCircle } from './icons-js/vector-bezier-circle.js'; -export { default as IconVectorBezier } from './icons-js/vector-bezier.js'; -export { default as IconVectorOff } from './icons-js/vector-off.js'; -export { default as IconVectorSpline } from './icons-js/vector-spline.js'; -export { default as IconVectorTriangleOff } from './icons-js/vector-triangle-off.js'; -export { default as IconVectorTriangle } from './icons-js/vector-triangle.js'; -export { default as IconVector } from './icons-js/vector.js'; -export { default as IconVenus } from './icons-js/venus.js'; -export { default as IconVersionsOff } from './icons-js/versions-off.js'; -export { default as IconVersions } from './icons-js/versions.js'; -export { default as IconVideoMinus } from './icons-js/video-minus.js'; -export { default as IconVideoOff } from './icons-js/video-off.js'; -export { default as IconVideoPlus } from './icons-js/video-plus.js'; -export { default as IconVideo } from './icons-js/video.js'; -export { default as IconView360Off } from './icons-js/view-360-off.js'; -export { default as IconView360 } from './icons-js/view-360.js'; -export { default as IconViewfinderOff } from './icons-js/viewfinder-off.js'; -export { default as IconViewfinder } from './icons-js/viewfinder.js'; -export { default as IconViewportNarrow } from './icons-js/viewport-narrow.js'; -export { default as IconViewportWide } from './icons-js/viewport-wide.js'; -export { default as IconVinyl } from './icons-js/vinyl.js'; -export { default as IconVipOff } from './icons-js/vip-off.js'; -export { default as IconVip } from './icons-js/vip.js'; -export { default as IconVirusOff } from './icons-js/virus-off.js'; -export { default as IconVirusSearch } from './icons-js/virus-search.js'; -export { default as IconVirus } from './icons-js/virus.js'; -export { default as IconVocabularyOff } from './icons-js/vocabulary-off.js'; -export { default as IconVocabulary } from './icons-js/vocabulary.js'; -export { default as IconVolume2 } from './icons-js/volume-2.js'; -export { default as IconVolume3 } from './icons-js/volume-3.js'; -export { default as IconVolumeOff } from './icons-js/volume-off.js'; -export { default as IconVolume } from './icons-js/volume.js'; -export { default as IconWalk } from './icons-js/walk.js'; -export { default as IconWallOff } from './icons-js/wall-off.js'; -export { default as IconWall } from './icons-js/wall.js'; -export { default as IconWalletOff } from './icons-js/wallet-off.js'; -export { default as IconWallet } from './icons-js/wallet.js'; -export { default as IconWallpaperOff } from './icons-js/wallpaper-off.js'; -export { default as IconWallpaper } from './icons-js/wallpaper.js'; -export { default as IconWandOff } from './icons-js/wand-off.js'; -export { default as IconWand } from './icons-js/wand.js'; -export { default as IconWashDry1 } from './icons-js/wash-dry-1.js'; -export { default as IconWashDry2 } from './icons-js/wash-dry-2.js'; -export { default as IconWashDry3 } from './icons-js/wash-dry-3.js'; -export { default as IconWashDryA } from './icons-js/wash-dry-a.js'; -export { default as IconWashDryDip } from './icons-js/wash-dry-dip.js'; -export { default as IconWashDryF } from './icons-js/wash-dry-f.js'; -export { default as IconWashDryHang } from './icons-js/wash-dry-hang.js'; -export { default as IconWashDryOff } from './icons-js/wash-dry-off.js'; -export { default as IconWashDryP } from './icons-js/wash-dry-p.js'; -export { default as IconWashDryShade } from './icons-js/wash-dry-shade.js'; -export { default as IconWashDryW } from './icons-js/wash-dry-w.js'; -export { default as IconWashDry } from './icons-js/wash-dry.js'; -export { default as IconWashDrycleanOff } from './icons-js/wash-dryclean-off.js'; -export { default as IconWashDryclean } from './icons-js/wash-dryclean.js'; -export { default as IconWashGentle } from './icons-js/wash-gentle.js'; -export { default as IconWashMachine } from './icons-js/wash-machine.js'; -export { default as IconWashOff } from './icons-js/wash-off.js'; -export { default as IconWashPress } from './icons-js/wash-press.js'; -export { default as IconWashTemperature1 } from './icons-js/wash-temperature-1.js'; -export { default as IconWashTemperature2 } from './icons-js/wash-temperature-2.js'; -export { default as IconWashTemperature3 } from './icons-js/wash-temperature-3.js'; -export { default as IconWashTemperature4 } from './icons-js/wash-temperature-4.js'; -export { default as IconWashTemperature5 } from './icons-js/wash-temperature-5.js'; -export { default as IconWashTemperature6 } from './icons-js/wash-temperature-6.js'; -export { default as IconWashTumbleDry } from './icons-js/wash-tumble-dry.js'; -export { default as IconWashTumbleOff } from './icons-js/wash-tumble-off.js'; -export { default as IconWash } from './icons-js/wash.js'; -export { default as IconWaveSawTool } from './icons-js/wave-saw-tool.js'; -export { default as IconWaveSine } from './icons-js/wave-sine.js'; -export { default as IconWaveSquare } from './icons-js/wave-square.js'; -export { default as IconWebhookOff } from './icons-js/webhook-off.js'; -export { default as IconWebhook } from './icons-js/webhook.js'; -export { default as IconWeight } from './icons-js/weight.js'; -export { default as IconWheelchairOff } from './icons-js/wheelchair-off.js'; -export { default as IconWheelchair } from './icons-js/wheelchair.js'; -export { default as IconWhirl } from './icons-js/whirl.js'; -export { default as IconWifi0 } from './icons-js/wifi-0.js'; -export { default as IconWifi1 } from './icons-js/wifi-1.js'; -export { default as IconWifi2 } from './icons-js/wifi-2.js'; -export { default as IconWifiOff } from './icons-js/wifi-off.js'; -export { default as IconWifi } from './icons-js/wifi.js'; -export { default as IconWindOff } from './icons-js/wind-off.js'; -export { default as IconWind } from './icons-js/wind.js'; -export { default as IconWindmillOff } from './icons-js/windmill-off.js'; -export { default as IconWindmill } from './icons-js/windmill.js'; -export { default as IconWindowMaximize } from './icons-js/window-maximize.js'; -export { default as IconWindowMinimize } from './icons-js/window-minimize.js'; -export { default as IconWindowOff } from './icons-js/window-off.js'; -export { default as IconWindow } from './icons-js/window.js'; -export { default as IconWindsock } from './icons-js/windsock.js'; -export { default as IconWiperWash } from './icons-js/wiper-wash.js'; -export { default as IconWiper } from './icons-js/wiper.js'; -export { default as IconWoman } from './icons-js/woman.js'; -export { default as IconWood } from './icons-js/wood.js'; -export { default as IconWorldDownload } from './icons-js/world-download.js'; -export { default as IconWorldLatitude } from './icons-js/world-latitude.js'; -export { default as IconWorldLongitude } from './icons-js/world-longitude.js'; -export { default as IconWorldOff } from './icons-js/world-off.js'; -export { default as IconWorldUpload } from './icons-js/world-upload.js'; -export { default as IconWorldWww } from './icons-js/world-www.js'; -export { default as IconWorld } from './icons-js/world.js'; -export { default as IconWreckingBall } from './icons-js/wrecking-ball.js'; -export { default as IconWritingOff } from './icons-js/writing-off.js'; -export { default as IconWritingSignOff } from './icons-js/writing-sign-off.js'; -export { default as IconWritingSign } from './icons-js/writing-sign.js'; -export { default as IconWriting } from './icons-js/writing.js'; -export { default as IconX } from './icons-js/x.js'; -export { default as IconXboxA } from './icons-js/xbox-a.js'; -export { default as IconXboxB } from './icons-js/xbox-b.js'; -export { default as IconXboxX } from './icons-js/xbox-x.js'; -export { default as IconXboxY } from './icons-js/xbox-y.js'; -export { default as IconYinYang } from './icons-js/yin-yang.js'; -export { default as IconYoga } from './icons-js/yoga.js'; -export { default as IconZeppelinOff } from './icons-js/zeppelin-off.js'; -export { default as IconZeppelin } from './icons-js/zeppelin.js'; -export { default as IconZip } from './icons-js/zip.js'; -export { default as IconZodiacAquarius } from './icons-js/zodiac-aquarius.js'; -export { default as IconZodiacAries } from './icons-js/zodiac-aries.js'; -export { default as IconZodiacCancer } from './icons-js/zodiac-cancer.js'; -export { default as IconZodiacCapricorn } from './icons-js/zodiac-capricorn.js'; -export { default as IconZodiacGemini } from './icons-js/zodiac-gemini.js'; -export { default as IconZodiacLeo } from './icons-js/zodiac-leo.js'; -export { default as IconZodiacLibra } from './icons-js/zodiac-libra.js'; -export { default as IconZodiacPisces } from './icons-js/zodiac-pisces.js'; -export { default as IconZodiacSagittarius } from './icons-js/zodiac-sagittarius.js'; -export { default as IconZodiacScorpio } from './icons-js/zodiac-scorpio.js'; -export { default as IconZodiacTaurus } from './icons-js/zodiac-taurus.js'; -export { default as IconZodiacVirgo } from './icons-js/zodiac-virgo.js'; -export { default as IconZoomCancel } from './icons-js/zoom-cancel.js'; -export { default as IconZoomCheck } from './icons-js/zoom-check.js'; -export { default as IconZoomCode } from './icons-js/zoom-code.js'; -export { default as IconZoomExclamation } from './icons-js/zoom-exclamation.js'; -export { default as IconZoomInArea } from './icons-js/zoom-in-area.js'; -export { default as IconZoomIn } from './icons-js/zoom-in.js'; -export { default as IconZoomMoney } from './icons-js/zoom-money.js'; -export { default as IconZoomOutArea } from './icons-js/zoom-out-area.js'; -export { default as IconZoomOut } from './icons-js/zoom-out.js'; -export { default as IconZoomPan } from './icons-js/zoom-pan.js'; -export { default as IconZoomQuestion } from './icons-js/zoom-question.js'; -export { default as IconZoomReplace } from './icons-js/zoom-replace.js'; -export { default as IconZoomReset } from './icons-js/zoom-reset.js'; -export { default as IconZzzOff } from './icons-js/zzz-off.js'; -export { default as IconZzz } from './icons-js/zzz.js'; diff --git a/icons/123.svg b/icons/123.svg index ce3b8f539..62040b663 100644 --- a/icons/123.svg +++ b/icons/123.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/24-hours.svg b/icons/24-hours.svg index 9664bffbf..9c17c5865 100644 --- a/icons/24-hours.svg +++ b/icons/24-hours.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/2fa.svg b/icons/2fa.svg index 3b1eb79af..37c05f70a 100644 --- a/icons/2fa.svg +++ b/icons/2fa.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/360-view.svg b/icons/360-view.svg index 35197af11..e29752832 100644 --- a/icons/360-view.svg +++ b/icons/360-view.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/360.svg b/icons/360.svg index 111f23b8f..9bdfee5e9 100644 --- a/icons/360.svg +++ b/icons/360.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/3d-cube-sphere-off.svg b/icons/3d-cube-sphere-off.svg index 29e118061..9b2348647 100644 --- a/icons/3d-cube-sphere-off.svg +++ b/icons/3d-cube-sphere-off.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/3d-cube-sphere.svg b/icons/3d-cube-sphere.svg index 5ebf65580..219c6b98a 100644 --- a/icons/3d-cube-sphere.svg +++ b/icons/3d-cube-sphere.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/3d-rotate.svg b/icons/3d-rotate.svg index a5422eb56..c4443a86a 100644 --- a/icons/3d-rotate.svg +++ b/icons/3d-rotate.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/a-b-2.svg b/icons/a-b-2.svg index be00812da..25788d692 100644 --- a/icons/a-b-2.svg +++ b/icons/a-b-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/a-b-off.svg b/icons/a-b-off.svg index 43fdbd0d0..89c201d0b 100644 --- a/icons/a-b-off.svg +++ b/icons/a-b-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/a-b.svg b/icons/a-b.svg index 5aae56799..9ae4b7583 100644 --- a/icons/a-b.svg +++ b/icons/a-b.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/abacus-off.svg b/icons/abacus-off.svg index 87ef8a217..20a8a43f3 100644 --- a/icons/abacus-off.svg +++ b/icons/abacus-off.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/abacus.svg b/icons/abacus.svg index c08ddbe77..d75687244 100644 --- a/icons/abacus.svg +++ b/icons/abacus.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/abc.svg b/icons/abc.svg index 3d2aaffe4..01ab3dfea 100644 --- a/icons/abc.svg +++ b/icons/abc.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/access-point-off.svg b/icons/access-point-off.svg index 6a661f892..e3abd0702 100644 --- a/icons/access-point-off.svg +++ b/icons/access-point-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/access-point.svg b/icons/access-point.svg index ba3ca8d23..2833f9e90 100644 --- a/icons/access-point.svg +++ b/icons/access-point.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/accessible-off.svg b/icons/accessible-off.svg index b06b66b13..f7a585330 100644 --- a/icons/accessible-off.svg +++ b/icons/accessible-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/accessible.svg b/icons/accessible.svg index 78597ea2a..e2b6d18cd 100644 --- a/icons/accessible.svg +++ b/icons/accessible.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ad-2.svg b/icons/ad-2.svg index 02b6003f6..b79c29ff8 100644 --- a/icons/ad-2.svg +++ b/icons/ad-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ad-off.svg b/icons/ad-off.svg index c7169a7e3..47c286385 100644 --- a/icons/ad-off.svg +++ b/icons/ad-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ad.svg b/icons/ad.svg index cb5db62da..afca20812 100644 --- a/icons/ad.svg +++ b/icons/ad.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/address-book-off.svg b/icons/address-book-off.svg index 0aedc9c88..88f253860 100644 --- a/icons/address-book-off.svg +++ b/icons/address-book-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/address-book.svg b/icons/address-book.svg index 065981d55..2cddf4eba 100644 --- a/icons/address-book.svg +++ b/icons/address-book.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/adjustments-alt.svg b/icons/adjustments-alt.svg index 805f3b6e9..55268d1ba 100644 --- a/icons/adjustments-alt.svg +++ b/icons/adjustments-alt.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/adjustments-horizontal.svg b/icons/adjustments-horizontal.svg index 825b02431..b7ab188c0 100644 --- a/icons/adjustments-horizontal.svg +++ b/icons/adjustments-horizontal.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/adjustments-off.svg b/icons/adjustments-off.svg index 3de065c44..db4501279 100644 --- a/icons/adjustments-off.svg +++ b/icons/adjustments-off.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/adjustments.svg b/icons/adjustments.svg index 167d9de91..52599e50d 100644 --- a/icons/adjustments.svg +++ b/icons/adjustments.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/affiliate.svg b/icons/affiliate.svg index d5f555304..af468e8bc 100644 --- a/icons/affiliate.svg +++ b/icons/affiliate.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/air-balloon.svg b/icons/air-balloon.svg index ade7fef5c..b3ad51b73 100644 --- a/icons/air-balloon.svg +++ b/icons/air-balloon.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/air-conditioning-disabled.svg b/icons/air-conditioning-disabled.svg index 9b23008b6..9ec1bac4f 100644 --- a/icons/air-conditioning-disabled.svg +++ b/icons/air-conditioning-disabled.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/air-conditioning.svg b/icons/air-conditioning.svg index 4a0b91159..f915b89c4 100644 --- a/icons/air-conditioning.svg +++ b/icons/air-conditioning.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/alarm-minus.svg b/icons/alarm-minus.svg index 5c82b8291..6c3bbb31c 100644 --- a/icons/alarm-minus.svg +++ b/icons/alarm-minus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/alarm-off.svg b/icons/alarm-off.svg index 4df9c15ba..e015374e2 100644 --- a/icons/alarm-off.svg +++ b/icons/alarm-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/alarm-plus.svg b/icons/alarm-plus.svg index 2b81f25e3..791b5e2b6 100644 --- a/icons/alarm-plus.svg +++ b/icons/alarm-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/alarm-snooze.svg b/icons/alarm-snooze.svg index 659577e02..537d70e1f 100644 --- a/icons/alarm-snooze.svg +++ b/icons/alarm-snooze.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/alarm.svg b/icons/alarm.svg index ddcc09e59..938324372 100644 --- a/icons/alarm.svg +++ b/icons/alarm.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/album-off.svg b/icons/album-off.svg index b5294ea4b..54fa3caf6 100644 --- a/icons/album-off.svg +++ b/icons/album-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/album.svg b/icons/album.svg index d4d6b4095..cab2da7a0 100644 --- a/icons/album.svg +++ b/icons/album.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg index 11b2fffe1..7b5222efb 100644 --- a/icons/alert-circle.svg +++ b/icons/alert-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/alert-octagon.svg b/icons/alert-octagon.svg index cbfdd9eae..b43925591 100644 --- a/icons/alert-octagon.svg +++ b/icons/alert-octagon.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/alert-triangle.svg b/icons/alert-triangle.svg index 17eae7f03..44d102301 100644 --- a/icons/alert-triangle.svg +++ b/icons/alert-triangle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/alien.svg b/icons/alien.svg index 22c6d0cfc..330ccf12f 100644 --- a/icons/alien.svg +++ b/icons/alien.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-bottom-center.svg b/icons/align-box-bottom-center.svg index ee7fd0a9e..09228a651 100644 --- a/icons/align-box-bottom-center.svg +++ b/icons/align-box-bottom-center.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-bottom-left.svg b/icons/align-box-bottom-left.svg index 3be73722c..f9b2af612 100644 --- a/icons/align-box-bottom-left.svg +++ b/icons/align-box-bottom-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-bottom-right.svg b/icons/align-box-bottom-right.svg index ecb491c20..5a9e6fc73 100644 --- a/icons/align-box-bottom-right.svg +++ b/icons/align-box-bottom-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-left-bottom.svg b/icons/align-box-left-bottom.svg index 7e27f86e8..cb073537c 100644 --- a/icons/align-box-left-bottom.svg +++ b/icons/align-box-left-bottom.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-left-middle.svg b/icons/align-box-left-middle.svg index 16790cb86..72f637793 100644 --- a/icons/align-box-left-middle.svg +++ b/icons/align-box-left-middle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-left-top.svg b/icons/align-box-left-top.svg index 53224439c..f342931a9 100644 --- a/icons/align-box-left-top.svg +++ b/icons/align-box-left-top.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-right-bottom.svg b/icons/align-box-right-bottom.svg index b11d53fca..edfdc53f1 100644 --- a/icons/align-box-right-bottom.svg +++ b/icons/align-box-right-bottom.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-right-middle.svg b/icons/align-box-right-middle.svg index fb032f6fc..2513ad977 100644 --- a/icons/align-box-right-middle.svg +++ b/icons/align-box-right-middle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-right-top.svg b/icons/align-box-right-top.svg index b0374f687..0a9290ebc 100644 --- a/icons/align-box-right-top.svg +++ b/icons/align-box-right-top.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-top-center.svg b/icons/align-box-top-center.svg index 6215533fd..ac9d3826f 100644 --- a/icons/align-box-top-center.svg +++ b/icons/align-box-top-center.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-top-left.svg b/icons/align-box-top-left.svg index 9e18108b8..74e44e3d4 100644 --- a/icons/align-box-top-left.svg +++ b/icons/align-box-top-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-box-top-right.svg b/icons/align-box-top-right.svg index 9165b2d9c..07a5498c2 100644 --- a/icons/align-box-top-right.svg +++ b/icons/align-box-top-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/align-center.svg b/icons/align-center.svg index 09cb55ffe..d4947a432 100644 --- a/icons/align-center.svg +++ b/icons/align-center.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/align-justified.svg b/icons/align-justified.svg index ff741df32..1febe2b43 100644 --- a/icons/align-justified.svg +++ b/icons/align-justified.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/align-left.svg b/icons/align-left.svg index cd822c35f..23c016e18 100644 --- a/icons/align-left.svg +++ b/icons/align-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/align-right.svg b/icons/align-right.svg index 064d93d34..b8d65657d 100644 --- a/icons/align-right.svg +++ b/icons/align-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/alphabet-cyrillic.svg b/icons/alphabet-cyrillic.svg index 86529e845..46a2605d4 100644 --- a/icons/alphabet-cyrillic.svg +++ b/icons/alphabet-cyrillic.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/alphabet-greek.svg b/icons/alphabet-greek.svg index 817891a84..8b96c0973 100644 --- a/icons/alphabet-greek.svg +++ b/icons/alphabet-greek.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/alphabet-latin.svg b/icons/alphabet-latin.svg index 0ef5c1797..1f5bc54db 100644 --- a/icons/alphabet-latin.svg +++ b/icons/alphabet-latin.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ambulance.svg b/icons/ambulance.svg index 9b3643ea2..c9e02f10b 100644 --- a/icons/ambulance.svg +++ b/icons/ambulance.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/analyze-off.svg b/icons/analyze-off.svg index 6d06299bc..4b11ea3c9 100644 --- a/icons/analyze-off.svg +++ b/icons/analyze-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/analyze.svg b/icons/analyze.svg index 3d6a0e469..c84172512 100644 --- a/icons/analyze.svg +++ b/icons/analyze.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/anchor-off.svg b/icons/anchor-off.svg index 138ea00a5..c7443c893 100644 --- a/icons/anchor-off.svg +++ b/icons/anchor-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/anchor.svg b/icons/anchor.svg index dde6c624d..257ede722 100644 --- a/icons/anchor.svg +++ b/icons/anchor.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/angle.svg b/icons/angle.svg index 9f711626e..aa0269b83 100644 --- a/icons/angle.svg +++ b/icons/angle.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ankh.svg b/icons/ankh.svg index b8ab2b47e..e3e674a09 100644 --- a/icons/ankh.svg +++ b/icons/ankh.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/antenna-bars-1.svg b/icons/antenna-bars-1.svg index 983dffc02..f66f8d435 100644 --- a/icons/antenna-bars-1.svg +++ b/icons/antenna-bars-1.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/antenna-bars-2.svg b/icons/antenna-bars-2.svg index a5d8e427c..ff30e25ad 100644 --- a/icons/antenna-bars-2.svg +++ b/icons/antenna-bars-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/antenna-bars-3.svg b/icons/antenna-bars-3.svg index 6f58912f4..11f2d62a5 100644 --- a/icons/antenna-bars-3.svg +++ b/icons/antenna-bars-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/antenna-bars-4.svg b/icons/antenna-bars-4.svg index 35eaae4b0..30eee9ac9 100644 --- a/icons/antenna-bars-4.svg +++ b/icons/antenna-bars-4.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/antenna-bars-5.svg b/icons/antenna-bars-5.svg index ed5d36320..e2e24e8fc 100644 --- a/icons/antenna-bars-5.svg +++ b/icons/antenna-bars-5.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/antenna-bars-off.svg b/icons/antenna-bars-off.svg index 3aba3dc5f..2bca71c5b 100644 --- a/icons/antenna-bars-off.svg +++ b/icons/antenna-bars-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/antenna-off.svg b/icons/antenna-off.svg index 53f35eb71..e487fd7b1 100644 --- a/icons/antenna-off.svg +++ b/icons/antenna-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/antenna.svg b/icons/antenna.svg index 13545c820..2b4b94af4 100644 --- a/icons/antenna.svg +++ b/icons/antenna.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/aperture-off.svg b/icons/aperture-off.svg index fb1afa444..5b5aa1624 100644 --- a/icons/aperture-off.svg +++ b/icons/aperture-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/aperture.svg b/icons/aperture.svg index 448dbe201..9cdc008c7 100644 --- a/icons/aperture.svg +++ b/icons/aperture.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/api-app-off.svg b/icons/api-app-off.svg index 2930315ea..3c4c8aaa6 100644 --- a/icons/api-app-off.svg +++ b/icons/api-app-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/api-app.svg b/icons/api-app.svg index a697ffe73..21be2bad0 100644 --- a/icons/api-app.svg +++ b/icons/api-app.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/api-off.svg b/icons/api-off.svg index c8a2c992e..fc79632a6 100644 --- a/icons/api-off.svg +++ b/icons/api-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/api.svg b/icons/api.svg index 767a159b6..1a6e1fcdd 100644 --- a/icons/api.svg +++ b/icons/api.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/app-window.svg b/icons/app-window.svg index d09c74037..5bd199d10 100644 --- a/icons/app-window.svg +++ b/icons/app-window.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/apple.svg b/icons/apple.svg index d1ca4b0e9..2ffd95640 100644 --- a/icons/apple.svg +++ b/icons/apple.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/apps-off.svg b/icons/apps-off.svg index 4c63d2c24..adbb96d19 100644 --- a/icons/apps-off.svg +++ b/icons/apps-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/apps.svg b/icons/apps.svg index 9978033e1..aea1a886b 100644 --- a/icons/apps.svg +++ b/icons/apps.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/archive-off.svg b/icons/archive-off.svg index 43a2a715a..aeec1fd23 100644 --- a/icons/archive-off.svg +++ b/icons/archive-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/archive.svg b/icons/archive.svg index 2b38c8132..bd80b1b64 100644 --- a/icons/archive.svg +++ b/icons/archive.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/armchair-2-off.svg b/icons/armchair-2-off.svg index c0cca7f1c..94165bcfb 100644 --- a/icons/armchair-2-off.svg +++ b/icons/armchair-2-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/armchair-2.svg b/icons/armchair-2.svg index bb090ef39..5d4ba4261 100644 --- a/icons/armchair-2.svg +++ b/icons/armchair-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/armchair-off.svg b/icons/armchair-off.svg index b904ba1af..9d69ef00d 100644 --- a/icons/armchair-off.svg +++ b/icons/armchair-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/armchair.svg b/icons/armchair.svg index 24029b2b7..c5de5447e 100644 --- a/icons/armchair.svg +++ b/icons/armchair.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-autofit-content.svg b/icons/arrow-autofit-content.svg index c9996d039..21b1885c0 100644 --- a/icons/arrow-autofit-content.svg +++ b/icons/arrow-autofit-content.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/arrow-autofit-down.svg b/icons/arrow-autofit-down.svg index 596a9f3cd..ceb1ce4d2 100644 --- a/icons/arrow-autofit-down.svg +++ b/icons/arrow-autofit-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-autofit-height.svg b/icons/arrow-autofit-height.svg index 2eabc47d6..6d87f8867 100644 --- a/icons/arrow-autofit-height.svg +++ b/icons/arrow-autofit-height.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/arrow-autofit-left.svg b/icons/arrow-autofit-left.svg index 49d8c12e9..0c50461f6 100644 --- a/icons/arrow-autofit-left.svg +++ b/icons/arrow-autofit-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-autofit-right.svg b/icons/arrow-autofit-right.svg index 49bdd3079..0677319d2 100644 --- a/icons/arrow-autofit-right.svg +++ b/icons/arrow-autofit-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-autofit-up.svg b/icons/arrow-autofit-up.svg index af0a958c6..75d3e36fc 100644 --- a/icons/arrow-autofit-up.svg +++ b/icons/arrow-autofit-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-autofit-width.svg b/icons/arrow-autofit-width.svg index e4f7526f0..617287038 100644 --- a/icons/arrow-autofit-width.svg +++ b/icons/arrow-autofit-width.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/arrow-bar-down.svg b/icons/arrow-bar-down.svg index 8e4d6d1f7..dd2ea8b43 100644 --- a/icons/arrow-bar-down.svg +++ b/icons/arrow-bar-down.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-left.svg b/icons/arrow-bar-left.svg index 902e7e6eb..31decce3a 100644 --- a/icons/arrow-bar-left.svg +++ b/icons/arrow-bar-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-right.svg b/icons/arrow-bar-right.svg index c8a04fa2b..4a6e8993c 100644 --- a/icons/arrow-bar-right.svg +++ b/icons/arrow-bar-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-to-down.svg b/icons/arrow-bar-to-down.svg index d8482390b..77ee01a25 100644 --- a/icons/arrow-bar-to-down.svg +++ b/icons/arrow-bar-to-down.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-to-left.svg b/icons/arrow-bar-to-left.svg index f979f946b..8f5c25701 100644 --- a/icons/arrow-bar-to-left.svg +++ b/icons/arrow-bar-to-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-to-right.svg b/icons/arrow-bar-to-right.svg index 48ac707ce..13ebbfe57 100644 --- a/icons/arrow-bar-to-right.svg +++ b/icons/arrow-bar-to-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-to-up.svg b/icons/arrow-bar-to-up.svg index 6ba6d5b36..5dff8ea3c 100644 --- a/icons/arrow-bar-to-up.svg +++ b/icons/arrow-bar-to-up.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bar-up.svg b/icons/arrow-bar-up.svg index c71ed81b8..bbe3fec1e 100644 --- a/icons/arrow-bar-up.svg +++ b/icons/arrow-bar-up.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-bear-left-2.svg b/icons/arrow-bear-left-2.svg index 221b8109f..09b004cff 100644 --- a/icons/arrow-bear-left-2.svg +++ b/icons/arrow-bear-left-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-bear-left.svg b/icons/arrow-bear-left.svg index 89f593be1..dd3caf77f 100644 --- a/icons/arrow-bear-left.svg +++ b/icons/arrow-bear-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-bear-right-2.svg b/icons/arrow-bear-right-2.svg index 9ea37c4aa..11ba71507 100644 --- a/icons/arrow-bear-right-2.svg +++ b/icons/arrow-bear-right-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-bear-right.svg b/icons/arrow-bear-right.svg index 9c9934af9..449cc888d 100644 --- a/icons/arrow-bear-right.svg +++ b/icons/arrow-bear-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-big-down-line.svg b/icons/arrow-big-down-line.svg index b54ae1891..0e5e54261 100644 --- a/icons/arrow-big-down-line.svg +++ b/icons/arrow-big-down-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-big-down-lines.svg b/icons/arrow-big-down-lines.svg index 32d5e4cc3..5ea25944f 100644 --- a/icons/arrow-big-down-lines.svg +++ b/icons/arrow-big-down-lines.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-big-left-line.svg b/icons/arrow-big-left-line.svg index 6e2847082..86164a330 100644 --- a/icons/arrow-big-left-line.svg +++ b/icons/arrow-big-left-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-big-left-lines.svg b/icons/arrow-big-left-lines.svg index 38797d7f4..5eac10139 100644 --- a/icons/arrow-big-left-lines.svg +++ b/icons/arrow-big-left-lines.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-big-right-line.svg b/icons/arrow-big-right-line.svg index 48be728ee..c094182af 100644 --- a/icons/arrow-big-right-line.svg +++ b/icons/arrow-big-right-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-big-right-lines.svg b/icons/arrow-big-right-lines.svg index 8d62ce8cd..ecaf08849 100644 --- a/icons/arrow-big-right-lines.svg +++ b/icons/arrow-big-right-lines.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-big-up-line.svg b/icons/arrow-big-up-line.svg index f4ea35eae..a9c063c62 100644 --- a/icons/arrow-big-up-line.svg +++ b/icons/arrow-big-up-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-big-up-lines.svg b/icons/arrow-big-up-lines.svg index ce53b9509..8fe2cdd05 100644 --- a/icons/arrow-big-up-lines.svg +++ b/icons/arrow-big-up-lines.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-bounce.svg b/icons/arrow-bounce.svg index cb719f340..3f889e91b 100644 --- a/icons/arrow-bounce.svg +++ b/icons/arrow-bounce.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-curve-left.svg b/icons/arrow-curve-left.svg index 3b66a3389..1746cc4e8 100644 --- a/icons/arrow-curve-left.svg +++ b/icons/arrow-curve-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-curve-right.svg b/icons/arrow-curve-right.svg index ecf2779ef..18aaa407b 100644 --- a/icons/arrow-curve-right.svg +++ b/icons/arrow-curve-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-down-bar.svg b/icons/arrow-down-bar.svg index f7bc069f1..4ddff4c36 100644 --- a/icons/arrow-down-bar.svg +++ b/icons/arrow-down-bar.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down-circle.svg b/icons/arrow-down-circle.svg index aa0560840..4c5e87aac 100644 --- a/icons/arrow-down-circle.svg +++ b/icons/arrow-down-circle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-down-left-circle.svg b/icons/arrow-down-left-circle.svg index aaebd71c3..fd0841119 100644 --- a/icons/arrow-down-left-circle.svg +++ b/icons/arrow-down-left-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down-left.svg b/icons/arrow-down-left.svg index 2834990d8..ed45d4a45 100644 --- a/icons/arrow-down-left.svg +++ b/icons/arrow-down-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-down-rhombus.svg b/icons/arrow-down-rhombus.svg index 1885ed468..07d9029b1 100644 --- a/icons/arrow-down-rhombus.svg +++ b/icons/arrow-down-rhombus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down-right-circle.svg b/icons/arrow-down-right-circle.svg index c3bcd566b..1246d1573 100644 --- a/icons/arrow-down-right-circle.svg +++ b/icons/arrow-down-right-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down-right.svg b/icons/arrow-down-right.svg index e0ffadaee..04c39e3fd 100644 --- a/icons/arrow-down-right.svg +++ b/icons/arrow-down-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-down-square.svg b/icons/arrow-down-square.svg index f76947851..a5e23d5f6 100644 --- a/icons/arrow-down-square.svg +++ b/icons/arrow-down-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down-tail.svg b/icons/arrow-down-tail.svg index 3facfa61d..661a99a7e 100644 --- a/icons/arrow-down-tail.svg +++ b/icons/arrow-down-tail.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-down.svg b/icons/arrow-down.svg index a2e0c4f12..8fd301f97 100644 --- a/icons/arrow-down.svg +++ b/icons/arrow-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-fork.svg b/icons/arrow-fork.svg index 50c05cd33..fd3c987ad 100644 --- a/icons/arrow-fork.svg +++ b/icons/arrow-fork.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-guide.svg b/icons/arrow-guide.svg index 6990f6ef7..c6806005e 100644 --- a/icons/arrow-guide.svg +++ b/icons/arrow-guide.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-iteration.svg b/icons/arrow-iteration.svg index 70e373752..fc4eb1f87 100644 --- a/icons/arrow-iteration.svg +++ b/icons/arrow-iteration.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left-bar.svg b/icons/arrow-left-bar.svg index 363582541..722cd2d5e 100644 --- a/icons/arrow-left-bar.svg +++ b/icons/arrow-left-bar.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left-circle.svg b/icons/arrow-left-circle.svg index 9ae0a5045..4e6d906fd 100644 --- a/icons/arrow-left-circle.svg +++ b/icons/arrow-left-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left-rhombus.svg b/icons/arrow-left-rhombus.svg index 458dd5efe..f8812a2be 100644 --- a/icons/arrow-left-rhombus.svg +++ b/icons/arrow-left-rhombus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left-right.svg b/icons/arrow-left-right.svg index 833483965..cb2cfe712 100644 --- a/icons/arrow-left-right.svg +++ b/icons/arrow-left-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-left-square.svg b/icons/arrow-left-square.svg index c82f79f32..f738de314 100644 --- a/icons/arrow-left-square.svg +++ b/icons/arrow-left-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left-tail.svg b/icons/arrow-left-tail.svg index 2f72e5f86..ff18ad67c 100644 --- a/icons/arrow-left-tail.svg +++ b/icons/arrow-left-tail.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-left.svg b/icons/arrow-left.svg index abe44d246..4ebcd9431 100644 --- a/icons/arrow-left.svg +++ b/icons/arrow-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-loop-left-2.svg b/icons/arrow-loop-left-2.svg index 250804972..a148e10b0 100644 --- a/icons/arrow-loop-left-2.svg +++ b/icons/arrow-loop-left-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-loop-left.svg b/icons/arrow-loop-left.svg index 57e498239..16acdadb8 100644 --- a/icons/arrow-loop-left.svg +++ b/icons/arrow-loop-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-loop-right-2.svg b/icons/arrow-loop-right-2.svg index 7a9b468d5..6f8e74b88 100644 --- a/icons/arrow-loop-right-2.svg +++ b/icons/arrow-loop-right-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-loop-right.svg b/icons/arrow-loop-right.svg index 21eb7d911..2f6148fa5 100644 --- a/icons/arrow-loop-right.svg +++ b/icons/arrow-loop-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-merge-both.svg b/icons/arrow-merge-both.svg index ca032fc69..1f927d3e8 100644 --- a/icons/arrow-merge-both.svg +++ b/icons/arrow-merge-both.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-merge-left.svg b/icons/arrow-merge-left.svg index 3e6eb1082..7d9b6db2a 100644 --- a/icons/arrow-merge-left.svg +++ b/icons/arrow-merge-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-merge-right.svg b/icons/arrow-merge-right.svg index de66eaa4e..edacdc32a 100644 --- a/icons/arrow-merge-right.svg +++ b/icons/arrow-merge-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-merge.svg b/icons/arrow-merge.svg index 17c116723..ced41dba3 100644 --- a/icons/arrow-merge.svg +++ b/icons/arrow-merge.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-move-down.svg b/icons/arrow-move-down.svg index 0fba7a873..f176fcaa7 100644 --- a/icons/arrow-move-down.svg +++ b/icons/arrow-move-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-move-left.svg b/icons/arrow-move-left.svg index d5747a2be..cde52e4da 100644 --- a/icons/arrow-move-left.svg +++ b/icons/arrow-move-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-move-right.svg b/icons/arrow-move-right.svg index fd1453e56..287707f02 100644 --- a/icons/arrow-move-right.svg +++ b/icons/arrow-move-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-move-up.svg b/icons/arrow-move-up.svg index 615c34624..e3b5d7258 100644 --- a/icons/arrow-move-up.svg +++ b/icons/arrow-move-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-narrow-down.svg b/icons/arrow-narrow-down.svg index 19f4f49d5..82a9ba8c3 100644 --- a/icons/arrow-narrow-down.svg +++ b/icons/arrow-narrow-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-narrow-left.svg b/icons/arrow-narrow-left.svg index 4eb611d66..a1650fb42 100644 --- a/icons/arrow-narrow-left.svg +++ b/icons/arrow-narrow-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-narrow-right.svg b/icons/arrow-narrow-right.svg index 3402de9a0..c13952a69 100644 --- a/icons/arrow-narrow-right.svg +++ b/icons/arrow-narrow-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-narrow-up.svg b/icons/arrow-narrow-up.svg index af4b1e5b3..35f8001a4 100644 --- a/icons/arrow-narrow-up.svg +++ b/icons/arrow-narrow-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-ramp-left-2.svg b/icons/arrow-ramp-left-2.svg index 78c5d1e6c..ee3316c7b 100644 --- a/icons/arrow-ramp-left-2.svg +++ b/icons/arrow-ramp-left-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-ramp-left-3.svg b/icons/arrow-ramp-left-3.svg index a061b9870..dc25c36d1 100644 --- a/icons/arrow-ramp-left-3.svg +++ b/icons/arrow-ramp-left-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-ramp-left.svg b/icons/arrow-ramp-left.svg index b0e1a45f4..f39e4e575 100644 --- a/icons/arrow-ramp-left.svg +++ b/icons/arrow-ramp-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-ramp-right-2.svg b/icons/arrow-ramp-right-2.svg index 60bf61b44..35f6310ae 100644 --- a/icons/arrow-ramp-right-2.svg +++ b/icons/arrow-ramp-right-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-ramp-right-3.svg b/icons/arrow-ramp-right-3.svg index 0cf7f0da0..ed2737595 100644 --- a/icons/arrow-ramp-right-3.svg +++ b/icons/arrow-ramp-right-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-ramp-right.svg b/icons/arrow-ramp-right.svg index 2f8646931..3d352e4ef 100644 --- a/icons/arrow-ramp-right.svg +++ b/icons/arrow-ramp-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-right-bar.svg b/icons/arrow-right-bar.svg index 369de398f..d5be334e8 100644 --- a/icons/arrow-right-bar.svg +++ b/icons/arrow-right-bar.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-right-circle.svg b/icons/arrow-right-circle.svg index 7e9a8ab08..16203a948 100644 --- a/icons/arrow-right-circle.svg +++ b/icons/arrow-right-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-right-rhombus.svg b/icons/arrow-right-rhombus.svg index d6388cbb9..5dacba19b 100644 --- a/icons/arrow-right-rhombus.svg +++ b/icons/arrow-right-rhombus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-right-square.svg b/icons/arrow-right-square.svg index 36b93ea3e..7728e42d3 100644 --- a/icons/arrow-right-square.svg +++ b/icons/arrow-right-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-right-tail.svg b/icons/arrow-right-tail.svg index d233840c8..2559422aa 100644 --- a/icons/arrow-right-tail.svg +++ b/icons/arrow-right-tail.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg index 41aa67475..4f4dbba67 100644 --- a/icons/arrow-right.svg +++ b/icons/arrow-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-rotary-first-left.svg b/icons/arrow-rotary-first-left.svg index e5d9264c3..069afba76 100644 --- a/icons/arrow-rotary-first-left.svg +++ b/icons/arrow-rotary-first-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-first-right.svg b/icons/arrow-rotary-first-right.svg index db8ec1b0f..ae3a319d9 100644 --- a/icons/arrow-rotary-first-right.svg +++ b/icons/arrow-rotary-first-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-last-left.svg b/icons/arrow-rotary-last-left.svg index 963a228bc..99b25604d 100644 --- a/icons/arrow-rotary-last-left.svg +++ b/icons/arrow-rotary-last-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-last-right.svg b/icons/arrow-rotary-last-right.svg index 39225ab67..9047d4e7e 100644 --- a/icons/arrow-rotary-last-right.svg +++ b/icons/arrow-rotary-last-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-left.svg b/icons/arrow-rotary-left.svg index c7b498e99..e58cb0309 100644 --- a/icons/arrow-rotary-left.svg +++ b/icons/arrow-rotary-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-right.svg b/icons/arrow-rotary-right.svg index 52b594b7d..083a11f34 100644 --- a/icons/arrow-rotary-right.svg +++ b/icons/arrow-rotary-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-rotary-straight.svg b/icons/arrow-rotary-straight.svg index 2a3f06b49..9e1a35d2a 100644 --- a/icons/arrow-rotary-straight.svg +++ b/icons/arrow-rotary-straight.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-roundabout-left.svg b/icons/arrow-roundabout-left.svg index 817c5e897..5e9f8acbb 100644 --- a/icons/arrow-roundabout-left.svg +++ b/icons/arrow-roundabout-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-roundabout-right.svg b/icons/arrow-roundabout-right.svg index b161c674e..55920ca60 100644 --- a/icons/arrow-roundabout-right.svg +++ b/icons/arrow-roundabout-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-sharp-turn-left.svg b/icons/arrow-sharp-turn-left.svg index 8d4772b22..bd52bdf2b 100644 --- a/icons/arrow-sharp-turn-left.svg +++ b/icons/arrow-sharp-turn-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-sharp-turn-right.svg b/icons/arrow-sharp-turn-right.svg index b9044a175..a478d3355 100644 --- a/icons/arrow-sharp-turn-right.svg +++ b/icons/arrow-sharp-turn-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-up-bar.svg b/icons/arrow-up-bar.svg index 9e882c837..e0dd0fd9d 100644 --- a/icons/arrow-up-bar.svg +++ b/icons/arrow-up-bar.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up-circle.svg b/icons/arrow-up-circle.svg index 903220fed..bfc2cc1ed 100644 --- a/icons/arrow-up-circle.svg +++ b/icons/arrow-up-circle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrow-up-left-circle.svg b/icons/arrow-up-left-circle.svg index 208a6d9e1..3f027e5dc 100644 --- a/icons/arrow-up-left-circle.svg +++ b/icons/arrow-up-left-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up-left.svg b/icons/arrow-up-left.svg index a61fc8db8..b49474189 100644 --- a/icons/arrow-up-left.svg +++ b/icons/arrow-up-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-up-rhombus.svg b/icons/arrow-up-rhombus.svg index 20b37218d..08ce33ede 100644 --- a/icons/arrow-up-rhombus.svg +++ b/icons/arrow-up-rhombus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up-right-circle.svg b/icons/arrow-up-right-circle.svg index d30819569..3374c006d 100644 --- a/icons/arrow-up-right-circle.svg +++ b/icons/arrow-up-right-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up-right.svg b/icons/arrow-up-right.svg index ba4504915..c9cc59719 100644 --- a/icons/arrow-up-right.svg +++ b/icons/arrow-up-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-up-square.svg b/icons/arrow-up-square.svg index ad41a40b8..c3d9c949b 100644 --- a/icons/arrow-up-square.svg +++ b/icons/arrow-up-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up-tail.svg b/icons/arrow-up-tail.svg index 90e6dc3cf..3d8432d08 100644 --- a/icons/arrow-up-tail.svg +++ b/icons/arrow-up-tail.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-up.svg b/icons/arrow-up.svg index 1b5fbf5d4..ab2e83dda 100644 --- a/icons/arrow-up.svg +++ b/icons/arrow-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrow-wave-left-down.svg b/icons/arrow-wave-left-down.svg index bccc539de..3ac19c96e 100644 --- a/icons/arrow-wave-left-down.svg +++ b/icons/arrow-wave-left-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-wave-left-up.svg b/icons/arrow-wave-left-up.svg index 6e9908954..9bb13cd6f 100644 --- a/icons/arrow-wave-left-up.svg +++ b/icons/arrow-wave-left-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-wave-right-down.svg b/icons/arrow-wave-right-down.svg index cfab6bf44..4990f9d64 100644 --- a/icons/arrow-wave-right-down.svg +++ b/icons/arrow-wave-right-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-wave-right-up.svg b/icons/arrow-wave-right-up.svg index 4e6ee9ed2..1f28889ec 100644 --- a/icons/arrow-wave-right-up.svg +++ b/icons/arrow-wave-right-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrow-zig-zag.svg b/icons/arrow-zig-zag.svg index 3501ba34f..8109f6c54 100644 --- a/icons/arrow-zig-zag.svg +++ b/icons/arrow-zig-zag.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrows-cross.svg b/icons/arrows-cross.svg index ae37e6e39..2ce4e1d34 100644 --- a/icons/arrows-cross.svg +++ b/icons/arrows-cross.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/arrows-diagonal-2.svg b/icons/arrows-diagonal-2.svg index 5888fb024..3d26b67b8 100644 --- a/icons/arrows-diagonal-2.svg +++ b/icons/arrows-diagonal-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-diagonal-minimize-2.svg b/icons/arrows-diagonal-minimize-2.svg index 89361bab0..0b2e35130 100644 --- a/icons/arrows-diagonal-minimize-2.svg +++ b/icons/arrows-diagonal-minimize-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-diagonal-minimize.svg b/icons/arrows-diagonal-minimize.svg index 4bc248972..e0f764fcf 100644 --- a/icons/arrows-diagonal-minimize.svg +++ b/icons/arrows-diagonal-minimize.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-diagonal.svg b/icons/arrows-diagonal.svg index 9032f79f4..86a1723cb 100644 --- a/icons/arrows-diagonal.svg +++ b/icons/arrows-diagonal.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-diff.svg b/icons/arrows-diff.svg index cf880d49a..a775f8342 100644 --- a/icons/arrows-diff.svg +++ b/icons/arrows-diff.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/arrows-double-ne-sw.svg b/icons/arrows-double-ne-sw.svg index 672436431..32e7d7efa 100644 --- a/icons/arrows-double-ne-sw.svg +++ b/icons/arrows-double-ne-sw.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-double-nw-se.svg b/icons/arrows-double-nw-se.svg index 019f2c4c2..c11fcd90f 100644 --- a/icons/arrows-double-nw-se.svg +++ b/icons/arrows-double-nw-se.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-double-se-nw.svg b/icons/arrows-double-se-nw.svg index 1a687e86c..7ef9b85c7 100644 --- a/icons/arrows-double-se-nw.svg +++ b/icons/arrows-double-se-nw.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-double-sw-ne.svg b/icons/arrows-double-sw-ne.svg index 0a4db055d..7f58c9f4a 100644 --- a/icons/arrows-double-sw-ne.svg +++ b/icons/arrows-double-sw-ne.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-down-up.svg b/icons/arrows-down-up.svg index f64cecf4e..d25f9f10e 100644 --- a/icons/arrows-down-up.svg +++ b/icons/arrows-down-up.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-down.svg b/icons/arrows-down.svg index b66a1864e..a0571b530 100644 --- a/icons/arrows-down.svg +++ b/icons/arrows-down.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-exchange-2.svg b/icons/arrows-exchange-2.svg index 97be54e2c..4a08e9550 100644 --- a/icons/arrows-exchange-2.svg +++ b/icons/arrows-exchange-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrows-exchange.svg b/icons/arrows-exchange.svg index 8deed8090..904bc2901 100644 --- a/icons/arrows-exchange.svg +++ b/icons/arrows-exchange.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrows-horizontal.svg b/icons/arrows-horizontal.svg index 5eb14025a..1317eb94f 100644 --- a/icons/arrows-horizontal.svg +++ b/icons/arrows-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-join-2.svg b/icons/arrows-join-2.svg index a174846c5..91ec5219d 100644 --- a/icons/arrows-join-2.svg +++ b/icons/arrows-join-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-join.svg b/icons/arrows-join.svg index a0ca7f990..a49927f58 100644 --- a/icons/arrows-join.svg +++ b/icons/arrows-join.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-left-down.svg b/icons/arrows-left-down.svg index 382c8c3f8..c9a1c7209 100644 --- a/icons/arrows-left-down.svg +++ b/icons/arrows-left-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-left-right.svg b/icons/arrows-left-right.svg index be1094f2c..7a7d92e82 100644 --- a/icons/arrows-left-right.svg +++ b/icons/arrows-left-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-left.svg b/icons/arrows-left.svg index c8bb45dc8..2392ba96c 100644 --- a/icons/arrows-left.svg +++ b/icons/arrows-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-maximize.svg b/icons/arrows-maximize.svg index b19e10f2c..673683def 100644 --- a/icons/arrows-maximize.svg +++ b/icons/arrows-maximize.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/arrows-minimize.svg b/icons/arrows-minimize.svg index 494383cdc..ed13b7d4e 100644 --- a/icons/arrows-minimize.svg +++ b/icons/arrows-minimize.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/arrows-move-horizontal.svg b/icons/arrows-move-horizontal.svg index 4dcf785af..707cb7ccb 100644 --- a/icons/arrows-move-horizontal.svg +++ b/icons/arrows-move-horizontal.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-move-vertical.svg b/icons/arrows-move-vertical.svg index 101f16e9f..eca87ac94 100644 --- a/icons/arrows-move-vertical.svg +++ b/icons/arrows-move-vertical.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-move.svg b/icons/arrows-move.svg index 4b4b98680..b71e690fc 100644 --- a/icons/arrows-move.svg +++ b/icons/arrows-move.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/arrows-random.svg b/icons/arrows-random.svg index d03023148..19d1bc783 100644 --- a/icons/arrows-random.svg +++ b/icons/arrows-random.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/arrows-right-down.svg b/icons/arrows-right-down.svg index f0f74a8d8..04b901546 100644 --- a/icons/arrows-right-down.svg +++ b/icons/arrows-right-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-right-left.svg b/icons/arrows-right-left.svg index c6ed9f2c8..72bdeabc3 100644 --- a/icons/arrows-right-left.svg +++ b/icons/arrows-right-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-right.svg b/icons/arrows-right.svg index 28f3b2666..35bf6f9a0 100644 --- a/icons/arrows-right.svg +++ b/icons/arrows-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-shuffle-2.svg b/icons/arrows-shuffle-2.svg index 5faaf3e6a..cea828fe7 100644 --- a/icons/arrows-shuffle-2.svg +++ b/icons/arrows-shuffle-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-shuffle.svg b/icons/arrows-shuffle.svg index 1b686444a..dcc173c05 100644 --- a/icons/arrows-shuffle.svg +++ b/icons/arrows-shuffle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-sort.svg b/icons/arrows-sort.svg index 74c10569a..e025846ad 100644 --- a/icons/arrows-sort.svg +++ b/icons/arrows-sort.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/arrows-split-2.svg b/icons/arrows-split-2.svg index 3d9959258..89ad18a6e 100644 --- a/icons/arrows-split-2.svg +++ b/icons/arrows-split-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-split.svg b/icons/arrows-split.svg index 4ec09aeec..6cbe58f86 100644 --- a/icons/arrows-split.svg +++ b/icons/arrows-split.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-transfer-down.svg b/icons/arrows-transfer-down.svg index 4bfb96122..73e2dc8d9 100644 --- a/icons/arrows-transfer-down.svg +++ b/icons/arrows-transfer-down.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/arrows-transfer-up.svg b/icons/arrows-transfer-up.svg index 30bc8633e..7fc7b4627 100644 --- a/icons/arrows-transfer-up.svg +++ b/icons/arrows-transfer-up.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/arrows-up-down.svg b/icons/arrows-up-down.svg index 7ea25671c..b629f47aa 100644 --- a/icons/arrows-up-down.svg +++ b/icons/arrows-up-down.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-up-left.svg b/icons/arrows-up-left.svg index a8b3eff80..9c2d93fac 100644 --- a/icons/arrows-up-left.svg +++ b/icons/arrows-up-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-up-right.svg b/icons/arrows-up-right.svg index 6d0227cc3..75d836941 100644 --- a/icons/arrows-up-right.svg +++ b/icons/arrows-up-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/arrows-up.svg b/icons/arrows-up.svg index f46fc9e3e..b89545cf8 100644 --- a/icons/arrows-up.svg +++ b/icons/arrows-up.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/arrows-vertical.svg b/icons/arrows-vertical.svg index e2678b777..80add3660 100644 --- a/icons/arrows-vertical.svg +++ b/icons/arrows-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/artboard-off.svg b/icons/artboard-off.svg index ca1d981c0..87111ffbb 100644 --- a/icons/artboard-off.svg +++ b/icons/artboard-off.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/artboard.svg b/icons/artboard.svg index 1e4b47670..f8c53003f 100644 --- a/icons/artboard.svg +++ b/icons/artboard.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/article-off.svg b/icons/article-off.svg index dfb002065..7f6ff0902 100644 --- a/icons/article-off.svg +++ b/icons/article-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/article.svg b/icons/article.svg index 7a943a587..1753b32f7 100644 --- a/icons/article.svg +++ b/icons/article.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/aspect-ratio-off.svg b/icons/aspect-ratio-off.svg index b3c5b380b..94b20213d 100644 --- a/icons/aspect-ratio-off.svg +++ b/icons/aspect-ratio-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/aspect-ratio.svg b/icons/aspect-ratio.svg index af216ad82..472a854df 100644 --- a/icons/aspect-ratio.svg +++ b/icons/aspect-ratio.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/assembly-off.svg b/icons/assembly-off.svg index 627a62006..eb82eb213 100644 --- a/icons/assembly-off.svg +++ b/icons/assembly-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/assembly.svg b/icons/assembly.svg index a4aa41025..bdfd4d664 100644 --- a/icons/assembly.svg +++ b/icons/assembly.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/asset.svg b/icons/asset.svg index 59f594558..c5a2aa927 100644 --- a/icons/asset.svg +++ b/icons/asset.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/asterisk-simple.svg b/icons/asterisk-simple.svg index 0c4e72d51..7323cd560 100644 --- a/icons/asterisk-simple.svg +++ b/icons/asterisk-simple.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/asterisk.svg b/icons/asterisk.svg index f9c5d33f0..1c7a51804 100644 --- a/icons/asterisk.svg +++ b/icons/asterisk.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/at-off.svg b/icons/at-off.svg index 1d3960d1d..7c2a4a1cd 100644 --- a/icons/at-off.svg +++ b/icons/at-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/at.svg b/icons/at.svg index f9bbeafde..f4829a91f 100644 --- a/icons/at.svg +++ b/icons/at.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/atom-2.svg b/icons/atom-2.svg index f3656b1e3..9dde7ea94 100644 --- a/icons/atom-2.svg +++ b/icons/atom-2.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/atom-off.svg b/icons/atom-off.svg index b37b84382..282192cbb 100644 --- a/icons/atom-off.svg +++ b/icons/atom-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/atom.svg b/icons/atom.svg index b9fba02d4..89ff646b4 100644 --- a/icons/atom.svg +++ b/icons/atom.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/augmented-reality-2.svg b/icons/augmented-reality-2.svg index fce1affec..850f5c61f 100644 --- a/icons/augmented-reality-2.svg +++ b/icons/augmented-reality-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/augmented-reality-off.svg b/icons/augmented-reality-off.svg index eb92c9ef8..804c65dd3 100644 --- a/icons/augmented-reality-off.svg +++ b/icons/augmented-reality-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/augmented-reality.svg b/icons/augmented-reality.svg index a01d67a30..629ff28a8 100644 --- a/icons/augmented-reality.svg +++ b/icons/augmented-reality.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/award-off.svg b/icons/award-off.svg index 28d787838..7dcaaf1cf 100644 --- a/icons/award-off.svg +++ b/icons/award-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/award.svg b/icons/award.svg index 68ee27364..56e64c61b 100644 --- a/icons/award.svg +++ b/icons/award.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/axe.svg b/icons/axe.svg index 5afdc36f3..3f92b0b4b 100644 --- a/icons/axe.svg +++ b/icons/axe.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/axis-x.svg b/icons/axis-x.svg index d06128bac..7748b509f 100644 --- a/icons/axis-x.svg +++ b/icons/axis-x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/axis-y.svg b/icons/axis-y.svg index 968babe37..e47cec011 100644 --- a/icons/axis-y.svg +++ b/icons/axis-y.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/baby-bottle.svg b/icons/baby-bottle.svg index 18e8c7d38..7c6cfddee 100644 --- a/icons/baby-bottle.svg +++ b/icons/baby-bottle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/baby-carriage.svg b/icons/baby-carriage.svg index a3a397d42..20fe81f58 100644 --- a/icons/baby-carriage.svg +++ b/icons/baby-carriage.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/backhoe.svg b/icons/backhoe.svg index 4f3b3abcf..68ae6d756 100644 --- a/icons/backhoe.svg +++ b/icons/backhoe.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/backpack-off.svg b/icons/backpack-off.svg index 3402ed657..4fb9beb72 100644 --- a/icons/backpack-off.svg +++ b/icons/backpack-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/backpack.svg b/icons/backpack.svg index d8a68b46f..3e4be3414 100644 --- a/icons/backpack.svg +++ b/icons/backpack.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/backspace.svg b/icons/backspace.svg index bbb80c192..56e509a1b 100644 --- a/icons/backspace.svg +++ b/icons/backspace.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/badge-3d.svg b/icons/badge-3d.svg index 45cd26c97..b9ed78186 100644 --- a/icons/badge-3d.svg +++ b/icons/badge-3d.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badge-4k.svg b/icons/badge-4k.svg index d4ceb5f93..c24e0b758 100644 --- a/icons/badge-4k.svg +++ b/icons/badge-4k.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/badge-8k.svg b/icons/badge-8k.svg index 317b06dda..fa60ad4bd 100644 --- a/icons/badge-8k.svg +++ b/icons/badge-8k.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/badge-ad.svg b/icons/badge-ad.svg index f57873608..974caf873 100644 --- a/icons/badge-ad.svg +++ b/icons/badge-ad.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/badge-ar.svg b/icons/badge-ar.svg index 4b8dcadbb..79860c970 100644 --- a/icons/badge-ar.svg +++ b/icons/badge-ar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/badge-cc.svg b/icons/badge-cc.svg index d25b2ea22..7861e259b 100644 --- a/icons/badge-cc.svg +++ b/icons/badge-cc.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badge-filled.svg b/icons/badge-filled.svg new file mode 100644 index 000000000..e17964f69 --- /dev/null +++ b/icons/badge-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-hd.svg b/icons/badge-hd.svg index 185cfd525..060d36522 100644 --- a/icons/badge-hd.svg +++ b/icons/badge-hd.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/badge-off.svg b/icons/badge-off.svg index bbc92212e..5dc5ec8c5 100644 --- a/icons/badge-off.svg +++ b/icons/badge-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/badge-sd.svg b/icons/badge-sd.svg index 1a2ef72af..c15799fae 100644 --- a/icons/badge-sd.svg +++ b/icons/badge-sd.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badge-tm.svg b/icons/badge-tm.svg index 0e4a01ee4..da9bc5892 100644 --- a/icons/badge-tm.svg +++ b/icons/badge-tm.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/badge-vo.svg b/icons/badge-vo.svg index 6dc4b29a7..c6744e6cf 100644 --- a/icons/badge-vo.svg +++ b/icons/badge-vo.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badge-vr.svg b/icons/badge-vr.svg index 7205c264e..52e2987cd 100644 --- a/icons/badge-vr.svg +++ b/icons/badge-vr.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badge-wc.svg b/icons/badge-wc.svg index 1e412b827..c7ff08499 100644 --- a/icons/badge-wc.svg +++ b/icons/badge-wc.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badges-off.svg b/icons/badges-off.svg index e6c3e894f..8ee31a33b 100644 --- a/icons/badges-off.svg +++ b/icons/badges-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/badges.svg b/icons/badges.svg index e5ffa89a5..815028f15 100644 --- a/icons/badges.svg +++ b/icons/badges.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/baguette.svg b/icons/baguette.svg index 0913ef93e..bd6a30fc2 100644 --- a/icons/baguette.svg +++ b/icons/baguette.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ball-american-football-off.svg b/icons/ball-american-football-off.svg index 2b48056bc..abc933ae7 100644 --- a/icons/ball-american-football-off.svg +++ b/icons/ball-american-football-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ball-american-football.svg b/icons/ball-american-football.svg index 9c09d26d3..08a349479 100644 --- a/icons/ball-american-football.svg +++ b/icons/ball-american-football.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ball-baseball.svg b/icons/ball-baseball.svg index bbe566200..086226cb6 100644 --- a/icons/ball-baseball.svg +++ b/icons/ball-baseball.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/ball-basketball.svg b/icons/ball-basketball.svg index f4e18963d..de5e4c148 100644 --- a/icons/ball-basketball.svg +++ b/icons/ball-basketball.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ball-bowling.svg b/icons/ball-bowling.svg index 541737455..f76541d0b 100644 --- a/icons/ball-bowling.svg +++ b/icons/ball-bowling.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ball-football-off.svg b/icons/ball-football-off.svg index 80dd8caa3..6912229c1 100644 --- a/icons/ball-football-off.svg +++ b/icons/ball-football-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/ball-football.svg b/icons/ball-football.svg index 37ae8528c..6db3e2ef4 100644 --- a/icons/ball-football.svg +++ b/icons/ball-football.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ball-tennis.svg b/icons/ball-tennis.svg index 2df5e3e90..6d78fdaaa 100644 --- a/icons/ball-tennis.svg +++ b/icons/ball-tennis.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ball-volleyball.svg b/icons/ball-volleyball.svg index 8d7d097a1..e866f5f47 100644 --- a/icons/ball-volleyball.svg +++ b/icons/ball-volleyball.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/ballon-off.svg b/icons/ballon-off.svg index 9706d304f..cb6a90664 100644 --- a/icons/ballon-off.svg +++ b/icons/ballon-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ballon.svg b/icons/ballon.svg index 0c10a232a..154fb2e27 100644 --- a/icons/ballon.svg +++ b/icons/ballon.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ballpen-off.svg b/icons/ballpen-off.svg index 57cdd6c36..0cbffaa88 100644 --- a/icons/ballpen-off.svg +++ b/icons/ballpen-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ballpen.svg b/icons/ballpen.svg index 4f3ad943b..6f046769d 100644 --- a/icons/ballpen.svg +++ b/icons/ballpen.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ban.svg b/icons/ban.svg index 856756119..85303bc9a 100644 --- a/icons/ban.svg +++ b/icons/ban.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bandage-off.svg b/icons/bandage-off.svg index 394180f4d..766353e02 100644 --- a/icons/bandage-off.svg +++ b/icons/bandage-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bandage.svg b/icons/bandage.svg index bc6a720d3..0128dcb12 100644 --- a/icons/bandage.svg +++ b/icons/bandage.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/barbell-off.svg b/icons/barbell-off.svg index 2753287c5..dc050fa26 100644 --- a/icons/barbell-off.svg +++ b/icons/barbell-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/barbell.svg b/icons/barbell.svg index 0963b0724..2fed4d343 100644 --- a/icons/barbell.svg +++ b/icons/barbell.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/barcode-off.svg b/icons/barcode-off.svg index 6effe1b1a..f73542652 100644 --- a/icons/barcode-off.svg +++ b/icons/barcode-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/barcode.svg b/icons/barcode.svg index ec7535a0a..8e5ee4349 100644 --- a/icons/barcode.svg +++ b/icons/barcode.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/barrel-off.svg b/icons/barrel-off.svg index bed7c63bf..7294c2d0d 100644 --- a/icons/barrel-off.svg +++ b/icons/barrel-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/barrel.svg b/icons/barrel.svg index 30e0b9c13..e3950e98a 100644 --- a/icons/barrel.svg +++ b/icons/barrel.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/barrier-block-off.svg b/icons/barrier-block-off.svg index 91f770fd7..b9668c6b4 100644 --- a/icons/barrier-block-off.svg +++ b/icons/barrier-block-off.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/barrier-block.svg b/icons/barrier-block.svg index 1a6646939..42395b6c1 100644 --- a/icons/barrier-block.svg +++ b/icons/barrier-block.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/baseline.svg b/icons/baseline.svg index bf790ff9a..edb3185f8 100644 --- a/icons/baseline.svg +++ b/icons/baseline.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/basket-off.svg b/icons/basket-off.svg index 9dc4b6065..32421c141 100644 --- a/icons/basket-off.svg +++ b/icons/basket-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/basket.svg b/icons/basket.svg index 43d7d0d05..413476738 100644 --- a/icons/basket.svg +++ b/icons/basket.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bat.svg b/icons/bat.svg index aaba6e477..6e69527d4 100644 --- a/icons/bat.svg +++ b/icons/bat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bath-off.svg b/icons/bath-off.svg index f8e468a9f..b6225bc96 100644 --- a/icons/bath-off.svg +++ b/icons/bath-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/bath.svg b/icons/bath.svg index 61049924e..1edbad9e1 100644 --- a/icons/bath.svg +++ b/icons/bath.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/battery-1.svg b/icons/battery-1.svg index 7dd6b4a33..8aef860c2 100644 --- a/icons/battery-1.svg +++ b/icons/battery-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/battery-2.svg b/icons/battery-2.svg index 548fa957e..8690f4113 100644 --- a/icons/battery-2.svg +++ b/icons/battery-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/battery-3.svg b/icons/battery-3.svg index 33585bfa2..0a2f22f83 100644 --- a/icons/battery-3.svg +++ b/icons/battery-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/battery-4.svg b/icons/battery-4.svg index 58b58b30f..a708754a3 100644 --- a/icons/battery-4.svg +++ b/icons/battery-4.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/battery-automotive.svg b/icons/battery-automotive.svg index 1b694cd7f..89272bbdd 100644 --- a/icons/battery-automotive.svg +++ b/icons/battery-automotive.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/battery-charging-2.svg b/icons/battery-charging-2.svg index 6d92f485f..f97d62af0 100644 --- a/icons/battery-charging-2.svg +++ b/icons/battery-charging-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/battery-charging.svg b/icons/battery-charging.svg index 2d5932b22..faee2d2bc 100644 --- a/icons/battery-charging.svg +++ b/icons/battery-charging.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/battery-eco.svg b/icons/battery-eco.svg index ebf64d8a0..fc299ecd6 100644 --- a/icons/battery-eco.svg +++ b/icons/battery-eco.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/battery-filled.svg b/icons/battery-filled.svg new file mode 100644 index 000000000..14a91640b --- /dev/null +++ b/icons/battery-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/battery-off.svg b/icons/battery-off.svg index ab7c86bd8..1f3bfedf7 100644 --- a/icons/battery-off.svg +++ b/icons/battery-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/beach-off.svg b/icons/beach-off.svg index ba75d6651..5a226dae2 100644 --- a/icons/beach-off.svg +++ b/icons/beach-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/beach.svg b/icons/beach.svg index 37fd9fced..7181bf1f0 100644 --- a/icons/beach.svg +++ b/icons/beach.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/bed-off.svg b/icons/bed-off.svg index 958d8a2d5..8de8068d0 100644 --- a/icons/bed-off.svg +++ b/icons/bed-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/bed.svg b/icons/bed.svg index b343cb920..ebae22562 100644 --- a/icons/bed.svg +++ b/icons/bed.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/beer-off.svg b/icons/beer-off.svg index 436e9b32b..379ddace3 100644 --- a/icons/beer-off.svg +++ b/icons/beer-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/beer.svg b/icons/beer.svg index b42c169da..7a465f382 100644 --- a/icons/beer.svg +++ b/icons/beer.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bell-filled.svg b/icons/bell-filled.svg new file mode 100644 index 000000000..26f786df2 --- /dev/null +++ b/icons/bell-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/bell-minus.svg b/icons/bell-minus.svg index f8f8aaf65..8cb2cb457 100644 --- a/icons/bell-minus.svg +++ b/icons/bell-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bell-off.svg b/icons/bell-off.svg index fd0bee0cb..41381d751 100644 --- a/icons/bell-off.svg +++ b/icons/bell-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bell-plus.svg b/icons/bell-plus.svg index 4b2397db0..ace04ad76 100644 --- a/icons/bell-plus.svg +++ b/icons/bell-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bell-ringing-2.svg b/icons/bell-ringing-2.svg index ecdc8adce..f3f1bb0ae 100644 --- a/icons/bell-ringing-2.svg +++ b/icons/bell-ringing-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bell-ringing.svg b/icons/bell-ringing.svg index 83f717d7b..882a19946 100644 --- a/icons/bell-ringing.svg +++ b/icons/bell-ringing.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bell-school.svg b/icons/bell-school.svg index 1c48ba1ad..db7c49e47 100644 --- a/icons/bell-school.svg +++ b/icons/bell-school.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/bell-x.svg b/icons/bell-x.svg index 31e0df683..e667743e5 100644 --- a/icons/bell-x.svg +++ b/icons/bell-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bell-z.svg b/icons/bell-z.svg index d880621b4..d4bfe9a6a 100644 --- a/icons/bell-z.svg +++ b/icons/bell-z.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bell.svg b/icons/bell.svg index f7608e211..9d4929f4f 100644 --- a/icons/bell.svg +++ b/icons/bell.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bible.svg b/icons/bible.svg index b41ba9ef2..52906bcab 100644 --- a/icons/bible.svg +++ b/icons/bible.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bike-off.svg b/icons/bike-off.svg index b370ce253..6f90441e0 100644 --- a/icons/bike-off.svg +++ b/icons/bike-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/bike.svg b/icons/bike.svg index 4a647d243..eea536b0d 100644 --- a/icons/bike.svg +++ b/icons/bike.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/binary-off.svg b/icons/binary-off.svg index dbfa72157..14b2e9546 100644 --- a/icons/binary-off.svg +++ b/icons/binary-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/binary-tree-2.svg b/icons/binary-tree-2.svg index 1bc900b97..fde6a5995 100644 --- a/icons/binary-tree-2.svg +++ b/icons/binary-tree-2.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/binary-tree.svg b/icons/binary-tree.svg index 97b3498ef..af4a6e762 100644 --- a/icons/binary-tree.svg +++ b/icons/binary-tree.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/binary.svg b/icons/binary.svg index 5e9ca39ed..3fdf212ae 100644 --- a/icons/binary.svg +++ b/icons/binary.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/biohazard-off.svg b/icons/biohazard-off.svg index 1f85fd811..c461d0004 100644 --- a/icons/biohazard-off.svg +++ b/icons/biohazard-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/biohazard.svg b/icons/biohazard.svg index 6a58d35b0..1b03f6d56 100644 --- a/icons/biohazard.svg +++ b/icons/biohazard.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/blade.svg b/icons/blade.svg index eb15c4720..3359290ec 100644 --- a/icons/blade.svg +++ b/icons/blade.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/bleach-chlorine.svg b/icons/bleach-chlorine.svg index 82ea3aa5a..d0009fcc6 100644 --- a/icons/bleach-chlorine.svg +++ b/icons/bleach-chlorine.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bleach-no-chlorine.svg b/icons/bleach-no-chlorine.svg index 66dbb626b..5d84f901f 100644 --- a/icons/bleach-no-chlorine.svg +++ b/icons/bleach-no-chlorine.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bleach-off.svg b/icons/bleach-off.svg index 5445af031..756c59fd2 100644 --- a/icons/bleach-off.svg +++ b/icons/bleach-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/blockquote.svg b/icons/blockquote.svg index f21cc58bf..e8e002990 100644 --- a/icons/blockquote.svg +++ b/icons/blockquote.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/bluetooth-connected.svg b/icons/bluetooth-connected.svg index 995de854a..4ef159e3e 100644 --- a/icons/bluetooth-connected.svg +++ b/icons/bluetooth-connected.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bluetooth-off.svg b/icons/bluetooth-off.svg index 786e54727..fc1afaec4 100644 --- a/icons/bluetooth-off.svg +++ b/icons/bluetooth-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bluetooth-x.svg b/icons/bluetooth-x.svg index f3d1920ba..2c9420ee6 100644 --- a/icons/bluetooth-x.svg +++ b/icons/bluetooth-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bluetooth.svg b/icons/bluetooth.svg index cb93d37ba..77df8a18e 100644 --- a/icons/bluetooth.svg +++ b/icons/bluetooth.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/blur-off.svg b/icons/blur-off.svg index 577d7f522..1552924a4 100644 --- a/icons/blur-off.svg +++ b/icons/blur-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/blur.svg b/icons/blur.svg index 698d23c9c..9271e9f7d 100644 --- a/icons/blur.svg +++ b/icons/blur.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/bmp.svg b/icons/bmp.svg index b182f8daf..7616f4e2d 100644 --- a/icons/bmp.svg +++ b/icons/bmp.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bold-off.svg b/icons/bold-off.svg index da4de27f7..cebe857bd 100644 --- a/icons/bold-off.svg +++ b/icons/bold-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bold.svg b/icons/bold.svg index a10764807..1d4b8d4e2 100644 --- a/icons/bold.svg +++ b/icons/bold.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bolt-off.svg b/icons/bolt-off.svg index 03eed9fed..9f201932d 100644 --- a/icons/bolt-off.svg +++ b/icons/bolt-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bolt.svg b/icons/bolt.svg index c2a3e8087..37bdc9683 100644 --- a/icons/bolt.svg +++ b/icons/bolt.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/bomb.svg b/icons/bomb.svg index 286ef5daf..7045b9106 100644 --- a/icons/bomb.svg +++ b/icons/bomb.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bone-off.svg b/icons/bone-off.svg index 4a5c24c67..e507bf223 100644 --- a/icons/bone-off.svg +++ b/icons/bone-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bone.svg b/icons/bone.svg index c02c52a81..b05a158aa 100644 --- a/icons/bone.svg +++ b/icons/bone.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/bong-off.svg b/icons/bong-off.svg index 5a93fd66f..f821faf1e 100644 --- a/icons/bong-off.svg +++ b/icons/bong-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bong.svg b/icons/bong.svg index 3dbdcc47c..8ea4418ae 100644 --- a/icons/bong.svg +++ b/icons/bong.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/book-2.svg b/icons/book-2.svg index e136c7157..8f4af6e2d 100644 --- a/icons/book-2.svg +++ b/icons/book-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/book-download.svg b/icons/book-download.svg index 5cb8c60ef..e8b06dd97 100644 --- a/icons/book-download.svg +++ b/icons/book-download.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/book-off.svg b/icons/book-off.svg index 1446649f7..809d791bf 100644 --- a/icons/book-off.svg +++ b/icons/book-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/book-upload.svg b/icons/book-upload.svg index eee0d0df0..e502e045a 100644 --- a/icons/book-upload.svg +++ b/icons/book-upload.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/book.svg b/icons/book.svg index 519a427de..30b3688a4 100644 --- a/icons/book.svg +++ b/icons/book.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/bookmark-off.svg b/icons/bookmark-off.svg index fba44bfd4..7b4ff9a51 100644 --- a/icons/bookmark-off.svg +++ b/icons/bookmark-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bookmarks-off.svg b/icons/bookmarks-off.svg index 87232500c..ce87381fa 100644 --- a/icons/bookmarks-off.svg +++ b/icons/bookmarks-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bookmarks.svg b/icons/bookmarks.svg index 58e53f851..88b458c71 100644 --- a/icons/bookmarks.svg +++ b/icons/bookmarks.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/books-off.svg b/icons/books-off.svg index 039718712..f970afe7a 100644 --- a/icons/books-off.svg +++ b/icons/books-off.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/books.svg b/icons/books.svg index 8d6a288dc..d21d67690 100644 --- a/icons/books.svg +++ b/icons/books.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/border-all.svg b/icons/border-all.svg index 70a668b66..47bb6c0dc 100644 --- a/icons/border-all.svg +++ b/icons/border-all.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/border-bottom.svg b/icons/border-bottom.svg index 8863bfb12..4ada5c0b1 100644 --- a/icons/border-bottom.svg +++ b/icons/border-bottom.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/border-horizontal.svg b/icons/border-horizontal.svg index 40b044e01..460b060a4 100644 --- a/icons/border-horizontal.svg +++ b/icons/border-horizontal.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/border-inner.svg b/icons/border-inner.svg index 9e85782ea..1445e576a 100644 --- a/icons/border-inner.svg +++ b/icons/border-inner.svg @@ -1,19 +1,6 @@ - - - - - - - - - - - - - - + diff --git a/icons/border-left.svg b/icons/border-left.svg index f70d08aae..fd023de98 100644 --- a/icons/border-left.svg +++ b/icons/border-left.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/border-none.svg b/icons/border-none.svg index ddfaee957..b27426e0f 100644 --- a/icons/border-none.svg +++ b/icons/border-none.svg @@ -1,26 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - + diff --git a/icons/border-outer.svg b/icons/border-outer.svg index 92298124b..0766b224a 100644 --- a/icons/border-outer.svg +++ b/icons/border-outer.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/border-radius.svg b/icons/border-radius.svg index 6f0cb9907..a2d321165 100644 --- a/icons/border-radius.svg +++ b/icons/border-radius.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/border-right.svg b/icons/border-right.svg index 7f87b32b1..0c714008d 100644 --- a/icons/border-right.svg +++ b/icons/border-right.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/border-style-2.svg b/icons/border-style-2.svg index 0b6077c12..d7c9b997e 100644 --- a/icons/border-style-2.svg +++ b/icons/border-style-2.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/border-style.svg b/icons/border-style.svg index b5196f86b..f4ba8bc78 100644 --- a/icons/border-style.svg +++ b/icons/border-style.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/border-top.svg b/icons/border-top.svg index 80973c54e..b0780f46d 100644 --- a/icons/border-top.svg +++ b/icons/border-top.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/border-vertical.svg b/icons/border-vertical.svg index c6840f2f7..f1bc4b54b 100644 --- a/icons/border-vertical.svg +++ b/icons/border-vertical.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/bottle-off.svg b/icons/bottle-off.svg index 8e132d070..3d2cfcb95 100644 --- a/icons/bottle-off.svg +++ b/icons/bottle-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bottle.svg b/icons/bottle.svg index 517374af5..1ddc1262c 100644 --- a/icons/bottle.svg +++ b/icons/bottle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bounce-left.svg b/icons/bounce-left.svg index 3932ae1e9..7a56b1184 100644 --- a/icons/bounce-left.svg +++ b/icons/bounce-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bounce-right.svg b/icons/bounce-right.svg index af7788181..818118e70 100644 --- a/icons/bounce-right.svg +++ b/icons/bounce-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bow.svg b/icons/bow.svg index 132bb8b86..398be8d98 100644 --- a/icons/bow.svg +++ b/icons/bow.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/box-align-bottom-left.svg b/icons/box-align-bottom-left.svg index c1b2cd590..3bc781c98 100644 --- a/icons/box-align-bottom-left.svg +++ b/icons/box-align-bottom-left.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/box-align-bottom-right.svg b/icons/box-align-bottom-right.svg index 350a08ed7..70fd9cf58 100644 --- a/icons/box-align-bottom-right.svg +++ b/icons/box-align-bottom-right.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/box-align-bottom.svg b/icons/box-align-bottom.svg index 7bf0150e4..b24798460 100644 --- a/icons/box-align-bottom.svg +++ b/icons/box-align-bottom.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/box-align-left.svg b/icons/box-align-left.svg index c6363fcfd..ea483afdf 100644 --- a/icons/box-align-left.svg +++ b/icons/box-align-left.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/box-align-right.svg b/icons/box-align-right.svg index ff80c9b94..0a04c647d 100644 --- a/icons/box-align-right.svg +++ b/icons/box-align-right.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/box-align-top-left.svg b/icons/box-align-top-left.svg index 0c5c990ef..008c17f8f 100644 --- a/icons/box-align-top-left.svg +++ b/icons/box-align-top-left.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/box-align-top-right.svg b/icons/box-align-top-right.svg index ae6be239f..388d68861 100644 --- a/icons/box-align-top-right.svg +++ b/icons/box-align-top-right.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/box-align-top.svg b/icons/box-align-top.svg index 88aea5376..2725e709e 100644 --- a/icons/box-align-top.svg +++ b/icons/box-align-top.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/box-margin.svg b/icons/box-margin.svg index d9c8e269f..260c2f982 100644 --- a/icons/box-margin.svg +++ b/icons/box-margin.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/box-model-2-off.svg b/icons/box-model-2-off.svg index 918c0c8b5..488a147cb 100644 --- a/icons/box-model-2-off.svg +++ b/icons/box-model-2-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-model-2.svg b/icons/box-model-2.svg index 5a7b82728..261c236e3 100644 --- a/icons/box-model-2.svg +++ b/icons/box-model-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/box-model-off.svg b/icons/box-model-off.svg index 7ae5eac70..e79378ceb 100644 --- a/icons/box-model-off.svg +++ b/icons/box-model-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/box-model.svg b/icons/box-model.svg index 8fe693621..d1f1c8b5d 100644 --- a/icons/box-model.svg +++ b/icons/box-model.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/box-multiple-0.svg b/icons/box-multiple-0.svg index 1cf5796b1..33bda6915 100644 --- a/icons/box-multiple-0.svg +++ b/icons/box-multiple-0.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-1.svg b/icons/box-multiple-1.svg index 903194980..13e34872d 100644 --- a/icons/box-multiple-1.svg +++ b/icons/box-multiple-1.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-2.svg b/icons/box-multiple-2.svg index c4ef4138e..80bfc42b3 100644 --- a/icons/box-multiple-2.svg +++ b/icons/box-multiple-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-3.svg b/icons/box-multiple-3.svg index 5b6a3846f..0e0e32483 100644 --- a/icons/box-multiple-3.svg +++ b/icons/box-multiple-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/box-multiple-4.svg b/icons/box-multiple-4.svg index 29a26cda1..50e885e77 100644 --- a/icons/box-multiple-4.svg +++ b/icons/box-multiple-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-5.svg b/icons/box-multiple-5.svg index e5abb8eb0..214fe4a66 100644 --- a/icons/box-multiple-5.svg +++ b/icons/box-multiple-5.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-6.svg b/icons/box-multiple-6.svg index 46427126d..eba558cd1 100644 --- a/icons/box-multiple-6.svg +++ b/icons/box-multiple-6.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/box-multiple-7.svg b/icons/box-multiple-7.svg index ccb01d630..22c812eb6 100644 --- a/icons/box-multiple-7.svg +++ b/icons/box-multiple-7.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/box-multiple-8.svg b/icons/box-multiple-8.svg index c799f55f1..2cb7d1c1b 100644 --- a/icons/box-multiple-8.svg +++ b/icons/box-multiple-8.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/box-multiple-9.svg b/icons/box-multiple-9.svg index fca04b3c2..32cc39115 100644 --- a/icons/box-multiple-9.svg +++ b/icons/box-multiple-9.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/box-multiple.svg b/icons/box-multiple.svg index b556fee48..b52cb2ead 100644 --- a/icons/box-multiple.svg +++ b/icons/box-multiple.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/box-off.svg b/icons/box-off.svg index 562f261e3..a61167848 100644 --- a/icons/box-off.svg +++ b/icons/box-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/box-padding.svg b/icons/box-padding.svg index ea0b75d7b..8b05d47ba 100644 --- a/icons/box-padding.svg +++ b/icons/box-padding.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/box-seam.svg b/icons/box-seam.svg index c906c6dd6..78bf0a556 100644 --- a/icons/box-seam.svg +++ b/icons/box-seam.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/box.svg b/icons/box.svg index 1facc1f39..82fb0a182 100644 --- a/icons/box.svg +++ b/icons/box.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/braces-off.svg b/icons/braces-off.svg index a84acdb3e..6a08bd22d 100644 --- a/icons/braces-off.svg +++ b/icons/braces-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/braces.svg b/icons/braces.svg index 71c80274d..12fde4383 100644 --- a/icons/braces.svg +++ b/icons/braces.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brackets-contain-end.svg b/icons/brackets-contain-end.svg index 85742b530..2d80c9c77 100644 --- a/icons/brackets-contain-end.svg +++ b/icons/brackets-contain-end.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brackets-contain-start.svg b/icons/brackets-contain-start.svg index e659d8638..863595882 100644 --- a/icons/brackets-contain-start.svg +++ b/icons/brackets-contain-start.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brackets-contain.svg b/icons/brackets-contain.svg index dcf0564a2..78210c40f 100644 --- a/icons/brackets-contain.svg +++ b/icons/brackets-contain.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brackets-off.svg b/icons/brackets-off.svg index 01be81cd9..7efee0534 100644 --- a/icons/brackets-off.svg +++ b/icons/brackets-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brackets.svg b/icons/brackets.svg index b221fcbcc..7fe2acd4c 100644 --- a/icons/brackets.svg +++ b/icons/brackets.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/braile.svg b/icons/braile.svg index f3e19c54f..16aa9b0c0 100644 --- a/icons/braile.svg +++ b/icons/braile.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brain.svg b/icons/brain.svg index 7661baa95..1e5bb9afd 100644 --- a/icons/brain.svg +++ b/icons/brain.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-4chan.svg b/icons/brand-4chan.svg index 49054774d..f36b006f8 100644 --- a/icons/brand-4chan.svg +++ b/icons/brand-4chan.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-abstract.svg b/icons/brand-abstract.svg index 21413b5ce..01d24c573 100644 --- a/icons/brand-abstract.svg +++ b/icons/brand-abstract.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-adobe.svg b/icons/brand-adobe.svg index 7a3d35fe9..81de315d2 100644 --- a/icons/brand-adobe.svg +++ b/icons/brand-adobe.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-adonis-js.svg b/icons/brand-adonis-js.svg index 21aef9148..391461127 100644 --- a/icons/brand-adonis-js.svg +++ b/icons/brand-adonis-js.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-airtable.svg b/icons/brand-airtable.svg index 1eac5d868..d35b02ccc 100644 --- a/icons/brand-airtable.svg +++ b/icons/brand-airtable.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-algolia.svg b/icons/brand-algolia.svg index 24e1e5b71..3be321d9c 100644 --- a/icons/brand-algolia.svg +++ b/icons/brand-algolia.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-alpine-js.svg b/icons/brand-alpine-js.svg index 0aa136729..d06b0fc47 100644 --- a/icons/brand-alpine-js.svg +++ b/icons/brand-alpine-js.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-amazon.svg b/icons/brand-amazon.svg index bd294dec6..23d130292 100644 --- a/icons/brand-amazon.svg +++ b/icons/brand-amazon.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-amd.svg b/icons/brand-amd.svg index dfd2b53d9..b218341ac 100644 --- a/icons/brand-amd.svg +++ b/icons/brand-amd.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-amigo.svg b/icons/brand-amigo.svg index 27f38b2ae..716737fbe 100644 --- a/icons/brand-amigo.svg +++ b/icons/brand-amigo.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-amongus.svg b/icons/brand-amongus.svg index 2fe3a7b21..1f0fb4256 100644 --- a/icons/brand-amongus.svg +++ b/icons/brand-amongus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-android.svg b/icons/brand-android.svg index e82157bd1..2ab130f9b 100644 --- a/icons/brand-android.svg +++ b/icons/brand-android.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-angular.svg b/icons/brand-angular.svg index 9253854f2..819d87bb6 100644 --- a/icons/brand-angular.svg +++ b/icons/brand-angular.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-ao3.svg b/icons/brand-ao3.svg index e733160ab..9ea22817c 100644 --- a/icons/brand-ao3.svg +++ b/icons/brand-ao3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-appgallery.svg b/icons/brand-appgallery.svg index 2e0a0358e..7393bb82e 100644 --- a/icons/brand-appgallery.svg +++ b/icons/brand-appgallery.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-apple-arcade.svg b/icons/brand-apple-arcade.svg index ee674a297..0b8837293 100644 --- a/icons/brand-apple-arcade.svg +++ b/icons/brand-apple-arcade.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-apple-podcast.svg b/icons/brand-apple-podcast.svg index 1f0315302..3be0668d9 100644 --- a/icons/brand-apple-podcast.svg +++ b/icons/brand-apple-podcast.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-apple.svg b/icons/brand-apple.svg index a559be93b..91f22cd07 100644 --- a/icons/brand-apple.svg +++ b/icons/brand-apple.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-appstore.svg b/icons/brand-appstore.svg index bc96134dc..8937d2af4 100644 --- a/icons/brand-appstore.svg +++ b/icons/brand-appstore.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-asana.svg b/icons/brand-asana.svg index 305123acc..de65f4f89 100644 --- a/icons/brand-asana.svg +++ b/icons/brand-asana.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-backbone.svg b/icons/brand-backbone.svg index d9a7cda1a..09546026c 100644 --- a/icons/brand-backbone.svg +++ b/icons/brand-backbone.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-badoo.svg b/icons/brand-badoo.svg index 84c7dbd62..a488d31c3 100644 --- a/icons/brand-badoo.svg +++ b/icons/brand-badoo.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-baidu.svg b/icons/brand-baidu.svg index bf13ee174..b6fc799f8 100644 --- a/icons/brand-baidu.svg +++ b/icons/brand-baidu.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-bandlab.svg b/icons/brand-bandlab.svg index 6de9b918a..bb2fb61e9 100644 --- a/icons/brand-bandlab.svg +++ b/icons/brand-bandlab.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-beats.svg b/icons/brand-beats.svg index 224aeb0f6..d18454880 100644 --- a/icons/brand-beats.svg +++ b/icons/brand-beats.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-behance.svg b/icons/brand-behance.svg index 7a57cea7f..5e6e6401e 100644 --- a/icons/brand-behance.svg +++ b/icons/brand-behance.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-binance.svg b/icons/brand-binance.svg index 28ef418f2..8b3522f39 100644 --- a/icons/brand-binance.svg +++ b/icons/brand-binance.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-bitbucket.svg b/icons/brand-bitbucket.svg index 5243c24eb..e33cb8132 100644 --- a/icons/brand-bitbucket.svg +++ b/icons/brand-bitbucket.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-blackbery.svg b/icons/brand-blackbery.svg index 6c02027cc..05fd24611 100644 --- a/icons/brand-blackbery.svg +++ b/icons/brand-blackbery.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-blender.svg b/icons/brand-blender.svg index 57c03dc57..f9519c8e7 100644 --- a/icons/brand-blender.svg +++ b/icons/brand-blender.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-blogger.svg b/icons/brand-blogger.svg index 68fac82be..68520c70a 100644 --- a/icons/brand-blogger.svg +++ b/icons/brand-blogger.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-booking.svg b/icons/brand-booking.svg index ff5c9bd23..6730d2a94 100644 --- a/icons/brand-booking.svg +++ b/icons/brand-booking.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-bootstrap.svg b/icons/brand-bootstrap.svg index 42b115395..263ede5a7 100644 --- a/icons/brand-bootstrap.svg +++ b/icons/brand-bootstrap.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-bumble.svg b/icons/brand-bumble.svg index 1313c0e01..bb3586f72 100644 --- a/icons/brand-bumble.svg +++ b/icons/brand-bumble.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-bunpo.svg b/icons/brand-bunpo.svg index bb6406c82..84bce62f6 100644 --- a/icons/brand-bunpo.svg +++ b/icons/brand-bunpo.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-carbon.svg b/icons/brand-carbon.svg index 252865dc8..1c7a67225 100644 --- a/icons/brand-carbon.svg +++ b/icons/brand-carbon.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-chrome.svg b/icons/brand-chrome.svg index 499d7d0cd..890d1453f 100644 --- a/icons/brand-chrome.svg +++ b/icons/brand-chrome.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-citymapper.svg b/icons/brand-citymapper.svg index 9b2a31986..76db2f9b6 100644 --- a/icons/brand-citymapper.svg +++ b/icons/brand-citymapper.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-codepen.svg b/icons/brand-codepen.svg index 16a21393f..3254ae44d 100644 --- a/icons/brand-codepen.svg +++ b/icons/brand-codepen.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-codesandbox.svg b/icons/brand-codesandbox.svg index 57f907e11..55f3f884f 100644 --- a/icons/brand-codesandbox.svg +++ b/icons/brand-codesandbox.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-cohost.svg b/icons/brand-cohost.svg index 6fd8f27af..95d391b61 100644 --- a/icons/brand-cohost.svg +++ b/icons/brand-cohost.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-coinbase.svg b/icons/brand-coinbase.svg index 363ee3b74..3c3092915 100644 --- a/icons/brand-coinbase.svg +++ b/icons/brand-coinbase.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-comedy-central.svg b/icons/brand-comedy-central.svg index 75ce47840..acd23addf 100644 --- a/icons/brand-comedy-central.svg +++ b/icons/brand-comedy-central.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-coreos.svg b/icons/brand-coreos.svg index 8669b01d0..e7e004894 100644 --- a/icons/brand-coreos.svg +++ b/icons/brand-coreos.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-couchdb.svg b/icons/brand-couchdb.svg index 7c504562b..79c1fad25 100644 --- a/icons/brand-couchdb.svg +++ b/icons/brand-couchdb.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-couchsurfing.svg b/icons/brand-couchsurfing.svg index fa4f191f8..5989f674e 100644 --- a/icons/brand-couchsurfing.svg +++ b/icons/brand-couchsurfing.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-cpp.svg b/icons/brand-cpp.svg index 17b99a63b..f55d07c64 100644 --- a/icons/brand-cpp.svg +++ b/icons/brand-cpp.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-css3.svg b/icons/brand-css3.svg index 5cc1bf412..8090805d6 100644 --- a/icons/brand-css3.svg +++ b/icons/brand-css3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-ctemplar.svg b/icons/brand-ctemplar.svg index 04e2749ea..d2a4a0d12 100644 --- a/icons/brand-ctemplar.svg +++ b/icons/brand-ctemplar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-cucumber.svg b/icons/brand-cucumber.svg index 5a0abfeba..b18c05d76 100644 --- a/icons/brand-cucumber.svg +++ b/icons/brand-cucumber.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/brand-cupra.svg b/icons/brand-cupra.svg index 76a1daf01..04f7e63d6 100644 --- a/icons/brand-cupra.svg +++ b/icons/brand-cupra.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-cypress.svg b/icons/brand-cypress.svg index e9b2469dd..8f5b9c263 100644 --- a/icons/brand-cypress.svg +++ b/icons/brand-cypress.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-d3.svg b/icons/brand-d3.svg index 615254048..425338147 100644 --- a/icons/brand-d3.svg +++ b/icons/brand-d3.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-days-counter.svg b/icons/brand-days-counter.svg index 27dfd26b7..d25007b9c 100644 --- a/icons/brand-days-counter.svg +++ b/icons/brand-days-counter.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-debian.svg b/icons/brand-debian.svg index d7d352cb1..c057b7572 100644 --- a/icons/brand-debian.svg +++ b/icons/brand-debian.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-deliveroo.svg b/icons/brand-deliveroo.svg index 846a57286..8f839eeac 100644 --- a/icons/brand-deliveroo.svg +++ b/icons/brand-deliveroo.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-deno.svg b/icons/brand-deno.svg index 689fcb762..d5592701e 100644 --- a/icons/brand-deno.svg +++ b/icons/brand-deno.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-denodo.svg b/icons/brand-denodo.svg index e0f8b2256..47cb3b459 100644 --- a/icons/brand-denodo.svg +++ b/icons/brand-denodo.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-dingtalk.svg b/icons/brand-dingtalk.svg index e6e345bd0..bb07afb34 100644 --- a/icons/brand-dingtalk.svg +++ b/icons/brand-dingtalk.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-discord.svg b/icons/brand-discord.svg index 5a818d2ba..bc18e0879 100644 --- a/icons/brand-discord.svg +++ b/icons/brand-discord.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-disney.svg b/icons/brand-disney.svg index 50acc208f..b9807607c 100644 --- a/icons/brand-disney.svg +++ b/icons/brand-disney.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-disqus.svg b/icons/brand-disqus.svg index 8070dd9a8..30f6f96b9 100644 --- a/icons/brand-disqus.svg +++ b/icons/brand-disqus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-django.svg b/icons/brand-django.svg index 623cfe861..a67af6040 100644 --- a/icons/brand-django.svg +++ b/icons/brand-django.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-docker.svg b/icons/brand-docker.svg index 1f26112ed..9bfa2bd40 100644 --- a/icons/brand-docker.svg +++ b/icons/brand-docker.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/brand-doctrine.svg b/icons/brand-doctrine.svg index be550c208..050a58b54 100644 --- a/icons/brand-doctrine.svg +++ b/icons/brand-doctrine.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-dolby-digital.svg b/icons/brand-dolby-digital.svg index d58cc4b2f..7e87778c2 100644 --- a/icons/brand-dolby-digital.svg +++ b/icons/brand-dolby-digital.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-douban.svg b/icons/brand-douban.svg index 905cade86..ffd4fda68 100644 --- a/icons/brand-douban.svg +++ b/icons/brand-douban.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-dribbble.svg b/icons/brand-dribbble.svg index 48931ccc0..ad58a5316 100644 --- a/icons/brand-dribbble.svg +++ b/icons/brand-dribbble.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-drops.svg b/icons/brand-drops.svg index 56c711e04..4c37876d9 100644 --- a/icons/brand-drops.svg +++ b/icons/brand-drops.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-drupal.svg b/icons/brand-drupal.svg index f7e902e00..1597c164b 100644 --- a/icons/brand-drupal.svg +++ b/icons/brand-drupal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-edge.svg b/icons/brand-edge.svg index 9c3840f75..a959f650d 100644 --- a/icons/brand-edge.svg +++ b/icons/brand-edge.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-elastic.svg b/icons/brand-elastic.svg index e7ec94477..813736494 100644 --- a/icons/brand-elastic.svg +++ b/icons/brand-elastic.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-envato.svg b/icons/brand-envato.svg index e55d18575..24f765472 100644 --- a/icons/brand-envato.svg +++ b/icons/brand-envato.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-etsy.svg b/icons/brand-etsy.svg index 3b96d2af3..444525789 100644 --- a/icons/brand-etsy.svg +++ b/icons/brand-etsy.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-evernote.svg b/icons/brand-evernote.svg index 3d517dc65..58f2cc1d0 100644 --- a/icons/brand-evernote.svg +++ b/icons/brand-evernote.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-figma.svg b/icons/brand-figma.svg index 88ebcbe5a..360a92e6f 100644 --- a/icons/brand-figma.svg +++ b/icons/brand-figma.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-finder.svg b/icons/brand-finder.svg index 891a8191e..7e3865cc8 100644 --- a/icons/brand-finder.svg +++ b/icons/brand-finder.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-firebase.svg b/icons/brand-firebase.svg index 46cb562aa..41912c150 100644 --- a/icons/brand-firebase.svg +++ b/icons/brand-firebase.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-firefox.svg b/icons/brand-firefox.svg index 4c54436f5..63fd1e8b0 100644 --- a/icons/brand-firefox.svg +++ b/icons/brand-firefox.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-flickr.svg b/icons/brand-flickr.svg index cedb25c0a..be2c1a2d5 100644 --- a/icons/brand-flickr.svg +++ b/icons/brand-flickr.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-flightradar24.svg b/icons/brand-flightradar24.svg index acf99e452..790c48d41 100644 --- a/icons/brand-flightradar24.svg +++ b/icons/brand-flightradar24.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-flutter.svg b/icons/brand-flutter.svg index ef75f8ea2..b2bcf260e 100644 --- a/icons/brand-flutter.svg +++ b/icons/brand-flutter.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-foursquare.svg b/icons/brand-foursquare.svg index a1bfda356..6c2b95e22 100644 --- a/icons/brand-foursquare.svg +++ b/icons/brand-foursquare.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-funimation.svg b/icons/brand-funimation.svg index ad4a91d36..7f6c62e8f 100644 --- a/icons/brand-funimation.svg +++ b/icons/brand-funimation.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-gatsby.svg b/icons/brand-gatsby.svg index 71e6fd769..94756808b 100644 --- a/icons/brand-gatsby.svg +++ b/icons/brand-gatsby.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-git.svg b/icons/brand-git.svg index 2ed2292bf..99e818560 100644 --- a/icons/brand-git.svg +++ b/icons/brand-git.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-github-copilot.svg b/icons/brand-github-copilot.svg index 9e80c21a6..fdda2018a 100644 --- a/icons/brand-github-copilot.svg +++ b/icons/brand-github-copilot.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-gmail.svg b/icons/brand-gmail.svg index b7da6b5a9..2605bf867 100644 --- a/icons/brand-gmail.svg +++ b/icons/brand-gmail.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-google-analytics.svg b/icons/brand-google-analytics.svg index d2d82e505..fcb078da9 100644 --- a/icons/brand-google-analytics.svg +++ b/icons/brand-google-analytics.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-google-big-query.svg b/icons/brand-google-big-query.svg index 90e6aca09..79ab9d026 100644 --- a/icons/brand-google-big-query.svg +++ b/icons/brand-google-big-query.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-google-drive.svg b/icons/brand-google-drive.svg index 7e30c872a..1487e3165 100644 --- a/icons/brand-google-drive.svg +++ b/icons/brand-google-drive.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-google-home.svg b/icons/brand-google-home.svg index f96d14f35..79938dfdc 100644 --- a/icons/brand-google-home.svg +++ b/icons/brand-google-home.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-google-one.svg b/icons/brand-google-one.svg index f4d1cc0b3..973ba2732 100644 --- a/icons/brand-google-one.svg +++ b/icons/brand-google-one.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-google-photos.svg b/icons/brand-google-photos.svg index dd7afecb8..381b32b4f 100644 --- a/icons/brand-google-photos.svg +++ b/icons/brand-google-photos.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-google-play.svg b/icons/brand-google-play.svg index 0b00cda02..5649268ba 100644 --- a/icons/brand-google-play.svg +++ b/icons/brand-google-play.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-google-podcasts.svg b/icons/brand-google-podcasts.svg index eb945f2f1..8c45e68b1 100644 --- a/icons/brand-google-podcasts.svg +++ b/icons/brand-google-podcasts.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/brand-grammarly.svg b/icons/brand-grammarly.svg index 5f6e9a309..d25c0d9fa 100644 --- a/icons/brand-grammarly.svg +++ b/icons/brand-grammarly.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-graphql.svg b/icons/brand-graphql.svg index 86d0ea558..70299d871 100644 --- a/icons/brand-graphql.svg +++ b/icons/brand-graphql.svg @@ -1,20 +1,6 @@ - - - - - - - - - - - - - - - + diff --git a/icons/brand-grindr.svg b/icons/brand-grindr.svg index 9d22130d8..2aa2084a2 100644 --- a/icons/brand-grindr.svg +++ b/icons/brand-grindr.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-guardian.svg b/icons/brand-guardian.svg index 8ea0d682e..47da8a5fe 100644 --- a/icons/brand-guardian.svg +++ b/icons/brand-guardian.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-gumroad.svg b/icons/brand-gumroad.svg index e5b1f45d2..380437e3b 100644 --- a/icons/brand-gumroad.svg +++ b/icons/brand-gumroad.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-hbo.svg b/icons/brand-hbo.svg index cff0653e6..5a5651153 100644 --- a/icons/brand-hbo.svg +++ b/icons/brand-hbo.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-headlessui.svg b/icons/brand-headlessui.svg index 28da6dd43..dba47563e 100644 --- a/icons/brand-headlessui.svg +++ b/icons/brand-headlessui.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-hipchat.svg b/icons/brand-hipchat.svg index afecbad51..ff9f2fa7d 100644 --- a/icons/brand-hipchat.svg +++ b/icons/brand-hipchat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-html5.svg b/icons/brand-html5.svg index 250c94517..594d83b78 100644 --- a/icons/brand-html5.svg +++ b/icons/brand-html5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-inertia.svg b/icons/brand-inertia.svg index f4dacfac8..17dbfc2c6 100644 --- a/icons/brand-inertia.svg +++ b/icons/brand-inertia.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-instagram.svg b/icons/brand-instagram.svg index c7b089656..f2e0ab8fa 100644 --- a/icons/brand-instagram.svg +++ b/icons/brand-instagram.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-intercom.svg b/icons/brand-intercom.svg index e66d381e3..d30a79745 100644 --- a/icons/brand-intercom.svg +++ b/icons/brand-intercom.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-javascript.svg b/icons/brand-javascript.svg index 70deddc55..0f433219a 100644 --- a/icons/brand-javascript.svg +++ b/icons/brand-javascript.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-kickstarter.svg b/icons/brand-kickstarter.svg index dc532b051..0e6f703da 100644 --- a/icons/brand-kickstarter.svg +++ b/icons/brand-kickstarter.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-kotlin.svg b/icons/brand-kotlin.svg index 9870f7e60..5932a097e 100644 --- a/icons/brand-kotlin.svg +++ b/icons/brand-kotlin.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-laravel.svg b/icons/brand-laravel.svg index 511ec3a41..fad53337a 100644 --- a/icons/brand-laravel.svg +++ b/icons/brand-laravel.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/brand-lastfm.svg b/icons/brand-lastfm.svg index 8414eb13d..20180c439 100644 --- a/icons/brand-lastfm.svg +++ b/icons/brand-lastfm.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-linkedin.svg b/icons/brand-linkedin.svg index cc67a88df..35e439d1f 100644 --- a/icons/brand-linkedin.svg +++ b/icons/brand-linkedin.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-linktree.svg b/icons/brand-linktree.svg index 01d916b2e..f6e2e206a 100644 --- a/icons/brand-linktree.svg +++ b/icons/brand-linktree.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-loom.svg b/icons/brand-loom.svg index 7766fe14a..5c0c8adef 100644 --- a/icons/brand-loom.svg +++ b/icons/brand-loom.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-mailgun.svg b/icons/brand-mailgun.svg index 76a1dd0d1..345983e39 100644 --- a/icons/brand-mailgun.svg +++ b/icons/brand-mailgun.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-mantine.svg b/icons/brand-mantine.svg index 61892828b..b8e389e3c 100644 --- a/icons/brand-mantine.svg +++ b/icons/brand-mantine.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-mastercard.svg b/icons/brand-mastercard.svg index b9e544db3..7250adb4a 100644 --- a/icons/brand-mastercard.svg +++ b/icons/brand-mastercard.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-mastodon.svg b/icons/brand-mastodon.svg index ffd5cdf21..aca1fd71c 100644 --- a/icons/brand-mastodon.svg +++ b/icons/brand-mastodon.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-matrix.svg b/icons/brand-matrix.svg index 02f6e71b8..f8644e0db 100644 --- a/icons/brand-matrix.svg +++ b/icons/brand-matrix.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-medium.svg b/icons/brand-medium.svg index 070e0abaf..5bde7b52c 100644 --- a/icons/brand-medium.svg +++ b/icons/brand-medium.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-mercedes.svg b/icons/brand-mercedes.svg index b7961ef22..e2feac0b5 100644 --- a/icons/brand-mercedes.svg +++ b/icons/brand-mercedes.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-messenger.svg b/icons/brand-messenger.svg index 748f5a2ba..ddf3b25ec 100644 --- a/icons/brand-messenger.svg +++ b/icons/brand-messenger.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-meta.svg b/icons/brand-meta.svg index 0fadd6b3c..30474a180 100644 --- a/icons/brand-meta.svg +++ b/icons/brand-meta.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-miniprogram.svg b/icons/brand-miniprogram.svg index f13c8c050..4ea99f25f 100644 --- a/icons/brand-miniprogram.svg +++ b/icons/brand-miniprogram.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-mixpanel.svg b/icons/brand-mixpanel.svg index 2ede82657..8338ae933 100644 --- a/icons/brand-mixpanel.svg +++ b/icons/brand-mixpanel.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-monday.svg b/icons/brand-monday.svg index 6e9846db2..dab2176fc 100644 --- a/icons/brand-monday.svg +++ b/icons/brand-monday.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-mongodb.svg b/icons/brand-mongodb.svg index d9b1814a7..f7630ce4e 100644 --- a/icons/brand-mongodb.svg +++ b/icons/brand-mongodb.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-my-oppo.svg b/icons/brand-my-oppo.svg index bdde91b93..36e467eb4 100644 --- a/icons/brand-my-oppo.svg +++ b/icons/brand-my-oppo.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-mysql.svg b/icons/brand-mysql.svg index 4bcbd83c1..54aa6fb83 100644 --- a/icons/brand-mysql.svg +++ b/icons/brand-mysql.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-nem.svg b/icons/brand-nem.svg index 7aae3d3b1..e8d73de84 100644 --- a/icons/brand-nem.svg +++ b/icons/brand-nem.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-netbeans.svg b/icons/brand-netbeans.svg index bd5e1b421..29903d662 100644 --- a/icons/brand-netbeans.svg +++ b/icons/brand-netbeans.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-netease-music.svg b/icons/brand-netease-music.svg index 06a9111c3..0567f62d3 100644 --- a/icons/brand-netease-music.svg +++ b/icons/brand-netease-music.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-netflix.svg b/icons/brand-netflix.svg index 301988e74..1b2d1679b 100644 --- a/icons/brand-netflix.svg +++ b/icons/brand-netflix.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-nexo.svg b/icons/brand-nexo.svg index 3b545e899..60e6fcfdc 100644 --- a/icons/brand-nexo.svg +++ b/icons/brand-nexo.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-nextcloud.svg b/icons/brand-nextcloud.svg index e009c8237..c0979b033 100644 --- a/icons/brand-nextcloud.svg +++ b/icons/brand-nextcloud.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-nextjs.svg b/icons/brand-nextjs.svg index 33b76c820..77df57d8f 100644 --- a/icons/brand-nextjs.svg +++ b/icons/brand-nextjs.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-nord-vpn.svg b/icons/brand-nord-vpn.svg index fe90e0e89..d8a968802 100644 --- a/icons/brand-nord-vpn.svg +++ b/icons/brand-nord-vpn.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-notion.svg b/icons/brand-notion.svg index 28eb082c4..a114c11d7 100644 --- a/icons/brand-notion.svg +++ b/icons/brand-notion.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-npm.svg b/icons/brand-npm.svg index 267e58d07..5ef7679ac 100644 --- a/icons/brand-npm.svg +++ b/icons/brand-npm.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-nuxt.svg b/icons/brand-nuxt.svg index fb70bc0a5..f77cbf227 100644 --- a/icons/brand-nuxt.svg +++ b/icons/brand-nuxt.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-nytimes.svg b/icons/brand-nytimes.svg index 6d20edf79..b21eac430 100644 --- a/icons/brand-nytimes.svg +++ b/icons/brand-nytimes.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-ok-ru.svg b/icons/brand-ok-ru.svg index 2f4d88758..426de5a2e 100644 --- a/icons/brand-ok-ru.svg +++ b/icons/brand-ok-ru.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-onedrive.svg b/icons/brand-onedrive.svg index bddc28e9e..e5f099ddd 100644 --- a/icons/brand-onedrive.svg +++ b/icons/brand-onedrive.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-onlyfans.svg b/icons/brand-onlyfans.svg index c1415f056..0dc915e1d 100644 --- a/icons/brand-onlyfans.svg +++ b/icons/brand-onlyfans.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-openvpn.svg b/icons/brand-openvpn.svg index 907dc6ab8..6d435c77d 100644 --- a/icons/brand-openvpn.svg +++ b/icons/brand-openvpn.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-opera.svg b/icons/brand-opera.svg index 7d4bfca2c..dc2085e21 100644 --- a/icons/brand-opera.svg +++ b/icons/brand-opera.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-patreon.svg b/icons/brand-patreon.svg index 52a5f46e5..dd4a82349 100644 --- a/icons/brand-patreon.svg +++ b/icons/brand-patreon.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-paypay.svg b/icons/brand-paypay.svg index fcb19b357..2c2044678 100644 --- a/icons/brand-paypay.svg +++ b/icons/brand-paypay.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-peanut.svg b/icons/brand-peanut.svg index 68a2e6d7b..9c4c134b2 100644 --- a/icons/brand-peanut.svg +++ b/icons/brand-peanut.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-pepsi.svg b/icons/brand-pepsi.svg index 6fe7a687d..4aacd4d13 100644 --- a/icons/brand-pepsi.svg +++ b/icons/brand-pepsi.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-php.svg b/icons/brand-php.svg index d0a5d799e..cd612795d 100644 --- a/icons/brand-php.svg +++ b/icons/brand-php.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-picsart.svg b/icons/brand-picsart.svg index 36b4f8987..752beb698 100644 --- a/icons/brand-picsart.svg +++ b/icons/brand-picsart.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-pinterest.svg b/icons/brand-pinterest.svg index dd35c73c5..76a270fea 100644 --- a/icons/brand-pinterest.svg +++ b/icons/brand-pinterest.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-pocket.svg b/icons/brand-pocket.svg index 83e0044af..e86eec61b 100644 --- a/icons/brand-pocket.svg +++ b/icons/brand-pocket.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-powershell.svg b/icons/brand-powershell.svg index cc2a3e87e..b60489bac 100644 --- a/icons/brand-powershell.svg +++ b/icons/brand-powershell.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-prisma.svg b/icons/brand-prisma.svg index bfa60310a..08428c2ff 100644 --- a/icons/brand-prisma.svg +++ b/icons/brand-prisma.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-producthunt.svg b/icons/brand-producthunt.svg index 97ddde5b3..5e237f8db 100644 --- a/icons/brand-producthunt.svg +++ b/icons/brand-producthunt.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-pushbullet.svg b/icons/brand-pushbullet.svg index d358f2652..58add1abb 100644 --- a/icons/brand-pushbullet.svg +++ b/icons/brand-pushbullet.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-pushover.svg b/icons/brand-pushover.svg index 45b8dc744..3ec60b4b4 100644 --- a/icons/brand-pushover.svg +++ b/icons/brand-pushover.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-python.svg b/icons/brand-python.svg index 4ef5b845c..f74f9eb56 100644 --- a/icons/brand-python.svg +++ b/icons/brand-python.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-qq.svg b/icons/brand-qq.svg index d8db5f93c..b7eef5338 100644 --- a/icons/brand-qq.svg +++ b/icons/brand-qq.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-react-native.svg b/icons/brand-react-native.svg index 631e23c7b..cdd5dbe95 100644 --- a/icons/brand-react-native.svg +++ b/icons/brand-react-native.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-react.svg b/icons/brand-react.svg index 4bcfcb34f..dd8172898 100644 --- a/icons/brand-react.svg +++ b/icons/brand-react.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-reason.svg b/icons/brand-reason.svg index 881a3d9f2..fbec60863 100644 --- a/icons/brand-reason.svg +++ b/icons/brand-reason.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-reddit.svg b/icons/brand-reddit.svg index 0acfb1af6..b50835ab2 100644 --- a/icons/brand-reddit.svg +++ b/icons/brand-reddit.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-redhat.svg b/icons/brand-redhat.svg index 7315d5184..08abd3907 100644 --- a/icons/brand-redhat.svg +++ b/icons/brand-redhat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-redux.svg b/icons/brand-redux.svg index ceabd11f6..e9473e697 100644 --- a/icons/brand-redux.svg +++ b/icons/brand-redux.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-revolut.svg b/icons/brand-revolut.svg index 7ff22abdb..f42762bac 100644 --- a/icons/brand-revolut.svg +++ b/icons/brand-revolut.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-safari.svg b/icons/brand-safari.svg index 5cd064c01..b72b5ee00 100644 --- a/icons/brand-safari.svg +++ b/icons/brand-safari.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-samsungpass.svg b/icons/brand-samsungpass.svg index ea6070752..24e51160d 100644 --- a/icons/brand-samsungpass.svg +++ b/icons/brand-samsungpass.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-sass.svg b/icons/brand-sass.svg index 6bd0c523d..5922c6b0e 100644 --- a/icons/brand-sass.svg +++ b/icons/brand-sass.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-sentry.svg b/icons/brand-sentry.svg index ddade1027..9b6913117 100644 --- a/icons/brand-sentry.svg +++ b/icons/brand-sentry.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-shazam.svg b/icons/brand-shazam.svg index 23820fbb4..b83561291 100644 --- a/icons/brand-shazam.svg +++ b/icons/brand-shazam.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-shopee.svg b/icons/brand-shopee.svg index d7495c1f7..0333056db 100644 --- a/icons/brand-shopee.svg +++ b/icons/brand-shopee.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-skype.svg b/icons/brand-skype.svg index 83349ae5f..fdc6b3905 100644 --- a/icons/brand-skype.svg +++ b/icons/brand-skype.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-slack.svg b/icons/brand-slack.svg index ab314c85d..03530601f 100644 --- a/icons/brand-slack.svg +++ b/icons/brand-slack.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-snapseed.svg b/icons/brand-snapseed.svg index 59668b0b5..279995430 100644 --- a/icons/brand-snapseed.svg +++ b/icons/brand-snapseed.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-snowflake.svg b/icons/brand-snowflake.svg index f8f6cec8b..370366028 100644 --- a/icons/brand-snowflake.svg +++ b/icons/brand-snowflake.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-socket-io.svg b/icons/brand-socket-io.svg index 997708b48..d4ec822eb 100644 --- a/icons/brand-socket-io.svg +++ b/icons/brand-socket-io.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-solidjs.svg b/icons/brand-solidjs.svg index 881f97013..20acff2c1 100644 --- a/icons/brand-solidjs.svg +++ b/icons/brand-solidjs.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-soundcloud.svg b/icons/brand-soundcloud.svg index e954ad815..17547edcb 100644 --- a/icons/brand-soundcloud.svg +++ b/icons/brand-soundcloud.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-spacehey.svg b/icons/brand-spacehey.svg index b770f76b3..7b1a3c5c3 100644 --- a/icons/brand-spacehey.svg +++ b/icons/brand-spacehey.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-spotify.svg b/icons/brand-spotify.svg index 60882ab1e..97ad22fb0 100644 --- a/icons/brand-spotify.svg +++ b/icons/brand-spotify.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-stackoverflow.svg b/icons/brand-stackoverflow.svg index cbad39f4d..612a27322 100644 --- a/icons/brand-stackoverflow.svg +++ b/icons/brand-stackoverflow.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-stackshare.svg b/icons/brand-stackshare.svg index cf5e4fc65..16614899c 100644 --- a/icons/brand-stackshare.svg +++ b/icons/brand-stackshare.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-steam.svg b/icons/brand-steam.svg index abc94a723..f8ec2473b 100644 --- a/icons/brand-steam.svg +++ b/icons/brand-steam.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-storybook.svg b/icons/brand-storybook.svg index e9d8d7264..4e20714e4 100644 --- a/icons/brand-storybook.svg +++ b/icons/brand-storybook.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-stripe.svg b/icons/brand-stripe.svg index 26e03abff..19eb9ce75 100644 --- a/icons/brand-stripe.svg +++ b/icons/brand-stripe.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-sublime-text.svg b/icons/brand-sublime-text.svg index 414db3589..19ec1e6f8 100644 --- a/icons/brand-sublime-text.svg +++ b/icons/brand-sublime-text.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-superhuman.svg b/icons/brand-superhuman.svg index 98cabeb53..6eebe5964 100644 --- a/icons/brand-superhuman.svg +++ b/icons/brand-superhuman.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-supernova.svg b/icons/brand-supernova.svg index 93c138e70..f9f742e7f 100644 --- a/icons/brand-supernova.svg +++ b/icons/brand-supernova.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-surfshark.svg b/icons/brand-surfshark.svg index 2f1058488..a64772446 100644 --- a/icons/brand-surfshark.svg +++ b/icons/brand-surfshark.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-svelte.svg b/icons/brand-svelte.svg index f2312d4b3..cd43e18dd 100644 --- a/icons/brand-svelte.svg +++ b/icons/brand-svelte.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-symfony.svg b/icons/brand-symfony.svg index f7f502619..ed6ef4cdd 100644 --- a/icons/brand-symfony.svg +++ b/icons/brand-symfony.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-tabler.svg b/icons/brand-tabler.svg index 0f931bbf8..c8387b16c 100644 --- a/icons/brand-tabler.svg +++ b/icons/brand-tabler.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-taobao.svg b/icons/brand-taobao.svg index f2f98ec5c..0375359f6 100644 --- a/icons/brand-taobao.svg +++ b/icons/brand-taobao.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/brand-ted.svg b/icons/brand-ted.svg index d619da15b..f1d9ede20 100644 --- a/icons/brand-ted.svg +++ b/icons/brand-ted.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-tether.svg b/icons/brand-tether.svg index 63ed2a052..1b2d31601 100644 --- a/icons/brand-tether.svg +++ b/icons/brand-tether.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-threejs.svg b/icons/brand-threejs.svg index b0d916666..9485533d7 100644 --- a/icons/brand-threejs.svg +++ b/icons/brand-threejs.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-torchain.svg b/icons/brand-torchain.svg index 83f60c271..8233521cc 100644 --- a/icons/brand-torchain.svg +++ b/icons/brand-torchain.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-toyota.svg b/icons/brand-toyota.svg index d204d9dac..37e43ed4a 100644 --- a/icons/brand-toyota.svg +++ b/icons/brand-toyota.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-trello.svg b/icons/brand-trello.svg index 0d4fc7f60..c9868a68c 100644 --- a/icons/brand-trello.svg +++ b/icons/brand-trello.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-tripadvisor.svg b/icons/brand-tripadvisor.svg index a11ee24e2..bb02b22dc 100644 --- a/icons/brand-tripadvisor.svg +++ b/icons/brand-tripadvisor.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-twilio.svg b/icons/brand-twilio.svg index 27217023a..9a5be033c 100644 --- a/icons/brand-twilio.svg +++ b/icons/brand-twilio.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-twitch.svg b/icons/brand-twitch.svg index 4939dca6f..a304b55d3 100644 --- a/icons/brand-twitch.svg +++ b/icons/brand-twitch.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-twitter.svg b/icons/brand-twitter.svg index 17ab1b1b2..aa78003a1 100644 --- a/icons/brand-twitter.svg +++ b/icons/brand-twitter.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-typescript.svg b/icons/brand-typescript.svg index ff275166c..2a7fad6c5 100644 --- a/icons/brand-typescript.svg +++ b/icons/brand-typescript.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-uber.svg b/icons/brand-uber.svg index 881869a3f..31057184b 100644 --- a/icons/brand-uber.svg +++ b/icons/brand-uber.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-ubuntu.svg b/icons/brand-ubuntu.svg index 9619fc678..d02c6e4b4 100644 --- a/icons/brand-ubuntu.svg +++ b/icons/brand-ubuntu.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-unity.svg b/icons/brand-unity.svg index d82178dd6..a063aefbc 100644 --- a/icons/brand-unity.svg +++ b/icons/brand-unity.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-upwork.svg b/icons/brand-upwork.svg index a6fe334b1..493862e7e 100644 --- a/icons/brand-upwork.svg +++ b/icons/brand-upwork.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-valorant.svg b/icons/brand-valorant.svg index 7f019044b..666df0a7a 100644 --- a/icons/brand-valorant.svg +++ b/icons/brand-valorant.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-vimeo.svg b/icons/brand-vimeo.svg index d8efcdb04..414844212 100644 --- a/icons/brand-vimeo.svg +++ b/icons/brand-vimeo.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-vinted.svg b/icons/brand-vinted.svg index 6bc0196cc..4698dc8a5 100644 --- a/icons/brand-vinted.svg +++ b/icons/brand-vinted.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-visa.svg b/icons/brand-visa.svg index d79addc08..191fa4cc7 100644 --- a/icons/brand-visa.svg +++ b/icons/brand-visa.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-vite.svg b/icons/brand-vite.svg index 64cab3996..8f72fd37a 100644 --- a/icons/brand-vite.svg +++ b/icons/brand-vite.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-vk.svg b/icons/brand-vk.svg index e0cdf39c9..5f607b583 100644 --- a/icons/brand-vk.svg +++ b/icons/brand-vk.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-volkswagen.svg b/icons/brand-volkswagen.svg index ff6813e9c..c3eb169da 100644 --- a/icons/brand-volkswagen.svg +++ b/icons/brand-volkswagen.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-vsco.svg b/icons/brand-vsco.svg index e681c0127..fd3b87544 100644 --- a/icons/brand-vsco.svg +++ b/icons/brand-vsco.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/brand-vscode.svg b/icons/brand-vscode.svg index bed31ec40..7f35c359f 100644 --- a/icons/brand-vscode.svg +++ b/icons/brand-vscode.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-vue.svg b/icons/brand-vue.svg index d9cbb8cda..d4165e404 100644 --- a/icons/brand-vue.svg +++ b/icons/brand-vue.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-walmart.svg b/icons/brand-walmart.svg index f810880e9..b42d0ddea 100644 --- a/icons/brand-walmart.svg +++ b/icons/brand-walmart.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-waze.svg b/icons/brand-waze.svg index 2da271da3..14e3c70b7 100644 --- a/icons/brand-waze.svg +++ b/icons/brand-waze.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-webflow.svg b/icons/brand-webflow.svg index 712e974b8..e1a56f7d2 100644 --- a/icons/brand-webflow.svg +++ b/icons/brand-webflow.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-wechat.svg b/icons/brand-wechat.svg index 7c83f00b5..8faa1821b 100644 --- a/icons/brand-wechat.svg +++ b/icons/brand-wechat.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-weibo.svg b/icons/brand-weibo.svg index ccb73ec80..8ec36b999 100644 --- a/icons/brand-weibo.svg +++ b/icons/brand-weibo.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-whatsapp.svg b/icons/brand-whatsapp.svg index 03b0a4fa3..43dd763ad 100644 --- a/icons/brand-whatsapp.svg +++ b/icons/brand-whatsapp.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-windows.svg b/icons/brand-windows.svg index 52162c97b..6d9a7a695 100644 --- a/icons/brand-windows.svg +++ b/icons/brand-windows.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-windy.svg b/icons/brand-windy.svg index 52827ab90..3932462f8 100644 --- a/icons/brand-windy.svg +++ b/icons/brand-windy.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-wish.svg b/icons/brand-wish.svg index 88d84d0cf..4d0a44c46 100644 --- a/icons/brand-wish.svg +++ b/icons/brand-wish.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-wix.svg b/icons/brand-wix.svg index 4263521fc..c465999aa 100644 --- a/icons/brand-wix.svg +++ b/icons/brand-wix.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/brand-wordpress.svg b/icons/brand-wordpress.svg index 9fc259aea..587ff2481 100644 --- a/icons/brand-wordpress.svg +++ b/icons/brand-wordpress.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-xbox.svg b/icons/brand-xbox.svg index e399d22ea..e0f5b6fa8 100644 --- a/icons/brand-xbox.svg +++ b/icons/brand-xbox.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-xing.svg b/icons/brand-xing.svg index f48bdbace..7146fefac 100644 --- a/icons/brand-xing.svg +++ b/icons/brand-xing.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-yahoo.svg b/icons/brand-yahoo.svg index c74f3e7b3..d3243ecb3 100644 --- a/icons/brand-yahoo.svg +++ b/icons/brand-yahoo.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/brand-yatse.svg b/icons/brand-yatse.svg index cfc22d152..d78eaefd8 100644 --- a/icons/brand-yatse.svg +++ b/icons/brand-yatse.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-ycombinator.svg b/icons/brand-ycombinator.svg index 2ffb3871e..41e8f2072 100644 --- a/icons/brand-ycombinator.svg +++ b/icons/brand-ycombinator.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brand-youtube-kids.svg b/icons/brand-youtube-kids.svg index 8bebe1476..91b0dbcff 100644 --- a/icons/brand-youtube-kids.svg +++ b/icons/brand-youtube-kids.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-youtube.svg b/icons/brand-youtube.svg index af4b7bc36..0968456b0 100644 --- a/icons/brand-youtube.svg +++ b/icons/brand-youtube.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-zalando.svg b/icons/brand-zalando.svg index ab567d4f4..387f65864 100644 --- a/icons/brand-zalando.svg +++ b/icons/brand-zalando.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-zapier.svg b/icons/brand-zapier.svg index 02823598b..ff8d5ead3 100644 --- a/icons/brand-zapier.svg +++ b/icons/brand-zapier.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/brand-zhihu.svg b/icons/brand-zhihu.svg index d9343576b..ea427e8c6 100644 --- a/icons/brand-zhihu.svg +++ b/icons/brand-zhihu.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brand-zoom.svg b/icons/brand-zoom.svg index 3790a8ad0..100b98f0e 100644 --- a/icons/brand-zoom.svg +++ b/icons/brand-zoom.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brand-zulip.svg b/icons/brand-zulip.svg index 3c4c557f7..4b28f0803 100644 --- a/icons/brand-zulip.svg +++ b/icons/brand-zulip.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bread-off.svg b/icons/bread-off.svg index bdf0539b6..f4a5c132a 100644 --- a/icons/bread-off.svg +++ b/icons/bread-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bread.svg b/icons/bread.svg index a51763311..938557484 100644 --- a/icons/bread.svg +++ b/icons/bread.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/briefcase-off.svg b/icons/briefcase-off.svg index c4b6e1e4f..1d602d329 100644 --- a/icons/briefcase-off.svg +++ b/icons/briefcase-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/briefcase.svg b/icons/briefcase.svg index 419fdcf48..28619fffb 100644 --- a/icons/briefcase.svg +++ b/icons/briefcase.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brightness-2.svg b/icons/brightness-2.svg index 9e46e71f4..9972a94e5 100644 --- a/icons/brightness-2.svg +++ b/icons/brightness-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brightness-down.svg b/icons/brightness-down.svg index b8395a82c..86ee96f10 100644 --- a/icons/brightness-down.svg +++ b/icons/brightness-down.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/brightness-half.svg b/icons/brightness-half.svg index becab8a3d..914b827bc 100644 --- a/icons/brightness-half.svg +++ b/icons/brightness-half.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/brightness-off.svg b/icons/brightness-off.svg index 05a882ba2..f8f71fa46 100644 --- a/icons/brightness-off.svg +++ b/icons/brightness-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/brightness-up.svg b/icons/brightness-up.svg index 79dca0448..428e2d83d 100644 --- a/icons/brightness-up.svg +++ b/icons/brightness-up.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/brightness.svg b/icons/brightness.svg index 84f802d59..b4d386761 100644 --- a/icons/brightness.svg +++ b/icons/brightness.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/broadcast-off.svg b/icons/broadcast-off.svg index 3afb8277d..ec190e3c6 100644 --- a/icons/broadcast-off.svg +++ b/icons/broadcast-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/broadcast.svg b/icons/broadcast.svg index a8f6d8a41..d4e69a020 100644 --- a/icons/broadcast.svg +++ b/icons/broadcast.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/browser-check.svg b/icons/browser-check.svg index e3111df69..e779cf832 100644 --- a/icons/browser-check.svg +++ b/icons/browser-check.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/browser-off.svg b/icons/browser-off.svg index ead3883b4..668b8efe9 100644 --- a/icons/browser-off.svg +++ b/icons/browser-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/browser-plus.svg b/icons/browser-plus.svg index 730957adf..ea68f4ece 100644 --- a/icons/browser-plus.svg +++ b/icons/browser-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/browser-x.svg b/icons/browser-x.svg index 934c9afdc..f388dd7b8 100644 --- a/icons/browser-x.svg +++ b/icons/browser-x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/browser.svg b/icons/browser.svg index 00348956e..fb0220afb 100644 --- a/icons/browser.svg +++ b/icons/browser.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/brush-off.svg b/icons/brush-off.svg index 99e2d32a0..ee4309e1d 100644 --- a/icons/brush-off.svg +++ b/icons/brush-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brush.svg b/icons/brush.svg index bcc9920cb..b88d991d4 100644 --- a/icons/brush.svg +++ b/icons/brush.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bucket-droplet.svg b/icons/bucket-droplet.svg index 497d7c3b7..56da22dad 100644 --- a/icons/bucket-droplet.svg +++ b/icons/bucket-droplet.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bucket-off.svg b/icons/bucket-off.svg index ef136a09a..f6cfd9ac4 100644 --- a/icons/bucket-off.svg +++ b/icons/bucket-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bucket.svg b/icons/bucket.svg index a3e42a6a7..f61e26f62 100644 --- a/icons/bucket.svg +++ b/icons/bucket.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/bug-off.svg b/icons/bug-off.svg index 717e390f3..c730abaa6 100644 --- a/icons/bug-off.svg +++ b/icons/bug-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/bug.svg b/icons/bug.svg index a69d2979c..e79650d05 100644 --- a/icons/bug.svg +++ b/icons/bug.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/building-arch.svg b/icons/building-arch.svg index 2f3c966fd..f3755f98f 100644 --- a/icons/building-arch.svg +++ b/icons/building-arch.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/building-bank.svg b/icons/building-bank.svg index 45a92d785..f09a1f7c9 100644 --- a/icons/building-bank.svg +++ b/icons/building-bank.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/building-bridge.svg b/icons/building-bridge.svg index d314b9eca..54496a59e 100644 --- a/icons/building-bridge.svg +++ b/icons/building-bridge.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-broadcast-tower.svg b/icons/building-broadcast-tower.svg index c5376a128..50f5d1fa3 100644 --- a/icons/building-broadcast-tower.svg +++ b/icons/building-broadcast-tower.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-carousel.svg b/icons/building-carousel.svg index 024d1a34f..77644d76e 100644 --- a/icons/building-carousel.svg +++ b/icons/building-carousel.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/building-castle.svg b/icons/building-castle.svg index 0e07febeb..1bd2da917 100644 --- a/icons/building-castle.svg +++ b/icons/building-castle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/building-church.svg b/icons/building-church.svg index 30f4d87b3..674e3b052 100644 --- a/icons/building-church.svg +++ b/icons/building-church.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-circus.svg b/icons/building-circus.svg index 893068102..1d89c8615 100644 --- a/icons/building-circus.svg +++ b/icons/building-circus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/building-community.svg b/icons/building-community.svg index 80d0cb759..781c3c51a 100644 --- a/icons/building-community.svg +++ b/icons/building-community.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-cottage.svg b/icons/building-cottage.svg index bdde53efd..d69f769c8 100644 --- a/icons/building-cottage.svg +++ b/icons/building-cottage.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/building-estate.svg b/icons/building-estate.svg index f69920401..cf3a974bc 100644 --- a/icons/building-estate.svg +++ b/icons/building-estate.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/building-factory-2.svg b/icons/building-factory-2.svg index 08f964aa9..c12fecaf2 100644 --- a/icons/building-factory-2.svg +++ b/icons/building-factory-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-factory.svg b/icons/building-factory.svg index 4e307cab9..4e6f5f736 100644 --- a/icons/building-factory.svg +++ b/icons/building-factory.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/building-fortress.svg b/icons/building-fortress.svg index b2676d52c..58229c349 100644 --- a/icons/building-fortress.svg +++ b/icons/building-fortress.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/building-hospital.svg b/icons/building-hospital.svg index 3fcb3aeb8..f5051db2d 100644 --- a/icons/building-hospital.svg +++ b/icons/building-hospital.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-lighthouse.svg b/icons/building-lighthouse.svg index e9de41f89..aa3afd4f3 100644 --- a/icons/building-lighthouse.svg +++ b/icons/building-lighthouse.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/building-monument.svg b/icons/building-monument.svg index e9cd7863b..71ba3ace7 100644 --- a/icons/building-monument.svg +++ b/icons/building-monument.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/building-pavilion.svg b/icons/building-pavilion.svg new file mode 100644 index 000000000..663ffde97 --- /dev/null +++ b/icons/building-pavilion.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/building-pavilon.svg b/icons/building-pavilon.svg deleted file mode 100644 index 1bdd5d832..000000000 --- a/icons/building-pavilon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/building-skyscraper.svg b/icons/building-skyscraper.svg index 5d45cc7ae..9ec136051 100644 --- a/icons/building-skyscraper.svg +++ b/icons/building-skyscraper.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/building-stadium.svg b/icons/building-stadium.svg index 48612563c..802166a32 100644 --- a/icons/building-stadium.svg +++ b/icons/building-stadium.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/building-store.svg b/icons/building-store.svg index 0375d828d..9af1b7110 100644 --- a/icons/building-store.svg +++ b/icons/building-store.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/building-tunnel.svg b/icons/building-tunnel.svg index 8f653f40d..6480dea98 100644 --- a/icons/building-tunnel.svg +++ b/icons/building-tunnel.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/building-warehouse.svg b/icons/building-warehouse.svg index bbab84e95..8e2100d25 100644 --- a/icons/building-warehouse.svg +++ b/icons/building-warehouse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/building-wind-turbine.svg b/icons/building-wind-turbine.svg index f3afb113a..96c72a83f 100644 --- a/icons/building-wind-turbine.svg +++ b/icons/building-wind-turbine.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/building.svg b/icons/building.svg index f741d64f2..c79b95fa6 100644 --- a/icons/building.svg +++ b/icons/building.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/bulb-filled.svg b/icons/bulb-filled.svg new file mode 100644 index 000000000..a87965cf5 --- /dev/null +++ b/icons/bulb-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bulb-off.svg b/icons/bulb-off.svg index 50efc8a25..70bd489f3 100644 --- a/icons/bulb-off.svg +++ b/icons/bulb-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/bulb.svg b/icons/bulb.svg index 82f3a02a1..51d5bef20 100644 --- a/icons/bulb.svg +++ b/icons/bulb.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/bulldozer.svg b/icons/bulldozer.svg index 3e2c3bfd9..c210a2de6 100644 --- a/icons/bulldozer.svg +++ b/icons/bulldozer.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/bus-off.svg b/icons/bus-off.svg index 1a86dd5f0..097f5f9c7 100644 --- a/icons/bus-off.svg +++ b/icons/bus-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/bus-stop.svg b/icons/bus-stop.svg index 1715ec93d..2b32e92f9 100644 --- a/icons/bus-stop.svg +++ b/icons/bus-stop.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/bus.svg b/icons/bus.svg index 9b97f7369..77571f099 100644 --- a/icons/bus.svg +++ b/icons/bus.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/businessplan.svg b/icons/businessplan.svg index 11232aee2..22d7e785a 100644 --- a/icons/businessplan.svg +++ b/icons/businessplan.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/butterfly.svg b/icons/butterfly.svg index 3f446e74f..c2701b201 100644 --- a/icons/butterfly.svg +++ b/icons/butterfly.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/c-sharp.svg b/icons/c-sharp.svg index 3d39c0de9..1a3570f2a 100644 --- a/icons/c-sharp.svg +++ b/icons/c-sharp.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cactus-off.svg b/icons/cactus-off.svg index 39ccac36e..28d7bd0f9 100644 --- a/icons/cactus-off.svg +++ b/icons/cactus-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cactus.svg b/icons/cactus.svg index 50ee742dc..34676d840 100644 --- a/icons/cactus.svg +++ b/icons/cactus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cake-off.svg b/icons/cake-off.svg index e5983cc7c..5b514d717 100644 --- a/icons/cake-off.svg +++ b/icons/cake-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cake.svg b/icons/cake.svg index 11f93bdd7..d9e84cb68 100644 --- a/icons/cake.svg +++ b/icons/cake.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/calculator-off.svg b/icons/calculator-off.svg index 44aab8d9c..6263de519 100644 --- a/icons/calculator-off.svg +++ b/icons/calculator-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/calculator.svg b/icons/calculator.svg index 07abc813d..51f6ef83c 100644 --- a/icons/calculator.svg +++ b/icons/calculator.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/calendar-due.svg b/icons/calendar-due.svg index 8a887f127..0e71c1ea0 100644 --- a/icons/calendar-due.svg +++ b/icons/calendar-due.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/calendar-event.svg b/icons/calendar-event.svg index ce79f6f8c..02273ceea 100644 --- a/icons/calendar-event.svg +++ b/icons/calendar-event.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/calendar-minus.svg b/icons/calendar-minus.svg index 9f909378f..b1a82bf87 100644 --- a/icons/calendar-minus.svg +++ b/icons/calendar-minus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/calendar-off.svg b/icons/calendar-off.svg index c3b549d53..16446b5bd 100644 --- a/icons/calendar-off.svg +++ b/icons/calendar-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/calendar-plus.svg b/icons/calendar-plus.svg index 5cadb8d7f..c4a45c867 100644 --- a/icons/calendar-plus.svg +++ b/icons/calendar-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/calendar-stats.svg b/icons/calendar-stats.svg index c26c83e2f..ebdd12707 100644 --- a/icons/calendar-stats.svg +++ b/icons/calendar-stats.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/calendar-time.svg b/icons/calendar-time.svg index e7a99a973..ef2f16df2 100644 --- a/icons/calendar-time.svg +++ b/icons/calendar-time.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/calendar.svg b/icons/calendar.svg index c22b367fc..4c8992e90 100644 --- a/icons/calendar.svg +++ b/icons/calendar.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/camera-minus.svg b/icons/camera-minus.svg index 7f1e9e101..727608da7 100644 --- a/icons/camera-minus.svg +++ b/icons/camera-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/camera-off.svg b/icons/camera-off.svg index 316e87418..3e0afc251 100644 --- a/icons/camera-off.svg +++ b/icons/camera-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/camera-plus.svg b/icons/camera-plus.svg index 8dc3b89f8..0434adbf6 100644 --- a/icons/camera-plus.svg +++ b/icons/camera-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/camera-rotate.svg b/icons/camera-rotate.svg index 6ba5da125..5823f3da9 100644 --- a/icons/camera-rotate.svg +++ b/icons/camera-rotate.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/camera-selfie.svg b/icons/camera-selfie.svg index 59925b2ea..c24b17fcc 100644 --- a/icons/camera-selfie.svg +++ b/icons/camera-selfie.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/camera.svg b/icons/camera.svg index 654f63d71..37660a5f8 100644 --- a/icons/camera.svg +++ b/icons/camera.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/campfire.svg b/icons/campfire.svg index dcc42301c..d63d840c9 100644 --- a/icons/campfire.svg +++ b/icons/campfire.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/candle.svg b/icons/candle.svg index ce4d94d1e..99e002ccc 100644 --- a/icons/candle.svg +++ b/icons/candle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/candy-off.svg b/icons/candy-off.svg index 73b09144d..309cfa3d7 100644 --- a/icons/candy-off.svg +++ b/icons/candy-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/candy.svg b/icons/candy.svg index 41430a5c2..0c99cdff7 100644 --- a/icons/candy.svg +++ b/icons/candy.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cannabis.svg b/icons/cannabis.svg index bda4404ae..60f1d6a56 100644 --- a/icons/cannabis.svg +++ b/icons/cannabis.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/capture-off.svg b/icons/capture-off.svg index abf3c4680..e9a58691f 100644 --- a/icons/capture-off.svg +++ b/icons/capture-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/capture.svg b/icons/capture.svg index 030a42f0b..d89cfd834 100644 --- a/icons/capture.svg +++ b/icons/capture.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/car-crane.svg b/icons/car-crane.svg index ae989db85..246225d67 100644 --- a/icons/car-crane.svg +++ b/icons/car-crane.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/car-crash.svg b/icons/car-crash.svg index 2086ee2d7..0ff3827a1 100644 --- a/icons/car-crash.svg +++ b/icons/car-crash.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/car-off.svg b/icons/car-off.svg index b878fd815..d6ecabf78 100644 --- a/icons/car-off.svg +++ b/icons/car-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/car-turbine.svg b/icons/car-turbine.svg index dde18a01b..d47bd2b19 100644 --- a/icons/car-turbine.svg +++ b/icons/car-turbine.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/car.svg b/icons/car.svg index 846f85605..8cbf38a60 100644 --- a/icons/car.svg +++ b/icons/car.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/caravan.svg b/icons/caravan.svg index 83735752c..9905c66a0 100644 --- a/icons/caravan.svg +++ b/icons/caravan.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cardboards-off.svg b/icons/cardboards-off.svg index 1a9193df5..35a6b1375 100644 --- a/icons/cardboards-off.svg +++ b/icons/cardboards-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cardboards.svg b/icons/cardboards.svg index 52f9a28e0..f93c9ab87 100644 --- a/icons/cardboards.svg +++ b/icons/cardboards.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cards.svg b/icons/cards.svg index 2b9a7357e..53c3a5b02 100644 --- a/icons/cards.svg +++ b/icons/cards.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/carousel-horizontal.svg b/icons/carousel-horizontal.svg index ffa01b95c..d6ba481d6 100644 --- a/icons/carousel-horizontal.svg +++ b/icons/carousel-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/carousel-vertical.svg b/icons/carousel-vertical.svg index e604091ed..4e09f0794 100644 --- a/icons/carousel-vertical.svg +++ b/icons/carousel-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/carrot-off.svg b/icons/carrot-off.svg index b9e883647..87997d3bd 100644 --- a/icons/carrot-off.svg +++ b/icons/carrot-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/carrot.svg b/icons/carrot.svg index 98e74f2ba..541814b9d 100644 --- a/icons/carrot.svg +++ b/icons/carrot.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cash-banknote-off.svg b/icons/cash-banknote-off.svg index 434895705..912a6b1ec 100644 --- a/icons/cash-banknote-off.svg +++ b/icons/cash-banknote-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cash-banknote.svg b/icons/cash-banknote.svg index 27a4e400f..2940b828b 100644 --- a/icons/cash-banknote.svg +++ b/icons/cash-banknote.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cash-off.svg b/icons/cash-off.svg index a1ff6e359..924e6a03c 100644 --- a/icons/cash-off.svg +++ b/icons/cash-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cash.svg b/icons/cash.svg index 5b99e5ea2..8f8e8ed22 100644 --- a/icons/cash.svg +++ b/icons/cash.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cast-off.svg b/icons/cast-off.svg index cc51b0a62..3a1731f44 100644 --- a/icons/cast-off.svg +++ b/icons/cast-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cast.svg b/icons/cast.svg index 11546bf6f..fd06cb6a9 100644 --- a/icons/cast.svg +++ b/icons/cast.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cat.svg b/icons/cat.svg index 7a2a590d4..eee1bce49 100644 --- a/icons/cat.svg +++ b/icons/cat.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/category-2.svg b/icons/category-2.svg index 41f704774..9f4d0214e 100644 --- a/icons/category-2.svg +++ b/icons/category-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/category.svg b/icons/category.svg index 1685f9015..bf4753c96 100644 --- a/icons/category.svg +++ b/icons/category.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ce-off.svg b/icons/ce-off.svg index f8030d847..6404059ce 100644 --- a/icons/ce-off.svg +++ b/icons/ce-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ce.svg b/icons/ce.svg index f3d18dd43..ab81389f7 100644 --- a/icons/ce.svg +++ b/icons/ce.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cell-signal-2.svg b/icons/cell-signal-2.svg index 1a95908d7..ca4df4378 100644 --- a/icons/cell-signal-2.svg +++ b/icons/cell-signal-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cell-signal-3.svg b/icons/cell-signal-3.svg index cab36b89c..3dd9dd3d9 100644 --- a/icons/cell-signal-3.svg +++ b/icons/cell-signal-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cell-signal-4.svg b/icons/cell-signal-4.svg index bcd593843..2fedac61f 100644 --- a/icons/cell-signal-4.svg +++ b/icons/cell-signal-4.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cell-signal-5.svg b/icons/cell-signal-5.svg index a3636b27c..1d81c614f 100644 --- a/icons/cell-signal-5.svg +++ b/icons/cell-signal-5.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cell-signal-off.svg b/icons/cell-signal-off.svg index 788ca763a..d089869a7 100644 --- a/icons/cell-signal-off.svg +++ b/icons/cell-signal-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cell.svg b/icons/cell.svg index 2d9ea6fa7..92d4d7bf7 100644 --- a/icons/cell.svg +++ b/icons/cell.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/certificate-2-off.svg b/icons/certificate-2-off.svg index 00966b183..662428f5e 100644 --- a/icons/certificate-2-off.svg +++ b/icons/certificate-2-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/certificate-2.svg b/icons/certificate-2.svg index 196e33de3..2e41deaf1 100644 --- a/icons/certificate-2.svg +++ b/icons/certificate-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/certificate-off.svg b/icons/certificate-off.svg index 587a7b27d..5b9071e13 100644 --- a/icons/certificate-off.svg +++ b/icons/certificate-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/certificate.svg b/icons/certificate.svg index 8e1907b07..5cc65abfb 100644 --- a/icons/certificate.svg +++ b/icons/certificate.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/chair-director.svg b/icons/chair-director.svg index 8e57c83be..715b10ad0 100644 --- a/icons/chair-director.svg +++ b/icons/chair-director.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/chalkboard-off.svg b/icons/chalkboard-off.svg index a1c0f7919..479c6899a 100644 --- a/icons/chalkboard-off.svg +++ b/icons/chalkboard-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chalkboard.svg b/icons/chalkboard.svg index a6cb00268..97825e863 100644 --- a/icons/chalkboard.svg +++ b/icons/chalkboard.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/charging-pile.svg b/icons/charging-pile.svg index 1ecfeecb2..8274fec88 100644 --- a/icons/charging-pile.svg +++ b/icons/charging-pile.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/chart-arcs-3.svg b/icons/chart-arcs-3.svg index f99f1f5e9..3fd0ae40d 100644 --- a/icons/chart-arcs-3.svg +++ b/icons/chart-arcs-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-arcs.svg b/icons/chart-arcs.svg index e54441578..ca71ed320 100644 --- a/icons/chart-arcs.svg +++ b/icons/chart-arcs.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-area-filled.svg b/icons/chart-area-filled.svg new file mode 100644 index 000000000..bdc13ed5c --- /dev/null +++ b/icons/chart-area-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/chart-area-line-filled.svg b/icons/chart-area-line-filled.svg new file mode 100644 index 000000000..df09ec595 --- /dev/null +++ b/icons/chart-area-line-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/chart-area-line.svg b/icons/chart-area-line.svg index d9c090ed4..a3e0f3002 100644 --- a/icons/chart-area-line.svg +++ b/icons/chart-area-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-area.svg b/icons/chart-area.svg index a5ca27b51..d151fec7e 100644 --- a/icons/chart-area.svg +++ b/icons/chart-area.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-arrows-vertical.svg b/icons/chart-arrows-vertical.svg index dfb6d363d..6af0bcc6b 100644 --- a/icons/chart-arrows-vertical.svg +++ b/icons/chart-arrows-vertical.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/chart-arrows.svg b/icons/chart-arrows.svg index 953d17266..a24dc2ebe 100644 --- a/icons/chart-arrows.svg +++ b/icons/chart-arrows.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/chart-bar-off.svg b/icons/chart-bar-off.svg index 6b88141a0..efa5c9ae5 100644 --- a/icons/chart-bar-off.svg +++ b/icons/chart-bar-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chart-bar.svg b/icons/chart-bar.svg index 20171f970..6f05eb2aa 100644 --- a/icons/chart-bar.svg +++ b/icons/chart-bar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/chart-bubble-filled.svg b/icons/chart-bubble-filled.svg new file mode 100644 index 000000000..c04713d71 --- /dev/null +++ b/icons/chart-bubble-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chart-bubble.svg b/icons/chart-bubble.svg index a05ed61e0..d5cca8ebf 100644 --- a/icons/chart-bubble.svg +++ b/icons/chart-bubble.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-candle-filled.svg b/icons/chart-candle-filled.svg new file mode 100644 index 000000000..619a90485 --- /dev/null +++ b/icons/chart-candle-filled.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/chart-candle.svg b/icons/chart-candle.svg index 411454a05..ea0536847 100644 --- a/icons/chart-candle.svg +++ b/icons/chart-candle.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/chart-circles.svg b/icons/chart-circles.svg index 293fcb0e8..3b11ff246 100644 --- a/icons/chart-circles.svg +++ b/icons/chart-circles.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-donut-2.svg b/icons/chart-donut-2.svg index 239509887..ef3377ad1 100644 --- a/icons/chart-donut-2.svg +++ b/icons/chart-donut-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-donut-3.svg b/icons/chart-donut-3.svg index 20d10c321..263592d4b 100644 --- a/icons/chart-donut-3.svg +++ b/icons/chart-donut-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/chart-donut-4.svg b/icons/chart-donut-4.svg index 3bf8d0464..30271e280 100644 --- a/icons/chart-donut-4.svg +++ b/icons/chart-donut-4.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chart-donut-filled.svg b/icons/chart-donut-filled.svg new file mode 100644 index 000000000..84aca791b --- /dev/null +++ b/icons/chart-donut-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/chart-donut.svg b/icons/chart-donut.svg index 519f26f0a..f61da569f 100644 --- a/icons/chart-donut.svg +++ b/icons/chart-donut.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-dots-2.svg b/icons/chart-dots-2.svg index cdf7efc5e..8ed0c05ac 100644 --- a/icons/chart-dots-2.svg +++ b/icons/chart-dots-2.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/chart-dots-3.svg b/icons/chart-dots-3.svg index 79d26f64f..ddc9641be 100644 --- a/icons/chart-dots-3.svg +++ b/icons/chart-dots-3.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/chart-dots.svg b/icons/chart-dots.svg index 303628b89..957eb65e5 100644 --- a/icons/chart-dots.svg +++ b/icons/chart-dots.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/chart-grid-dots.svg b/icons/chart-grid-dots.svg index ed9a0411f..15537f142 100644 --- a/icons/chart-grid-dots.svg +++ b/icons/chart-grid-dots.svg @@ -1,23 +1,6 @@ - - - - - - - - - - - - - - - - - - + diff --git a/icons/chart-histogram.svg b/icons/chart-histogram.svg index 744fb3394..42b58db1b 100644 --- a/icons/chart-histogram.svg +++ b/icons/chart-histogram.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/chart-infographic.svg b/icons/chart-infographic.svg index 98f8718bc..1e63900bb 100644 --- a/icons/chart-infographic.svg +++ b/icons/chart-infographic.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/chart-line.svg b/icons/chart-line.svg index 7977868b1..1c941a8a8 100644 --- a/icons/chart-line.svg +++ b/icons/chart-line.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-pie-2.svg b/icons/chart-pie-2.svg index 15191519a..3784d6c73 100644 --- a/icons/chart-pie-2.svg +++ b/icons/chart-pie-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-pie-3.svg b/icons/chart-pie-3.svg index fce518589..3101330fa 100644 --- a/icons/chart-pie-3.svg +++ b/icons/chart-pie-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-pie-4.svg b/icons/chart-pie-4.svg index d83429f2d..c7baab14a 100644 --- a/icons/chart-pie-4.svg +++ b/icons/chart-pie-4.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/chart-pie-filled.svg b/icons/chart-pie-filled.svg new file mode 100644 index 000000000..d2ad66e20 --- /dev/null +++ b/icons/chart-pie-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/chart-pie-off.svg b/icons/chart-pie-off.svg index 8d37969bd..522fbeaee 100644 --- a/icons/chart-pie-off.svg +++ b/icons/chart-pie-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-pie.svg b/icons/chart-pie.svg index 8ebf0d305..d695bdda6 100644 --- a/icons/chart-pie.svg +++ b/icons/chart-pie.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-ppf.svg b/icons/chart-ppf.svg index f452e6ab3..5c4cb47fa 100644 --- a/icons/chart-ppf.svg +++ b/icons/chart-ppf.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chart-radar.svg b/icons/chart-radar.svg index 957d0f2aa..70fbf5d0b 100644 --- a/icons/chart-radar.svg +++ b/icons/chart-radar.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chart-sankey.svg b/icons/chart-sankey.svg index 155f9f6e1..62c313fb1 100644 --- a/icons/chart-sankey.svg +++ b/icons/chart-sankey.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chart-treemap.svg b/icons/chart-treemap.svg index 117f0d52e..087d7f515 100644 --- a/icons/chart-treemap.svg +++ b/icons/chart-treemap.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/checkbox.svg b/icons/checkbox.svg index 09fd0ca8d..72083abfb 100644 --- a/icons/checkbox.svg +++ b/icons/checkbox.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/checklist.svg b/icons/checklist.svg index 59a41e7f8..d4063f5a2 100644 --- a/icons/checklist.svg +++ b/icons/checklist.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/checks.svg b/icons/checks.svg index c4cb00eec..15c189689 100644 --- a/icons/checks.svg +++ b/icons/checks.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/checkup-list.svg b/icons/checkup-list.svg index 9cd3a9fde..18976a629 100644 --- a/icons/checkup-list.svg +++ b/icons/checkup-list.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cheese.svg b/icons/cheese.svg index fba5f64d0..417b828a4 100644 --- a/icons/cheese.svg +++ b/icons/cheese.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chef-hat-off.svg b/icons/chef-hat-off.svg index a5e550d16..fb86bc91b 100644 --- a/icons/chef-hat-off.svg +++ b/icons/chef-hat-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chef-hat.svg b/icons/chef-hat.svg index e92cd99d4..795761050 100644 --- a/icons/chef-hat.svg +++ b/icons/chef-hat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cherry.svg b/icons/cherry.svg index 88a34a99d..90484f648 100644 --- a/icons/cherry.svg +++ b/icons/cherry.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chess-bishop.svg b/icons/chess-bishop.svg index 9a66d2788..9bf610c35 100644 --- a/icons/chess-bishop.svg +++ b/icons/chess-bishop.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chess-king.svg b/icons/chess-king.svg index 34848ba82..07bb65ec7 100644 --- a/icons/chess-king.svg +++ b/icons/chess-king.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/chess-knight.svg b/icons/chess-knight.svg index 66800af06..47bf792b8 100644 --- a/icons/chess-knight.svg +++ b/icons/chess-knight.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chess-queen.svg b/icons/chess-queen.svg index 60429457f..2f04949bf 100644 --- a/icons/chess-queen.svg +++ b/icons/chess-queen.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chess-rook.svg b/icons/chess-rook.svg index 3c4a844aa..5e75b7e5b 100644 --- a/icons/chess-rook.svg +++ b/icons/chess-rook.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/chess.svg b/icons/chess.svg index 59916e4fe..6d7279260 100644 --- a/icons/chess.svg +++ b/icons/chess.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/chevron-down.svg b/icons/chevron-down.svg index bc6394085..69133945f 100644 --- a/icons/chevron-down.svg +++ b/icons/chevron-down.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/chevron-left.svg b/icons/chevron-left.svg index b63b39492..1d0e626e3 100644 --- a/icons/chevron-left.svg +++ b/icons/chevron-left.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/chevron-right.svg b/icons/chevron-right.svg index 053b3f5b3..ce7675b5b 100644 --- a/icons/chevron-right.svg +++ b/icons/chevron-right.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/chevron-up.svg b/icons/chevron-up.svg index 0e5c64a2c..ae0db0f1a 100644 --- a/icons/chevron-up.svg +++ b/icons/chevron-up.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/chevrons-down-left.svg b/icons/chevrons-down-left.svg index ebf0cc91f..fe7b3f1ae 100644 --- a/icons/chevrons-down-left.svg +++ b/icons/chevrons-down-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-down-right.svg b/icons/chevrons-down-right.svg index 0bc2b9702..daa489f22 100644 --- a/icons/chevrons-down-right.svg +++ b/icons/chevrons-down-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-down.svg b/icons/chevrons-down.svg index b0152bc4f..dee19bd39 100644 --- a/icons/chevrons-down.svg +++ b/icons/chevrons-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-left.svg b/icons/chevrons-left.svg index 6e2784039..651b35388 100644 --- a/icons/chevrons-left.svg +++ b/icons/chevrons-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-right.svg b/icons/chevrons-right.svg index de9427cad..ae37b1a16 100644 --- a/icons/chevrons-right.svg +++ b/icons/chevrons-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-up-left.svg b/icons/chevrons-up-left.svg index 6d64c4988..2c5f7ab58 100644 --- a/icons/chevrons-up-left.svg +++ b/icons/chevrons-up-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-up-right.svg b/icons/chevrons-up-right.svg index fd22a105d..60ae2a418 100644 --- a/icons/chevrons-up-right.svg +++ b/icons/chevrons-up-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chevrons-up.svg b/icons/chevrons-up.svg index f041d04cd..58c7b5b5a 100644 --- a/icons/chevrons-up.svg +++ b/icons/chevrons-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/chisel.svg b/icons/chisel.svg index b0644c2ae..5068a3ab9 100644 --- a/icons/chisel.svg +++ b/icons/chisel.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/christmas-tree-off.svg b/icons/christmas-tree-off.svg index 60a280420..565906c03 100644 --- a/icons/christmas-tree-off.svg +++ b/icons/christmas-tree-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/christmas-tree.svg b/icons/christmas-tree.svg index 2e039e9a1..1b66d8af8 100644 --- a/icons/christmas-tree.svg +++ b/icons/christmas-tree.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-caret-down.svg b/icons/circle-caret-down.svg index bfa132eca..fccc1e0f3 100644 --- a/icons/circle-caret-down.svg +++ b/icons/circle-caret-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-caret-left.svg b/icons/circle-caret-left.svg index 981c8ef7a..babc29f4e 100644 --- a/icons/circle-caret-left.svg +++ b/icons/circle-caret-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-caret-right.svg b/icons/circle-caret-right.svg index aca34ba30..d712f0bf2 100644 --- a/icons/circle-caret-right.svg +++ b/icons/circle-caret-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-caret-up.svg b/icons/circle-caret-up.svg index 96601ff7e..0ba898171 100644 --- a/icons/circle-caret-up.svg +++ b/icons/circle-caret-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-check.svg b/icons/circle-check.svg index e7dcb44c1..1ec99b8ee 100644 --- a/icons/circle-check.svg +++ b/icons/circle-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-chevron-down.svg b/icons/circle-chevron-down.svg index 410231b10..8472bb548 100644 --- a/icons/circle-chevron-down.svg +++ b/icons/circle-chevron-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-chevron-left.svg b/icons/circle-chevron-left.svg index fd4ed1177..503391e87 100644 --- a/icons/circle-chevron-left.svg +++ b/icons/circle-chevron-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-chevron-right.svg b/icons/circle-chevron-right.svg index 16bae169a..c32d56e21 100644 --- a/icons/circle-chevron-right.svg +++ b/icons/circle-chevron-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-chevron-up.svg b/icons/circle-chevron-up.svg index 5fcb0863f..9375168ec 100644 --- a/icons/circle-chevron-up.svg +++ b/icons/circle-chevron-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-chevrons-down.svg b/icons/circle-chevrons-down.svg index af32a7b29..4d7b94313 100644 --- a/icons/circle-chevrons-down.svg +++ b/icons/circle-chevrons-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-chevrons-left.svg b/icons/circle-chevrons-left.svg index 36e4531f3..aa283b655 100644 --- a/icons/circle-chevrons-left.svg +++ b/icons/circle-chevrons-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-chevrons-right.svg b/icons/circle-chevrons-right.svg index 14237d94c..a6b9540ef 100644 --- a/icons/circle-chevrons-right.svg +++ b/icons/circle-chevrons-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-chevrons-up.svg b/icons/circle-chevrons-up.svg index 9a67de0b5..a45e8f43f 100644 --- a/icons/circle-chevrons-up.svg +++ b/icons/circle-chevrons-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-dashed.svg b/icons/circle-dashed.svg index bccb16a34..cf0673b9b 100644 --- a/icons/circle-dashed.svg +++ b/icons/circle-dashed.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/circle-dot.svg b/icons/circle-dot.svg index 3b21db1da..52e256ba2 100644 --- a/icons/circle-dot.svg +++ b/icons/circle-dot.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-dotted.svg b/icons/circle-dotted.svg index fa9aab433..0f4471583 100644 --- a/icons/circle-dotted.svg +++ b/icons/circle-dotted.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/circle-filled.svg b/icons/circle-filled.svg new file mode 100644 index 000000000..4fb4e3c46 --- /dev/null +++ b/icons/circle-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-half-2.svg b/icons/circle-half-2.svg index 4db7a4d16..f20f2903d 100644 --- a/icons/circle-half-2.svg +++ b/icons/circle-half-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/circle-half-vertical.svg b/icons/circle-half-vertical.svg index 88f83fd55..c06a6ecf0 100644 --- a/icons/circle-half-vertical.svg +++ b/icons/circle-half-vertical.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-half.svg b/icons/circle-half.svg index 74b4247ea..1e8c9892b 100644 --- a/icons/circle-half.svg +++ b/icons/circle-half.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-key.svg b/icons/circle-key.svg index 481335cdc..bc543e88f 100644 --- a/icons/circle-key.svg +++ b/icons/circle-key.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circle-letter-a.svg b/icons/circle-letter-a.svg index a963e7f0b..ea144422a 100644 --- a/icons/circle-letter-a.svg +++ b/icons/circle-letter-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-b.svg b/icons/circle-letter-b.svg index 242e96818..f2bb985aa 100644 --- a/icons/circle-letter-b.svg +++ b/icons/circle-letter-b.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-c.svg b/icons/circle-letter-c.svg index cfdd0f013..1f58c5c32 100644 --- a/icons/circle-letter-c.svg +++ b/icons/circle-letter-c.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-d.svg b/icons/circle-letter-d.svg index 2b1db439c..4a7b89ace 100644 --- a/icons/circle-letter-d.svg +++ b/icons/circle-letter-d.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-e.svg b/icons/circle-letter-e.svg index 2d0b8956e..e93c7b74a 100644 --- a/icons/circle-letter-e.svg +++ b/icons/circle-letter-e.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-f.svg b/icons/circle-letter-f.svg index 1ed2ee66d..8436ede13 100644 --- a/icons/circle-letter-f.svg +++ b/icons/circle-letter-f.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-g.svg b/icons/circle-letter-g.svg index 7cd0945b2..7952cc01e 100644 --- a/icons/circle-letter-g.svg +++ b/icons/circle-letter-g.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-h.svg b/icons/circle-letter-h.svg index b5b416517..68f895772 100644 --- a/icons/circle-letter-h.svg +++ b/icons/circle-letter-h.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-i.svg b/icons/circle-letter-i.svg index d16ac7597..8163bf06c 100644 --- a/icons/circle-letter-i.svg +++ b/icons/circle-letter-i.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-j.svg b/icons/circle-letter-j.svg index 422902cd3..dc3ac9516 100644 --- a/icons/circle-letter-j.svg +++ b/icons/circle-letter-j.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-k.svg b/icons/circle-letter-k.svg index f04766c0f..ff0e0c513 100644 --- a/icons/circle-letter-k.svg +++ b/icons/circle-letter-k.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circle-letter-l.svg b/icons/circle-letter-l.svg index 74b641316..d34af4dae 100644 --- a/icons/circle-letter-l.svg +++ b/icons/circle-letter-l.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-m.svg b/icons/circle-letter-m.svg index 7329921ce..53307b7fe 100644 --- a/icons/circle-letter-m.svg +++ b/icons/circle-letter-m.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-n.svg b/icons/circle-letter-n.svg index 818dc70a5..78ca2cf57 100644 --- a/icons/circle-letter-n.svg +++ b/icons/circle-letter-n.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-o.svg b/icons/circle-letter-o.svg index be659d822..c0aa016da 100644 --- a/icons/circle-letter-o.svg +++ b/icons/circle-letter-o.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-p.svg b/icons/circle-letter-p.svg index 00ce3df7f..b1a2fd1e7 100644 --- a/icons/circle-letter-p.svg +++ b/icons/circle-letter-p.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-q.svg b/icons/circle-letter-q.svg index 7d43f06d4..962d71bd1 100644 --- a/icons/circle-letter-q.svg +++ b/icons/circle-letter-q.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-r.svg b/icons/circle-letter-r.svg index 85a820e33..b41e3ff65 100644 --- a/icons/circle-letter-r.svg +++ b/icons/circle-letter-r.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-s.svg b/icons/circle-letter-s.svg index af6c3bda8..d8e9d629d 100644 --- a/icons/circle-letter-s.svg +++ b/icons/circle-letter-s.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-t.svg b/icons/circle-letter-t.svg index ad47ea497..fcab751ac 100644 --- a/icons/circle-letter-t.svg +++ b/icons/circle-letter-t.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-u.svg b/icons/circle-letter-u.svg index daef70c1e..cf650120e 100644 --- a/icons/circle-letter-u.svg +++ b/icons/circle-letter-u.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-v.svg b/icons/circle-letter-v.svg index 0e925a9b2..faa2aa3c9 100644 --- a/icons/circle-letter-v.svg +++ b/icons/circle-letter-v.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-w.svg b/icons/circle-letter-w.svg index da5a79fe9..7067e0b0e 100644 --- a/icons/circle-letter-w.svg +++ b/icons/circle-letter-w.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-letter-x.svg b/icons/circle-letter-x.svg index 79bedaeb1..ef2c8fb29 100644 --- a/icons/circle-letter-x.svg +++ b/icons/circle-letter-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-y.svg b/icons/circle-letter-y.svg index 3899ddc3f..b82cfca78 100644 --- a/icons/circle-letter-y.svg +++ b/icons/circle-letter-y.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-letter-z.svg b/icons/circle-letter-z.svg index 520d2dc6c..34e580553 100644 --- a/icons/circle-letter-z.svg +++ b/icons/circle-letter-z.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-minus.svg b/icons/circle-minus.svg index 17d36ecaf..1a99869bc 100644 --- a/icons/circle-minus.svg +++ b/icons/circle-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-0.svg b/icons/circle-number-0.svg index 490d61685..e4e484c09 100644 --- a/icons/circle-number-0.svg +++ b/icons/circle-number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-1.svg b/icons/circle-number-1.svg index 2bdc0301d..f5745e348 100644 --- a/icons/circle-number-1.svg +++ b/icons/circle-number-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-2.svg b/icons/circle-number-2.svg index da5812dc6..b3e8d0ad3 100644 --- a/icons/circle-number-2.svg +++ b/icons/circle-number-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-3.svg b/icons/circle-number-3.svg index cec6df06e..a4540f9ee 100644 --- a/icons/circle-number-3.svg +++ b/icons/circle-number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-4.svg b/icons/circle-number-4.svg index 6b36a087c..35306fc4d 100644 --- a/icons/circle-number-4.svg +++ b/icons/circle-number-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-number-5.svg b/icons/circle-number-5.svg index 5166a1de8..9fa60f2da 100644 --- a/icons/circle-number-5.svg +++ b/icons/circle-number-5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-6.svg b/icons/circle-number-6.svg index 2dd8796b5..391d9760c 100644 --- a/icons/circle-number-6.svg +++ b/icons/circle-number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-7.svg b/icons/circle-number-7.svg index 4ef817ffd..ec1ae9c3a 100644 --- a/icons/circle-number-7.svg +++ b/icons/circle-number-7.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-8.svg b/icons/circle-number-8.svg index 43104e1d2..9fdf2a3df 100644 --- a/icons/circle-number-8.svg +++ b/icons/circle-number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-number-9.svg b/icons/circle-number-9.svg index 4b5848294..f60f240f5 100644 --- a/icons/circle-number-9.svg +++ b/icons/circle-number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-off.svg b/icons/circle-off.svg index 0dd5f5a11..74a54f663 100644 --- a/icons/circle-off.svg +++ b/icons/circle-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-plus.svg b/icons/circle-plus.svg index cf9de7c0a..4aa5a1b59 100644 --- a/icons/circle-plus.svg +++ b/icons/circle-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-rectangle-off.svg b/icons/circle-rectangle-off.svg index 9e1ba19fa..1d46c23f5 100644 --- a/icons/circle-rectangle-off.svg +++ b/icons/circle-rectangle-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circle-rectangle.svg b/icons/circle-rectangle.svg index 2014a79b8..933db3efd 100644 --- a/icons/circle-rectangle.svg +++ b/icons/circle-rectangle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-square.svg b/icons/circle-square.svg index 899244c17..f2342e2ea 100644 --- a/icons/circle-square.svg +++ b/icons/circle-square.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-triangle.svg b/icons/circle-triangle.svg index b635faab9..36e0f20b0 100644 --- a/icons/circle-triangle.svg +++ b/icons/circle-triangle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle-x.svg b/icons/circle-x.svg index ef9c7e4ad..bf63a4b90 100644 --- a/icons/circle-x.svg +++ b/icons/circle-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circle.svg b/icons/circle.svg index c596738bb..de03b685a 100644 --- a/icons/circle.svg +++ b/icons/circle.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/circles-filled.svg b/icons/circles-filled.svg new file mode 100644 index 000000000..840dad796 --- /dev/null +++ b/icons/circles-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circles-relation.svg b/icons/circles-relation.svg index 193d4adc0..122be4d01 100644 --- a/icons/circles-relation.svg +++ b/icons/circles-relation.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circles.svg b/icons/circles.svg index e037b2fba..d35613d18 100644 --- a/icons/circles.svg +++ b/icons/circles.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/circuit-ammeter.svg b/icons/circuit-ammeter.svg index dc74f6df4..b79e3fa41 100644 --- a/icons/circuit-ammeter.svg +++ b/icons/circuit-ammeter.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/circuit-battery.svg b/icons/circuit-battery.svg index f147b9696..ae70a261d 100644 --- a/icons/circuit-battery.svg +++ b/icons/circuit-battery.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/circuit-bulb.svg b/icons/circuit-bulb.svg index 916483379..d0fc6c9b8 100644 --- a/icons/circuit-bulb.svg +++ b/icons/circuit-bulb.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/circuit-capacitor-polarized.svg b/icons/circuit-capacitor-polarized.svg index 2a2a55f18..703b445a8 100644 --- a/icons/circuit-capacitor-polarized.svg +++ b/icons/circuit-capacitor-polarized.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/circuit-capacitor.svg b/icons/circuit-capacitor.svg index f9c9bb78c..f3075a367 100644 --- a/icons/circuit-capacitor.svg +++ b/icons/circuit-capacitor.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-cell-plus.svg b/icons/circuit-cell-plus.svg index efb48b4c2..a5efcfebc 100644 --- a/icons/circuit-cell-plus.svg +++ b/icons/circuit-cell-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/circuit-cell.svg b/icons/circuit-cell.svg index 39496c5d7..b80f39bb5 100644 --- a/icons/circuit-cell.svg +++ b/icons/circuit-cell.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-changeover.svg b/icons/circuit-changeover.svg index cf3cae1c4..c00d03d53 100644 --- a/icons/circuit-changeover.svg +++ b/icons/circuit-changeover.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/circuit-diode-zener.svg b/icons/circuit-diode-zener.svg index 3ab52e122..2f0c4b991 100644 --- a/icons/circuit-diode-zener.svg +++ b/icons/circuit-diode-zener.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-diode.svg b/icons/circuit-diode.svg index 663c97ff9..938e4b25e 100644 --- a/icons/circuit-diode.svg +++ b/icons/circuit-diode.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-ground-digital.svg b/icons/circuit-ground-digital.svg index 2734750ab..0257f2cf7 100644 --- a/icons/circuit-ground-digital.svg +++ b/icons/circuit-ground-digital.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/circuit-ground.svg b/icons/circuit-ground.svg index f494622ea..fe8f838d8 100644 --- a/icons/circuit-ground.svg +++ b/icons/circuit-ground.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-motor.svg b/icons/circuit-motor.svg index 6c1f3358b..10a7b4e3b 100644 --- a/icons/circuit-motor.svg +++ b/icons/circuit-motor.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/circuit-pushbutton.svg b/icons/circuit-pushbutton.svg index f601cad4d..9c54f551d 100644 --- a/icons/circuit-pushbutton.svg +++ b/icons/circuit-pushbutton.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/circuit-switch-closed.svg b/icons/circuit-switch-closed.svg index a2be74111..13e19a322 100644 --- a/icons/circuit-switch-closed.svg +++ b/icons/circuit-switch-closed.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/circuit-switch-open.svg b/icons/circuit-switch-open.svg index 7927d6f17..bc0c861ac 100644 --- a/icons/circuit-switch-open.svg +++ b/icons/circuit-switch-open.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/circuit-voltmeter.svg b/icons/circuit-voltmeter.svg index 7c434dfbc..c5ef2e2e9 100644 --- a/icons/circuit-voltmeter.svg +++ b/icons/circuit-voltmeter.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clear-all.svg b/icons/clear-all.svg index 9f97df126..9331704b9 100644 --- a/icons/clear-all.svg +++ b/icons/clear-all.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clear-formatting.svg b/icons/clear-formatting.svg index 4fa79f795..91eb3f7e5 100644 --- a/icons/clear-formatting.svg +++ b/icons/clear-formatting.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/click.svg b/icons/click.svg index b7b98108e..33b4d040b 100644 --- a/icons/click.svg +++ b/icons/click.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/clipboard-check.svg b/icons/clipboard-check.svg index 9990a0c14..05fc0b12f 100644 --- a/icons/clipboard-check.svg +++ b/icons/clipboard-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clipboard-copy.svg b/icons/clipboard-copy.svg index 6f0670b06..1d425613d 100644 --- a/icons/clipboard-copy.svg +++ b/icons/clipboard-copy.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clipboard-data.svg b/icons/clipboard-data.svg index 1c0c458db..3f8226534 100644 --- a/icons/clipboard-data.svg +++ b/icons/clipboard-data.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/clipboard-heart.svg b/icons/clipboard-heart.svg index 642935f9b..13a4bf86b 100644 --- a/icons/clipboard-heart.svg +++ b/icons/clipboard-heart.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clipboard-list.svg b/icons/clipboard-list.svg index 7b40f7065..6bbaf31e1 100644 --- a/icons/clipboard-list.svg +++ b/icons/clipboard-list.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/clipboard-off.svg b/icons/clipboard-off.svg index 474ff1aca..44e3df1c3 100644 --- a/icons/clipboard-off.svg +++ b/icons/clipboard-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clipboard-plus.svg b/icons/clipboard-plus.svg index e281645b5..f2b55dee2 100644 --- a/icons/clipboard-plus.svg +++ b/icons/clipboard-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clipboard-text.svg b/icons/clipboard-text.svg index 5e087e4f8..445cad7f8 100644 --- a/icons/clipboard-text.svg +++ b/icons/clipboard-text.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clipboard-typography.svg b/icons/clipboard-typography.svg index e536f1aaf..9c46ff80c 100644 --- a/icons/clipboard-typography.svg +++ b/icons/clipboard-typography.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/clipboard-x.svg b/icons/clipboard-x.svg index 9331714ca..f41163e85 100644 --- a/icons/clipboard-x.svg +++ b/icons/clipboard-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clipboard.svg b/icons/clipboard.svg index fcc299548..2e93d61b3 100644 --- a/icons/clipboard.svg +++ b/icons/clipboard.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/clock-2.svg b/icons/clock-2.svg index 39598994d..393892500 100644 --- a/icons/clock-2.svg +++ b/icons/clock-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/clock-cancel.svg b/icons/clock-cancel.svg index 390b05ce7..ba0566de6 100644 --- a/icons/clock-cancel.svg +++ b/icons/clock-cancel.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clock-edit.svg b/icons/clock-edit.svg index bf421baaa..2294da724 100644 --- a/icons/clock-edit.svg +++ b/icons/clock-edit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-1.svg b/icons/clock-hour-1.svg index b3a5bf002..ed4aceec2 100644 --- a/icons/clock-hour-1.svg +++ b/icons/clock-hour-1.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-10.svg b/icons/clock-hour-10.svg index 0a3416a9b..8cd0429df 100644 --- a/icons/clock-hour-10.svg +++ b/icons/clock-hour-10.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-11.svg b/icons/clock-hour-11.svg index 4642727ed..6d277752c 100644 --- a/icons/clock-hour-11.svg +++ b/icons/clock-hour-11.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-12.svg b/icons/clock-hour-12.svg index 00dcc3ab4..0bff5722c 100644 --- a/icons/clock-hour-12.svg +++ b/icons/clock-hour-12.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/clock-hour-2.svg b/icons/clock-hour-2.svg index 8aabe5bb0..7381903e2 100644 --- a/icons/clock-hour-2.svg +++ b/icons/clock-hour-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-3.svg b/icons/clock-hour-3.svg index e2e299c1c..a6857a6cb 100644 --- a/icons/clock-hour-3.svg +++ b/icons/clock-hour-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-4.svg b/icons/clock-hour-4.svg index 469ac3422..fc1653886 100644 --- a/icons/clock-hour-4.svg +++ b/icons/clock-hour-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-5.svg b/icons/clock-hour-5.svg index dd963e810..d29d9d450 100644 --- a/icons/clock-hour-5.svg +++ b/icons/clock-hour-5.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-6.svg b/icons/clock-hour-6.svg index fada9ee4e..fb72377a0 100644 --- a/icons/clock-hour-6.svg +++ b/icons/clock-hour-6.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-7.svg b/icons/clock-hour-7.svg index 28dcdb756..95c3526e0 100644 --- a/icons/clock-hour-7.svg +++ b/icons/clock-hour-7.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-8.svg b/icons/clock-hour-8.svg index cb46e8731..a2bb42ddd 100644 --- a/icons/clock-hour-8.svg +++ b/icons/clock-hour-8.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-hour-9.svg b/icons/clock-hour-9.svg index 12d2327e2..6a58fbe2f 100644 --- a/icons/clock-hour-9.svg +++ b/icons/clock-hour-9.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-off.svg b/icons/clock-off.svg index 83e04690d..b6380f779 100644 --- a/icons/clock-off.svg +++ b/icons/clock-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-pause.svg b/icons/clock-pause.svg index aabcf9173..599f881c7 100644 --- a/icons/clock-pause.svg +++ b/icons/clock-pause.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clock-play.svg b/icons/clock-play.svg index b113e7fc1..86d793272 100644 --- a/icons/clock-play.svg +++ b/icons/clock-play.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-record.svg b/icons/clock-record.svg index b8114096b..c2eeaf613 100644 --- a/icons/clock-record.svg +++ b/icons/clock-record.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock-stop.svg b/icons/clock-stop.svg index ac1a72d04..143baab04 100644 --- a/icons/clock-stop.svg +++ b/icons/clock-stop.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/clock.svg b/icons/clock.svg index fd9898435..6d56c8d19 100644 --- a/icons/clock.svg +++ b/icons/clock.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/clothes-rack-off.svg b/icons/clothes-rack-off.svg index b899a44d1..409f8e2a5 100644 --- a/icons/clothes-rack-off.svg +++ b/icons/clothes-rack-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/clothes-rack.svg b/icons/clothes-rack.svg index 75d37b74d..38de2aa0d 100644 --- a/icons/clothes-rack.svg +++ b/icons/clothes-rack.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cloud-computing.svg b/icons/cloud-computing.svg index 978f9731b..171904c5e 100644 --- a/icons/cloud-computing.svg +++ b/icons/cloud-computing.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cloud-data-connection.svg b/icons/cloud-data-connection.svg index 18606ecfd..d837f5b12 100644 --- a/icons/cloud-data-connection.svg +++ b/icons/cloud-data-connection.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cloud-download.svg b/icons/cloud-download.svg index 737985a95..6fe35c5a5 100644 --- a/icons/cloud-download.svg +++ b/icons/cloud-download.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cloud-filled.svg b/icons/cloud-filled.svg new file mode 100644 index 000000000..eadba2f39 --- /dev/null +++ b/icons/cloud-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cloud-fog.svg b/icons/cloud-fog.svg index 29a2410b3..4033cad7a 100644 --- a/icons/cloud-fog.svg +++ b/icons/cloud-fog.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cloud-lock-open.svg b/icons/cloud-lock-open.svg index 17e7942e9..5ae73df2b 100644 --- a/icons/cloud-lock-open.svg +++ b/icons/cloud-lock-open.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cloud-lock.svg b/icons/cloud-lock.svg index a72145482..4fe1c3b27 100644 --- a/icons/cloud-lock.svg +++ b/icons/cloud-lock.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cloud-off.svg b/icons/cloud-off.svg index 98791bc77..9cdacf78a 100644 --- a/icons/cloud-off.svg +++ b/icons/cloud-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cloud-rain.svg b/icons/cloud-rain.svg index a603734a5..1ccdd38a1 100644 --- a/icons/cloud-rain.svg +++ b/icons/cloud-rain.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cloud-snow.svg b/icons/cloud-snow.svg index c2d7d5048..075516e0e 100644 --- a/icons/cloud-snow.svg +++ b/icons/cloud-snow.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cloud-storm.svg b/icons/cloud-storm.svg index 4bd54b56e..e73cc16f8 100644 --- a/icons/cloud-storm.svg +++ b/icons/cloud-storm.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cloud-upload.svg b/icons/cloud-upload.svg index 7cd5594a1..b404f3a4f 100644 --- a/icons/cloud-upload.svg +++ b/icons/cloud-upload.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cloud.svg b/icons/cloud.svg index ad10fd5d3..5a859e78d 100644 --- a/icons/cloud.svg +++ b/icons/cloud.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/clover-2.svg b/icons/clover-2.svg index 1851d21bb..35cc099c0 100644 --- a/icons/clover-2.svg +++ b/icons/clover-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/clover.svg b/icons/clover.svg index e88c95cca..aa38b142a 100644 --- a/icons/clover.svg +++ b/icons/clover.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/clubs-filled.svg b/icons/clubs-filled.svg new file mode 100644 index 000000000..13d69392d --- /dev/null +++ b/icons/clubs-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clubs.svg b/icons/clubs.svg index 261812b28..3a1183ba8 100644 --- a/icons/clubs.svg +++ b/icons/clubs.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/code-asterix.svg b/icons/code-asterix.svg index a7d3b6431..98e5c3164 100644 --- a/icons/code-asterix.svg +++ b/icons/code-asterix.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/code-circle-2.svg b/icons/code-circle-2.svg index ea3b61481..c7100112e 100644 --- a/icons/code-circle-2.svg +++ b/icons/code-circle-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/code-circle.svg b/icons/code-circle.svg index b0fde7912..9dfe9219d 100644 --- a/icons/code-circle.svg +++ b/icons/code-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/code-dots.svg b/icons/code-dots.svg index cce92833b..d937fd402 100644 --- a/icons/code-dots.svg +++ b/icons/code-dots.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/code-minus.svg b/icons/code-minus.svg index 03d880eaf..db07fb1c1 100644 --- a/icons/code-minus.svg +++ b/icons/code-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/code-off.svg b/icons/code-off.svg index 33ddce1e8..9c340b8b3 100644 --- a/icons/code-off.svg +++ b/icons/code-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/code-plus.svg b/icons/code-plus.svg index 84e5bf621..b83e1f94d 100644 --- a/icons/code-plus.svg +++ b/icons/code-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/code.svg b/icons/code.svg index 41512d38d..0273345ff 100644 --- a/icons/code.svg +++ b/icons/code.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/coffee-off.svg b/icons/coffee-off.svg index bfcbb9a66..4066d0ad7 100644 --- a/icons/coffee-off.svg +++ b/icons/coffee-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/coffee.svg b/icons/coffee.svg index 2d9a5c64f..316233684 100644 --- a/icons/coffee.svg +++ b/icons/coffee.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/coffin.svg b/icons/coffin.svg index a694d112e..a35d9036a 100644 --- a/icons/coffin.svg +++ b/icons/coffin.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/coin-bitcoin.svg b/icons/coin-bitcoin.svg index e966dad81..959c2e91a 100644 --- a/icons/coin-bitcoin.svg +++ b/icons/coin-bitcoin.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/coin-euro.svg b/icons/coin-euro.svg index 095b442b4..df4afb00e 100644 --- a/icons/coin-euro.svg +++ b/icons/coin-euro.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/coin-monero.svg b/icons/coin-monero.svg index b3c2dd7e2..73c9e48d9 100644 --- a/icons/coin-monero.svg +++ b/icons/coin-monero.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/coin-off.svg b/icons/coin-off.svg index bb4bfb346..4b1f8b411 100644 --- a/icons/coin-off.svg +++ b/icons/coin-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/coin-pound.svg b/icons/coin-pound.svg index ff6fff73f..438779c7c 100644 --- a/icons/coin-pound.svg +++ b/icons/coin-pound.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/coin-rupee.svg b/icons/coin-rupee.svg index 397c6ab1e..1fb027c83 100644 --- a/icons/coin-rupee.svg +++ b/icons/coin-rupee.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/coin-yen.svg b/icons/coin-yen.svg index fd3e570d8..9bfed7e0e 100644 --- a/icons/coin-yen.svg +++ b/icons/coin-yen.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/coin-yuan.svg b/icons/coin-yuan.svg index 9e7dbc915..a35c5edc2 100644 --- a/icons/coin-yuan.svg +++ b/icons/coin-yuan.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/coin.svg b/icons/coin.svg index 920e88648..c10b7a155 100644 --- a/icons/coin.svg +++ b/icons/coin.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/coins.svg b/icons/coins.svg index d7c4a5278..a8c36a821 100644 --- a/icons/coins.svg +++ b/icons/coins.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/color-filter.svg b/icons/color-filter.svg index 15821b62b..45d1a1447 100644 --- a/icons/color-filter.svg +++ b/icons/color-filter.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/color-picker-off.svg b/icons/color-picker-off.svg index b9ab5eb80..9934a7a81 100644 --- a/icons/color-picker-off.svg +++ b/icons/color-picker-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/color-picker.svg b/icons/color-picker.svg index ee0a68fc7..caaef8c41 100644 --- a/icons/color-picker.svg +++ b/icons/color-picker.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/color-swatch-off.svg b/icons/color-swatch-off.svg index d425a6f25..8c25067b0 100644 --- a/icons/color-swatch-off.svg +++ b/icons/color-swatch-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/color-swatch.svg b/icons/color-swatch.svg index 16c6e470b..7a19aedb4 100644 --- a/icons/color-swatch.svg +++ b/icons/color-swatch.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/column-insert-left.svg b/icons/column-insert-left.svg index 1d8860c8d..3080344f2 100644 --- a/icons/column-insert-left.svg +++ b/icons/column-insert-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/column-insert-right.svg b/icons/column-insert-right.svg index 7270b8451..55fdfd637 100644 --- a/icons/column-insert-right.svg +++ b/icons/column-insert-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/columns-off.svg b/icons/columns-off.svg index 5c43f55fd..3c5b05024 100644 --- a/icons/columns-off.svg +++ b/icons/columns-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/columns.svg b/icons/columns.svg index 41f9a896f..e9488ca21 100644 --- a/icons/columns.svg +++ b/icons/columns.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/comet.svg b/icons/comet.svg index fc5b1ff68..32ab1af7b 100644 --- a/icons/comet.svg +++ b/icons/comet.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/command-off.svg b/icons/command-off.svg index f0af9208b..d2260933d 100644 --- a/icons/command-off.svg +++ b/icons/command-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/compass-off.svg b/icons/compass-off.svg index 3d1be1e5c..b1fd858b7 100644 --- a/icons/compass-off.svg +++ b/icons/compass-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/compass.svg b/icons/compass.svg index e68a1a348..b9bda4268 100644 --- a/icons/compass.svg +++ b/icons/compass.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/components-off.svg b/icons/components-off.svg index 32fc9723c..5414493fe 100644 --- a/icons/components-off.svg +++ b/icons/components-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/components.svg b/icons/components.svg index 162f99688..c61931cb9 100644 --- a/icons/components.svg +++ b/icons/components.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cone-2.svg b/icons/cone-2.svg index 3d35ebcca..d6fc49220 100644 --- a/icons/cone-2.svg +++ b/icons/cone-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cone-off.svg b/icons/cone-off.svg index 48011edd9..3a55927fd 100644 --- a/icons/cone-off.svg +++ b/icons/cone-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cone.svg b/icons/cone.svg index 42cf077c7..72ed526b1 100644 --- a/icons/cone.svg +++ b/icons/cone.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/confetti-off.svg b/icons/confetti-off.svg index f8f4f97ff..c13e41dde 100644 --- a/icons/confetti-off.svg +++ b/icons/confetti-off.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/confetti.svg b/icons/confetti.svg index a07d96db6..a8cc5fd65 100644 --- a/icons/confetti.svg +++ b/icons/confetti.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/confucius.svg b/icons/confucius.svg index 90f603dd0..774d323ef 100644 --- a/icons/confucius.svg +++ b/icons/confucius.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/container-off.svg b/icons/container-off.svg index 0495bb881..9164cc1fe 100644 --- a/icons/container-off.svg +++ b/icons/container-off.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/container.svg b/icons/container.svg index ca7e72912..98edddb98 100644 --- a/icons/container.svg +++ b/icons/container.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/contrast-2-off.svg b/icons/contrast-2-off.svg index 4523c21a3..630510180 100644 --- a/icons/contrast-2-off.svg +++ b/icons/contrast-2-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/contrast-2.svg b/icons/contrast-2.svg index 35f1423bc..2b3687870 100644 --- a/icons/contrast-2.svg +++ b/icons/contrast-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/contrast-off.svg b/icons/contrast-off.svg index cd273ee83..dda47fcc1 100644 --- a/icons/contrast-off.svg +++ b/icons/contrast-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/contrast.svg b/icons/contrast.svg index 21cc2fbc6..1e325c98d 100644 --- a/icons/contrast.svg +++ b/icons/contrast.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cooker.svg b/icons/cooker.svg index 9e645f9ae..70c01eb50 100644 --- a/icons/cooker.svg +++ b/icons/cooker.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/cookie-man.svg b/icons/cookie-man.svg index de88987f6..d074c5093 100644 --- a/icons/cookie-man.svg +++ b/icons/cookie-man.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/cookie-off.svg b/icons/cookie-off.svg index e9d51ff18..8645cba87 100644 --- a/icons/cookie-off.svg +++ b/icons/cookie-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cookie.svg b/icons/cookie.svg index 9c10bb5cc..4ddd9d8c0 100644 --- a/icons/cookie.svg +++ b/icons/cookie.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/copy-off.svg b/icons/copy-off.svg index 7fcf171dd..37a5686bc 100644 --- a/icons/copy-off.svg +++ b/icons/copy-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/copy.svg b/icons/copy.svg index 190a3b534..707535c73 100644 --- a/icons/copy.svg +++ b/icons/copy.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/copyleft-off.svg b/icons/copyleft-off.svg index 63c4d0b01..ac6301d13 100644 --- a/icons/copyleft-off.svg +++ b/icons/copyleft-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/copyleft.svg b/icons/copyleft.svg index 46fd279dd..d39769261 100644 --- a/icons/copyleft.svg +++ b/icons/copyleft.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/copyright-off.svg b/icons/copyright-off.svg index d0fbd6704..de8375200 100644 --- a/icons/copyright-off.svg +++ b/icons/copyright-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/copyright.svg b/icons/copyright.svg index a1b829857..0fc90082c 100644 --- a/icons/copyright.svg +++ b/icons/copyright.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-down-left-double.svg b/icons/corner-down-left-double.svg index 98997cab8..3ff73ea64 100644 --- a/icons/corner-down-left-double.svg +++ b/icons/corner-down-left-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-down-right-double.svg b/icons/corner-down-right-double.svg index a4d916d9a..dd94e9831 100644 --- a/icons/corner-down-right-double.svg +++ b/icons/corner-down-right-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-left-down-double.svg b/icons/corner-left-down-double.svg index aeaacd233..8b15d5546 100644 --- a/icons/corner-left-down-double.svg +++ b/icons/corner-left-down-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-left-up-double.svg b/icons/corner-left-up-double.svg index 8ec8ffec5..55c96f67c 100644 --- a/icons/corner-left-up-double.svg +++ b/icons/corner-left-up-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-right-down-double.svg b/icons/corner-right-down-double.svg index 49d07eb81..83676d8fd 100644 --- a/icons/corner-right-down-double.svg +++ b/icons/corner-right-down-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-right-up-double.svg b/icons/corner-right-up-double.svg index 3a8c9b806..a9e9e0d2b 100644 --- a/icons/corner-right-up-double.svg +++ b/icons/corner-right-up-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-up-left-double.svg b/icons/corner-up-left-double.svg index 441f340c9..26536e1b6 100644 --- a/icons/corner-up-left-double.svg +++ b/icons/corner-up-left-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/corner-up-right-double.svg b/icons/corner-up-right-double.svg index dbf8a6fa6..3e71e1cd4 100644 --- a/icons/corner-up-right-double.svg +++ b/icons/corner-up-right-double.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cpu-2.svg b/icons/cpu-2.svg index 261a83c87..1769a8edb 100644 --- a/icons/cpu-2.svg +++ b/icons/cpu-2.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/cpu-off.svg b/icons/cpu-off.svg index 98cb48926..01b020458 100644 --- a/icons/cpu-off.svg +++ b/icons/cpu-off.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/cpu.svg b/icons/cpu.svg index 438700c15..4288b9717 100644 --- a/icons/cpu.svg +++ b/icons/cpu.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/crane-off.svg b/icons/crane-off.svg index 97d0691bc..426f10398 100644 --- a/icons/crane-off.svg +++ b/icons/crane-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/crane.svg b/icons/crane.svg index 917a9e1a6..e705e3089 100644 --- a/icons/crane.svg +++ b/icons/crane.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/creative-commons-by.svg b/icons/creative-commons-by.svg index b16730108..88b81dcde 100644 --- a/icons/creative-commons-by.svg +++ b/icons/creative-commons-by.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/creative-commons-nc.svg b/icons/creative-commons-nc.svg index 111c35dbc..a68a18695 100644 --- a/icons/creative-commons-nc.svg +++ b/icons/creative-commons-nc.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/creative-commons-nd.svg b/icons/creative-commons-nd.svg index 8fc9b6b44..617d14d5f 100644 --- a/icons/creative-commons-nd.svg +++ b/icons/creative-commons-nd.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/creative-commons-off.svg b/icons/creative-commons-off.svg index 59c6bd999..6512f452a 100644 --- a/icons/creative-commons-off.svg +++ b/icons/creative-commons-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/creative-commons-sa.svg b/icons/creative-commons-sa.svg index f2911a7bd..cf85e2b0c 100644 --- a/icons/creative-commons-sa.svg +++ b/icons/creative-commons-sa.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/creative-commons-zero.svg b/icons/creative-commons-zero.svg index c8f4f3ab9..954e93c3c 100644 --- a/icons/creative-commons-zero.svg +++ b/icons/creative-commons-zero.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/creative-commons.svg b/icons/creative-commons.svg index c928e3388..a768842cd 100644 --- a/icons/creative-commons.svg +++ b/icons/creative-commons.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/credit-card-off.svg b/icons/credit-card-off.svg index c681c2ee0..47d978634 100644 --- a/icons/credit-card-off.svg +++ b/icons/credit-card-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/credit-card.svg b/icons/credit-card.svg index 173b29c96..ebe7434ad 100644 --- a/icons/credit-card.svg +++ b/icons/credit-card.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cricket.svg b/icons/cricket.svg index 80e8fca0c..25aba85a9 100644 --- a/icons/cricket.svg +++ b/icons/cricket.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/crop.svg b/icons/crop.svg index 039da9d13..72fd6d9b4 100644 --- a/icons/crop.svg +++ b/icons/crop.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cross-filled.svg b/icons/cross-filled.svg new file mode 100644 index 000000000..055d42a9a --- /dev/null +++ b/icons/cross-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cross-off.svg b/icons/cross-off.svg index fe8063829..9da4c31a8 100644 --- a/icons/cross-off.svg +++ b/icons/cross-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/crosshair.svg b/icons/crosshair.svg index fd4fd7044..ea6de8919 100644 --- a/icons/crosshair.svg +++ b/icons/crosshair.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/crown-off.svg b/icons/crown-off.svg index e612fd252..37e15b07e 100644 --- a/icons/crown-off.svg +++ b/icons/crown-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/crutches-off.svg b/icons/crutches-off.svg index 29457b335..cfb45ebdc 100644 --- a/icons/crutches-off.svg +++ b/icons/crutches-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/crutches.svg b/icons/crutches.svg index 887157e16..16c555e20 100644 --- a/icons/crutches.svg +++ b/icons/crutches.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/crystal-ball.svg b/icons/crystal-ball.svg index 39566eaef..dd94bbb2e 100644 --- a/icons/crystal-ball.svg +++ b/icons/crystal-ball.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cube-send.svg b/icons/cube-send.svg index bfd4fdae4..93e00396c 100644 --- a/icons/cube-send.svg +++ b/icons/cube-send.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/cube-unfolded.svg b/icons/cube-unfolded.svg index 21e8145db..dd984ca4a 100644 --- a/icons/cube-unfolded.svg +++ b/icons/cube-unfolded.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/cup-off.svg b/icons/cup-off.svg index a99dd124d..b0f413b1a 100644 --- a/icons/cup-off.svg +++ b/icons/cup-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/cup.svg b/icons/cup.svg index 96ab46a8f..891102037 100644 --- a/icons/cup.svg +++ b/icons/cup.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/curling.svg b/icons/curling.svg index c26e867e3..fa3a48a73 100644 --- a/icons/curling.svg +++ b/icons/curling.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-afghani.svg b/icons/currency-afghani.svg index 00ac8abef..0968b15cd 100644 --- a/icons/currency-afghani.svg +++ b/icons/currency-afghani.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-bahraini.svg b/icons/currency-bahraini.svg index e8f8ac144..26487403b 100644 --- a/icons/currency-bahraini.svg +++ b/icons/currency-bahraini.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-baht.svg b/icons/currency-baht.svg index 749aec5d1..68df89308 100644 --- a/icons/currency-baht.svg +++ b/icons/currency-baht.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-bitcoin.svg b/icons/currency-bitcoin.svg index acdeaa894..74c5a4de2 100644 --- a/icons/currency-bitcoin.svg +++ b/icons/currency-bitcoin.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/currency-cent.svg b/icons/currency-cent.svg index dfdc0d483..03c134bda 100644 --- a/icons/currency-cent.svg +++ b/icons/currency-cent.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-dinar.svg b/icons/currency-dinar.svg index 09193c55f..34ca7ee63 100644 --- a/icons/currency-dinar.svg +++ b/icons/currency-dinar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dirham.svg b/icons/currency-dirham.svg index 12e660931..42a839d0d 100644 --- a/icons/currency-dirham.svg +++ b/icons/currency-dirham.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-dogecoin.svg b/icons/currency-dogecoin.svg index 36c3571f5..40cabbb7e 100644 --- a/icons/currency-dogecoin.svg +++ b/icons/currency-dogecoin.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-dollar-australian.svg b/icons/currency-dollar-australian.svg index 30ddedd74..b0d9cb84e 100644 --- a/icons/currency-dollar-australian.svg +++ b/icons/currency-dollar-australian.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-dollar-brunei.svg b/icons/currency-dollar-brunei.svg index 2657d1aeb..9b03461bf 100644 --- a/icons/currency-dollar-brunei.svg +++ b/icons/currency-dollar-brunei.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dollar-canadian.svg b/icons/currency-dollar-canadian.svg index 662e7046c..da2cd8455 100644 --- a/icons/currency-dollar-canadian.svg +++ b/icons/currency-dollar-canadian.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dollar-guyanese.svg b/icons/currency-dollar-guyanese.svg index 95d341844..c0bc1c14f 100644 --- a/icons/currency-dollar-guyanese.svg +++ b/icons/currency-dollar-guyanese.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dollar-off.svg b/icons/currency-dollar-off.svg index 286f0ca6b..fda979401 100644 --- a/icons/currency-dollar-off.svg +++ b/icons/currency-dollar-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-dollar-singapore.svg b/icons/currency-dollar-singapore.svg index ca5c3cc9e..2598718aa 100644 --- a/icons/currency-dollar-singapore.svg +++ b/icons/currency-dollar-singapore.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dollar-zimbabwean.svg b/icons/currency-dollar-zimbabwean.svg index 6d3544e3e..b04621ae7 100644 --- a/icons/currency-dollar-zimbabwean.svg +++ b/icons/currency-dollar-zimbabwean.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dollar.svg b/icons/currency-dollar.svg index 789aa7ee0..bb1baa520 100644 --- a/icons/currency-dollar.svg +++ b/icons/currency-dollar.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-dong.svg b/icons/currency-dong.svg index 9b9a521b4..905531c12 100644 --- a/icons/currency-dong.svg +++ b/icons/currency-dong.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-dram.svg b/icons/currency-dram.svg index 67dc5a9f9..3a44e52eb 100644 --- a/icons/currency-dram.svg +++ b/icons/currency-dram.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-ethereum.svg b/icons/currency-ethereum.svg index 0b3e736f1..89c7eb260 100644 --- a/icons/currency-ethereum.svg +++ b/icons/currency-ethereum.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-euro-off.svg b/icons/currency-euro-off.svg index 527f98287..662dbab37 100644 --- a/icons/currency-euro-off.svg +++ b/icons/currency-euro-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-euro.svg b/icons/currency-euro.svg index cc7af59d0..d22934ada 100644 --- a/icons/currency-euro.svg +++ b/icons/currency-euro.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-forint.svg b/icons/currency-forint.svg index 6ddc7315d..4c80ff0de 100644 --- a/icons/currency-forint.svg +++ b/icons/currency-forint.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-frank.svg b/icons/currency-frank.svg index a4ba0fcbc..66c328b28 100644 --- a/icons/currency-frank.svg +++ b/icons/currency-frank.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-guarani.svg b/icons/currency-guarani.svg index 92441c053..b9f4fe7ac 100644 --- a/icons/currency-guarani.svg +++ b/icons/currency-guarani.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-hryvnia.svg b/icons/currency-hryvnia.svg index 26353c931..e39cfae11 100644 --- a/icons/currency-hryvnia.svg +++ b/icons/currency-hryvnia.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-kip.svg b/icons/currency-kip.svg index 2dc04c0fb..0b2f1a33a 100644 --- a/icons/currency-kip.svg +++ b/icons/currency-kip.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-krone-czech.svg b/icons/currency-krone-czech.svg index 82d178f76..6820f80d3 100644 --- a/icons/currency-krone-czech.svg +++ b/icons/currency-krone-czech.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-krone-danish.svg b/icons/currency-krone-danish.svg index 8544d0392..4fef28104 100644 --- a/icons/currency-krone-danish.svg +++ b/icons/currency-krone-danish.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/currency-krone-swedish.svg b/icons/currency-krone-swedish.svg index 644ca039f..62608bf76 100644 --- a/icons/currency-krone-swedish.svg +++ b/icons/currency-krone-swedish.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-lari.svg b/icons/currency-lari.svg index ccaef222e..b1e7b7602 100644 --- a/icons/currency-lari.svg +++ b/icons/currency-lari.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-lira.svg b/icons/currency-lira.svg index e2941c600..35b00bbd5 100644 --- a/icons/currency-lira.svg +++ b/icons/currency-lira.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-litecoin.svg b/icons/currency-litecoin.svg index 052f18ce7..c7d2620bd 100644 --- a/icons/currency-litecoin.svg +++ b/icons/currency-litecoin.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-lyd.svg b/icons/currency-lyd.svg index 99fbb2161..dd0541d3e 100644 --- a/icons/currency-lyd.svg +++ b/icons/currency-lyd.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-manat.svg b/icons/currency-manat.svg index 97ab5a3b3..ea5ca24d4 100644 --- a/icons/currency-manat.svg +++ b/icons/currency-manat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-naira.svg b/icons/currency-naira.svg index c5e33d494..6c87940f1 100644 --- a/icons/currency-naira.svg +++ b/icons/currency-naira.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-off.svg b/icons/currency-off.svg index 090905ed0..8715e6996 100644 --- a/icons/currency-off.svg +++ b/icons/currency-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/currency-paanga.svg b/icons/currency-paanga.svg index c215cee50..e4c972bd9 100644 --- a/icons/currency-paanga.svg +++ b/icons/currency-paanga.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-peso.svg b/icons/currency-peso.svg index efebf8880..1e8ddc652 100644 --- a/icons/currency-peso.svg +++ b/icons/currency-peso.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-pound-off.svg b/icons/currency-pound-off.svg index 4091b6060..04a261616 100644 --- a/icons/currency-pound-off.svg +++ b/icons/currency-pound-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-quetzal.svg b/icons/currency-quetzal.svg index 8fb81029a..7c9b45278 100644 --- a/icons/currency-quetzal.svg +++ b/icons/currency-quetzal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-real.svg b/icons/currency-real.svg index ef78891ec..d4e5456d5 100644 --- a/icons/currency-real.svg +++ b/icons/currency-real.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-renminbi.svg b/icons/currency-renminbi.svg index c034d6417..21e7e4a13 100644 --- a/icons/currency-renminbi.svg +++ b/icons/currency-renminbi.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-ripple.svg b/icons/currency-ripple.svg index 3e7bef324..20d89bcc2 100644 --- a/icons/currency-ripple.svg +++ b/icons/currency-ripple.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/currency-riyal.svg b/icons/currency-riyal.svg index 4fb945878..03561218a 100644 --- a/icons/currency-riyal.svg +++ b/icons/currency-riyal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-rubel.svg b/icons/currency-rubel.svg index eac1d07df..fe85525ac 100644 --- a/icons/currency-rubel.svg +++ b/icons/currency-rubel.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-rufiyaa.svg b/icons/currency-rufiyaa.svg index 7490ad724..9395d758b 100644 --- a/icons/currency-rufiyaa.svg +++ b/icons/currency-rufiyaa.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-rupee-nepalese.svg b/icons/currency-rupee-nepalese.svg index 2bbe9a32f..2bbb4e3aa 100644 --- a/icons/currency-rupee-nepalese.svg +++ b/icons/currency-rupee-nepalese.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-rupee.svg b/icons/currency-rupee.svg index 3ec687043..31859d3f0 100644 --- a/icons/currency-rupee.svg +++ b/icons/currency-rupee.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-shekel.svg b/icons/currency-shekel.svg index caf0025a6..3d8c31cb6 100644 --- a/icons/currency-shekel.svg +++ b/icons/currency-shekel.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-solana.svg b/icons/currency-solana.svg index 7c9063334..52776843d 100644 --- a/icons/currency-solana.svg +++ b/icons/currency-solana.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-som.svg b/icons/currency-som.svg index 15c1824f4..8e5f9c469 100644 --- a/icons/currency-som.svg +++ b/icons/currency-som.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/currency-taka.svg b/icons/currency-taka.svg index 84876eb22..861dc9555 100644 --- a/icons/currency-taka.svg +++ b/icons/currency-taka.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-tenge.svg b/icons/currency-tenge.svg index f24774889..9aaddfc9a 100644 --- a/icons/currency-tenge.svg +++ b/icons/currency-tenge.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-tugrik.svg b/icons/currency-tugrik.svg index 7f0a640e3..9a2a2745f 100644 --- a/icons/currency-tugrik.svg +++ b/icons/currency-tugrik.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-won.svg b/icons/currency-won.svg index 803d0632c..8cc45cd5c 100644 --- a/icons/currency-won.svg +++ b/icons/currency-won.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-yen-off.svg b/icons/currency-yen-off.svg index 02cc4b235..9935a899f 100644 --- a/icons/currency-yen-off.svg +++ b/icons/currency-yen-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/currency-yen.svg b/icons/currency-yen.svg index 86b219649..b9855cc79 100644 --- a/icons/currency-yen.svg +++ b/icons/currency-yen.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-yuan.svg b/icons/currency-yuan.svg index 4df3f150a..149c57f8e 100644 --- a/icons/currency-yuan.svg +++ b/icons/currency-yuan.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency-zloty.svg b/icons/currency-zloty.svg index 361624206..b86a1fc02 100644 --- a/icons/currency-zloty.svg +++ b/icons/currency-zloty.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/currency.svg b/icons/currency.svg index a15d4f3a7..fd0975cef 100644 --- a/icons/currency.svg +++ b/icons/currency.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/current-location-off.svg b/icons/current-location-off.svg index 7a5c13499..4963e5753 100644 --- a/icons/current-location-off.svg +++ b/icons/current-location-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/current-location.svg b/icons/current-location.svg index 9fe7ae729..c3d106949 100644 --- a/icons/current-location.svg +++ b/icons/current-location.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/cursor-off.svg b/icons/cursor-off.svg index 78f16aeda..436ca31a8 100644 --- a/icons/cursor-off.svg +++ b/icons/cursor-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cursor-text.svg b/icons/cursor-text.svg index 2662e65b7..f82b47ab9 100644 --- a/icons/cursor-text.svg +++ b/icons/cursor-text.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/cut.svg b/icons/cut.svg index e756272f4..556e7e8f6 100644 --- a/icons/cut.svg +++ b/icons/cut.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/cylinder.svg b/icons/cylinder.svg index 9a6d3610d..695df42b5 100644 --- a/icons/cylinder.svg +++ b/icons/cylinder.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/dashboard-off.svg b/icons/dashboard-off.svg index ebe369426..858e0ff93 100644 --- a/icons/dashboard-off.svg +++ b/icons/dashboard-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/dashboard.svg b/icons/dashboard.svg index 7f0dbad9b..ebc51cbff 100644 --- a/icons/dashboard.svg +++ b/icons/dashboard.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/database-export.svg b/icons/database-export.svg index b0af976a1..87169a12d 100644 --- a/icons/database-export.svg +++ b/icons/database-export.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/database-import.svg b/icons/database-import.svg index c4dd57367..e1e30ac3d 100644 --- a/icons/database-import.svg +++ b/icons/database-import.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/database-off.svg b/icons/database-off.svg index cbeb8637f..51da28bde 100644 --- a/icons/database-off.svg +++ b/icons/database-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/database.svg b/icons/database.svg index c7936180a..124b3cecf 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/deer.svg b/icons/deer.svg index 526b6ab2e..95bf9c0c2 100644 --- a/icons/deer.svg +++ b/icons/deer.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/dental-broken.svg b/icons/dental-broken.svg index 0ba767b53..67020f139 100644 --- a/icons/dental-broken.svg +++ b/icons/dental-broken.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/dental-off.svg b/icons/dental-off.svg index 9496a35a2..102afa714 100644 --- a/icons/dental-off.svg +++ b/icons/dental-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dental.svg b/icons/dental.svg index 0a1ca300f..130ad7f35 100644 --- a/icons/dental.svg +++ b/icons/dental.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/details-off.svg b/icons/details-off.svg index 8fd453654..43f6c5c95 100644 --- a/icons/details-off.svg +++ b/icons/details-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/details.svg b/icons/details.svg index 40d89b54b..47097e61f 100644 --- a/icons/details.svg +++ b/icons/details.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-airpods-case.svg b/icons/device-airpods-case.svg index d9d9c217e..30073c519 100644 --- a/icons/device-airpods-case.svg +++ b/icons/device-airpods-case.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-airpods.svg b/icons/device-airpods.svg index 31151b591..a0a0a2295 100644 --- a/icons/device-airpods.svg +++ b/icons/device-airpods.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-analytics.svg b/icons/device-analytics.svg index aafe348c2..c0410a03a 100644 --- a/icons/device-analytics.svg +++ b/icons/device-analytics.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-audio-tape.svg b/icons/device-audio-tape.svg index 622006e09..bd28a7784 100644 --- a/icons/device-audio-tape.svg +++ b/icons/device-audio-tape.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-camera-phone.svg b/icons/device-camera-phone.svg index 9d7583539..d8f459d9c 100644 --- a/icons/device-camera-phone.svg +++ b/icons/device-camera-phone.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-cctv-off.svg b/icons/device-cctv-off.svg index 7519871ec..664d726cc 100644 --- a/icons/device-cctv-off.svg +++ b/icons/device-cctv-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-cctv.svg b/icons/device-cctv.svg index ef6e1183f..a8f9313bd 100644 --- a/icons/device-cctv.svg +++ b/icons/device-cctv.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-computer-camera-off.svg b/icons/device-computer-camera-off.svg index daa97017d..aba10abd9 100644 --- a/icons/device-computer-camera-off.svg +++ b/icons/device-computer-camera-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-computer-camera.svg b/icons/device-computer-camera.svg index cdbdfacfd..bf8d10db8 100644 --- a/icons/device-computer-camera.svg +++ b/icons/device-computer-camera.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-desktop-analytics.svg b/icons/device-desktop-analytics.svg index 575f84f2d..d747653ae 100644 --- a/icons/device-desktop-analytics.svg +++ b/icons/device-desktop-analytics.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/device-desktop-off.svg b/icons/device-desktop-off.svg index 810d0533c..59c566c48 100644 --- a/icons/device-desktop-off.svg +++ b/icons/device-desktop-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-desktop.svg b/icons/device-desktop.svg index 8217145a9..9bf6cfcb8 100644 --- a/icons/device-desktop.svg +++ b/icons/device-desktop.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-floppy.svg b/icons/device-floppy.svg index 8e393213a..104b80d46 100644 --- a/icons/device-floppy.svg +++ b/icons/device-floppy.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-gamepad-2.svg b/icons/device-gamepad-2.svg index 015c7768b..004ab35ff 100644 --- a/icons/device-gamepad-2.svg +++ b/icons/device-gamepad-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-gamepad.svg b/icons/device-gamepad.svg index 2a68289cc..97c5c7ee1 100644 --- a/icons/device-gamepad.svg +++ b/icons/device-gamepad.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-heart-monitor.svg b/icons/device-heart-monitor.svg index 0858e3036..83a9caad2 100644 --- a/icons/device-heart-monitor.svg +++ b/icons/device-heart-monitor.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-ipad-horizontal.svg b/icons/device-ipad-horizontal.svg index f5c0fb325..cca152bf5 100644 --- a/icons/device-ipad-horizontal.svg +++ b/icons/device-ipad-horizontal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-ipad.svg b/icons/device-ipad.svg index bd861f0fc..89e099d9a 100644 --- a/icons/device-ipad.svg +++ b/icons/device-ipad.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-landline-phone.svg b/icons/device-landline-phone.svg index 63e52b810..d30d749ab 100644 --- a/icons/device-landline-phone.svg +++ b/icons/device-landline-phone.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/device-laptop-off.svg b/icons/device-laptop-off.svg index ce6ce87f2..905b83d9e 100644 --- a/icons/device-laptop-off.svg +++ b/icons/device-laptop-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-laptop.svg b/icons/device-laptop.svg index b56417ba2..17890ebfd 100644 --- a/icons/device-laptop.svg +++ b/icons/device-laptop.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-mobile-charging.svg b/icons/device-mobile-charging.svg index 8a6955d9a..fc5608548 100644 --- a/icons/device-mobile-charging.svg +++ b/icons/device-mobile-charging.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-mobile-message.svg b/icons/device-mobile-message.svg index 1cd1bfe80..f1d734aac 100644 --- a/icons/device-mobile-message.svg +++ b/icons/device-mobile-message.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-mobile-off.svg b/icons/device-mobile-off.svg index 1cb9589f3..691a606fb 100644 --- a/icons/device-mobile-off.svg +++ b/icons/device-mobile-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-mobile-rotated.svg b/icons/device-mobile-rotated.svg index e4cb06764..6c3380363 100644 --- a/icons/device-mobile-rotated.svg +++ b/icons/device-mobile-rotated.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-mobile-vibration.svg b/icons/device-mobile-vibration.svg index cb10489c9..ebe5c43cb 100644 --- a/icons/device-mobile-vibration.svg +++ b/icons/device-mobile-vibration.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-mobile.svg b/icons/device-mobile.svg index dfedc8f4a..4bcb3ff15 100644 --- a/icons/device-mobile.svg +++ b/icons/device-mobile.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-nintendo-off.svg b/icons/device-nintendo-off.svg index f16bd19db..51cb28f07 100644 --- a/icons/device-nintendo-off.svg +++ b/icons/device-nintendo-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-nintendo.svg b/icons/device-nintendo.svg index 86edf5550..e020d007a 100644 --- a/icons/device-nintendo.svg +++ b/icons/device-nintendo.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-sd-card.svg b/icons/device-sd-card.svg index f8d680894..d2c79ece2 100644 --- a/icons/device-sd-card.svg +++ b/icons/device-sd-card.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-sim-1.svg b/icons/device-sim-1.svg index 7130f87bb..4ec260a91 100644 --- a/icons/device-sim-1.svg +++ b/icons/device-sim-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-sim-2.svg b/icons/device-sim-2.svg index 3b0fbaeff..9e4354d85 100644 --- a/icons/device-sim-2.svg +++ b/icons/device-sim-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-sim-3.svg b/icons/device-sim-3.svg index 6838bd9da..1644fa7c8 100644 --- a/icons/device-sim-3.svg +++ b/icons/device-sim-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-sim.svg b/icons/device-sim.svg index f9d0b4157..f551937c7 100644 --- a/icons/device-sim.svg +++ b/icons/device-sim.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/device-speaker-off.svg b/icons/device-speaker-off.svg index 89fd17a63..a019be991 100644 --- a/icons/device-speaker-off.svg +++ b/icons/device-speaker-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-speaker.svg b/icons/device-speaker.svg index f2f432ca8..189a5d849 100644 --- a/icons/device-speaker.svg +++ b/icons/device-speaker.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-tablet-off.svg b/icons/device-tablet-off.svg index 0dd4ab4a5..159b37842 100644 --- a/icons/device-tablet-off.svg +++ b/icons/device-tablet-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-tablet.svg b/icons/device-tablet.svg index 77562f7ef..3e643bfb5 100644 --- a/icons/device-tablet.svg +++ b/icons/device-tablet.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-tv-off.svg b/icons/device-tv-off.svg index 4bc63812b..c62f1cb7e 100644 --- a/icons/device-tv-off.svg +++ b/icons/device-tv-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/device-tv-old.svg b/icons/device-tv-old.svg index d88a2047e..b67d7c6e0 100644 --- a/icons/device-tv-old.svg +++ b/icons/device-tv-old.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/device-tv.svg b/icons/device-tv.svg index 634af7918..9a4c6ed23 100644 --- a/icons/device-tv.svg +++ b/icons/device-tv.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/device-watch-off.svg b/icons/device-watch-off.svg index 0a810a42e..658e0fd47 100644 --- a/icons/device-watch-off.svg +++ b/icons/device-watch-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-watch-stats-2.svg b/icons/device-watch-stats-2.svg index 9f014447c..cdb2a6b41 100644 --- a/icons/device-watch-stats-2.svg +++ b/icons/device-watch-stats-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/device-watch-stats.svg b/icons/device-watch-stats.svg index 8edfdc6e6..8e1eac455 100644 --- a/icons/device-watch-stats.svg +++ b/icons/device-watch-stats.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/device-watch.svg b/icons/device-watch.svg index 37be742c6..754f51b95 100644 --- a/icons/device-watch.svg +++ b/icons/device-watch.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/devices-2.svg b/icons/devices-2.svg index d23cc11a3..686937a82 100644 --- a/icons/devices-2.svg +++ b/icons/devices-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/devices-off.svg b/icons/devices-off.svg index 614e717b1..17273f455 100644 --- a/icons/devices-off.svg +++ b/icons/devices-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/devices-pc-off.svg b/icons/devices-pc-off.svg index 0d55d5949..cf89c87af 100644 --- a/icons/devices-pc-off.svg +++ b/icons/devices-pc-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/devices-pc.svg b/icons/devices-pc.svg index e0fcc7519..83d8a52bf 100644 --- a/icons/devices-pc.svg +++ b/icons/devices-pc.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/devices.svg b/icons/devices.svg index b18034a68..1546d6c8e 100644 --- a/icons/devices.svg +++ b/icons/devices.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dialpad-off.svg b/icons/dialpad-off.svg index 24e53c34a..b3bd62958 100644 --- a/icons/dialpad-off.svg +++ b/icons/dialpad-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/dialpad.svg b/icons/dialpad.svg index f3991d209..e2b6447df 100644 --- a/icons/dialpad.svg +++ b/icons/dialpad.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/diamond-off.svg b/icons/diamond-off.svg index 942e6ef53..1bda7ef38 100644 --- a/icons/diamond-off.svg +++ b/icons/diamond-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/diamond.svg b/icons/diamond.svg index 00c39ceeb..a9555a1da 100644 --- a/icons/diamond.svg +++ b/icons/diamond.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/diamonds-filled.svg b/icons/diamonds-filled.svg new file mode 100644 index 000000000..4ac899ee6 --- /dev/null +++ b/icons/diamonds-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/diamonds.svg b/icons/diamonds.svg index 6512d9671..a666fe37d 100644 --- a/icons/diamonds.svg +++ b/icons/diamonds.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/dice-1.svg b/icons/dice-1.svg index 8cacb8978..9fcf7480d 100644 --- a/icons/dice-1.svg +++ b/icons/dice-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/dice-2.svg b/icons/dice-2.svg index b81fefa61..5a5b39ede 100644 --- a/icons/dice-2.svg +++ b/icons/dice-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dice-3.svg b/icons/dice-3.svg index 1ab0de031..3505b1904 100644 --- a/icons/dice-3.svg +++ b/icons/dice-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/dice-4.svg b/icons/dice-4.svg index d2222781d..acd3ff03d 100644 --- a/icons/dice-4.svg +++ b/icons/dice-4.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/dice-5.svg b/icons/dice-5.svg index 8bedcf60e..4e130f676 100644 --- a/icons/dice-5.svg +++ b/icons/dice-5.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/dice-6.svg b/icons/dice-6.svg index 13d716ba4..ab8790bc4 100644 --- a/icons/dice-6.svg +++ b/icons/dice-6.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/dice.svg b/icons/dice.svg index bb094ca3d..2867ee118 100644 --- a/icons/dice.svg +++ b/icons/dice.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/dimensions.svg b/icons/dimensions.svg index 1c909cdc8..2001add22 100644 --- a/icons/dimensions.svg +++ b/icons/dimensions.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/direction-horizontal.svg b/icons/direction-horizontal.svg index 39c986647..ea6f9c306 100644 --- a/icons/direction-horizontal.svg +++ b/icons/direction-horizontal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/direction-sign-off.svg b/icons/direction-sign-off.svg index c7f39bd51..62d41c143 100644 --- a/icons/direction-sign-off.svg +++ b/icons/direction-sign-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/direction-sign.svg b/icons/direction-sign.svg index 83478993e..b6c2c4443 100644 --- a/icons/direction-sign.svg +++ b/icons/direction-sign.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/direction.svg b/icons/direction.svg index 9ccfe94ec..9326a1689 100644 --- a/icons/direction.svg +++ b/icons/direction.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/directions-off.svg b/icons/directions-off.svg index 6ad21c573..054791182 100644 --- a/icons/directions-off.svg +++ b/icons/directions-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/directions.svg b/icons/directions.svg index 85f6b3a6c..d3b63e0ab 100644 --- a/icons/directions.svg +++ b/icons/directions.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/disabled-2.svg b/icons/disabled-2.svg index 69fc56140..adff2db35 100644 --- a/icons/disabled-2.svg +++ b/icons/disabled-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/disabled-off.svg b/icons/disabled-off.svg index bbdc024cb..67fd672f8 100644 --- a/icons/disabled-off.svg +++ b/icons/disabled-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/disabled.svg b/icons/disabled.svg index 5fcd98b71..091928539 100644 --- a/icons/disabled.svg +++ b/icons/disabled.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/disc-golf.svg b/icons/disc-golf.svg index a4e0ba19d..a368552c7 100644 --- a/icons/disc-golf.svg +++ b/icons/disc-golf.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/disc-off.svg b/icons/disc-off.svg index c2a6aede2..4e9baa7ed 100644 --- a/icons/disc-off.svg +++ b/icons/disc-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/disc.svg b/icons/disc.svg index 63c8ad843..86b46769c 100644 --- a/icons/disc.svg +++ b/icons/disc.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/discount-2-off.svg b/icons/discount-2-off.svg index 28b2d51b2..80f78383b 100644 --- a/icons/discount-2-off.svg +++ b/icons/discount-2-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/discount-2.svg b/icons/discount-2.svg index c57c2b9d7..54b8978d5 100644 --- a/icons/discount-2.svg +++ b/icons/discount-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/discount-check.svg b/icons/discount-check.svg index 3b0a4504f..3039cde20 100644 --- a/icons/discount-check.svg +++ b/icons/discount-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/discount-off.svg b/icons/discount-off.svg index 2a4f7106b..c39cabcce 100644 --- a/icons/discount-off.svg +++ b/icons/discount-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/discount.svg b/icons/discount.svg index dbbd6b3da..48affd481 100644 --- a/icons/discount.svg +++ b/icons/discount.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/divide.svg b/icons/divide.svg index 3476c50ed..bfa84e10d 100644 --- a/icons/divide.svg +++ b/icons/divide.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dna-2-off.svg b/icons/dna-2-off.svg index 732cad225..556f5f69c 100644 --- a/icons/dna-2-off.svg +++ b/icons/dna-2-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/dna-2.svg b/icons/dna-2.svg index 4b0bf98dc..a58b4f787 100644 --- a/icons/dna-2.svg +++ b/icons/dna-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/dna-off.svg b/icons/dna-off.svg index 9d52a9a3c..79f46279d 100644 --- a/icons/dna-off.svg +++ b/icons/dna-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/dna.svg b/icons/dna.svg index ffa65bf0b..55f4f11e8 100644 --- a/icons/dna.svg +++ b/icons/dna.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dog-bowl.svg b/icons/dog-bowl.svg index 133d3917e..ba73df4d7 100644 --- a/icons/dog-bowl.svg +++ b/icons/dog-bowl.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dog.svg b/icons/dog.svg index 4cf06c441..852949fd7 100644 --- a/icons/dog.svg +++ b/icons/dog.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/door-enter.svg b/icons/door-enter.svg index b42fbbd0f..0c6f3f2be 100644 --- a/icons/door-enter.svg +++ b/icons/door-enter.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/door-exit.svg b/icons/door-exit.svg index f2b108f75..07a33a0a7 100644 --- a/icons/door-exit.svg +++ b/icons/door-exit.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/door-off.svg b/icons/door-off.svg index a002f31e5..ae43237c6 100644 --- a/icons/door-off.svg +++ b/icons/door-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/door.svg b/icons/door.svg index ef9c72960..7d59179cb 100644 --- a/icons/door.svg +++ b/icons/door.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dots-circle-horizontal.svg b/icons/dots-circle-horizontal.svg index ef4cd45f5..b6530d19c 100644 --- a/icons/dots-circle-horizontal.svg +++ b/icons/dots-circle-horizontal.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/dots-diagonal-2.svg b/icons/dots-diagonal-2.svg index dfda6ce4a..1fcc60a8c 100644 --- a/icons/dots-diagonal-2.svg +++ b/icons/dots-diagonal-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dots-diagonal.svg b/icons/dots-diagonal.svg index 637e3fa4b..15669cf4c 100644 --- a/icons/dots-diagonal.svg +++ b/icons/dots-diagonal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dots-vertical.svg b/icons/dots-vertical.svg index 02d89c397..95f786266 100644 --- a/icons/dots-vertical.svg +++ b/icons/dots-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/dots.svg b/icons/dots.svg index 5f99dfe76..3e21aefe5 100644 --- a/icons/dots.svg +++ b/icons/dots.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/download-off.svg b/icons/download-off.svg index fb572c2bb..b74c58320 100644 --- a/icons/download-off.svg +++ b/icons/download-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/download.svg b/icons/download.svg index ef1b4a110..68b58e29e 100644 --- a/icons/download.svg +++ b/icons/download.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/drag-drop-2.svg b/icons/drag-drop-2.svg index 6c4f2c4cb..706dc3a63 100644 --- a/icons/drag-drop-2.svg +++ b/icons/drag-drop-2.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/drag-drop.svg b/icons/drag-drop.svg index 43ece33ab..8b3e08e06 100644 --- a/icons/drag-drop.svg +++ b/icons/drag-drop.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/drone-off.svg b/icons/drone-off.svg index d605b4a72..5479ae015 100644 --- a/icons/drone-off.svg +++ b/icons/drone-off.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/drone.svg b/icons/drone.svg index 3175ac49c..f7776945a 100644 --- a/icons/drone.svg +++ b/icons/drone.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/drop-circle.svg b/icons/drop-circle.svg index 457ec70b6..5451220ae 100644 --- a/icons/drop-circle.svg +++ b/icons/drop-circle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/droplet-filled-2.svg b/icons/droplet-filled-2.svg index fadf51974..7867ec9c6 100644 --- a/icons/droplet-filled-2.svg +++ b/icons/droplet-filled-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/droplet-filled.svg b/icons/droplet-filled.svg index f08fb081b..10eff308e 100644 --- a/icons/droplet-filled.svg +++ b/icons/droplet-filled.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/droplet-half-2.svg b/icons/droplet-half-2.svg index e2420df2c..1f262500e 100644 --- a/icons/droplet-half-2.svg +++ b/icons/droplet-half-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/droplet-half-filled.svg b/icons/droplet-half-filled.svg new file mode 100644 index 000000000..f6554a88f --- /dev/null +++ b/icons/droplet-half-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/droplet-half.svg b/icons/droplet-half.svg index b897bdd13..c490f29fd 100644 --- a/icons/droplet-half.svg +++ b/icons/droplet-half.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/droplet-off.svg b/icons/droplet-off.svg index 1e29fb23a..98c73a2a5 100644 --- a/icons/droplet-off.svg +++ b/icons/droplet-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/e-passport.svg b/icons/e-passport.svg index 2517b54e2..c878bcf3d 100644 --- a/icons/e-passport.svg +++ b/icons/e-passport.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ear-off.svg b/icons/ear-off.svg index 9eaae21ef..607c36c5f 100644 --- a/icons/ear-off.svg +++ b/icons/ear-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ear.svg b/icons/ear.svg index 1f31ac1bc..8ccc75b93 100644 --- a/icons/ear.svg +++ b/icons/ear.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ease-in-control-point.svg b/icons/ease-in-control-point.svg index 3a5dd7cb9..4c0582e9a 100644 --- a/icons/ease-in-control-point.svg +++ b/icons/ease-in-control-point.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ease-in-out-control-points.svg b/icons/ease-in-out-control-points.svg index c4a3ea4f3..04eaa3176 100644 --- a/icons/ease-in-out-control-points.svg +++ b/icons/ease-in-out-control-points.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/ease-out-control-point.svg b/icons/ease-out-control-point.svg index 7c5141ff6..3a6727a53 100644 --- a/icons/ease-out-control-point.svg +++ b/icons/ease-out-control-point.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/edit-circle-off.svg b/icons/edit-circle-off.svg index 14706b3fa..1a1d65825 100644 --- a/icons/edit-circle-off.svg +++ b/icons/edit-circle-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/edit-circle.svg b/icons/edit-circle.svg index 261448553..aa06a9385 100644 --- a/icons/edit-circle.svg +++ b/icons/edit-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/edit-off.svg b/icons/edit-off.svg index 5416c7cda..e3df581e0 100644 --- a/icons/edit-off.svg +++ b/icons/edit-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/edit.svg b/icons/edit.svg index c3afa2ad5..58d81a7e7 100644 --- a/icons/edit.svg +++ b/icons/edit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/egg-cracked.svg b/icons/egg-cracked.svg index 9cbf35997..89e5a3f6b 100644 --- a/icons/egg-cracked.svg +++ b/icons/egg-cracked.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/egg-filled.svg b/icons/egg-filled.svg new file mode 100644 index 000000000..00bbccb9d --- /dev/null +++ b/icons/egg-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/egg-fried.svg b/icons/egg-fried.svg index f371debc5..6cb7e2fde 100644 --- a/icons/egg-fried.svg +++ b/icons/egg-fried.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/egg-off.svg b/icons/egg-off.svg index 172e372fc..00ba768ec 100644 --- a/icons/egg-off.svg +++ b/icons/egg-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/egg.svg b/icons/egg.svg index 1cf128442..72658dbbf 100644 --- a/icons/egg.svg +++ b/icons/egg.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/eggs.svg b/icons/eggs.svg index 06bc2ff18..049040f4d 100644 --- a/icons/eggs.svg +++ b/icons/eggs.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/elevator-off.svg b/icons/elevator-off.svg index 1cb69393a..3cda4ba35 100644 --- a/icons/elevator-off.svg +++ b/icons/elevator-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/elevator.svg b/icons/elevator.svg index 965f98ea6..db5d51467 100644 --- a/icons/elevator.svg +++ b/icons/elevator.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/emergency-bed.svg b/icons/emergency-bed.svg index a03833945..7fadd8f47 100644 --- a/icons/emergency-bed.svg +++ b/icons/emergency-bed.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/empathize-off.svg b/icons/empathize-off.svg index c95621c0c..334b8ca45 100644 --- a/icons/empathize-off.svg +++ b/icons/empathize-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/empathize.svg b/icons/empathize.svg index c485e6b37..aea8504fe 100644 --- a/icons/empathize.svg +++ b/icons/empathize.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/emphasis.svg b/icons/emphasis.svg index c531e52da..07f09b3b4 100644 --- a/icons/emphasis.svg +++ b/icons/emphasis.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/engine-off.svg b/icons/engine-off.svg index abf21d05d..e203fae98 100644 --- a/icons/engine-off.svg +++ b/icons/engine-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/engine.svg b/icons/engine.svg index 201ff31ac..74aecb5c0 100644 --- a/icons/engine.svg +++ b/icons/engine.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/equal-double.svg b/icons/equal-double.svg index dbdc169d6..2e5723e83 100644 --- a/icons/equal-double.svg +++ b/icons/equal-double.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/equal-not.svg b/icons/equal-not.svg index 549227171..ad699983c 100644 --- a/icons/equal-not.svg +++ b/icons/equal-not.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/equal.svg b/icons/equal.svg index c6acc2d2b..6136a9fc4 100644 --- a/icons/equal.svg +++ b/icons/equal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/eraser-off.svg b/icons/eraser-off.svg index 050719fdd..4a85715d8 100644 --- a/icons/eraser-off.svg +++ b/icons/eraser-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/eraser.svg b/icons/eraser.svg index 7c13a2202..09e5f0c65 100644 --- a/icons/eraser.svg +++ b/icons/eraser.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/error-404-off.svg b/icons/error-404-off.svg index 5409717fa..44db294c7 100644 --- a/icons/error-404-off.svg +++ b/icons/error-404-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/error-404.svg b/icons/error-404.svg index 6b3445200..27df7e6e1 100644 --- a/icons/error-404.svg +++ b/icons/error-404.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/exchange-off.svg b/icons/exchange-off.svg index e780c3e30..0df8c7b4d 100644 --- a/icons/exchange-off.svg +++ b/icons/exchange-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/exchange.svg b/icons/exchange.svg index 674dafc7d..1f65e49e1 100644 --- a/icons/exchange.svg +++ b/icons/exchange.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/exclamation-circle.svg b/icons/exclamation-circle.svg index 706bfb6ea..8ae928e54 100644 --- a/icons/exclamation-circle.svg +++ b/icons/exclamation-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/exclamation-mark-off.svg b/icons/exclamation-mark-off.svg index 2bfa4983d..af289d739 100644 --- a/icons/exclamation-mark-off.svg +++ b/icons/exclamation-mark-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/exclamation-mark.svg b/icons/exclamation-mark.svg index 6e8eee7bb..00306c408 100644 --- a/icons/exclamation-mark.svg +++ b/icons/exclamation-mark.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/explicit-off.svg b/icons/explicit-off.svg index fc9ab7384..591110f0c 100644 --- a/icons/explicit-off.svg +++ b/icons/explicit-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/explicit.svg b/icons/explicit.svg index d9459f736..5ee02be68 100644 --- a/icons/explicit.svg +++ b/icons/explicit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/exposure-minus-1.svg b/icons/exposure-minus-1.svg index af84f08ba..2793aa3f9 100644 --- a/icons/exposure-minus-1.svg +++ b/icons/exposure-minus-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/exposure-minus-2.svg b/icons/exposure-minus-2.svg index e0b3f5698..5ca4c5cdf 100644 --- a/icons/exposure-minus-2.svg +++ b/icons/exposure-minus-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/exposure-off.svg b/icons/exposure-off.svg index d17406904..160c49e97 100644 --- a/icons/exposure-off.svg +++ b/icons/exposure-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/exposure-plus-1.svg b/icons/exposure-plus-1.svg index 18421ab97..d046d1503 100644 --- a/icons/exposure-plus-1.svg +++ b/icons/exposure-plus-1.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/exposure-plus-2.svg b/icons/exposure-plus-2.svg index bf41e3617..9f39ffc62 100644 --- a/icons/exposure-plus-2.svg +++ b/icons/exposure-plus-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/exposure.svg b/icons/exposure.svg index 0623e7731..a069796d9 100644 --- a/icons/exposure.svg +++ b/icons/exposure.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/external-link-off.svg b/icons/external-link-off.svg index 833d801be..63ab687b2 100644 --- a/icons/external-link-off.svg +++ b/icons/external-link-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/external-link.svg b/icons/external-link.svg index 5042fdf33..93105bf02 100644 --- a/icons/external-link.svg +++ b/icons/external-link.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/eye-check.svg b/icons/eye-check.svg index af1784068..e7653aa17 100644 --- a/icons/eye-check.svg +++ b/icons/eye-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/eye-filled.svg b/icons/eye-filled.svg new file mode 100644 index 000000000..43011448c --- /dev/null +++ b/icons/eye-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/eye-off.svg b/icons/eye-off.svg index f1e02b536..96c3bfcd3 100644 --- a/icons/eye-off.svg +++ b/icons/eye-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/eye-table.svg b/icons/eye-table.svg index 298003944..c7addeb67 100644 --- a/icons/eye-table.svg +++ b/icons/eye-table.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/eye.svg b/icons/eye.svg index 2a4b18b51..3468472e0 100644 --- a/icons/eye.svg +++ b/icons/eye.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/eyeglass-2.svg b/icons/eyeglass-2.svg index 9ca6c5fec..de896c22f 100644 --- a/icons/eyeglass-2.svg +++ b/icons/eyeglass-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/eyeglass-off.svg b/icons/eyeglass-off.svg index 95ef38a5c..fa0d445de 100644 --- a/icons/eyeglass-off.svg +++ b/icons/eyeglass-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/eyeglass.svg b/icons/eyeglass.svg index 590d5cdf3..e399056ba 100644 --- a/icons/eyeglass.svg +++ b/icons/eyeglass.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/face-id-error.svg b/icons/face-id-error.svg index 85fea345a..6a1c3f9b9 100644 --- a/icons/face-id-error.svg +++ b/icons/face-id-error.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/face-id.svg b/icons/face-id.svg index 283ef8fe7..6ef7d759e 100644 --- a/icons/face-id.svg +++ b/icons/face-id.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/face-mask-off.svg b/icons/face-mask-off.svg index 5f223df40..dab173fc2 100644 --- a/icons/face-mask-off.svg +++ b/icons/face-mask-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/face-mask.svg b/icons/face-mask.svg index 3fed6ad43..5658b7375 100644 --- a/icons/face-mask.svg +++ b/icons/face-mask.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fall.svg b/icons/fall.svg index a037bb9df..6fa236885 100644 --- a/icons/fall.svg +++ b/icons/fall.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/feather-off.svg b/icons/feather-off.svg index b7a46790b..e52f3fdaf 100644 --- a/icons/feather-off.svg +++ b/icons/feather-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/feather.svg b/icons/feather.svg index fe311de7f..dc0aa4862 100644 --- a/icons/feather.svg +++ b/icons/feather.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/fence-off.svg b/icons/fence-off.svg index c376f7532..5172bd77d 100644 --- a/icons/fence-off.svg +++ b/icons/fence-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fence.svg b/icons/fence.svg index 07d5af2b9..225f3f7e7 100644 --- a/icons/fence.svg +++ b/icons/fence.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/fidget-spinner.svg b/icons/fidget-spinner.svg index fad651572..70e9b343e 100644 --- a/icons/fidget-spinner.svg +++ b/icons/fidget-spinner.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-3d.svg b/icons/file-3d.svg index 28b885793..0506c57e4 100644 --- a/icons/file-3d.svg +++ b/icons/file-3d.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-alert.svg b/icons/file-alert.svg index 53525e88d..0bca2d97c 100644 --- a/icons/file-alert.svg +++ b/icons/file-alert.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-analytics.svg b/icons/file-analytics.svg index 2d1246e28..b592674ce 100644 --- a/icons/file-analytics.svg +++ b/icons/file-analytics.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-arrow-left.svg b/icons/file-arrow-left.svg index 0d63cc942..3acda34bc 100644 --- a/icons/file-arrow-left.svg +++ b/icons/file-arrow-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-arrow-right.svg b/icons/file-arrow-right.svg index 40720eb25..8e2371126 100644 --- a/icons/file-arrow-right.svg +++ b/icons/file-arrow-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-barcode.svg b/icons/file-barcode.svg index e3254227f..25897a1e3 100644 --- a/icons/file-barcode.svg +++ b/icons/file-barcode.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-broken.svg b/icons/file-broken.svg index 8b1fb311a..999173f94 100644 --- a/icons/file-broken.svg +++ b/icons/file-broken.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/file-certificate.svg b/icons/file-certificate.svg index fd9652ae3..d884bf153 100644 --- a/icons/file-certificate.svg +++ b/icons/file-certificate.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-chart.svg b/icons/file-chart.svg index b5a7033ab..63b1eafdb 100644 --- a/icons/file-chart.svg +++ b/icons/file-chart.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-check.svg b/icons/file-check.svg index e5b1ad5db..96e50a063 100644 --- a/icons/file-check.svg +++ b/icons/file-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-code-2.svg b/icons/file-code-2.svg index e703247f8..7d25063b9 100644 --- a/icons/file-code-2.svg +++ b/icons/file-code-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-code.svg b/icons/file-code.svg index 91e334a5c..4d006f5f0 100644 --- a/icons/file-code.svg +++ b/icons/file-code.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-database.svg b/icons/file-database.svg index 9519b5225..7f5db0b95 100644 --- a/icons/file-database.svg +++ b/icons/file-database.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-delta.svg b/icons/file-delta.svg index 995c5f5c5..5beab84dd 100644 --- a/icons/file-delta.svg +++ b/icons/file-delta.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-description.svg b/icons/file-description.svg index 74d7b5dce..8b49f32e4 100644 --- a/icons/file-description.svg +++ b/icons/file-description.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-diff.svg b/icons/file-diff.svg index f262f3f3b..3f28e58fe 100644 --- a/icons/file-diff.svg +++ b/icons/file-diff.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-digit.svg b/icons/file-digit.svg index a560d817b..10586fe4b 100644 --- a/icons/file-digit.svg +++ b/icons/file-digit.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-dislike.svg b/icons/file-dislike.svg index 72756d2c0..731ba58b9 100644 --- a/icons/file-dislike.svg +++ b/icons/file-dislike.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-dollar.svg b/icons/file-dollar.svg index 8e16d30a7..428d4f908 100644 --- a/icons/file-dollar.svg +++ b/icons/file-dollar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-dots.svg b/icons/file-dots.svg index c5f838d15..a00ef4e51 100644 --- a/icons/file-dots.svg +++ b/icons/file-dots.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-download.svg b/icons/file-download.svg index f45f61631..80c86cd33 100644 --- a/icons/file-download.svg +++ b/icons/file-download.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-euro.svg b/icons/file-euro.svg index 4ff2bb390..33d3aaa9a 100644 --- a/icons/file-euro.svg +++ b/icons/file-euro.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-export.svg b/icons/file-export.svg index cb5268f05..a92f60348 100644 --- a/icons/file-export.svg +++ b/icons/file-export.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/file-function.svg b/icons/file-function.svg index f379806b4..fb1f94af7 100644 --- a/icons/file-function.svg +++ b/icons/file-function.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-horizontal.svg b/icons/file-horizontal.svg index 4bbf74829..cdf855b47 100644 --- a/icons/file-horizontal.svg +++ b/icons/file-horizontal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/file-import.svg b/icons/file-import.svg index ce023f994..32cce60d1 100644 --- a/icons/file-import.svg +++ b/icons/file-import.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/file-infinity.svg b/icons/file-infinity.svg index 52a8bc71f..66722b119 100644 --- a/icons/file-infinity.svg +++ b/icons/file-infinity.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-info.svg b/icons/file-info.svg index a464aef9a..b302dfa4b 100644 --- a/icons/file-info.svg +++ b/icons/file-info.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-invoice.svg b/icons/file-invoice.svg index 865ac643e..1a616e08a 100644 --- a/icons/file-invoice.svg +++ b/icons/file-invoice.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-lambda.svg b/icons/file-lambda.svg index 67ce98f65..00aec2555 100644 --- a/icons/file-lambda.svg +++ b/icons/file-lambda.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-like.svg b/icons/file-like.svg index 575574a41..cf6003e99 100644 --- a/icons/file-like.svg +++ b/icons/file-like.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-minus.svg b/icons/file-minus.svg index 910e513ba..07742cd25 100644 --- a/icons/file-minus.svg +++ b/icons/file-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-music.svg b/icons/file-music.svg index 3138be15a..62bb89236 100644 --- a/icons/file-music.svg +++ b/icons/file-music.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-off.svg b/icons/file-off.svg index 2a571a32d..57f706b64 100644 --- a/icons/file-off.svg +++ b/icons/file-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/file-orientation.svg b/icons/file-orientation.svg index 5456dc1d3..fbcb8c97e 100644 --- a/icons/file-orientation.svg +++ b/icons/file-orientation.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-pencil.svg b/icons/file-pencil.svg index 7629d9ea6..202c14b43 100644 --- a/icons/file-pencil.svg +++ b/icons/file-pencil.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-percent.svg b/icons/file-percent.svg index 88022b07b..d38a1938a 100644 --- a/icons/file-percent.svg +++ b/icons/file-percent.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-phone.svg b/icons/file-phone.svg index 12e981a06..24156c01f 100644 --- a/icons/file-phone.svg +++ b/icons/file-phone.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-plus.svg b/icons/file-plus.svg index c9a0fdb75..4e100f39b 100644 --- a/icons/file-plus.svg +++ b/icons/file-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-power.svg b/icons/file-power.svg index 5b52b23d0..305571458 100644 --- a/icons/file-power.svg +++ b/icons/file-power.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-report.svg b/icons/file-report.svg index 3d6534551..76bb0737a 100644 --- a/icons/file-report.svg +++ b/icons/file-report.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-rss.svg b/icons/file-rss.svg index c037d1e35..3011c6eee 100644 --- a/icons/file-rss.svg +++ b/icons/file-rss.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-scissors.svg b/icons/file-scissors.svg index 0d73e4168..e131e479b 100644 --- a/icons/file-scissors.svg +++ b/icons/file-scissors.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/file-search.svg b/icons/file-search.svg index 249c783fe..a05efb5ff 100644 --- a/icons/file-search.svg +++ b/icons/file-search.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-settings.svg b/icons/file-settings.svg index db3fc9dd0..fff10f1cf 100644 --- a/icons/file-settings.svg +++ b/icons/file-settings.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/file-shredder.svg b/icons/file-shredder.svg index 418adcdc4..2c50233df 100644 --- a/icons/file-shredder.svg +++ b/icons/file-shredder.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/file-signal.svg b/icons/file-signal.svg index 4635713ac..ef1a8895d 100644 --- a/icons/file-signal.svg +++ b/icons/file-signal.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-spreadsheet.svg b/icons/file-spreadsheet.svg index 58a3c260e..335b0847e 100644 --- a/icons/file-spreadsheet.svg +++ b/icons/file-spreadsheet.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-stack.svg b/icons/file-stack.svg index 7435a35cd..933b93111 100644 --- a/icons/file-stack.svg +++ b/icons/file-stack.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-star.svg b/icons/file-star.svg index e7f5d16ed..ab79e5bae 100644 --- a/icons/file-star.svg +++ b/icons/file-star.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-symlink.svg b/icons/file-symlink.svg index f7527c355..dca5265ce 100644 --- a/icons/file-symlink.svg +++ b/icons/file-symlink.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-text.svg b/icons/file-text.svg index d4d5abe03..1539d7c51 100644 --- a/icons/file-text.svg +++ b/icons/file-text.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-time.svg b/icons/file-time.svg index 9b6afc9d4..9510b1c11 100644 --- a/icons/file-time.svg +++ b/icons/file-time.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-typography.svg b/icons/file-typography.svg index 25bf9975c..bd91a940f 100644 --- a/icons/file-typography.svg +++ b/icons/file-typography.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-unknown.svg b/icons/file-unknown.svg index aad8c5e93..64f60c0a3 100644 --- a/icons/file-unknown.svg +++ b/icons/file-unknown.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-upload.svg b/icons/file-upload.svg index 7fe54fd8e..457463beb 100644 --- a/icons/file-upload.svg +++ b/icons/file-upload.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/file-vector.svg b/icons/file-vector.svg index c485b67f2..f76040db8 100644 --- a/icons/file-vector.svg +++ b/icons/file-vector.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/file-x.svg b/icons/file-x.svg index 99ba77d71..3c59bac38 100644 --- a/icons/file-x.svg +++ b/icons/file-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/file-zip.svg b/icons/file-zip.svg index d9936bbfc..f6173e338 100644 --- a/icons/file-zip.svg +++ b/icons/file-zip.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/file.svg b/icons/file.svg index a0c05782e..1549672e3 100644 --- a/icons/file.svg +++ b/icons/file.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/files-off.svg b/icons/files-off.svg index 2caffb194..e17d7fc69 100644 --- a/icons/files-off.svg +++ b/icons/files-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/files.svg b/icons/files.svg index d6662f18e..0f67939fd 100644 --- a/icons/files.svg +++ b/icons/files.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/filter-off.svg b/icons/filter-off.svg index 5401bb325..c7035e6a3 100644 --- a/icons/filter-off.svg +++ b/icons/filter-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/fingerprint-off.svg b/icons/fingerprint-off.svg index 7f97565c6..cec2c07dd 100644 --- a/icons/fingerprint-off.svg +++ b/icons/fingerprint-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fingerprint.svg b/icons/fingerprint.svg index 5c89f522c..26ca313fd 100644 --- a/icons/fingerprint.svg +++ b/icons/fingerprint.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fire-hydrant-off.svg b/icons/fire-hydrant-off.svg index b4e3411f0..a14a53c86 100644 --- a/icons/fire-hydrant-off.svg +++ b/icons/fire-hydrant-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fire-hydrant.svg b/icons/fire-hydrant.svg index 20f4ddf66..b3fb05f80 100644 --- a/icons/fire-hydrant.svg +++ b/icons/fire-hydrant.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/firetruck.svg b/icons/firetruck.svg index 0171e451d..574d5d529 100644 --- a/icons/firetruck.svg +++ b/icons/firetruck.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/first-aid-kit-off.svg b/icons/first-aid-kit-off.svg index 34abd3faa..96218460b 100644 --- a/icons/first-aid-kit-off.svg +++ b/icons/first-aid-kit-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/first-aid-kit.svg b/icons/first-aid-kit.svg index 3fee42811..4933b2e6f 100644 --- a/icons/first-aid-kit.svg +++ b/icons/first-aid-kit.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/fish-bone.svg b/icons/fish-bone.svg index 64f1dfc5d..896cfe538 100644 --- a/icons/fish-bone.svg +++ b/icons/fish-bone.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fish-hook-off.svg b/icons/fish-hook-off.svg index e3220b029..bb184f512 100644 --- a/icons/fish-hook-off.svg +++ b/icons/fish-hook-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/fish-hook.svg b/icons/fish-hook.svg index cceefeb15..355ad7ac7 100644 --- a/icons/fish-hook.svg +++ b/icons/fish-hook.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/fish-off.svg b/icons/fish-off.svg index 58852c44d..5b73ea9b6 100644 --- a/icons/fish-off.svg +++ b/icons/fish-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fish.svg b/icons/fish.svg index 8258a3a5f..81982237b 100644 --- a/icons/fish.svg +++ b/icons/fish.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/flag-2-off.svg b/icons/flag-2-off.svg index 54b193534..f49a074a0 100644 --- a/icons/flag-2-off.svg +++ b/icons/flag-2-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/flag-filled.svg b/icons/flag-filled.svg new file mode 100644 index 000000000..1e7ca1cde --- /dev/null +++ b/icons/flag-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/flag-off.svg b/icons/flag-off.svg index 3b5478e5c..3ed7ae708 100644 --- a/icons/flag-off.svg +++ b/icons/flag-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/flag.svg b/icons/flag.svg index cce6e1ceb..3a58655fe 100644 --- a/icons/flag.svg +++ b/icons/flag.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/flame-off.svg b/icons/flame-off.svg index 7e892b047..32f6460ff 100644 --- a/icons/flame-off.svg +++ b/icons/flame-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/flask-2-off.svg b/icons/flask-2-off.svg index bbcd45eda..83bf67aac 100644 --- a/icons/flask-2-off.svg +++ b/icons/flask-2-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/flask-2.svg b/icons/flask-2.svg index a3c5b53c8..46a7a80ac 100644 --- a/icons/flask-2.svg +++ b/icons/flask-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/flask-off.svg b/icons/flask-off.svg index b07b7ee7c..9f6b9ae32 100644 --- a/icons/flask-off.svg +++ b/icons/flask-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/flask.svg b/icons/flask.svg index af4be32a7..4bd9cd816 100644 --- a/icons/flask.svg +++ b/icons/flask.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/flip-flops.svg b/icons/flip-flops.svg index ab92efb67..2caefc3cc 100644 --- a/icons/flip-flops.svg +++ b/icons/flip-flops.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/flip-horizontal.svg b/icons/flip-horizontal.svg index aea1ae3e5..b438f4208 100644 --- a/icons/flip-horizontal.svg +++ b/icons/flip-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/flip-vertical.svg b/icons/flip-vertical.svg index 5ac965b90..aa1d61ef1 100644 --- a/icons/flip-vertical.svg +++ b/icons/flip-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/float-center.svg b/icons/float-center.svg index 21ff87657..99228e7a0 100644 --- a/icons/float-center.svg +++ b/icons/float-center.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/float-left.svg b/icons/float-left.svg index 79b9f9b67..55a2103f6 100644 --- a/icons/float-left.svg +++ b/icons/float-left.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/float-none.svg b/icons/float-none.svg index 4e3862742..4047ae6fd 100644 --- a/icons/float-none.svg +++ b/icons/float-none.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/float-right.svg b/icons/float-right.svg index 653a920db..519d234cc 100644 --- a/icons/float-right.svg +++ b/icons/float-right.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/flower-off.svg b/icons/flower-off.svg index 5647c501c..27f4be3bc 100644 --- a/icons/flower-off.svg +++ b/icons/flower-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/flower.svg b/icons/flower.svg index 07cad9b8c..9ac64b23f 100644 --- a/icons/flower.svg +++ b/icons/flower.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/focus-2.svg b/icons/focus-2.svg index f09cfa046..67b88d563 100644 --- a/icons/focus-2.svg +++ b/icons/focus-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/focus-centered.svg b/icons/focus-centered.svg index dcc1d8c37..7a16a021f 100644 --- a/icons/focus-centered.svg +++ b/icons/focus-centered.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/focus.svg b/icons/focus.svg index ef3f1df74..844112668 100644 --- a/icons/focus.svg +++ b/icons/focus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/fold-down.svg b/icons/fold-down.svg index 7ad302533..44fd13f4e 100644 --- a/icons/fold-down.svg +++ b/icons/fold-down.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fold-up.svg b/icons/fold-up.svg index f94ca25ff..9d7e02134 100644 --- a/icons/fold-up.svg +++ b/icons/fold-up.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/fold.svg b/icons/fold.svg index a84afb1b6..50eb90999 100644 --- a/icons/fold.svg +++ b/icons/fold.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/folder-minus.svg b/icons/folder-minus.svg index 73fb42f44..47f874b21 100644 --- a/icons/folder-minus.svg +++ b/icons/folder-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/folder-off.svg b/icons/folder-off.svg index 3d251746c..373342400 100644 --- a/icons/folder-off.svg +++ b/icons/folder-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/folder-plus.svg b/icons/folder-plus.svg index ab053438a..6f88eb239 100644 --- a/icons/folder-plus.svg +++ b/icons/folder-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/folder-x.svg b/icons/folder-x.svg index 3bb0ee6d3..a79dc4f70 100644 --- a/icons/folder-x.svg +++ b/icons/folder-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/folders-off.svg b/icons/folders-off.svg index 7c31ba255..f1790a72f 100644 --- a/icons/folders-off.svg +++ b/icons/folders-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/folders.svg b/icons/folders.svg index 1ed498ce5..2c58875e9 100644 --- a/icons/folders.svg +++ b/icons/folders.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/forbid-2.svg b/icons/forbid-2.svg index 2f503ae9c..6bcb7281f 100644 --- a/icons/forbid-2.svg +++ b/icons/forbid-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/forbid.svg b/icons/forbid.svg index 6c02add2d..47729e971 100644 --- a/icons/forbid.svg +++ b/icons/forbid.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/forklift.svg b/icons/forklift.svg index b65d49193..8322c7456 100644 --- a/icons/forklift.svg +++ b/icons/forklift.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/forms.svg b/icons/forms.svg index 5e1edab68..c47f32823 100644 --- a/icons/forms.svg +++ b/icons/forms.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fountain-off.svg b/icons/fountain-off.svg index 6f67aa216..d36b1c418 100644 --- a/icons/fountain-off.svg +++ b/icons/fountain-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fountain.svg b/icons/fountain.svg index 59d38d8aa..07d99bda1 100644 --- a/icons/fountain.svg +++ b/icons/fountain.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/frame-off.svg b/icons/frame-off.svg index 8f2e6bd02..c2a537d5d 100644 --- a/icons/frame-off.svg +++ b/icons/frame-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/frame.svg b/icons/frame.svg index d812c69bc..9967e3bdf 100644 --- a/icons/frame.svg +++ b/icons/frame.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/free-rights.svg b/icons/free-rights.svg index 24652dff1..6e07f0ab9 100644 --- a/icons/free-rights.svg +++ b/icons/free-rights.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/fridge-off.svg b/icons/fridge-off.svg index e232389a0..8cb079116 100644 --- a/icons/fridge-off.svg +++ b/icons/fridge-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/fridge.svg b/icons/fridge.svg index 0957d3e38..a117789a5 100644 --- a/icons/fridge.svg +++ b/icons/fridge.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/friends-off.svg b/icons/friends-off.svg index d1775c89a..de991ff89 100644 --- a/icons/friends-off.svg +++ b/icons/friends-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/friends.svg b/icons/friends.svg index 03eb5b500..dae2f0ac5 100644 --- a/icons/friends.svg +++ b/icons/friends.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/function-off.svg b/icons/function-off.svg index 19944e0a6..5487e413e 100644 --- a/icons/function-off.svg +++ b/icons/function-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/function.svg b/icons/function.svg index 019335533..ad52cf7a3 100644 --- a/icons/function.svg +++ b/icons/function.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/garden-cart-off.svg b/icons/garden-cart-off.svg index 5cfcaf365..b9df049e7 100644 --- a/icons/garden-cart-off.svg +++ b/icons/garden-cart-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/garden-cart.svg b/icons/garden-cart.svg index 9ad918b13..5bb202f29 100644 --- a/icons/garden-cart.svg +++ b/icons/garden-cart.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gas-station-off.svg b/icons/gas-station-off.svg index 5dcdbf920..1a905a1cc 100644 --- a/icons/gas-station-off.svg +++ b/icons/gas-station-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/gas-station.svg b/icons/gas-station.svg index e4bd688d4..1d65f98a5 100644 --- a/icons/gas-station.svg +++ b/icons/gas-station.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/gauge-off.svg b/icons/gauge-off.svg index a5397522d..ee8082133 100644 --- a/icons/gauge-off.svg +++ b/icons/gauge-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/gauge.svg b/icons/gauge.svg index fa415d27a..81cfaa92c 100644 --- a/icons/gauge.svg +++ b/icons/gauge.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gavel.svg b/icons/gavel.svg index 6bc8326a2..f148c171b 100644 --- a/icons/gavel.svg +++ b/icons/gavel.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/gender-agender.svg b/icons/gender-agender.svg index eb66814bc..2ee144320 100644 --- a/icons/gender-agender.svg +++ b/icons/gender-agender.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/gender-androgyne.svg b/icons/gender-androgyne.svg index 3744d9feb..28c2ca8ac 100644 --- a/icons/gender-androgyne.svg +++ b/icons/gender-androgyne.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-bigender.svg b/icons/gender-bigender.svg index 71948f73c..71fb5adf5 100644 --- a/icons/gender-bigender.svg +++ b/icons/gender-bigender.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/gender-demiboy.svg b/icons/gender-demiboy.svg index e01a4f840..30ef68efb 100644 --- a/icons/gender-demiboy.svg +++ b/icons/gender-demiboy.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-demigirl.svg b/icons/gender-demigirl.svg index b5d0cc450..74e28e9f3 100644 --- a/icons/gender-demigirl.svg +++ b/icons/gender-demigirl.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-epicene.svg b/icons/gender-epicene.svg index 366d22442..70cb89c76 100644 --- a/icons/gender-epicene.svg +++ b/icons/gender-epicene.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-female.svg b/icons/gender-female.svg index 56b1df1a0..2d64a4752 100644 --- a/icons/gender-female.svg +++ b/icons/gender-female.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-femme.svg b/icons/gender-femme.svg index 09ccb0231..99ba3be2c 100644 --- a/icons/gender-femme.svg +++ b/icons/gender-femme.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-genderfluid.svg b/icons/gender-genderfluid.svg index fd4d5f521..bb1ed1ac7 100644 --- a/icons/gender-genderfluid.svg +++ b/icons/gender-genderfluid.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/gender-genderless.svg b/icons/gender-genderless.svg index 89df60681..42ce11689 100644 --- a/icons/gender-genderless.svg +++ b/icons/gender-genderless.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-genderqueer.svg b/icons/gender-genderqueer.svg index 52a66d1e8..add463751 100644 --- a/icons/gender-genderqueer.svg +++ b/icons/gender-genderqueer.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-hermaphrodite.svg b/icons/gender-hermaphrodite.svg index 610245265..0ca2f471c 100644 --- a/icons/gender-hermaphrodite.svg +++ b/icons/gender-hermaphrodite.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-intergender.svg b/icons/gender-intergender.svg index 2b53f9659..509026ef9 100644 --- a/icons/gender-intergender.svg +++ b/icons/gender-intergender.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-male.svg b/icons/gender-male.svg index bc614eefb..c9781576d 100644 --- a/icons/gender-male.svg +++ b/icons/gender-male.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gender-neutrois.svg b/icons/gender-neutrois.svg index 5e5e22780..2d3573f23 100644 --- a/icons/gender-neutrois.svg +++ b/icons/gender-neutrois.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/gender-third.svg b/icons/gender-third.svg index 1213af304..fb86ed44d 100644 --- a/icons/gender-third.svg +++ b/icons/gender-third.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gender-transgender.svg b/icons/gender-transgender.svg index 4be3475a8..4992d224e 100644 --- a/icons/gender-transgender.svg +++ b/icons/gender-transgender.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/gender-trasvesti.svg b/icons/gender-trasvesti.svg index f55f7d230..98d7ce9d0 100644 --- a/icons/gender-trasvesti.svg +++ b/icons/gender-trasvesti.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/geometry.svg b/icons/geometry.svg index fc6133df9..fbc794be8 100644 --- a/icons/geometry.svg +++ b/icons/geometry.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ghost-2.svg b/icons/ghost-2.svg index fc93e2972..e51c45d6f 100644 --- a/icons/ghost-2.svg +++ b/icons/ghost-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ghost-off.svg b/icons/ghost-off.svg index a9d45521c..692552621 100644 --- a/icons/ghost-off.svg +++ b/icons/ghost-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ghost.svg b/icons/ghost.svg index bb035c703..092676955 100644 --- a/icons/ghost.svg +++ b/icons/ghost.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gif.svg b/icons/gif.svg index cb2bc26b3..c29e379f2 100644 --- a/icons/gif.svg +++ b/icons/gif.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/gift-card.svg b/icons/gift-card.svg index fa4592551..5d0b98f89 100644 --- a/icons/gift-card.svg +++ b/icons/gift-card.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/gift-off.svg b/icons/gift-off.svg index cb5bb3d67..1a4fb8ec3 100644 --- a/icons/gift-off.svg +++ b/icons/gift-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/gift.svg b/icons/gift.svg index 292163c78..43109194d 100644 --- a/icons/gift.svg +++ b/icons/gift.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/git-branch-deleted.svg b/icons/git-branch-deleted.svg index f24f909a6..2176bd288 100644 --- a/icons/git-branch-deleted.svg +++ b/icons/git-branch-deleted.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/git-branch.svg b/icons/git-branch.svg index 7650788dc..0822c3667 100644 --- a/icons/git-branch.svg +++ b/icons/git-branch.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/git-cherry-pick.svg b/icons/git-cherry-pick.svg index ea35d91c0..e0f06c22b 100644 --- a/icons/git-cherry-pick.svg +++ b/icons/git-cherry-pick.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/git-commit.svg b/icons/git-commit.svg index c7a9d03dd..a7a20ad5c 100644 --- a/icons/git-commit.svg +++ b/icons/git-commit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/git-compare.svg b/icons/git-compare.svg index d663bbee9..832384e48 100644 --- a/icons/git-compare.svg +++ b/icons/git-compare.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/git-fork.svg b/icons/git-fork.svg index 81d714ab1..393b7c928 100644 --- a/icons/git-fork.svg +++ b/icons/git-fork.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/git-merge.svg b/icons/git-merge.svg index 0f5cba0a5..8014c1645 100644 --- a/icons/git-merge.svg +++ b/icons/git-merge.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/git-pull-request-closed.svg b/icons/git-pull-request-closed.svg index 99a2ed19b..ae6201295 100644 --- a/icons/git-pull-request-closed.svg +++ b/icons/git-pull-request-closed.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/git-pull-request-draft.svg b/icons/git-pull-request-draft.svg index 08adfaed6..9eed64c60 100644 --- a/icons/git-pull-request-draft.svg +++ b/icons/git-pull-request-draft.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/git-pull-request.svg b/icons/git-pull-request.svg index ace126642..95c871b69 100644 --- a/icons/git-pull-request.svg +++ b/icons/git-pull-request.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/gizmo.svg b/icons/gizmo.svg index a8b8b6a4c..0c0038ad8 100644 --- a/icons/gizmo.svg +++ b/icons/gizmo.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/glass-full.svg b/icons/glass-full.svg index 4db33f4f2..560ce479a 100644 --- a/icons/glass-full.svg +++ b/icons/glass-full.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/glass-off.svg b/icons/glass-off.svg index 424ac1e35..360c597d7 100644 --- a/icons/glass-off.svg +++ b/icons/glass-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/glass.svg b/icons/glass.svg index c958b9370..25c829bdc 100644 --- a/icons/glass.svg +++ b/icons/glass.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/globe-off.svg b/icons/globe-off.svg index 4e9b5f674..d1e7be530 100644 --- a/icons/globe-off.svg +++ b/icons/globe-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/globe.svg b/icons/globe.svg index a130367fb..3b8cc5398 100644 --- a/icons/globe.svg +++ b/icons/globe.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/go-game.svg b/icons/go-game.svg index 11dcd6f20..f7eb955be 100644 --- a/icons/go-game.svg +++ b/icons/go-game.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/golf-off.svg b/icons/golf-off.svg index 2ce7b397a..7abd360ba 100644 --- a/icons/golf-off.svg +++ b/icons/golf-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/golf.svg b/icons/golf.svg index d4fb49d2c..98dcda1dc 100644 --- a/icons/golf.svg +++ b/icons/golf.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/gps.svg b/icons/gps.svg index dedc27381..42a81ac67 100644 --- a/icons/gps.svg +++ b/icons/gps.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/gradienter.svg b/icons/gradienter.svg index 19334f764..d767f0398 100644 --- a/icons/gradienter.svg +++ b/icons/gradienter.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/grain.svg b/icons/grain.svg index 2b29e79d3..8fb06fe7d 100644 --- a/icons/grain.svg +++ b/icons/grain.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/graph-off.svg b/icons/graph-off.svg index 5faca87b1..8ddaeeb68 100644 --- a/icons/graph-off.svg +++ b/icons/graph-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/graph.svg b/icons/graph.svg index 8ca899693..d44294f53 100644 --- a/icons/graph.svg +++ b/icons/graph.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/grave-2.svg b/icons/grave-2.svg index aaaf5b902..6eec73240 100644 --- a/icons/grave-2.svg +++ b/icons/grave-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/grave.svg b/icons/grave.svg index 78e3fbeeb..1f296990e 100644 --- a/icons/grave.svg +++ b/icons/grave.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/grid-dots.svg b/icons/grid-dots.svg index 6ba23d695..5729196f6 100644 --- a/icons/grid-dots.svg +++ b/icons/grid-dots.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/grid-pattern.svg b/icons/grid-pattern.svg index 898705986..e4bd23cc6 100644 --- a/icons/grid-pattern.svg +++ b/icons/grid-pattern.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/grill-fork.svg b/icons/grill-fork.svg index 420499429..09fce2a5a 100644 --- a/icons/grill-fork.svg +++ b/icons/grill-fork.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/grill-off.svg b/icons/grill-off.svg index 24c30fa3a..f0a1086d3 100644 --- a/icons/grill-off.svg +++ b/icons/grill-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/grill-spatula.svg b/icons/grill-spatula.svg index 5297d5bc1..cb8ad3e6c 100644 --- a/icons/grill-spatula.svg +++ b/icons/grill-spatula.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/grill.svg b/icons/grill.svg index cd345ff01..f14825208 100644 --- a/icons/grill.svg +++ b/icons/grill.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/grip-horizontal.svg b/icons/grip-horizontal.svg index 4795686ec..83f18b72c 100644 --- a/icons/grip-horizontal.svg +++ b/icons/grip-horizontal.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/grip-vertical.svg b/icons/grip-vertical.svg index 36abecc3e..19ba60f11 100644 --- a/icons/grip-vertical.svg +++ b/icons/grip-vertical.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/guitar-pick-filled.svg b/icons/guitar-pick-filled.svg new file mode 100644 index 000000000..08361ddb3 --- /dev/null +++ b/icons/guitar-pick-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/h-1.svg b/icons/h-1.svg index 256f6e38d..3c685bac0 100644 --- a/icons/h-1.svg +++ b/icons/h-1.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/h-2.svg b/icons/h-2.svg index b5aa155d9..2424c397c 100644 --- a/icons/h-2.svg +++ b/icons/h-2.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/h-3.svg b/icons/h-3.svg index d6d00faef..2b641ffd1 100644 --- a/icons/h-3.svg +++ b/icons/h-3.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/h-4.svg b/icons/h-4.svg index 54be138dd..b09632dff 100644 --- a/icons/h-4.svg +++ b/icons/h-4.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/h-5.svg b/icons/h-5.svg index 2bb08f48d..5cddfc1a6 100644 --- a/icons/h-5.svg +++ b/icons/h-5.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/h-6.svg b/icons/h-6.svg index 111667cb6..ed2bc28c0 100644 --- a/icons/h-6.svg +++ b/icons/h-6.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/hammer-off.svg b/icons/hammer-off.svg index 01bddc99f..3594053c2 100644 --- a/icons/hammer-off.svg +++ b/icons/hammer-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hammer.svg b/icons/hammer.svg index c2e044bdd..20aeb63af 100644 --- a/icons/hammer.svg +++ b/icons/hammer.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hand-click.svg b/icons/hand-click.svg index 3f4527a6f..aade5867b 100644 --- a/icons/hand-click.svg +++ b/icons/hand-click.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/hand-finger-off.svg b/icons/hand-finger-off.svg index e6de69a07..c95ab14da 100644 --- a/icons/hand-finger-off.svg +++ b/icons/hand-finger-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/hand-finger.svg b/icons/hand-finger.svg index bb62c855d..378b2c370 100644 --- a/icons/hand-finger.svg +++ b/icons/hand-finger.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-grab.svg b/icons/hand-grab.svg index 7150e54b8..551e99698 100644 --- a/icons/hand-grab.svg +++ b/icons/hand-grab.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-little-finger.svg b/icons/hand-little-finger.svg index a9c193a87..8c046a978 100644 --- a/icons/hand-little-finger.svg +++ b/icons/hand-little-finger.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-middle-finger.svg b/icons/hand-middle-finger.svg index 071b05e13..242f4f4bc 100644 --- a/icons/hand-middle-finger.svg +++ b/icons/hand-middle-finger.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-move.svg b/icons/hand-move.svg index f0fa137f8..dbe179fb1 100644 --- a/icons/hand-move.svg +++ b/icons/hand-move.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/hand-off.svg b/icons/hand-off.svg index 0f525b39c..f4281e46c 100644 --- a/icons/hand-off.svg +++ b/icons/hand-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hand-ring-finger.svg b/icons/hand-ring-finger.svg index b21e3a606..94fcada51 100644 --- a/icons/hand-ring-finger.svg +++ b/icons/hand-ring-finger.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-rock.svg b/icons/hand-rock.svg index 0ad1e0f2d..eeda47c76 100644 --- a/icons/hand-rock.svg +++ b/icons/hand-rock.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-sanitizer.svg b/icons/hand-sanitizer.svg index a375189c0..96a7cb74f 100644 --- a/icons/hand-sanitizer.svg +++ b/icons/hand-sanitizer.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/hand-stop.svg b/icons/hand-stop.svg index 3660f2a31..870abc3c3 100644 --- a/icons/hand-stop.svg +++ b/icons/hand-stop.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-three-fingers.svg b/icons/hand-three-fingers.svg index b4b30cd9e..5efc3845c 100644 --- a/icons/hand-three-fingers.svg +++ b/icons/hand-three-fingers.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hand-two-fingers.svg b/icons/hand-two-fingers.svg index 2f0ffc9a3..f842c46ae 100644 --- a/icons/hand-two-fingers.svg +++ b/icons/hand-two-fingers.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hanger-2.svg b/icons/hanger-2.svg index b29fa3352..616d469e7 100644 --- a/icons/hanger-2.svg +++ b/icons/hanger-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hanger-off.svg b/icons/hanger-off.svg index 1a56965b1..0a3da2f21 100644 --- a/icons/hanger-off.svg +++ b/icons/hanger-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hanger.svg b/icons/hanger.svg index f4b5c62cc..531b8f947 100644 --- a/icons/hanger.svg +++ b/icons/hanger.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/hash.svg b/icons/hash.svg index 7cf36316c..c212af4d7 100644 --- a/icons/hash.svg +++ b/icons/hash.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/haze.svg b/icons/haze.svg index ad8846dfe..26b8ccdb6 100644 --- a/icons/haze.svg +++ b/icons/haze.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/heading-off.svg b/icons/heading-off.svg index 5eaf90fa3..e48da9e96 100644 --- a/icons/heading-off.svg +++ b/icons/heading-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/heading.svg b/icons/heading.svg index 4ac433166..d0c112e31 100644 --- a/icons/heading.svg +++ b/icons/heading.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/headphones-off.svg b/icons/headphones-off.svg index 6a323b7be..1a7a30684 100644 --- a/icons/headphones-off.svg +++ b/icons/headphones-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/headphones.svg b/icons/headphones.svg index a7affd925..9a7cd1c14 100644 --- a/icons/headphones.svg +++ b/icons/headphones.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/headset-off.svg b/icons/headset-off.svg index e294569d5..d904c09b4 100644 --- a/icons/headset-off.svg +++ b/icons/headset-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/headset.svg b/icons/headset.svg index bd63d62b4..e3f09fe16 100644 --- a/icons/headset.svg +++ b/icons/headset.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/health-recognition.svg b/icons/health-recognition.svg index 9a25cdcd8..7506cec64 100644 --- a/icons/health-recognition.svg +++ b/icons/health-recognition.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/heart-broken.svg b/icons/heart-broken.svg index 1e0bba6ed..38c5a2034 100644 --- a/icons/heart-broken.svg +++ b/icons/heart-broken.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/heart-filled.svg b/icons/heart-filled.svg new file mode 100644 index 000000000..75fc3b661 --- /dev/null +++ b/icons/heart-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/heart-handshake.svg b/icons/heart-handshake.svg index 22b4d3797..8bcb3da79 100644 --- a/icons/heart-handshake.svg +++ b/icons/heart-handshake.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/heart-minus.svg b/icons/heart-minus.svg index 0c3f4c36f..31034b834 100644 --- a/icons/heart-minus.svg +++ b/icons/heart-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/heart-off.svg b/icons/heart-off.svg index 8cdefba36..11982b72a 100644 --- a/icons/heart-off.svg +++ b/icons/heart-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/heart-plus.svg b/icons/heart-plus.svg index b78e4b4d0..5e3b2a3d6 100644 --- a/icons/heart-plus.svg +++ b/icons/heart-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/heart-rate-monitor.svg b/icons/heart-rate-monitor.svg index e42dfb364..8931a19df 100644 --- a/icons/heart-rate-monitor.svg +++ b/icons/heart-rate-monitor.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/heart.svg b/icons/heart.svg index 95a6664c5..94c5a8cd8 100644 --- a/icons/heart.svg +++ b/icons/heart.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/heartbeat.svg b/icons/heartbeat.svg index 8f95dbe4f..66c862e30 100644 --- a/icons/heartbeat.svg +++ b/icons/heartbeat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hearts-off.svg b/icons/hearts-off.svg index 957fb466d..b78e38a35 100644 --- a/icons/hearts-off.svg +++ b/icons/hearts-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hearts.svg b/icons/hearts.svg index b24b7c6a1..5563fd641 100644 --- a/icons/hearts.svg +++ b/icons/hearts.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/helicopter-landing.svg b/icons/helicopter-landing.svg index 60cde1230..afbf2e0dc 100644 --- a/icons/helicopter-landing.svg +++ b/icons/helicopter-landing.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/helicopter.svg b/icons/helicopter.svg index 382554b36..2283904d5 100644 --- a/icons/helicopter.svg +++ b/icons/helicopter.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/helmet-off.svg b/icons/helmet-off.svg index 3e105a433..e448c32f7 100644 --- a/icons/helmet-off.svg +++ b/icons/helmet-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/helmet.svg b/icons/helmet.svg index 4dc604cd3..668cd5c89 100644 --- a/icons/helmet.svg +++ b/icons/helmet.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/help-off.svg b/icons/help-off.svg index e2adab0ac..0b19253d9 100644 --- a/icons/help-off.svg +++ b/icons/help-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/help.svg b/icons/help.svg index e39d3f960..24057ef0e 100644 --- a/icons/help.svg +++ b/icons/help.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-3d.svg b/icons/hexagon-3d.svg index bd080f0b4..4006c9e6e 100644 --- a/icons/hexagon-3d.svg +++ b/icons/hexagon-3d.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/hexagon-filled.svg b/icons/hexagon-filled.svg new file mode 100644 index 000000000..3ce1a1039 --- /dev/null +++ b/icons/hexagon-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-a.svg b/icons/hexagon-letter-a.svg index c698f767d..9f3f3afd1 100644 --- a/icons/hexagon-letter-a.svg +++ b/icons/hexagon-letter-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-b.svg b/icons/hexagon-letter-b.svg index 735c505dd..d78bc86d0 100644 --- a/icons/hexagon-letter-b.svg +++ b/icons/hexagon-letter-b.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-c.svg b/icons/hexagon-letter-c.svg index 5d2666860..f70aa86ec 100644 --- a/icons/hexagon-letter-c.svg +++ b/icons/hexagon-letter-c.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-d.svg b/icons/hexagon-letter-d.svg index 295a0a723..8be60f4db 100644 --- a/icons/hexagon-letter-d.svg +++ b/icons/hexagon-letter-d.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-e.svg b/icons/hexagon-letter-e.svg index 4938e9ae2..8f450e4ae 100644 --- a/icons/hexagon-letter-e.svg +++ b/icons/hexagon-letter-e.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-f.svg b/icons/hexagon-letter-f.svg index f0163c3f3..c5e6b1ba9 100644 --- a/icons/hexagon-letter-f.svg +++ b/icons/hexagon-letter-f.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-g.svg b/icons/hexagon-letter-g.svg index fdc22f734..1489b8f60 100644 --- a/icons/hexagon-letter-g.svg +++ b/icons/hexagon-letter-g.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-h.svg b/icons/hexagon-letter-h.svg index ad5036c1c..159fcc3d7 100644 --- a/icons/hexagon-letter-h.svg +++ b/icons/hexagon-letter-h.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-i.svg b/icons/hexagon-letter-i.svg index c5e2377a7..195404baa 100644 --- a/icons/hexagon-letter-i.svg +++ b/icons/hexagon-letter-i.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-j.svg b/icons/hexagon-letter-j.svg index f03ea4dd7..f1654ba6e 100644 --- a/icons/hexagon-letter-j.svg +++ b/icons/hexagon-letter-j.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-k.svg b/icons/hexagon-letter-k.svg index c62172cd3..a292c87e5 100644 --- a/icons/hexagon-letter-k.svg +++ b/icons/hexagon-letter-k.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hexagon-letter-l.svg b/icons/hexagon-letter-l.svg index ebedf8689..d9e964b11 100644 --- a/icons/hexagon-letter-l.svg +++ b/icons/hexagon-letter-l.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-m.svg b/icons/hexagon-letter-m.svg index ccb97d19b..aefc63956 100644 --- a/icons/hexagon-letter-m.svg +++ b/icons/hexagon-letter-m.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-n.svg b/icons/hexagon-letter-n.svg index edf5c3260..2d19e1d1e 100644 --- a/icons/hexagon-letter-n.svg +++ b/icons/hexagon-letter-n.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-o.svg b/icons/hexagon-letter-o.svg index 0f8195968..4e319d1e4 100644 --- a/icons/hexagon-letter-o.svg +++ b/icons/hexagon-letter-o.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-p.svg b/icons/hexagon-letter-p.svg index 2fb68b516..24662bfa8 100644 --- a/icons/hexagon-letter-p.svg +++ b/icons/hexagon-letter-p.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-q.svg b/icons/hexagon-letter-q.svg index 5f735cbf3..2326cf8f1 100644 --- a/icons/hexagon-letter-q.svg +++ b/icons/hexagon-letter-q.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-r.svg b/icons/hexagon-letter-r.svg index 6f90103a4..210a4f003 100644 --- a/icons/hexagon-letter-r.svg +++ b/icons/hexagon-letter-r.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-s.svg b/icons/hexagon-letter-s.svg index 93367584c..6c841454a 100644 --- a/icons/hexagon-letter-s.svg +++ b/icons/hexagon-letter-s.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-t.svg b/icons/hexagon-letter-t.svg index bf14cc62a..6eeb3b497 100644 --- a/icons/hexagon-letter-t.svg +++ b/icons/hexagon-letter-t.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-u.svg b/icons/hexagon-letter-u.svg index b59a6dcdb..e0ab4381e 100644 --- a/icons/hexagon-letter-u.svg +++ b/icons/hexagon-letter-u.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-v.svg b/icons/hexagon-letter-v.svg index b5ec0adcb..e16891388 100644 --- a/icons/hexagon-letter-v.svg +++ b/icons/hexagon-letter-v.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-w.svg b/icons/hexagon-letter-w.svg index 82ffd7052..960b905af 100644 --- a/icons/hexagon-letter-w.svg +++ b/icons/hexagon-letter-w.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-letter-x.svg b/icons/hexagon-letter-x.svg index f72e4ed0f..da5b7aaef 100644 --- a/icons/hexagon-letter-x.svg +++ b/icons/hexagon-letter-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-y.svg b/icons/hexagon-letter-y.svg index b3f54bf60..8290d04c0 100644 --- a/icons/hexagon-letter-y.svg +++ b/icons/hexagon-letter-y.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-letter-z.svg b/icons/hexagon-letter-z.svg index 63c2f912e..cfb15055d 100644 --- a/icons/hexagon-letter-z.svg +++ b/icons/hexagon-letter-z.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-0.svg b/icons/hexagon-number-0.svg index 8726f3da3..a6084b637 100644 --- a/icons/hexagon-number-0.svg +++ b/icons/hexagon-number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-1.svg b/icons/hexagon-number-1.svg index bca8730ef..46ba852d6 100644 --- a/icons/hexagon-number-1.svg +++ b/icons/hexagon-number-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-2.svg b/icons/hexagon-number-2.svg index bafa47617..c31484bd5 100644 --- a/icons/hexagon-number-2.svg +++ b/icons/hexagon-number-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-3.svg b/icons/hexagon-number-3.svg index d67414063..f3b4870e2 100644 --- a/icons/hexagon-number-3.svg +++ b/icons/hexagon-number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-4.svg b/icons/hexagon-number-4.svg index 05659a7b7..80d47fd3b 100644 --- a/icons/hexagon-number-4.svg +++ b/icons/hexagon-number-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hexagon-number-5.svg b/icons/hexagon-number-5.svg index 2cef52454..bac3d3c6e 100644 --- a/icons/hexagon-number-5.svg +++ b/icons/hexagon-number-5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-6.svg b/icons/hexagon-number-6.svg index 165f7c745..58e379458 100644 --- a/icons/hexagon-number-6.svg +++ b/icons/hexagon-number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-7.svg b/icons/hexagon-number-7.svg index c653b8323..d58b2eb3b 100644 --- a/icons/hexagon-number-7.svg +++ b/icons/hexagon-number-7.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-8.svg b/icons/hexagon-number-8.svg index 03804a726..812f43082 100644 --- a/icons/hexagon-number-8.svg +++ b/icons/hexagon-number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-number-9.svg b/icons/hexagon-number-9.svg index e59d68a86..54a3a3ac7 100644 --- a/icons/hexagon-number-9.svg +++ b/icons/hexagon-number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagon-off.svg b/icons/hexagon-off.svg index 018a13a7d..7e8a4868b 100644 --- a/icons/hexagon-off.svg +++ b/icons/hexagon-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hexagons-off.svg b/icons/hexagons-off.svg index 24d52bdb9..5f21b6538 100644 --- a/icons/hexagons-off.svg +++ b/icons/hexagons-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/hexagons.svg b/icons/hexagons.svg index 7ddd4abee..9f066e2a5 100644 --- a/icons/hexagons.svg +++ b/icons/hexagons.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hierarchy-2.svg b/icons/hierarchy-2.svg index 5c4a933a0..ecf354328 100644 --- a/icons/hierarchy-2.svg +++ b/icons/hierarchy-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/hierarchy-3.svg b/icons/hierarchy-3.svg index 1d8cd7280..d17357ade 100644 --- a/icons/hierarchy-3.svg +++ b/icons/hierarchy-3.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/hierarchy-off.svg b/icons/hierarchy-off.svg index 59b2ec197..815b42bb2 100644 --- a/icons/hierarchy-off.svg +++ b/icons/hierarchy-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/hierarchy.svg b/icons/hierarchy.svg index 4833d16b3..a6fffc5bd 100644 --- a/icons/hierarchy.svg +++ b/icons/hierarchy.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/highlight-off.svg b/icons/highlight-off.svg index d343f390e..e7c286f79 100644 --- a/icons/highlight-off.svg +++ b/icons/highlight-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/highlight.svg b/icons/highlight.svg index c9d88f345..44599f5ce 100644 --- a/icons/highlight.svg +++ b/icons/highlight.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/history-off.svg b/icons/history-off.svg index 0a00b7d7c..79529ce37 100644 --- a/icons/history-off.svg +++ b/icons/history-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/history-toggle.svg b/icons/history-toggle.svg index ee781dc09..35202f3b7 100644 --- a/icons/history-toggle.svg +++ b/icons/history-toggle.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/history.svg b/icons/history.svg index 38021e08a..2266146b6 100644 --- a/icons/history.svg +++ b/icons/history.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/home-2.svg b/icons/home-2.svg index f77303102..171934ad2 100644 --- a/icons/home-2.svg +++ b/icons/home-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-bolt.svg b/icons/home-bolt.svg index 6c12d75cb..81b493c50 100644 --- a/icons/home-bolt.svg +++ b/icons/home-bolt.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-cancel.svg b/icons/home-cancel.svg index bd6b453d6..4a5701aba 100644 --- a/icons/home-cancel.svg +++ b/icons/home-cancel.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-check.svg b/icons/home-check.svg index e09d20da7..3b9fb9e3d 100644 --- a/icons/home-check.svg +++ b/icons/home-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-cog.svg b/icons/home-cog.svg index f68aebc01..c457e1eeb 100644 --- a/icons/home-cog.svg +++ b/icons/home-cog.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/home-dollar.svg b/icons/home-dollar.svg index b630e3be0..5d48271d5 100644 --- a/icons/home-dollar.svg +++ b/icons/home-dollar.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-dot.svg b/icons/home-dot.svg index 564b143b9..0a87893b1 100644 --- a/icons/home-dot.svg +++ b/icons/home-dot.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-down.svg b/icons/home-down.svg index 54dd9c6b6..1abf790a9 100644 --- a/icons/home-down.svg +++ b/icons/home-down.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-eco.svg b/icons/home-eco.svg index 56a88a223..6f64e5b4d 100644 --- a/icons/home-eco.svg +++ b/icons/home-eco.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-edit.svg b/icons/home-edit.svg index 884cae15c..ca04810ce 100644 --- a/icons/home-edit.svg +++ b/icons/home-edit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-exclamation.svg b/icons/home-exclamation.svg index bc7e9a5fa..7ed6460a8 100644 --- a/icons/home-exclamation.svg +++ b/icons/home-exclamation.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-hand.svg b/icons/home-hand.svg index d414bda4f..551402fd4 100644 --- a/icons/home-hand.svg +++ b/icons/home-hand.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-heart.svg b/icons/home-heart.svg index bc60cabba..5d66c3538 100644 --- a/icons/home-heart.svg +++ b/icons/home-heart.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-infinity.svg b/icons/home-infinity.svg index 760a89c5b..45feab47d 100644 --- a/icons/home-infinity.svg +++ b/icons/home-infinity.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-link.svg b/icons/home-link.svg index 47d8b4523..0ae4c7076 100644 --- a/icons/home-link.svg +++ b/icons/home-link.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/home-minus.svg b/icons/home-minus.svg index 4377a8693..cbd0c9ba0 100644 --- a/icons/home-minus.svg +++ b/icons/home-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-move.svg b/icons/home-move.svg index 3f3daf7a8..06d08c234 100644 --- a/icons/home-move.svg +++ b/icons/home-move.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-off.svg b/icons/home-off.svg index 9e48ccb52..3850816f2 100644 --- a/icons/home-off.svg +++ b/icons/home-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-plus.svg b/icons/home-plus.svg index b870c280b..c21b65ead 100644 --- a/icons/home-plus.svg +++ b/icons/home-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-question.svg b/icons/home-question.svg index 25ce214c8..d4c1500bd 100644 --- a/icons/home-question.svg +++ b/icons/home-question.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-ribbon.svg b/icons/home-ribbon.svg index cd64fe067..c922027e3 100644 --- a/icons/home-ribbon.svg +++ b/icons/home-ribbon.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-search.svg b/icons/home-search.svg index 0119bb71b..2893218ce 100644 --- a/icons/home-search.svg +++ b/icons/home-search.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-share.svg b/icons/home-share.svg index a21f0d4be..b8fc9c7bb 100644 --- a/icons/home-share.svg +++ b/icons/home-share.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-shield.svg b/icons/home-shield.svg index 02d237023..4663c021c 100644 --- a/icons/home-shield.svg +++ b/icons/home-shield.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-signal.svg b/icons/home-signal.svg index a43947ce7..5bf040d08 100644 --- a/icons/home-signal.svg +++ b/icons/home-signal.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/home-star.svg b/icons/home-star.svg index cf2631645..1b055bcef 100644 --- a/icons/home-star.svg +++ b/icons/home-star.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/home-stats.svg b/icons/home-stats.svg index 3105c685c..d2b7c19c1 100644 --- a/icons/home-stats.svg +++ b/icons/home-stats.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-up.svg b/icons/home-up.svg index 07db59c80..ebf0dae7a 100644 --- a/icons/home-up.svg +++ b/icons/home-up.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home-x.svg b/icons/home-x.svg index 08299c58d..79e4e9b52 100644 --- a/icons/home-x.svg +++ b/icons/home-x.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/home.svg b/icons/home.svg index d08b7dae3..c88f53203 100644 --- a/icons/home.svg +++ b/icons/home.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/horse-toy.svg b/icons/horse-toy.svg index 88853b0dc..b2cc09e96 100644 --- a/icons/horse-toy.svg +++ b/icons/horse-toy.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/hourglass-empty.svg b/icons/hourglass-empty.svg index 45a2447a2..ae71afe9b 100644 --- a/icons/hourglass-empty.svg +++ b/icons/hourglass-empty.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/hourglass-high.svg b/icons/hourglass-high.svg index be0cfc76a..5fdd985bc 100644 --- a/icons/hourglass-high.svg +++ b/icons/hourglass-high.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hourglass-low.svg b/icons/hourglass-low.svg index 2aa63064b..b4971301d 100644 --- a/icons/hourglass-low.svg +++ b/icons/hourglass-low.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hourglass-off.svg b/icons/hourglass-off.svg index 31301f615..1a8c72a68 100644 --- a/icons/hourglass-off.svg +++ b/icons/hourglass-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/hourglass.svg b/icons/hourglass.svg index e8f839657..78545198d 100644 --- a/icons/hourglass.svg +++ b/icons/hourglass.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ice-cream-2.svg b/icons/ice-cream-2.svg index 64af6d399..f99c6b55d 100644 --- a/icons/ice-cream-2.svg +++ b/icons/ice-cream-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ice-cream-off.svg b/icons/ice-cream-off.svg index e3cf99c7e..7e225830b 100644 --- a/icons/ice-cream-off.svg +++ b/icons/ice-cream-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ice-cream.svg b/icons/ice-cream.svg index 781affbc3..9ece4cccc 100644 --- a/icons/ice-cream.svg +++ b/icons/ice-cream.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ice-skating.svg b/icons/ice-skating.svg index 8c5cc9558..51bb984f4 100644 --- a/icons/ice-skating.svg +++ b/icons/ice-skating.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/icons-off.svg b/icons/icons-off.svg index ca47924c6..a80eedffd 100644 --- a/icons/icons-off.svg +++ b/icons/icons-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/icons.svg b/icons/icons.svg index 3efedc119..b9dc65532 100644 --- a/icons/icons.svg +++ b/icons/icons.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/id-badge-2.svg b/icons/id-badge-2.svg index c4360f5ad..6fbbb5cf6 100644 --- a/icons/id-badge-2.svg +++ b/icons/id-badge-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/id-badge-off.svg b/icons/id-badge-off.svg index 02b813b14..e729fed42 100644 --- a/icons/id-badge-off.svg +++ b/icons/id-badge-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/id-badge.svg b/icons/id-badge.svg index bf7786b4b..edeec6f7c 100644 --- a/icons/id-badge.svg +++ b/icons/id-badge.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/id-off.svg b/icons/id-off.svg index f8c58cafa..3f47df0aa 100644 --- a/icons/id-off.svg +++ b/icons/id-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/id.svg b/icons/id.svg index e1789fe70..8d6686d78 100644 --- a/icons/id.svg +++ b/icons/id.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/inbox-off.svg b/icons/inbox-off.svg index 367e1d65a..fc2eaee78 100644 --- a/icons/inbox-off.svg +++ b/icons/inbox-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/inbox.svg b/icons/inbox.svg index 51c57d411..b233c5242 100644 --- a/icons/inbox.svg +++ b/icons/inbox.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/indent-decrease.svg b/icons/indent-decrease.svg index aa429fefe..337ad5552 100644 --- a/icons/indent-decrease.svg +++ b/icons/indent-decrease.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/indent-increase.svg b/icons/indent-increase.svg index 1e27023fc..c0b58f4ee 100644 --- a/icons/indent-increase.svg +++ b/icons/indent-increase.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/infinity-off.svg b/icons/infinity-off.svg index 9acd54e49..191873581 100644 --- a/icons/infinity-off.svg +++ b/icons/infinity-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/info-circle.svg b/icons/info-circle.svg index 745151517..57d7f17fa 100644 --- a/icons/info-circle.svg +++ b/icons/info-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/info-square-rounded.svg b/icons/info-square-rounded.svg index 39d0d7813..4da3dda09 100644 --- a/icons/info-square-rounded.svg +++ b/icons/info-square-rounded.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/info-square.svg b/icons/info-square.svg index 3bb948cc8..835892165 100644 --- a/icons/info-square.svg +++ b/icons/info-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/inner-shadow-bottom-left.svg b/icons/inner-shadow-bottom-left.svg index 044a7178f..31011228e 100644 --- a/icons/inner-shadow-bottom-left.svg +++ b/icons/inner-shadow-bottom-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-bottom-right.svg b/icons/inner-shadow-bottom-right.svg index ab6f2ee49..e973d9423 100644 --- a/icons/inner-shadow-bottom-right.svg +++ b/icons/inner-shadow-bottom-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-bottom.svg b/icons/inner-shadow-bottom.svg index 044a365eb..74b503efe 100644 --- a/icons/inner-shadow-bottom.svg +++ b/icons/inner-shadow-bottom.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-left.svg b/icons/inner-shadow-left.svg index bd5b8f280..40da91a0b 100644 --- a/icons/inner-shadow-left.svg +++ b/icons/inner-shadow-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-right.svg b/icons/inner-shadow-right.svg index def1de5f7..5880e4797 100644 --- a/icons/inner-shadow-right.svg +++ b/icons/inner-shadow-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-top-left.svg b/icons/inner-shadow-top-left.svg index 4e1d2236b..30402104b 100644 --- a/icons/inner-shadow-top-left.svg +++ b/icons/inner-shadow-top-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-top-right.svg b/icons/inner-shadow-top-right.svg index 377abb94f..9a75d71bf 100644 --- a/icons/inner-shadow-top-right.svg +++ b/icons/inner-shadow-top-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/inner-shadow-top.svg b/icons/inner-shadow-top.svg index 3d6d1f95a..277834b47 100644 --- a/icons/inner-shadow-top.svg +++ b/icons/inner-shadow-top.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/input-search.svg b/icons/input-search.svg index 74e217fed..ea15762d0 100644 --- a/icons/input-search.svg +++ b/icons/input-search.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ironing-1.svg b/icons/ironing-1.svg index a4c333a32..5d6690c3e 100644 --- a/icons/ironing-1.svg +++ b/icons/ironing-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ironing-2.svg b/icons/ironing-2.svg index d9f8390a8..02b0b4de0 100644 --- a/icons/ironing-2.svg +++ b/icons/ironing-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ironing-3.svg b/icons/ironing-3.svg index 1c425ee2c..5b4bffd28 100644 --- a/icons/ironing-3.svg +++ b/icons/ironing-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ironing-off.svg b/icons/ironing-off.svg index dc8b164dc..00c7e8f44 100644 --- a/icons/ironing-off.svg +++ b/icons/ironing-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ironing-steam-off.svg b/icons/ironing-steam-off.svg index c8c708857..23571b958 100644 --- a/icons/ironing-steam-off.svg +++ b/icons/ironing-steam-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/ironing-steam.svg b/icons/ironing-steam.svg index 0f790e0e9..874b9e21f 100644 --- a/icons/ironing-steam.svg +++ b/icons/ironing-steam.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/italic.svg b/icons/italic.svg index 494679cde..238a51067 100644 --- a/icons/italic.svg +++ b/icons/italic.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/jacket.svg b/icons/jacket.svg index aea2f2b03..802e6204e 100644 --- a/icons/jacket.svg +++ b/icons/jacket.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/jetpack.svg b/icons/jetpack.svg index f2d048e15..e7f7cd88d 100644 --- a/icons/jetpack.svg +++ b/icons/jetpack.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/jewish-star-filled.svg b/icons/jewish-star-filled.svg new file mode 100644 index 000000000..d1e96e5fc --- /dev/null +++ b/icons/jewish-star-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/jpg.svg b/icons/jpg.svg index 058a981e5..272c6fcc0 100644 --- a/icons/jpg.svg +++ b/icons/jpg.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/jump-rope.svg b/icons/jump-rope.svg index 80d1051b6..b6fd531ea 100644 --- a/icons/jump-rope.svg +++ b/icons/jump-rope.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/karate.svg b/icons/karate.svg index 8221bb778..9acca9d52 100644 --- a/icons/karate.svg +++ b/icons/karate.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/kayak.svg b/icons/kayak.svg index 03b892fb0..5b162f869 100644 --- a/icons/kayak.svg +++ b/icons/kayak.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/kering.svg b/icons/kering.svg index f6ac65277..87dadfbee 100644 --- a/icons/kering.svg +++ b/icons/kering.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/key-off.svg b/icons/key-off.svg index 8454cfe03..9b679de4c 100644 --- a/icons/key-off.svg +++ b/icons/key-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/key.svg b/icons/key.svg index 661e882a4..7aaa48a65 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/keyboard-hide.svg b/icons/keyboard-hide.svg index 0558d193f..206aef812 100644 --- a/icons/keyboard-hide.svg +++ b/icons/keyboard-hide.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/keyboard-off.svg b/icons/keyboard-off.svg index 99e0e3ed8..897021926 100644 --- a/icons/keyboard-off.svg +++ b/icons/keyboard-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/keyboard-show.svg b/icons/keyboard-show.svg index 6bc084972..26e0cc8d3 100644 --- a/icons/keyboard-show.svg +++ b/icons/keyboard-show.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/keyboard.svg b/icons/keyboard.svg index 2b53fb5bc..097634abb 100644 --- a/icons/keyboard.svg +++ b/icons/keyboard.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/keyframe-align-center.svg b/icons/keyframe-align-center.svg index ca1c99dad..3de93f61b 100644 --- a/icons/keyframe-align-center.svg +++ b/icons/keyframe-align-center.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/keyframe-align-horizontal.svg b/icons/keyframe-align-horizontal.svg index c8df6c36b..0197e84ba 100644 --- a/icons/keyframe-align-horizontal.svg +++ b/icons/keyframe-align-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/keyframe-align-vertical.svg b/icons/keyframe-align-vertical.svg index 410ead2d0..64d8a4d4c 100644 --- a/icons/keyframe-align-vertical.svg +++ b/icons/keyframe-align-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/keyframes.svg b/icons/keyframes.svg index 4e9a592e2..0a19f50af 100644 --- a/icons/keyframes.svg +++ b/icons/keyframes.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ladder-off.svg b/icons/ladder-off.svg index a160fecf0..5599ead16 100644 --- a/icons/ladder-off.svg +++ b/icons/ladder-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/ladder.svg b/icons/ladder.svg index c94f806b5..6db3599d0 100644 --- a/icons/ladder.svg +++ b/icons/ladder.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/lambda.svg b/icons/lambda.svg index 11005e696..908bc7ec7 100644 --- a/icons/lambda.svg +++ b/icons/lambda.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/lamp-2.svg b/icons/lamp-2.svg index bc6d68022..00428a8a5 100644 --- a/icons/lamp-2.svg +++ b/icons/lamp-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/lamp-off.svg b/icons/lamp-off.svg index e058bd34e..ede607adb 100644 --- a/icons/lamp-off.svg +++ b/icons/lamp-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lamp.svg b/icons/lamp.svg index fff6c5d41..ec718dd27 100644 --- a/icons/lamp.svg +++ b/icons/lamp.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/language-hiragana.svg b/icons/language-hiragana.svg index 99e9bb1c2..94f1ddd02 100644 --- a/icons/language-hiragana.svg +++ b/icons/language-hiragana.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/language-katakana.svg b/icons/language-katakana.svg index 018e9e32f..3926360b3 100644 --- a/icons/language-katakana.svg +++ b/icons/language-katakana.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/language-off.svg b/icons/language-off.svg index aea1774fb..e21ca30a8 100644 --- a/icons/language-off.svg +++ b/icons/language-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/language.svg b/icons/language.svg index 66ede1c39..b5b9f8340 100644 --- a/icons/language.svg +++ b/icons/language.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/lasso-off.svg b/icons/lasso-off.svg index bd8ad4aab..d5274115d 100644 --- a/icons/lasso-off.svg +++ b/icons/lasso-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lasso-polygon.svg b/icons/lasso-polygon.svg index 85ca3ff97..1f4e86a7f 100644 --- a/icons/lasso-polygon.svg +++ b/icons/lasso-polygon.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/lasso.svg b/icons/lasso.svg index a1436c614..827ba1816 100644 --- a/icons/lasso.svg +++ b/icons/lasso.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layers-difference.svg b/icons/layers-difference.svg index 73b12ab02..0f0406727 100644 --- a/icons/layers-difference.svg +++ b/icons/layers-difference.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/layers-intersect-2.svg b/icons/layers-intersect-2.svg index 398cf1de2..2b5480143 100644 --- a/icons/layers-intersect-2.svg +++ b/icons/layers-intersect-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layers-intersect.svg b/icons/layers-intersect.svg index 4bb2c9dcc..76ca2db53 100644 --- a/icons/layers-intersect.svg +++ b/icons/layers-intersect.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layers-linked.svg b/icons/layers-linked.svg index 9df076c7f..ec6c53c27 100644 --- a/icons/layers-linked.svg +++ b/icons/layers-linked.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layers-off.svg b/icons/layers-off.svg index dcd49f158..e23514edf 100644 --- a/icons/layers-off.svg +++ b/icons/layers-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layers-subtract.svg b/icons/layers-subtract.svg index ef9e5bd71..663ca4bf6 100644 --- a/icons/layers-subtract.svg +++ b/icons/layers-subtract.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-2.svg b/icons/layout-2.svg index 74d10defd..d1646cbd5 100644 --- a/icons/layout-2.svg +++ b/icons/layout-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-align-bottom.svg b/icons/layout-align-bottom.svg index 05d2be89a..486e65c92 100644 --- a/icons/layout-align-bottom.svg +++ b/icons/layout-align-bottom.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-align-center.svg b/icons/layout-align-center.svg index 9c610d38c..1cadac381 100644 --- a/icons/layout-align-center.svg +++ b/icons/layout-align-center.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-align-left.svg b/icons/layout-align-left.svg index 37bb2e39d..f690fa20d 100644 --- a/icons/layout-align-left.svg +++ b/icons/layout-align-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-align-middle.svg b/icons/layout-align-middle.svg index 7e91ab6fd..fb1b2b6c2 100644 --- a/icons/layout-align-middle.svg +++ b/icons/layout-align-middle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-align-right.svg b/icons/layout-align-right.svg index 8904ef913..50239467b 100644 --- a/icons/layout-align-right.svg +++ b/icons/layout-align-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-align-top.svg b/icons/layout-align-top.svg index a1679a969..fcf621746 100644 --- a/icons/layout-align-top.svg +++ b/icons/layout-align-top.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-board-split.svg b/icons/layout-board-split.svg index 6e6a59582..bf7a6b040 100644 --- a/icons/layout-board-split.svg +++ b/icons/layout-board-split.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/layout-board.svg b/icons/layout-board.svg index 92c7aa904..af1a6e407 100644 --- a/icons/layout-board.svg +++ b/icons/layout-board.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-bottombar-collapse.svg b/icons/layout-bottombar-collapse.svg index e38c7e8ef..90deab1c0 100644 --- a/icons/layout-bottombar-collapse.svg +++ b/icons/layout-bottombar-collapse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-bottombar-expand.svg b/icons/layout-bottombar-expand.svg index 0d4369d21..773ac9a6e 100644 --- a/icons/layout-bottombar-expand.svg +++ b/icons/layout-bottombar-expand.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-bottombar.svg b/icons/layout-bottombar.svg index 7177afd3c..14e0feed0 100644 --- a/icons/layout-bottombar.svg +++ b/icons/layout-bottombar.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-cards.svg b/icons/layout-cards.svg index 1f1cb60f0..4c156ada2 100644 --- a/icons/layout-cards.svg +++ b/icons/layout-cards.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-collage.svg b/icons/layout-collage.svg index 08f5b737f..076851aea 100644 --- a/icons/layout-collage.svg +++ b/icons/layout-collage.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-columns.svg b/icons/layout-columns.svg index b96417fe7..6037b4027 100644 --- a/icons/layout-columns.svg +++ b/icons/layout-columns.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-dashboard.svg b/icons/layout-dashboard.svg index d7f36170b..16daf625a 100644 --- a/icons/layout-dashboard.svg +++ b/icons/layout-dashboard.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-distribute-horizontal.svg b/icons/layout-distribute-horizontal.svg index c7e0fae5f..8747f1fa1 100644 --- a/icons/layout-distribute-horizontal.svg +++ b/icons/layout-distribute-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-distribute-vertical.svg b/icons/layout-distribute-vertical.svg index 40f79a220..e35be4039 100644 --- a/icons/layout-distribute-vertical.svg +++ b/icons/layout-distribute-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-grid-add.svg b/icons/layout-grid-add.svg index 7b1f3c186..f62784ac9 100644 --- a/icons/layout-grid-add.svg +++ b/icons/layout-grid-add.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-grid.svg b/icons/layout-grid.svg index af2bc7000..7a8d5f387 100644 --- a/icons/layout-grid.svg +++ b/icons/layout-grid.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-kanban.svg b/icons/layout-kanban.svg index 926219bb8..648397e86 100644 --- a/icons/layout-kanban.svg +++ b/icons/layout-kanban.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-list.svg b/icons/layout-list.svg index 7b9dd32df..8650ace95 100644 --- a/icons/layout-list.svg +++ b/icons/layout-list.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-navbar-collapse.svg b/icons/layout-navbar-collapse.svg index 0ce6551ae..f7302ac2c 100644 --- a/icons/layout-navbar-collapse.svg +++ b/icons/layout-navbar-collapse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-navbar-expand.svg b/icons/layout-navbar-expand.svg index 1ebafa750..23254afd8 100644 --- a/icons/layout-navbar-expand.svg +++ b/icons/layout-navbar-expand.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-navbar.svg b/icons/layout-navbar.svg index 889c0e6df..8e26bb43f 100644 --- a/icons/layout-navbar.svg +++ b/icons/layout-navbar.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-off.svg b/icons/layout-off.svg index b71363b0c..0eba0d6d0 100644 --- a/icons/layout-off.svg +++ b/icons/layout-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/layout-rows.svg b/icons/layout-rows.svg index 3c1d563ae..b41397c08 100644 --- a/icons/layout-rows.svg +++ b/icons/layout-rows.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-sidebar-left-collapse.svg b/icons/layout-sidebar-left-collapse.svg index 0d4befe16..14784181b 100644 --- a/icons/layout-sidebar-left-collapse.svg +++ b/icons/layout-sidebar-left-collapse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-sidebar-left-expand.svg b/icons/layout-sidebar-left-expand.svg index 31e59e41e..e3bb4af25 100644 --- a/icons/layout-sidebar-left-expand.svg +++ b/icons/layout-sidebar-left-expand.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-sidebar-right-collapse.svg b/icons/layout-sidebar-right-collapse.svg index 9f57c664b..f3458c5e4 100644 --- a/icons/layout-sidebar-right-collapse.svg +++ b/icons/layout-sidebar-right-collapse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-sidebar-right-expand.svg b/icons/layout-sidebar-right-expand.svg index 15e442dae..f71b4b200 100644 --- a/icons/layout-sidebar-right-expand.svg +++ b/icons/layout-sidebar-right-expand.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/layout-sidebar-right.svg b/icons/layout-sidebar-right.svg index 79d077168..a27b4890a 100644 --- a/icons/layout-sidebar-right.svg +++ b/icons/layout-sidebar-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout-sidebar.svg b/icons/layout-sidebar.svg index 9af5b7a2c..1136f9430 100644 --- a/icons/layout-sidebar.svg +++ b/icons/layout-sidebar.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/layout.svg b/icons/layout.svg index 31858b2ed..bc2674b99 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/leaf-off.svg b/icons/leaf-off.svg index a1b140130..b087daac6 100644 --- a/icons/leaf-off.svg +++ b/icons/leaf-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/leaf.svg b/icons/leaf.svg index f912d4363..2b83cffc0 100644 --- a/icons/leaf.svg +++ b/icons/leaf.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/lego-off.svg b/icons/lego-off.svg index 481c5f844..1b7b03832 100644 --- a/icons/lego-off.svg +++ b/icons/lego-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lego.svg b/icons/lego.svg index 9c3adbc3d..2a0e82abc 100644 --- a/icons/lego.svg +++ b/icons/lego.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lemon-2.svg b/icons/lemon-2.svg index b4f32758a..622f7adf1 100644 --- a/icons/lemon-2.svg +++ b/icons/lemon-2.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/lemon.svg b/icons/lemon.svg index cf46e7db9..c26cffa05 100644 --- a/icons/lemon.svg +++ b/icons/lemon.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/letter-a.svg b/icons/letter-a.svg index ab052007d..313ed2911 100644 --- a/icons/letter-a.svg +++ b/icons/letter-a.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-b.svg b/icons/letter-b.svg index 741ea0a7b..ade479a25 100644 --- a/icons/letter-b.svg +++ b/icons/letter-b.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-case-lower.svg b/icons/letter-case-lower.svg index ca561c64d..3a7a71d65 100644 --- a/icons/letter-case-lower.svg +++ b/icons/letter-case-lower.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/letter-case-toggle.svg b/icons/letter-case-toggle.svg index 46ae81eb2..3fc3f6cc0 100644 --- a/icons/letter-case-toggle.svg +++ b/icons/letter-case-toggle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/letter-case-upper.svg b/icons/letter-case-upper.svg index 97771a31a..22121e058 100644 --- a/icons/letter-case-upper.svg +++ b/icons/letter-case-upper.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/letter-case.svg b/icons/letter-case.svg index 059ad8d10..3f846fc4d 100644 --- a/icons/letter-case.svg +++ b/icons/letter-case.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/letter-e.svg b/icons/letter-e.svg index 61d4ce90b..069de9c50 100644 --- a/icons/letter-e.svg +++ b/icons/letter-e.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-f.svg b/icons/letter-f.svg index f9614a6bd..c6b414350 100644 --- a/icons/letter-f.svg +++ b/icons/letter-f.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-h.svg b/icons/letter-h.svg index a1c568883..e20883c8d 100644 --- a/icons/letter-h.svg +++ b/icons/letter-h.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/letter-i.svg b/icons/letter-i.svg index 5a95ed231..90aa7ff73 100644 --- a/icons/letter-i.svg +++ b/icons/letter-i.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/letter-k.svg b/icons/letter-k.svg index ff2239dc8..e9e7f63d3 100644 --- a/icons/letter-k.svg +++ b/icons/letter-k.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/letter-q.svg b/icons/letter-q.svg index b576d34e2..8796b799e 100644 --- a/icons/letter-q.svg +++ b/icons/letter-q.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-r.svg b/icons/letter-r.svg index 824413189..f8b31cf13 100644 --- a/icons/letter-r.svg +++ b/icons/letter-r.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-spacing.svg b/icons/letter-spacing.svg index e6bf52343..e96d977e2 100644 --- a/icons/letter-spacing.svg +++ b/icons/letter-spacing.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/letter-t.svg b/icons/letter-t.svg index 97edbe7c8..576942e0a 100644 --- a/icons/letter-t.svg +++ b/icons/letter-t.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-x.svg b/icons/letter-x.svg index 87d0db1cd..b0a170ba9 100644 --- a/icons/letter-x.svg +++ b/icons/letter-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/letter-y.svg b/icons/letter-y.svg index 01944af59..bf24a63ca 100644 --- a/icons/letter-y.svg +++ b/icons/letter-y.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/license-off.svg b/icons/license-off.svg index 94c63073b..0345cead4 100644 --- a/icons/license-off.svg +++ b/icons/license-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/license.svg b/icons/license.svg index 0c35153c1..af9fa5d59 100644 --- a/icons/license.svg +++ b/icons/license.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/lifebuoy-off.svg b/icons/lifebuoy-off.svg index 1590d5f39..34c119a7d 100644 --- a/icons/lifebuoy-off.svg +++ b/icons/lifebuoy-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/lifebuoy.svg b/icons/lifebuoy.svg index a476a0296..72e6d1595 100644 --- a/icons/lifebuoy.svg +++ b/icons/lifebuoy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/line-dashed.svg b/icons/line-dashed.svg index 4d6c09050..e5052e4bf 100644 --- a/icons/line-dashed.svg +++ b/icons/line-dashed.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/line-dotted.svg b/icons/line-dotted.svg index db4f7b1c3..66fbcd533 100644 --- a/icons/line-dotted.svg +++ b/icons/line-dotted.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/line-height.svg b/icons/line-height.svg index de26c14e8..27dd09317 100644 --- a/icons/line-height.svg +++ b/icons/line-height.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/line.svg b/icons/line.svg index 5c90ff6a5..c90ae69da 100644 --- a/icons/line.svg +++ b/icons/line.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/link-off.svg b/icons/link-off.svg index d468b6c53..3be527a0a 100644 --- a/icons/link-off.svg +++ b/icons/link-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/link.svg b/icons/link.svg index f7f58e53e..03b0ebe22 100644 --- a/icons/link.svg +++ b/icons/link.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/list-check.svg b/icons/list-check.svg index 5a830f8d1..40cac3ac4 100644 --- a/icons/list-check.svg +++ b/icons/list-check.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/list-details.svg b/icons/list-details.svg index 391b065ff..e2e03948b 100644 --- a/icons/list-details.svg +++ b/icons/list-details.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/list-numbers.svg b/icons/list-numbers.svg index ac8f90035..3b281c7fe 100644 --- a/icons/list-numbers.svg +++ b/icons/list-numbers.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/list-search.svg b/icons/list-search.svg index 8f859ac31..64e82f64d 100644 --- a/icons/list-search.svg +++ b/icons/list-search.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/list.svg b/icons/list.svg index 9da4f572c..b7a050581 100644 --- a/icons/list.svg +++ b/icons/list.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/live-photo-off.svg b/icons/live-photo-off.svg index ff7949114..b647c8e2a 100644 --- a/icons/live-photo-off.svg +++ b/icons/live-photo-off.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/live-photo.svg b/icons/live-photo.svg index 1c1462cc4..1dd4466c9 100644 --- a/icons/live-photo.svg +++ b/icons/live-photo.svg @@ -1,21 +1,6 @@ - - - - - - - - - - - - - - - - + diff --git a/icons/live-view.svg b/icons/live-view.svg index b6d6e6868..eac6bbdb5 100644 --- a/icons/live-view.svg +++ b/icons/live-view.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/loader-3.svg b/icons/loader-3.svg index 1910c277d..e54631406 100644 --- a/icons/loader-3.svg +++ b/icons/loader-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/loader-quarter.svg b/icons/loader-quarter.svg index 913d5cc02..cdfaeb2b1 100644 --- a/icons/loader-quarter.svg +++ b/icons/loader-quarter.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/loader.svg b/icons/loader.svg index ea4478924..c5800cf26 100644 --- a/icons/loader.svg +++ b/icons/loader.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/location-broken.svg b/icons/location-broken.svg index a3342395d..c05d4ead7 100644 --- a/icons/location-broken.svg +++ b/icons/location-broken.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/location-filled.svg b/icons/location-filled.svg new file mode 100644 index 000000000..40608d9ee --- /dev/null +++ b/icons/location-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/location-off.svg b/icons/location-off.svg index a6e8640c8..81302593c 100644 --- a/icons/location-off.svg +++ b/icons/location-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/lock-access-off.svg b/icons/lock-access-off.svg index f23c10639..695ef444a 100644 --- a/icons/lock-access-off.svg +++ b/icons/lock-access-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/lock-access.svg b/icons/lock-access.svg index 06fb205af..52b180a3b 100644 --- a/icons/lock-access.svg +++ b/icons/lock-access.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/lock-off.svg b/icons/lock-off.svg index 54fcb1345..cd4da8f2a 100644 --- a/icons/lock-off.svg +++ b/icons/lock-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lock-open-off.svg b/icons/lock-open-off.svg index 4aeb0413c..42162522d 100644 --- a/icons/lock-open-off.svg +++ b/icons/lock-open-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/lock-open.svg b/icons/lock-open.svg index 2aa07d02e..efe813859 100644 --- a/icons/lock-open.svg +++ b/icons/lock-open.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/lock-square-rounded.svg b/icons/lock-square-rounded.svg index f1d947c43..6be9ecda3 100644 --- a/icons/lock-square-rounded.svg +++ b/icons/lock-square-rounded.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/lock-square.svg b/icons/lock-square.svg index e4a02c43e..c6c6143a0 100644 --- a/icons/lock-square.svg +++ b/icons/lock-square.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/lock.svg b/icons/lock.svg index 235f55ee2..a018cfb42 100644 --- a/icons/lock.svg +++ b/icons/lock.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/logic-and.svg b/icons/logic-and.svg index 1cede3fe4..8b4df760c 100644 --- a/icons/logic-and.svg +++ b/icons/logic-and.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/logic-buffer.svg b/icons/logic-buffer.svg index 80e089d0e..0d76503af 100644 --- a/icons/logic-buffer.svg +++ b/icons/logic-buffer.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/logic-nand.svg b/icons/logic-nand.svg index 13ba0ca0f..30bc854ff 100644 --- a/icons/logic-nand.svg +++ b/icons/logic-nand.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/logic-nor.svg b/icons/logic-nor.svg index 0f067ed5c..e18e6c38f 100644 --- a/icons/logic-nor.svg +++ b/icons/logic-nor.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/logic-not.svg b/icons/logic-not.svg index a7592e240..b4d0cac24 100644 --- a/icons/logic-not.svg +++ b/icons/logic-not.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/logic-or.svg b/icons/logic-or.svg index ab590d8a8..cd38f7151 100644 --- a/icons/logic-or.svg +++ b/icons/logic-or.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/logic-xnor.svg b/icons/logic-xnor.svg index 1e767fb8e..65db9539d 100644 --- a/icons/logic-xnor.svg +++ b/icons/logic-xnor.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/logic-xor.svg b/icons/logic-xor.svg index a1620c253..dd7603141 100644 --- a/icons/logic-xor.svg +++ b/icons/logic-xor.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/login.svg b/icons/login.svg index 533bd30b1..03d029818 100644 --- a/icons/login.svg +++ b/icons/login.svg @@ -1,7 +1,6 @@ diff --git a/icons/logout.svg b/icons/logout.svg index 2bf8093ea..e40404fdc 100644 --- a/icons/logout.svg +++ b/icons/logout.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/lollipop-off.svg b/icons/lollipop-off.svg index 41efa8e10..701f33a71 100644 --- a/icons/lollipop-off.svg +++ b/icons/lollipop-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/lollipop.svg b/icons/lollipop.svg index 5f913c145..dc24c7bc7 100644 --- a/icons/lollipop.svg +++ b/icons/lollipop.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/luggage-off.svg b/icons/luggage-off.svg index 2aa51e495..cd02d1303 100644 --- a/icons/luggage-off.svg +++ b/icons/luggage-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/luggage.svg b/icons/luggage.svg index d0fe27bb6..e3f03c788 100644 --- a/icons/luggage.svg +++ b/icons/luggage.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/lungs-off.svg b/icons/lungs-off.svg index 7b78a2dad..a2ba7ccf7 100644 --- a/icons/lungs-off.svg +++ b/icons/lungs-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/lungs.svg b/icons/lungs.svg index 473c4d342..fe4617f68 100644 --- a/icons/lungs.svg +++ b/icons/lungs.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/macro-off.svg b/icons/macro-off.svg index 5f0799c33..c17dc895d 100644 --- a/icons/macro-off.svg +++ b/icons/macro-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/macro.svg b/icons/macro.svg index b2d700d8e..e3dc8f2b9 100644 --- a/icons/macro.svg +++ b/icons/macro.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/magnet-off.svg b/icons/magnet-off.svg index 78fdd3c95..20984b850 100644 --- a/icons/magnet-off.svg +++ b/icons/magnet-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/magnet.svg b/icons/magnet.svg index 5a2aa339b..2b79e12fb 100644 --- a/icons/magnet.svg +++ b/icons/magnet.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mail-fast.svg b/icons/mail-fast.svg index a08646a89..80b21ce5e 100644 --- a/icons/mail-fast.svg +++ b/icons/mail-fast.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mail-forward.svg b/icons/mail-forward.svg index d0222340e..48983423f 100644 --- a/icons/mail-forward.svg +++ b/icons/mail-forward.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mail-off.svg b/icons/mail-off.svg index 1ccfdaf9a..8d49d7ce0 100644 --- a/icons/mail-off.svg +++ b/icons/mail-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mail-opened.svg b/icons/mail-opened.svg index 2e60b14de..a646b55e0 100644 --- a/icons/mail-opened.svg +++ b/icons/mail-opened.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mail.svg b/icons/mail.svg index b7c094ae2..6a5df0261 100644 --- a/icons/mail.svg +++ b/icons/mail.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/mailbox-off.svg b/icons/mailbox-off.svg index ed5d0d0e2..faf7e625a 100644 --- a/icons/mailbox-off.svg +++ b/icons/mailbox-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mailbox.svg b/icons/mailbox.svg index 4de0d25b5..4a2ad1d5e 100644 --- a/icons/mailbox.svg +++ b/icons/mailbox.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/man.svg b/icons/man.svg index b365a3cb6..4210de39c 100644 --- a/icons/man.svg +++ b/icons/man.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/manual-gearbox.svg b/icons/manual-gearbox.svg index 12d32ffa1..7358c7657 100644 --- a/icons/manual-gearbox.svg +++ b/icons/manual-gearbox.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/map-2.svg b/icons/map-2.svg index 9c9762e1a..874dabf0a 100644 --- a/icons/map-2.svg +++ b/icons/map-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/map-off.svg b/icons/map-off.svg index a96d0848e..2ab9293a8 100644 --- a/icons/map-off.svg +++ b/icons/map-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/map-pin-filled.svg b/icons/map-pin-filled.svg new file mode 100644 index 000000000..c22c7aabb --- /dev/null +++ b/icons/map-pin-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/map-pin-off.svg b/icons/map-pin-off.svg index 46278fb90..7363da79d 100644 --- a/icons/map-pin-off.svg +++ b/icons/map-pin-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/map-pin.svg b/icons/map-pin.svg index 921504971..bfea03513 100644 --- a/icons/map-pin.svg +++ b/icons/map-pin.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/map-pins.svg b/icons/map-pins.svg index 724fd6bad..c02b77c52 100644 --- a/icons/map-pins.svg +++ b/icons/map-pins.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/map-search.svg b/icons/map-search.svg index c212fb194..0bed3eb0a 100644 --- a/icons/map-search.svg +++ b/icons/map-search.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/map.svg b/icons/map.svg index e0a1d8f22..d0a80cddd 100644 --- a/icons/map.svg +++ b/icons/map.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/markdown-off.svg b/icons/markdown-off.svg index 6a3a984f0..acb3a2332 100644 --- a/icons/markdown-off.svg +++ b/icons/markdown-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/markdown.svg b/icons/markdown.svg index f11cba316..65814f3eb 100644 --- a/icons/markdown.svg +++ b/icons/markdown.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/marquee-off.svg b/icons/marquee-off.svg index 184371bef..600fa656d 100644 --- a/icons/marquee-off.svg +++ b/icons/marquee-off.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/mars.svg b/icons/mars.svg index 72706aa7e..67f79b69d 100644 --- a/icons/mars.svg +++ b/icons/mars.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mask-off.svg b/icons/mask-off.svg index 696dc6b14..856cbd869 100644 --- a/icons/mask-off.svg +++ b/icons/mask-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mask.svg b/icons/mask.svg index 895065f8a..0c49d6077 100644 --- a/icons/mask.svg +++ b/icons/mask.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/masks-theater-off.svg b/icons/masks-theater-off.svg index c1871c9ef..02f4b390e 100644 --- a/icons/masks-theater-off.svg +++ b/icons/masks-theater-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/masks-theater.svg b/icons/masks-theater.svg index c3a64d766..4396b1935 100644 --- a/icons/masks-theater.svg +++ b/icons/masks-theater.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/massage.svg b/icons/massage.svg index 4ebf92674..34f8c62ef 100644 --- a/icons/massage.svg +++ b/icons/massage.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/matchstick.svg b/icons/matchstick.svg index 24d903234..502e442c2 100644 --- a/icons/matchstick.svg +++ b/icons/matchstick.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-1-divide-2.svg b/icons/math-1-divide-2.svg index cbf37277b..255ca4fa8 100644 --- a/icons/math-1-divide-2.svg +++ b/icons/math-1-divide-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-1-divide-3.svg b/icons/math-1-divide-3.svg index 77e11667a..5cb904ef1 100644 --- a/icons/math-1-divide-3.svg +++ b/icons/math-1-divide-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-avg.svg b/icons/math-avg.svg index 71e8dcde9..251e3b21e 100644 --- a/icons/math-avg.svg +++ b/icons/math-avg.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-equal-greater.svg b/icons/math-equal-greater.svg index 8b2a0d20b..9d28f0f86 100644 --- a/icons/math-equal-greater.svg +++ b/icons/math-equal-greater.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-equal-lower.svg b/icons/math-equal-lower.svg index c8d7ff92d..e301300a4 100644 --- a/icons/math-equal-lower.svg +++ b/icons/math-equal-lower.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-function-off.svg b/icons/math-function-off.svg index 5aecc127e..dc2094ca1 100644 --- a/icons/math-function-off.svg +++ b/icons/math-function-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-function-y.svg b/icons/math-function-y.svg index 68258f8a6..04184f0d4 100644 --- a/icons/math-function-y.svg +++ b/icons/math-function-y.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/math-function.svg b/icons/math-function.svg index 36f50829d..e1c932c72 100644 --- a/icons/math-function.svg +++ b/icons/math-function.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/math-integral-x.svg b/icons/math-integral-x.svg index 85152d623..cfc05f1c1 100644 --- a/icons/math-integral-x.svg +++ b/icons/math-integral-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-integrals.svg b/icons/math-integrals.svg index 855e3f367..dec3da243 100644 --- a/icons/math-integrals.svg +++ b/icons/math-integrals.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-max.svg b/icons/math-max.svg index 0dc93c855..a2353dd46 100644 --- a/icons/math-max.svg +++ b/icons/math-max.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-min.svg b/icons/math-min.svg index 7ebb76a45..cfc186df0 100644 --- a/icons/math-min.svg +++ b/icons/math-min.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-off.svg b/icons/math-off.svg index f69c47a7b..474648ef9 100644 --- a/icons/math-off.svg +++ b/icons/math-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-pi-divide-2.svg b/icons/math-pi-divide-2.svg index a1fa93e64..cd02cf4c1 100644 --- a/icons/math-pi-divide-2.svg +++ b/icons/math-pi-divide-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-pi.svg b/icons/math-pi.svg index 7d304d31e..02dcd63c3 100644 --- a/icons/math-pi.svg +++ b/icons/math-pi.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/math-symbols.svg b/icons/math-symbols.svg index 41a2a394d..41c422891 100644 --- a/icons/math-symbols.svg +++ b/icons/math-symbols.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/math-x-divide-2.svg b/icons/math-x-divide-2.svg index 0e7557363..dc5017acf 100644 --- a/icons/math-x-divide-2.svg +++ b/icons/math-x-divide-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/math-x-divide-y-2.svg b/icons/math-x-divide-y-2.svg index fc0418691..6636d4e64 100644 --- a/icons/math-x-divide-y-2.svg +++ b/icons/math-x-divide-y-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-x-divide-y.svg b/icons/math-x-divide-y.svg index efe68a5ec..0de2b62f6 100644 --- a/icons/math-x-divide-y.svg +++ b/icons/math-x-divide-y.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-x-minus-x.svg b/icons/math-x-minus-x.svg index dfe42cb8e..301ba8b27 100644 --- a/icons/math-x-minus-x.svg +++ b/icons/math-x-minus-x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-x-minus-y.svg b/icons/math-x-minus-y.svg index be8171911..56b6aeacc 100644 --- a/icons/math-x-minus-y.svg +++ b/icons/math-x-minus-y.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-x-plus-x.svg b/icons/math-x-plus-x.svg index f7e0919dd..fbd3445dc 100644 --- a/icons/math-x-plus-x.svg +++ b/icons/math-x-plus-x.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/math-x-plus-y.svg b/icons/math-x-plus-y.svg index 0a4ba8b61..0de3d0dc7 100644 --- a/icons/math-x-plus-y.svg +++ b/icons/math-x-plus-y.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/math-xy.svg b/icons/math-xy.svg index 3963c5bc8..e81ef7f4a 100644 --- a/icons/math-xy.svg +++ b/icons/math-xy.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/math-y-minus-y.svg b/icons/math-y-minus-y.svg index 1c59145c2..c0cab50e0 100644 --- a/icons/math-y-minus-y.svg +++ b/icons/math-y-minus-y.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/math-y-plus-y.svg b/icons/math-y-plus-y.svg index fb6f21f07..0bf1a5259 100644 --- a/icons/math-y-plus-y.svg +++ b/icons/math-y-plus-y.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/math.svg b/icons/math.svg index 0527d5a1e..77a43d613 100644 --- a/icons/math.svg +++ b/icons/math.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/maximize-off.svg b/icons/maximize-off.svg index 99e91b86b..9855da35e 100644 --- a/icons/maximize-off.svg +++ b/icons/maximize-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/maximize.svg b/icons/maximize.svg index e1efcddca..f38ce5935 100644 --- a/icons/maximize.svg +++ b/icons/maximize.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/meat-off.svg b/icons/meat-off.svg index 4401e004c..fa08a2095 100644 --- a/icons/meat-off.svg +++ b/icons/meat-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/meat.svg b/icons/meat.svg index 11a71e937..99324b460 100644 --- a/icons/meat.svg +++ b/icons/meat.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/medal-2.svg b/icons/medal-2.svg index b2e716d61..6ad30bbd6 100644 --- a/icons/medal-2.svg +++ b/icons/medal-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/medal.svg b/icons/medal.svg index 0a8224f1f..6cc3b3967 100644 --- a/icons/medal.svg +++ b/icons/medal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/medical-cross-filled.svg b/icons/medical-cross-filled.svg new file mode 100644 index 000000000..58788abb3 --- /dev/null +++ b/icons/medical-cross-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/medical-cross-off.svg b/icons/medical-cross-off.svg index 2dc45f1b7..e7bce5426 100644 --- a/icons/medical-cross-off.svg +++ b/icons/medical-cross-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/medicine-syrup.svg b/icons/medicine-syrup.svg index 25737a5e3..e2b7a5f55 100644 --- a/icons/medicine-syrup.svg +++ b/icons/medicine-syrup.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/menorah.svg b/icons/menorah.svg index a40494ef8..caba61894 100644 --- a/icons/menorah.svg +++ b/icons/menorah.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/menu-2.svg b/icons/menu-2.svg index 084db6772..aac6b3756 100644 --- a/icons/menu-2.svg +++ b/icons/menu-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/menu-order.svg b/icons/menu-order.svg index ec9d44b29..e2bed8923 100644 --- a/icons/menu-order.svg +++ b/icons/menu-order.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/menu.svg b/icons/menu.svg index 6eaaea735..b71ff2871 100644 --- a/icons/menu.svg +++ b/icons/menu.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/message-2-code.svg b/icons/message-2-code.svg index db3637818..203a65f77 100644 --- a/icons/message-2-code.svg +++ b/icons/message-2-code.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-2-off.svg b/icons/message-2-off.svg index c2cc39ce7..de5910805 100644 --- a/icons/message-2-off.svg +++ b/icons/message-2-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/message-2-share.svg b/icons/message-2-share.svg index 9963bce71..b2e8f98ae 100644 --- a/icons/message-2-share.svg +++ b/icons/message-2-share.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-2.svg b/icons/message-2.svg index 59944fa6d..46c0b09d0 100644 --- a/icons/message-2.svg +++ b/icons/message-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-chatbot.svg b/icons/message-chatbot.svg index 30cd46a2f..7f55ee546 100644 --- a/icons/message-chatbot.svg +++ b/icons/message-chatbot.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/message-circle-2-filled.svg b/icons/message-circle-2-filled.svg new file mode 100644 index 000000000..5e3420bef --- /dev/null +++ b/icons/message-circle-2-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/message-circle-off.svg b/icons/message-circle-off.svg index 5c4445671..8a806693d 100644 --- a/icons/message-circle-off.svg +++ b/icons/message-circle-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/message-circle.svg b/icons/message-circle.svg index 8e4823574..acdcd78c9 100644 --- a/icons/message-circle.svg +++ b/icons/message-circle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/message-code.svg b/icons/message-code.svg index 576306025..b5d2f55ba 100644 --- a/icons/message-code.svg +++ b/icons/message-code.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-dots.svg b/icons/message-dots.svg index b7bb2c9da..6da749cb2 100644 --- a/icons/message-dots.svg +++ b/icons/message-dots.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/message-forward.svg b/icons/message-forward.svg index 0620bb11b..d27136f57 100644 --- a/icons/message-forward.svg +++ b/icons/message-forward.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-language.svg b/icons/message-language.svg index d035b85c9..81cb5ea58 100644 --- a/icons/message-language.svg +++ b/icons/message-language.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-off.svg b/icons/message-off.svg index eaaccb3cb..4e9bd29e2 100644 --- a/icons/message-off.svg +++ b/icons/message-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/message-plus.svg b/icons/message-plus.svg index f80ae4b78..8e845fd3d 100644 --- a/icons/message-plus.svg +++ b/icons/message-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-report.svg b/icons/message-report.svg index 953046dd0..b7edbe680 100644 --- a/icons/message-report.svg +++ b/icons/message-report.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message-share.svg b/icons/message-share.svg index e5b758c5d..6139cd4d0 100644 --- a/icons/message-share.svg +++ b/icons/message-share.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/message.svg b/icons/message.svg index 5b7ef3d43..5153c5802 100644 --- a/icons/message.svg +++ b/icons/message.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/messages-off.svg b/icons/messages-off.svg index 042302d97..66b9b0e32 100644 --- a/icons/messages-off.svg +++ b/icons/messages-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/messages.svg b/icons/messages.svg index f391ad39d..251de2ecd 100644 --- a/icons/messages.svg +++ b/icons/messages.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/meteor-off.svg b/icons/meteor-off.svg index b66812e98..b60cd17ed 100644 --- a/icons/meteor-off.svg +++ b/icons/meteor-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/meteor.svg b/icons/meteor.svg index 779a1bbd2..1a7345123 100644 --- a/icons/meteor.svg +++ b/icons/meteor.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/mickey-filled.svg b/icons/mickey-filled.svg new file mode 100644 index 000000000..d3243ef60 --- /dev/null +++ b/icons/mickey-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mickey.svg b/icons/mickey.svg index 0d34a5343..cc7309949 100644 --- a/icons/mickey.svg +++ b/icons/mickey.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/microphone-2-off.svg b/icons/microphone-2-off.svg index eb94e5206..5c728aa32 100644 --- a/icons/microphone-2-off.svg +++ b/icons/microphone-2-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/microphone-2.svg b/icons/microphone-2.svg index 1e87d9142..329a91379 100644 --- a/icons/microphone-2.svg +++ b/icons/microphone-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/microphone-off.svg b/icons/microphone-off.svg index b1ec15b7d..ccd10e0fb 100644 --- a/icons/microphone-off.svg +++ b/icons/microphone-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/microphone.svg b/icons/microphone.svg index 30e963762..9542faaa7 100644 --- a/icons/microphone.svg +++ b/icons/microphone.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/microscope-off.svg b/icons/microscope-off.svg index 8222c1641..c30f1bb78 100644 --- a/icons/microscope-off.svg +++ b/icons/microscope-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/microscope.svg b/icons/microscope.svg index 2c01f7433..d6d0e97b8 100644 --- a/icons/microscope.svg +++ b/icons/microscope.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/microwave-off.svg b/icons/microwave-off.svg index 4e94cc01d..e8d197173 100644 --- a/icons/microwave-off.svg +++ b/icons/microwave-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/microwave.svg b/icons/microwave.svg index fa332e558..e8734d5dd 100644 --- a/icons/microwave.svg +++ b/icons/microwave.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/military-award.svg b/icons/military-award.svg index 1455d7e52..13682a3a5 100644 --- a/icons/military-award.svg +++ b/icons/military-award.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/military-rank.svg b/icons/military-rank.svg index b142acac2..fd59842ca 100644 --- a/icons/military-rank.svg +++ b/icons/military-rank.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/milk-off.svg b/icons/milk-off.svg index 9dc4f5d0d..26735fe81 100644 --- a/icons/milk-off.svg +++ b/icons/milk-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/milk.svg b/icons/milk.svg index 91a711eaf..c232f8d4b 100644 --- a/icons/milk.svg +++ b/icons/milk.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/milkshake.svg b/icons/milkshake.svg index c826ba68f..6400e3615 100644 --- a/icons/milkshake.svg +++ b/icons/milkshake.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/minimize.svg b/icons/minimize.svg index dd138ae73..ebc3bd69e 100644 --- a/icons/minimize.svg +++ b/icons/minimize.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/minus.svg b/icons/minus.svg index 8f675679f..c532b6196 100644 --- a/icons/minus.svg +++ b/icons/minus.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/mist-off.svg b/icons/mist-off.svg index ac9d20b2f..925590c01 100644 --- a/icons/mist-off.svg +++ b/icons/mist-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/mist.svg b/icons/mist.svg index 2c924d6bd..2351f1113 100644 --- a/icons/mist.svg +++ b/icons/mist.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/moneybag.svg b/icons/moneybag.svg index 1efdd0c55..f83aac50d 100644 --- a/icons/moneybag.svg +++ b/icons/moneybag.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/mood-angry.svg b/icons/mood-angry.svg index 488779783..e376ab67a 100644 --- a/icons/mood-angry.svg +++ b/icons/mood-angry.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-annoyed-2.svg b/icons/mood-annoyed-2.svg index f9acc5e1e..5d9b8490b 100644 --- a/icons/mood-annoyed-2.svg +++ b/icons/mood-annoyed-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-annoyed.svg b/icons/mood-annoyed.svg index 5d8f1b0bc..930c2b47e 100644 --- a/icons/mood-annoyed.svg +++ b/icons/mood-annoyed.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-boy.svg b/icons/mood-boy.svg index b1dfd2026..bb39cc6a9 100644 --- a/icons/mood-boy.svg +++ b/icons/mood-boy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/mood-confuzed.svg b/icons/mood-confuzed.svg index 9e4d66d3f..45fd2b317 100644 --- a/icons/mood-confuzed.svg +++ b/icons/mood-confuzed.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-crazy-happy.svg b/icons/mood-crazy-happy.svg index 8e38b0821..3765aae4c 100644 --- a/icons/mood-crazy-happy.svg +++ b/icons/mood-crazy-happy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/mood-cry.svg b/icons/mood-cry.svg index cb881130a..e38d1c6b2 100644 --- a/icons/mood-cry.svg +++ b/icons/mood-cry.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/mood-empty.svg b/icons/mood-empty.svg index f43078232..5c6126b41 100644 --- a/icons/mood-empty.svg +++ b/icons/mood-empty.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-happy.svg b/icons/mood-happy.svg index fa1537718..3a9910ce4 100644 --- a/icons/mood-happy.svg +++ b/icons/mood-happy.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-kid.svg b/icons/mood-kid.svg index b8b3c62be..dc163a0f9 100644 --- a/icons/mood-kid.svg +++ b/icons/mood-kid.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/mood-look-left.svg b/icons/mood-look-left.svg index 9e766da77..ba22d6ca4 100644 --- a/icons/mood-look-left.svg +++ b/icons/mood-look-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mood-look-right.svg b/icons/mood-look-right.svg index ffd88871f..4ef9e7f4b 100644 --- a/icons/mood-look-right.svg +++ b/icons/mood-look-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mood-nerd.svg b/icons/mood-nerd.svg index c6c5091d9..c3ce86442 100644 --- a/icons/mood-nerd.svg +++ b/icons/mood-nerd.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/mood-nervous.svg b/icons/mood-nervous.svg index 698fe02a7..ce007d4e8 100644 --- a/icons/mood-nervous.svg +++ b/icons/mood-nervous.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-neutral.svg b/icons/mood-neutral.svg index c3fbc2072..89aeced65 100644 --- a/icons/mood-neutral.svg +++ b/icons/mood-neutral.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mood-off.svg b/icons/mood-off.svg index b309fa8a5..a52b64e34 100644 --- a/icons/mood-off.svg +++ b/icons/mood-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/mood-sad-2.svg b/icons/mood-sad-2.svg index 95ea3830a..0aaa49c60 100644 --- a/icons/mood-sad-2.svg +++ b/icons/mood-sad-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-sad-dizzy.svg b/icons/mood-sad-dizzy.svg index 960a066cb..af30706be 100644 --- a/icons/mood-sad-dizzy.svg +++ b/icons/mood-sad-dizzy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/mood-sad-squint.svg b/icons/mood-sad-squint.svg index d0918ae9e..5e25a73fc 100644 --- a/icons/mood-sad-squint.svg +++ b/icons/mood-sad-squint.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-sad.svg b/icons/mood-sad.svg index fbdaf2b68..27f1ab1bf 100644 --- a/icons/mood-sad.svg +++ b/icons/mood-sad.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-sick.svg b/icons/mood-sick.svg index 527a225d2..e49de7ef3 100644 --- a/icons/mood-sick.svg +++ b/icons/mood-sick.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-silence.svg b/icons/mood-silence.svg index 3d1b17420..7beda5ae5 100644 --- a/icons/mood-silence.svg +++ b/icons/mood-silence.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/mood-sing.svg b/icons/mood-sing.svg index 1ec0662ef..3d622634f 100644 --- a/icons/mood-sing.svg +++ b/icons/mood-sing.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-smile-beam.svg b/icons/mood-smile-beam.svg index 848612225..4a25b24c7 100644 --- a/icons/mood-smile-beam.svg +++ b/icons/mood-smile-beam.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-smile-dizzy.svg b/icons/mood-smile-dizzy.svg index 4670455d9..8810837f2 100644 --- a/icons/mood-smile-dizzy.svg +++ b/icons/mood-smile-dizzy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/mood-smile.svg b/icons/mood-smile.svg index 62c8cd13d..2c8e46ec1 100644 --- a/icons/mood-smile.svg +++ b/icons/mood-smile.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-suprised.svg b/icons/mood-suprised.svg index a2e7ffe9b..c05a80435 100644 --- a/icons/mood-suprised.svg +++ b/icons/mood-suprised.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-tongue-wink-2.svg b/icons/mood-tongue-wink-2.svg index c786c6e91..039ba6bf7 100644 --- a/icons/mood-tongue-wink-2.svg +++ b/icons/mood-tongue-wink-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/mood-tongue-wink.svg b/icons/mood-tongue-wink.svg index 325320e7f..0d7701c2c 100644 --- a/icons/mood-tongue-wink.svg +++ b/icons/mood-tongue-wink.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/mood-tongue.svg b/icons/mood-tongue.svg index 6d434d54d..aa187c245 100644 --- a/icons/mood-tongue.svg +++ b/icons/mood-tongue.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-unamused.svg b/icons/mood-unamused.svg index fd58bb352..0ba688ba5 100644 --- a/icons/mood-unamused.svg +++ b/icons/mood-unamused.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-wink-2.svg b/icons/mood-wink-2.svg index 5e58545cb..6421e55c6 100644 --- a/icons/mood-wink-2.svg +++ b/icons/mood-wink-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-wink.svg b/icons/mood-wink.svg index f42e01ed5..03625d2cd 100644 --- a/icons/mood-wink.svg +++ b/icons/mood-wink.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-wrrr.svg b/icons/mood-wrrr.svg index cb12536b9..298a3a575 100644 --- a/icons/mood-wrrr.svg +++ b/icons/mood-wrrr.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mood-xd.svg b/icons/mood-xd.svg index 0e203ffec..b1730075d 100644 --- a/icons/mood-xd.svg +++ b/icons/mood-xd.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/moon-2.svg b/icons/moon-2.svg index eb0398c75..175a5cef0 100644 --- a/icons/moon-2.svg +++ b/icons/moon-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/moon-filled.svg b/icons/moon-filled.svg new file mode 100644 index 000000000..437cf72a1 --- /dev/null +++ b/icons/moon-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/moon-off.svg b/icons/moon-off.svg index 54e85597d..4e9ef1362 100644 --- a/icons/moon-off.svg +++ b/icons/moon-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/moon-stars.svg b/icons/moon-stars.svg index 6012408cd..89d10a010 100644 --- a/icons/moon-stars.svg +++ b/icons/moon-stars.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/moped.svg b/icons/moped.svg index dbf17e984..d75dbc3ec 100644 --- a/icons/moped.svg +++ b/icons/moped.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/motorbike.svg b/icons/motorbike.svg index 1a8c6c934..cd3c595da 100644 --- a/icons/motorbike.svg +++ b/icons/motorbike.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/mountain-off.svg b/icons/mountain-off.svg index 3a66e2f20..b19a59759 100644 --- a/icons/mountain-off.svg +++ b/icons/mountain-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mountain.svg b/icons/mountain.svg index 7ceb540b2..3d5fb7424 100644 --- a/icons/mountain.svg +++ b/icons/mountain.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/mouse-2.svg b/icons/mouse-2.svg index 4c599e943..45608d622 100644 --- a/icons/mouse-2.svg +++ b/icons/mouse-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mouse-off.svg b/icons/mouse-off.svg index 278448a52..769a6868e 100644 --- a/icons/mouse-off.svg +++ b/icons/mouse-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mouse.svg b/icons/mouse.svg index e5b832db7..47c1b9f1b 100644 --- a/icons/mouse.svg +++ b/icons/mouse.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/moustache.svg b/icons/moustache.svg index a9b4777a5..fb150273b 100644 --- a/icons/moustache.svg +++ b/icons/moustache.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/movie-off.svg b/icons/movie-off.svg index 7ca07dd1d..9e39f6ddf 100644 --- a/icons/movie-off.svg +++ b/icons/movie-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/movie.svg b/icons/movie.svg index 29fce7699..9d3739a4a 100644 --- a/icons/movie.svg +++ b/icons/movie.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/mug-off.svg b/icons/mug-off.svg index 05392ec7e..095bb749f 100644 --- a/icons/mug-off.svg +++ b/icons/mug-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mug.svg b/icons/mug.svg index 35718be63..c13fe1d6e 100644 --- a/icons/mug.svg +++ b/icons/mug.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/multiplier-0-5x.svg b/icons/multiplier-0-5x.svg index a9d601adc..49daa0f14 100644 --- a/icons/multiplier-0-5x.svg +++ b/icons/multiplier-0-5x.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/multiplier-1-5x.svg b/icons/multiplier-1-5x.svg index 5664efe48..5dde40257 100644 --- a/icons/multiplier-1-5x.svg +++ b/icons/multiplier-1-5x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/multiplier-1x.svg b/icons/multiplier-1x.svg index 9124f0084..5127e040b 100644 --- a/icons/multiplier-1x.svg +++ b/icons/multiplier-1x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/multiplier-2x.svg b/icons/multiplier-2x.svg index b4d8eb408..00bed4bb0 100644 --- a/icons/multiplier-2x.svg +++ b/icons/multiplier-2x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mushroom-off.svg b/icons/mushroom-off.svg index a753399b3..2ec3ba303 100644 --- a/icons/mushroom-off.svg +++ b/icons/mushroom-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/mushroom.svg b/icons/mushroom.svg index 8c339dbd3..d1fc1f2d2 100644 --- a/icons/mushroom.svg +++ b/icons/mushroom.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/music-off.svg b/icons/music-off.svg index 06afeeb29..7d645ce91 100644 --- a/icons/music-off.svg +++ b/icons/music-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/music.svg b/icons/music.svg index 08f15bf9f..3b1e2c1c2 100644 --- a/icons/music.svg +++ b/icons/music.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/navigation-filled.svg b/icons/navigation-filled.svg new file mode 100644 index 000000000..351cabd8a --- /dev/null +++ b/icons/navigation-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/navigation-off.svg b/icons/navigation-off.svg index 154721e19..d2cd4939b 100644 --- a/icons/navigation-off.svg +++ b/icons/navigation-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/needle-thread.svg b/icons/needle-thread.svg index 95e9dbe6c..8ba912daf 100644 --- a/icons/needle-thread.svg +++ b/icons/needle-thread.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/needle.svg b/icons/needle.svg index 7e710a4bf..5558793db 100644 --- a/icons/needle.svg +++ b/icons/needle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/network-off.svg b/icons/network-off.svg index f1c00af9d..b23e9cd12 100644 --- a/icons/network-off.svg +++ b/icons/network-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/network.svg b/icons/network.svg index 1b1aa3154..21963a4f0 100644 --- a/icons/network.svg +++ b/icons/network.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/new-section.svg b/icons/new-section.svg index d4c34887d..e7657488f 100644 --- a/icons/new-section.svg +++ b/icons/new-section.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/news-off.svg b/icons/news-off.svg index 71df326f9..9bdf4fb63 100644 --- a/icons/news-off.svg +++ b/icons/news-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/news.svg b/icons/news.svg index e49cc236c..7df09f757 100644 --- a/icons/news.svg +++ b/icons/news.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/nfc-off.svg b/icons/nfc-off.svg index af702766b..8f1bd9cc4 100644 --- a/icons/nfc-off.svg +++ b/icons/nfc-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/nfc.svg b/icons/nfc.svg index d7a3cf4e3..e58612c25 100644 --- a/icons/nfc.svg +++ b/icons/nfc.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/no-copyright.svg b/icons/no-copyright.svg index 3a71cc433..7bd835a59 100644 --- a/icons/no-copyright.svg +++ b/icons/no-copyright.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/no-creative-commons.svg b/icons/no-creative-commons.svg index 01b51843b..f13b70571 100644 --- a/icons/no-creative-commons.svg +++ b/icons/no-creative-commons.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/no-derivatives.svg b/icons/no-derivatives.svg index 76eb39726..e0e674488 100644 --- a/icons/no-derivatives.svg +++ b/icons/no-derivatives.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/north-star.svg b/icons/north-star.svg index a6b20600a..f7a184501 100644 --- a/icons/north-star.svg +++ b/icons/north-star.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/note-off.svg b/icons/note-off.svg index 2c110aa6c..37661d81b 100644 --- a/icons/note-off.svg +++ b/icons/note-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/note.svg b/icons/note.svg index f2e452462..011696595 100644 --- a/icons/note.svg +++ b/icons/note.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/notebook-off.svg b/icons/notebook-off.svg index c4ce27972..a8fd62ad3 100644 --- a/icons/notebook-off.svg +++ b/icons/notebook-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/notebook.svg b/icons/notebook.svg index cfdf7f170..88ef0da3a 100644 --- a/icons/notebook.svg +++ b/icons/notebook.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/notes-off.svg b/icons/notes-off.svg index e239ec0e5..51dcc44e8 100644 --- a/icons/notes-off.svg +++ b/icons/notes-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/notes.svg b/icons/notes.svg index 5b65dffa2..b3118e781 100644 --- a/icons/notes.svg +++ b/icons/notes.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/notification-off.svg b/icons/notification-off.svg index 417a19216..8ae793ed0 100644 --- a/icons/notification-off.svg +++ b/icons/notification-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/notification.svg b/icons/notification.svg index 74bbd6354..f127fa554 100644 --- a/icons/notification.svg +++ b/icons/notification.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number-0.svg b/icons/number-0.svg index c0e3432b2..a60576659 100644 --- a/icons/number-0.svg +++ b/icons/number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number-3.svg b/icons/number-3.svg index 5ea8bce7a..143b0a525 100644 --- a/icons/number-3.svg +++ b/icons/number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number-6.svg b/icons/number-6.svg index 34a95a868..8da7618fd 100644 --- a/icons/number-6.svg +++ b/icons/number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number-8.svg b/icons/number-8.svg index 23290db72..5002bfca0 100644 --- a/icons/number-8.svg +++ b/icons/number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number-9.svg b/icons/number-9.svg index 37ed08a46..a964509ff 100644 --- a/icons/number-9.svg +++ b/icons/number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/number.svg b/icons/number.svg index f26e2a956..0010fae97 100644 --- a/icons/number.svg +++ b/icons/number.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/numbers.svg b/icons/numbers.svg index cf04cb518..560154506 100644 --- a/icons/numbers.svg +++ b/icons/numbers.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/nurse.svg b/icons/nurse.svg index dc762fb75..fc1578460 100644 --- a/icons/nurse.svg +++ b/icons/nurse.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/octagon-filled.svg b/icons/octagon-filled.svg new file mode 100644 index 000000000..992e670f3 --- /dev/null +++ b/icons/octagon-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/octagon-off.svg b/icons/octagon-off.svg index 764a634c9..d4cf57d3c 100644 --- a/icons/octagon-off.svg +++ b/icons/octagon-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/old.svg b/icons/old.svg index df35bbb9f..129806c0e 100644 --- a/icons/old.svg +++ b/icons/old.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/olympics-off.svg b/icons/olympics-off.svg index 519b7c911..168918737 100644 --- a/icons/olympics-off.svg +++ b/icons/olympics-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/olympics.svg b/icons/olympics.svg index 1c61d888f..78af1e164 100644 --- a/icons/olympics.svg +++ b/icons/olympics.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/om.svg b/icons/om.svg index 88bead6f4..9fae2f1c0 100644 --- a/icons/om.svg +++ b/icons/om.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/outbound.svg b/icons/outbound.svg index 3d8daab7b..7997c31f4 100644 --- a/icons/outbound.svg +++ b/icons/outbound.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/outlet.svg b/icons/outlet.svg index 942b7334e..7e19dfbe4 100644 --- a/icons/outlet.svg +++ b/icons/outlet.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/oval-filled.svg b/icons/oval-filled.svg new file mode 100644 index 000000000..56337a99a --- /dev/null +++ b/icons/oval-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/oval-vertical-filled.svg b/icons/oval-vertical-filled.svg new file mode 100644 index 000000000..f168277f0 --- /dev/null +++ b/icons/oval-vertical-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/oval.svg b/icons/oval.svg index a073e1945..8478d1a1f 100644 --- a/icons/oval.svg +++ b/icons/oval.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/overline.svg b/icons/overline.svg index fd90d2747..f80b52e46 100644 --- a/icons/overline.svg +++ b/icons/overline.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/package-off.svg b/icons/package-off.svg index 78688e9f9..939c9d01a 100644 --- a/icons/package-off.svg +++ b/icons/package-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/package.svg b/icons/package.svg index 693c8a12a..e73accd91 100644 --- a/icons/package.svg +++ b/icons/package.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/packages.svg b/icons/packages.svg index fb882cff0..8ecb5b4f3 100644 --- a/icons/packages.svg +++ b/icons/packages.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/packge-export.svg b/icons/packge-export.svg index cd96c36de..8d479e49d 100644 --- a/icons/packge-export.svg +++ b/icons/packge-export.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/packge-import.svg b/icons/packge-import.svg index 98d9c0633..9a9594082 100644 --- a/icons/packge-import.svg +++ b/icons/packge-import.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/pacman.svg b/icons/pacman.svg index a99222dd8..f4bc6de45 100644 --- a/icons/pacman.svg +++ b/icons/pacman.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/page-break.svg b/icons/page-break.svg index a44bf5f73..f0dbd705c 100644 --- a/icons/page-break.svg +++ b/icons/page-break.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/paint-off.svg b/icons/paint-off.svg index 2be815b8c..070eca8f9 100644 --- a/icons/paint-off.svg +++ b/icons/paint-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/paint.svg b/icons/paint.svg index 7fdcb7308..1ea7c9dc6 100644 --- a/icons/paint.svg +++ b/icons/paint.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/palette-off.svg b/icons/palette-off.svg index cd4e12dfb..24ae904cd 100644 --- a/icons/palette-off.svg +++ b/icons/palette-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/palette.svg b/icons/palette.svg index d5b56bd51..9f6a2f194 100644 --- a/icons/palette.svg +++ b/icons/palette.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/panorama-horizontal-off.svg b/icons/panorama-horizontal-off.svg index 52456ff75..024757450 100644 --- a/icons/panorama-horizontal-off.svg +++ b/icons/panorama-horizontal-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/panorama-horizontal.svg b/icons/panorama-horizontal.svg index b92d289e1..56cd328ef 100644 --- a/icons/panorama-horizontal.svg +++ b/icons/panorama-horizontal.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/panorama-vertical-off.svg b/icons/panorama-vertical-off.svg index 6f890e470..f63f2b12c 100644 --- a/icons/panorama-vertical-off.svg +++ b/icons/panorama-vertical-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/paper-bag-off.svg b/icons/paper-bag-off.svg index aade0e9e3..069f1a5ba 100644 --- a/icons/paper-bag-off.svg +++ b/icons/paper-bag-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/paper-bag.svg b/icons/paper-bag.svg index 46a72f440..7408d904d 100644 --- a/icons/paper-bag.svg +++ b/icons/paper-bag.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/parachute-off.svg b/icons/parachute-off.svg index 520efc23c..f59d7be7c 100644 --- a/icons/parachute-off.svg +++ b/icons/parachute-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/parachute.svg b/icons/parachute.svg index e4e5e4a97..2c2eb1b1c 100644 --- a/icons/parachute.svg +++ b/icons/parachute.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/parentheses-off.svg b/icons/parentheses-off.svg index 7c937bf98..be3bf803e 100644 --- a/icons/parentheses-off.svg +++ b/icons/parentheses-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/parentheses.svg b/icons/parentheses.svg index 7e6f68695..a69d4eb3b 100644 --- a/icons/parentheses.svg +++ b/icons/parentheses.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/parking-off.svg b/icons/parking-off.svg index c461bba1d..a49a090c2 100644 --- a/icons/parking-off.svg +++ b/icons/parking-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/parking.svg b/icons/parking.svg index 635a57d27..284012bb2 100644 --- a/icons/parking.svg +++ b/icons/parking.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/password.svg b/icons/password.svg index cdb5ecf25..e28cdd077 100644 --- a/icons/password.svg +++ b/icons/password.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/paw-filled.svg b/icons/paw-filled.svg new file mode 100644 index 000000000..663fbd7b4 --- /dev/null +++ b/icons/paw-filled.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/paw-off.svg b/icons/paw-off.svg index 46ee558cb..9f10c6b2b 100644 --- a/icons/paw-off.svg +++ b/icons/paw-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/paw.svg b/icons/paw.svg index 9e2a544db..d1c4d8826 100644 --- a/icons/paw.svg +++ b/icons/paw.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/peace.svg b/icons/peace.svg index bf1b417df..69cce5268 100644 --- a/icons/peace.svg +++ b/icons/peace.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pencil-minus.svg b/icons/pencil-minus.svg index 6177e38c1..bdbcdd614 100644 --- a/icons/pencil-minus.svg +++ b/icons/pencil-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pencil-off.svg b/icons/pencil-off.svg index 1e72840ce..174c06126 100644 --- a/icons/pencil-off.svg +++ b/icons/pencil-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pencil-plus.svg b/icons/pencil-plus.svg index cd3c0ff6e..7f058d3e4 100644 --- a/icons/pencil-plus.svg +++ b/icons/pencil-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pencil.svg b/icons/pencil.svg index 6372c8547..f1e31b623 100644 --- a/icons/pencil.svg +++ b/icons/pencil.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pennant-2-filled.svg b/icons/pennant-2-filled.svg new file mode 100644 index 000000000..aa3de4d56 --- /dev/null +++ b/icons/pennant-2-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/pennant-2.svg b/icons/pennant-2.svg index e756a238d..0cd6c59e9 100644 --- a/icons/pennant-2.svg +++ b/icons/pennant-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pennant-filled.svg b/icons/pennant-filled.svg new file mode 100644 index 000000000..e7ff62565 --- /dev/null +++ b/icons/pennant-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/pennant-off.svg b/icons/pennant-off.svg index 8faf27bf2..b71c4b3a0 100644 --- a/icons/pennant-off.svg +++ b/icons/pennant-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pennant.svg b/icons/pennant.svg index d67101cb9..5f2fa9c7e 100644 --- a/icons/pennant.svg +++ b/icons/pennant.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pentagon-filled.svg b/icons/pentagon-filled.svg new file mode 100644 index 000000000..78e0e1d92 --- /dev/null +++ b/icons/pentagon-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/pentagon-off.svg b/icons/pentagon-off.svg index a144b779d..6440fee55 100644 --- a/icons/pentagon-off.svg +++ b/icons/pentagon-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pentagon.svg b/icons/pentagon.svg index 400064d9e..1cefb3e20 100644 --- a/icons/pentagon.svg +++ b/icons/pentagon.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/pentagram.svg b/icons/pentagram.svg index 88cad38a1..3608abb60 100644 --- a/icons/pentagram.svg +++ b/icons/pentagram.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pepper-off.svg b/icons/pepper-off.svg index 593c05829..e8902ce35 100644 --- a/icons/pepper-off.svg +++ b/icons/pepper-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pepper.svg b/icons/pepper.svg index 853b35f1c..2845f3420 100644 --- a/icons/pepper.svg +++ b/icons/pepper.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/percentage.svg b/icons/percentage.svg index 7352de54d..5fc3eef4c 100644 --- a/icons/percentage.svg +++ b/icons/percentage.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/perfume.svg b/icons/perfume.svg index 38ac5bcf2..25f23cb03 100644 --- a/icons/perfume.svg +++ b/icons/perfume.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/perspective-off.svg b/icons/perspective-off.svg index eeba2bde0..b15226c47 100644 --- a/icons/perspective-off.svg +++ b/icons/perspective-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/phone-call.svg b/icons/phone-call.svg index be9951c37..184749592 100644 --- a/icons/phone-call.svg +++ b/icons/phone-call.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/phone-calling.svg b/icons/phone-calling.svg index 201a8baf8..7ff3b6396 100644 --- a/icons/phone-calling.svg +++ b/icons/phone-calling.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/phone-check.svg b/icons/phone-check.svg index d433b2aa1..b32f87143 100644 --- a/icons/phone-check.svg +++ b/icons/phone-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/phone-incoming.svg b/icons/phone-incoming.svg index 403a5dd10..668b0c596 100644 --- a/icons/phone-incoming.svg +++ b/icons/phone-incoming.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/phone-off.svg b/icons/phone-off.svg index 9144ed73d..7d34f933e 100644 --- a/icons/phone-off.svg +++ b/icons/phone-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/phone-outgoing.svg b/icons/phone-outgoing.svg index 7d9885654..0d89f50e7 100644 --- a/icons/phone-outgoing.svg +++ b/icons/phone-outgoing.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/phone-pause.svg b/icons/phone-pause.svg index 5b4dba011..f86ddcff6 100644 --- a/icons/phone-pause.svg +++ b/icons/phone-pause.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/phone-plus.svg b/icons/phone-plus.svg index 43bc0961c..4715c0a85 100644 --- a/icons/phone-plus.svg +++ b/icons/phone-plus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/phone-x.svg b/icons/phone-x.svg index fff7ba8b8..05cda860d 100644 --- a/icons/phone-x.svg +++ b/icons/phone-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/photo-cancel.svg b/icons/photo-cancel.svg index 35f7a59ed..72cea050f 100644 --- a/icons/photo-cancel.svg +++ b/icons/photo-cancel.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/photo-check.svg b/icons/photo-check.svg index 1689a5bd9..6ec415e07 100644 --- a/icons/photo-check.svg +++ b/icons/photo-check.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo-down.svg b/icons/photo-down.svg index add25c064..c3d3e7ca3 100644 --- a/icons/photo-down.svg +++ b/icons/photo-down.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/photo-edit.svg b/icons/photo-edit.svg index cbc9c5fba..671faf159 100644 --- a/icons/photo-edit.svg +++ b/icons/photo-edit.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo-heart.svg b/icons/photo-heart.svg index 36b4597a2..b05ef0e4a 100644 --- a/icons/photo-heart.svg +++ b/icons/photo-heart.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/photo-minus.svg b/icons/photo-minus.svg index edfe2b0e1..76d96b84a 100644 --- a/icons/photo-minus.svg +++ b/icons/photo-minus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo-off.svg b/icons/photo-off.svg index 8c84ea0e5..facdddf57 100644 --- a/icons/photo-off.svg +++ b/icons/photo-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo-plus.svg b/icons/photo-plus.svg index 36fd9c9b1..3dde471e6 100644 --- a/icons/photo-plus.svg +++ b/icons/photo-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/photo-search.svg b/icons/photo-search.svg index d6be7d46e..a7fd13234 100644 --- a/icons/photo-search.svg +++ b/icons/photo-search.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo-shield.svg b/icons/photo-shield.svg index e06341b5b..95dd5737e 100644 --- a/icons/photo-shield.svg +++ b/icons/photo-shield.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/photo-star.svg b/icons/photo-star.svg index 78b8b0de1..558453e4e 100644 --- a/icons/photo-star.svg +++ b/icons/photo-star.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/photo-up.svg b/icons/photo-up.svg index 3af54c4fc..7bfd55711 100644 --- a/icons/photo-up.svg +++ b/icons/photo-up.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/photo-x.svg b/icons/photo-x.svg index 458340188..450ed6442 100644 --- a/icons/photo-x.svg +++ b/icons/photo-x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/photo.svg b/icons/photo.svg index 043f310ba..b325b0ddf 100644 --- a/icons/photo.svg +++ b/icons/photo.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/physotherapist.svg b/icons/physotherapist.svg index b2feca8b8..c838a6448 100644 --- a/icons/physotherapist.svg +++ b/icons/physotherapist.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/picture-in-picture-off.svg b/icons/picture-in-picture-off.svg index 73532fda1..11523aee8 100644 --- a/icons/picture-in-picture-off.svg +++ b/icons/picture-in-picture-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/picture-in-picture-on.svg b/icons/picture-in-picture-on.svg index 3f55767c6..80d6b9a1b 100644 --- a/icons/picture-in-picture-on.svg +++ b/icons/picture-in-picture-on.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/picture-in-picture-top.svg b/icons/picture-in-picture-top.svg index 3c7da5c0d..376ad7cb4 100644 --- a/icons/picture-in-picture-top.svg +++ b/icons/picture-in-picture-top.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/picture-in-picture.svg b/icons/picture-in-picture.svg index 8058633e5..d9833f598 100644 --- a/icons/picture-in-picture.svg +++ b/icons/picture-in-picture.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pig-money.svg b/icons/pig-money.svg index 0abee9ffb..5fb36a8f8 100644 --- a/icons/pig-money.svg +++ b/icons/pig-money.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pig-off.svg b/icons/pig-off.svg index 273c8ecbf..33273ea2a 100644 --- a/icons/pig-off.svg +++ b/icons/pig-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pig.svg b/icons/pig.svg index 05206cf63..eee574283 100644 --- a/icons/pig.svg +++ b/icons/pig.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pilcrow.svg b/icons/pilcrow.svg index 02aea77a6..7433df8e7 100644 --- a/icons/pilcrow.svg +++ b/icons/pilcrow.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pill-off.svg b/icons/pill-off.svg index fc445adfe..826f116ea 100644 --- a/icons/pill-off.svg +++ b/icons/pill-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pill.svg b/icons/pill.svg index b1eb595fc..64552dd14 100644 --- a/icons/pill.svg +++ b/icons/pill.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pills.svg b/icons/pills.svg index e4643fc8e..c90983baf 100644 --- a/icons/pills.svg +++ b/icons/pills.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pin-filled.svg b/icons/pin-filled.svg new file mode 100644 index 000000000..44932c459 --- /dev/null +++ b/icons/pin-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/pin.svg b/icons/pin.svg index 7af2d87ac..9333cb5c2 100644 --- a/icons/pin.svg +++ b/icons/pin.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/ping-pong.svg b/icons/ping-pong.svg index 9d61cff34..d85883dff 100644 --- a/icons/ping-pong.svg +++ b/icons/ping-pong.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pinned-filled.svg b/icons/pinned-filled.svg new file mode 100644 index 000000000..01d80210b --- /dev/null +++ b/icons/pinned-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/pinned-off.svg b/icons/pinned-off.svg index e5bba8ae7..36863fce4 100644 --- a/icons/pinned-off.svg +++ b/icons/pinned-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pinned.svg b/icons/pinned.svg index fac8252cd..46da8a549 100644 --- a/icons/pinned.svg +++ b/icons/pinned.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pizza-off.svg b/icons/pizza-off.svg index a5def3975..a76adfb22 100644 --- a/icons/pizza-off.svg +++ b/icons/pizza-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pizza.svg b/icons/pizza.svg index aed4d6da7..e75497bbe 100644 --- a/icons/pizza.svg +++ b/icons/pizza.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/placeholder.svg b/icons/placeholder.svg index 22a9737bc..e1956133f 100644 --- a/icons/placeholder.svg +++ b/icons/placeholder.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/plane-arrival.svg b/icons/plane-arrival.svg index 04186f333..100c8f34b 100644 --- a/icons/plane-arrival.svg +++ b/icons/plane-arrival.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/plane-departure.svg b/icons/plane-departure.svg index 8c25383f1..74bfc8825 100644 --- a/icons/plane-departure.svg +++ b/icons/plane-departure.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/plane-inflight.svg b/icons/plane-inflight.svg index 00a45c47b..4677e2202 100644 --- a/icons/plane-inflight.svg +++ b/icons/plane-inflight.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/plane-off.svg b/icons/plane-off.svg index c217131a0..1e30de004 100644 --- a/icons/plane-off.svg +++ b/icons/plane-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/planet-off.svg b/icons/planet-off.svg index 00274adca..2c14c5569 100644 --- a/icons/planet-off.svg +++ b/icons/planet-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/planet.svg b/icons/planet.svg index df3e3b676..4317cdf81 100644 --- a/icons/planet.svg +++ b/icons/planet.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/plant-2-off.svg b/icons/plant-2-off.svg index ccf070659..dda0488eb 100644 --- a/icons/plant-2-off.svg +++ b/icons/plant-2-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/plant-2.svg b/icons/plant-2.svg index f69b4ce9b..fc7c05d34 100644 --- a/icons/plant-2.svg +++ b/icons/plant-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/plant-off.svg b/icons/plant-off.svg index 41f6edb51..bbb43dc35 100644 --- a/icons/plant-off.svg +++ b/icons/plant-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/plant.svg b/icons/plant.svg index 042473469..1811ec4bc 100644 --- a/icons/plant.svg +++ b/icons/plant.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/play-card-off.svg b/icons/play-card-off.svg index 4c5456c5e..89ce28672 100644 --- a/icons/play-card-off.svg +++ b/icons/play-card-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/play-card.svg b/icons/play-card.svg index 41deac875..3cad8e45b 100644 --- a/icons/play-card.svg +++ b/icons/play-card.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/player-eject-filled.svg b/icons/player-eject-filled.svg new file mode 100644 index 000000000..7f60f6812 --- /dev/null +++ b/icons/player-eject-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-eject.svg b/icons/player-eject.svg index 1349f9f0d..077e1e4b4 100644 --- a/icons/player-eject.svg +++ b/icons/player-eject.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/player-pause-filled.svg b/icons/player-pause-filled.svg new file mode 100644 index 000000000..3739475c4 --- /dev/null +++ b/icons/player-pause-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-pause.svg b/icons/player-pause.svg index 5a5dc6e47..c1c6b2b40 100644 --- a/icons/player-pause.svg +++ b/icons/player-pause.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/player-play-filled.svg b/icons/player-play-filled.svg new file mode 100644 index 000000000..1812ae4ba --- /dev/null +++ b/icons/player-play-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/player-record-filled.svg b/icons/player-record-filled.svg new file mode 100644 index 000000000..794046996 --- /dev/null +++ b/icons/player-record-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/player-record.svg b/icons/player-record.svg index 75b3f3b44..383e8c758 100644 --- a/icons/player-record.svg +++ b/icons/player-record.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/player-skip-back-filled.svg b/icons/player-skip-back-filled.svg new file mode 100644 index 000000000..9de35a3c1 --- /dev/null +++ b/icons/player-skip-back-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-skip-back.svg b/icons/player-skip-back.svg index e984587cf..d48dc26df 100644 --- a/icons/player-skip-back.svg +++ b/icons/player-skip-back.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/player-skip-forward-filled.svg b/icons/player-skip-forward-filled.svg new file mode 100644 index 000000000..7e6f59b9e --- /dev/null +++ b/icons/player-skip-forward-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-skip-forward.svg b/icons/player-skip-forward.svg index dbcac2a6b..b8c237bc7 100644 --- a/icons/player-skip-forward.svg +++ b/icons/player-skip-forward.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/player-stop-filled.svg b/icons/player-stop-filled.svg new file mode 100644 index 000000000..8c9688ecb --- /dev/null +++ b/icons/player-stop-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/player-stop.svg b/icons/player-stop.svg index 3719435fc..4dbb130f3 100644 --- a/icons/player-stop.svg +++ b/icons/player-stop.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/player-track-next-filled.svg b/icons/player-track-next-filled.svg new file mode 100644 index 000000000..702fbb7d8 --- /dev/null +++ b/icons/player-track-next-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-track-next.svg b/icons/player-track-next.svg index e097dcf9f..6d9042593 100644 --- a/icons/player-track-next.svg +++ b/icons/player-track-next.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/player-track-prev-filled.svg b/icons/player-track-prev-filled.svg new file mode 100644 index 000000000..32e2ace7e --- /dev/null +++ b/icons/player-track-prev-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/player-track-prev.svg b/icons/player-track-prev.svg index 316aff8ca..8b6f97a0a 100644 --- a/icons/player-track-prev.svg +++ b/icons/player-track-prev.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/playlist-add.svg b/icons/playlist-add.svg index 4656d1bb0..a6d806fe1 100644 --- a/icons/playlist-add.svg +++ b/icons/playlist-add.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/playlist-off.svg b/icons/playlist-off.svg index 4278e0a85..0a3269fbc 100644 --- a/icons/playlist-off.svg +++ b/icons/playlist-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/playlist-x.svg b/icons/playlist-x.svg index 2ea9cc278..cbb7fb70d 100644 --- a/icons/playlist-x.svg +++ b/icons/playlist-x.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/playlist.svg b/icons/playlist.svg index 07567d13c..1a2fff666 100644 --- a/icons/playlist.svg +++ b/icons/playlist.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/playstation-circle.svg b/icons/playstation-circle.svg index 9fe269aba..3dbe10c84 100644 --- a/icons/playstation-circle.svg +++ b/icons/playstation-circle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/playstation-square.svg b/icons/playstation-square.svg index 0b87fa19a..3cbbd3867 100644 --- a/icons/playstation-square.svg +++ b/icons/playstation-square.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/playstation-triangle.svg b/icons/playstation-triangle.svg index 0bd055132..c7806bac7 100644 --- a/icons/playstation-triangle.svg +++ b/icons/playstation-triangle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/playstation-x.svg b/icons/playstation-x.svg index 2560362f8..36ea20878 100644 --- a/icons/playstation-x.svg +++ b/icons/playstation-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/plug-connected-x.svg b/icons/plug-connected-x.svg index 0623a65f7..931a6c0f7 100644 --- a/icons/plug-connected-x.svg +++ b/icons/plug-connected-x.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/plug-connected.svg b/icons/plug-connected.svg index 329c6fe74..2ed63fb71 100644 --- a/icons/plug-connected.svg +++ b/icons/plug-connected.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/plug-off.svg b/icons/plug-off.svg index 41a13c87e..4b3570f6d 100644 --- a/icons/plug-off.svg +++ b/icons/plug-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/plug-x.svg b/icons/plug-x.svg index 97116e25f..140c2b8d7 100644 --- a/icons/plug-x.svg +++ b/icons/plug-x.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/plug.svg b/icons/plug.svg index 9f3d1ed57..0d07e736b 100644 --- a/icons/plug.svg +++ b/icons/plug.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/plus.svg b/icons/plus.svg index 9b389949d..5e6b6baae 100644 --- a/icons/plus.svg +++ b/icons/plus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/png.svg b/icons/png.svg index af83ffeed..5b95a7eca 100644 --- a/icons/png.svg +++ b/icons/png.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/podium-off.svg b/icons/podium-off.svg index e0917d3c1..fa004ce9a 100644 --- a/icons/podium-off.svg +++ b/icons/podium-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/podium.svg b/icons/podium.svg index b1c079946..03c8d3db6 100644 --- a/icons/podium.svg +++ b/icons/podium.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/point-filled.svg b/icons/point-filled.svg new file mode 100644 index 000000000..30b110b69 --- /dev/null +++ b/icons/point-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/point-off.svg b/icons/point-off.svg index dfe687086..61443ddf3 100644 --- a/icons/point-off.svg +++ b/icons/point-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/point.svg b/icons/point.svg index ade0b2869..dcada57e5 100644 --- a/icons/point.svg +++ b/icons/point.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/pokeball-off.svg b/icons/pokeball-off.svg index 9b55f72f5..736bb082b 100644 --- a/icons/pokeball-off.svg +++ b/icons/pokeball-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pokeball.svg b/icons/pokeball.svg index 878875c98..51a59bc24 100644 --- a/icons/pokeball.svg +++ b/icons/pokeball.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/poker-chip.svg b/icons/poker-chip.svg index 1d6e8bf84..c12af27a0 100644 --- a/icons/poker-chip.svg +++ b/icons/poker-chip.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/polaroid.svg b/icons/polaroid.svg index 0e295f6ff..14315ba8d 100644 --- a/icons/polaroid.svg +++ b/icons/polaroid.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/polygon-off.svg b/icons/polygon-off.svg index c980536fc..29824289a 100644 --- a/icons/polygon-off.svg +++ b/icons/polygon-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/polygon.svg b/icons/polygon.svg index 129209f12..fd19e1650 100644 --- a/icons/polygon.svg +++ b/icons/polygon.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/poo.svg b/icons/poo.svg index 55df33bec..a6950489a 100644 --- a/icons/poo.svg +++ b/icons/poo.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pool-off.svg b/icons/pool-off.svg index 5e2a303af..6614fcb41 100644 --- a/icons/pool-off.svg +++ b/icons/pool-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/pool.svg b/icons/pool.svg index 3d0209746..3062ecb4e 100644 --- a/icons/pool.svg +++ b/icons/pool.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/power.svg b/icons/power.svg index 1020189da..6b88bfff9 100644 --- a/icons/power.svg +++ b/icons/power.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pray.svg b/icons/pray.svg index 5f33feb92..daf9761c3 100644 --- a/icons/pray.svg +++ b/icons/pray.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/premium-rights.svg b/icons/premium-rights.svg index 9562e08c8..dd24bf129 100644 --- a/icons/premium-rights.svg +++ b/icons/premium-rights.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/prescription.svg b/icons/prescription.svg index 233d6e29c..e6fbe93a2 100644 --- a/icons/prescription.svg +++ b/icons/prescription.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/presentation-analytics.svg b/icons/presentation-analytics.svg index 250839cc6..268ae5efa 100644 --- a/icons/presentation-analytics.svg +++ b/icons/presentation-analytics.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/presentation-off.svg b/icons/presentation-off.svg index 8b46e45fb..725dd516e 100644 --- a/icons/presentation-off.svg +++ b/icons/presentation-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/presentation.svg b/icons/presentation.svg index 65375e091..95afb65ee 100644 --- a/icons/presentation.svg +++ b/icons/presentation.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/printer-off.svg b/icons/printer-off.svg index 09e5b3a35..e69ecf53c 100644 --- a/icons/printer-off.svg +++ b/icons/printer-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/printer.svg b/icons/printer.svg index 67c69d6a2..d35e8ba4c 100644 --- a/icons/printer.svg +++ b/icons/printer.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/prison.svg b/icons/prison.svg index 9e851763e..2349f75a4 100644 --- a/icons/prison.svg +++ b/icons/prison.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/prompt.svg b/icons/prompt.svg index 246447481..84494e3b3 100644 --- a/icons/prompt.svg +++ b/icons/prompt.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/propeller-off.svg b/icons/propeller-off.svg index 31a6aa560..a174e80a4 100644 --- a/icons/propeller-off.svg +++ b/icons/propeller-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/propeller.svg b/icons/propeller.svg index 233ec6f9e..9f9c2c949 100644 --- a/icons/propeller.svg +++ b/icons/propeller.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/pumpkin-scary.svg b/icons/pumpkin-scary.svg index 7fddfd04e..1e54372ca 100644 --- a/icons/pumpkin-scary.svg +++ b/icons/pumpkin-scary.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/puzzle-2.svg b/icons/puzzle-2.svg index f8c11abea..1cd915385 100644 --- a/icons/puzzle-2.svg +++ b/icons/puzzle-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/puzzle-filled.svg b/icons/puzzle-filled.svg new file mode 100644 index 000000000..f42834f1e --- /dev/null +++ b/icons/puzzle-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/puzzle-off.svg b/icons/puzzle-off.svg index 8a484068d..5fc8b8edb 100644 --- a/icons/puzzle-off.svg +++ b/icons/puzzle-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pyramid-off.svg b/icons/pyramid-off.svg index 90c75b59a..8952f352c 100644 --- a/icons/pyramid-off.svg +++ b/icons/pyramid-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/pyramid.svg b/icons/pyramid.svg index 33d1e3981..1e3503d23 100644 --- a/icons/pyramid.svg +++ b/icons/pyramid.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/qrcode-off.svg b/icons/qrcode-off.svg index f3b13a362..33d4a8bfb 100644 --- a/icons/qrcode-off.svg +++ b/icons/qrcode-off.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/qrcode.svg b/icons/qrcode.svg index 18a995565..d2e1d104a 100644 --- a/icons/qrcode.svg +++ b/icons/qrcode.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/question-circle.svg b/icons/question-circle.svg index 90bb9d8b0..86e8f9269 100644 --- a/icons/question-circle.svg +++ b/icons/question-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/question-mark.svg b/icons/question-mark.svg index 8b689c0f1..ad990f63a 100644 --- a/icons/question-mark.svg +++ b/icons/question-mark.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/quote-off.svg b/icons/quote-off.svg index 38765b573..0136017d0 100644 --- a/icons/quote-off.svg +++ b/icons/quote-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/quote.svg b/icons/quote.svg index 0896090f3..5eb659d11 100644 --- a/icons/quote.svg +++ b/icons/quote.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/radar-2.svg b/icons/radar-2.svg index e6542b64b..bf0cfbefc 100644 --- a/icons/radar-2.svg +++ b/icons/radar-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/radar-off.svg b/icons/radar-off.svg index f6f33251f..f2470d7aa 100644 --- a/icons/radar-off.svg +++ b/icons/radar-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/radar.svg b/icons/radar.svg index 521f1b500..bea131652 100644 --- a/icons/radar.svg +++ b/icons/radar.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/radio-off.svg b/icons/radio-off.svg index 56c79647e..22482022e 100644 --- a/icons/radio-off.svg +++ b/icons/radio-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/radio.svg b/icons/radio.svg index 31890747b..23fd45036 100644 --- a/icons/radio.svg +++ b/icons/radio.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/radioactive-off.svg b/icons/radioactive-off.svg index c1c128910..e394f184b 100644 --- a/icons/radioactive-off.svg +++ b/icons/radioactive-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/radioactive.svg b/icons/radioactive.svg index 84b66e115..7c1acf34e 100644 --- a/icons/radioactive.svg +++ b/icons/radioactive.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rainbow-off.svg b/icons/rainbow-off.svg index 224c24233..c080db5b2 100644 --- a/icons/rainbow-off.svg +++ b/icons/rainbow-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/rainbow.svg b/icons/rainbow.svg index 19d520cdd..2e6feab61 100644 --- a/icons/rainbow.svg +++ b/icons/rainbow.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rating-12-plus.svg b/icons/rating-12-plus.svg index ce87372b8..893f476dc 100644 --- a/icons/rating-12-plus.svg +++ b/icons/rating-12-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/rating-14-plus.svg b/icons/rating-14-plus.svg index 106a02b61..b546c9f40 100644 --- a/icons/rating-14-plus.svg +++ b/icons/rating-14-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/rating-16-plus.svg b/icons/rating-16-plus.svg index 3e21b16f3..9da6f1548 100644 --- a/icons/rating-16-plus.svg +++ b/icons/rating-16-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/rating-18-plus.svg b/icons/rating-18-plus.svg index 0b5d8f6fd..486a1a3dd 100644 --- a/icons/rating-18-plus.svg +++ b/icons/rating-18-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/rating-21-plus.svg b/icons/rating-21-plus.svg index 080acfa50..018a80766 100644 --- a/icons/rating-21-plus.svg +++ b/icons/rating-21-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/razor-electric.svg b/icons/razor-electric.svg index db40e1e68..0c5947ace 100644 --- a/icons/razor-electric.svg +++ b/icons/razor-electric.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/razor.svg b/icons/razor.svg index d0dcfd266..31b57b53f 100644 --- a/icons/razor.svg +++ b/icons/razor.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/receipt-2.svg b/icons/receipt-2.svg index 4ad45ac8f..e384f2caa 100644 --- a/icons/receipt-2.svg +++ b/icons/receipt-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/receipt-off.svg b/icons/receipt-off.svg index 2c0e6edf6..b3249128c 100644 --- a/icons/receipt-off.svg +++ b/icons/receipt-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/receipt-refund.svg b/icons/receipt-refund.svg index a80eb75c3..006b84dbd 100644 --- a/icons/receipt-refund.svg +++ b/icons/receipt-refund.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/receipt-tax.svg b/icons/receipt-tax.svg index ea40b7eac..e16d44bbf 100644 --- a/icons/receipt-tax.svg +++ b/icons/receipt-tax.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/recharging.svg b/icons/recharging.svg index 7e63a3523..46a3e4cd2 100644 --- a/icons/recharging.svg +++ b/icons/recharging.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/record-mail-off.svg b/icons/record-mail-off.svg index 580073098..0f0b626ee 100644 --- a/icons/record-mail-off.svg +++ b/icons/record-mail-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/record-mail.svg b/icons/record-mail.svg index e3cf847ff..f3b48533b 100644 --- a/icons/record-mail.svg +++ b/icons/record-mail.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rectangle-filled.svg b/icons/rectangle-filled.svg new file mode 100644 index 000000000..e6d934149 --- /dev/null +++ b/icons/rectangle-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rectangle-vertical-filled.svg b/icons/rectangle-vertical-filled.svg new file mode 100644 index 000000000..5cebd54a8 --- /dev/null +++ b/icons/rectangle-vertical-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rectangle-vertical.svg b/icons/rectangle-vertical.svg index 73285d6cd..ce7ec84b1 100644 --- a/icons/rectangle-vertical.svg +++ b/icons/rectangle-vertical.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/rectangle.svg b/icons/rectangle.svg index 99472e20b..e7d5ccc20 100644 --- a/icons/rectangle.svg +++ b/icons/rectangle.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/recycle-off.svg b/icons/recycle-off.svg index 28078f784..4c13346fe 100644 --- a/icons/recycle-off.svg +++ b/icons/recycle-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/recycle.svg b/icons/recycle.svg index 142e413b7..7b701acf4 100644 --- a/icons/recycle.svg +++ b/icons/recycle.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/refresh-alert.svg b/icons/refresh-alert.svg index 983ce1b59..bf8363ed0 100644 --- a/icons/refresh-alert.svg +++ b/icons/refresh-alert.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/refresh-dot.svg b/icons/refresh-dot.svg index d33fa079f..68e21ca1f 100644 --- a/icons/refresh-dot.svg +++ b/icons/refresh-dot.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/refresh-off.svg b/icons/refresh-off.svg index a7eac5470..8b01912a2 100644 --- a/icons/refresh-off.svg +++ b/icons/refresh-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/refresh.svg b/icons/refresh.svg index 76e2cd1ea..94148ec6f 100644 --- a/icons/refresh.svg +++ b/icons/refresh.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/regex-off.svg b/icons/regex-off.svg index 7bf3bb1d1..e9190ad6e 100644 --- a/icons/regex-off.svg +++ b/icons/regex-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/regex.svg b/icons/regex.svg index 9877d646c..9463134d4 100644 --- a/icons/regex.svg +++ b/icons/regex.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/registered.svg b/icons/registered.svg index 6d03d407b..c4008a452 100644 --- a/icons/registered.svg +++ b/icons/registered.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/relation-many-to-many.svg b/icons/relation-many-to-many.svg index fa816d2a0..028760260 100644 --- a/icons/relation-many-to-many.svg +++ b/icons/relation-many-to-many.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/relation-one-to-many.svg b/icons/relation-one-to-many.svg index 3e9c16b2b..b21d1b24f 100644 --- a/icons/relation-one-to-many.svg +++ b/icons/relation-one-to-many.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/relation-one-to-one.svg b/icons/relation-one-to-one.svg index 3e6e736c5..e6e266164 100644 --- a/icons/relation-one-to-one.svg +++ b/icons/relation-one-to-one.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/reload.svg b/icons/reload.svg index be88b3a74..7e21e6385 100644 --- a/icons/reload.svg +++ b/icons/reload.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/repeat-off.svg b/icons/repeat-off.svg index 8f79076ae..9dcdaf595 100644 --- a/icons/repeat-off.svg +++ b/icons/repeat-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/repeat-once.svg b/icons/repeat-once.svg index de3ae84ce..b6ce2e921 100644 --- a/icons/repeat-once.svg +++ b/icons/repeat-once.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/repeat.svg b/icons/repeat.svg index 7e58a4741..417d95692 100644 --- a/icons/repeat.svg +++ b/icons/repeat.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/replace-filled.svg b/icons/replace-filled.svg new file mode 100644 index 000000000..9f508d911 --- /dev/null +++ b/icons/replace-filled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/replace-off.svg b/icons/replace-off.svg index a615bf0dc..330062060 100644 --- a/icons/replace-off.svg +++ b/icons/replace-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/replace.svg b/icons/replace.svg index cee518055..e87e17001 100644 --- a/icons/replace.svg +++ b/icons/replace.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/report-analytics.svg b/icons/report-analytics.svg index d87fde22e..268c30f53 100644 --- a/icons/report-analytics.svg +++ b/icons/report-analytics.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/report-medical.svg b/icons/report-medical.svg index 9e8b5000e..3c18bea7e 100644 --- a/icons/report-medical.svg +++ b/icons/report-medical.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/report-money.svg b/icons/report-money.svg index 2855a188d..ca0e97141 100644 --- a/icons/report-money.svg +++ b/icons/report-money.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/report-off.svg b/icons/report-off.svg index 232775b8c..650d02669 100644 --- a/icons/report-off.svg +++ b/icons/report-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/report-search.svg b/icons/report-search.svg index d307427c9..48f80be7d 100644 --- a/icons/report-search.svg +++ b/icons/report-search.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/report.svg b/icons/report.svg index 35b4ce924..d59c588cb 100644 --- a/icons/report.svg +++ b/icons/report.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/resize.svg b/icons/resize.svg index 32d2fc87e..2c7149da1 100644 --- a/icons/resize.svg +++ b/icons/resize.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ribbon-health.svg b/icons/ribbon-health.svg index 880210d22..8558cbe13 100644 --- a/icons/ribbon-health.svg +++ b/icons/ribbon-health.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/ripple-off.svg b/icons/ripple-off.svg index 6aa99b2ca..0140e4ea3 100644 --- a/icons/ripple-off.svg +++ b/icons/ripple-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ripple.svg b/icons/ripple.svg index 8df361f0b..29693edc8 100644 --- a/icons/ripple.svg +++ b/icons/ripple.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/road-off.svg b/icons/road-off.svg index 872fb0843..81563d3cc 100644 --- a/icons/road-off.svg +++ b/icons/road-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/road-sign.svg b/icons/road-sign.svg index d3a8b7630..9c79aaad4 100644 --- a/icons/road-sign.svg +++ b/icons/road-sign.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/road.svg b/icons/road.svg index 626397266..13c1af6a9 100644 --- a/icons/road.svg +++ b/icons/road.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/robot-off.svg b/icons/robot-off.svg index fcf3d2336..1ab2a0aaf 100644 --- a/icons/robot-off.svg +++ b/icons/robot-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/robot.svg b/icons/robot.svg index 0b94b49f2..a418bf217 100644 --- a/icons/robot.svg +++ b/icons/robot.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/rocket-off.svg b/icons/rocket-off.svg index b620c68f0..0e2880bd4 100644 --- a/icons/rocket-off.svg +++ b/icons/rocket-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/rocket.svg b/icons/rocket.svg index 41aab7263..794a6f39a 100644 --- a/icons/rocket.svg +++ b/icons/rocket.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/roller-skating.svg b/icons/roller-skating.svg index 3ed3392fb..039f89ea4 100644 --- a/icons/roller-skating.svg +++ b/icons/roller-skating.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rollercoaster-off.svg b/icons/rollercoaster-off.svg index e70ec4811..44e758baa 100644 --- a/icons/rollercoaster-off.svg +++ b/icons/rollercoaster-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/rollercoaster.svg b/icons/rollercoaster.svg index cdd513aed..4f3e8623c 100644 --- a/icons/rollercoaster.svg +++ b/icons/rollercoaster.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/rosette-filled.svg b/icons/rosette-filled.svg new file mode 100644 index 000000000..6ef8c15e7 --- /dev/null +++ b/icons/rosette-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-0.svg b/icons/rosette-number-0.svg index 9b849e114..d5ee42856 100644 --- a/icons/rosette-number-0.svg +++ b/icons/rosette-number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-1.svg b/icons/rosette-number-1.svg index d7a2617d8..1a3928047 100644 --- a/icons/rosette-number-1.svg +++ b/icons/rosette-number-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-2.svg b/icons/rosette-number-2.svg index 9bceae667..797d3258e 100644 --- a/icons/rosette-number-2.svg +++ b/icons/rosette-number-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-3.svg b/icons/rosette-number-3.svg index fed0b24ac..71742e0de 100644 --- a/icons/rosette-number-3.svg +++ b/icons/rosette-number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-4.svg b/icons/rosette-number-4.svg index 69e854ff2..554934608 100644 --- a/icons/rosette-number-4.svg +++ b/icons/rosette-number-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rosette-number-5.svg b/icons/rosette-number-5.svg index e196f1960..7d5499cc2 100644 --- a/icons/rosette-number-5.svg +++ b/icons/rosette-number-5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-6.svg b/icons/rosette-number-6.svg index efc83e476..277f1d85d 100644 --- a/icons/rosette-number-6.svg +++ b/icons/rosette-number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-7.svg b/icons/rosette-number-7.svg index 61fcde9d4..a614545fc 100644 --- a/icons/rosette-number-7.svg +++ b/icons/rosette-number-7.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-8.svg b/icons/rosette-number-8.svg index 7fc5ad174..105db064d 100644 --- a/icons/rosette-number-8.svg +++ b/icons/rosette-number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rosette-number-9.svg b/icons/rosette-number-9.svg index bf2745f97..6f331ff11 100644 --- a/icons/rosette-number-9.svg +++ b/icons/rosette-number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rotate-2.svg b/icons/rotate-2.svg index 8c64fd1d4..a41e65c44 100644 --- a/icons/rotate-2.svg +++ b/icons/rotate-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/rotate-360.svg b/icons/rotate-360.svg index 36d5bc611..f90802347 100644 --- a/icons/rotate-360.svg +++ b/icons/rotate-360.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rotate-clockwise-2.svg b/icons/rotate-clockwise-2.svg index 51c26b49e..6f71c1257 100644 --- a/icons/rotate-clockwise-2.svg +++ b/icons/rotate-clockwise-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/rotate-dot.svg b/icons/rotate-dot.svg index fc7dfb372..3862fde2d 100644 --- a/icons/rotate-dot.svg +++ b/icons/rotate-dot.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/rotate-rectangle.svg b/icons/rotate-rectangle.svg index 382e938ea..b71c28a10 100644 --- a/icons/rotate-rectangle.svg +++ b/icons/rotate-rectangle.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/route-2.svg b/icons/route-2.svg index de2a66b96..350f2249e 100644 --- a/icons/route-2.svg +++ b/icons/route-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/route-off.svg b/icons/route-off.svg index 5317c6fe8..00fbad0e3 100644 --- a/icons/route-off.svg +++ b/icons/route-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/route.svg b/icons/route.svg index 6699f0836..619fa8861 100644 --- a/icons/route.svg +++ b/icons/route.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/router-off.svg b/icons/router-off.svg index cc534e4a6..a65c0220d 100644 --- a/icons/router-off.svg +++ b/icons/router-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/router.svg b/icons/router.svg index 7e7ed49d9..0c1a966b9 100644 --- a/icons/router.svg +++ b/icons/router.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/row-insert-bottom.svg b/icons/row-insert-bottom.svg index 4e5a66db6..e2dac1854 100644 --- a/icons/row-insert-bottom.svg +++ b/icons/row-insert-bottom.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/row-insert-top.svg b/icons/row-insert-top.svg index 77eb5d55b..269efc79d 100644 --- a/icons/row-insert-top.svg +++ b/icons/row-insert-top.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rss.svg b/icons/rss.svg index 4d9874c95..7629da440 100644 --- a/icons/rss.svg +++ b/icons/rss.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/rubber-stamp-off.svg b/icons/rubber-stamp-off.svg index 212d4d72f..bceb82e8c 100644 --- a/icons/rubber-stamp-off.svg +++ b/icons/rubber-stamp-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/rubber-stamp.svg b/icons/rubber-stamp.svg index 453657444..15ff40c38 100644 --- a/icons/rubber-stamp.svg +++ b/icons/rubber-stamp.svg @@ -1,6 +1,5 @@ - - + diff --git a/icons/ruler-2-off.svg b/icons/ruler-2-off.svg index 9f62930c2..823c5ba69 100644 --- a/icons/ruler-2-off.svg +++ b/icons/ruler-2-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ruler-2.svg b/icons/ruler-2.svg index f946cdc8a..e812869ec 100644 --- a/icons/ruler-2.svg +++ b/icons/ruler-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/ruler-3.svg b/icons/ruler-3.svg index fd5c736e2..20dd258a8 100644 --- a/icons/ruler-3.svg +++ b/icons/ruler-3.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/ruler-measure.svg b/icons/ruler-measure.svg index 39b2cd05f..a33647f77 100644 --- a/icons/ruler-measure.svg +++ b/icons/ruler-measure.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/ruler-off.svg b/icons/ruler-off.svg index e77164198..bd9243f72 100644 --- a/icons/ruler-off.svg +++ b/icons/ruler-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/ruler.svg b/icons/ruler.svg index 7fc8c8412..18a10a51d 100644 --- a/icons/ruler.svg +++ b/icons/ruler.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/run.svg b/icons/run.svg index 6fff302ee..81722676c 100644 --- a/icons/run.svg +++ b/icons/run.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/s-turn-down.svg b/icons/s-turn-down.svg index ee71b284e..ba06064ad 100644 --- a/icons/s-turn-down.svg +++ b/icons/s-turn-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/s-turn-left.svg b/icons/s-turn-left.svg index 250a0812c..26e79c8ca 100644 --- a/icons/s-turn-left.svg +++ b/icons/s-turn-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/s-turn-right.svg b/icons/s-turn-right.svg index 79fae279b..44ad0dad1 100644 --- a/icons/s-turn-right.svg +++ b/icons/s-turn-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/s-turn-up.svg b/icons/s-turn-up.svg index 08ec8234e..b5226dc9d 100644 --- a/icons/s-turn-up.svg +++ b/icons/s-turn-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sailboat-2.svg b/icons/sailboat-2.svg index 180885914..c32c6eef3 100644 --- a/icons/sailboat-2.svg +++ b/icons/sailboat-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sailboat-off.svg b/icons/sailboat-off.svg index 81c54b4a9..12a974595 100644 --- a/icons/sailboat-off.svg +++ b/icons/sailboat-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sailboat.svg b/icons/sailboat.svg index e31392908..d4ae25630 100644 --- a/icons/sailboat.svg +++ b/icons/sailboat.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/salad.svg b/icons/salad.svg index b7ec96f4c..3f6e561b7 100644 --- a/icons/salad.svg +++ b/icons/salad.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/salt.svg b/icons/salt.svg index dfc719b88..fcfc6f3dd 100644 --- a/icons/salt.svg +++ b/icons/salt.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/satellite-off.svg b/icons/satellite-off.svg index 73366d980..79f88eb8b 100644 --- a/icons/satellite-off.svg +++ b/icons/satellite-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/satellite.svg b/icons/satellite.svg index 000296868..08ab6de5e 100644 --- a/icons/satellite.svg +++ b/icons/satellite.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/sausage.svg b/icons/sausage.svg index d1038ae15..0a801dfde 100644 --- a/icons/sausage.svg +++ b/icons/sausage.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/scale-off.svg b/icons/scale-off.svg index 89d9e54aa..2bfef227f 100644 --- a/icons/scale-off.svg +++ b/icons/scale-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/scale-outline-off.svg b/icons/scale-outline-off.svg index f887fd02a..03cf42feb 100644 --- a/icons/scale-outline-off.svg +++ b/icons/scale-outline-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/scale-outline.svg b/icons/scale-outline.svg index 8f0c07c08..68d98aa95 100644 --- a/icons/scale-outline.svg +++ b/icons/scale-outline.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/scale.svg b/icons/scale.svg index 6ae4b8380..4322f716b 100644 --- a/icons/scale.svg +++ b/icons/scale.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/scan-eye.svg b/icons/scan-eye.svg index abd34c284..23c076076 100644 --- a/icons/scan-eye.svg +++ b/icons/scan-eye.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/scan.svg b/icons/scan.svg index df4b817d7..26581c3fe 100644 --- a/icons/scan.svg +++ b/icons/scan.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/schema-off.svg b/icons/schema-off.svg index 0460e1221..26a731d7e 100644 --- a/icons/schema-off.svg +++ b/icons/schema-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/schema.svg b/icons/schema.svg index dbecb72cc..ef36d61ca 100644 --- a/icons/schema.svg +++ b/icons/schema.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/school-bell.svg b/icons/school-bell.svg index 6fc8f7c71..4448261e7 100644 --- a/icons/school-bell.svg +++ b/icons/school-bell.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/school-off.svg b/icons/school-off.svg index 46665433a..80d980ffb 100644 --- a/icons/school-off.svg +++ b/icons/school-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/school.svg b/icons/school.svg index 172d939e3..bb15e6812 100644 --- a/icons/school.svg +++ b/icons/school.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/scissors-off.svg b/icons/scissors-off.svg index 1ac6f9597..ff0fef1d4 100644 --- a/icons/scissors-off.svg +++ b/icons/scissors-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/scissors.svg b/icons/scissors.svg index 3cbb68fb1..005355c6c 100644 --- a/icons/scissors.svg +++ b/icons/scissors.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/scooter-electric.svg b/icons/scooter-electric.svg index a73f094c9..ee4cd04b8 100644 --- a/icons/scooter-electric.svg +++ b/icons/scooter-electric.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/scooter.svg b/icons/scooter.svg index 98f38d6d5..b08efe81c 100644 --- a/icons/scooter.svg +++ b/icons/scooter.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/screen-share-off.svg b/icons/screen-share-off.svg index 3a0604f9a..85c19f1a8 100644 --- a/icons/screen-share-off.svg +++ b/icons/screen-share-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/screen-share.svg b/icons/screen-share.svg index 05e59f0bf..5cb3e995b 100644 --- a/icons/screen-share.svg +++ b/icons/screen-share.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/screenshot.svg b/icons/screenshot.svg index 0c63d9b4f..ba96de890 100644 --- a/icons/screenshot.svg +++ b/icons/screenshot.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/scribble-off.svg b/icons/scribble-off.svg index 7ba8c7e09..2a010ceec 100644 --- a/icons/scribble-off.svg +++ b/icons/scribble-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/script-minus.svg b/icons/script-minus.svg index c2d5d864d..d78218a2d 100644 --- a/icons/script-minus.svg +++ b/icons/script-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/script-plus.svg b/icons/script-plus.svg index 6843d1408..d5bd679c8 100644 --- a/icons/script-plus.svg +++ b/icons/script-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/script-x.svg b/icons/script-x.svg index 998203312..346aca2f3 100644 --- a/icons/script-x.svg +++ b/icons/script-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/scuba-mask-off.svg b/icons/scuba-mask-off.svg index a0789dd00..d4b09c10f 100644 --- a/icons/scuba-mask-off.svg +++ b/icons/scuba-mask-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/scuba-mask.svg b/icons/scuba-mask.svg index f74793404..adb71d2e7 100644 --- a/icons/scuba-mask.svg +++ b/icons/scuba-mask.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sdk.svg b/icons/sdk.svg index a9fa287fc..adabe1ca1 100644 --- a/icons/sdk.svg +++ b/icons/sdk.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/search-off.svg b/icons/search-off.svg index 094aa7c90..d50b4a0d5 100644 --- a/icons/search-off.svg +++ b/icons/search-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/search.svg b/icons/search.svg index ec7818faf..2b444f7d9 100644 --- a/icons/search.svg +++ b/icons/search.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/section-sign.svg b/icons/section-sign.svg index d9974e4a1..ccc4a35ea 100644 --- a/icons/section-sign.svg +++ b/icons/section-sign.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/section.svg b/icons/section.svg index 3f1b810a1..0bd2f151a 100644 --- a/icons/section.svg +++ b/icons/section.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/seeding-off.svg b/icons/seeding-off.svg index c25ac1208..7d7438140 100644 --- a/icons/seeding-off.svg +++ b/icons/seeding-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/seeding.svg b/icons/seeding.svg index 372b52919..fe273eb36 100644 --- a/icons/seeding.svg +++ b/icons/seeding.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/select.svg b/icons/select.svg index 865c34c92..d05e210e7 100644 --- a/icons/select.svg +++ b/icons/select.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/selector.svg b/icons/selector.svg index f05cd4a99..686807099 100644 --- a/icons/selector.svg +++ b/icons/selector.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/send-off.svg b/icons/send-off.svg index 2676163fc..107af1d7f 100644 --- a/icons/send-off.svg +++ b/icons/send-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/send.svg b/icons/send.svg index a9adb53ec..6295a891a 100644 --- a/icons/send.svg +++ b/icons/send.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/seo.svg b/icons/seo.svg index 3ca021037..610b194a4 100644 --- a/icons/seo.svg +++ b/icons/seo.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/separator-horizontal.svg b/icons/separator-horizontal.svg index 8e4b0e8cb..166b67275 100644 --- a/icons/separator-horizontal.svg +++ b/icons/separator-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/separator-vertical.svg b/icons/separator-vertical.svg index e688ee547..1518ecafc 100644 --- a/icons/separator-vertical.svg +++ b/icons/separator-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/separator.svg b/icons/separator.svg index abd4ad806..e737e3f54 100644 --- a/icons/separator.svg +++ b/icons/separator.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/server-2.svg b/icons/server-2.svg index 53b6f2c41..5aa0ba5c3 100644 --- a/icons/server-2.svg +++ b/icons/server-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/server-bolt.svg b/icons/server-bolt.svg index aed8a640e..6af072695 100644 --- a/icons/server-bolt.svg +++ b/icons/server-bolt.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/server-cog.svg b/icons/server-cog.svg index 7afd4cad6..1f50a3d6a 100644 --- a/icons/server-cog.svg +++ b/icons/server-cog.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/server-off.svg b/icons/server-off.svg index 84a71f19c..b130c443b 100644 --- a/icons/server-off.svg +++ b/icons/server-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/server.svg b/icons/server.svg index a24b0c88b..7a8656c29 100644 --- a/icons/server.svg +++ b/icons/server.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/servicemark.svg b/icons/servicemark.svg index 5b8888853..f8b7c0842 100644 --- a/icons/servicemark.svg +++ b/icons/servicemark.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/settings-2.svg b/icons/settings-2.svg index 8efe300d3..0fe32d5fa 100644 --- a/icons/settings-2.svg +++ b/icons/settings-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/settings-automation.svg b/icons/settings-automation.svg index 027e8158c..f172040fd 100644 --- a/icons/settings-automation.svg +++ b/icons/settings-automation.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/settings-filled.svg b/icons/settings-filled.svg new file mode 100644 index 000000000..7f39519e1 --- /dev/null +++ b/icons/settings-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/settings-off.svg b/icons/settings-off.svg index 14c3f07df..d532f5efc 100644 --- a/icons/settings-off.svg +++ b/icons/settings-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/settings.svg b/icons/settings.svg index 701e0d8cc..6d4fd847c 100644 --- a/icons/settings.svg +++ b/icons/settings.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shadow-off.svg b/icons/shadow-off.svg index 48bd312e9..02798121d 100644 --- a/icons/shadow-off.svg +++ b/icons/shadow-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/shadow.svg b/icons/shadow.svg index 5b92feb34..5d3765e03 100644 --- a/icons/shadow.svg +++ b/icons/shadow.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/shape-2.svg b/icons/shape-2.svg index 9623595c8..3aa6b2c21 100644 --- a/icons/shape-2.svg +++ b/icons/shape-2.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/shape-3.svg b/icons/shape-3.svg index 2df660dfe..ebc33705e 100644 --- a/icons/shape-3.svg +++ b/icons/shape-3.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/shape-off.svg b/icons/shape-off.svg index cb1d75261..c6e0630e6 100644 --- a/icons/shape-off.svg +++ b/icons/shape-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/shape.svg b/icons/shape.svg index 1f85aad38..fa446ce20 100644 --- a/icons/shape.svg +++ b/icons/shape.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/share-off.svg b/icons/share-off.svg index 9a4017fb1..a59a3eaa4 100644 --- a/icons/share-off.svg +++ b/icons/share-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/share.svg b/icons/share.svg index 31a790004..6bb7ffb09 100644 --- a/icons/share.svg +++ b/icons/share.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/shield-check.svg b/icons/shield-check.svg index b3d0a7105..cb4dfbced 100644 --- a/icons/shield-check.svg +++ b/icons/shield-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shield-checkered.svg b/icons/shield-checkered.svg index a58f9b5ca..9aec9bd91 100644 --- a/icons/shield-checkered.svg +++ b/icons/shield-checkered.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/shield-chevron.svg b/icons/shield-chevron.svg index 57d45bcda..104a99e75 100644 --- a/icons/shield-chevron.svg +++ b/icons/shield-chevron.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shield-filled.svg b/icons/shield-filled.svg new file mode 100644 index 000000000..2f379e9ba --- /dev/null +++ b/icons/shield-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/shield-half-filled.svg b/icons/shield-half-filled.svg index cfabcfa98..582c5645c 100644 --- a/icons/shield-half-filled.svg +++ b/icons/shield-half-filled.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/shield-half.svg b/icons/shield-half.svg index ed239cd49..f94b2b90f 100644 --- a/icons/shield-half.svg +++ b/icons/shield-half.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shield-lock.svg b/icons/shield-lock.svg index 4db8439ad..32b3865c9 100644 --- a/icons/shield-lock.svg +++ b/icons/shield-lock.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/shield-off.svg b/icons/shield-off.svg index 91c81ff91..f88536b9e 100644 --- a/icons/shield-off.svg +++ b/icons/shield-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shield-x.svg b/icons/shield-x.svg index 0eea6787d..1eab25d9e 100644 --- a/icons/shield-x.svg +++ b/icons/shield-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/ship-off.svg b/icons/ship-off.svg index 912821945..cb1295652 100644 --- a/icons/ship-off.svg +++ b/icons/ship-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ship.svg b/icons/ship.svg index 91a45b971..1943485d3 100644 --- a/icons/ship.svg +++ b/icons/ship.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/shirt-filled.svg b/icons/shirt-filled.svg new file mode 100644 index 000000000..187942df5 --- /dev/null +++ b/icons/shirt-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/shirt-off.svg b/icons/shirt-off.svg index 707b25570..6b3ba7a01 100644 --- a/icons/shirt-off.svg +++ b/icons/shirt-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shirt-sport.svg b/icons/shirt-sport.svg index 63fff5945..4377c23f7 100644 --- a/icons/shirt-sport.svg +++ b/icons/shirt-sport.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shoe-off.svg b/icons/shoe-off.svg index 922b8dd81..9faf6f295 100644 --- a/icons/shoe-off.svg +++ b/icons/shoe-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/shoe.svg b/icons/shoe.svg index 8681cd66b..2a4a24469 100644 --- a/icons/shoe.svg +++ b/icons/shoe.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/shopping-bag.svg b/icons/shopping-bag.svg index b2f1e008e..bb57f6b59 100644 --- a/icons/shopping-bag.svg +++ b/icons/shopping-bag.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/shopping-cart-discount.svg b/icons/shopping-cart-discount.svg index aa331a186..c852a77d0 100644 --- a/icons/shopping-cart-discount.svg +++ b/icons/shopping-cart-discount.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/shopping-cart-off.svg b/icons/shopping-cart-off.svg index 853357152..3cff2bca6 100644 --- a/icons/shopping-cart-off.svg +++ b/icons/shopping-cart-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/shopping-cart-plus.svg b/icons/shopping-cart-plus.svg index b19e178bd..fc3189165 100644 --- a/icons/shopping-cart-plus.svg +++ b/icons/shopping-cart-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/shopping-cart-x.svg b/icons/shopping-cart-x.svg index bd6ffd224..77a352f5a 100644 --- a/icons/shopping-cart-x.svg +++ b/icons/shopping-cart-x.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/shopping-cart.svg b/icons/shopping-cart.svg index 39287d19e..c4af2707c 100644 --- a/icons/shopping-cart.svg +++ b/icons/shopping-cart.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/shovel.svg b/icons/shovel.svg index 7c99c3b95..f07d5744a 100644 --- a/icons/shovel.svg +++ b/icons/shovel.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/shredder.svg b/icons/shredder.svg index 32c000266..23cf7fc8f 100644 --- a/icons/shredder.svg +++ b/icons/shredder.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sign-left-filled.svg b/icons/sign-left-filled.svg new file mode 100644 index 000000000..243302ee7 --- /dev/null +++ b/icons/sign-left-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sign-left.svg b/icons/sign-left.svg index a6ddd463c..765875989 100644 --- a/icons/sign-left.svg +++ b/icons/sign-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sign-right-filled.svg b/icons/sign-right-filled.svg new file mode 100644 index 000000000..a208e7076 --- /dev/null +++ b/icons/sign-right-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sign-right.svg b/icons/sign-right.svg index ce9a4057b..adf070467 100644 --- a/icons/sign-right.svg +++ b/icons/sign-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/signal-3g.svg b/icons/signal-3g.svg index 19bcaad12..62cf1c394 100644 --- a/icons/signal-3g.svg +++ b/icons/signal-3g.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/signal-4g-plus.svg b/icons/signal-4g-plus.svg index 22bc1873d..2adb9bed3 100644 --- a/icons/signal-4g-plus.svg +++ b/icons/signal-4g-plus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/signal-4g.svg b/icons/signal-4g.svg index d27916cd3..44bdc9751 100644 --- a/icons/signal-4g.svg +++ b/icons/signal-4g.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/signal-5g.svg b/icons/signal-5g.svg index 1a836879e..3f4d46402 100644 --- a/icons/signal-5g.svg +++ b/icons/signal-5g.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/signature-off.svg b/icons/signature-off.svg index 6ee31e285..40d31a3f5 100644 --- a/icons/signature-off.svg +++ b/icons/signature-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sitemap-off.svg b/icons/sitemap-off.svg index bdb9f4cfa..f5fde921d 100644 --- a/icons/sitemap-off.svg +++ b/icons/sitemap-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sitemap.svg b/icons/sitemap.svg index c83b99497..8622be70b 100644 --- a/icons/sitemap.svg +++ b/icons/sitemap.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/skateboard-off.svg b/icons/skateboard-off.svg index 7413fb0d0..3d00cffaf 100644 --- a/icons/skateboard-off.svg +++ b/icons/skateboard-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/skateboard.svg b/icons/skateboard.svg index ae2489c28..6f445d416 100644 --- a/icons/skateboard.svg +++ b/icons/skateboard.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/skull.svg b/icons/skull.svg index 3673c1a00..b11d78836 100644 --- a/icons/skull.svg +++ b/icons/skull.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/slashes.svg b/icons/slashes.svg index a8f7fe578..9dde373ec 100644 --- a/icons/slashes.svg +++ b/icons/slashes.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sleigh.svg b/icons/sleigh.svg index 2809be5e9..252ef25a8 100644 --- a/icons/sleigh.svg +++ b/icons/sleigh.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/slideshow.svg b/icons/slideshow.svg index 9487c7c57..5c0864593 100644 --- a/icons/slideshow.svg +++ b/icons/slideshow.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/smart-home-off.svg b/icons/smart-home-off.svg index 169c2e04d..bbb679980 100644 --- a/icons/smart-home-off.svg +++ b/icons/smart-home-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/smart-home.svg b/icons/smart-home.svg index 1b8665e5b..22ea66120 100644 --- a/icons/smart-home.svg +++ b/icons/smart-home.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/smoking-no.svg b/icons/smoking-no.svg index 07cd8c3f4..e56040c42 100644 --- a/icons/smoking-no.svg +++ b/icons/smoking-no.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/smoking.svg b/icons/smoking.svg index cab9b4eff..47b623b8e 100644 --- a/icons/smoking.svg +++ b/icons/smoking.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/snowflake-off.svg b/icons/snowflake-off.svg index 717e26a18..ffd3c3994 100644 --- a/icons/snowflake-off.svg +++ b/icons/snowflake-off.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/snowflake.svg b/icons/snowflake.svg index 07c444b30..f70a6b07c 100644 --- a/icons/snowflake.svg +++ b/icons/snowflake.svg @@ -1,17 +1,6 @@ - - - - - - - - - - - - + diff --git a/icons/snowman.svg b/icons/snowman.svg index f04421b0d..d9f53f44d 100644 --- a/icons/snowman.svg +++ b/icons/snowman.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/soccer-field.svg b/icons/soccer-field.svg index 73bb1bd8c..487519286 100644 --- a/icons/soccer-field.svg +++ b/icons/soccer-field.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/social-off.svg b/icons/social-off.svg index 00c342e95..4edf49d56 100644 --- a/icons/social-off.svg +++ b/icons/social-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/social.svg b/icons/social.svg index 3fcc12bca..a716a8baa 100644 --- a/icons/social.svg +++ b/icons/social.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/sock.svg b/icons/sock.svg index acd174910..d5bace9fc 100644 --- a/icons/sock.svg +++ b/icons/sock.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sofa-off.svg b/icons/sofa-off.svg index ac7aa548b..8602ee066 100644 --- a/icons/sofa-off.svg +++ b/icons/sofa-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sofa.svg b/icons/sofa.svg index b1c7b854d..d8afdaee7 100644 --- a/icons/sofa.svg +++ b/icons/sofa.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sort-0-9.svg b/icons/sort-0-9.svg index 3b812f73c..36b21c86a 100644 --- a/icons/sort-0-9.svg +++ b/icons/sort-0-9.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sort-9-0.svg b/icons/sort-9-0.svg index 17275e846..a5e6e8f8a 100644 --- a/icons/sort-9-0.svg +++ b/icons/sort-9-0.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sort-a-z.svg b/icons/sort-a-z.svg index 7a9b63554..477263d32 100644 --- a/icons/sort-a-z.svg +++ b/icons/sort-a-z.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sort-ascending-2.svg b/icons/sort-ascending-2.svg index 662fb6272..4643a980d 100644 --- a/icons/sort-ascending-2.svg +++ b/icons/sort-ascending-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sort-ascending-letters.svg b/icons/sort-ascending-letters.svg index cbc091138..6457fd461 100644 --- a/icons/sort-ascending-letters.svg +++ b/icons/sort-ascending-letters.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sort-ascending-numbers.svg b/icons/sort-ascending-numbers.svg index 84c2d83bd..5ef45c2a8 100644 --- a/icons/sort-ascending-numbers.svg +++ b/icons/sort-ascending-numbers.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sort-ascending.svg b/icons/sort-ascending.svg index 68927f0db..842edeaac 100644 --- a/icons/sort-ascending.svg +++ b/icons/sort-ascending.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sort-descending-2.svg b/icons/sort-descending-2.svg index b3f153f1d..d2e826144 100644 --- a/icons/sort-descending-2.svg +++ b/icons/sort-descending-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sort-descending-letters.svg b/icons/sort-descending-letters.svg index e5b0ceb0d..5656cce35 100644 --- a/icons/sort-descending-letters.svg +++ b/icons/sort-descending-letters.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sort-descending-numbers.svg b/icons/sort-descending-numbers.svg index 9eb352c54..fc4c7e210 100644 --- a/icons/sort-descending-numbers.svg +++ b/icons/sort-descending-numbers.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sort-descending.svg b/icons/sort-descending.svg index 71ad3de57..279dc5a27 100644 --- a/icons/sort-descending.svg +++ b/icons/sort-descending.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sort-z-a.svg b/icons/sort-z-a.svg index 43fc44934..30c6f0c98 100644 --- a/icons/sort-z-a.svg +++ b/icons/sort-z-a.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/sos.svg b/icons/sos.svg index 3ecac456c..0bfcb25ff 100644 --- a/icons/sos.svg +++ b/icons/sos.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/soup-off.svg b/icons/soup-off.svg index be157f2b5..ec03bd0c4 100644 --- a/icons/soup-off.svg +++ b/icons/soup-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/soup.svg b/icons/soup.svg index b8e3153ce..970032b60 100644 --- a/icons/soup.svg +++ b/icons/soup.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/source-code.svg b/icons/source-code.svg index 3cb3cb8f0..97002f226 100644 --- a/icons/source-code.svg +++ b/icons/source-code.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/space-off.svg b/icons/space-off.svg index 43f9418f6..6b383a146 100644 --- a/icons/space-off.svg +++ b/icons/space-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/spacing-horizontal.svg b/icons/spacing-horizontal.svg index ffbf75ff6..72fdb13b7 100644 --- a/icons/spacing-horizontal.svg +++ b/icons/spacing-horizontal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/spacing-vertical.svg b/icons/spacing-vertical.svg index 7467dc01c..2afe06de2 100644 --- a/icons/spacing-vertical.svg +++ b/icons/spacing-vertical.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/spade-filled.svg b/icons/spade-filled.svg new file mode 100644 index 000000000..e77ad7a7d --- /dev/null +++ b/icons/spade-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/speakerphone.svg b/icons/speakerphone.svg index f9cc34e80..3a670c211 100644 --- a/icons/speakerphone.svg +++ b/icons/speakerphone.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/speedboat.svg b/icons/speedboat.svg index 54520535a..1dce01e87 100644 --- a/icons/speedboat.svg +++ b/icons/speedboat.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/spider.svg b/icons/spider.svg index ccfcbb537..4ccc0e4e7 100644 --- a/icons/spider.svg +++ b/icons/spider.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/spiral-off.svg b/icons/spiral-off.svg index 6493b2255..30d2536cc 100644 --- a/icons/spiral-off.svg +++ b/icons/spiral-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/spiral.svg b/icons/spiral.svg index 3fe3a4c65..2c4bd5052 100644 --- a/icons/spiral.svg +++ b/icons/spiral.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/sport-billard.svg b/icons/sport-billard.svg index 2d86bbd4b..67ed1d55b 100644 --- a/icons/sport-billard.svg +++ b/icons/sport-billard.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/spray.svg b/icons/spray.svg index 6c06b38b0..8a44be52a 100644 --- a/icons/spray.svg +++ b/icons/spray.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/spy-off.svg b/icons/spy-off.svg index be428d648..a52826548 100644 --- a/icons/spy-off.svg +++ b/icons/spy-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/spy.svg b/icons/spy.svg index c0b6a6010..6918e2f26 100644 --- a/icons/spy.svg +++ b/icons/spy.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/square-arrow-down.svg b/icons/square-arrow-down.svg index 729dd29c4..345a0393a 100644 --- a/icons/square-arrow-down.svg +++ b/icons/square-arrow-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-arrow-left.svg b/icons/square-arrow-left.svg index eb508c595..3f1f771ff 100644 --- a/icons/square-arrow-left.svg +++ b/icons/square-arrow-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-arrow-right.svg b/icons/square-arrow-right.svg index f940a139b..03a7ee446 100644 --- a/icons/square-arrow-right.svg +++ b/icons/square-arrow-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-arrow-up.svg b/icons/square-arrow-up.svg index 1d9b23983..9ce498a6a 100644 --- a/icons/square-arrow-up.svg +++ b/icons/square-arrow-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-asterisk.svg b/icons/square-asterisk.svg index f6c3a3d8f..3b23fc3ae 100644 --- a/icons/square-asterisk.svg +++ b/icons/square-asterisk.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-check.svg b/icons/square-check.svg index 4280c0371..6388bc2f5 100644 --- a/icons/square-check.svg +++ b/icons/square-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-chevron-down.svg b/icons/square-chevron-down.svg index 206fcc4e6..f04bdffd0 100644 --- a/icons/square-chevron-down.svg +++ b/icons/square-chevron-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-chevron-left.svg b/icons/square-chevron-left.svg index 6acd611cb..07579b60d 100644 --- a/icons/square-chevron-left.svg +++ b/icons/square-chevron-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-chevron-right.svg b/icons/square-chevron-right.svg index 79f331437..d24086af9 100644 --- a/icons/square-chevron-right.svg +++ b/icons/square-chevron-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-chevron-up.svg b/icons/square-chevron-up.svg index 3322f6b60..6b6d2aacc 100644 --- a/icons/square-chevron-up.svg +++ b/icons/square-chevron-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-chevrons-down.svg b/icons/square-chevrons-down.svg index 3bb1c25f1..7a5d2ce59 100644 --- a/icons/square-chevrons-down.svg +++ b/icons/square-chevrons-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-chevrons-left.svg b/icons/square-chevrons-left.svg index 1899803fe..0bbbde092 100644 --- a/icons/square-chevrons-left.svg +++ b/icons/square-chevrons-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-chevrons-right.svg b/icons/square-chevrons-right.svg index fb439388c..5dfb84bdc 100644 --- a/icons/square-chevrons-right.svg +++ b/icons/square-chevrons-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-chevrons-up.svg b/icons/square-chevrons-up.svg index d724746c4..330fecf22 100644 --- a/icons/square-chevrons-up.svg +++ b/icons/square-chevrons-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-dot.svg b/icons/square-dot.svg index 1cd5accbc..bd51a439d 100644 --- a/icons/square-dot.svg +++ b/icons/square-dot.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-f0.svg b/icons/square-f0.svg index 2bd4870d9..75f0438e3 100644 --- a/icons/square-f0.svg +++ b/icons/square-f0.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f1.svg b/icons/square-f1.svg index 4bc8579c4..bbe164af5 100644 --- a/icons/square-f1.svg +++ b/icons/square-f1.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f2.svg b/icons/square-f2.svg index 5ad55e1f7..5062e07e5 100644 --- a/icons/square-f2.svg +++ b/icons/square-f2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f3.svg b/icons/square-f3.svg index cfb512c80..b1e342510 100644 --- a/icons/square-f3.svg +++ b/icons/square-f3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f4.svg b/icons/square-f4.svg index f5a946d74..1deecc1ad 100644 --- a/icons/square-f4.svg +++ b/icons/square-f4.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/square-f5.svg b/icons/square-f5.svg index 9c6229b24..e117297ad 100644 --- a/icons/square-f5.svg +++ b/icons/square-f5.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f6.svg b/icons/square-f6.svg index 06ff4f61a..f3233a8f3 100644 --- a/icons/square-f6.svg +++ b/icons/square-f6.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f7.svg b/icons/square-f7.svg index 870e9ef53..f85eb889a 100644 --- a/icons/square-f7.svg +++ b/icons/square-f7.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f8.svg b/icons/square-f8.svg index 6cc3c039c..047c10610 100644 --- a/icons/square-f8.svg +++ b/icons/square-f8.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-f9.svg b/icons/square-f9.svg index f5d415c51..40e91fd8f 100644 --- a/icons/square-f9.svg +++ b/icons/square-f9.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-forbid-2.svg b/icons/square-forbid-2.svg index 68e28dcd2..bbcbaa520 100644 --- a/icons/square-forbid-2.svg +++ b/icons/square-forbid-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-forbid.svg b/icons/square-forbid.svg index 2592ae810..a78d63027 100644 --- a/icons/square-forbid.svg +++ b/icons/square-forbid.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-half.svg b/icons/square-half.svg index 40400689c..b4f28a291 100644 --- a/icons/square-half.svg +++ b/icons/square-half.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/square-key.svg b/icons/square-key.svg index b2795a13e..478e556a4 100644 --- a/icons/square-key.svg +++ b/icons/square-key.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-letter-a.svg b/icons/square-letter-a.svg index 747c338a7..72d5210a2 100644 --- a/icons/square-letter-a.svg +++ b/icons/square-letter-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-b.svg b/icons/square-letter-b.svg index db66a3c0c..895bbd456 100644 --- a/icons/square-letter-b.svg +++ b/icons/square-letter-b.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-c.svg b/icons/square-letter-c.svg index b8ef339d5..6500a0d60 100644 --- a/icons/square-letter-c.svg +++ b/icons/square-letter-c.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-d.svg b/icons/square-letter-d.svg index 074c2ce73..240fdebdc 100644 --- a/icons/square-letter-d.svg +++ b/icons/square-letter-d.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-e.svg b/icons/square-letter-e.svg index 36942f4a8..00fddc5d5 100644 --- a/icons/square-letter-e.svg +++ b/icons/square-letter-e.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-f.svg b/icons/square-letter-f.svg index 714abb25a..bed938f16 100644 --- a/icons/square-letter-f.svg +++ b/icons/square-letter-f.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-g.svg b/icons/square-letter-g.svg index 4f7ed7150..49c7ab201 100644 --- a/icons/square-letter-g.svg +++ b/icons/square-letter-g.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-h.svg b/icons/square-letter-h.svg index 5421f6ff1..ddd495117 100644 --- a/icons/square-letter-h.svg +++ b/icons/square-letter-h.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-i.svg b/icons/square-letter-i.svg index 4ec9da1c1..c3de39bbe 100644 --- a/icons/square-letter-i.svg +++ b/icons/square-letter-i.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-j.svg b/icons/square-letter-j.svg index 927b1d557..ef79cb032 100644 --- a/icons/square-letter-j.svg +++ b/icons/square-letter-j.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-k.svg b/icons/square-letter-k.svg index 9e5b94ce4..b03e7e948 100644 --- a/icons/square-letter-k.svg +++ b/icons/square-letter-k.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-letter-l.svg b/icons/square-letter-l.svg index 29ad40567..f89dad7d1 100644 --- a/icons/square-letter-l.svg +++ b/icons/square-letter-l.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-m.svg b/icons/square-letter-m.svg index dbb651f92..d612c63e2 100644 --- a/icons/square-letter-m.svg +++ b/icons/square-letter-m.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-n.svg b/icons/square-letter-n.svg index dcae7dd98..7dc9f9b2d 100644 --- a/icons/square-letter-n.svg +++ b/icons/square-letter-n.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-o.svg b/icons/square-letter-o.svg index 881ac5421..533382311 100644 --- a/icons/square-letter-o.svg +++ b/icons/square-letter-o.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-p.svg b/icons/square-letter-p.svg index 5f074e04d..ce85c476d 100644 --- a/icons/square-letter-p.svg +++ b/icons/square-letter-p.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-q.svg b/icons/square-letter-q.svg index 01a35aa4d..d6cd4950b 100644 --- a/icons/square-letter-q.svg +++ b/icons/square-letter-q.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-r.svg b/icons/square-letter-r.svg index 8ffab7eaf..420500c42 100644 --- a/icons/square-letter-r.svg +++ b/icons/square-letter-r.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-s.svg b/icons/square-letter-s.svg index 8e1680427..c615ea60f 100644 --- a/icons/square-letter-s.svg +++ b/icons/square-letter-s.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-t.svg b/icons/square-letter-t.svg index 552a64fb6..5d4eaba85 100644 --- a/icons/square-letter-t.svg +++ b/icons/square-letter-t.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-u.svg b/icons/square-letter-u.svg index dd8354622..e5197868c 100644 --- a/icons/square-letter-u.svg +++ b/icons/square-letter-u.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-v.svg b/icons/square-letter-v.svg index 14784be31..5cc367f3e 100644 --- a/icons/square-letter-v.svg +++ b/icons/square-letter-v.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-w.svg b/icons/square-letter-w.svg index 9a12b47b2..5e5517485 100644 --- a/icons/square-letter-w.svg +++ b/icons/square-letter-w.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-letter-x.svg b/icons/square-letter-x.svg index 38790d530..7b9c10e4f 100644 --- a/icons/square-letter-x.svg +++ b/icons/square-letter-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-y.svg b/icons/square-letter-y.svg index ecda84269..c07506de5 100644 --- a/icons/square-letter-y.svg +++ b/icons/square-letter-y.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-letter-z.svg b/icons/square-letter-z.svg index d7edd3d6d..702d382b8 100644 --- a/icons/square-letter-z.svg +++ b/icons/square-letter-z.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-minus.svg b/icons/square-minus.svg index 278c12349..de8a15ac1 100644 --- a/icons/square-minus.svg +++ b/icons/square-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-0.svg b/icons/square-number-0.svg index 351e558ee..88bb97f18 100644 --- a/icons/square-number-0.svg +++ b/icons/square-number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-1.svg b/icons/square-number-1.svg index 6ef59f4dc..55cd9a0f8 100644 --- a/icons/square-number-1.svg +++ b/icons/square-number-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-2.svg b/icons/square-number-2.svg index 70764d475..3814e51d2 100644 --- a/icons/square-number-2.svg +++ b/icons/square-number-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-3.svg b/icons/square-number-3.svg index 794e8f64a..59921de6f 100644 --- a/icons/square-number-3.svg +++ b/icons/square-number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-4.svg b/icons/square-number-4.svg index 2f7ec3fd2..54fbc2c75 100644 --- a/icons/square-number-4.svg +++ b/icons/square-number-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-number-5.svg b/icons/square-number-5.svg index 2982b01f0..74cbfb01e 100644 --- a/icons/square-number-5.svg +++ b/icons/square-number-5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-6.svg b/icons/square-number-6.svg index 3fcd496f0..bdd3a1137 100644 --- a/icons/square-number-6.svg +++ b/icons/square-number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-7.svg b/icons/square-number-7.svg index 1d51d714e..82b3fa40a 100644 --- a/icons/square-number-7.svg +++ b/icons/square-number-7.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-8.svg b/icons/square-number-8.svg index 945bb30dd..baefd650a 100644 --- a/icons/square-number-8.svg +++ b/icons/square-number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-number-9.svg b/icons/square-number-9.svg index 400ffb43f..5b85fcb1b 100644 --- a/icons/square-number-9.svg +++ b/icons/square-number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-off.svg b/icons/square-off.svg index e0cc166e2..34d230bfe 100644 --- a/icons/square-off.svg +++ b/icons/square-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-plus.svg b/icons/square-plus.svg index 07a590345..4c78b565d 100644 --- a/icons/square-plus.svg +++ b/icons/square-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-root-2.svg b/icons/square-root-2.svg index da3952baa..e380d3c04 100644 --- a/icons/square-root-2.svg +++ b/icons/square-root-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rotated-filled.svg b/icons/square-rotated-filled.svg new file mode 100644 index 000000000..ca057f660 --- /dev/null +++ b/icons/square-rotated-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rotated-forbid-2.svg b/icons/square-rotated-forbid-2.svg index a5ace3579..938c3547d 100644 --- a/icons/square-rotated-forbid-2.svg +++ b/icons/square-rotated-forbid-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rotated-forbid.svg b/icons/square-rotated-forbid.svg index a331f2308..c2ab7ee9f 100644 --- a/icons/square-rotated-forbid.svg +++ b/icons/square-rotated-forbid.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rotated-off.svg b/icons/square-rotated-off.svg index 2f83ec235..fac767d5e 100644 --- a/icons/square-rotated-off.svg +++ b/icons/square-rotated-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-arrow-down.svg b/icons/square-rounded-arrow-down.svg index 0eca1b0a1..de605d08d 100644 --- a/icons/square-rounded-arrow-down.svg +++ b/icons/square-rounded-arrow-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-arrow-left.svg b/icons/square-rounded-arrow-left.svg index da6470fc6..a779edbdf 100644 --- a/icons/square-rounded-arrow-left.svg +++ b/icons/square-rounded-arrow-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-arrow-right.svg b/icons/square-rounded-arrow-right.svg index a7f5700e6..6c447942e 100644 --- a/icons/square-rounded-arrow-right.svg +++ b/icons/square-rounded-arrow-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-arrow-up.svg b/icons/square-rounded-arrow-up.svg index 29e3d1eaa..0ba2c9d4f 100644 --- a/icons/square-rounded-arrow-up.svg +++ b/icons/square-rounded-arrow-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-check.svg b/icons/square-rounded-check.svg index c7769022b..3d7c50ecd 100644 --- a/icons/square-rounded-check.svg +++ b/icons/square-rounded-check.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-chevron-down.svg b/icons/square-rounded-chevron-down.svg index bb794dc6c..814e7a681 100644 --- a/icons/square-rounded-chevron-down.svg +++ b/icons/square-rounded-chevron-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-chevron-left.svg b/icons/square-rounded-chevron-left.svg index 6a0e8ab40..60203bbfb 100644 --- a/icons/square-rounded-chevron-left.svg +++ b/icons/square-rounded-chevron-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-chevron-right.svg b/icons/square-rounded-chevron-right.svg index 7e7d1eda7..e3a73adb1 100644 --- a/icons/square-rounded-chevron-right.svg +++ b/icons/square-rounded-chevron-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-chevron-up.svg b/icons/square-rounded-chevron-up.svg index 4325c5be3..dca912567 100644 --- a/icons/square-rounded-chevron-up.svg +++ b/icons/square-rounded-chevron-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-chevrons-down.svg b/icons/square-rounded-chevrons-down.svg index 90e3420a9..0febfb4cc 100644 --- a/icons/square-rounded-chevrons-down.svg +++ b/icons/square-rounded-chevrons-down.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-chevrons-left.svg b/icons/square-rounded-chevrons-left.svg index 5248dc380..fc9af3e04 100644 --- a/icons/square-rounded-chevrons-left.svg +++ b/icons/square-rounded-chevrons-left.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-chevrons-right.svg b/icons/square-rounded-chevrons-right.svg index cad3ef15e..ff1df38cb 100644 --- a/icons/square-rounded-chevrons-right.svg +++ b/icons/square-rounded-chevrons-right.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-chevrons-up.svg b/icons/square-rounded-chevrons-up.svg index 2cfe3e738..15f7a3f32 100644 --- a/icons/square-rounded-chevrons-up.svg +++ b/icons/square-rounded-chevrons-up.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-filled.svg b/icons/square-rounded-filled.svg new file mode 100644 index 000000000..d1cfcff2d --- /dev/null +++ b/icons/square-rounded-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-a.svg b/icons/square-rounded-letter-a.svg index e5e8dccaa..58c64cba4 100644 --- a/icons/square-rounded-letter-a.svg +++ b/icons/square-rounded-letter-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-b.svg b/icons/square-rounded-letter-b.svg index a5f11bda5..1a19742d6 100644 --- a/icons/square-rounded-letter-b.svg +++ b/icons/square-rounded-letter-b.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-c.svg b/icons/square-rounded-letter-c.svg index ecca92c12..3b8520b37 100644 --- a/icons/square-rounded-letter-c.svg +++ b/icons/square-rounded-letter-c.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-d.svg b/icons/square-rounded-letter-d.svg index 2b47948d8..e1f321395 100644 --- a/icons/square-rounded-letter-d.svg +++ b/icons/square-rounded-letter-d.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-e.svg b/icons/square-rounded-letter-e.svg index 0d68552b7..135f4358d 100644 --- a/icons/square-rounded-letter-e.svg +++ b/icons/square-rounded-letter-e.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-f.svg b/icons/square-rounded-letter-f.svg index 9a6e15dda..6c73f8b46 100644 --- a/icons/square-rounded-letter-f.svg +++ b/icons/square-rounded-letter-f.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-g.svg b/icons/square-rounded-letter-g.svg index fe6035571..8ec27e9a6 100644 --- a/icons/square-rounded-letter-g.svg +++ b/icons/square-rounded-letter-g.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-h.svg b/icons/square-rounded-letter-h.svg index 8c94db299..cdea01e34 100644 --- a/icons/square-rounded-letter-h.svg +++ b/icons/square-rounded-letter-h.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-i.svg b/icons/square-rounded-letter-i.svg index f7d9a865d..004051b3d 100644 --- a/icons/square-rounded-letter-i.svg +++ b/icons/square-rounded-letter-i.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-j.svg b/icons/square-rounded-letter-j.svg index 6fe53d0ce..6b705ae4d 100644 --- a/icons/square-rounded-letter-j.svg +++ b/icons/square-rounded-letter-j.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-k.svg b/icons/square-rounded-letter-k.svg index 575d6f4aa..1922be83d 100644 --- a/icons/square-rounded-letter-k.svg +++ b/icons/square-rounded-letter-k.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/square-rounded-letter-l.svg b/icons/square-rounded-letter-l.svg index 9e7f0e88e..83d979bf8 100644 --- a/icons/square-rounded-letter-l.svg +++ b/icons/square-rounded-letter-l.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-m.svg b/icons/square-rounded-letter-m.svg index cb7815142..b9d935ef0 100644 --- a/icons/square-rounded-letter-m.svg +++ b/icons/square-rounded-letter-m.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-n.svg b/icons/square-rounded-letter-n.svg index c29ea0f1a..16acfadbf 100644 --- a/icons/square-rounded-letter-n.svg +++ b/icons/square-rounded-letter-n.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-o.svg b/icons/square-rounded-letter-o.svg index cf0866f01..53ca9cf55 100644 --- a/icons/square-rounded-letter-o.svg +++ b/icons/square-rounded-letter-o.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-p.svg b/icons/square-rounded-letter-p.svg index 9ea10a7c1..d3ace29ad 100644 --- a/icons/square-rounded-letter-p.svg +++ b/icons/square-rounded-letter-p.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-q.svg b/icons/square-rounded-letter-q.svg index 5a55d3f3b..33262fedf 100644 --- a/icons/square-rounded-letter-q.svg +++ b/icons/square-rounded-letter-q.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-r.svg b/icons/square-rounded-letter-r.svg index 11dbb8630..f6cd2f23b 100644 --- a/icons/square-rounded-letter-r.svg +++ b/icons/square-rounded-letter-r.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-s.svg b/icons/square-rounded-letter-s.svg index a1bd8dd8e..e6ff2847e 100644 --- a/icons/square-rounded-letter-s.svg +++ b/icons/square-rounded-letter-s.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-t.svg b/icons/square-rounded-letter-t.svg index 4e40157c5..4c5a9a555 100644 --- a/icons/square-rounded-letter-t.svg +++ b/icons/square-rounded-letter-t.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-u.svg b/icons/square-rounded-letter-u.svg index b35cd5654..f7d10a420 100644 --- a/icons/square-rounded-letter-u.svg +++ b/icons/square-rounded-letter-u.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-v.svg b/icons/square-rounded-letter-v.svg index 791ede284..7e273c1ea 100644 --- a/icons/square-rounded-letter-v.svg +++ b/icons/square-rounded-letter-v.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-w.svg b/icons/square-rounded-letter-w.svg index ac7a521fd..0e9d78c63 100644 --- a/icons/square-rounded-letter-w.svg +++ b/icons/square-rounded-letter-w.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-letter-x.svg b/icons/square-rounded-letter-x.svg index ee3a1bde7..3cda118d9 100644 --- a/icons/square-rounded-letter-x.svg +++ b/icons/square-rounded-letter-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-y.svg b/icons/square-rounded-letter-y.svg index b2e306152..8a7643780 100644 --- a/icons/square-rounded-letter-y.svg +++ b/icons/square-rounded-letter-y.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-letter-z.svg b/icons/square-rounded-letter-z.svg index 9280871f5..fe11e97a1 100644 --- a/icons/square-rounded-letter-z.svg +++ b/icons/square-rounded-letter-z.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-minus.svg b/icons/square-rounded-minus.svg index fbb6e41ec..ea9e70b5d 100644 --- a/icons/square-rounded-minus.svg +++ b/icons/square-rounded-minus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-0.svg b/icons/square-rounded-number-0.svg index a5e41c38e..aa9e8f78b 100644 --- a/icons/square-rounded-number-0.svg +++ b/icons/square-rounded-number-0.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-1.svg b/icons/square-rounded-number-1.svg index 091f97c53..b80f3f1f3 100644 --- a/icons/square-rounded-number-1.svg +++ b/icons/square-rounded-number-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-2.svg b/icons/square-rounded-number-2.svg index 64fd10411..d1e63923e 100644 --- a/icons/square-rounded-number-2.svg +++ b/icons/square-rounded-number-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-3.svg b/icons/square-rounded-number-3.svg index ef378b4e5..13a53a029 100644 --- a/icons/square-rounded-number-3.svg +++ b/icons/square-rounded-number-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-4.svg b/icons/square-rounded-number-4.svg index aebb509f0..fbe9f5adc 100644 --- a/icons/square-rounded-number-4.svg +++ b/icons/square-rounded-number-4.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-number-5.svg b/icons/square-rounded-number-5.svg index ad47a2630..a42ee3e5b 100644 --- a/icons/square-rounded-number-5.svg +++ b/icons/square-rounded-number-5.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-6.svg b/icons/square-rounded-number-6.svg index 9262cda04..39b05e81a 100644 --- a/icons/square-rounded-number-6.svg +++ b/icons/square-rounded-number-6.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-7.svg b/icons/square-rounded-number-7.svg index 49b25e5bb..62775da47 100644 --- a/icons/square-rounded-number-7.svg +++ b/icons/square-rounded-number-7.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-8.svg b/icons/square-rounded-number-8.svg index 60647ed0f..e7da8e851 100644 --- a/icons/square-rounded-number-8.svg +++ b/icons/square-rounded-number-8.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-number-9.svg b/icons/square-rounded-number-9.svg index 8f21b2bc1..009ffc70c 100644 --- a/icons/square-rounded-number-9.svg +++ b/icons/square-rounded-number-9.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-rounded-plus.svg b/icons/square-rounded-plus.svg index 8d1bfa177..69b491002 100644 --- a/icons/square-rounded-plus.svg +++ b/icons/square-rounded-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/square-rounded-x.svg b/icons/square-rounded-x.svg index 33a682795..298893bfc 100644 --- a/icons/square-rounded-x.svg +++ b/icons/square-rounded-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square-toggle-horizontal.svg b/icons/square-toggle-horizontal.svg index 0e120238c..2c91e9896 100644 --- a/icons/square-toggle-horizontal.svg +++ b/icons/square-toggle-horizontal.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/square-toggle.svg b/icons/square-toggle.svg index da0c4313c..fc174fe79 100644 --- a/icons/square-toggle.svg +++ b/icons/square-toggle.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/square-x.svg b/icons/square-x.svg index b8b0a7935..b01de15b3 100644 --- a/icons/square-x.svg +++ b/icons/square-x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/square.svg b/icons/square.svg index 369e585ce..51f4db2ad 100644 --- a/icons/square.svg +++ b/icons/square.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/squares-diagonal.svg b/icons/squares-diagonal.svg index 846d0fa19..1969f2b7b 100644 --- a/icons/squares-diagonal.svg +++ b/icons/squares-diagonal.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/squares-filled.svg b/icons/squares-filled.svg index 5c0713bf5..64553d1eb 100644 --- a/icons/squares-filled.svg +++ b/icons/squares-filled.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/stack-2.svg b/icons/stack-2.svg index 62e126d9d..ad921f487 100644 --- a/icons/stack-2.svg +++ b/icons/stack-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/stack-3.svg b/icons/stack-3.svg index dff74286f..33b2e91a9 100644 --- a/icons/stack-3.svg +++ b/icons/stack-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stack-pop.svg b/icons/stack-pop.svg index 620f25d8e..0ab05b901 100644 --- a/icons/stack-pop.svg +++ b/icons/stack-pop.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stack-push.svg b/icons/stack-push.svg index 10ab434ef..66365686e 100644 --- a/icons/stack-push.svg +++ b/icons/stack-push.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stack.svg b/icons/stack.svg index c07149a86..e8c3a3935 100644 --- a/icons/stack.svg +++ b/icons/stack.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/stairs-down.svg b/icons/stairs-down.svg index 5fae629a5..9f852775c 100644 --- a/icons/stairs-down.svg +++ b/icons/stairs-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/stairs-up.svg b/icons/stairs-up.svg index 8d5474406..63fa288e3 100644 --- a/icons/stairs-up.svg +++ b/icons/stairs-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/star-filled.svg b/icons/star-filled.svg new file mode 100644 index 000000000..615d201e4 --- /dev/null +++ b/icons/star-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/star-half-filled.svg b/icons/star-half-filled.svg new file mode 100644 index 000000000..0cc26893f --- /dev/null +++ b/icons/star-half-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/star-off.svg b/icons/star-off.svg index 31d86d22d..59952269f 100644 --- a/icons/star-off.svg +++ b/icons/star-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/stars-filled.svg b/icons/stars-filled.svg new file mode 100644 index 000000000..5987d9f60 --- /dev/null +++ b/icons/stars-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/stars-off.svg b/icons/stars-off.svg index d122096bb..afad5bd65 100644 --- a/icons/stars-off.svg +++ b/icons/stars-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stars.svg b/icons/stars.svg index 82796a2a5..d34b67f08 100644 --- a/icons/stars.svg +++ b/icons/stars.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/status-change.svg b/icons/status-change.svg index b5a621f24..c965d8975 100644 --- a/icons/status-change.svg +++ b/icons/status-change.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/steam.svg b/icons/steam.svg index b137dddc4..0f8919991 100644 --- a/icons/steam.svg +++ b/icons/steam.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/steering-wheel-off.svg b/icons/steering-wheel-off.svg index d97721a96..99afe4303 100644 --- a/icons/steering-wheel-off.svg +++ b/icons/steering-wheel-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/steering-wheel.svg b/icons/steering-wheel.svg index e67f77d66..c64356df8 100644 --- a/icons/steering-wheel.svg +++ b/icons/steering-wheel.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/step-into.svg b/icons/step-into.svg index 7520893dd..9e4dbfeff 100644 --- a/icons/step-into.svg +++ b/icons/step-into.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/step-out.svg b/icons/step-out.svg index 134c63c2d..5dddc946e 100644 --- a/icons/step-out.svg +++ b/icons/step-out.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stereo-glasses.svg b/icons/stereo-glasses.svg index 2309a1a88..0ed754522 100644 --- a/icons/stereo-glasses.svg +++ b/icons/stereo-glasses.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/stethoscope-off.svg b/icons/stethoscope-off.svg index 51882d376..355251d2c 100644 --- a/icons/stethoscope-off.svg +++ b/icons/stethoscope-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/stethoscope.svg b/icons/stethoscope.svg index c17fc38b9..5216f96d2 100644 --- a/icons/stethoscope.svg +++ b/icons/stethoscope.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sticker.svg b/icons/sticker.svg index ea904bc67..6141bc437 100644 --- a/icons/sticker.svg +++ b/icons/sticker.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/storm-off.svg b/icons/storm-off.svg index cb24754fb..380d923d3 100644 --- a/icons/storm-off.svg +++ b/icons/storm-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/storm.svg b/icons/storm.svg index 1f58ee13c..1f8b0487b 100644 --- a/icons/storm.svg +++ b/icons/storm.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/stretching.svg b/icons/stretching.svg index 92cb4aca4..236ea85c5 100644 --- a/icons/stretching.svg +++ b/icons/stretching.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/strikethrough.svg b/icons/strikethrough.svg index 759ad4d1b..8712a55f1 100644 --- a/icons/strikethrough.svg +++ b/icons/strikethrough.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/submarine.svg b/icons/submarine.svg index 522df05d5..f0825b25d 100644 --- a/icons/submarine.svg +++ b/icons/submarine.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/subscript.svg b/icons/subscript.svg index 7f04cfc70..f22d0ec37 100644 --- a/icons/subscript.svg +++ b/icons/subscript.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/subtask.svg b/icons/subtask.svg index 407cfec9f..c07ae97d4 100644 --- a/icons/subtask.svg +++ b/icons/subtask.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sum-off.svg b/icons/sum-off.svg index d56e3d074..045f30825 100644 --- a/icons/sum-off.svg +++ b/icons/sum-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sun-filled.svg b/icons/sun-filled.svg new file mode 100644 index 000000000..fd453a6b6 --- /dev/null +++ b/icons/sun-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/sun-high.svg b/icons/sun-high.svg index adf18d3a7..1ffb42e63 100644 --- a/icons/sun-high.svg +++ b/icons/sun-high.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/sun-low.svg b/icons/sun-low.svg index df131d6d2..ed3998ec4 100644 --- a/icons/sun-low.svg +++ b/icons/sun-low.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/sun-moon.svg b/icons/sun-moon.svg index e21872030..de4933db0 100644 --- a/icons/sun-moon.svg +++ b/icons/sun-moon.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/sun-off.svg b/icons/sun-off.svg index 7e2b03a10..83d8b3ae3 100644 --- a/icons/sun-off.svg +++ b/icons/sun-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sun-wind.svg b/icons/sun-wind.svg index 0bc49886a..991fccb7d 100644 --- a/icons/sun-wind.svg +++ b/icons/sun-wind.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/sun.svg b/icons/sun.svg index d597f7c19..48b24bed4 100644 --- a/icons/sun.svg +++ b/icons/sun.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/sunglasses.svg b/icons/sunglasses.svg index 686bd7148..a9fcacfab 100644 --- a/icons/sunglasses.svg +++ b/icons/sunglasses.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/sunrise.svg b/icons/sunrise.svg index d14202410..bb9052a84 100644 --- a/icons/sunrise.svg +++ b/icons/sunrise.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sunset-2.svg b/icons/sunset-2.svg index 3ad550fc3..d73241636 100644 --- a/icons/sunset-2.svg +++ b/icons/sunset-2.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/sunset.svg b/icons/sunset.svg index 0bf18d4b7..f556cbe45 100644 --- a/icons/sunset.svg +++ b/icons/sunset.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/superscript.svg b/icons/superscript.svg index 59da37802..74ac7a1b1 100644 --- a/icons/superscript.svg +++ b/icons/superscript.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/svg.svg b/icons/svg.svg index 104e2d967..730a26c55 100644 --- a/icons/svg.svg +++ b/icons/svg.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/swimming.svg b/icons/swimming.svg index e3ff71c03..eedc12dbb 100644 --- a/icons/swimming.svg +++ b/icons/swimming.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/swipe.svg b/icons/swipe.svg index 8292f617e..6c9885e17 100644 --- a/icons/swipe.svg +++ b/icons/swipe.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/switch-2.svg b/icons/switch-2.svg index 650d26bc2..eac41d864 100644 --- a/icons/switch-2.svg +++ b/icons/switch-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/switch-3.svg b/icons/switch-3.svg index 4a1615bcd..62be85467 100644 --- a/icons/switch-3.svg +++ b/icons/switch-3.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/switch-horizontal.svg b/icons/switch-horizontal.svg index cb09b624a..f308cbc59 100644 --- a/icons/switch-horizontal.svg +++ b/icons/switch-horizontal.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/switch-vertical.svg b/icons/switch-vertical.svg index 76914296e..65d539d09 100644 --- a/icons/switch-vertical.svg +++ b/icons/switch-vertical.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/switch.svg b/icons/switch.svg index b3e3ce49c..b7ebef454 100644 --- a/icons/switch.svg +++ b/icons/switch.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/sword-off.svg b/icons/sword-off.svg index b58eadc63..2c9a8189b 100644 --- a/icons/sword-off.svg +++ b/icons/sword-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/sword.svg b/icons/sword.svg index 55209b7ea..b782158e4 100644 --- a/icons/sword.svg +++ b/icons/sword.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/swords.svg b/icons/swords.svg index a70607a5f..34c916039 100644 --- a/icons/swords.svg +++ b/icons/swords.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/table-alias.svg b/icons/table-alias.svg index ba4e46255..879dd5da1 100644 --- a/icons/table-alias.svg +++ b/icons/table-alias.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/table-off.svg b/icons/table-off.svg index ff5d9a1b0..255284868 100644 --- a/icons/table-off.svg +++ b/icons/table-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/table-options.svg b/icons/table-options.svg index e02236bed..3c307fac5 100644 --- a/icons/table-options.svg +++ b/icons/table-options.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/table-shortcut.svg b/icons/table-shortcut.svg index 470f9544d..0f3688f3e 100644 --- a/icons/table-shortcut.svg +++ b/icons/table-shortcut.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/table.svg b/icons/table.svg index db0dd7786..e3eed46b4 100644 --- a/icons/table.svg +++ b/icons/table.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/tag-off.svg b/icons/tag-off.svg index 20834ab47..99c178568 100644 --- a/icons/tag-off.svg +++ b/icons/tag-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/tag.svg b/icons/tag.svg index 6835c7412..f63469226 100644 --- a/icons/tag.svg +++ b/icons/tag.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/tags-off.svg b/icons/tags-off.svg index 0901a0316..281482da6 100644 --- a/icons/tags-off.svg +++ b/icons/tags-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/tags.svg b/icons/tags.svg index 8f4f017dc..365da2b33 100644 --- a/icons/tags.svg +++ b/icons/tags.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/tallymark-1.svg b/icons/tallymark-1.svg index 6329e5299..5c060f2e7 100644 --- a/icons/tallymark-1.svg +++ b/icons/tallymark-1.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/tallymark-2.svg b/icons/tallymark-2.svg index 8e9f774ae..261651ab6 100644 --- a/icons/tallymark-2.svg +++ b/icons/tallymark-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/tallymark-3.svg b/icons/tallymark-3.svg index 9bb4e8b43..395cacff2 100644 --- a/icons/tallymark-3.svg +++ b/icons/tallymark-3.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/tallymark-4.svg b/icons/tallymark-4.svg index 118442038..cef30fd2d 100644 --- a/icons/tallymark-4.svg +++ b/icons/tallymark-4.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/tallymarks.svg b/icons/tallymarks.svg index 6ceb92f06..6ce2bd31b 100644 --- a/icons/tallymarks.svg +++ b/icons/tallymarks.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tank.svg b/icons/tank.svg index 0f7e3b493..73858c0bc 100644 --- a/icons/tank.svg +++ b/icons/tank.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/target-arrow.svg b/icons/target-arrow.svg index 149dbda23..34f313179 100644 --- a/icons/target-arrow.svg +++ b/icons/target-arrow.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/target-off.svg b/icons/target-off.svg index c6fb526d1..2b02877e5 100644 --- a/icons/target-off.svg +++ b/icons/target-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/target.svg b/icons/target.svg index cc45caac1..8d408f0fe 100644 --- a/icons/target.svg +++ b/icons/target.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/teapot.svg b/icons/teapot.svg index 80d8fc3ed..7e38bb5f7 100644 --- a/icons/teapot.svg +++ b/icons/teapot.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/telescope-off.svg b/icons/telescope-off.svg index e38a6d499..71d5bd6f9 100644 --- a/icons/telescope-off.svg +++ b/icons/telescope-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/telescope.svg b/icons/telescope.svg index 293d906a9..09a77f962 100644 --- a/icons/telescope.svg +++ b/icons/telescope.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/temperature-celsius.svg b/icons/temperature-celsius.svg index 5b020c30a..ebb307ba0 100644 --- a/icons/temperature-celsius.svg +++ b/icons/temperature-celsius.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/temperature-fahrenheit.svg b/icons/temperature-fahrenheit.svg index 9e5012c9c..726df256a 100644 --- a/icons/temperature-fahrenheit.svg +++ b/icons/temperature-fahrenheit.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/temperature-minus.svg b/icons/temperature-minus.svg index eb4d308cb..9564e599b 100644 --- a/icons/temperature-minus.svg +++ b/icons/temperature-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/temperature-off.svg b/icons/temperature-off.svg index d5d07c345..c577a03a3 100644 --- a/icons/temperature-off.svg +++ b/icons/temperature-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/temperature-plus.svg b/icons/temperature-plus.svg index 8cc1b901e..407d76c60 100644 --- a/icons/temperature-plus.svg +++ b/icons/temperature-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/temperature.svg b/icons/temperature.svg index 356301595..132407448 100644 --- a/icons/temperature.svg +++ b/icons/temperature.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/template-off.svg b/icons/template-off.svg index 126b48757..fc0e25cef 100644 --- a/icons/template-off.svg +++ b/icons/template-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/template.svg b/icons/template.svg index 5db5ec5fd..66e449565 100644 --- a/icons/template.svg +++ b/icons/template.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tent-off.svg b/icons/tent-off.svg index 965862e96..1ec5c250c 100644 --- a/icons/tent-off.svg +++ b/icons/tent-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/terminal-2.svg b/icons/terminal-2.svg index b69dbc4b9..a3b54e881 100644 --- a/icons/terminal-2.svg +++ b/icons/terminal-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/terminal.svg b/icons/terminal.svg index ba46742af..054a92593 100644 --- a/icons/terminal.svg +++ b/icons/terminal.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/test-pipe-2.svg b/icons/test-pipe-2.svg index 10c756c99..76d7ff5ed 100644 --- a/icons/test-pipe-2.svg +++ b/icons/test-pipe-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/test-pipe-off.svg b/icons/test-pipe-off.svg index a82b579cb..c94da3252 100644 --- a/icons/test-pipe-off.svg +++ b/icons/test-pipe-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/test-pipe.svg b/icons/test-pipe.svg index 88d9a424c..62ffac01d 100644 --- a/icons/test-pipe.svg +++ b/icons/test-pipe.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/tex.svg b/icons/tex.svg index 205711755..891566356 100644 --- a/icons/tex.svg +++ b/icons/tex.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/text-caption.svg b/icons/text-caption.svg index 6ef38e54b..91b6f61a6 100644 --- a/icons/text-caption.svg +++ b/icons/text-caption.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/text-color.svg b/icons/text-color.svg index 45c5a5211..13c22084a 100644 --- a/icons/text-color.svg +++ b/icons/text-color.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/text-decrease.svg b/icons/text-decrease.svg index 18da4f64f..e4684bb5d 100644 --- a/icons/text-decrease.svg +++ b/icons/text-decrease.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/text-direction-ltr.svg b/icons/text-direction-ltr.svg index 40deea3a0..2c2922b32 100644 --- a/icons/text-direction-ltr.svg +++ b/icons/text-direction-ltr.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/text-direction-rtl.svg b/icons/text-direction-rtl.svg index 06c7bab12..5674c4255 100644 --- a/icons/text-direction-rtl.svg +++ b/icons/text-direction-rtl.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/text-increase.svg b/icons/text-increase.svg index 70b6486dc..c2fe09722 100644 --- a/icons/text-increase.svg +++ b/icons/text-increase.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/text-orientation.svg b/icons/text-orientation.svg index 6b760feb4..def672db8 100644 --- a/icons/text-orientation.svg +++ b/icons/text-orientation.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/text-plus.svg b/icons/text-plus.svg index 8a31e22d5..ea7ab4d52 100644 --- a/icons/text-plus.svg +++ b/icons/text-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/text-recognition.svg b/icons/text-recognition.svg index f75f53cb6..ec1ed1398 100644 --- a/icons/text-recognition.svg +++ b/icons/text-recognition.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/text-resize.svg b/icons/text-resize.svg index a113947b0..e286ef7d8 100644 --- a/icons/text-resize.svg +++ b/icons/text-resize.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/text-size.svg b/icons/text-size.svg index 3c11f1515..5e4935718 100644 --- a/icons/text-size.svg +++ b/icons/text-size.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/text-spellcheck.svg b/icons/text-spellcheck.svg index ea381fb27..0ef980db9 100644 --- a/icons/text-spellcheck.svg +++ b/icons/text-spellcheck.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/text-wrap-disabled.svg b/icons/text-wrap-disabled.svg index 184bc55b7..8a3b2036d 100644 --- a/icons/text-wrap-disabled.svg +++ b/icons/text-wrap-disabled.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/text-wrap.svg b/icons/text-wrap.svg index 5b591b2d3..4537f9f8f 100644 --- a/icons/text-wrap.svg +++ b/icons/text-wrap.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/texture.svg b/icons/texture.svg index 6a620bb85..0c6ab0eba 100644 --- a/icons/texture.svg +++ b/icons/texture.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/thermometer.svg b/icons/thermometer.svg index 671629102..da5e9a75f 100644 --- a/icons/thermometer.svg +++ b/icons/thermometer.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/thumb-down-filled.svg b/icons/thumb-down-filled.svg new file mode 100644 index 000000000..fbca9ce4f --- /dev/null +++ b/icons/thumb-down-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/thumb-down-off.svg b/icons/thumb-down-off.svg index 95b1cd988..90ac94ef7 100644 --- a/icons/thumb-down-off.svg +++ b/icons/thumb-down-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/thumb-up-filled.svg b/icons/thumb-up-filled.svg new file mode 100644 index 000000000..a96653a17 --- /dev/null +++ b/icons/thumb-up-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/thumb-up-off.svg b/icons/thumb-up-off.svg index 8af09f0f9..6966a98a8 100644 --- a/icons/thumb-up-off.svg +++ b/icons/thumb-up-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/tic-tac.svg b/icons/tic-tac.svg index 7642b897b..92a2da381 100644 --- a/icons/tic-tac.svg +++ b/icons/tic-tac.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/ticket-off.svg b/icons/ticket-off.svg index 8d81f8b15..17f4ab4dd 100644 --- a/icons/ticket-off.svg +++ b/icons/ticket-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ticket.svg b/icons/ticket.svg index 1d7ea07d8..ada461a08 100644 --- a/icons/ticket.svg +++ b/icons/ticket.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/tie.svg b/icons/tie.svg index 68dfa7442..b44de3e89 100644 --- a/icons/tie.svg +++ b/icons/tie.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/tilt-shift-off.svg b/icons/tilt-shift-off.svg index fd911f14c..6e2667316 100644 --- a/icons/tilt-shift-off.svg +++ b/icons/tilt-shift-off.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/tilt-shift.svg b/icons/tilt-shift.svg index 1d1417d5e..5f3df1a4c 100644 --- a/icons/tilt-shift.svg +++ b/icons/tilt-shift.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/timeline-event-exclamation.svg b/icons/timeline-event-exclamation.svg index 4d193a896..5d485cbfc 100644 --- a/icons/timeline-event-exclamation.svg +++ b/icons/timeline-event-exclamation.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/timeline-event-minus.svg b/icons/timeline-event-minus.svg index 8e83e8368..344d3234c 100644 --- a/icons/timeline-event-minus.svg +++ b/icons/timeline-event-minus.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/timeline-event-plus.svg b/icons/timeline-event-plus.svg index 54f0d2df8..41cc27b2c 100644 --- a/icons/timeline-event-plus.svg +++ b/icons/timeline-event-plus.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/timeline-event-text.svg b/icons/timeline-event-text.svg index e59664c4e..1661a7b3c 100644 --- a/icons/timeline-event-text.svg +++ b/icons/timeline-event-text.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/timeline-event-x.svg b/icons/timeline-event-x.svg index 17ab28d70..42268701a 100644 --- a/icons/timeline-event-x.svg +++ b/icons/timeline-event-x.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/timeline-event.svg b/icons/timeline-event.svg index 6ce57d907..a640f09e7 100644 --- a/icons/timeline-event.svg +++ b/icons/timeline-event.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/timeline.svg b/icons/timeline.svg index 6cd6373bb..d0b5f1d25 100644 --- a/icons/timeline.svg +++ b/icons/timeline.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tir.svg b/icons/tir.svg index c51a68156..d966960db 100644 --- a/icons/tir.svg +++ b/icons/tir.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/toggle-left.svg b/icons/toggle-left.svg index bdb6a3834..cbc37bcab 100644 --- a/icons/toggle-left.svg +++ b/icons/toggle-left.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/toggle-right.svg b/icons/toggle-right.svg index 0b21f2f9f..7f12b63de 100644 --- a/icons/toggle-right.svg +++ b/icons/toggle-right.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/toilet-paper-off.svg b/icons/toilet-paper-off.svg index 0afad3fac..1958222c5 100644 --- a/icons/toilet-paper-off.svg +++ b/icons/toilet-paper-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/toilet-paper.svg b/icons/toilet-paper.svg index 869d7c086..8ddbea0e5 100644 --- a/icons/toilet-paper.svg +++ b/icons/toilet-paper.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tools-kitchen-2-off.svg b/icons/tools-kitchen-2-off.svg index ab6bd33aa..7522fee15 100644 --- a/icons/tools-kitchen-2-off.svg +++ b/icons/tools-kitchen-2-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tools-kitchen-off.svg b/icons/tools-kitchen-off.svg index d72747547..0c54babcf 100644 --- a/icons/tools-kitchen-off.svg +++ b/icons/tools-kitchen-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/tools-kitchen.svg b/icons/tools-kitchen.svg index 7f34d22ae..ad602f9dc 100644 --- a/icons/tools-kitchen.svg +++ b/icons/tools-kitchen.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tools-off.svg b/icons/tools-off.svg index 53f33f41b..7256b298b 100644 --- a/icons/tools-off.svg +++ b/icons/tools-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/tools.svg b/icons/tools.svg index b2f942a39..31949ec04 100644 --- a/icons/tools.svg +++ b/icons/tools.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/tooltip.svg b/icons/tooltip.svg index 374519b28..d66607df1 100644 --- a/icons/tooltip.svg +++ b/icons/tooltip.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/topology-bus.svg b/icons/topology-bus.svg index 3f076d764..93fe1e634 100644 --- a/icons/topology-bus.svg +++ b/icons/topology-bus.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/topology-complex.svg b/icons/topology-complex.svg index 263c42a0c..a5027565f 100644 --- a/icons/topology-complex.svg +++ b/icons/topology-complex.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/topology-full-hierarchy.svg b/icons/topology-full-hierarchy.svg index 155306f1c..3727dcb3e 100644 --- a/icons/topology-full-hierarchy.svg +++ b/icons/topology-full-hierarchy.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/topology-full.svg b/icons/topology-full.svg index 4f4c18bd1..06b96a265 100644 --- a/icons/topology-full.svg +++ b/icons/topology-full.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/topology-ring-2.svg b/icons/topology-ring-2.svg index 34d71a55d..413d65faf 100644 --- a/icons/topology-ring-2.svg +++ b/icons/topology-ring-2.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/topology-ring-3.svg b/icons/topology-ring-3.svg index 69c4f7089..3680c5752 100644 --- a/icons/topology-ring-3.svg +++ b/icons/topology-ring-3.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/topology-ring.svg b/icons/topology-ring.svg index 044dce2a0..8f5f6f910 100644 --- a/icons/topology-ring.svg +++ b/icons/topology-ring.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/topology-star-2.svg b/icons/topology-star-2.svg index f1be0addb..e4f3e225f 100644 --- a/icons/topology-star-2.svg +++ b/icons/topology-star-2.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/topology-star-3.svg b/icons/topology-star-3.svg index 36bb3d3a2..0fbc83674 100644 --- a/icons/topology-star-3.svg +++ b/icons/topology-star-3.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/topology-star-ring-2.svg b/icons/topology-star-ring-2.svg index ebfb3b4e8..778ea37a9 100644 --- a/icons/topology-star-ring-2.svg +++ b/icons/topology-star-ring-2.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/topology-star-ring-3.svg b/icons/topology-star-ring-3.svg index 8f76f94ba..9ed233204 100644 --- a/icons/topology-star-ring-3.svg +++ b/icons/topology-star-ring-3.svg @@ -1,24 +1,6 @@ - - - - - - - - - - - - - - - - - - - + diff --git a/icons/topology-star-ring.svg b/icons/topology-star-ring.svg index 369626a44..50f4e66f3 100644 --- a/icons/topology-star-ring.svg +++ b/icons/topology-star-ring.svg @@ -1,18 +1,6 @@ - - - - - - - - - - - - - + diff --git a/icons/topology-star.svg b/icons/topology-star.svg index 50f7e761c..0014a1e4e 100644 --- a/icons/topology-star.svg +++ b/icons/topology-star.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/torii.svg b/icons/torii.svg index 775d9bc8e..9ab644c03 100644 --- a/icons/torii.svg +++ b/icons/torii.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tornado.svg b/icons/tornado.svg index 0dc5bfdba..e9e356efc 100644 --- a/icons/tornado.svg +++ b/icons/tornado.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tournament.svg b/icons/tournament.svg index 0ac279a1b..1ced015eb 100644 --- a/icons/tournament.svg +++ b/icons/tournament.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/tower-off.svg b/icons/tower-off.svg index 87051f9e3..e9a695000 100644 --- a/icons/tower-off.svg +++ b/icons/tower-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/tower.svg b/icons/tower.svg index c1be30964..cf35f8fa3 100644 --- a/icons/tower.svg +++ b/icons/tower.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/tractor.svg b/icons/tractor.svg index 5ae60951b..85d7e65af 100644 --- a/icons/tractor.svg +++ b/icons/tractor.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/trademark.svg b/icons/trademark.svg index 599d48587..43eab46dc 100644 --- a/icons/trademark.svg +++ b/icons/trademark.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/traffic-cone-off.svg b/icons/traffic-cone-off.svg index c6ad07d6b..ada12bbb3 100644 --- a/icons/traffic-cone-off.svg +++ b/icons/traffic-cone-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/traffic-cone.svg b/icons/traffic-cone.svg index 62568aea8..506dbf114 100644 --- a/icons/traffic-cone.svg +++ b/icons/traffic-cone.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/traffic-lights-off.svg b/icons/traffic-lights-off.svg index f85d53c3c..285c3d0da 100644 --- a/icons/traffic-lights-off.svg +++ b/icons/traffic-lights-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/traffic-lights.svg b/icons/traffic-lights.svg index 642445fdb..202770166 100644 --- a/icons/traffic-lights.svg +++ b/icons/traffic-lights.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/train.svg b/icons/train.svg index c00f227e9..90434cf63 100644 --- a/icons/train.svg +++ b/icons/train.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/transfer-in.svg b/icons/transfer-in.svg index 912b96072..5107fe7cf 100644 --- a/icons/transfer-in.svg +++ b/icons/transfer-in.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/transfer-out.svg b/icons/transfer-out.svg index 10238a6ef..38045f0aa 100644 --- a/icons/transfer-out.svg +++ b/icons/transfer-out.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/transform-filled.svg b/icons/transform-filled.svg new file mode 100644 index 000000000..906675781 --- /dev/null +++ b/icons/transform-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/transform.svg b/icons/transform.svg index bc77544e7..d86223fcb 100644 --- a/icons/transform.svg +++ b/icons/transform.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/transition-bottom.svg b/icons/transition-bottom.svg index 634a6b19e..5df516c51 100644 --- a/icons/transition-bottom.svg +++ b/icons/transition-bottom.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/transition-left.svg b/icons/transition-left.svg index 67589d077..abbf330df 100644 --- a/icons/transition-left.svg +++ b/icons/transition-left.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/transition-right.svg b/icons/transition-right.svg index eb3ab05d7..d003d199a 100644 --- a/icons/transition-right.svg +++ b/icons/transition-right.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/transition-top.svg b/icons/transition-top.svg index 08fe136b5..1c412bb77 100644 --- a/icons/transition-top.svg +++ b/icons/transition-top.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/trash-off.svg b/icons/trash-off.svg index 9fa691eca..a327ea1e5 100644 --- a/icons/trash-off.svg +++ b/icons/trash-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/trash-x.svg b/icons/trash-x.svg index 32034fb88..6b3cdcbc0 100644 --- a/icons/trash-x.svg +++ b/icons/trash-x.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/trash.svg b/icons/trash.svg index ee25c8486..72171ec91 100644 --- a/icons/trash.svg +++ b/icons/trash.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/tree.svg b/icons/tree.svg index b49c729b4..12a625d50 100644 --- a/icons/tree.svg +++ b/icons/tree.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/trees.svg b/icons/trees.svg index 5022b7e97..cec8c7ff7 100644 --- a/icons/trees.svg +++ b/icons/trees.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/trekking.svg b/icons/trekking.svg index d401d969e..3a193449b 100644 --- a/icons/trekking.svg +++ b/icons/trekking.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/trending-down-2.svg b/icons/trending-down-2.svg index d72d30fbc..62ad3f174 100644 --- a/icons/trending-down-2.svg +++ b/icons/trending-down-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trending-down-3.svg b/icons/trending-down-3.svg index e38381116..c5202c002 100644 --- a/icons/trending-down-3.svg +++ b/icons/trending-down-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trending-down.svg b/icons/trending-down.svg index 9d9f3cbfa..b7f68097f 100644 --- a/icons/trending-down.svg +++ b/icons/trending-down.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trending-up-2.svg b/icons/trending-up-2.svg index ac70a9a89..77665bc4e 100644 --- a/icons/trending-up-2.svg +++ b/icons/trending-up-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trending-up-3.svg b/icons/trending-up-3.svg index 1993a34ac..b5438a38f 100644 --- a/icons/trending-up-3.svg +++ b/icons/trending-up-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trending-up.svg b/icons/trending-up.svg index 7ffe6359a..3ef480d48 100644 --- a/icons/trending-up.svg +++ b/icons/trending-up.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/triangle-filled.svg b/icons/triangle-filled.svg new file mode 100644 index 000000000..5a2457dbf --- /dev/null +++ b/icons/triangle-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/triangle-inverted-filled.svg b/icons/triangle-inverted-filled.svg new file mode 100644 index 000000000..19c85cd80 --- /dev/null +++ b/icons/triangle-inverted-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/triangle-off.svg b/icons/triangle-off.svg index 48fa4e265..5b93fd90b 100644 --- a/icons/triangle-off.svg +++ b/icons/triangle-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/triangle-square-circle.svg b/icons/triangle-square-circle.svg index ce30e884e..82423b779 100644 --- a/icons/triangle-square-circle.svg +++ b/icons/triangle-square-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/triangles.svg b/icons/triangles.svg index cf20bf7dc..be07a1907 100644 --- a/icons/triangles.svg +++ b/icons/triangles.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trident.svg b/icons/trident.svg index de26834d8..ad404339a 100644 --- a/icons/trident.svg +++ b/icons/trident.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/trolley.svg b/icons/trolley.svg index a159026c5..7e0c8a031 100644 --- a/icons/trolley.svg +++ b/icons/trolley.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/trophy-filled.svg b/icons/trophy-filled.svg new file mode 100644 index 000000000..149f370da --- /dev/null +++ b/icons/trophy-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/trophy-off.svg b/icons/trophy-off.svg index 04f264b32..fd31db464 100644 --- a/icons/trophy-off.svg +++ b/icons/trophy-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/trophy.svg b/icons/trophy.svg index 0be82a6ee..bd2543677 100644 --- a/icons/trophy.svg +++ b/icons/trophy.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/trowel.svg b/icons/trowel.svg index 2de9ba87d..9d6e815fe 100644 --- a/icons/trowel.svg +++ b/icons/trowel.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/truck-delivery.svg b/icons/truck-delivery.svg index d2b73e2e5..85912cae9 100644 --- a/icons/truck-delivery.svg +++ b/icons/truck-delivery.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/truck-loading.svg b/icons/truck-loading.svg index 6c4969b9f..510e0a5d6 100644 --- a/icons/truck-loading.svg +++ b/icons/truck-loading.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/truck-off.svg b/icons/truck-off.svg index 0eac2adbf..03f2484ee 100644 --- a/icons/truck-off.svg +++ b/icons/truck-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/truck-return.svg b/icons/truck-return.svg index e376031cc..11aa405ab 100644 --- a/icons/truck-return.svg +++ b/icons/truck-return.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/truck.svg b/icons/truck.svg index da5f2d9bf..38c6e7458 100644 --- a/icons/truck.svg +++ b/icons/truck.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/txt.svg b/icons/txt.svg index de7558f6c..c63ecfb36 100644 --- a/icons/txt.svg +++ b/icons/txt.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/typography-off.svg b/icons/typography-off.svg index 8deed3a98..e1065cddb 100644 --- a/icons/typography-off.svg +++ b/icons/typography-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/typography.svg b/icons/typography.svg index 031ae875f..ac0adebde 100644 --- a/icons/typography.svg +++ b/icons/typography.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/uf-off.svg b/icons/uf-off.svg index e7fd1728b..8c775be7e 100644 --- a/icons/uf-off.svg +++ b/icons/uf-off.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/ufo.svg b/icons/ufo.svg index e7284142e..0fa5c0648 100644 --- a/icons/ufo.svg +++ b/icons/ufo.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/umbrella-filled.svg b/icons/umbrella-filled.svg new file mode 100644 index 000000000..52f7ea56a --- /dev/null +++ b/icons/umbrella-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/umbrella-off.svg b/icons/umbrella-off.svg index a10d1d11d..a5d0ac7e7 100644 --- a/icons/umbrella-off.svg +++ b/icons/umbrella-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/umbrella.svg b/icons/umbrella.svg index dd275df3e..a5f02a072 100644 --- a/icons/umbrella.svg +++ b/icons/umbrella.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/underline.svg b/icons/underline.svg index 2e9f72785..d5e48dc4c 100644 --- a/icons/underline.svg +++ b/icons/underline.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/unlink.svg b/icons/unlink.svg index dbcb967d2..662283f65 100644 --- a/icons/unlink.svg +++ b/icons/unlink.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/upload.svg b/icons/upload.svg index 9903c6c85..e9f7680b6 100644 --- a/icons/upload.svg +++ b/icons/upload.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/urgent.svg b/icons/urgent.svg index 3d0b3d37d..c84429517 100644 --- a/icons/urgent.svg +++ b/icons/urgent.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/usb.svg b/icons/usb.svg index 50140535a..6f7cdd100 100644 --- a/icons/usb.svg +++ b/icons/usb.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/user-check.svg b/icons/user-check.svg index ec3e9f3d5..631a43c90 100644 --- a/icons/user-check.svg +++ b/icons/user-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user-circle.svg b/icons/user-circle.svg index d4006de06..889e612dd 100644 --- a/icons/user-circle.svg +++ b/icons/user-circle.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user-exclamation.svg b/icons/user-exclamation.svg index 03d866baf..d2f90a288 100644 --- a/icons/user-exclamation.svg +++ b/icons/user-exclamation.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/user-minus.svg b/icons/user-minus.svg index 01593cab3..ac336cbfd 100644 --- a/icons/user-minus.svg +++ b/icons/user-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user-off.svg b/icons/user-off.svg index 6056fa6fb..614c444b4 100644 --- a/icons/user-off.svg +++ b/icons/user-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user-plus.svg b/icons/user-plus.svg index 25d71c1c5..262f86f42 100644 --- a/icons/user-plus.svg +++ b/icons/user-plus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user-search.svg b/icons/user-search.svg index 55836c104..f24062563 100644 --- a/icons/user-search.svg +++ b/icons/user-search.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/user-x.svg b/icons/user-x.svg index 3f62ab2fa..10ab2e94f 100644 --- a/icons/user-x.svg +++ b/icons/user-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/user.svg b/icons/user.svg index 9854e9266..b7f3bcf42 100644 --- a/icons/user.svg +++ b/icons/user.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/users.svg b/icons/users.svg index 71269c5d4..61555bbe3 100644 --- a/icons/users.svg +++ b/icons/users.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/uv-index.svg b/icons/uv-index.svg index 6c3a4d781..4289b2018 100644 --- a/icons/uv-index.svg +++ b/icons/uv-index.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/ux-circle.svg b/icons/ux-circle.svg index 6e0d77411..1016c2ee3 100644 --- a/icons/ux-circle.svg +++ b/icons/ux-circle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/vaccine-bottle-off.svg b/icons/vaccine-bottle-off.svg index 9302b409c..bcf3cc882 100644 --- a/icons/vaccine-bottle-off.svg +++ b/icons/vaccine-bottle-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/vaccine-bottle.svg b/icons/vaccine-bottle.svg index b1d64bd94..9491a6d46 100644 --- a/icons/vaccine-bottle.svg +++ b/icons/vaccine-bottle.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/vaccine-off.svg b/icons/vaccine-off.svg index dde916261..2ea55fba7 100644 --- a/icons/vaccine-off.svg +++ b/icons/vaccine-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/vaccine.svg b/icons/vaccine.svg index f9e84f55d..0627d01e5 100644 --- a/icons/vaccine.svg +++ b/icons/vaccine.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/vacuum-cleaner.svg b/icons/vacuum-cleaner.svg index 5e8ba1d3f..d3b271c12 100644 --- a/icons/vacuum-cleaner.svg +++ b/icons/vacuum-cleaner.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/variable-minus.svg b/icons/variable-minus.svg index ca948da16..5e6ad8f78 100644 --- a/icons/variable-minus.svg +++ b/icons/variable-minus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/variable-off.svg b/icons/variable-off.svg index 190428c1b..93a840913 100644 --- a/icons/variable-off.svg +++ b/icons/variable-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/variable-plus.svg b/icons/variable-plus.svg index 032c26983..4cab86b54 100644 --- a/icons/variable-plus.svg +++ b/icons/variable-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/variable.svg b/icons/variable.svg index c75c92120..0ef8334c6 100644 --- a/icons/variable.svg +++ b/icons/variable.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/vector-bezier-2.svg b/icons/vector-bezier-2.svg index 7a9ae62a6..4cb6198b8 100644 --- a/icons/vector-bezier-2.svg +++ b/icons/vector-bezier-2.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/vector-bezier-arc.svg b/icons/vector-bezier-arc.svg index e426c615b..b0bdc4c50 100644 --- a/icons/vector-bezier-arc.svg +++ b/icons/vector-bezier-arc.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/vector-bezier-circle.svg b/icons/vector-bezier-circle.svg index b50dfa4e6..fb7ad5beb 100644 --- a/icons/vector-bezier-circle.svg +++ b/icons/vector-bezier-circle.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/vector-bezier.svg b/icons/vector-bezier.svg index 727cb740a..faec813f9 100644 --- a/icons/vector-bezier.svg +++ b/icons/vector-bezier.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/vector-off.svg b/icons/vector-off.svg index 8246fdd17..a46463bb9 100644 --- a/icons/vector-off.svg +++ b/icons/vector-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/vector-spline.svg b/icons/vector-spline.svg index 5856ea6f4..7da64b6cf 100644 --- a/icons/vector-spline.svg +++ b/icons/vector-spline.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/vector-triangle-off.svg b/icons/vector-triangle-off.svg index 4ec17dac8..8c25c49ba 100644 --- a/icons/vector-triangle-off.svg +++ b/icons/vector-triangle-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/vector-triangle.svg b/icons/vector-triangle.svg index 6c45e22f4..d540e1a8f 100644 --- a/icons/vector-triangle.svg +++ b/icons/vector-triangle.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/vector.svg b/icons/vector.svg index 62cda2052..ab85074ff 100644 --- a/icons/vector.svg +++ b/icons/vector.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/venus.svg b/icons/venus.svg index c88d13640..64e17566e 100644 --- a/icons/venus.svg +++ b/icons/venus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/versions-filled.svg b/icons/versions-filled.svg new file mode 100644 index 000000000..1bc67470b --- /dev/null +++ b/icons/versions-filled.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/versions-off.svg b/icons/versions-off.svg index 208c9064f..bdde964fc 100644 --- a/icons/versions-off.svg +++ b/icons/versions-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/versions.svg b/icons/versions.svg index bf308658a..55b7b29df 100644 --- a/icons/versions.svg +++ b/icons/versions.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/video-minus.svg b/icons/video-minus.svg index 32ce1e5b2..c66da9609 100644 --- a/icons/video-minus.svg +++ b/icons/video-minus.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/video-off.svg b/icons/video-off.svg index a9ee0f96a..dcca9403d 100644 --- a/icons/video-off.svg +++ b/icons/video-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/video-plus.svg b/icons/video-plus.svg index f8505f006..79169a170 100644 --- a/icons/video-plus.svg +++ b/icons/video-plus.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/video.svg b/icons/video.svg index c6b9139b7..9c796a7b4 100644 --- a/icons/video.svg +++ b/icons/video.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/view-360-off.svg b/icons/view-360-off.svg index 32c2c0b5a..a0c350d5c 100644 --- a/icons/view-360-off.svg +++ b/icons/view-360-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/view-360.svg b/icons/view-360.svg index b5c30da62..8e99835ec 100644 --- a/icons/view-360.svg +++ b/icons/view-360.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/viewfinder-off.svg b/icons/viewfinder-off.svg index 536921e53..9110483cc 100644 --- a/icons/viewfinder-off.svg +++ b/icons/viewfinder-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/viewfinder.svg b/icons/viewfinder.svg index 599967b89..c75bc297c 100644 --- a/icons/viewfinder.svg +++ b/icons/viewfinder.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/viewport-narrow.svg b/icons/viewport-narrow.svg index f29194f1b..91d2a7c98 100644 --- a/icons/viewport-narrow.svg +++ b/icons/viewport-narrow.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/viewport-wide.svg b/icons/viewport-wide.svg index 67588434f..bc1a65ba7 100644 --- a/icons/viewport-wide.svg +++ b/icons/viewport-wide.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/vinyl.svg b/icons/vinyl.svg index 8745e9c1a..2aa076232 100644 --- a/icons/vinyl.svg +++ b/icons/vinyl.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/vip-off.svg b/icons/vip-off.svg index ac5cdd85d..d608f1cab 100644 --- a/icons/vip-off.svg +++ b/icons/vip-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/vip.svg b/icons/vip.svg index e237d9cec..545a8db7e 100644 --- a/icons/vip.svg +++ b/icons/vip.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/virus-off.svg b/icons/virus-off.svg index ae32545b2..9308892a4 100644 --- a/icons/virus-off.svg +++ b/icons/virus-off.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/virus-search.svg b/icons/virus-search.svg index 6dbc45616..d97c97fc6 100644 --- a/icons/virus-search.svg +++ b/icons/virus-search.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/virus.svg b/icons/virus.svg index 670641cd0..f33bd02d1 100644 --- a/icons/virus.svg +++ b/icons/virus.svg @@ -1,22 +1,6 @@ - - - - - - - - - - - - - - - - - + diff --git a/icons/vocabulary-off.svg b/icons/vocabulary-off.svg index 9444881ce..2b39e65bc 100644 --- a/icons/vocabulary-off.svg +++ b/icons/vocabulary-off.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/vocabulary.svg b/icons/vocabulary.svg index 3642edcd1..37519b452 100644 --- a/icons/vocabulary.svg +++ b/icons/vocabulary.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/volume-2.svg b/icons/volume-2.svg index 3a59422b0..6dc3f0e89 100644 --- a/icons/volume-2.svg +++ b/icons/volume-2.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/volume-3.svg b/icons/volume-3.svg index 698018a0b..ed24bf6cb 100644 --- a/icons/volume-3.svg +++ b/icons/volume-3.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/volume-off.svg b/icons/volume-off.svg index e1b02387b..095bdea37 100644 --- a/icons/volume-off.svg +++ b/icons/volume-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/volume.svg b/icons/volume.svg index 6cc741470..6042b8f6b 100644 --- a/icons/volume.svg +++ b/icons/volume.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/walk.svg b/icons/walk.svg index d3148689d..98ec8f8ab 100644 --- a/icons/walk.svg +++ b/icons/walk.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wall-off.svg b/icons/wall-off.svg index ef2de51ab..b7a19ecc6 100644 --- a/icons/wall-off.svg +++ b/icons/wall-off.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/wall.svg b/icons/wall.svg index e2cb80e75..b9b1f65d5 100644 --- a/icons/wall.svg +++ b/icons/wall.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/wallet-off.svg b/icons/wallet-off.svg index 86f0a5fd5..88028b82c 100644 --- a/icons/wallet-off.svg +++ b/icons/wallet-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wallet.svg b/icons/wallet.svg index 5df02a55c..bce41897f 100644 --- a/icons/wallet.svg +++ b/icons/wallet.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wallpaper-off.svg b/icons/wallpaper-off.svg index f936a9203..4fd577fbf 100644 --- a/icons/wallpaper-off.svg +++ b/icons/wallpaper-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wallpaper.svg b/icons/wallpaper.svg index f7e3a59dd..e75682b7c 100644 --- a/icons/wallpaper.svg +++ b/icons/wallpaper.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wand-off.svg b/icons/wand-off.svg index d82153cec..613825816 100644 --- a/icons/wand-off.svg +++ b/icons/wand-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wand.svg b/icons/wand.svg index 00e62a824..91c9da172 100644 --- a/icons/wand.svg +++ b/icons/wand.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wash-dry-1.svg b/icons/wash-dry-1.svg index 451918a3c..a1132e893 100644 --- a/icons/wash-dry-1.svg +++ b/icons/wash-dry-1.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-dry-2.svg b/icons/wash-dry-2.svg index 942400045..7773164df 100644 --- a/icons/wash-dry-2.svg +++ b/icons/wash-dry-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wash-dry-3.svg b/icons/wash-dry-3.svg index 06ec3998f..82bd9dc83 100644 --- a/icons/wash-dry-3.svg +++ b/icons/wash-dry-3.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wash-dry-a.svg b/icons/wash-dry-a.svg index 7bffac2f9..d353d0e33 100644 --- a/icons/wash-dry-a.svg +++ b/icons/wash-dry-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-dry-dip.svg b/icons/wash-dry-dip.svg index 660b0a1b3..7452f0844 100644 --- a/icons/wash-dry-dip.svg +++ b/icons/wash-dry-dip.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wash-dry-f.svg b/icons/wash-dry-f.svg index a7b078852..5bd606949 100644 --- a/icons/wash-dry-f.svg +++ b/icons/wash-dry-f.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-dry-hang.svg b/icons/wash-dry-hang.svg index fd09101d3..4e936f6c1 100644 --- a/icons/wash-dry-hang.svg +++ b/icons/wash-dry-hang.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-dry-off.svg b/icons/wash-dry-off.svg index 1e5411c6f..8526a3f86 100644 --- a/icons/wash-dry-off.svg +++ b/icons/wash-dry-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-dry-p.svg b/icons/wash-dry-p.svg index f80c9b4c8..2b59d0a28 100644 --- a/icons/wash-dry-p.svg +++ b/icons/wash-dry-p.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-dry-shade.svg b/icons/wash-dry-shade.svg index 30ed0f14d..2e5ce15af 100644 --- a/icons/wash-dry-shade.svg +++ b/icons/wash-dry-shade.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-dry-w.svg b/icons/wash-dry-w.svg index fe2da3c0c..b8ff78511 100644 --- a/icons/wash-dry-w.svg +++ b/icons/wash-dry-w.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-dry.svg b/icons/wash-dry.svg index 6d24d4ceb..059d0b340 100644 --- a/icons/wash-dry.svg +++ b/icons/wash-dry.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/wash-dryclean-off.svg b/icons/wash-dryclean-off.svg index b89120945..014ee81db 100644 --- a/icons/wash-dryclean-off.svg +++ b/icons/wash-dryclean-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-dryclean.svg b/icons/wash-dryclean.svg index b7e2a861a..85cfe420e 100644 --- a/icons/wash-dryclean.svg +++ b/icons/wash-dryclean.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/wash-gentle.svg b/icons/wash-gentle.svg index 45b3b1e8e..1015de2fb 100644 --- a/icons/wash-gentle.svg +++ b/icons/wash-gentle.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wash-machine.svg b/icons/wash-machine.svg index 252dec08f..6c59c6f98 100644 --- a/icons/wash-machine.svg +++ b/icons/wash-machine.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/wash-off.svg b/icons/wash-off.svg index 1130aaafe..99b6748d8 100644 --- a/icons/wash-off.svg +++ b/icons/wash-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-press.svg b/icons/wash-press.svg index c882e409b..007f3f9ed 100644 --- a/icons/wash-press.svg +++ b/icons/wash-press.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-temperature-1.svg b/icons/wash-temperature-1.svg index b42815f19..030c49427 100644 --- a/icons/wash-temperature-1.svg +++ b/icons/wash-temperature-1.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash-temperature-2.svg b/icons/wash-temperature-2.svg index ce8dac7d3..cf7c8b5e5 100644 --- a/icons/wash-temperature-2.svg +++ b/icons/wash-temperature-2.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wash-temperature-3.svg b/icons/wash-temperature-3.svg index e05ca769b..be2ef6a82 100644 --- a/icons/wash-temperature-3.svg +++ b/icons/wash-temperature-3.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wash-temperature-4.svg b/icons/wash-temperature-4.svg index 31dba2815..4220a5cdc 100644 --- a/icons/wash-temperature-4.svg +++ b/icons/wash-temperature-4.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/wash-temperature-5.svg b/icons/wash-temperature-5.svg index bcce3509e..7b194eea5 100644 --- a/icons/wash-temperature-5.svg +++ b/icons/wash-temperature-5.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/wash-temperature-6.svg b/icons/wash-temperature-6.svg index c43f0abc4..e30867554 100644 --- a/icons/wash-temperature-6.svg +++ b/icons/wash-temperature-6.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/wash-tumble-dry.svg b/icons/wash-tumble-dry.svg index 0dc4d559a..22f6a0fc2 100644 --- a/icons/wash-tumble-dry.svg +++ b/icons/wash-tumble-dry.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wash-tumble-off.svg b/icons/wash-tumble-off.svg index 3d9b3aa24..31552f6bb 100644 --- a/icons/wash-tumble-off.svg +++ b/icons/wash-tumble-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wash.svg b/icons/wash.svg index a5f4c675b..94a47c75d 100644 --- a/icons/wash.svg +++ b/icons/wash.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/webhook-off.svg b/icons/webhook-off.svg index ed9d8b7e8..de7b6f338 100644 --- a/icons/webhook-off.svg +++ b/icons/webhook-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/webhook.svg b/icons/webhook.svg index 730a04dd5..f0d4a9167 100644 --- a/icons/webhook.svg +++ b/icons/webhook.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/weight.svg b/icons/weight.svg index 49865fe3c..887e2f88f 100644 --- a/icons/weight.svg +++ b/icons/weight.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wheelchair-off.svg b/icons/wheelchair-off.svg index 29bcb2843..49cfb2ed4 100644 --- a/icons/wheelchair-off.svg +++ b/icons/wheelchair-off.svg @@ -1,12 +1,6 @@ - - - - - - - + diff --git a/icons/wheelchair.svg b/icons/wheelchair.svg index d205d2969..b25ef6cef 100644 --- a/icons/wheelchair.svg +++ b/icons/wheelchair.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/whirl.svg b/icons/whirl.svg index 9f9b278f8..b8b950f64 100644 --- a/icons/whirl.svg +++ b/icons/whirl.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wifi-0.svg b/icons/wifi-0.svg index dc2e0cd02..f4054aa49 100644 --- a/icons/wifi-0.svg +++ b/icons/wifi-0.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/wifi-1.svg b/icons/wifi-1.svg index 9abb118cc..cdd7638b8 100644 --- a/icons/wifi-1.svg +++ b/icons/wifi-1.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wifi-2.svg b/icons/wifi-2.svg index 84a376197..dc5adf907 100644 --- a/icons/wifi-2.svg +++ b/icons/wifi-2.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/wifi-off.svg b/icons/wifi-off.svg index f06c593b3..96229924d 100644 --- a/icons/wifi-off.svg +++ b/icons/wifi-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wifi.svg b/icons/wifi.svg index b8a48fe1f..034a53f48 100644 --- a/icons/wifi.svg +++ b/icons/wifi.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/wind-off.svg b/icons/wind-off.svg index d5a644d6c..233fb56a3 100644 --- a/icons/wind-off.svg +++ b/icons/wind-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wind.svg b/icons/wind.svg index b9f9e42e1..b007fbef0 100644 --- a/icons/wind.svg +++ b/icons/wind.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/windmill-filled.svg b/icons/windmill-filled.svg new file mode 100644 index 000000000..125b2016d --- /dev/null +++ b/icons/windmill-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/windmill-off.svg b/icons/windmill-off.svg index 09dc04cca..3fc863f05 100644 --- a/icons/windmill-off.svg +++ b/icons/windmill-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/windmill.svg b/icons/windmill.svg index 69cdf388b..9df35b73d 100644 --- a/icons/windmill.svg +++ b/icons/windmill.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/window-maximize.svg b/icons/window-maximize.svg index 3f05ca6ff..0c33ceff3 100644 --- a/icons/window-maximize.svg +++ b/icons/window-maximize.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/window-minimize.svg b/icons/window-minimize.svg index 55d9eb145..ab5dad6c3 100644 --- a/icons/window-minimize.svg +++ b/icons/window-minimize.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/window-off.svg b/icons/window-off.svg index 75f55bd84..d0d7937e7 100644 --- a/icons/window-off.svg +++ b/icons/window-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/window.svg b/icons/window.svg index 5c46d945d..6066534c6 100644 --- a/icons/window.svg +++ b/icons/window.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/windsock.svg b/icons/windsock.svg index f0a0bf5dc..fb58212e4 100644 --- a/icons/windsock.svg +++ b/icons/windsock.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wiper-wash.svg b/icons/wiper-wash.svg index efa6852e2..d8b37effe 100644 --- a/icons/wiper-wash.svg +++ b/icons/wiper-wash.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/wiper.svg b/icons/wiper.svg index 90a8f9716..de1244584 100644 --- a/icons/wiper.svg +++ b/icons/wiper.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/woman.svg b/icons/woman.svg index 96030030c..d31bd7eb1 100644 --- a/icons/woman.svg +++ b/icons/woman.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/wood.svg b/icons/wood.svg index a8fb4c06c..632e2d260 100644 --- a/icons/wood.svg +++ b/icons/wood.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/world-download.svg b/icons/world-download.svg index 04965b7af..e22af4dd8 100644 --- a/icons/world-download.svg +++ b/icons/world-download.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/world-latitude.svg b/icons/world-latitude.svg index 701af8632..f78048694 100644 --- a/icons/world-latitude.svg +++ b/icons/world-latitude.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/world-longitude.svg b/icons/world-longitude.svg index b919d2916..d2369634f 100644 --- a/icons/world-longitude.svg +++ b/icons/world-longitude.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/world-off.svg b/icons/world-off.svg index b1faf11bc..b78a12a48 100644 --- a/icons/world-off.svg +++ b/icons/world-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/world-upload.svg b/icons/world-upload.svg index 19cc592f3..7fb272396 100644 --- a/icons/world-upload.svg +++ b/icons/world-upload.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/world-www.svg b/icons/world-www.svg index 5b9151854..3446cceae 100644 --- a/icons/world-www.svg +++ b/icons/world-www.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/world.svg b/icons/world.svg index 2d5f41aba..988d3f9a8 100644 --- a/icons/world.svg +++ b/icons/world.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/wrecking-ball.svg b/icons/wrecking-ball.svg index 50b50e2e0..9a20cb319 100644 --- a/icons/wrecking-ball.svg +++ b/icons/wrecking-ball.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/writing-off.svg b/icons/writing-off.svg index c2b7dd535..fd21f8642 100644 --- a/icons/writing-off.svg +++ b/icons/writing-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/writing-sign-off.svg b/icons/writing-sign-off.svg index 0bf54adf5..fc85d4acb 100644 --- a/icons/writing-sign-off.svg +++ b/icons/writing-sign-off.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/writing-sign.svg b/icons/writing-sign.svg index ab42ef045..9ad06fa97 100644 --- a/icons/writing-sign.svg +++ b/icons/writing-sign.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/writing.svg b/icons/writing.svg index 134318dd4..4ff84d2fb 100644 --- a/icons/writing.svg +++ b/icons/writing.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/x.svg b/icons/x.svg index 434d1205a..10a93dbea 100644 --- a/icons/x.svg +++ b/icons/x.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/xbox-a.svg b/icons/xbox-a.svg index 362f89140..2f4fbfb59 100644 --- a/icons/xbox-a.svg +++ b/icons/xbox-a.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/xbox-b.svg b/icons/xbox-b.svg index b40039c68..5006a28e2 100644 --- a/icons/xbox-b.svg +++ b/icons/xbox-b.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/xbox-x.svg b/icons/xbox-x.svg index b05e5f267..f6d6fe852 100644 --- a/icons/xbox-x.svg +++ b/icons/xbox-x.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/xbox-y.svg b/icons/xbox-y.svg index 91184a10f..eb61be75d 100644 --- a/icons/xbox-y.svg +++ b/icons/xbox-y.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/yin-yang.svg b/icons/yin-yang.svg index 5e9314b88..6a7a3add0 100644 --- a/icons/yin-yang.svg +++ b/icons/yin-yang.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/yoga.svg b/icons/yoga.svg index c4d1035af..610692daa 100644 --- a/icons/yoga.svg +++ b/icons/yoga.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zeppelin-off.svg b/icons/zeppelin-off.svg index cb6609352..3f2f0b82d 100644 --- a/icons/zeppelin-off.svg +++ b/icons/zeppelin-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zeppelin.svg b/icons/zeppelin.svg index bc7d72400..546397d0b 100644 --- a/icons/zeppelin.svg +++ b/icons/zeppelin.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/zip.svg b/icons/zip.svg index 89819aab1..ff349334e 100644 --- a/icons/zip.svg +++ b/icons/zip.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-aquarius.svg b/icons/zodiac-aquarius.svg index 1fac2bf24..0c7109958 100644 --- a/icons/zodiac-aquarius.svg +++ b/icons/zodiac-aquarius.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/zodiac-aries.svg b/icons/zodiac-aries.svg index 1633a8baa..fdcf3ecdc 100644 --- a/icons/zodiac-aries.svg +++ b/icons/zodiac-aries.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-cancer.svg b/icons/zodiac-cancer.svg index 50308489b..0747a4d2a 100644 --- a/icons/zodiac-cancer.svg +++ b/icons/zodiac-cancer.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zodiac-capricorn.svg b/icons/zodiac-capricorn.svg index 7a4f279cb..fb7ca217d 100644 --- a/icons/zodiac-capricorn.svg +++ b/icons/zodiac-capricorn.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-gemini.svg b/icons/zodiac-gemini.svg index 44688412b..f9c7fafcf 100644 --- a/icons/zodiac-gemini.svg +++ b/icons/zodiac-gemini.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zodiac-leo.svg b/icons/zodiac-leo.svg index d263c16e8..418e0f94c 100644 --- a/icons/zodiac-leo.svg +++ b/icons/zodiac-leo.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/zodiac-libra.svg b/icons/zodiac-libra.svg index 038c1751f..0bcb46fd5 100644 --- a/icons/zodiac-libra.svg +++ b/icons/zodiac-libra.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/zodiac-pisces.svg b/icons/zodiac-pisces.svg index 10e95a0b4..7da500cb3 100644 --- a/icons/zodiac-pisces.svg +++ b/icons/zodiac-pisces.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-sagittarius.svg b/icons/zodiac-sagittarius.svg index bc26a177e..f392be3ab 100644 --- a/icons/zodiac-sagittarius.svg +++ b/icons/zodiac-sagittarius.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-scorpio.svg b/icons/zodiac-scorpio.svg index fcfb266c1..effa59ad2 100644 --- a/icons/zodiac-scorpio.svg +++ b/icons/zodiac-scorpio.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zodiac-taurus.svg b/icons/zodiac-taurus.svg index b5de3633a..3eb996e8d 100644 --- a/icons/zodiac-taurus.svg +++ b/icons/zodiac-taurus.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/zodiac-virgo.svg b/icons/zodiac-virgo.svg index 7ad3df028..169b073d6 100644 --- a/icons/zodiac-virgo.svg +++ b/icons/zodiac-virgo.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-cancel.svg b/icons/zoom-cancel.svg index b6fec7fae..ea10347db 100644 --- a/icons/zoom-cancel.svg +++ b/icons/zoom-cancel.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-check.svg b/icons/zoom-check.svg index 14b7dfbb9..86c85b6e3 100644 --- a/icons/zoom-check.svg +++ b/icons/zoom-check.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zoom-code.svg b/icons/zoom-code.svg index 9df6015cb..7d0a06d19 100644 --- a/icons/zoom-code.svg +++ b/icons/zoom-code.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-exclamation.svg b/icons/zoom-exclamation.svg index 5d24684c9..94994cd71 100644 --- a/icons/zoom-exclamation.svg +++ b/icons/zoom-exclamation.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-in-area.svg b/icons/zoom-in-area.svg index 83d342d7a..5e312c144 100644 --- a/icons/zoom-in-area.svg +++ b/icons/zoom-in-area.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/zoom-in.svg b/icons/zoom-in.svg index a0e75e605..bba9a9811 100644 --- a/icons/zoom-in.svg +++ b/icons/zoom-in.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-money.svg b/icons/zoom-money.svg index b0d800718..aa4994080 100644 --- a/icons/zoom-money.svg +++ b/icons/zoom-money.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-out-area.svg b/icons/zoom-out-area.svg index a0ba1e33d..908057deb 100644 --- a/icons/zoom-out-area.svg +++ b/icons/zoom-out-area.svg @@ -1,13 +1,6 @@ - - - - - - - - + diff --git a/icons/zoom-out.svg b/icons/zoom-out.svg index 08beaba03..e4c6b51b9 100644 --- a/icons/zoom-out.svg +++ b/icons/zoom-out.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zoom-pan.svg b/icons/zoom-pan.svg index 5c348ff91..b885424a3 100644 --- a/icons/zoom-pan.svg +++ b/icons/zoom-pan.svg @@ -1,11 +1,6 @@ - - - - - - + diff --git a/icons/zoom-question.svg b/icons/zoom-question.svg index 5d42c53a0..9ef0b2883 100644 --- a/icons/zoom-question.svg +++ b/icons/zoom-question.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/zoom-replace.svg b/icons/zoom-replace.svg index 0f3d4675f..ad641da72 100644 --- a/icons/zoom-replace.svg +++ b/icons/zoom-replace.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/zoom-reset.svg b/icons/zoom-reset.svg index 6d3a6da84..e0cda8d26 100644 --- a/icons/zoom-reset.svg +++ b/icons/zoom-reset.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zzz-off.svg b/icons/zzz-off.svg index a6b2943b0..fc1c1f31e 100644 --- a/icons/zzz-off.svg +++ b/icons/zzz-off.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/zzz.svg b/icons/zzz.svg index cf1736f8c..8248f56d9 100644 --- a/icons/zzz.svg +++ b/icons/zzz.svg @@ -1,7 +1,6 @@ - - + diff --git a/package.json b/package.json index 6de626ef4..a3d40342e 100644 --- a/package.json +++ b/package.json @@ -1,126 +1,119 @@ { - "name": "@tabler/icons", - "version": "1.119.0", - "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "name": "tabler-icons", + "version": "2.0.0-beta.2", "repository": { "type": "git", "url": "git+https://github.com/tabler/tabler-icons.git" }, - "main": "./icons-react/dist/index.cjs.js", - "exports": { - ".": { - "import": "./icons-react/dist/index.esm.js", - "require": "./icons-react/dist/index.cjs.js" - }, - "./iconfont/*": "./iconfont/*", - "./*": [ - "./icons/*", - "./icons-png/*" - ] - }, - "module": "./icons-react/dist/index.esm.js", - "unpkg": "./icons-react/dist/index.umd.js", - "umd:main": "./icons-react/dist/index.umd.js", - "types": "./icons-react/index.d.ts", + "private": true, "sideEffects": false, - "author": "codecalm", - "license": "MIT", - "homepage": "https://tabler-icons.io", - "bugs": { - "url": "https://github.com/tabler/tabler-icons/issues" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/codecalm" - }, - "files": [ - "tags.json", - "icons/*", - "icons-png/*", - "icons-react/index.d.ts", - "icons-react/dist/*", - "iconfont/**/*", - "tabler-sprite.svg", - "tabler-sprite-nostroke.svg" - ], "publishConfig": { "access": "public" }, "scripts": { "start": "bundle exec jekyll serve --watch --livereload --trace --livereload_port 8888", - "prebuild-react": "rm -rf ./icons-react/dist/", - "build-react": "rollup -c", - "build:jekyll": "gulp build-jekyll", - "optimize": "gulp optimize", - "release": "git pull && release-it", - "build": "gulp build", - "build-iconfont": "gulp build-iconfont", - "import": "./_import.sh && gulp optimize" + "build": "pnpm run optimize && pnpm run update && pnpm run build:svgs && pnpm run build:icons && pnpm run build:packages && pnpm run preview && pnpm run changelog-image && pnpm run zip && pnpm run update-readme", + "clean": "turbo run clean", + "test": "turbo run test", + "changelog": "node ./.build/changelog.mjs", + "changelog-commit": "node ./.build/changelog-commit.mjs", + "changelog-image": "node ./.build/changelog-image.mjs", + "update": "pnpm run update:icons-version && pnpm run update:icons-unicode", + "update:icons-version": "node ./.build/update-icons-version.mjs", + "update:icons-unicode": "node ./.build/update-icons-unicode.mjs", + "optimize": "node ./.build/optimize.mjs", + "import": "node ./.build/import.mjs && pnpm run optimize", + "import-tags": "node ./.build/import-tags.mjs", + "import-categories": "node ./.build/import-categories.mjs", + "preview": "pnpm run preview-icons && pnpm run preview-stroke", + "preview-icons": "node ./.build/preview-icons.mjs", + "preview-stroke": "node ./.build/preview-stroke.mjs", + "release": "git pull && release-it --verbose", + "build:svgs": "pnpm run build:jekyll && pnpm run build:copy", + "build:jekyll": "bundle exec jekyll build", + "build:copy": "rm -rf ./icons && mkdir ./icons && cp ./_site/tags.json tags.json && cp ./_site/icons/* ./icons/ && rm -rf ./_site/", + "build:icons": "pnpm --filter @tabler/icons build", + "build:packages": "pnpm run build:react && pnpm run build:preact && pnpm run build:solidjs && pnpm run build:svelte && pnpm run build:vue && pnpm run build:png && pnpm run build:pdf && pnpm run build:esp && pnpm run build:webfont", + "build:react": "pnpm --filter @tabler/icons-react build", + "build:preact": "pnpm --filter @tabler/icons-preact build", + "build:solidjs": "pnpm --filter @tabler/icons-solidjs build", + "build:svelte": "pnpm --filter @tabler/icons-svelte build", + "build:vue": "pnpm --filter @tabler/icons-vue build", + "build:png": "pnpm --filter @tabler/icons-png build", + "build:pdf": "pnpm --filter @tabler/icons-pdf build", + "build:esp": "pnpm --filter @tabler/icons-esp build", + "build:webfont": "pnpm --filter @tabler/icons-webfont build", + "update-readme": "node ./.build/update-readme.mjs", + "zip": "node ./.build/zip-files.mjs", + "_build": "gulp build", + "_build-iconfont": "gulp build-iconfont" }, - "keywords": [ - "icons", - "svg", - "png", - "iconfont", - "react", - "front-end", - "web" - ], "devDependencies": { + "@babel/cli": "^7.20.7", "@babel/core": "7.11.6", "@babel/parser": "7.11.5", + "@babel/plugin-transform-runtime": "^7.19.6", "@babel/preset-env": "7.11.5", "@babel/preset-react": "7.10.4", + "@release-it-plugins/workspaces": "^3.2.0", "@rollup/plugin-babel": "5.2.1", "@rollup/plugin-commonjs": "15.1.0", "@rollup/plugin-node-resolve": "9.0.0", "@svgr/babel-plugin-replace-jsx-attribute-value": "5.0.1", "@svgr/core": "5.4.0", + "@vue/babel-plugin-jsx": "^1.1.1", + "adm-zip": "^0.5.10", + "cheerio": "^1.0.0-rc.12", "clean-css": "4.2.3", "csv-parser": "^3.0.0", + "fs-extra": "^10.1.0", "glob": "7.1.6", "gulp": "4.0.2", "gulp-iconfont": "11.0.1", "gulp-svgo": "^2.2.1", "gulp-zip": "5.1.0", + "html-minifier": "^4.0.0", + "lerna": "^6.4.0", "lodash.template": "4.5.0", "minimist": "1.2.6", "node-sass": "8.0.0", "parse-svg-path": "^0.1.2", - "release-it": "14.12.5", + "prettier": "^2.8.1", + "release-it": "15.6.0", "rollup": "2.78.1", "rollup-plugin-filesize": "9.1.2", "rollup-plugin-peer-deps-external": "2.2.4", + "rollup-plugin-rename": "^1.0.1", + "rollup-plugin-svelte": "^7.1.0", "rollup-plugin-terser": "7.0.2", + "rollup-plugin-esbuild": "^4.10.2", + "rollup-plugin-license": "^3.0.1", + "rollup-plugin-visualizer": "^5.8.3", "svg-outline-stroke": "1.3.1", - "svgo": "^2.8.0" + "svgo": "^2.8.0", + "svgpath": "^2.6.0", + "svgson": "^5.2.1" }, "release-it": { + "plugins": { + "@release-it-plugins/workspaces": true + }, + "npm": false, "hooks": { - "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} --verbose", - "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}." + "after:bump": "pnpm run build --latest-version ${latestVersion} --new-version ${version} --verbose", + "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}." }, "git": { "addUntrackedFiles": true, - "changelog": "gulp changelog --silent --latest-tag ${latestTag}", + "changelog": "pnpm run changelog --silent --latest-version ${latestTag}", "tagName": "v${version}", - "requireBranch": "master", - "requireCommits": true + "_requireBranch": "master", + "requireCommits": true, + "requireCleanWorkingDir": false }, "github": { "release": true } }, - "peerDependencies": { - "react": "^16.x || 17.x || 18.x", - "react-dom": "^16.x || 17.x || 18.x" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } - } + "packageManager": "pnpm@7.17.0" } diff --git a/packages/icons-eps/README.md b/packages/icons-eps/README.md new file mode 100644 index 000000000..42a933bbb --- /dev/null +++ b/packages/icons-eps/README.md @@ -0,0 +1,62 @@ +# Tabler Icons EPS + +

+ Tabler Icons +

+ +

+ A set of 3204 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-eps +``` + +or + +``` +npm install @tabler/icons-eps +``` + +or + +``` +pnpm install @tabler/icons-eps +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +All EPS files are stored in `icons` subdirectory. + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-eps/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-eps/build.mjs b/packages/icons-eps/build.mjs new file mode 100644 index 000000000..03dd1be33 --- /dev/null +++ b/packages/icons-eps/build.mjs @@ -0,0 +1,16 @@ +import { exec } from 'child_process' +import { asyncForEach, readSvgs } from '../../.build/helpers.mjs' + +let svgFiles = readSvgs() + +await asyncForEach(svgFiles, async function(file, i) { + const distPath = `./icons/${file.name}.eps` + + process.stdout.write(`Building ${i}/${svgFiles.length}: ${file.name.padEnd(42)}\r`) + + await new Promise((resolve, reject) => { + exec(`rsvg-convert -f eps -h 240 ${file.path} > ${distPath}`, (error, stdout, stderr) => { + error ? reject() : resolve() + }) + }) +}) diff --git a/packages/icons-eps/package.json b/packages/icons-eps/package.json new file mode 100644 index 000000000..18fc6f34b --- /dev/null +++ b/packages/icons-eps/package.json @@ -0,0 +1,41 @@ +{ + "name": "@tabler/icons-eps", + "version": "2.0.0-beta.2", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "homepage": "https://tabler-icons.io", + "bugs": { + "url": "https://github.com/tabler/tabler-icons/issues" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons", + "build:icons": "node build.mjs", + "clean": "rm -rf dist && mkdir dist", + "copy:license": "cp ../../LICENSE ./LICENSE" + }, + "files": [ + "icons/*.eps" + ], + "exports": { + "./*": [ + "./icons/*" + ] + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web", + "eps", + "vector" + ] +} diff --git a/packages/icons-pdf/README.md b/packages/icons-pdf/README.md new file mode 100644 index 000000000..fe8633d48 --- /dev/null +++ b/packages/icons-pdf/README.md @@ -0,0 +1,62 @@ +# Tabler Icons PDF + +

+ Tabler Icons +

+ +

+ A set of 3204 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-pdf +``` + +or + +``` +npm install @tabler/icons-pdf +``` + +or + +``` +pnpm install @tabler/icons-pdf +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +All PDF files are stored in `icons` subdirectory. + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-pdf/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-pdf/build.mjs b/packages/icons-pdf/build.mjs new file mode 100644 index 000000000..290caf43a --- /dev/null +++ b/packages/icons-pdf/build.mjs @@ -0,0 +1,16 @@ +import { exec } from 'child_process' +import { asyncForEach, readSvgs } from '../../.build/helpers.mjs' + +let svgFiles = readSvgs() + +await asyncForEach(svgFiles, async function(file, i) { + const distPath = `./icons/${file.name}.pdf` + + process.stdout.write(`Building ${i}/${svgFiles.length}: ${file.name.padEnd(42)}\r`) + + await new Promise((resolve, reject) => { + exec(`rsvg-convert -f pdf -h 240 ${file.path} > ${distPath}`, (error, stdout, stderr) => { + error ? reject() : resolve() + }) + }) +}) diff --git a/packages/icons-pdf/package.json b/packages/icons-pdf/package.json new file mode 100644 index 000000000..0a88df58a --- /dev/null +++ b/packages/icons-pdf/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-pdf", + "version": "2.0.0-beta.2", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "homepage": "https://tabler-icons.io", + "bugs": { + "url": "https://github.com/tabler/tabler-icons/issues" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons", + "build:icons": "node build.mjs", + "clean": "rm -rf icons && mkdir icons", + "copy:license": "cp ../../LICENSE ./LICENSE" + }, + "files": [ + "icons/*.pdf" + ], + "exports": { + "./*": [ + "./icons/*" + ] + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web" + ] +} diff --git a/packages/icons-png/README.md b/packages/icons-png/README.md new file mode 100644 index 000000000..267735cfb --- /dev/null +++ b/packages/icons-png/README.md @@ -0,0 +1,68 @@ +# Tabler Icons PNG + +

+ Tabler Icons +

+ +

+ A set of 3204 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-png +``` + +or + +``` +npm install @tabler/icons-png +``` + +or + +``` +pnpm install @tabler/icons-png +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +All PNG files are stored in `icons` subdirectory. + +## CDN + +```html + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-png/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-png/build.mjs b/packages/icons-png/build.mjs new file mode 100644 index 000000000..d745037fc --- /dev/null +++ b/packages/icons-png/build.mjs @@ -0,0 +1,16 @@ +import { exec } from 'child_process' +import { asyncForEach, readSvgs } from '../../.build/helpers.mjs' + +let svgFiles = readSvgs() + +await asyncForEach(svgFiles, async function(file, i) { + const distPath = `./icons/${file.name}.png` + + process.stdout.write(`Building ${i}/${svgFiles.length}: ${file.name.padEnd(42)}\r`) + + await new Promise((resolve, reject) => { + exec(`rsvg-convert -h 240 ${file.path} > ${distPath}`, (error, stdout, stderr) => { + error ? reject() : resolve() + }) + }) +}) diff --git a/packages/icons-png/package.json b/packages/icons-png/package.json new file mode 100644 index 000000000..ec7fad23d --- /dev/null +++ b/packages/icons-png/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-png", + "version": "2.0.0-beta.2", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "homepage": "https://tabler-icons.io", + "bugs": { + "url": "https://github.com/tabler/tabler-icons/issues" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons", + "build:icons": "node build.mjs", + "clean": "rm -rf icons && mkdir icons", + "copy:license": "cp ../../LICENSE ./LICENSE" + }, + "files": [ + "icons/*.png" + ], + "exports": { + "./*": [ + "./icons/*" + ] + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web" + ] +} diff --git a/packages/icons-preact/README.md b/packages/icons-preact/README.md new file mode 100644 index 000000000..0f683c729 --- /dev/null +++ b/packages/icons-preact/README.md @@ -0,0 +1,80 @@ +# Tabler Icons for Preact + +

+ Tabler Icons +

+ +

+Implementation of the Tabler Icons library for Preact applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-preact +``` + +or + +``` +npm install @tabler/icons-preact +``` + +or + +``` +pnpm install @tabler/icons-preact +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## How to use + +It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a component. + +```js +import { IconArrowDown } from '@tabler/icons-preact'; + +const App = () => { + return ; +}; + +export default App; +``` + +You can pass additional props to adjust the icon. + +```js + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-preact/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-preact/build.mjs b/packages/icons-preact/build.mjs new file mode 100644 index 000000000..0a11238b7 --- /dev/null +++ b/packages/icons-preact/build.mjs @@ -0,0 +1,40 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + namePascal, + children +}) => `\ +import createPreactComponent from '../createPreactComponent'; +export default createPreactComponent('${namePascal}', ${JSON.stringify(children)});`; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}';` + +const typeDefinitionsTemplate = () => `/// +import { JSX, RefObject } from 'preact' + +interface TablerIconsProps extends Partial> { + key?: string | number; + ref?: string | ((component: any) => any) | RefObject; + color?: string + size?: string | number +} + +// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare const ${namePascal}: (props: TablerIconsProps) => JSX.Element;` + + +buildIcons({ + name: 'icons-preact', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate +}) diff --git a/packages/icons-preact/package.json b/packages/icons-preact/package.json new file mode 100644 index 000000000..f0664f116 --- /dev/null +++ b/packages/icons-preact/package.json @@ -0,0 +1,44 @@ +{ + "name": "@tabler/icons-preact", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git", + "directory": "packages/icons-preact" + }, + "main": "dist/cjs/tabler-icons-preact.js", + "main:umd": "dist/umd/tabler-icons-preact.js", + "module": "dist/esm/tabler-icons-preact.js", + "unpkg": "dist/umd/tabler-icons-preact.min.js", + "typings": "dist/tabler-icons-preact.d.ts", + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles", + "build:icons": "node build.mjs", + "build:bundles": "rollup -c ./rollup.config.mjs", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf ./src/icons/*.js", + "test": "echo 'ok'" + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "peerDependencies": { + "preact": "^10.5.13" + }, + "devDependencies": { + "@preact/preset-vite": "^2.5.0", + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/preact": "^3.2.2", + "babel-preset-preact": "^2.0.0", + "jest": "^29.3.1", + "preact": "^10.11.3", + "vitest": "^0.26.3" + } +} diff --git a/packages/icons-preact/rollup.config.mjs b/packages/icons-preact/rollup.config.mjs new file mode 100644 index 000000000..60f3360f0 --- /dev/null +++ b/packages/icons-preact/rollup.config.mjs @@ -0,0 +1,67 @@ +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons-preact'; +const outputFileName = 'tabler-icons-preact'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons-preact.js']; +const bundles = [ + { + format: 'umd', + inputs, + outputDir, + minify: true, + }, + { + format: 'umd', + inputs, + outputDir, + }, + { + format: 'cjs', + inputs, + outputDir, + }, + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: getRollupPlugins(pkg, minify), + external: ['preact', 'prop-types'], + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + preserveModules, + format, + sourcemap: true, + globals: { + preact: 'preact', + 'prop-types': 'PropTypes', + }, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons-preact/src/createPreactComponent.js b/packages/icons-preact/src/createPreactComponent.js new file mode 100644 index 000000000..386e34657 --- /dev/null +++ b/packages/icons-preact/src/createPreactComponent.js @@ -0,0 +1,23 @@ +import { h, toChildArray } from 'preact'; +import defaultAttributes from './defaultAttributes'; + +export default (iconName, iconNode) => { + const Component = ({ color = 'currentColor', size = 24, strokeWidth = 2, children, ...rest }) => + h( + 'svg', + { + ...defaultAttributes, + width: size, + height: size, + stroke: color, + 'stroke-width': strokeWidth, + class: `tabler-icon tabler-icon-${iconName}`, + ...rest, + }, + [...iconNode.map(([tag, attrs]) => h(tag, attrs)), ...toChildArray(children)], + ); + + Component.displayName = `${iconName}`; + + return Component; +}; diff --git a/packages/icons-preact/src/defaultAttributes.js b/packages/icons-preact/src/defaultAttributes.js new file mode 100644 index 000000000..8ae7d46ea --- /dev/null +++ b/packages/icons-preact/src/defaultAttributes.js @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + 'stroke-width': 2, + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', +}; diff --git a/packages/icons-preact/src/icons/.gitkeep b/packages/icons-preact/src/icons/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/icons-preact/src/tabler-icons-preact.js b/packages/icons-preact/src/tabler-icons-preact.js new file mode 100644 index 000000000..70f99d97d --- /dev/null +++ b/packages/icons-preact/src/tabler-icons-preact.js @@ -0,0 +1,2 @@ +export * from './icons'; +export { default as createReactComponent } from './createPreactComponent'; diff --git a/packages/icons-preact/test.spec.jsx b/packages/icons-preact/test.spec.jsx new file mode 100644 index 000000000..e9608a1c4 --- /dev/null +++ b/packages/icons-preact/test.spec.jsx @@ -0,0 +1,37 @@ +import { describe, it, expect } from 'vitest' +import Preact from 'preact' +import { render } from "@testing-library/preact" +import { IconActivity } from "@tabler/icons-preact" + +describe("Preact Icon component", () => { + it("should render an component", () => { + const { container } = render(); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); + + it("should adjust the size, stroke color and stroke width", () => { + const testId = "icon"; + const { container, getByTestId } = render( + + ); + + const { attributes } = getByTestId(testId); + expect(attributes.stroke.value).toBe("red"); + expect(attributes.width.value).toBe("48"); + expect(attributes.height.value).toBe("48"); + expect(attributes["stroke-width"].value).toBe("4"); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); +}); diff --git a/packages/icons-react/README.md b/packages/icons-react/README.md new file mode 100644 index 000000000..8036e1e6d --- /dev/null +++ b/packages/icons-react/README.md @@ -0,0 +1,80 @@ +# Tabler Icons for React + +

+ Tabler Icons +

+ +

+Implementation of the Tabler Icons library for React applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-react +``` + +or + +``` +npm install @tabler/icons-react +``` + +or + +``` +pnpm install @tabler/icons-react +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## How to use + +It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a component. + +```js +import { IconArrowLeft } from '@tabler/icons-react'; + +const App = () => { + return ; +}; + +export default App; +``` + +You can pass additional props to adjust the icon. + +```js + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-react/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-react/build.mjs b/packages/icons-react/build.mjs new file mode 100644 index 000000000..700c1fc35 --- /dev/null +++ b/packages/icons-react/build.mjs @@ -0,0 +1,45 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + name, + namePascal, + children +}) => `\ +import createReactComponent from '../createReactComponent'; +export default createReactComponent('${namePascal}', ${JSON.stringify(children)});`; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}';` + +const typeDefinitionsTemplate = () => `/// +import { SVGAttributes } from 'react' + +declare module '@tabler/icons-react' + +// Create interface extending SVGProps +export interface TablerIconsProps extends Partial> { + size?: string | number +} + +export declare const createReactComponent: (iconName: string, iconNode: any[]) => (props: TablerIconsProps) => JSX.Element; + +export type Icon = React.FC; + +// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare const ${namePascal}: (props: TablerIconsProps) => JSX.Element;` + + +buildIcons({ + name: 'icons-react', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate +}) diff --git a/packages/icons-react/package.json b/packages/icons-react/package.json new file mode 100644 index 000000000..c8471cab8 --- /dev/null +++ b/packages/icons-react/package.json @@ -0,0 +1,44 @@ +{ + "name": "@tabler/icons-react", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git", + "directory": "packages/icons-react" + }, + "main": "dist/cjs/tabler-icons-react.js", + "main:umd": "dist/umd/tabler-icons-react.js", + "module": "dist/esm/tabler-icons-react.js", + "unpkg": "dist/umd/tabler-icons-react.min.js", + "typings": "dist/tabler-icons-react.d.ts", + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles", + "build:icons": "node build.mjs", + "build:bundles": "rollup -c ./rollup.config.mjs", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf ./src/icons/*.js", + "test": "echo 'ok'" + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "devDependencies": { + "@testing-library/react": "^11.2.6", + "babel-preset-react-app": "^10.0.0", + "jest": "^26.6.3", + "prop-types": "^15.8.1", + "react": "^17.0.2", + "react-dom": "^17.0.2" + }, + "peerDependencies": { + "prop-types": "^15.7.2", + "react": "^16.5.1 || ^17.0.0 || ^18.0.0" + } +} diff --git a/packages/icons-react/rollup.config.mjs b/packages/icons-react/rollup.config.mjs new file mode 100644 index 000000000..2d3397bf0 --- /dev/null +++ b/packages/icons-react/rollup.config.mjs @@ -0,0 +1,67 @@ +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons-react'; +const outputFileName = 'tabler-icons-react'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons-react.js']; +const bundles = [ + { + format: 'umd', + inputs, + outputDir, + minify: true, + }, + { + format: 'umd', + inputs, + outputDir, + }, + { + format: 'cjs', + inputs, + outputDir, + }, + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: getRollupPlugins(pkg, minify), + external: ['react', 'prop-types'], + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + format, + sourcemap: true, + preserveModules, + globals: { + react: 'react', + 'prop-types': 'PropTypes' + }, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons-react/src/createReactComponent.js b/packages/icons-react/src/createReactComponent.js new file mode 100644 index 000000000..4ebb46ed3 --- /dev/null +++ b/packages/icons-react/src/createReactComponent.js @@ -0,0 +1,33 @@ +import { forwardRef, createElement } from 'react'; +import PropTypes from 'prop-types'; +import defaultAttributes from './defaultAttributes'; + +export default (iconName, iconNode) => { + const Component = forwardRef( + ({ color = 'currentColor', size = 24, strokeWidth = 2, children, ...rest }, ref) => + createElement( + 'svg', + { + ref, + ...defaultAttributes, + width: size, + height: size, + stroke: color, + strokeWidth, + className: `tabler-icon tabler-icon-${iconName}`, + ...rest, + }, + [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...(children || [])], + ), + ); + + Component.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + }; + + Component.displayName = `${iconName}`; + + return Component; +}; diff --git a/packages/icons-react/src/defaultAttributes.js b/packages/icons-react/src/defaultAttributes.js new file mode 100644 index 000000000..ce97fb058 --- /dev/null +++ b/packages/icons-react/src/defaultAttributes.js @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + strokeWidth: 2, + strokeLinecap: 'round', + strokeLinejoin: 'round', +}; diff --git a/packages/icons-react/src/icons/.gitkeep b/packages/icons-react/src/icons/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/icons-react/src/tabler-icons-react.js b/packages/icons-react/src/tabler-icons-react.js new file mode 100644 index 000000000..31d1f64b8 --- /dev/null +++ b/packages/icons-react/src/tabler-icons-react.js @@ -0,0 +1,2 @@ +export * from './icons'; +export { default as createReactComponent } from './createReactComponent'; diff --git a/packages/icons-react/test.spec.js b/packages/icons-react/test.spec.js new file mode 100644 index 000000000..8caaa2abc --- /dev/null +++ b/packages/icons-react/test.spec.js @@ -0,0 +1,36 @@ +import React from "react"; +import { render } from "@testing-library/react"; +import { IconActivity } from "@tabler/icons-react"; + +describe("React Icon component", () => { + it("should render an component", () => { + const { container } = render(); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); + + it("should adjust the size, stroke color and stroke width", () => { + const testId = "icon"; + const { container, getByTestId } = render( + + ); + + const { attributes } = getByTestId(testId); + expect(attributes.stroke.value).toBe("red"); + expect(attributes.width.value).toBe("48"); + expect(attributes.height.value).toBe("48"); + expect(attributes["stroke-width"].value).toBe("4"); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); +}); diff --git a/packages/icons-solidjs/README.md b/packages/icons-solidjs/README.md new file mode 100644 index 000000000..fb7ebeabe --- /dev/null +++ b/packages/icons-solidjs/README.md @@ -0,0 +1,80 @@ +# Tabler Icons for SolidJS + +

+ Tabler Icons +

+ +

+Implementation of the Tabler Icons library for SolidJS applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-solidjs +``` + +or + +``` +npm install @tabler/icons-solidjs +``` + +or + +``` +pnpm install @tabler/icons-solidjs +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## How to use + +It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a component. + +```js +import { IconArrowRight } from '@tabler/icons-solidjs'; + +const App = () => { + return ; +}; + +export default App; +``` + +You can pass additional props to adjust the icon. + +```js + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-solidjs/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-solidjs/build.mjs b/packages/icons-solidjs/build.mjs new file mode 100644 index 000000000..59e6698ea --- /dev/null +++ b/packages/icons-solidjs/build.mjs @@ -0,0 +1,42 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + name, + namePascal, + children +}) => `\ +import createSolidComponent from '../createSolidComponent'; +export default createSolidComponent('${namePascal}', ${JSON.stringify(children)});`; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}';` + +const typeDefinitionsTemplate = () => `/// +import { JSX } from 'solid-js' +interface TablerIconsProps extends Partial> { + key?: string | number; + ref?: string | ((component: any) => any); + color?: string + size?: string | number + strokeWidth?: string | number + class?: string +} +// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare const ${namePascal}: (props: TablerIconsProps) => JSX.Element;` + + +buildIcons({ + name: 'icons-solidjs', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate, + key: false +}) diff --git a/packages/icons-solidjs/package.json b/packages/icons-solidjs/package.json new file mode 100644 index 000000000..6a848041f --- /dev/null +++ b/packages/icons-solidjs/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-solidjs", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git", + "directory": "packages/icons-solidjs" + }, + "main": "dist/cjs/tabler-icons-solidjs.js", + "main:umd": "dist/umd/tabler-icons-solidjs.js", + "module": "dist/esm/tabler-icons-solidjs.js", + "unpkg": "dist/umd/tabler-icons-solidjs.min.js", + "typings": "dist/tabler-icons-solidjs.d.ts", + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles", + "build:icons": "node build.mjs", + "build:bundles": "rollup -c ./rollup.config.mjs", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf ./src/icons/*.js", + "test": "echo 'ok'" + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "devDependencies": { + "babel-preset-solid": "^1.5.4", + "solid-js": "^1.4.7" + }, + "peerDependencies": { + "solid-js": "^1.4.7" + } +} diff --git a/packages/icons-solidjs/rollup.config.mjs b/packages/icons-solidjs/rollup.config.mjs new file mode 100644 index 000000000..03f19a1dc --- /dev/null +++ b/packages/icons-solidjs/rollup.config.mjs @@ -0,0 +1,67 @@ +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons-solidjs'; +const outputFileName = 'tabler-icons-solidjs'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons-solidjs.js']; +const bundles = [ + { + format: 'umd', + inputs, + outputDir, + minify: true, + }, + { + format: 'umd', + inputs, + outputDir, + }, + { + format: 'cjs', + inputs, + outputDir, + }, + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: getRollupPlugins(pkg, minify), + external: ['solid-js', 'solid-js/h'], + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + preserveModules, + format, + sourcemap: true, + globals: { + 'solid-js': 'solid-js', + 'solid-js/h': 'solid-js/h', + }, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons-solidjs/src/createSolidComponent.js b/packages/icons-solidjs/src/createSolidComponent.js new file mode 100644 index 000000000..501805dae --- /dev/null +++ b/packages/icons-solidjs/src/createSolidComponent.js @@ -0,0 +1,35 @@ +import defaultAttributes from './defaultAttributes' +import { splitProps } from "solid-js" +import h from "solid-js/h"; + +const createSolidComponent = (iconName, iconNode) => { + const Component = props => { + const [localProps, rest] = splitProps(props, [ + 'color', + 'size', + 'strokeWidth', + 'children', + 'class', + ]); + + const svgProps = { + ...defaultAttributes, + width: () => (localProps.size != null ? localProps.size : defaultAttributes.width), + height: () => (localProps.size != null ? localProps.size : defaultAttributes.height), + stroke: () => (localProps.color != null ? localProps.color : defaultAttributes.stroke), + 'stroke-width': () => localProps.strokeWidth != null ? localProps.strokeWidth : defaultAttributes['stroke-width'], + class: () => `tabler-icon tabler-icon-${iconName} ${localProps.class != null ? localProps.class : ''}`, + }; + + return h( + 'svg', + [svgProps, rest], + [...iconNode.map(([tag, attrs]) => h(tag, attrs)), localProps.children], + ); + }; + + Component.displayName = `${iconName}`; + return Component; +} + +export default createSolidComponent; diff --git a/packages/icons-solidjs/src/defaultAttributes.js b/packages/icons-solidjs/src/defaultAttributes.js new file mode 100644 index 000000000..8ae7d46ea --- /dev/null +++ b/packages/icons-solidjs/src/defaultAttributes.js @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + 'stroke-width': 2, + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', +}; diff --git a/packages/icons-solidjs/src/tabler-icons-solidjs.js b/packages/icons-solidjs/src/tabler-icons-solidjs.js new file mode 100644 index 000000000..2418acd97 --- /dev/null +++ b/packages/icons-solidjs/src/tabler-icons-solidjs.js @@ -0,0 +1,2 @@ +export * from './icons'; +export { default as createReactComponent } from './createSolidComponent'; diff --git a/packages/icons-svelte/README.md b/packages/icons-svelte/README.md new file mode 100644 index 000000000..d4c761bed --- /dev/null +++ b/packages/icons-svelte/README.md @@ -0,0 +1,80 @@ +# Tabler Icons for Svelte + +

+ Tabler Icons +

+ +

+Implementation of the Tabler Icons library for Svelte applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-svelte +``` + +or + +``` +npm install @tabler/icons-svelte +``` + +or + +``` +pnpm install @tabler/icons-svelte +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## How to use + +It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a component. + +```sveltehtml + + +
+ +
+``` + +You can pass additional props to adjust the icon. + +```html + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-svelte/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-svelte/build.mjs b/packages/icons-svelte/build.mjs new file mode 100644 index 000000000..039ac7b50 --- /dev/null +++ b/packages/icons-svelte/build.mjs @@ -0,0 +1,59 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + name, + children, + stringify +}) => { + return `\ + + + + +`; +}; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}.svelte';` + +const typeDefinitionsTemplate = () => `/// +/// +import { SvelteComponentTyped } from "svelte"; + +interface IconProps extends Partial> { + color?: string + size?: number, + strokeWidth?: number, + class?: string +} + +interface IconEvents { + [evt: string]: CustomEvent; +} + +export type Icon = SvelteComponentTyped + +// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare class ${namePascal} extends SvelteComponentTyped {}` + + +buildIcons({ + name: 'icons-svelte', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate, + extension: 'svelte', + pretty: false, + key: false +}) diff --git a/packages/icons-svelte/package.json b/packages/icons-svelte/package.json new file mode 100644 index 000000000..9a4896172 --- /dev/null +++ b/packages/icons-svelte/package.json @@ -0,0 +1,49 @@ +{ + "name": "@tabler/icons-svelte", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git", + "directory": "packages/icons-svelte" + }, + "type": "module", + "main": "dist/esm/tabler-icons-svelte.js", + "module": "dist/esm/tabler-icons-svelte.js", + "svelte": "dist/svelte/tabler-icons-svelte.js", + "typings": "dist/tabler-icons-svelte.d.ts", + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles && pnpm build:strip", + "build:icons": "node build.mjs", + "build:bundles": "rollup -c ./rollup.config.mjs", + "build:strip": "svelte-strip strip src/ dist/svelte", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf ./src/icons/*.svelte", + "test": "echo 'ok'" + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "devDependencies": { + "jest": "^28.1.3", + "rollup-plugin-svelte": "^7.1.0", + "@tsconfig/svelte": "^3.0.0", + "@testing-library/jest-dom": "^5.16.2", + "@testing-library/svelte": "^3.0.3", + "jsdom": "^20.0.3", + "svelte": "^3.53.1", + "svelte-check": "^2.9.2", + "svelte-preprocess": "^4.10.7", + "svelte-strip": "^1.0.3", + "typescript": "^4.9.3" + }, + "peerDependencies": { + "svelte": "^3.49.0" + } +} diff --git a/packages/icons-svelte/rollup.config.mjs b/packages/icons-svelte/rollup.config.mjs new file mode 100644 index 000000000..7f2816a0d --- /dev/null +++ b/packages/icons-svelte/rollup.config.mjs @@ -0,0 +1,78 @@ +import svelte from 'rollup-plugin-svelte'; +import resolve from '@rollup/plugin-node-resolve'; +import svelteConfig from './svelte.config.mjs'; +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons-svelte'; +const outputFileName = 'tabler-icons-svelte'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons-svelte.js']; +const bundles = [ + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, + { + format: 'svelte', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: [ + ...(format !== 'svelte' ? [ + svelte({ + ...svelteConfig, + include: 'src/**/*.svelte', + compilerOptions: { + dev: false, + css: false, + hydratable: true, + }, + emitCss: false, + }), + resolve({ + browser: true, + exportConditions: ['svelte'], + extensions: ['.svelte'] + }), + ] : []), + ...getRollupPlugins(pkg, minify), + ], + external: format === 'svelte' ? [/\.svelte/] : ['svelte'], + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + preserveModules, + format: format === 'svelte' ? 'esm' : format, + sourcemap: true, + globals: { + svelte: 'svelte', + }, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons-svelte/src/Icon.svelte b/packages/icons-svelte/src/Icon.svelte new file mode 100644 index 000000000..f81be76bc --- /dev/null +++ b/packages/icons-svelte/src/Icon.svelte @@ -0,0 +1,23 @@ + + + + {#each iconNode as [tag, attrs]} + + {/each} + + diff --git a/packages/icons-svelte/src/defaultAttributes.js b/packages/icons-svelte/src/defaultAttributes.js new file mode 100644 index 000000000..8ae7d46ea --- /dev/null +++ b/packages/icons-svelte/src/defaultAttributes.js @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + 'stroke-width': 2, + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', +}; diff --git a/packages/icons-svelte/src/icons/.gitkeep b/packages/icons-svelte/src/icons/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/icons-svelte/src/tabler-icons-svelte.js b/packages/icons-svelte/src/tabler-icons-svelte.js new file mode 100644 index 000000000..ade567791 --- /dev/null +++ b/packages/icons-svelte/src/tabler-icons-svelte.js @@ -0,0 +1,2 @@ +export * from './icons'; +export { default as defaultAttributes } from './defaultAttributes' diff --git a/packages/icons-svelte/src/types.ts b/packages/icons-svelte/src/types.ts new file mode 100644 index 000000000..e58615e32 --- /dev/null +++ b/packages/icons-svelte/src/types.ts @@ -0,0 +1,5 @@ +/// +/// + +export type Attrs = svelte.JSX.SVGProps +export type IconNode = [elementName: keyof svelte.JSX.IntrinsicElements, attrs: Attrs][] diff --git a/packages/icons-svelte/svelte.config.mjs b/packages/icons-svelte/svelte.config.mjs new file mode 100644 index 000000000..bff104bf4 --- /dev/null +++ b/packages/icons-svelte/svelte.config.mjs @@ -0,0 +1,8 @@ +// eslint-disable-next-line import/no-extraneous-dependencies +import sveltePreprocess from 'svelte-preprocess' + +export default { + preprocess: sveltePreprocess({ + typescript: true, + }), +} diff --git a/packages/icons-svelte/tsconfig.json b/packages/icons-svelte/tsconfig.json new file mode 100644 index 000000000..07b7ada2b --- /dev/null +++ b/packages/icons-svelte/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "resolveJsonModule": true, + "allowJs": true, + "checkJs": true, + "isolatedModules": true, + }, + "include": [ + "src/**/*.d.ts", + "src/**/*.ts", + "src/**/*.js", + "src/**/*.svelte", + "tests/**/*.ts" + ], +} diff --git a/packages/icons-vue/README.md b/packages/icons-vue/README.md new file mode 100644 index 000000000..0ca38bea0 --- /dev/null +++ b/packages/icons-vue/README.md @@ -0,0 +1,86 @@ +# Tabler Icons for Vue + +

+ Tabler Icons +

+ +

+ Implementation of the Tabler Icons library for Vue 3 applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-vue +``` + +or + +``` +npm install @tabler/icons-vue +``` + +or + +``` +pnpm install @tabler/icons-vue +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## How to use + +All icons are Svelte components that contain SVG elements. So any icon can be imported and used as a component. It also helps to use threeshaking, so you only import the icons you use. + + +```vue + + + +``` + +You can pass additional props to adjust the icon. + +```html + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-vue/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-vue/build.mjs b/packages/icons-vue/build.mjs new file mode 100644 index 000000000..e788e19ff --- /dev/null +++ b/packages/icons-vue/build.mjs @@ -0,0 +1,39 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + name, + namePascal, + children +}) => `\ +import createVueComponent from '../createVueComponent'; +export default createVueComponent('${namePascal}', ${JSON.stringify(children)});`; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}';` + +const typeDefinitionsTemplate = () => `import { SVGAttributes, FunctionalComponent } from 'vue'; +declare module '@tabler/icons-vue' + +// Create interface extending SVGAttributes +export interface SVGProps extends Partial { + size?: 24 | number +} + +// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare const ${namePascal}: (props: SVGProps) => FunctionalComponent;` + + +buildIcons({ + name: 'icons-vue', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate +}) diff --git a/packages/icons-vue/package.json b/packages/icons-vue/package.json new file mode 100644 index 000000000..9911a6331 --- /dev/null +++ b/packages/icons-vue/package.json @@ -0,0 +1,42 @@ +{ + "name": "@tabler/icons-vue", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git", + "directory": "packages/icons-vue" + }, + "main": "dist/cjs/tabler-icons-vue.js", + "main:umd": "dist/umd/tabler-icons-vue.js", + "module": "dist/esm/tabler-icons-vue.js", + "unpkg": "dist/umd/tabler-icons-vue.min.js", + "typings": "dist/tabler-icons-vue.d.ts", + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles", + "build:icons": "node build.mjs", + "build:bundles": "rollup -c ./rollup.config.mjs", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf ./src/icons/*.js", + "test": "echo 'ok'" + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "peerDependencies": { + "vue": ">=3.0.1" + }, + "devDependencies": { + "@testing-library/vue": "^6.6.1", + "@vue/compiler-sfc": "^3.2.45", + "@vue/test-utils": "^2.2.4", + "vue": "^3.2.45", + "vue-jest": "^5.0.0-alpha.10" + } +} diff --git a/packages/icons-vue/rollup.config.mjs b/packages/icons-vue/rollup.config.mjs new file mode 100644 index 000000000..431d578a4 --- /dev/null +++ b/packages/icons-vue/rollup.config.mjs @@ -0,0 +1,66 @@ +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons-vue'; +const outputFileName = 'tabler-icons-vue'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons-vue.js']; +const bundles = [ + { + format: 'umd', + inputs, + outputDir, + minify: true, + }, + { + format: 'umd', + inputs, + outputDir, + }, + { + format: 'cjs', + inputs, + outputDir, + }, + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: getRollupPlugins(pkg, minify), + external: ['vue'], + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + format, + preserveModules, + sourcemap: true, + globals: { + vue: 'vue', + }, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons-vue/src/createVueComponent.js b/packages/icons-vue/src/createVueComponent.js new file mode 100644 index 000000000..56ce045e8 --- /dev/null +++ b/packages/icons-vue/src/createVueComponent.js @@ -0,0 +1,26 @@ +import { h } from 'vue'; +import defaultAttributes from './defaultAttributes'; + +const createVueComponent = (iconName, iconNode) => ( + { size, color, ...props }, + { attrs, slots } +) => { + return h( + 'svg', + { + ...defaultAttributes, + width: size || defaultAttributes.width, + height: size || defaultAttributes.height, + stroke: color || defaultAttributes.stroke, + ...attrs, + class: ['tabler-icon', `tabler-icon-${iconName}`, attrs?.class || ''], + ...props, + }, + [ + ...iconNode.map(child => h(...child)), + ...(slots.default ? [slots.default()] : []) + ], + ); +}; + +export default createVueComponent; diff --git a/packages/icons-vue/src/defaultAttributes.js b/packages/icons-vue/src/defaultAttributes.js new file mode 100644 index 000000000..8ae7d46ea --- /dev/null +++ b/packages/icons-vue/src/defaultAttributes.js @@ -0,0 +1,11 @@ +export default { + xmlns: 'http://www.w3.org/2000/svg', + width: 24, + height: 24, + viewBox: '0 0 24 24', + fill: 'none', + stroke: 'currentColor', + 'stroke-width': 2, + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', +}; diff --git a/packages/icons-vue/src/icons/.gitkeep b/packages/icons-vue/src/icons/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/icons-vue/src/tabler-icons-vue.js b/packages/icons-vue/src/tabler-icons-vue.js new file mode 100644 index 000000000..72b0d0f86 --- /dev/null +++ b/packages/icons-vue/src/tabler-icons-vue.js @@ -0,0 +1,2 @@ +export * from './icons'; +export { default as createReactComponent } from './createVueComponent'; diff --git a/packages/icons-vue/test.spec.js b/packages/icons-vue/test.spec.js new file mode 100644 index 000000000..09a06e753 --- /dev/null +++ b/packages/icons-vue/test.spec.js @@ -0,0 +1,101 @@ +import { render, fireEvent } from "@testing-library/vue"; +import { IconActivity } from "./"; + +describe("Vue Icon component", () => { + it("should render an component", () => { + const { container } = render(IconActivity); + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); + + it("should adjust the size, stroke color and stroke width", () => { + const { container } = render(IconActivity, { + props: { + size: 48, + color: "red", + "stroke-width": 4, + }, + }); + + const [icon] = container.getElementsByTagName('svg') + + expect(icon.getAttribute("width")).toBe("48"); + expect(icon.getAttribute("stroke")).toBe("red"); + expect(icon.getAttribute("stroke-width")).toBe("4"); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + }); + + it("should add a class to the element", () => { + const { container } = render(IconActivity, { + attrs: { + class: "my-icon", + }, + }); + + expect(container.innerHTML).toMatchInlineSnapshot( + `""` + ); + + const [icon] = container.getElementsByTagName('svg') + + expect(icon.getAttribute("class")).toBe("my-icon"); + }); + + it("should add a style attribute to the element", () => { + const { container } = render(IconActivity, { + attrs: { + style: "position: absolute", + }, + }); + + expect(container).toMatchInlineSnapshot(` +
+ + + + +
+ `); + + const [icon] = container.getElementsByTagName('svg') + + expect(icon.getAttribute("style")).toBe("position: absolute;"); + }); + + it("should call the onClick event", async () => { + const onClick = jest.fn(); + const { container } = render(IconActivity, { + attrs: { + onClick, + }, + }); + + const [icon] = container.getElementsByClassName("tabler-icon"); + + await fireEvent.click(icon); + + expect(onClick).toHaveBeenCalled(); + }); +}); diff --git a/packages/icons-webfont/.build/build-outline.mjs b/packages/icons-webfont/.build/build-outline.mjs new file mode 100644 index 000000000..a11b4bc3a --- /dev/null +++ b/packages/icons-webfont/.build/build-outline.mjs @@ -0,0 +1,49 @@ +import outlineStroke from 'svg-outline-stroke' +import { asyncForEach, getCompileOptions, getPackageDir, HOME_DIR, readSvgs } from '../../../.build/helpers.mjs' +import fs from 'fs' +import { resolve } from 'path' + +const DIR = getPackageDir('icons-webfont') + +const buildOutline = async () => { + let files = readSvgs() + const compileOptions = getCompileOptions() + + const iconfontUnicode = JSON.parse(fs.readFileSync(resolve(HOME_DIR, 'tags.json'), 'utf-8')) + + await asyncForEach(files, async function({ name, contents }) { + if (compileOptions.includeIcons.length === 0 || compileOptions.includeIcons.indexOf(name) >= 0) { + + if (iconfontUnicode[name]) { + const unicode = iconfontUnicode[name].unicode + await console.log('Stroke for:', name, unicode) + + contents = contents + .replace('width="24"', 'width="768"') + .replace('height="24"', 'height="768"') + + if (compileOptions.strokeWidth) { + contents = contents + .replace('stroke-width="2"', `stroke-width="${compileOptions.strokeWidth}"`) + } + + await outlineStroke(contents, { + optCurve: false, + steps: 4, + round: 0, + centerHorizontally: true, + fixedWidth: true, + color: 'black' + }).then(outlined => { + if (unicode) { + fs.writeFileSync(resolve(DIR, `icons-outlined/u${unicode.toUpperCase()}-${name}.svg`), outlined, 'utf-8') + } else { + fs.writeFileSync(resolve(DIR, `icons-outlined/${name}.svg`), outlined, 'utf-8') + } + }).catch(error => console.log(error)) + } + } + }) +} + +await buildOutline() diff --git a/packages/icons-webfont/.build/build-webfont.mjs b/packages/icons-webfont/.build/build-webfont.mjs new file mode 100644 index 000000000..e377eabc0 --- /dev/null +++ b/packages/icons-webfont/.build/build-webfont.mjs @@ -0,0 +1,51 @@ +import { webfont } from "webfont"; +import * as fs from 'fs' +import template from 'lodash.template' +import { getPackageDir, getPackageJson, PACKAGES_DIR } from '../../../.build/helpers.mjs' + +const formats = ['ttf', 'eot', 'woff', 'woff2'] +const p = getPackageJson() +const DIR = getPackageDir('icons-webfont') +const fontHeight = 768 + +webfont({ + files: 'icons-outlined/*.svg', + fontName: 'tabler-icons', + prependUnicode: true, + formats, + normalize: true, + fontHeight, + descent: 100, + ascent: 986.5, + fixedWidth: true +}) + .then((result) => { + formats.forEach(format => { + fs.writeFileSync(`${PACKAGES_DIR}/icons-webfont/fonts/tabler-icons.${format}`, result[format]) + }) + + const glyphs = result.glyphsData + .map(icon => icon.metadata) + .sort(function(a, b) { + return ('' + a.name).localeCompare(b.name) + }) + + let options = { + fileName: 'tabler-icons', + glyphs, + v: p.version + } + + //scss + const compiled = template(fs.readFileSync(`${DIR}/.build/iconfont.scss`).toString()) + const resultSCSS = compiled(options) + fs.writeFileSync(`${DIR}/tabler-icons.scss`, resultSCSS) + + //html + const compiledHtml = template(fs.readFileSync(`${DIR}/.build/iconfont.html`).toString()) + const resultHtml = compiledHtml(options) + fs.writeFileSync(`${DIR}/tabler-icons.html`, resultHtml) + }) + .catch((error) => { + throw error; + }); diff --git a/fix-outline.py b/packages/icons-webfont/.build/fix-outline.py similarity index 100% rename from fix-outline.py rename to packages/icons-webfont/.build/fix-outline.py diff --git a/packages/icons-webfont/.build/iconfont.html b/packages/icons-webfont/.build/iconfont.html new file mode 100644 index 000000000..edff2b307 --- /dev/null +++ b/packages/icons-webfont/.build/iconfont.html @@ -0,0 +1,163 @@ + + + + + + + Tabler Icons - version <%= v %> + + + + + + + + + +
+
+

+ Tabler Icons +

+

version <%= v %>

+
+ + + +
+
+ <% glyphs.forEach(function(glyph) { %> +
+ + <%= glyph.name %> +
+ ti ti-<%= glyph.name %>
+ \<%= glyph.unicode[0].codePointAt(0).toString(16) %> +
+
+ <% }) %> +
+
+
+ + + + + diff --git a/packages/icons-webfont/.build/iconfont.scss b/packages/icons-webfont/.build/iconfont.scss new file mode 100644 index 000000000..152fd0533 --- /dev/null +++ b/packages/icons-webfont/.build/iconfont.scss @@ -0,0 +1,44 @@ +/*! + * Tabler Icons <%= v %> by tabler - https://tabler.io + * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE + */ +$ti-font-family: '<%= fileName %>' !default; +$ti-font-path: './fonts' !default; +$ti-font-display: null !default; +$ti-prefix: 'ti' !default; + +@font-face { + font-family: $ti-font-family; + font-style: normal; + font-weight: 400; + font-display: $ti-font-display; + src: url('#{$ti-font-path}/<%= fileName %>.eot?v<%= v %>'); + src: url('#{$ti-font-path}/<%= fileName %>.eot?#iefix-v<%= v %>') format('embedded-opentype'), + url('#{$ti-font-path}/<%= fileName %>.woff2?v<%= v %>') format('woff2'), + url('#{$ti-font-path}/<%= fileName %>.woff?') format('woff'), + url('#{$ti-font-path}/<%= fileName %>.ttf?v<%= v %>') format('truetype'); +} + +.#{$ti-prefix} { + font-family: $ti-font-family !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +@function unicode($str) { + @return unquote("\"")+unquote(str-insert($str, "\\", 1))+unquote("\"") +} + +<% glyphs.forEach(function(glyph) { %> +$ti-icon-<%= glyph.name %>: unicode('<%= glyph.unicode[0].codePointAt(0).toString(16) %>');<% }); %> + +<% glyphs.forEach(function(glyph) { %> +.#{$ti-prefix}-<%= glyph.name %>:before { content: $ti-icon-<%= glyph.name %>; }<% }); %> diff --git a/packages/icons-webfont/README.md b/packages/icons-webfont/README.md new file mode 100644 index 000000000..e3f3d07f9 --- /dev/null +++ b/packages/icons-webfont/README.md @@ -0,0 +1,84 @@ +# Tabler Icons Webfont + +

+ Tabler Icons +

+ +

+ Implementation of the Tabler Icons library for Vue 3 applications. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons-webfont +``` + +or + +``` +npm install @tabler/icons-webfont +``` + +or + +``` +pnpm install @tabler/icons-webfont +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +### CDN + +```html + +``` + +## Usage + +### HTML +```html + +``` + +### CSS +```css +content: 'ec8f'; +``` + + +### SCSS +```scss +content: $ti-icon-brand-tabler; +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-vue/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons-webfont/fonts/tabler-icons.eot b/packages/icons-webfont/fonts/tabler-icons.eot new file mode 100644 index 000000000..d8c66f99a Binary files /dev/null and b/packages/icons-webfont/fonts/tabler-icons.eot differ diff --git a/packages/icons-webfont/fonts/tabler-icons.ttf b/packages/icons-webfont/fonts/tabler-icons.ttf new file mode 100644 index 000000000..8ecb8cff3 Binary files /dev/null and b/packages/icons-webfont/fonts/tabler-icons.ttf differ diff --git a/packages/icons-webfont/fonts/tabler-icons.woff b/packages/icons-webfont/fonts/tabler-icons.woff new file mode 100644 index 000000000..1d7ed0c04 Binary files /dev/null and b/packages/icons-webfont/fonts/tabler-icons.woff differ diff --git a/packages/icons-webfont/fonts/tabler-icons.woff2 b/packages/icons-webfont/fonts/tabler-icons.woff2 new file mode 100644 index 000000000..c97ac32c2 Binary files /dev/null and b/packages/icons-webfont/fonts/tabler-icons.woff2 differ diff --git a/packages/icons-webfont/package.json b/packages/icons-webfont/package.json new file mode 100644 index 000000000..e5f0a6816 --- /dev/null +++ b/packages/icons-webfont/package.json @@ -0,0 +1,50 @@ +{ + "name": "@tabler/icons-webfont", + "version": "2.0.0-beta.2", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "homepage": "https://tabler-icons.io", + "bugs": { + "url": "https://github.com/tabler/tabler-icons/issues" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "scripts": { + "build": "pnpm run clean && pnpm run copy && pnpm run build:prepare && pnpm run build:outline && pnpm run build:optimize && pnpm run build:fix-outline && pnpm run build:webfont && pnpm run build:css && pnpm run build:clean", + "build:prepare": "mkdir -p icons-outlined fonts && rm -fd icons-outlined/* fonts/*", + "build:outline": "node .build/build-outline.mjs", + "build:optimize": "svgo icons-outlined/*", + "build:fix-outline": "fontforge -lang=py -script .build/fix-outline.py", + "build:webfont": "rm -fd fonts/* && node .build/build-webfont.mjs", + "build:css": "scss tabler-icons.scss tabler-icons.css --style expanded && scss tabler-icons.scss tabler-icons.min.css --style compressed", + "build:clean": "rm -rf ./icons-outlined", + "clean": "rm -rf ./iconfont", + "copy": "pnpm run copy:license", + "copy:license": "cp ../../LICENSE ./LICENSE" + }, + "files": [ + "fonts/*", + "tabler-icons.*" + ], + "exports": { + "./*": [ + "./icons/*" + ] + }, + "dependencies": { + "@tabler/icons": "2.0.0-beta.2" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web" + ], + "devDependencies": { + "webfont": "^11.2.26" + } +} diff --git a/iconfont/tabler-icons.css b/packages/icons-webfont/tabler-icons.css similarity index 97% rename from iconfont/tabler-icons.css rename to packages/icons-webfont/tabler-icons.css index ea9add099..588b47083 100644 --- a/iconfont/tabler-icons.css +++ b/packages/icons-webfont/tabler-icons.css @@ -1,22 +1,14 @@ /*! - * Tabler Icons 1.119.0 by tabler - https://tabler.io + * Tabler Icons 2.0.0-beta.2 by tabler - https://tabler.io * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE */ @font-face { font-family: "tabler-icons"; font-style: normal; font-weight: 400; - src: url("fonts/tabler-icons.eot"); - src: url("fonts/tabler-icons.eot?#iefix") format("embedded-opentype"), url("fonts/tabler-icons.woff2") format("woff2"), url("fonts/tabler-icons.woff") format("woff"), url("fonts/tabler-icons.ttf") format("truetype"), url("fonts/tabler-icons.svg#tabler-icons") format("svg"); + src: url("./fonts/tabler-icons.eot?v2.0.0-beta.2"); + src: url("./fonts/tabler-icons.eot?#iefix-v2.0.0-beta.2") format("embedded-opentype"), url("./fonts/tabler-icons.woff2?v2.0.0-beta.2") format("woff2"), url("./fonts/tabler-icons.woff?") format("woff"), url("./fonts/tabler-icons.ttf?v2.0.0-beta.2") format("truetype"); } - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - @font-face { - font-family: "tabler-icons"; - src: url("fonts/tabler-icons.svg#tabler-icons") format("svg"); - } -} - .ti { font-family: "tabler-icons" !important; speak: none; @@ -1194,6 +1186,10 @@ content: "\f55a"; } +.ti-badge-filled:before { + content: "\f667"; +} + .ti-badge-hd:before { content: "\f55b"; } @@ -1390,6 +1386,10 @@ content: "\ef3c"; } +.ti-battery-filled:before { + content: "\f668"; +} + .ti-battery-off:before { content: "\ed1c"; } @@ -1422,6 +1422,10 @@ content: "\ea35"; } +.ti-bell-filled:before { + content: "\f669"; +} + .ti-bell-minus:before { content: "\ede2"; } @@ -3186,7 +3190,7 @@ content: "\ed26"; } -.ti-building-pavilon:before { +.ti-building-pavilion:before { content: "\ebf7"; } @@ -3218,6 +3222,10 @@ content: "\ea51"; } +.ti-bulb-filled:before { + content: "\f66a"; +} + .ti-bulb-off:before { content: "\ea50"; } @@ -3546,10 +3554,18 @@ content: "\ea58"; } +.ti-chart-area-filled:before { + content: "\f66b"; +} + .ti-chart-area-line:before { content: "\ea57"; } +.ti-chart-area-line-filled:before { + content: "\f66c"; +} + .ti-chart-arrows:before { content: "\ee2a"; } @@ -3570,10 +3586,18 @@ content: "\ec75"; } +.ti-chart-bubble-filled:before { + content: "\f66d"; +} + .ti-chart-candle:before { content: "\ea5a"; } +.ti-chart-candle-filled:before { + content: "\f66e"; +} + .ti-chart-circles:before { content: "\ee2b"; } @@ -3594,6 +3618,10 @@ content: "\ee2e"; } +.ti-chart-donut-filled:before { + content: "\f66f"; +} + .ti-chart-dots:before { content: "\ee2f"; } @@ -3638,6 +3666,10 @@ content: "\ee33"; } +.ti-chart-pie-filled:before { + content: "\f670"; +} + .ti-chart-pie-off:before { content: "\f3d3"; } @@ -3862,6 +3894,10 @@ content: "\ed28"; } +.ti-circle-filled:before { + content: "\f671"; +} + .ti-circle-half:before { content: "\ee3f"; } @@ -4058,6 +4094,10 @@ content: "\ece5"; } +.ti-circles-filled:before { + content: "\f672"; +} + .ti-circles-relation:before { content: "\f4c3"; } @@ -4302,6 +4342,10 @@ content: "\ea71"; } +.ti-cloud-filled:before { + content: "\f673"; +} + .ti-cloud-fog:before { content: "\ecd9"; } @@ -4346,6 +4390,10 @@ content: "\eff4"; } +.ti-clubs-filled:before { + content: "\f674"; +} + .ti-code:before { content: "\ea77"; } @@ -4714,6 +4762,10 @@ content: "\ef8f"; } +.ti-cross-filled:before { + content: "\f675"; +} + .ti-cross-off:before { content: "\f10b"; } @@ -5314,6 +5366,10 @@ content: "\eff5"; } +.ti-diamonds-filled:before { + content: "\f676"; +} + .ti-dice:before { content: "\eb66"; } @@ -5511,7 +5567,7 @@ } .ti-droplet-filled:before { - content: "\ee80"; + content: "\f677"; } .ti-droplet-filled-2:before { @@ -5526,6 +5582,10 @@ content: "\ee81"; } +.ti-droplet-half-filled:before { + content: "\ee80"; +} + .ti-droplet-off:before { content: "\ee83"; } @@ -5590,6 +5650,10 @@ content: "\f2d6"; } +.ti-egg-filled:before { + content: "\f678"; +} + .ti-egg-fried:before { content: "\f386"; } @@ -5734,6 +5798,10 @@ content: "\ee88"; } +.ti-eye-filled:before { + content: "\f679"; +} + .ti-eye-off:before { content: "\ecf0"; } @@ -6118,6 +6186,10 @@ content: "\ee8d"; } +.ti-flag-filled:before { + content: "\f67a"; +} + .ti-flag-off:before { content: "\f12d"; } @@ -6574,6 +6646,10 @@ content: "\f4c6"; } +.ti-guitar-pick-filled:before { + content: "\f67b"; +} + .ti-h-1:before { content: "\ec94"; } @@ -6718,6 +6794,10 @@ content: "\ecba"; } +.ti-heart-filled:before { + content: "\f67c"; +} + .ti-heart-handshake:before { content: "\f0f3"; } @@ -6782,6 +6862,10 @@ content: "\f4c7"; } +.ti-hexagon-filled:before { + content: "\f67d"; +} + .ti-hexagon-letter-a:before { content: "\f463"; } @@ -7278,6 +7362,10 @@ content: "\f3ff"; } +.ti-jewish-star-filled:before { + content: "\f67e"; +} + .ti-jpg:before { content: "\f3ac"; } @@ -7802,6 +7890,10 @@ content: "\f2c4"; } +.ti-location-filled:before { + content: "\f67f"; +} + .ti-location-off:before { content: "\f155"; } @@ -7970,6 +8062,10 @@ content: "\eae8"; } +.ti-map-pin-filled:before { + content: "\f680"; +} + .ti-map-pin-off:before { content: "\ecf3"; } @@ -8182,6 +8278,10 @@ content: "\ec2f"; } +.ti-medical-cross-filled:before { + content: "\f681"; +} + .ti-medical-cross-off:before { content: "\f160"; } @@ -8242,6 +8342,10 @@ content: "\ed3f"; } +.ti-message-circle-2-filled:before { + content: "\f682"; +} + .ti-message-circle-off:before { content: "\ed40"; } @@ -8298,6 +8402,10 @@ content: "\f2a3"; } +.ti-mickey-filled:before { + content: "\f683"; +} + .ti-microphone:before { content: "\eaf0"; } @@ -8522,6 +8630,10 @@ content: "\ece6"; } +.ti-moon-filled:before { + content: "\f684"; +} + .ti-moon-off:before { content: "\f162"; } @@ -8614,6 +8726,10 @@ content: "\f2c8"; } +.ti-navigation-filled:before { + content: "\f685"; +} + .ti-navigation-off:before { content: "\f413"; } @@ -8758,6 +8874,10 @@ content: "\ecbd"; } +.ti-octagon-filled:before { + content: "\f686"; +} + .ti-octagon-off:before { content: "\eeb8"; } @@ -8794,10 +8914,18 @@ content: "\f02e"; } +.ti-oval-filled:before { + content: "\f687"; +} + .ti-oval-vertical:before { content: "\f02d"; } +.ti-oval-vertical-filled:before { + content: "\f688"; +} + .ti-overline:before { content: "\eebb"; } @@ -8906,6 +9034,10 @@ content: "\eff9"; } +.ti-paw-filled:before { + content: "\f689"; +} + .ti-paw-off:before { content: "\f419"; } @@ -8938,6 +9070,14 @@ content: "\f06a"; } +.ti-pennant-2-filled:before { + content: "\f68a"; +} + +.ti-pennant-filled:before { + content: "\f68b"; +} + .ti-pennant-off:before { content: "\f174"; } @@ -8946,6 +9086,10 @@ content: "\efe3"; } +.ti-pentagon-filled:before { + content: "\f68c"; +} + .ti-pentagon-off:before { content: "\f41a"; } @@ -9126,6 +9270,10 @@ content: "\ec9c"; } +.ti-pin-filled:before { + content: "\f68d"; +} + .ti-ping-pong:before { content: "\f38d"; } @@ -9134,6 +9282,10 @@ content: "\ed60"; } +.ti-pinned-filled:before { + content: "\f68e"; +} + .ti-pinned-off:before { content: "\ed5f"; } @@ -9210,38 +9362,74 @@ content: "\efbc"; } +.ti-player-eject-filled:before { + content: "\f68f"; +} + .ti-player-pause:before { content: "\ed45"; } +.ti-player-pause-filled:before { + content: "\f690"; +} + .ti-player-play:before { content: "\ed46"; } +.ti-player-play-filled:before { + content: "\f691"; +} + .ti-player-record:before { content: "\ed47"; } +.ti-player-record-filled:before { + content: "\f692"; +} + .ti-player-skip-back:before { content: "\ed48"; } +.ti-player-skip-back-filled:before { + content: "\f693"; +} + .ti-player-skip-forward:before { content: "\ed49"; } +.ti-player-skip-forward-filled:before { + content: "\f694"; +} + .ti-player-stop:before { content: "\ed4a"; } +.ti-player-stop-filled:before { + content: "\f695"; +} + .ti-player-track-next:before { content: "\ed4b"; } +.ti-player-track-next-filled:before { + content: "\f696"; +} + .ti-player-track-prev:before { content: "\ed4c"; } +.ti-player-track-prev-filled:before { + content: "\f697"; +} + .ti-playlist:before { content: "\eec0"; } @@ -9314,6 +9502,10 @@ content: "\eb0c"; } +.ti-point-filled:before { + content: "\f698"; +} + .ti-point-off:before { content: "\f181"; } @@ -9422,6 +9614,10 @@ content: "\ef83"; } +.ti-puzzle-filled:before { + content: "\f699"; +} + .ti-puzzle-off:before { content: "\f186"; } @@ -9574,10 +9770,18 @@ content: "\ed37"; } +.ti-rectangle-filled:before { + content: "\f69a"; +} + .ti-rectangle-vertical:before { content: "\ed36"; } +.ti-rectangle-vertical-filled:before { + content: "\f69b"; +} + .ti-recycle:before { content: "\eb9b"; } @@ -9646,6 +9850,10 @@ content: "\ebc7"; } +.ti-replace-filled:before { + content: "\f69c"; +} + .ti-replace-off:before { content: "\f422"; } @@ -9734,6 +9942,10 @@ content: "\f599"; } +.ti-rosette-filled:before { + content: "\f69d"; +} + .ti-rosette-number-0:before { content: "\f58f"; } @@ -10118,6 +10330,10 @@ content: "\eed6"; } +.ti-settings-filled:before { + content: "\f69e"; +} + .ti-settings-off:before { content: "\f19f"; } @@ -10170,6 +10386,10 @@ content: "\ef9b"; } +.ti-shield-filled:before { + content: "\f69f"; +} + .ti-shield-half:before { content: "\f358"; } @@ -10202,6 +10422,10 @@ content: "\ec0a"; } +.ti-shirt-filled:before { + content: "\f6a0"; +} + .ti-shirt-off:before { content: "\f1a2"; } @@ -10254,10 +10478,18 @@ content: "\f06b"; } +.ti-sign-left-filled:before { + content: "\f6a1"; +} + .ti-sign-right:before { content: "\f06c"; } +.ti-sign-right-filled:before { + content: "\f6a2"; +} + .ti-signal-3g:before { content: "\f1ee"; } @@ -10458,6 +10690,10 @@ content: "\effa"; } +.ti-spade-filled:before { + content: "\f6a3"; +} + .ti-speakerphone:before { content: "\ed61"; } @@ -10782,6 +11018,10 @@ content: "\ecdf"; } +.ti-square-rotated-filled:before { + content: "\f6a4"; +} + .ti-square-rotated-forbid:before { content: "\f01c"; } @@ -10850,6 +11090,10 @@ content: "\f652"; } +.ti-square-rounded-filled:before { + content: "\f6a5"; +} + .ti-square-rounded-letter-a:before { content: "\f5ae"; } @@ -11062,10 +11306,18 @@ content: "\eb2e"; } +.ti-star-filled:before { + content: "\f6a6"; +} + .ti-star-half:before { content: "\ed19"; } +.ti-star-half-filled:before { + content: "\f6a7"; +} + .ti-star-off:before { content: "\ed62"; } @@ -11074,6 +11326,10 @@ content: "\ed38"; } +.ti-stars-filled:before { + content: "\f6a8"; +} + .ti-stars-off:before { content: "\f430"; } @@ -11158,6 +11414,10 @@ content: "\eb30"; } +.ti-sun-filled:before { + content: "\f6a9"; +} + .ti-sun-high:before { content: "\f236"; } @@ -11466,6 +11726,10 @@ content: "\eb3b"; } +.ti-thumb-down-filled:before { + content: "\f6aa"; +} + .ti-thumb-down-off:before { content: "\f436"; } @@ -11474,6 +11738,10 @@ content: "\eb3c"; } +.ti-thumb-up-filled:before { + content: "\f6ab"; +} + .ti-thumb-up-off:before { content: "\f437"; } @@ -11702,6 +11970,10 @@ content: "\f38e"; } +.ti-transform-filled:before { + content: "\f6ac"; +} + .ti-transition-bottom:before { content: "\f2b2"; } @@ -11770,10 +12042,18 @@ content: "\eb44"; } +.ti-triangle-filled:before { + content: "\f6ad"; +} + .ti-triangle-inverted:before { content: "\f01d"; } +.ti-triangle-inverted-filled:before { + content: "\f6ae"; +} + .ti-triangle-off:before { content: "\ef02"; } @@ -11798,6 +12078,10 @@ content: "\eb45"; } +.ti-trophy-filled:before { + content: "\f6af"; +} + .ti-trophy-off:before { content: "\f438"; } @@ -11850,6 +12134,10 @@ content: "\ebf1"; } +.ti-umbrella-filled:before { + content: "\f6b0"; +} + .ti-umbrella-off:before { content: "\f1bb"; } @@ -12002,6 +12290,10 @@ content: "\ed52"; } +.ti-versions-filled:before { + content: "\f6b1"; +} + .ti-versions-off:before { content: "\f1c0"; } @@ -12306,6 +12598,10 @@ content: "\ed85"; } +.ti-windmill-filled:before { + content: "\f6b2"; +} + .ti-windmill-off:before { content: "\f1c8"; } @@ -12541,3 +12837,5 @@ .ti-zzz-off:before { content: "\f440"; } + +/*# sourceMappingURL=tabler-icons.css.map */ diff --git a/packages/icons-webfont/tabler-icons.css.map b/packages/icons-webfont/tabler-icons.css.map new file mode 100644 index 000000000..b9d0dcfce --- /dev/null +++ b/packages/icons-webfont/tabler-icons.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAAA;;;GAGG;AAMH,UAUC;EATC,WAAW,EANI,cAAc;EAO7B,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAEhB,GAAG,EAAE,6CAAsD;EAC3D,GAAG,EAAE,qQAGsE;;AAG7E,GAAe;EACb,WAAW,EAAE,yBAA0B;EACvC,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,YAAY,EAAE,MAAM;EACpB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,CAAC;EAEd,2BAA2B;EAC3B,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;;;AA8oGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,aAAyB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,aAAyB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,aAAyB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,sCAAkD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,aAAyB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uCAAmD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uCAAmD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,wCAAoD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvD,sCAAkD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrD,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,aAAyB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,sCAAkD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrD,sCAAkD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrD,uCAAmD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtD,oCAAgD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnD,uCAAmD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtD,uCAAmD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtD,wCAAoD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvD,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,gCAA4C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qCAAiD;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpD,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kCAA8C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjD,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,mCAA+C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlD,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iCAA6C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhD,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,+BAA2C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9C,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,8BAA0C;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7C,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,4BAAwC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3C,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,gBAA4B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG/B,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,YAAwB;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG3B,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,iBAA6B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGhC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,eAA2B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG9B,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,0BAAsC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGzC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,6BAAyC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG5C,yBAAqC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGxC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,sBAAkC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGrC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,oBAAgC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGnC,2BAAuC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG1C,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,mBAA+B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGlC,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,uBAAmC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGtC,qBAAiC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGpC,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe", +"sources": ["tabler-icons.scss"], +"names": [], +"file": "tabler-icons.css" +} diff --git a/iconfont/tabler-icons.html b/packages/icons-webfont/tabler-icons.html similarity index 97% rename from iconfont/tabler-icons.html rename to packages/icons-webfont/tabler-icons.html index 56b9d9105..d35a05e0d 100644 --- a/iconfont/tabler-icons.html +++ b/packages/icons-webfont/tabler-icons.html @@ -5,19 +5,23 @@ - Tabler Icons - version 1.119.0 + Tabler Icons - version 2.0.0-beta.2 + + + - @@ -109,11 +116,11 @@

Tabler Icons

-

version 1.119.0

+

version 2.0.0-beta.2

@@ -2738,6 +2745,15 @@
+
+ + badge-filled +
+ ti ti-badge-filled
+ \f667 +
+
+
badge-hd @@ -3179,6 +3195,15 @@
+
+ + battery-filled +
+ ti ti-battery-filled
+ \f668 +
+
+
battery-off @@ -3251,6 +3276,15 @@
+
+ + bell-filled +
+ ti ti-bell-filled
+ \f669 +
+
+
bell-minus @@ -7221,10 +7255,10 @@
- - building-pavilon + + building-pavilion
- ti ti-building-pavilon
+ ti ti-building-pavilion
\ebf7
@@ -7292,6 +7326,15 @@ +
+ + bulb-filled +
+ ti ti-bulb-filled
+ \f66a +
+
+
bulb-off @@ -8030,6 +8073,15 @@
+
+ + chart-area-filled +
+ ti ti-chart-area-filled
+ \f66b +
+
+
chart-area-line @@ -8039,6 +8091,15 @@
+
+ + chart-area-line-filled +
+ ti ti-chart-area-line-filled
+ \f66c +
+
+
chart-arrows @@ -8084,6 +8145,15 @@
+
+ + chart-bubble-filled +
+ ti ti-chart-bubble-filled
+ \f66d +
+
+
chart-candle @@ -8093,6 +8163,15 @@
+
+ + chart-candle-filled +
+ ti ti-chart-candle-filled
+ \f66e +
+
+
chart-circles @@ -8138,6 +8217,15 @@
+
+ + chart-donut-filled +
+ ti ti-chart-donut-filled
+ \f66f +
+
+
chart-dots @@ -8237,6 +8325,15 @@
+
+ + chart-pie-filled +
+ ti ti-chart-pie-filled
+ \f670 +
+
+
chart-pie-off @@ -8741,6 +8838,15 @@
+
+ + circle-filled +
+ ti ti-circle-filled
+ \f671 +
+
+
circle-half @@ -9182,6 +9288,15 @@
+
+ + circles-filled +
+ ti ti-circles-filled
+ \f672 +
+
+
circles-relation @@ -9731,6 +9846,15 @@
+
+ + cloud-filled +
+ ti ti-cloud-filled
+ \f673 +
+
+
cloud-fog @@ -9830,6 +9954,15 @@
+
+ + clubs-filled +
+ ti ti-clubs-filled
+ \f674 +
+
+
code @@ -10658,6 +10791,15 @@
+
+ + cross-filled +
+ ti ti-cross-filled
+ \f675 +
+
+
cross-off @@ -12008,6 +12150,15 @@
+
+ + diamonds-filled +
+ ti ti-diamonds-filled
+ \f676 +
+
+
dice @@ -12454,7 +12605,7 @@ droplet-filled
ti ti-droplet-filled
- \ee80 + \f677
@@ -12485,6 +12636,15 @@ +
+ + droplet-half-filled +
+ ti ti-droplet-half-filled
+ \ee80 +
+
+
droplet-off @@ -12629,6 +12789,15 @@
+
+ + egg-filled +
+ ti ti-egg-filled
+ \f678 +
+
+
egg-fried @@ -12953,6 +13122,15 @@
+
+ + eye-filled +
+ ti ti-eye-filled
+ \f679 +
+
+
eye-off @@ -13817,6 +13995,15 @@
+
+ + flag-filled +
+ ti ti-flag-filled
+ \f67a +
+
+
flag-off @@ -14843,6 +15030,15 @@
+
+ + guitar-pick-filled +
+ ti ti-guitar-pick-filled
+ \f67b +
+
+
h-1 @@ -15167,6 +15363,15 @@
+
+ + heart-filled +
+ ti ti-heart-filled
+ \f67c +
+
+
heart-handshake @@ -15311,6 +15516,15 @@
+
+ + hexagon-filled +
+ ti ti-hexagon-filled
+ \f67d +
+
+
hexagon-letter-a @@ -16427,6 +16641,15 @@
+
+ + jewish-star-filled +
+ ti ti-jewish-star-filled
+ \f67e +
+
+
jpg @@ -17606,6 +17829,15 @@
+
+ + location-filled +
+ ti ti-location-filled
+ \f67f +
+
+
location-off @@ -17984,6 +18216,15 @@
+
+ + map-pin-filled +
+ ti ti-map-pin-filled
+ \f680 +
+
+
map-pin-off @@ -18461,6 +18702,15 @@
+
+ + medical-cross-filled +
+ ti ti-medical-cross-filled
+ \f681 +
+
+
medical-cross-off @@ -18596,6 +18846,15 @@
+
+ + message-circle-2-filled +
+ ti ti-message-circle-2-filled
+ \f682 +
+
+
message-circle-off @@ -18722,6 +18981,15 @@
+
+ + mickey-filled +
+ ti ti-mickey-filled
+ \f683 +
+
+
microphone @@ -19226,6 +19494,15 @@
+
+ + moon-filled +
+ ti ti-moon-filled
+ \f684 +
+
+
moon-off @@ -19433,6 +19710,15 @@
+
+ + navigation-filled +
+ ti ti-navigation-filled
+ \f685 +
+
+
navigation-off @@ -19757,6 +20043,15 @@
+
+ + octagon-filled +
+ ti ti-octagon-filled
+ \f686 +
+
+
octagon-off @@ -19838,6 +20133,15 @@
+
+ + oval-filled +
+ ti ti-oval-filled
+ \f687 +
+
+
oval-vertical @@ -19847,6 +20151,15 @@
+
+ + oval-vertical-filled +
+ ti ti-oval-vertical-filled
+ \f688 +
+
+
overline @@ -20090,6 +20403,15 @@
+
+ + paw-filled +
+ ti ti-paw-filled
+ \f689 +
+
+
paw-off @@ -20162,6 +20484,24 @@
+
+ + pennant-2-filled +
+ ti ti-pennant-2-filled
+ \f68a +
+
+ +
+ + pennant-filled +
+ ti ti-pennant-filled
+ \f68b +
+
+
pennant-off @@ -20180,6 +20520,15 @@
+
+ + pentagon-filled +
+ ti ti-pentagon-filled
+ \f68c +
+
+
pentagon-off @@ -20585,6 +20934,15 @@
+
+ + pin-filled +
+ ti ti-pin-filled
+ \f68d +
+
+
ping-pong @@ -20603,6 +20961,15 @@
+
+ + pinned-filled +
+ ti ti-pinned-filled
+ \f68e +
+
+
pinned-off @@ -20774,6 +21141,15 @@
+
+ + player-eject-filled +
+ ti ti-player-eject-filled
+ \f68f +
+
+
player-pause @@ -20783,6 +21159,15 @@
+
+ + player-pause-filled +
+ ti ti-player-pause-filled
+ \f690 +
+
+
player-play @@ -20792,6 +21177,15 @@
+
+ + player-play-filled +
+ ti ti-player-play-filled
+ \f691 +
+
+
player-record @@ -20801,6 +21195,15 @@
+
+ + player-record-filled +
+ ti ti-player-record-filled
+ \f692 +
+
+
player-skip-back @@ -20810,6 +21213,15 @@
+
+ + player-skip-back-filled +
+ ti ti-player-skip-back-filled
+ \f693 +
+
+
player-skip-forward @@ -20819,6 +21231,15 @@
+
+ + player-skip-forward-filled +
+ ti ti-player-skip-forward-filled
+ \f694 +
+
+
player-stop @@ -20828,6 +21249,15 @@
+
+ + player-stop-filled +
+ ti ti-player-stop-filled
+ \f695 +
+
+
player-track-next @@ -20837,6 +21267,15 @@
+
+ + player-track-next-filled +
+ ti ti-player-track-next-filled
+ \f696 +
+
+
player-track-prev @@ -20846,6 +21285,15 @@
+
+ + player-track-prev-filled +
+ ti ti-player-track-prev-filled
+ \f697 +
+
+
playlist @@ -21008,6 +21456,15 @@
+
+ + point-filled +
+ ti ti-point-filled
+ \f698 +
+
+
point-off @@ -21251,6 +21708,15 @@
+
+ + puzzle-filled +
+ ti ti-puzzle-filled
+ \f699 +
+
+
puzzle-off @@ -21593,6 +22059,15 @@
+
+ + rectangle-filled +
+ ti ti-rectangle-filled
+ \f69a +
+
+
rectangle-vertical @@ -21602,6 +22077,15 @@
+
+ + rectangle-vertical-filled +
+ ti ti-rectangle-vertical-filled
+ \f69b +
+
+
recycle @@ -21755,6 +22239,15 @@
+
+ + replace-filled +
+ ti ti-replace-filled
+ \f69c +
+
+
replace-off @@ -21953,6 +22446,15 @@
+
+ + rosette-filled +
+ ti ti-rosette-filled
+ \f69d +
+
+
rosette-number-0 @@ -22817,6 +23319,15 @@
+
+ + settings-filled +
+ ti ti-settings-filled
+ \f69e +
+
+
settings-off @@ -22934,6 +23445,15 @@
+
+ + shield-filled +
+ ti ti-shield-filled
+ \f69f +
+
+
shield-half @@ -23006,6 +23526,15 @@
+
+ + shirt-filled +
+ ti ti-shirt-filled
+ \f6a0 +
+
+
shirt-off @@ -23123,6 +23652,15 @@
+
+ + sign-left-filled +
+ ti ti-sign-left-filled
+ \f6a1 +
+
+
sign-right @@ -23132,6 +23670,15 @@
+
+ + sign-right-filled +
+ ti ti-sign-right-filled
+ \f6a2 +
+
+
signal-3g @@ -23582,6 +24129,15 @@
+
+ + spade-filled +
+ ti ti-spade-filled
+ \f6a3 +
+
+
speakerphone @@ -24311,6 +24867,15 @@
+
+ + square-rotated-filled +
+ ti ti-square-rotated-filled
+ \f6a4 +
+
+
square-rotated-forbid @@ -24464,6 +25029,15 @@
+
+ + square-rounded-filled +
+ ti ti-square-rounded-filled
+ \f6a5 +
+
+
square-rounded-letter-a @@ -24941,6 +25515,15 @@
+
+ + star-filled +
+ ti ti-star-filled
+ \f6a6 +
+
+
star-half @@ -24950,6 +25533,15 @@
+
+ + star-half-filled +
+ ti ti-star-half-filled
+ \f6a7 +
+
+
star-off @@ -24968,6 +25560,15 @@
+
+ + stars-filled +
+ ti ti-stars-filled
+ \f6a8 +
+
+
stars-off @@ -25157,6 +25758,15 @@
+
+ + sun-filled +
+ ti ti-sun-filled
+ \f6a9 +
+
+
sun-high @@ -25850,6 +26460,15 @@
+
+ + thumb-down-filled +
+ ti ti-thumb-down-filled
+ \f6aa +
+
+
thumb-down-off @@ -25868,6 +26487,15 @@
+
+ + thumb-up-filled +
+ ti ti-thumb-up-filled
+ \f6ab +
+
+
thumb-up-off @@ -26381,6 +27009,15 @@
+
+ + transform-filled +
+ ti ti-transform-filled
+ \f6ac +
+
+
transition-bottom @@ -26534,6 +27171,15 @@
+
+ + triangle-filled +
+ ti ti-triangle-filled
+ \f6ad +
+
+
triangle-inverted @@ -26543,6 +27189,15 @@
+
+ + triangle-inverted-filled +
+ ti ti-triangle-inverted-filled
+ \f6ae +
+
+
triangle-off @@ -26597,6 +27252,15 @@
+
+ + trophy-filled +
+ ti ti-trophy-filled
+ \f6af +
+
+
trophy-off @@ -26714,6 +27378,15 @@
+
+ + umbrella-filled +
+ ti ti-umbrella-filled
+ \f6b0 +
+
+
umbrella-off @@ -27056,6 +27729,15 @@
+
+ + versions-filled +
+ ti ti-versions-filled
+ \f6b1 +
+
+
versions-off @@ -27740,6 +28422,15 @@
+
+ + windmill-filled +
+ ti ti-windmill-filled
+ \f6b2 +
+
+
windmill-off @@ -28276,23 +28967,23 @@
diff --git a/packages/icons-webfont/tabler-icons.min.css b/packages/icons-webfont/tabler-icons.min.css new file mode 100644 index 000000000..208c3f7ad --- /dev/null +++ b/packages/icons-webfont/tabler-icons.min.css @@ -0,0 +1,5 @@ +/*! + * Tabler Icons 2.0.0-beta.2 by tabler - https://tabler.io + * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE + */@font-face{font-family:"tabler-icons";font-style:normal;font-weight:400;src:url("./fonts/tabler-icons.eot?v2.0.0-beta.2");src:url("./fonts/tabler-icons.eot?#iefix-v2.0.0-beta.2") format("embedded-opentype"),url("./fonts/tabler-icons.woff2?v2.0.0-beta.2") format("woff2"),url("./fonts/tabler-icons.woff?") format("woff"),url("./fonts/tabler-icons.ttf?v2.0.0-beta.2") format("truetype")}.ti{font-family:"tabler-icons" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-123:before{content:"\f554"}.ti-24-hours:before{content:"\f5e7"}.ti-2fa:before{content:"\eca0"}.ti-360:before{content:"\f62f"}.ti-360-view:before{content:"\f566"}.ti-3d-cube-sphere:before{content:"\ecd7"}.ti-3d-cube-sphere-off:before{content:"\f3b5"}.ti-3d-rotate:before{content:"\f020"}.ti-a-b:before{content:"\ec36"}.ti-a-b-2:before{content:"\f25f"}.ti-a-b-off:before{content:"\f0a6"}.ti-abacus:before{content:"\f05c"}.ti-abacus-off:before{content:"\f3b6"}.ti-abc:before{content:"\f567"}.ti-access-point:before{content:"\ed1b"}.ti-access-point-off:before{content:"\ed1a"}.ti-accessible:before{content:"\eba9"}.ti-accessible-off:before{content:"\f0a7"}.ti-activity:before{content:"\ed23"}.ti-activity-heartbeat:before{content:"\f0db"}.ti-ad:before{content:"\ea02"}.ti-ad-2:before{content:"\ef1f"}.ti-ad-off:before{content:"\f3b7"}.ti-address-book:before{content:"\f021"}.ti-address-book-off:before{content:"\f3b8"}.ti-adjustments:before{content:"\ea03"}.ti-adjustments-alt:before{content:"\ec37"}.ti-adjustments-horizontal:before{content:"\ec38"}.ti-adjustments-off:before{content:"\f0a8"}.ti-aerial-lift:before{content:"\edfe"}.ti-affiliate:before{content:"\edff"}.ti-air-balloon:before{content:"\f4a6"}.ti-air-conditioning:before{content:"\f3a2"}.ti-air-conditioning-disabled:before{content:"\f542"}.ti-alarm:before{content:"\ea04"}.ti-alarm-minus:before{content:"\f630"}.ti-alarm-off:before{content:"\f0a9"}.ti-alarm-plus:before{content:"\f631"}.ti-alarm-snooze:before{content:"\f632"}.ti-album:before{content:"\f022"}.ti-album-off:before{content:"\f3b9"}.ti-alert-circle:before{content:"\ea05"}.ti-alert-octagon:before{content:"\ecc6"}.ti-alert-triangle:before{content:"\ea06"}.ti-alien:before{content:"\ebde"}.ti-align-box-bottom-center:before{content:"\f530"}.ti-align-box-bottom-left:before{content:"\f531"}.ti-align-box-bottom-right:before{content:"\f532"}.ti-align-box-left-bottom:before{content:"\f533"}.ti-align-box-left-middle:before{content:"\f534"}.ti-align-box-left-top:before{content:"\f535"}.ti-align-box-right-bottom:before{content:"\f536"}.ti-align-box-right-middle:before{content:"\f537"}.ti-align-box-right-top:before{content:"\f538"}.ti-align-box-top-center:before{content:"\f539"}.ti-align-box-top-left:before{content:"\f53a"}.ti-align-box-top-right:before{content:"\f53b"}.ti-align-center:before{content:"\ea07"}.ti-align-justified:before{content:"\ea08"}.ti-align-left:before{content:"\ea09"}.ti-align-right:before{content:"\ea0a"}.ti-alpha:before{content:"\f543"}.ti-alphabet-cyrillic:before{content:"\f1df"}.ti-alphabet-greek:before{content:"\f1e0"}.ti-alphabet-latin:before{content:"\f1e1"}.ti-ambulance:before{content:"\ebf5"}.ti-ampersand:before{content:"\f229"}.ti-analyze:before{content:"\f3a3"}.ti-analyze-off:before{content:"\f3ba"}.ti-anchor:before{content:"\eb76"}.ti-anchor-off:before{content:"\f0f7"}.ti-angle:before{content:"\ef20"}.ti-ankh:before{content:"\f1cd"}.ti-antenna:before{content:"\f094"}.ti-antenna-bars-1:before{content:"\ecc7"}.ti-antenna-bars-2:before{content:"\ecc8"}.ti-antenna-bars-3:before{content:"\ecc9"}.ti-antenna-bars-4:before{content:"\ecca"}.ti-antenna-bars-5:before{content:"\eccb"}.ti-antenna-bars-off:before{content:"\f0aa"}.ti-antenna-off:before{content:"\f3bb"}.ti-aperture:before{content:"\eb58"}.ti-aperture-off:before{content:"\f3bc"}.ti-api:before{content:"\effd"}.ti-api-app:before{content:"\effc"}.ti-api-app-off:before{content:"\f0ab"}.ti-api-off:before{content:"\f0f8"}.ti-app-window:before{content:"\efe6"}.ti-apple:before{content:"\ef21"}.ti-apps:before{content:"\ebb6"}.ti-apps-off:before{content:"\f0ac"}.ti-archive:before{content:"\ea0b"}.ti-archive-off:before{content:"\f0ad"}.ti-armchair:before{content:"\ef9e"}.ti-armchair-2:before{content:"\efe7"}.ti-armchair-2-off:before{content:"\f3bd"}.ti-armchair-off:before{content:"\f3be"}.ti-arrow-autofit-content:before{content:"\ef31"}.ti-arrow-autofit-down:before{content:"\ef32"}.ti-arrow-autofit-height:before{content:"\ef33"}.ti-arrow-autofit-left:before{content:"\ef34"}.ti-arrow-autofit-right:before{content:"\ef35"}.ti-arrow-autofit-up:before{content:"\ef36"}.ti-arrow-autofit-width:before{content:"\ef37"}.ti-arrow-back:before{content:"\ea0c"}.ti-arrow-back-up:before{content:"\eb77"}.ti-arrow-badge-down:before{content:"\f60b"}.ti-arrow-badge-left:before{content:"\f60c"}.ti-arrow-badge-right:before{content:"\f60d"}.ti-arrow-badge-up:before{content:"\f60e"}.ti-arrow-bar-down:before{content:"\ea0d"}.ti-arrow-bar-left:before{content:"\ea0e"}.ti-arrow-bar-right:before{content:"\ea0f"}.ti-arrow-bar-to-down:before{content:"\ec88"}.ti-arrow-bar-to-left:before{content:"\ec89"}.ti-arrow-bar-to-right:before{content:"\ec8a"}.ti-arrow-bar-to-up:before{content:"\ec8b"}.ti-arrow-bar-up:before{content:"\ea10"}.ti-arrow-bear-left:before{content:"\f045"}.ti-arrow-bear-left-2:before{content:"\f044"}.ti-arrow-bear-right:before{content:"\f047"}.ti-arrow-bear-right-2:before{content:"\f046"}.ti-arrow-big-down:before{content:"\edda"}.ti-arrow-big-down-line:before{content:"\efe8"}.ti-arrow-big-down-lines:before{content:"\efe9"}.ti-arrow-big-left:before{content:"\eddb"}.ti-arrow-big-left-line:before{content:"\efea"}.ti-arrow-big-left-lines:before{content:"\efeb"}.ti-arrow-big-right:before{content:"\eddc"}.ti-arrow-big-right-line:before{content:"\efec"}.ti-arrow-big-right-lines:before{content:"\efed"}.ti-arrow-big-top:before{content:"\eddd"}.ti-arrow-big-up-line:before{content:"\efee"}.ti-arrow-big-up-lines:before{content:"\efef"}.ti-arrow-bounce:before{content:"\f3a4"}.ti-arrow-curve-left:before{content:"\f048"}.ti-arrow-curve-right:before{content:"\f049"}.ti-arrow-down:before{content:"\ea16"}.ti-arrow-down-bar:before{content:"\ed98"}.ti-arrow-down-circle:before{content:"\ea11"}.ti-arrow-down-left:before{content:"\ea13"}.ti-arrow-down-left-circle:before{content:"\ea12"}.ti-arrow-down-rhombus:before{content:"\f61d"}.ti-arrow-down-right:before{content:"\ea15"}.ti-arrow-down-right-circle:before{content:"\ea14"}.ti-arrow-down-square:before{content:"\ed9a"}.ti-arrow-down-tail:before{content:"\ed9b"}.ti-arrow-fork:before{content:"\f04a"}.ti-arrow-forward:before{content:"\ea17"}.ti-arrow-forward-up:before{content:"\eb78"}.ti-arrow-guide:before{content:"\f22a"}.ti-arrow-iteration:before{content:"\f578"}.ti-arrow-left:before{content:"\ea19"}.ti-arrow-left-bar:before{content:"\ed9c"}.ti-arrow-left-circle:before{content:"\ea18"}.ti-arrow-left-rhombus:before{content:"\f61e"}.ti-arrow-left-right:before{content:"\f04b"}.ti-arrow-left-square:before{content:"\ed9d"}.ti-arrow-left-tail:before{content:"\ed9e"}.ti-arrow-loop-left:before{content:"\ed9f"}.ti-arrow-loop-left-2:before{content:"\f04c"}.ti-arrow-loop-right:before{content:"\eda0"}.ti-arrow-loop-right-2:before{content:"\f04d"}.ti-arrow-merge:before{content:"\f04e"}.ti-arrow-merge-both:before{content:"\f23b"}.ti-arrow-merge-left:before{content:"\f23c"}.ti-arrow-merge-right:before{content:"\f23d"}.ti-arrow-move-down:before{content:"\f2ba"}.ti-arrow-move-left:before{content:"\f2bb"}.ti-arrow-move-right:before{content:"\f2bc"}.ti-arrow-move-up:before{content:"\f2bd"}.ti-arrow-narrow-down:before{content:"\ea1a"}.ti-arrow-narrow-left:before{content:"\ea1b"}.ti-arrow-narrow-right:before{content:"\ea1c"}.ti-arrow-narrow-up:before{content:"\ea1d"}.ti-arrow-ramp-left:before{content:"\ed3c"}.ti-arrow-ramp-left-2:before{content:"\f04f"}.ti-arrow-ramp-left-3:before{content:"\f050"}.ti-arrow-ramp-right:before{content:"\ed3d"}.ti-arrow-ramp-right-2:before{content:"\f051"}.ti-arrow-ramp-right-3:before{content:"\f052"}.ti-arrow-right:before{content:"\ea1f"}.ti-arrow-right-bar:before{content:"\eda1"}.ti-arrow-right-circle:before{content:"\ea1e"}.ti-arrow-right-rhombus:before{content:"\f61f"}.ti-arrow-right-square:before{content:"\eda2"}.ti-arrow-right-tail:before{content:"\eda3"}.ti-arrow-rotary-first-left:before{content:"\f053"}.ti-arrow-rotary-first-right:before{content:"\f054"}.ti-arrow-rotary-last-left:before{content:"\f055"}.ti-arrow-rotary-last-right:before{content:"\f056"}.ti-arrow-rotary-left:before{content:"\f057"}.ti-arrow-rotary-right:before{content:"\f058"}.ti-arrow-rotary-straight:before{content:"\f059"}.ti-arrow-roundabout-left:before{content:"\f22b"}.ti-arrow-roundabout-right:before{content:"\f22c"}.ti-arrow-sharp-turn-left:before{content:"\f05a"}.ti-arrow-sharp-turn-right:before{content:"\f05b"}.ti-arrow-up:before{content:"\ea25"}.ti-arrow-up-bar:before{content:"\eda4"}.ti-arrow-up-circle:before{content:"\ea20"}.ti-arrow-up-left:before{content:"\ea22"}.ti-arrow-up-left-circle:before{content:"\ea21"}.ti-arrow-up-rhombus:before{content:"\f620"}.ti-arrow-up-right:before{content:"\ea24"}.ti-arrow-up-right-circle:before{content:"\ea23"}.ti-arrow-up-square:before{content:"\eda6"}.ti-arrow-up-tail:before{content:"\eda7"}.ti-arrow-wave-left-down:before{content:"\eda8"}.ti-arrow-wave-left-up:before{content:"\eda9"}.ti-arrow-wave-right-down:before{content:"\edaa"}.ti-arrow-wave-right-up:before{content:"\edab"}.ti-arrow-zig-zag:before{content:"\f4a7"}.ti-arrows-cross:before{content:"\effe"}.ti-arrows-diagonal:before{content:"\ea27"}.ti-arrows-diagonal-2:before{content:"\ea26"}.ti-arrows-diagonal-minimize:before{content:"\ef39"}.ti-arrows-diagonal-minimize-2:before{content:"\ef38"}.ti-arrows-diff:before{content:"\f296"}.ti-arrows-double-ne-sw:before{content:"\edde"}.ti-arrows-double-nw-se:before{content:"\eddf"}.ti-arrows-double-se-nw:before{content:"\ede0"}.ti-arrows-double-sw-ne:before{content:"\ede1"}.ti-arrows-down:before{content:"\edad"}.ti-arrows-down-up:before{content:"\edac"}.ti-arrows-exchange:before{content:"\f1f4"}.ti-arrows-exchange-2:before{content:"\f1f3"}.ti-arrows-horizontal:before{content:"\eb59"}.ti-arrows-join:before{content:"\edaf"}.ti-arrows-join-2:before{content:"\edae"}.ti-arrows-left:before{content:"\edb1"}.ti-arrows-left-down:before{content:"\ee00"}.ti-arrows-left-right:before{content:"\edb0"}.ti-arrows-maximize:before{content:"\ea28"}.ti-arrows-minimize:before{content:"\ea29"}.ti-arrows-move:before{content:"\f22f"}.ti-arrows-move-horizontal:before{content:"\f22d"}.ti-arrows-move-vertical:before{content:"\f22e"}.ti-arrows-random:before{content:"\f095"}.ti-arrows-right:before{content:"\edb3"}.ti-arrows-right-down:before{content:"\ee01"}.ti-arrows-right-left:before{content:"\edb2"}.ti-arrows-shuffle:before{content:"\f000"}.ti-arrows-shuffle-2:before{content:"\efff"}.ti-arrows-sort:before{content:"\eb5a"}.ti-arrows-split:before{content:"\edb5"}.ti-arrows-split-2:before{content:"\edb4"}.ti-arrows-transfer-down:before{content:"\f2cc"}.ti-arrows-transfer-up:before{content:"\f2cd"}.ti-arrows-up:before{content:"\edb7"}.ti-arrows-up-down:before{content:"\edb6"}.ti-arrows-up-left:before{content:"\ee02"}.ti-arrows-up-right:before{content:"\ee03"}.ti-arrows-vertical:before{content:"\eb5b"}.ti-artboard:before{content:"\ea2a"}.ti-artboard-off:before{content:"\f0ae"}.ti-article:before{content:"\f1e2"}.ti-article-off:before{content:"\f3bf"}.ti-aspect-ratio:before{content:"\ed30"}.ti-aspect-ratio-off:before{content:"\f0af"}.ti-assembly:before{content:"\f24d"}.ti-assembly-off:before{content:"\f3c0"}.ti-asset:before{content:"\f1ce"}.ti-asterisk:before{content:"\efd5"}.ti-asterisk-simple:before{content:"\efd4"}.ti-at:before{content:"\ea2b"}.ti-at-off:before{content:"\f0b0"}.ti-atom:before{content:"\eb79"}.ti-atom-2:before{content:"\ebdf"}.ti-atom-off:before{content:"\f0f9"}.ti-augmented-reality:before{content:"\f023"}.ti-augmented-reality-2:before{content:"\f37e"}.ti-augmented-reality-off:before{content:"\f3c1"}.ti-award:before{content:"\ea2c"}.ti-award-off:before{content:"\f0fa"}.ti-axe:before{content:"\ef9f"}.ti-axis-x:before{content:"\ef45"}.ti-axis-y:before{content:"\ef46"}.ti-baby-bottle:before{content:"\f5d2"}.ti-baby-carriage:before{content:"\f05d"}.ti-backhoe:before{content:"\ed86"}.ti-backpack:before{content:"\ef47"}.ti-backpack-off:before{content:"\f3c2"}.ti-backspace:before{content:"\ea2d"}.ti-badge:before{content:"\efc2"}.ti-badge-3d:before{content:"\f555"}.ti-badge-4k:before{content:"\f556"}.ti-badge-8k:before{content:"\f557"}.ti-badge-ad:before{content:"\f558"}.ti-badge-ar:before{content:"\f559"}.ti-badge-cc:before{content:"\f55a"}.ti-badge-filled:before{content:"\f667"}.ti-badge-hd:before{content:"\f55b"}.ti-badge-off:before{content:"\f0fb"}.ti-badge-sd:before{content:"\f55c"}.ti-badge-tm:before{content:"\f55d"}.ti-badge-vo:before{content:"\f55e"}.ti-badge-vr:before{content:"\f55f"}.ti-badge-wc:before{content:"\f560"}.ti-badges:before{content:"\efc3"}.ti-badges-off:before{content:"\f0fc"}.ti-baguette:before{content:"\f3a5"}.ti-ball-american-football:before{content:"\ee04"}.ti-ball-american-football-off:before{content:"\f3c3"}.ti-ball-baseball:before{content:"\efa0"}.ti-ball-basketball:before{content:"\ec28"}.ti-ball-bowling:before{content:"\ec29"}.ti-ball-football:before{content:"\ee06"}.ti-ball-football-off:before{content:"\ee05"}.ti-ball-tennis:before{content:"\ec2a"}.ti-ball-volleyball:before{content:"\ec2b"}.ti-ballon:before{content:"\ef3a"}.ti-ballon-off:before{content:"\f0fd"}.ti-ballpen:before{content:"\f06e"}.ti-ballpen-off:before{content:"\f0b1"}.ti-ban:before{content:"\ea2e"}.ti-bandage:before{content:"\eb7a"}.ti-bandage-off:before{content:"\f3c4"}.ti-barbell:before{content:"\eff0"}.ti-barbell-off:before{content:"\f0b2"}.ti-barcode:before{content:"\ebc6"}.ti-barcode-off:before{content:"\f0b3"}.ti-barrel:before{content:"\f0b4"}.ti-barrel-off:before{content:"\f0fe"}.ti-barrier-block:before{content:"\f00e"}.ti-barrier-block-off:before{content:"\f0b5"}.ti-baseline:before{content:"\f024"}.ti-basket:before{content:"\ebe1"}.ti-basket-off:before{content:"\f0b6"}.ti-bat:before{content:"\f284"}.ti-bath:before{content:"\ef48"}.ti-bath-off:before{content:"\f0ff"}.ti-battery:before{content:"\ea34"}.ti-battery-1:before{content:"\ea2f"}.ti-battery-2:before{content:"\ea30"}.ti-battery-3:before{content:"\ea31"}.ti-battery-4:before{content:"\ea32"}.ti-battery-automotive:before{content:"\ee07"}.ti-battery-charging:before{content:"\ea33"}.ti-battery-charging-2:before{content:"\ef3b"}.ti-battery-eco:before{content:"\ef3c"}.ti-battery-filled:before{content:"\f668"}.ti-battery-off:before{content:"\ed1c"}.ti-beach:before{content:"\ef3d"}.ti-beach-off:before{content:"\f0b7"}.ti-bed:before{content:"\eb5c"}.ti-bed-off:before{content:"\f100"}.ti-beer:before{content:"\efa1"}.ti-beer-off:before{content:"\f101"}.ti-bell:before{content:"\ea35"}.ti-bell-filled:before{content:"\f669"}.ti-bell-minus:before{content:"\ede2"}.ti-bell-off:before{content:"\ece9"}.ti-bell-plus:before{content:"\ede3"}.ti-bell-ringing:before{content:"\ed07"}.ti-bell-ringing-2:before{content:"\ede4"}.ti-bell-school:before{content:"\f05e"}.ti-bell-x:before{content:"\ede5"}.ti-bell-z:before{content:"\eff1"}.ti-beta:before{content:"\f544"}.ti-bible:before{content:"\efc4"}.ti-bike:before{content:"\ea36"}.ti-bike-off:before{content:"\f0b8"}.ti-binary:before{content:"\ee08"}.ti-binary-off:before{content:"\f3c5"}.ti-binary-tree:before{content:"\f5d4"}.ti-binary-tree-2:before{content:"\f5d3"}.ti-biohazard:before{content:"\ecb8"}.ti-biohazard-off:before{content:"\f0b9"}.ti-blade:before{content:"\f4bd"}.ti-bleach:before{content:"\f2f3"}.ti-bleach-chlorine:before{content:"\f2f0"}.ti-bleach-no-chlorine:before{content:"\f2f1"}.ti-bleach-off:before{content:"\f2f2"}.ti-blockquote:before{content:"\ee09"}.ti-bluetooth:before{content:"\ea37"}.ti-bluetooth-connected:before{content:"\ecea"}.ti-bluetooth-off:before{content:"\eceb"}.ti-bluetooth-x:before{content:"\f081"}.ti-blur:before{content:"\ef8c"}.ti-blur-off:before{content:"\f3c6"}.ti-bmp:before{content:"\f3a6"}.ti-bold:before{content:"\eb7b"}.ti-bold-off:before{content:"\f0ba"}.ti-bolt:before{content:"\ea38"}.ti-bolt-off:before{content:"\ecec"}.ti-bomb:before{content:"\f59c"}.ti-bone:before{content:"\edb8"}.ti-bone-off:before{content:"\f0bb"}.ti-bong:before{content:"\f3a7"}.ti-bong-off:before{content:"\f3c7"}.ti-book:before{content:"\ea39"}.ti-book-2:before{content:"\efc5"}.ti-book-download:before{content:"\f070"}.ti-book-off:before{content:"\f0bc"}.ti-book-upload:before{content:"\f071"}.ti-bookmark:before{content:"\ea3a"}.ti-bookmark-off:before{content:"\eced"}.ti-bookmarks:before{content:"\ed08"}.ti-bookmarks-off:before{content:"\f0bd"}.ti-books:before{content:"\eff2"}.ti-books-off:before{content:"\f0be"}.ti-border-all:before{content:"\ea3b"}.ti-border-bottom:before{content:"\ea3c"}.ti-border-horizontal:before{content:"\ea3d"}.ti-border-inner:before{content:"\ea3e"}.ti-border-left:before{content:"\ea3f"}.ti-border-none:before{content:"\ea40"}.ti-border-outer:before{content:"\ea41"}.ti-border-radius:before{content:"\eb7c"}.ti-border-right:before{content:"\ea42"}.ti-border-style:before{content:"\ee0a"}.ti-border-style-2:before{content:"\ef22"}.ti-border-top:before{content:"\ea43"}.ti-border-vertical:before{content:"\ea44"}.ti-bottle:before{content:"\ef0b"}.ti-bottle-off:before{content:"\f3c8"}.ti-bounce-left:before{content:"\f59d"}.ti-bounce-right:before{content:"\f59e"}.ti-bow:before{content:"\f096"}.ti-bowl:before{content:"\f4fa"}.ti-box:before{content:"\ea45"}.ti-box-align-bottom:before{content:"\f2a8"}.ti-box-align-bottom-left:before{content:"\f2ce"}.ti-box-align-bottom-right:before{content:"\f2cf"}.ti-box-align-left:before{content:"\f2a9"}.ti-box-align-right:before{content:"\f2aa"}.ti-box-align-top:before{content:"\f2ab"}.ti-box-align-top-left:before{content:"\f2d0"}.ti-box-align-top-right:before{content:"\f2d1"}.ti-box-margin:before{content:"\ee0b"}.ti-box-model:before{content:"\ee0c"}.ti-box-model-2:before{content:"\ef23"}.ti-box-model-2-off:before{content:"\f3c9"}.ti-box-model-off:before{content:"\f3ca"}.ti-box-multiple:before{content:"\ee17"}.ti-box-multiple-0:before{content:"\ee0d"}.ti-box-multiple-1:before{content:"\ee0e"}.ti-box-multiple-2:before{content:"\ee0f"}.ti-box-multiple-3:before{content:"\ee10"}.ti-box-multiple-4:before{content:"\ee11"}.ti-box-multiple-5:before{content:"\ee12"}.ti-box-multiple-6:before{content:"\ee13"}.ti-box-multiple-7:before{content:"\ee14"}.ti-box-multiple-8:before{content:"\ee15"}.ti-box-multiple-9:before{content:"\ee16"}.ti-box-off:before{content:"\f102"}.ti-box-padding:before{content:"\ee18"}.ti-box-seam:before{content:"\f561"}.ti-braces:before{content:"\ebcc"}.ti-braces-off:before{content:"\f0bf"}.ti-brackets:before{content:"\ebcd"}.ti-brackets-contain:before{content:"\f1e5"}.ti-brackets-contain-end:before{content:"\f1e3"}.ti-brackets-contain-start:before{content:"\f1e4"}.ti-brackets-off:before{content:"\f0c0"}.ti-braile:before{content:"\f545"}.ti-brain:before{content:"\f59f"}.ti-brand-4chan:before{content:"\f494"}.ti-brand-abstract:before{content:"\f495"}.ti-brand-adobe:before{content:"\f0dc"}.ti-brand-adonis-js:before{content:"\f496"}.ti-brand-airbnb:before{content:"\ed68"}.ti-brand-airtable:before{content:"\ef6a"}.ti-brand-algolia:before{content:"\f390"}.ti-brand-alpine-js:before{content:"\f324"}.ti-brand-amazon:before{content:"\f230"}.ti-brand-amd:before{content:"\f653"}.ti-brand-amigo:before{content:"\f5f9"}.ti-brand-amongus:before{content:"\f205"}.ti-brand-android:before{content:"\ec16"}.ti-brand-angular:before{content:"\ef6b"}.ti-brand-ao3:before{content:"\f5e8"}.ti-brand-appgallery:before{content:"\f231"}.ti-brand-apple:before{content:"\ec17"}.ti-brand-apple-arcade:before{content:"\ed69"}.ti-brand-apple-podcast:before{content:"\f1e6"}.ti-brand-appstore:before{content:"\ed24"}.ti-brand-asana:before{content:"\edc5"}.ti-brand-backbone:before{content:"\f325"}.ti-brand-badoo:before{content:"\f206"}.ti-brand-baidu:before{content:"\f5e9"}.ti-brand-bandcamp:before{content:"\f207"}.ti-brand-bandlab:before{content:"\f5fa"}.ti-brand-beats:before{content:"\f208"}.ti-brand-behance:before{content:"\ec6e"}.ti-brand-binance:before{content:"\f5a0"}.ti-brand-bing:before{content:"\edc6"}.ti-brand-bitbucket:before{content:"\edc7"}.ti-brand-blackbery:before{content:"\f568"}.ti-brand-blender:before{content:"\f326"}.ti-brand-blogger:before{content:"\f35a"}.ti-brand-booking:before{content:"\edc8"}.ti-brand-bootstrap:before{content:"\ef3e"}.ti-brand-bulma:before{content:"\f327"}.ti-brand-bumble:before{content:"\f5fb"}.ti-brand-bunpo:before{content:"\f4cf"}.ti-brand-campaignmonitor:before{content:"\f328"}.ti-brand-carbon:before{content:"\f348"}.ti-brand-cashapp:before{content:"\f391"}.ti-brand-chrome:before{content:"\ec18"}.ti-brand-citymapper:before{content:"\f5fc"}.ti-brand-codecov:before{content:"\f329"}.ti-brand-codepen:before{content:"\ec6f"}.ti-brand-codesandbox:before{content:"\ed6a"}.ti-brand-cohost:before{content:"\f5d5"}.ti-brand-coinbase:before{content:"\f209"}.ti-brand-comedy-central:before{content:"\f217"}.ti-brand-coreos:before{content:"\f5fd"}.ti-brand-couchdb:before{content:"\f60f"}.ti-brand-couchsurfing:before{content:"\f392"}.ti-brand-cpp:before{content:"\f5fe"}.ti-brand-css3:before{content:"\ed6b"}.ti-brand-ctemplar:before{content:"\f4d0"}.ti-brand-cucumber:before{content:"\ef6c"}.ti-brand-cupra:before{content:"\f4d1"}.ti-brand-cypress:before{content:"\f333"}.ti-brand-d3:before{content:"\f24e"}.ti-brand-days-counter:before{content:"\f4d2"}.ti-brand-dcos:before{content:"\f32a"}.ti-brand-debian:before{content:"\ef57"}.ti-brand-deliveroo:before{content:"\f4d3"}.ti-brand-deno:before{content:"\f24f"}.ti-brand-denodo:before{content:"\f610"}.ti-brand-deviantart:before{content:"\ecfb"}.ti-brand-dingtalk:before{content:"\f5ea"}.ti-brand-discord:before{content:"\ece3"}.ti-brand-disney:before{content:"\f20a"}.ti-brand-disqus:before{content:"\edc9"}.ti-brand-django:before{content:"\f349"}.ti-brand-docker:before{content:"\edca"}.ti-brand-doctrine:before{content:"\ef6d"}.ti-brand-dolby-digital:before{content:"\f4d4"}.ti-brand-douban:before{content:"\f5ff"}.ti-brand-dribbble:before{content:"\ec19"}.ti-brand-drops:before{content:"\f4d5"}.ti-brand-drupal:before{content:"\f393"}.ti-brand-edge:before{content:"\ecfc"}.ti-brand-elastic:before{content:"\f611"}.ti-brand-ember:before{content:"\f497"}.ti-brand-envato:before{content:"\f394"}.ti-brand-etsy:before{content:"\f654"}.ti-brand-evernote:before{content:"\f600"}.ti-brand-facebook:before{content:"\ec1a"}.ti-brand-figma:before{content:"\ec93"}.ti-brand-finder:before{content:"\f218"}.ti-brand-firebase:before{content:"\ef6e"}.ti-brand-firefox:before{content:"\ecfd"}.ti-brand-flickr:before{content:"\ecfe"}.ti-brand-flightradar24:before{content:"\f4d6"}.ti-brand-flipboard:before{content:"\f20b"}.ti-brand-flutter:before{content:"\f395"}.ti-brand-fortnite:before{content:"\f260"}.ti-brand-foursquare:before{content:"\ecff"}.ti-brand-framer:before{content:"\ec1b"}.ti-brand-funimation:before{content:"\f655"}.ti-brand-gatsby:before{content:"\f396"}.ti-brand-git:before{content:"\ef6f"}.ti-brand-github:before{content:"\ec1c"}.ti-brand-github-copilot:before{content:"\f4a8"}.ti-brand-gitlab:before{content:"\ec1d"}.ti-brand-gmail:before{content:"\efa2"}.ti-brand-google:before{content:"\ec1f"}.ti-brand-google-analytics:before{content:"\edcb"}.ti-brand-google-big-query:before{content:"\f612"}.ti-brand-google-drive:before{content:"\ec1e"}.ti-brand-google-fit:before{content:"\f297"}.ti-brand-google-home:before{content:"\f601"}.ti-brand-google-one:before{content:"\f232"}.ti-brand-google-photos:before{content:"\f20c"}.ti-brand-google-play:before{content:"\ed25"}.ti-brand-google-podcasts:before{content:"\f656"}.ti-brand-grammarly:before{content:"\f32b"}.ti-brand-graphql:before{content:"\f32c"}.ti-brand-gravatar:before{content:"\edcc"}.ti-brand-grindr:before{content:"\f20d"}.ti-brand-guardian:before{content:"\f4fb"}.ti-brand-gumroad:before{content:"\f5d6"}.ti-brand-hbo:before{content:"\f657"}.ti-brand-headlessui:before{content:"\f32d"}.ti-brand-hipchat:before{content:"\edcd"}.ti-brand-html5:before{content:"\ed6c"}.ti-brand-inertia:before{content:"\f34a"}.ti-brand-instagram:before{content:"\ec20"}.ti-brand-intercom:before{content:"\f1cf"}.ti-brand-javascript:before{content:"\ef0c"}.ti-brand-kickstarter:before{content:"\edce"}.ti-brand-kotlin:before{content:"\ed6d"}.ti-brand-laravel:before{content:"\f34b"}.ti-brand-lastfm:before{content:"\f001"}.ti-brand-linkedin:before{content:"\ec8c"}.ti-brand-linktree:before{content:"\f1e7"}.ti-brand-linqpad:before{content:"\f562"}.ti-brand-loom:before{content:"\ef70"}.ti-brand-mailgun:before{content:"\f32e"}.ti-brand-mantine:before{content:"\f32f"}.ti-brand-mastercard:before{content:"\ef49"}.ti-brand-mastodon:before{content:"\f250"}.ti-brand-matrix:before{content:"\f5eb"}.ti-brand-mcdonalds:before{content:"\f251"}.ti-brand-medium:before{content:"\ec70"}.ti-brand-mercedes:before{content:"\f072"}.ti-brand-messenger:before{content:"\ec71"}.ti-brand-meta:before{content:"\efb0"}.ti-brand-miniprogram:before{content:"\f602"}.ti-brand-mixpanel:before{content:"\f397"}.ti-brand-monday:before{content:"\f219"}.ti-brand-mongodb:before{content:"\f613"}.ti-brand-my-oppo:before{content:"\f4d7"}.ti-brand-mysql:before{content:"\f614"}.ti-brand-national-geographic:before{content:"\f603"}.ti-brand-nem:before{content:"\f5a1"}.ti-brand-netbeans:before{content:"\ef71"}.ti-brand-netease-music:before{content:"\f604"}.ti-brand-netflix:before{content:"\edcf"}.ti-brand-nexo:before{content:"\f5a2"}.ti-brand-nextcloud:before{content:"\f4d8"}.ti-brand-nextjs:before{content:"\f0dd"}.ti-brand-nord-vpn:before{content:"\f37f"}.ti-brand-notion:before{content:"\ef7b"}.ti-brand-npm:before{content:"\f569"}.ti-brand-nuxt:before{content:"\f0de"}.ti-brand-nytimes:before{content:"\ef8d"}.ti-brand-office:before{content:"\f398"}.ti-brand-ok-ru:before{content:"\f399"}.ti-brand-onedrive:before{content:"\f5d7"}.ti-brand-onlyfans:before{content:"\f605"}.ti-brand-open-source:before{content:"\edd0"}.ti-brand-openvpn:before{content:"\f39a"}.ti-brand-opera:before{content:"\ec21"}.ti-brand-pagekit:before{content:"\edd1"}.ti-brand-patreon:before{content:"\edd2"}.ti-brand-paypal:before{content:"\ec22"}.ti-brand-paypay:before{content:"\f5ec"}.ti-brand-peanut:before{content:"\f39b"}.ti-brand-pepsi:before{content:"\f261"}.ti-brand-php:before{content:"\ef72"}.ti-brand-picsart:before{content:"\f4d9"}.ti-brand-pinterest:before{content:"\ec8d"}.ti-brand-pocket:before{content:"\ed00"}.ti-brand-polymer:before{content:"\f498"}.ti-brand-powershell:before{content:"\f5ed"}.ti-brand-prisma:before{content:"\f499"}.ti-brand-producthunt:before{content:"\edd3"}.ti-brand-pushbullet:before{content:"\f330"}.ti-brand-pushover:before{content:"\f20e"}.ti-brand-python:before{content:"\ed01"}.ti-brand-qq:before{content:"\f606"}.ti-brand-react:before{content:"\f34c"}.ti-brand-react-native:before{content:"\ef73"}.ti-brand-reason:before{content:"\f49a"}.ti-brand-reddit:before{content:"\ec8e"}.ti-brand-redhat:before{content:"\f331"}.ti-brand-redux:before{content:"\f3a8"}.ti-brand-revolut:before{content:"\f4da"}.ti-brand-safari:before{content:"\ec23"}.ti-brand-samsungpass:before{content:"\f4db"}.ti-brand-sass:before{content:"\edd4"}.ti-brand-sentry:before{content:"\edd5"}.ti-brand-sharik:before{content:"\f4dc"}.ti-brand-shazam:before{content:"\edd6"}.ti-brand-shopee:before{content:"\f252"}.ti-brand-sketch:before{content:"\ec24"}.ti-brand-skype:before{content:"\ed02"}.ti-brand-slack:before{content:"\ec72"}.ti-brand-snapchat:before{content:"\ec25"}.ti-brand-snapseed:before{content:"\f253"}.ti-brand-snowflake:before{content:"\f615"}.ti-brand-socket-io:before{content:"\f49b"}.ti-brand-solidjs:before{content:"\f5ee"}.ti-brand-soundcloud:before{content:"\ed6e"}.ti-brand-spacehey:before{content:"\f4fc"}.ti-brand-spotify:before{content:"\ed03"}.ti-brand-stackoverflow:before{content:"\ef58"}.ti-brand-stackshare:before{content:"\f607"}.ti-brand-steam:before{content:"\ed6f"}.ti-brand-storybook:before{content:"\f332"}.ti-brand-storytel:before{content:"\f608"}.ti-brand-strava:before{content:"\f254"}.ti-brand-stripe:before{content:"\edd7"}.ti-brand-sublime-text:before{content:"\ef74"}.ti-brand-superhuman:before{content:"\f50c"}.ti-brand-supernova:before{content:"\f49c"}.ti-brand-surfshark:before{content:"\f255"}.ti-brand-svelte:before{content:"\f0df"}.ti-brand-symfony:before{content:"\f616"}.ti-brand-tabler:before{content:"\ec8f"}.ti-brand-tailwind:before{content:"\eca1"}.ti-brand-taobao:before{content:"\f5ef"}.ti-brand-ted:before{content:"\f658"}.ti-brand-telegram:before{content:"\ec26"}.ti-brand-tether:before{content:"\f5a3"}.ti-brand-threejs:before{content:"\f5f0"}.ti-brand-tidal:before{content:"\ed70"}.ti-brand-tiktok:before{content:"\ec73"}.ti-brand-tinder:before{content:"\ed71"}.ti-brand-topbuzz:before{content:"\f50d"}.ti-brand-torchain:before{content:"\f5a4"}.ti-brand-toyota:before{content:"\f262"}.ti-brand-trello:before{content:"\f39d"}.ti-brand-tripadvisor:before{content:"\f002"}.ti-brand-tumblr:before{content:"\ed04"}.ti-brand-twilio:before{content:"\f617"}.ti-brand-twitch:before{content:"\ed05"}.ti-brand-twitter:before{content:"\ec27"}.ti-brand-typescript:before{content:"\f5f1"}.ti-brand-uber:before{content:"\ef75"}.ti-brand-ubuntu:before{content:"\ef59"}.ti-brand-unity:before{content:"\f49d"}.ti-brand-unsplash:before{content:"\edd8"}.ti-brand-upwork:before{content:"\f39e"}.ti-brand-valorant:before{content:"\f39f"}.ti-brand-vercel:before{content:"\ef24"}.ti-brand-vimeo:before{content:"\ed06"}.ti-brand-vinted:before{content:"\f20f"}.ti-brand-visa:before{content:"\f380"}.ti-brand-visual-studio:before{content:"\ef76"}.ti-brand-vite:before{content:"\f5f2"}.ti-brand-vivaldi:before{content:"\f210"}.ti-brand-vk:before{content:"\ed72"}.ti-brand-volkswagen:before{content:"\f50e"}.ti-brand-vsco:before{content:"\f334"}.ti-brand-vscode:before{content:"\f3a0"}.ti-brand-vue:before{content:"\f0e0"}.ti-brand-walmart:before{content:"\f211"}.ti-brand-waze:before{content:"\f5d8"}.ti-brand-webflow:before{content:"\f2d2"}.ti-brand-wechat:before{content:"\f5f3"}.ti-brand-weibo:before{content:"\f609"}.ti-brand-whatsapp:before{content:"\ec74"}.ti-brand-windows:before{content:"\ecd8"}.ti-brand-windy:before{content:"\f4dd"}.ti-brand-wish:before{content:"\f212"}.ti-brand-wix:before{content:"\f3a1"}.ti-brand-wordpress:before{content:"\f2d3"}.ti-brand-xbox:before{content:"\f298"}.ti-brand-xing:before{content:"\f21a"}.ti-brand-yahoo:before{content:"\ed73"}.ti-brand-yatse:before{content:"\f213"}.ti-brand-ycombinator:before{content:"\edd9"}.ti-brand-youtube:before{content:"\ec90"}.ti-brand-youtube-kids:before{content:"\f214"}.ti-brand-zalando:before{content:"\f49e"}.ti-brand-zapier:before{content:"\f49f"}.ti-brand-zeit:before{content:"\f335"}.ti-brand-zhihu:before{content:"\f60a"}.ti-brand-zoom:before{content:"\f215"}.ti-brand-zulip:before{content:"\f4de"}.ti-brand-zwift:before{content:"\f216"}.ti-bread:before{content:"\efa3"}.ti-bread-off:before{content:"\f3cb"}.ti-briefcase:before{content:"\ea46"}.ti-briefcase-off:before{content:"\f3cc"}.ti-brightness:before{content:"\eb7f"}.ti-brightness-2:before{content:"\ee19"}.ti-brightness-down:before{content:"\eb7d"}.ti-brightness-half:before{content:"\ee1a"}.ti-brightness-off:before{content:"\f3cd"}.ti-brightness-up:before{content:"\eb7e"}.ti-broadcast:before{content:"\f1e9"}.ti-broadcast-off:before{content:"\f1e8"}.ti-browser:before{content:"\ebb7"}.ti-browser-check:before{content:"\efd6"}.ti-browser-off:before{content:"\f0c1"}.ti-browser-plus:before{content:"\efd7"}.ti-browser-x:before{content:"\efd8"}.ti-brush:before{content:"\ebb8"}.ti-brush-off:before{content:"\f0c2"}.ti-bucket:before{content:"\ea47"}.ti-bucket-droplet:before{content:"\f56a"}.ti-bucket-off:before{content:"\f103"}.ti-bug:before{content:"\ea48"}.ti-bug-off:before{content:"\f0c3"}.ti-building:before{content:"\ea4f"}.ti-building-arch:before{content:"\ea49"}.ti-building-bank:before{content:"\ebe2"}.ti-building-bridge:before{content:"\ea4b"}.ti-building-bridge-2:before{content:"\ea4a"}.ti-building-broadcast-tower:before{content:"\f4be"}.ti-building-carousel:before{content:"\ed87"}.ti-building-castle:before{content:"\ed88"}.ti-building-church:before{content:"\ea4c"}.ti-building-circus:before{content:"\f4bf"}.ti-building-community:before{content:"\ebf6"}.ti-building-cottage:before{content:"\ee1b"}.ti-building-estate:before{content:"\f5a5"}.ti-building-factory:before{content:"\ee1c"}.ti-building-factory-2:before{content:"\f082"}.ti-building-fortress:before{content:"\ed89"}.ti-building-hospital:before{content:"\ea4d"}.ti-building-lighthouse:before{content:"\ed8a"}.ti-building-monument:before{content:"\ed26"}.ti-building-pavilion:before{content:"\ebf7"}.ti-building-skyscraper:before{content:"\ec39"}.ti-building-stadium:before{content:"\f641"}.ti-building-store:before{content:"\ea4e"}.ti-building-tunnel:before{content:"\f5a6"}.ti-building-warehouse:before{content:"\ebe3"}.ti-building-wind-turbine:before{content:"\f4c0"}.ti-bulb:before{content:"\ea51"}.ti-bulb-filled:before{content:"\f66a"}.ti-bulb-off:before{content:"\ea50"}.ti-bulldozer:before{content:"\ee1d"}.ti-bus:before{content:"\ebe4"}.ti-bus-off:before{content:"\f3ce"}.ti-bus-stop:before{content:"\f2d4"}.ti-businessplan:before{content:"\ee1e"}.ti-butterfly:before{content:"\efd9"}.ti-c-sharp:before{content:"\f003"}.ti-cactus:before{content:"\f21b"}.ti-cactus-off:before{content:"\f3cf"}.ti-cake:before{content:"\f00f"}.ti-cake-off:before{content:"\f104"}.ti-calculator:before{content:"\eb80"}.ti-calculator-off:before{content:"\f0c4"}.ti-calendar:before{content:"\ea53"}.ti-calendar-due:before{content:"\f621"}.ti-calendar-event:before{content:"\ea52"}.ti-calendar-minus:before{content:"\ebb9"}.ti-calendar-off:before{content:"\ee1f"}.ti-calendar-plus:before{content:"\ebba"}.ti-calendar-stats:before{content:"\ee20"}.ti-calendar-time:before{content:"\ee21"}.ti-camera:before{content:"\ea54"}.ti-camera-minus:before{content:"\ec3a"}.ti-camera-off:before{content:"\ecee"}.ti-camera-plus:before{content:"\ec3b"}.ti-camera-rotate:before{content:"\ee22"}.ti-camera-selfie:before{content:"\ee23"}.ti-campfire:before{content:"\f5a7"}.ti-candle:before{content:"\efc6"}.ti-candy:before{content:"\ef0d"}.ti-candy-off:before{content:"\f0c5"}.ti-cane:before{content:"\f50f"}.ti-cannabis:before{content:"\f4c1"}.ti-capture:before{content:"\ec3c"}.ti-capture-off:before{content:"\f0c6"}.ti-car:before{content:"\ebbb"}.ti-car-crane:before{content:"\ef25"}.ti-car-crash:before{content:"\efa4"}.ti-car-off:before{content:"\f0c7"}.ti-car-turbine:before{content:"\f4fd"}.ti-caravan:before{content:"\ec7c"}.ti-cardboards:before{content:"\ed74"}.ti-cardboards-off:before{content:"\f0c8"}.ti-cards:before{content:"\f510"}.ti-caret-down:before{content:"\eb5d"}.ti-caret-left:before{content:"\eb5e"}.ti-caret-right:before{content:"\eb5f"}.ti-caret-up:before{content:"\eb60"}.ti-carousel-horizontal:before{content:"\f659"}.ti-carousel-vertical:before{content:"\f65a"}.ti-carrot:before{content:"\f21c"}.ti-carrot-off:before{content:"\f3d0"}.ti-cash:before{content:"\ea55"}.ti-cash-banknote:before{content:"\ee25"}.ti-cash-banknote-off:before{content:"\ee24"}.ti-cash-off:before{content:"\f105"}.ti-cast:before{content:"\ea56"}.ti-cast-off:before{content:"\f0c9"}.ti-cat:before{content:"\f65b"}.ti-category:before{content:"\f1f6"}.ti-category-2:before{content:"\f1f5"}.ti-ce:before{content:"\ed75"}.ti-ce-off:before{content:"\f0ca"}.ti-cell:before{content:"\f05f"}.ti-cell-signal-1:before{content:"\f083"}.ti-cell-signal-2:before{content:"\f084"}.ti-cell-signal-3:before{content:"\f085"}.ti-cell-signal-4:before{content:"\f086"}.ti-cell-signal-5:before{content:"\f087"}.ti-cell-signal-off:before{content:"\f088"}.ti-certificate:before{content:"\ed76"}.ti-certificate-2:before{content:"\f073"}.ti-certificate-2-off:before{content:"\f0cb"}.ti-certificate-off:before{content:"\f0cc"}.ti-chair-director:before{content:"\f2d5"}.ti-chalkboard:before{content:"\f34d"}.ti-chalkboard-off:before{content:"\f3d1"}.ti-charging-pile:before{content:"\ee26"}.ti-chart-arcs:before{content:"\ee28"}.ti-chart-arcs-3:before{content:"\ee27"}.ti-chart-area:before{content:"\ea58"}.ti-chart-area-filled:before{content:"\f66b"}.ti-chart-area-line:before{content:"\ea57"}.ti-chart-area-line-filled:before{content:"\f66c"}.ti-chart-arrows:before{content:"\ee2a"}.ti-chart-arrows-vertical:before{content:"\ee29"}.ti-chart-bar:before{content:"\ea59"}.ti-chart-bar-off:before{content:"\f3d2"}.ti-chart-bubble:before{content:"\ec75"}.ti-chart-bubble-filled:before{content:"\f66d"}.ti-chart-candle:before{content:"\ea5a"}.ti-chart-candle-filled:before{content:"\f66e"}.ti-chart-circles:before{content:"\ee2b"}.ti-chart-donut:before{content:"\ea5b"}.ti-chart-donut-2:before{content:"\ee2c"}.ti-chart-donut-3:before{content:"\ee2d"}.ti-chart-donut-4:before{content:"\ee2e"}.ti-chart-donut-filled:before{content:"\f66f"}.ti-chart-dots:before{content:"\ee2f"}.ti-chart-dots-2:before{content:"\f097"}.ti-chart-dots-3:before{content:"\f098"}.ti-chart-grid-dots:before{content:"\f4c2"}.ti-chart-histogram:before{content:"\f65c"}.ti-chart-infographic:before{content:"\ee30"}.ti-chart-line:before{content:"\ea5c"}.ti-chart-pie:before{content:"\ea5d"}.ti-chart-pie-2:before{content:"\ee31"}.ti-chart-pie-3:before{content:"\ee32"}.ti-chart-pie-4:before{content:"\ee33"}.ti-chart-pie-filled:before{content:"\f670"}.ti-chart-pie-off:before{content:"\f3d3"}.ti-chart-ppf:before{content:"\f618"}.ti-chart-radar:before{content:"\ed77"}.ti-chart-sankey:before{content:"\f619"}.ti-chart-treemap:before{content:"\f381"}.ti-check:before{content:"\ea5e"}.ti-checkbox:before{content:"\eba6"}.ti-checklist:before{content:"\f074"}.ti-checks:before{content:"\ebaa"}.ti-checkup-list:before{content:"\ef5a"}.ti-cheese:before{content:"\ef26"}.ti-chef-hat:before{content:"\f21d"}.ti-chef-hat-off:before{content:"\f3d4"}.ti-cherry:before{content:"\f511"}.ti-chess:before{content:"\f382"}.ti-chess-bishop:before{content:"\f56b"}.ti-chess-king:before{content:"\f56c"}.ti-chess-knight:before{content:"\f56d"}.ti-chess-queen:before{content:"\f56e"}.ti-chess-rook:before{content:"\f56f"}.ti-chevron-down:before{content:"\ea5f"}.ti-chevron-down-left:before{content:"\ed09"}.ti-chevron-down-right:before{content:"\ed0a"}.ti-chevron-left:before{content:"\ea60"}.ti-chevron-right:before{content:"\ea61"}.ti-chevron-up:before{content:"\ea62"}.ti-chevron-up-left:before{content:"\ed0b"}.ti-chevron-up-right:before{content:"\ed0c"}.ti-chevrons-down:before{content:"\ea63"}.ti-chevrons-down-left:before{content:"\ed0d"}.ti-chevrons-down-right:before{content:"\ed0e"}.ti-chevrons-left:before{content:"\ea64"}.ti-chevrons-right:before{content:"\ea65"}.ti-chevrons-up:before{content:"\ea66"}.ti-chevrons-up-left:before{content:"\ed0f"}.ti-chevrons-up-right:before{content:"\ed10"}.ti-chisel:before{content:"\f383"}.ti-christmas-tree:before{content:"\ed78"}.ti-christmas-tree-off:before{content:"\f3d5"}.ti-circle:before{content:"\ea6b"}.ti-circle-caret-down:before{content:"\f4a9"}.ti-circle-caret-left:before{content:"\f4aa"}.ti-circle-caret-right:before{content:"\f4ab"}.ti-circle-caret-up:before{content:"\f4ac"}.ti-circle-check:before{content:"\ea67"}.ti-circle-chevron-down:before{content:"\f622"}.ti-circle-chevron-left:before{content:"\f623"}.ti-circle-chevron-right:before{content:"\f624"}.ti-circle-chevron-up:before{content:"\f625"}.ti-circle-chevrons-down:before{content:"\f642"}.ti-circle-chevrons-left:before{content:"\f643"}.ti-circle-chevrons-right:before{content:"\f644"}.ti-circle-chevrons-up:before{content:"\f645"}.ti-circle-dashed:before{content:"\ed27"}.ti-circle-dot:before{content:"\efb1"}.ti-circle-dotted:before{content:"\ed28"}.ti-circle-filled:before{content:"\f671"}.ti-circle-half:before{content:"\ee3f"}.ti-circle-half-2:before{content:"\eff3"}.ti-circle-half-vertical:before{content:"\ee3e"}.ti-circle-key:before{content:"\f633"}.ti-circle-letter-a:before{content:"\f441"}.ti-circle-letter-b:before{content:"\f442"}.ti-circle-letter-c:before{content:"\f443"}.ti-circle-letter-d:before{content:"\f444"}.ti-circle-letter-e:before{content:"\f445"}.ti-circle-letter-f:before{content:"\f446"}.ti-circle-letter-g:before{content:"\f447"}.ti-circle-letter-h:before{content:"\f448"}.ti-circle-letter-i:before{content:"\f449"}.ti-circle-letter-j:before{content:"\f44a"}.ti-circle-letter-k:before{content:"\f44b"}.ti-circle-letter-l:before{content:"\f44c"}.ti-circle-letter-m:before{content:"\f44d"}.ti-circle-letter-n:before{content:"\f44e"}.ti-circle-letter-o:before{content:"\f44f"}.ti-circle-letter-p:before{content:"\f450"}.ti-circle-letter-q:before{content:"\f451"}.ti-circle-letter-r:before{content:"\f452"}.ti-circle-letter-s:before{content:"\f453"}.ti-circle-letter-t:before{content:"\f454"}.ti-circle-letter-u:before{content:"\f455"}.ti-circle-letter-v:before{content:"\f4ad"}.ti-circle-letter-w:before{content:"\f456"}.ti-circle-letter-x:before{content:"\f4ae"}.ti-circle-letter-y:before{content:"\f457"}.ti-circle-letter-z:before{content:"\f458"}.ti-circle-minus:before{content:"\ea68"}.ti-circle-number-0:before{content:"\ee34"}.ti-circle-number-1:before{content:"\ee35"}.ti-circle-number-2:before{content:"\ee36"}.ti-circle-number-3:before{content:"\ee37"}.ti-circle-number-4:before{content:"\ee38"}.ti-circle-number-5:before{content:"\ee39"}.ti-circle-number-6:before{content:"\ee3a"}.ti-circle-number-7:before{content:"\ee3b"}.ti-circle-number-8:before{content:"\ee3c"}.ti-circle-number-9:before{content:"\ee3d"}.ti-circle-off:before{content:"\ee40"}.ti-circle-plus:before{content:"\ea69"}.ti-circle-rectangle:before{content:"\f010"}.ti-circle-rectangle-off:before{content:"\f0cd"}.ti-circle-square:before{content:"\ece4"}.ti-circle-triangle:before{content:"\f011"}.ti-circle-x:before{content:"\ea6a"}.ti-circles:before{content:"\ece5"}.ti-circles-filled:before{content:"\f672"}.ti-circles-relation:before{content:"\f4c3"}.ti-circuit-ammeter:before{content:"\f271"}.ti-circuit-battery:before{content:"\f272"}.ti-circuit-bulb:before{content:"\f273"}.ti-circuit-capacitor:before{content:"\f275"}.ti-circuit-capacitor-polarized:before{content:"\f274"}.ti-circuit-cell:before{content:"\f277"}.ti-circuit-cell-plus:before{content:"\f276"}.ti-circuit-changeover:before{content:"\f278"}.ti-circuit-diode:before{content:"\f27a"}.ti-circuit-diode-zener:before{content:"\f279"}.ti-circuit-ground:before{content:"\f27c"}.ti-circuit-ground-digital:before{content:"\f27b"}.ti-circuit-inductor:before{content:"\f27d"}.ti-circuit-motor:before{content:"\f27e"}.ti-circuit-pushbutton:before{content:"\f27f"}.ti-circuit-resistor:before{content:"\f280"}.ti-circuit-switch-closed:before{content:"\f281"}.ti-circuit-switch-open:before{content:"\f282"}.ti-circuit-voltmeter:before{content:"\f283"}.ti-clear-all:before{content:"\ee41"}.ti-clear-formatting:before{content:"\ebe5"}.ti-click:before{content:"\ebbc"}.ti-clipboard:before{content:"\ea6f"}.ti-clipboard-check:before{content:"\ea6c"}.ti-clipboard-copy:before{content:"\f299"}.ti-clipboard-data:before{content:"\f563"}.ti-clipboard-heart:before{content:"\f34e"}.ti-clipboard-list:before{content:"\ea6d"}.ti-clipboard-off:before{content:"\f0ce"}.ti-clipboard-plus:before{content:"\efb2"}.ti-clipboard-text:before{content:"\f089"}.ti-clipboard-typography:before{content:"\f34f"}.ti-clipboard-x:before{content:"\ea6e"}.ti-clock:before{content:"\ea70"}.ti-clock-2:before{content:"\f099"}.ti-clock-cancel:before{content:"\f546"}.ti-clock-edit:before{content:"\f547"}.ti-clock-hour-1:before{content:"\f313"}.ti-clock-hour-10:before{content:"\f314"}.ti-clock-hour-11:before{content:"\f315"}.ti-clock-hour-12:before{content:"\f316"}.ti-clock-hour-2:before{content:"\f317"}.ti-clock-hour-3:before{content:"\f318"}.ti-clock-hour-4:before{content:"\f319"}.ti-clock-hour-5:before{content:"\f31a"}.ti-clock-hour-6:before{content:"\f31b"}.ti-clock-hour-7:before{content:"\f31c"}.ti-clock-hour-8:before{content:"\f31d"}.ti-clock-hour-9:before{content:"\f31e"}.ti-clock-off:before{content:"\f0cf"}.ti-clock-pause:before{content:"\f548"}.ti-clock-play:before{content:"\f549"}.ti-clock-record:before{content:"\f54a"}.ti-clock-stop:before{content:"\f54b"}.ti-clothes-rack:before{content:"\f285"}.ti-clothes-rack-off:before{content:"\f3d6"}.ti-cloud:before{content:"\ea76"}.ti-cloud-computing:before{content:"\f1d0"}.ti-cloud-data-connection:before{content:"\f1d1"}.ti-cloud-download:before{content:"\ea71"}.ti-cloud-filled:before{content:"\f673"}.ti-cloud-fog:before{content:"\ecd9"}.ti-cloud-lock:before{content:"\efdb"}.ti-cloud-lock-open:before{content:"\efda"}.ti-cloud-off:before{content:"\ed3e"}.ti-cloud-rain:before{content:"\ea72"}.ti-cloud-snow:before{content:"\ea73"}.ti-cloud-storm:before{content:"\ea74"}.ti-cloud-upload:before{content:"\ea75"}.ti-clover:before{content:"\f1ea"}.ti-clover-2:before{content:"\f21e"}.ti-clubs:before{content:"\eff4"}.ti-clubs-filled:before{content:"\f674"}.ti-code:before{content:"\ea77"}.ti-code-asterix:before{content:"\f312"}.ti-code-circle:before{content:"\f4ff"}.ti-code-circle-2:before{content:"\f4fe"}.ti-code-dots:before{content:"\f61a"}.ti-code-minus:before{content:"\ee42"}.ti-code-off:before{content:"\f0d0"}.ti-code-plus:before{content:"\ee43"}.ti-coffee:before{content:"\ef0e"}.ti-coffee-off:before{content:"\f106"}.ti-coffin:before{content:"\f579"}.ti-coin:before{content:"\eb82"}.ti-coin-bitcoin:before{content:"\f2be"}.ti-coin-euro:before{content:"\f2bf"}.ti-coin-monero:before{content:"\f4a0"}.ti-coin-off:before{content:"\f0d1"}.ti-coin-pound:before{content:"\f2c0"}.ti-coin-rupee:before{content:"\f2c1"}.ti-coin-yen:before{content:"\f2c2"}.ti-coin-yuan:before{content:"\f2c3"}.ti-coins:before{content:"\f65d"}.ti-color-filter:before{content:"\f5a8"}.ti-color-picker:before{content:"\ebe6"}.ti-color-picker-off:before{content:"\f0d2"}.ti-color-swatch:before{content:"\eb61"}.ti-color-swatch-off:before{content:"\f0d3"}.ti-column-insert-left:before{content:"\ee44"}.ti-column-insert-right:before{content:"\ee45"}.ti-columns:before{content:"\eb83"}.ti-columns-off:before{content:"\f0d4"}.ti-comet:before{content:"\ec76"}.ti-command:before{content:"\ea78"}.ti-command-off:before{content:"\f3d7"}.ti-compass:before{content:"\ea79"}.ti-compass-off:before{content:"\f0d5"}.ti-components:before{content:"\efa5"}.ti-components-off:before{content:"\f0d6"}.ti-cone:before{content:"\efdd"}.ti-cone-2:before{content:"\efdc"}.ti-cone-off:before{content:"\f3d8"}.ti-confetti:before{content:"\ee46"}.ti-confetti-off:before{content:"\f3d9"}.ti-confucius:before{content:"\f58a"}.ti-container:before{content:"\ee47"}.ti-container-off:before{content:"\f107"}.ti-contrast:before{content:"\ec4e"}.ti-contrast-2:before{content:"\efc7"}.ti-contrast-2-off:before{content:"\f3da"}.ti-contrast-off:before{content:"\f3db"}.ti-cooker:before{content:"\f57a"}.ti-cookie:before{content:"\ef0f"}.ti-cookie-man:before{content:"\f4c4"}.ti-cookie-off:before{content:"\f0d7"}.ti-copy:before{content:"\ea7a"}.ti-copy-off:before{content:"\f0d8"}.ti-copyleft:before{content:"\ec3d"}.ti-copyleft-off:before{content:"\f0d9"}.ti-copyright:before{content:"\ea7b"}.ti-copyright-off:before{content:"\f0da"}.ti-corner-down-left:before{content:"\ea7c"}.ti-corner-down-left-double:before{content:"\ee48"}.ti-corner-down-right:before{content:"\ea7d"}.ti-corner-down-right-double:before{content:"\ee49"}.ti-corner-left-down:before{content:"\ea7e"}.ti-corner-left-down-double:before{content:"\ee4a"}.ti-corner-left-up:before{content:"\ea7f"}.ti-corner-left-up-double:before{content:"\ee4b"}.ti-corner-right-down:before{content:"\ea80"}.ti-corner-right-down-double:before{content:"\ee4c"}.ti-corner-right-up:before{content:"\ea81"}.ti-corner-right-up-double:before{content:"\ee4d"}.ti-corner-up-left:before{content:"\ea82"}.ti-corner-up-left-double:before{content:"\ee4e"}.ti-corner-up-right:before{content:"\ea83"}.ti-corner-up-right-double:before{content:"\ee4f"}.ti-cpu:before{content:"\ef8e"}.ti-cpu-2:before{content:"\f075"}.ti-cpu-off:before{content:"\f108"}.ti-crane:before{content:"\ef27"}.ti-crane-off:before{content:"\f109"}.ti-creative-commons:before{content:"\efb3"}.ti-creative-commons-by:before{content:"\f21f"}.ti-creative-commons-nc:before{content:"\f220"}.ti-creative-commons-nd:before{content:"\f221"}.ti-creative-commons-off:before{content:"\f10a"}.ti-creative-commons-sa:before{content:"\f222"}.ti-creative-commons-zero:before{content:"\f223"}.ti-credit-card:before{content:"\ea84"}.ti-credit-card-off:before{content:"\ed11"}.ti-cricket:before{content:"\f09a"}.ti-crop:before{content:"\ea85"}.ti-cross:before{content:"\ef8f"}.ti-cross-filled:before{content:"\f675"}.ti-cross-off:before{content:"\f10b"}.ti-crosshair:before{content:"\ec3e"}.ti-crown:before{content:"\ed12"}.ti-crown-off:before{content:"\ee50"}.ti-crutches:before{content:"\ef5b"}.ti-crutches-off:before{content:"\f10c"}.ti-crystal-ball:before{content:"\f57b"}.ti-cube-send:before{content:"\f61b"}.ti-cube-unfolded:before{content:"\f61c"}.ti-cup:before{content:"\ef28"}.ti-cup-off:before{content:"\f10d"}.ti-curling:before{content:"\efc8"}.ti-curly-loop:before{content:"\ecda"}.ti-currency:before{content:"\efa6"}.ti-currency-afghani:before{content:"\f65e"}.ti-currency-bahraini:before{content:"\ee51"}.ti-currency-baht:before{content:"\f08a"}.ti-currency-bitcoin:before{content:"\ebab"}.ti-currency-cent:before{content:"\ee53"}.ti-currency-dinar:before{content:"\ee54"}.ti-currency-dirham:before{content:"\ee55"}.ti-currency-dogecoin:before{content:"\ef4b"}.ti-currency-dollar:before{content:"\eb84"}.ti-currency-dollar-australian:before{content:"\ee56"}.ti-currency-dollar-brunei:before{content:"\f36c"}.ti-currency-dollar-canadian:before{content:"\ee57"}.ti-currency-dollar-guyanese:before{content:"\f36d"}.ti-currency-dollar-off:before{content:"\f3dc"}.ti-currency-dollar-singapore:before{content:"\ee58"}.ti-currency-dollar-zimbabwean:before{content:"\f36e"}.ti-currency-dong:before{content:"\f36f"}.ti-currency-dram:before{content:"\f370"}.ti-currency-ethereum:before{content:"\ee59"}.ti-currency-euro:before{content:"\eb85"}.ti-currency-euro-off:before{content:"\f3dd"}.ti-currency-forint:before{content:"\ee5a"}.ti-currency-frank:before{content:"\ee5b"}.ti-currency-guarani:before{content:"\f371"}.ti-currency-hryvnia:before{content:"\f372"}.ti-currency-kip:before{content:"\f373"}.ti-currency-krone-czech:before{content:"\ee5c"}.ti-currency-krone-danish:before{content:"\ee5d"}.ti-currency-krone-swedish:before{content:"\ee5e"}.ti-currency-lari:before{content:"\f374"}.ti-currency-leu:before{content:"\ee5f"}.ti-currency-lira:before{content:"\ee60"}.ti-currency-litecoin:before{content:"\ee61"}.ti-currency-lyd:before{content:"\f375"}.ti-currency-manat:before{content:"\f376"}.ti-currency-monero:before{content:"\f377"}.ti-currency-naira:before{content:"\ee62"}.ti-currency-off:before{content:"\f3de"}.ti-currency-paanga:before{content:"\f378"}.ti-currency-peso:before{content:"\f65f"}.ti-currency-pound:before{content:"\ebac"}.ti-currency-pound-off:before{content:"\f3df"}.ti-currency-quetzal:before{content:"\f379"}.ti-currency-real:before{content:"\ee63"}.ti-currency-renminbi:before{content:"\ee64"}.ti-currency-ripple:before{content:"\ee65"}.ti-currency-riyal:before{content:"\ee66"}.ti-currency-rubel:before{content:"\ee67"}.ti-currency-rufiyaa:before{content:"\f37a"}.ti-currency-rupee:before{content:"\ebad"}.ti-currency-rupee-nepalese:before{content:"\f37b"}.ti-currency-shekel:before{content:"\ee68"}.ti-currency-solana:before{content:"\f4a1"}.ti-currency-som:before{content:"\f37c"}.ti-currency-taka:before{content:"\ee69"}.ti-currency-tenge:before{content:"\f37d"}.ti-currency-tugrik:before{content:"\ee6a"}.ti-currency-won:before{content:"\ee6b"}.ti-currency-yen:before{content:"\ebae"}.ti-currency-yen-off:before{content:"\f3e0"}.ti-currency-yuan:before{content:"\f29a"}.ti-currency-zloty:before{content:"\ee6c"}.ti-current-location:before{content:"\ecef"}.ti-current-location-off:before{content:"\f10e"}.ti-cursor-off:before{content:"\f10f"}.ti-cursor-text:before{content:"\ee6d"}.ti-cut:before{content:"\ea86"}.ti-cylinder:before{content:"\f54c"}.ti-dashboard:before{content:"\ea87"}.ti-dashboard-off:before{content:"\f3e1"}.ti-database:before{content:"\ea88"}.ti-database-export:before{content:"\ee6e"}.ti-database-import:before{content:"\ee6f"}.ti-database-off:before{content:"\ee70"}.ti-deer:before{content:"\f4c5"}.ti-delta:before{content:"\f53c"}.ti-dental:before{content:"\f025"}.ti-dental-broken:before{content:"\f286"}.ti-dental-off:before{content:"\f110"}.ti-details:before{content:"\ee71"}.ti-details-off:before{content:"\f3e2"}.ti-device-airpods:before{content:"\f5a9"}.ti-device-airpods-case:before{content:"\f646"}.ti-device-analytics:before{content:"\ee72"}.ti-device-audio-tape:before{content:"\ee73"}.ti-device-camera-phone:before{content:"\f233"}.ti-device-cctv:before{content:"\ee74"}.ti-device-cctv-off:before{content:"\f3e3"}.ti-device-computer-camera:before{content:"\ee76"}.ti-device-computer-camera-off:before{content:"\ee75"}.ti-device-desktop:before{content:"\ea89"}.ti-device-desktop-analytics:before{content:"\ee77"}.ti-device-desktop-off:before{content:"\ee78"}.ti-device-floppy:before{content:"\eb62"}.ti-device-gamepad:before{content:"\eb63"}.ti-device-gamepad-2:before{content:"\f1d2"}.ti-device-heart-monitor:before{content:"\f060"}.ti-device-ipad:before{content:"\f648"}.ti-device-ipad-horizontal:before{content:"\f647"}.ti-device-landline-phone:before{content:"\f649"}.ti-device-laptop:before{content:"\eb64"}.ti-device-laptop-off:before{content:"\f061"}.ti-device-mobile:before{content:"\ea8a"}.ti-device-mobile-charging:before{content:"\f224"}.ti-device-mobile-message:before{content:"\ee79"}.ti-device-mobile-off:before{content:"\f062"}.ti-device-mobile-rotated:before{content:"\ecdb"}.ti-device-mobile-vibration:before{content:"\eb86"}.ti-device-nintendo:before{content:"\f026"}.ti-device-nintendo-off:before{content:"\f111"}.ti-device-sd-card:before{content:"\f384"}.ti-device-sim:before{content:"\f4b2"}.ti-device-sim-1:before{content:"\f4af"}.ti-device-sim-2:before{content:"\f4b0"}.ti-device-sim-3:before{content:"\f4b1"}.ti-device-speaker:before{content:"\ea8b"}.ti-device-speaker-off:before{content:"\f112"}.ti-device-tablet:before{content:"\ea8c"}.ti-device-tablet-off:before{content:"\f063"}.ti-device-tv:before{content:"\ea8d"}.ti-device-tv-off:before{content:"\f064"}.ti-device-tv-old:before{content:"\f1d3"}.ti-device-watch:before{content:"\ebf9"}.ti-device-watch-off:before{content:"\f065"}.ti-device-watch-stats:before{content:"\ef7d"}.ti-device-watch-stats-2:before{content:"\ef7c"}.ti-devices:before{content:"\eb87"}.ti-devices-2:before{content:"\ed29"}.ti-devices-off:before{content:"\f3e4"}.ti-devices-pc:before{content:"\ee7a"}.ti-devices-pc-off:before{content:"\f113"}.ti-dialpad:before{content:"\f067"}.ti-dialpad-off:before{content:"\f114"}.ti-diamond:before{content:"\eb65"}.ti-diamond-off:before{content:"\f115"}.ti-diamonds:before{content:"\eff5"}.ti-diamonds-filled:before{content:"\f676"}.ti-dice:before{content:"\eb66"}.ti-dice-1:before{content:"\f08b"}.ti-dice-2:before{content:"\f08c"}.ti-dice-3:before{content:"\f08d"}.ti-dice-4:before{content:"\f08e"}.ti-dice-5:before{content:"\f08f"}.ti-dice-6:before{content:"\f090"}.ti-dimensions:before{content:"\ee7b"}.ti-direction:before{content:"\ebfb"}.ti-direction-horizontal:before{content:"\ebfa"}.ti-direction-sign:before{content:"\f1f7"}.ti-direction-sign-off:before{content:"\f3e5"}.ti-directions:before{content:"\ea8e"}.ti-directions-off:before{content:"\f116"}.ti-disabled:before{content:"\ea8f"}.ti-disabled-2:before{content:"\ebaf"}.ti-disabled-off:before{content:"\f117"}.ti-disc:before{content:"\ea90"}.ti-disc-golf:before{content:"\f385"}.ti-disc-off:before{content:"\f118"}.ti-discount:before{content:"\ebbd"}.ti-discount-2:before{content:"\ee7c"}.ti-discount-2-off:before{content:"\f3e6"}.ti-discount-check:before{content:"\f1f8"}.ti-discount-off:before{content:"\f3e7"}.ti-divide:before{content:"\ed5c"}.ti-dna:before{content:"\ee7d"}.ti-dna-2:before{content:"\ef5c"}.ti-dna-2-off:before{content:"\f119"}.ti-dna-off:before{content:"\f11a"}.ti-dog:before{content:"\f660"}.ti-dog-bowl:before{content:"\ef29"}.ti-door:before{content:"\ef4e"}.ti-door-enter:before{content:"\ef4c"}.ti-door-exit:before{content:"\ef4d"}.ti-door-off:before{content:"\f11b"}.ti-dots:before{content:"\ea95"}.ti-dots-circle-horizontal:before{content:"\ea91"}.ti-dots-diagonal:before{content:"\ea93"}.ti-dots-diagonal-2:before{content:"\ea92"}.ti-dots-vertical:before{content:"\ea94"}.ti-download:before{content:"\ea96"}.ti-download-off:before{content:"\f11c"}.ti-drag-drop:before{content:"\eb89"}.ti-drag-drop-2:before{content:"\eb88"}.ti-drone:before{content:"\ed79"}.ti-drone-off:before{content:"\ee7e"}.ti-drop-circle:before{content:"\efde"}.ti-droplet:before{content:"\ea97"}.ti-droplet-filled:before{content:"\f677"}.ti-droplet-filled-2:before{content:"\ee7f"}.ti-droplet-half:before{content:"\ee82"}.ti-droplet-half-2:before{content:"\ee81"}.ti-droplet-half-filled:before{content:"\ee80"}.ti-droplet-off:before{content:"\ee83"}.ti-e-passport:before{content:"\f4df"}.ti-ear:before{content:"\ebce"}.ti-ear-off:before{content:"\ee84"}.ti-ease-in:before{content:"\f573"}.ti-ease-in-control-point:before{content:"\f570"}.ti-ease-in-out:before{content:"\f572"}.ti-ease-in-out-control-points:before{content:"\f571"}.ti-ease-out:before{content:"\f575"}.ti-ease-out-control-point:before{content:"\f574"}.ti-edit:before{content:"\ea98"}.ti-edit-circle:before{content:"\ee85"}.ti-edit-circle-off:before{content:"\f11d"}.ti-edit-off:before{content:"\f11e"}.ti-egg:before{content:"\eb8a"}.ti-egg-cracked:before{content:"\f2d6"}.ti-egg-filled:before{content:"\f678"}.ti-egg-fried:before{content:"\f386"}.ti-egg-off:before{content:"\f11f"}.ti-eggs:before{content:"\f500"}.ti-elevator:before{content:"\efdf"}.ti-elevator-off:before{content:"\f3e8"}.ti-emergency-bed:before{content:"\ef5d"}.ti-empathize:before{content:"\f29b"}.ti-empathize-off:before{content:"\f3e9"}.ti-emphasis:before{content:"\ebcf"}.ti-engine:before{content:"\ef7e"}.ti-engine-off:before{content:"\f120"}.ti-equal:before{content:"\ee87"}.ti-equal-double:before{content:"\f4e1"}.ti-equal-not:before{content:"\ee86"}.ti-eraser:before{content:"\eb8b"}.ti-eraser-off:before{content:"\f121"}.ti-error-404:before{content:"\f027"}.ti-error-404-off:before{content:"\f122"}.ti-exchange:before{content:"\ebe7"}.ti-exchange-off:before{content:"\f123"}.ti-exclamation-circle:before{content:"\f634"}.ti-exclamation-mark:before{content:"\efb4"}.ti-exclamation-mark-off:before{content:"\f124"}.ti-explicit:before{content:"\f256"}.ti-explicit-off:before{content:"\f3ea"}.ti-exposure:before{content:"\eb8c"}.ti-exposure-0:before{content:"\f29c"}.ti-exposure-minus-1:before{content:"\f29d"}.ti-exposure-minus-2:before{content:"\f29e"}.ti-exposure-off:before{content:"\f3eb"}.ti-exposure-plus-1:before{content:"\f29f"}.ti-exposure-plus-2:before{content:"\f2a0"}.ti-external-link:before{content:"\ea99"}.ti-external-link-off:before{content:"\f125"}.ti-eye:before{content:"\ea9a"}.ti-eye-check:before{content:"\ee88"}.ti-eye-filled:before{content:"\f679"}.ti-eye-off:before{content:"\ecf0"}.ti-eye-table:before{content:"\ef5e"}.ti-eyeglass:before{content:"\ee8a"}.ti-eyeglass-2:before{content:"\ee89"}.ti-eyeglass-off:before{content:"\f126"}.ti-face-id:before{content:"\ea9b"}.ti-face-id-error:before{content:"\efa7"}.ti-face-mask:before{content:"\efb5"}.ti-face-mask-off:before{content:"\f127"}.ti-fall:before{content:"\ecb9"}.ti-feather:before{content:"\ee8b"}.ti-feather-off:before{content:"\f128"}.ti-fence:before{content:"\ef2a"}.ti-fence-off:before{content:"\f129"}.ti-fidget-spinner:before{content:"\f068"}.ti-file:before{content:"\eaa4"}.ti-file-3d:before{content:"\f032"}.ti-file-alert:before{content:"\ede6"}.ti-file-analytics:before{content:"\ede7"}.ti-file-arrow-left:before{content:"\f033"}.ti-file-arrow-right:before{content:"\f034"}.ti-file-barcode:before{content:"\f035"}.ti-file-broken:before{content:"\f501"}.ti-file-certificate:before{content:"\ed4d"}.ti-file-chart:before{content:"\f036"}.ti-file-check:before{content:"\ea9c"}.ti-file-code:before{content:"\ebd0"}.ti-file-code-2:before{content:"\ede8"}.ti-file-database:before{content:"\f037"}.ti-file-delta:before{content:"\f53d"}.ti-file-description:before{content:"\f028"}.ti-file-diff:before{content:"\ecf1"}.ti-file-digit:before{content:"\efa8"}.ti-file-dislike:before{content:"\ed2a"}.ti-file-dollar:before{content:"\efe0"}.ti-file-dots:before{content:"\f038"}.ti-file-download:before{content:"\ea9d"}.ti-file-euro:before{content:"\efe1"}.ti-file-export:before{content:"\ede9"}.ti-file-function:before{content:"\f53e"}.ti-file-horizontal:before{content:"\ebb0"}.ti-file-import:before{content:"\edea"}.ti-file-infinity:before{content:"\f502"}.ti-file-info:before{content:"\edec"}.ti-file-invoice:before{content:"\eb67"}.ti-file-lambda:before{content:"\f53f"}.ti-file-like:before{content:"\ed2b"}.ti-file-minus:before{content:"\ea9e"}.ti-file-music:before{content:"\ea9f"}.ti-file-off:before{content:"\ecf2"}.ti-file-orientation:before{content:"\f2a1"}.ti-file-pencil:before{content:"\f039"}.ti-file-percent:before{content:"\f540"}.ti-file-phone:before{content:"\ecdc"}.ti-file-plus:before{content:"\eaa0"}.ti-file-power:before{content:"\f03a"}.ti-file-report:before{content:"\eded"}.ti-file-rss:before{content:"\f03b"}.ti-file-scissors:before{content:"\f03c"}.ti-file-search:before{content:"\ed5d"}.ti-file-settings:before{content:"\f029"}.ti-file-shredder:before{content:"\eaa1"}.ti-file-signal:before{content:"\f03d"}.ti-file-spreadsheet:before{content:"\f03e"}.ti-file-stack:before{content:"\f503"}.ti-file-star:before{content:"\f03f"}.ti-file-symlink:before{content:"\ed53"}.ti-file-text:before{content:"\eaa2"}.ti-file-time:before{content:"\f040"}.ti-file-typography:before{content:"\f041"}.ti-file-unknown:before{content:"\f042"}.ti-file-upload:before{content:"\ec91"}.ti-file-vector:before{content:"\f043"}.ti-file-x:before{content:"\eaa3"}.ti-file-zip:before{content:"\ed4e"}.ti-files:before{content:"\edef"}.ti-files-off:before{content:"\edee"}.ti-filter:before{content:"\eaa5"}.ti-filter-off:before{content:"\ed2c"}.ti-fingerprint:before{content:"\ebd1"}.ti-fingerprint-off:before{content:"\f12a"}.ti-fire-hydrant:before{content:"\f3a9"}.ti-fire-hydrant-off:before{content:"\f3ec"}.ti-firetruck:before{content:"\ebe8"}.ti-first-aid-kit:before{content:"\ef5f"}.ti-first-aid-kit-off:before{content:"\f3ed"}.ti-fish:before{content:"\ef2b"}.ti-fish-bone:before{content:"\f287"}.ti-fish-christianity:before{content:"\f58b"}.ti-fish-hook:before{content:"\f1f9"}.ti-fish-hook-off:before{content:"\f3ee"}.ti-fish-off:before{content:"\f12b"}.ti-flag:before{content:"\eaa6"}.ti-flag-2:before{content:"\ee8c"}.ti-flag-2-off:before{content:"\f12c"}.ti-flag-3:before{content:"\ee8d"}.ti-flag-filled:before{content:"\f67a"}.ti-flag-off:before{content:"\f12d"}.ti-flame:before{content:"\ec2c"}.ti-flame-off:before{content:"\f12e"}.ti-flare:before{content:"\ee8e"}.ti-flask:before{content:"\ebd2"}.ti-flask-2:before{content:"\ef60"}.ti-flask-2-off:before{content:"\f12f"}.ti-flask-off:before{content:"\f130"}.ti-flip-flops:before{content:"\f564"}.ti-flip-horizontal:before{content:"\eaa7"}.ti-flip-vertical:before{content:"\eaa8"}.ti-float-center:before{content:"\ebb1"}.ti-float-left:before{content:"\ebb2"}.ti-float-none:before{content:"\ed13"}.ti-float-right:before{content:"\ebb3"}.ti-flower:before{content:"\eff6"}.ti-flower-off:before{content:"\f131"}.ti-focus:before{content:"\eb8d"}.ti-focus-2:before{content:"\ebd3"}.ti-focus-centered:before{content:"\f02a"}.ti-fold:before{content:"\ed56"}.ti-fold-down:before{content:"\ed54"}.ti-fold-up:before{content:"\ed55"}.ti-folder:before{content:"\eaad"}.ti-folder-minus:before{content:"\eaaa"}.ti-folder-off:before{content:"\ed14"}.ti-folder-plus:before{content:"\eaab"}.ti-folder-x:before{content:"\eaac"}.ti-folders:before{content:"\eaae"}.ti-folders-off:before{content:"\f133"}.ti-forbid:before{content:"\ebd5"}.ti-forbid-2:before{content:"\ebd4"}.ti-forklift:before{content:"\ebe9"}.ti-forms:before{content:"\ee8f"}.ti-fountain:before{content:"\f09b"}.ti-fountain-off:before{content:"\f134"}.ti-frame:before{content:"\eaaf"}.ti-frame-off:before{content:"\f135"}.ti-free-rights:before{content:"\efb6"}.ti-fridge:before{content:"\f1fa"}.ti-fridge-off:before{content:"\f3ef"}.ti-friends:before{content:"\eab0"}.ti-friends-off:before{content:"\f136"}.ti-function:before{content:"\f225"}.ti-function-off:before{content:"\f3f0"}.ti-garden-cart:before{content:"\f23e"}.ti-garden-cart-off:before{content:"\f3f1"}.ti-gas-station:before{content:"\ec7d"}.ti-gas-station-off:before{content:"\f137"}.ti-gauge:before{content:"\eab1"}.ti-gauge-off:before{content:"\f138"}.ti-gavel:before{content:"\ef90"}.ti-gender-agender:before{content:"\f0e1"}.ti-gender-androgyne:before{content:"\f0e2"}.ti-gender-bigender:before{content:"\f0e3"}.ti-gender-demiboy:before{content:"\f0e4"}.ti-gender-demigirl:before{content:"\f0e5"}.ti-gender-epicene:before{content:"\f0e6"}.ti-gender-female:before{content:"\f0e7"}.ti-gender-femme:before{content:"\f0e8"}.ti-gender-genderfluid:before{content:"\f0e9"}.ti-gender-genderless:before{content:"\f0ea"}.ti-gender-genderqueer:before{content:"\f0eb"}.ti-gender-hermaphrodite:before{content:"\f0ec"}.ti-gender-intergender:before{content:"\f0ed"}.ti-gender-male:before{content:"\f0ee"}.ti-gender-neutrois:before{content:"\f0ef"}.ti-gender-third:before{content:"\f0f0"}.ti-gender-transgender:before{content:"\f0f1"}.ti-gender-trasvesti:before{content:"\f0f2"}.ti-geometry:before{content:"\ee90"}.ti-ghost:before{content:"\eb8e"}.ti-ghost-2:before{content:"\f57c"}.ti-ghost-off:before{content:"\f3f2"}.ti-gif:before{content:"\f257"}.ti-gift:before{content:"\eb68"}.ti-gift-card:before{content:"\f3aa"}.ti-gift-off:before{content:"\f3f3"}.ti-git-branch:before{content:"\eab2"}.ti-git-branch-deleted:before{content:"\f57d"}.ti-git-cherry-pick:before{content:"\f57e"}.ti-git-commit:before{content:"\eab3"}.ti-git-compare:before{content:"\eab4"}.ti-git-fork:before{content:"\eb8f"}.ti-git-merge:before{content:"\eab5"}.ti-git-pull-request:before{content:"\eab6"}.ti-git-pull-request-closed:before{content:"\ef7f"}.ti-git-pull-request-draft:before{content:"\efb7"}.ti-gizmo:before{content:"\f02b"}.ti-glass:before{content:"\eab8"}.ti-glass-full:before{content:"\eab7"}.ti-glass-off:before{content:"\ee91"}.ti-globe:before{content:"\eab9"}.ti-globe-off:before{content:"\f139"}.ti-go-game:before{content:"\f512"}.ti-golf:before{content:"\ed8c"}.ti-golf-off:before{content:"\f13a"}.ti-gps:before{content:"\ed7a"}.ti-gradienter:before{content:"\f3ab"}.ti-grain:before{content:"\ee92"}.ti-graph:before{content:"\f288"}.ti-graph-off:before{content:"\f3f4"}.ti-grave:before{content:"\f580"}.ti-grave-2:before{content:"\f57f"}.ti-grid-dots:before{content:"\eaba"}.ti-grid-pattern:before{content:"\efc9"}.ti-grill:before{content:"\efa9"}.ti-grill-fork:before{content:"\f35b"}.ti-grill-off:before{content:"\f3f5"}.ti-grill-spatula:before{content:"\f35c"}.ti-grip-horizontal:before{content:"\ec00"}.ti-grip-vertical:before{content:"\ec01"}.ti-growth:before{content:"\ee93"}.ti-guitar-pick:before{content:"\f4c6"}.ti-guitar-pick-filled:before{content:"\f67b"}.ti-h-1:before{content:"\ec94"}.ti-h-2:before{content:"\ec95"}.ti-h-3:before{content:"\ec96"}.ti-h-4:before{content:"\ec97"}.ti-h-5:before{content:"\ec98"}.ti-h-6:before{content:"\ec99"}.ti-hammer:before{content:"\ef91"}.ti-hammer-off:before{content:"\f13c"}.ti-hand-click:before{content:"\ef4f"}.ti-hand-finger:before{content:"\ee94"}.ti-hand-finger-off:before{content:"\f13d"}.ti-hand-grab:before{content:"\f091"}.ti-hand-little-finger:before{content:"\ee95"}.ti-hand-middle-finger:before{content:"\ec2d"}.ti-hand-move:before{content:"\ef50"}.ti-hand-off:before{content:"\ed15"}.ti-hand-ring-finger:before{content:"\ee96"}.ti-hand-rock:before{content:"\ee97"}.ti-hand-sanitizer:before{content:"\f5f4"}.ti-hand-stop:before{content:"\ec2e"}.ti-hand-three-fingers:before{content:"\ee98"}.ti-hand-two-fingers:before{content:"\ee99"}.ti-hanger:before{content:"\ee9a"}.ti-hanger-2:before{content:"\f09c"}.ti-hanger-off:before{content:"\f13e"}.ti-hash:before{content:"\eabc"}.ti-haze:before{content:"\efaa"}.ti-heading:before{content:"\ee9b"}.ti-heading-off:before{content:"\f13f"}.ti-headphones:before{content:"\eabd"}.ti-headphones-off:before{content:"\ed1d"}.ti-headset:before{content:"\eb90"}.ti-headset-off:before{content:"\f3f6"}.ti-health-recognition:before{content:"\f1fb"}.ti-heart:before{content:"\eabe"}.ti-heart-broken:before{content:"\ecba"}.ti-heart-filled:before{content:"\f67c"}.ti-heart-handshake:before{content:"\f0f3"}.ti-heart-minus:before{content:"\f140"}.ti-heart-off:before{content:"\f141"}.ti-heart-plus:before{content:"\f142"}.ti-heart-rate-monitor:before{content:"\ef61"}.ti-heartbeat:before{content:"\ef92"}.ti-hearts:before{content:"\f387"}.ti-hearts-off:before{content:"\f3f7"}.ti-helicopter:before{content:"\ed8e"}.ti-helicopter-landing:before{content:"\ed8d"}.ti-helmet:before{content:"\efca"}.ti-helmet-off:before{content:"\f143"}.ti-help:before{content:"\eabf"}.ti-help-off:before{content:"\f3f8"}.ti-hexagon:before{content:"\ec02"}.ti-hexagon-3d:before{content:"\f4c7"}.ti-hexagon-filled:before{content:"\f67d"}.ti-hexagon-letter-a:before{content:"\f463"}.ti-hexagon-letter-b:before{content:"\f464"}.ti-hexagon-letter-c:before{content:"\f465"}.ti-hexagon-letter-d:before{content:"\f466"}.ti-hexagon-letter-e:before{content:"\f467"}.ti-hexagon-letter-f:before{content:"\f468"}.ti-hexagon-letter-g:before{content:"\f469"}.ti-hexagon-letter-h:before{content:"\f46a"}.ti-hexagon-letter-i:before{content:"\f46b"}.ti-hexagon-letter-j:before{content:"\f46c"}.ti-hexagon-letter-k:before{content:"\f46d"}.ti-hexagon-letter-l:before{content:"\f46e"}.ti-hexagon-letter-m:before{content:"\f46f"}.ti-hexagon-letter-n:before{content:"\f470"}.ti-hexagon-letter-o:before{content:"\f471"}.ti-hexagon-letter-p:before{content:"\f472"}.ti-hexagon-letter-q:before{content:"\f473"}.ti-hexagon-letter-r:before{content:"\f474"}.ti-hexagon-letter-s:before{content:"\f475"}.ti-hexagon-letter-t:before{content:"\f476"}.ti-hexagon-letter-u:before{content:"\f477"}.ti-hexagon-letter-v:before{content:"\f4b3"}.ti-hexagon-letter-w:before{content:"\f478"}.ti-hexagon-letter-x:before{content:"\f479"}.ti-hexagon-letter-y:before{content:"\f47a"}.ti-hexagon-letter-z:before{content:"\f47b"}.ti-hexagon-number-0:before{content:"\f459"}.ti-hexagon-number-1:before{content:"\f45a"}.ti-hexagon-number-2:before{content:"\f45b"}.ti-hexagon-number-3:before{content:"\f45c"}.ti-hexagon-number-4:before{content:"\f45d"}.ti-hexagon-number-5:before{content:"\f45e"}.ti-hexagon-number-6:before{content:"\f45f"}.ti-hexagon-number-7:before{content:"\f460"}.ti-hexagon-number-8:before{content:"\f461"}.ti-hexagon-number-9:before{content:"\f462"}.ti-hexagon-off:before{content:"\ee9c"}.ti-hexagons:before{content:"\f09d"}.ti-hexagons-off:before{content:"\f3f9"}.ti-hierarchy:before{content:"\ee9e"}.ti-hierarchy-2:before{content:"\ee9d"}.ti-hierarchy-3:before{content:"\f289"}.ti-hierarchy-off:before{content:"\f3fa"}.ti-highlight:before{content:"\ef3f"}.ti-highlight-off:before{content:"\f144"}.ti-history:before{content:"\ebea"}.ti-history-off:before{content:"\f3fb"}.ti-history-toggle:before{content:"\f1fc"}.ti-home:before{content:"\eac1"}.ti-home-2:before{content:"\eac0"}.ti-home-bolt:before{content:"\f336"}.ti-home-cancel:before{content:"\f350"}.ti-home-check:before{content:"\f337"}.ti-home-cog:before{content:"\f338"}.ti-home-dollar:before{content:"\f339"}.ti-home-dot:before{content:"\f33a"}.ti-home-down:before{content:"\f33b"}.ti-home-eco:before{content:"\f351"}.ti-home-edit:before{content:"\f352"}.ti-home-exclamation:before{content:"\f33c"}.ti-home-hand:before{content:"\f504"}.ti-home-heart:before{content:"\f353"}.ti-home-infinity:before{content:"\f505"}.ti-home-link:before{content:"\f354"}.ti-home-minus:before{content:"\f33d"}.ti-home-move:before{content:"\f33e"}.ti-home-off:before{content:"\f145"}.ti-home-plus:before{content:"\f33f"}.ti-home-question:before{content:"\f340"}.ti-home-ribbon:before{content:"\f355"}.ti-home-search:before{content:"\f341"}.ti-home-share:before{content:"\f342"}.ti-home-shield:before{content:"\f343"}.ti-home-signal:before{content:"\f356"}.ti-home-star:before{content:"\f344"}.ti-home-stats:before{content:"\f345"}.ti-home-up:before{content:"\f346"}.ti-home-x:before{content:"\f347"}.ti-horse-toy:before{content:"\f28a"}.ti-hotel-service:before{content:"\ef80"}.ti-hourglass:before{content:"\ef93"}.ti-hourglass-empty:before{content:"\f146"}.ti-hourglass-high:before{content:"\f092"}.ti-hourglass-low:before{content:"\f093"}.ti-hourglass-off:before{content:"\f147"}.ti-ice-cream:before{content:"\eac2"}.ti-ice-cream-2:before{content:"\ee9f"}.ti-ice-cream-off:before{content:"\f148"}.ti-ice-skating:before{content:"\efcb"}.ti-icons:before{content:"\f1d4"}.ti-icons-off:before{content:"\f3fc"}.ti-id:before{content:"\eac3"}.ti-id-badge:before{content:"\eff7"}.ti-id-badge-2:before{content:"\f076"}.ti-id-badge-off:before{content:"\f3fd"}.ti-id-off:before{content:"\f149"}.ti-inbox:before{content:"\eac4"}.ti-inbox-off:before{content:"\f14a"}.ti-indent-decrease:before{content:"\eb91"}.ti-indent-increase:before{content:"\eb92"}.ti-infinity:before{content:"\eb69"}.ti-infinity-off:before{content:"\f3fe"}.ti-info-circle:before{content:"\eac5"}.ti-info-square:before{content:"\eac6"}.ti-info-square-rounded:before{content:"\f635"}.ti-inner-shadow-bottom:before{content:"\f520"}.ti-inner-shadow-bottom-left:before{content:"\f51e"}.ti-inner-shadow-bottom-right:before{content:"\f51f"}.ti-inner-shadow-left:before{content:"\f521"}.ti-inner-shadow-right:before{content:"\f522"}.ti-inner-shadow-top:before{content:"\f525"}.ti-inner-shadow-top-left:before{content:"\f523"}.ti-inner-shadow-top-right:before{content:"\f524"}.ti-input-search:before{content:"\f2a2"}.ti-ironing-1:before{content:"\f2f4"}.ti-ironing-2:before{content:"\f2f5"}.ti-ironing-3:before{content:"\f2f6"}.ti-ironing-off:before{content:"\f2f7"}.ti-ironing-steam:before{content:"\f2f9"}.ti-ironing-steam-off:before{content:"\f2f8"}.ti-italic:before{content:"\eb93"}.ti-jacket:before{content:"\f661"}.ti-jetpack:before{content:"\f581"}.ti-jewish-star:before{content:"\f3ff"}.ti-jewish-star-filled:before{content:"\f67e"}.ti-jpg:before{content:"\f3ac"}.ti-jump-rope:before{content:"\ed8f"}.ti-karate:before{content:"\ed32"}.ti-kayak:before{content:"\f1d6"}.ti-kering:before{content:"\efb8"}.ti-key:before{content:"\eac7"}.ti-key-off:before{content:"\f14b"}.ti-keyboard:before{content:"\ebd6"}.ti-keyboard-hide:before{content:"\ec7e"}.ti-keyboard-off:before{content:"\eea0"}.ti-keyboard-show:before{content:"\ec7f"}.ti-keyframe:before{content:"\f576"}.ti-keyframe-align-center:before{content:"\f582"}.ti-keyframe-align-horizontal:before{content:"\f583"}.ti-keyframe-align-vertical:before{content:"\f584"}.ti-keyframes:before{content:"\f585"}.ti-ladder:before{content:"\efe2"}.ti-ladder-off:before{content:"\f14c"}.ti-lambda:before{content:"\f541"}.ti-lamp:before{content:"\efab"}.ti-lamp-2:before{content:"\f09e"}.ti-lamp-off:before{content:"\f14d"}.ti-language:before{content:"\ebbe"}.ti-language-hiragana:before{content:"\ef77"}.ti-language-katakana:before{content:"\ef78"}.ti-language-off:before{content:"\f14e"}.ti-lasso:before{content:"\efac"}.ti-lasso-off:before{content:"\f14f"}.ti-lasso-polygon:before{content:"\f388"}.ti-layers-difference:before{content:"\eac8"}.ti-layers-intersect:before{content:"\eac9"}.ti-layers-intersect-2:before{content:"\eff8"}.ti-layers-linked:before{content:"\eea1"}.ti-layers-off:before{content:"\f150"}.ti-layers-subtract:before{content:"\eaca"}.ti-layers-union:before{content:"\eacb"}.ti-layout:before{content:"\eadb"}.ti-layout-2:before{content:"\eacc"}.ti-layout-align-bottom:before{content:"\eacd"}.ti-layout-align-center:before{content:"\eace"}.ti-layout-align-left:before{content:"\eacf"}.ti-layout-align-middle:before{content:"\ead0"}.ti-layout-align-right:before{content:"\ead1"}.ti-layout-align-top:before{content:"\ead2"}.ti-layout-board:before{content:"\ef95"}.ti-layout-board-split:before{content:"\ef94"}.ti-layout-bottombar:before{content:"\ead3"}.ti-layout-bottombar-collapse:before{content:"\f28b"}.ti-layout-bottombar-expand:before{content:"\f28c"}.ti-layout-cards:before{content:"\ec13"}.ti-layout-collage:before{content:"\f389"}.ti-layout-columns:before{content:"\ead4"}.ti-layout-dashboard:before{content:"\f02c"}.ti-layout-distribute-horizontal:before{content:"\ead5"}.ti-layout-distribute-vertical:before{content:"\ead6"}.ti-layout-grid:before{content:"\edba"}.ti-layout-grid-add:before{content:"\edb9"}.ti-layout-kanban:before{content:"\ec3f"}.ti-layout-list:before{content:"\ec14"}.ti-layout-navbar:before{content:"\ead7"}.ti-layout-navbar-collapse:before{content:"\f28d"}.ti-layout-navbar-expand:before{content:"\f28e"}.ti-layout-off:before{content:"\f151"}.ti-layout-rows:before{content:"\ead8"}.ti-layout-sidebar:before{content:"\eada"}.ti-layout-sidebar-left-collapse:before{content:"\f004"}.ti-layout-sidebar-left-expand:before{content:"\f005"}.ti-layout-sidebar-right:before{content:"\ead9"}.ti-layout-sidebar-right-collapse:before{content:"\f006"}.ti-layout-sidebar-right-expand:before{content:"\f007"}.ti-leaf:before{content:"\ed4f"}.ti-leaf-off:before{content:"\f400"}.ti-lego:before{content:"\eadc"}.ti-lego-off:before{content:"\f401"}.ti-lemon:before{content:"\ef10"}.ti-lemon-2:before{content:"\ef81"}.ti-letter-a:before{content:"\ec50"}.ti-letter-b:before{content:"\ec51"}.ti-letter-c:before{content:"\ec52"}.ti-letter-case:before{content:"\eea5"}.ti-letter-case-lower:before{content:"\eea2"}.ti-letter-case-toggle:before{content:"\eea3"}.ti-letter-case-upper:before{content:"\eea4"}.ti-letter-d:before{content:"\ec53"}.ti-letter-e:before{content:"\ec54"}.ti-letter-f:before{content:"\ec55"}.ti-letter-g:before{content:"\ec56"}.ti-letter-h:before{content:"\ec57"}.ti-letter-i:before{content:"\ec58"}.ti-letter-j:before{content:"\ec59"}.ti-letter-k:before{content:"\ec5a"}.ti-letter-l:before{content:"\ec5b"}.ti-letter-m:before{content:"\ec5c"}.ti-letter-n:before{content:"\ec5d"}.ti-letter-o:before{content:"\ec5e"}.ti-letter-p:before{content:"\ec5f"}.ti-letter-q:before{content:"\ec60"}.ti-letter-r:before{content:"\ec61"}.ti-letter-s:before{content:"\ec62"}.ti-letter-spacing:before{content:"\eea6"}.ti-letter-t:before{content:"\ec63"}.ti-letter-u:before{content:"\ec64"}.ti-letter-v:before{content:"\ec65"}.ti-letter-w:before{content:"\ec66"}.ti-letter-x:before{content:"\ec67"}.ti-letter-y:before{content:"\ec68"}.ti-letter-z:before{content:"\ec69"}.ti-license:before{content:"\ebc0"}.ti-license-off:before{content:"\f153"}.ti-lifebuoy:before{content:"\eadd"}.ti-lifebuoy-off:before{content:"\f154"}.ti-line:before{content:"\ec40"}.ti-line-dashed:before{content:"\eea7"}.ti-line-dotted:before{content:"\eea8"}.ti-line-height:before{content:"\eb94"}.ti-link:before{content:"\eade"}.ti-link-off:before{content:"\f402"}.ti-list:before{content:"\eb6b"}.ti-list-check:before{content:"\eb6a"}.ti-list-details:before{content:"\ef40"}.ti-list-numbers:before{content:"\ef11"}.ti-list-search:before{content:"\eea9"}.ti-live-photo:before{content:"\eadf"}.ti-live-photo-off:before{content:"\f403"}.ti-live-view:before{content:"\ec6b"}.ti-loader:before{content:"\eca3"}.ti-loader-2:before{content:"\f226"}.ti-loader-3:before{content:"\f513"}.ti-loader-quarter:before{content:"\eca2"}.ti-location:before{content:"\eae0"}.ti-location-broken:before{content:"\f2c4"}.ti-location-filled:before{content:"\f67f"}.ti-location-off:before{content:"\f155"}.ti-lock:before{content:"\eae2"}.ti-lock-access:before{content:"\eeaa"}.ti-lock-access-off:before{content:"\f404"}.ti-lock-off:before{content:"\ed1e"}.ti-lock-open:before{content:"\eae1"}.ti-lock-open-off:before{content:"\f156"}.ti-lock-square:before{content:"\ef51"}.ti-lock-square-rounded:before{content:"\f636"}.ti-logic-and:before{content:"\f240"}.ti-logic-buffer:before{content:"\f241"}.ti-logic-nand:before{content:"\f242"}.ti-logic-nor:before{content:"\f243"}.ti-logic-not:before{content:"\f244"}.ti-logic-or:before{content:"\f245"}.ti-logic-xnor:before{content:"\f246"}.ti-logic-xor:before{content:"\f247"}.ti-login:before{content:"\eba7"}.ti-logout:before{content:"\eba8"}.ti-lollipop:before{content:"\efcc"}.ti-lollipop-off:before{content:"\f157"}.ti-luggage:before{content:"\efad"}.ti-luggage-off:before{content:"\f158"}.ti-lungs:before{content:"\ef62"}.ti-lungs-off:before{content:"\f405"}.ti-macro:before{content:"\eeab"}.ti-macro-off:before{content:"\f406"}.ti-magnet:before{content:"\eae3"}.ti-magnet-off:before{content:"\f159"}.ti-mail:before{content:"\eae5"}.ti-mail-fast:before{content:"\f069"}.ti-mail-forward:before{content:"\eeac"}.ti-mail-off:before{content:"\f15a"}.ti-mail-opened:before{content:"\eae4"}.ti-mailbox:before{content:"\eead"}.ti-mailbox-off:before{content:"\f15b"}.ti-man:before{content:"\eae6"}.ti-manual-gearbox:before{content:"\ed7b"}.ti-map:before{content:"\eae9"}.ti-map-2:before{content:"\eae7"}.ti-map-off:before{content:"\f15c"}.ti-map-pin:before{content:"\eae8"}.ti-map-pin-filled:before{content:"\f680"}.ti-map-pin-off:before{content:"\ecf3"}.ti-map-pins:before{content:"\ed5e"}.ti-map-search:before{content:"\ef82"}.ti-markdown:before{content:"\ec41"}.ti-markdown-off:before{content:"\f407"}.ti-marquee:before{content:"\ec77"}.ti-marquee-2:before{content:"\eeae"}.ti-marquee-off:before{content:"\f15d"}.ti-mars:before{content:"\ec80"}.ti-mask:before{content:"\eeb0"}.ti-mask-off:before{content:"\eeaf"}.ti-masks-theater:before{content:"\f263"}.ti-masks-theater-off:before{content:"\f408"}.ti-massage:before{content:"\eeb1"}.ti-matchstick:before{content:"\f577"}.ti-math:before{content:"\ebeb"}.ti-math-1-divide-2:before{content:"\f4e2"}.ti-math-1-divide-3:before{content:"\f4e3"}.ti-math-avg:before{content:"\f0f4"}.ti-math-equal-greater:before{content:"\f4e4"}.ti-math-equal-lower:before{content:"\f4e5"}.ti-math-function:before{content:"\eeb2"}.ti-math-function-off:before{content:"\f15e"}.ti-math-function-y:before{content:"\f4e6"}.ti-math-greater:before{content:"\f4e7"}.ti-math-integral:before{content:"\f4e9"}.ti-math-integral-x:before{content:"\f4e8"}.ti-math-integrals:before{content:"\f4ea"}.ti-math-lower:before{content:"\f4eb"}.ti-math-max:before{content:"\f0f5"}.ti-math-min:before{content:"\f0f6"}.ti-math-not:before{content:"\f4ec"}.ti-math-off:before{content:"\f409"}.ti-math-pi:before{content:"\f4ee"}.ti-math-pi-divide-2:before{content:"\f4ed"}.ti-math-symbols:before{content:"\eeb3"}.ti-math-x-divide-2:before{content:"\f4ef"}.ti-math-x-divide-y:before{content:"\f4f1"}.ti-math-x-divide-y-2:before{content:"\f4f0"}.ti-math-x-minus-x:before{content:"\f4f2"}.ti-math-x-minus-y:before{content:"\f4f3"}.ti-math-x-plus-x:before{content:"\f4f4"}.ti-math-x-plus-y:before{content:"\f4f5"}.ti-math-xy:before{content:"\f4f6"}.ti-math-y-minus-y:before{content:"\f4f7"}.ti-math-y-plus-y:before{content:"\f4f8"}.ti-maximize:before{content:"\eaea"}.ti-maximize-off:before{content:"\f15f"}.ti-meat:before{content:"\ef12"}.ti-meat-off:before{content:"\f40a"}.ti-medal:before{content:"\ec78"}.ti-medal-2:before{content:"\efcd"}.ti-medical-cross:before{content:"\ec2f"}.ti-medical-cross-filled:before{content:"\f681"}.ti-medical-cross-off:before{content:"\f160"}.ti-medicine-syrup:before{content:"\ef63"}.ti-meeple:before{content:"\f514"}.ti-menorah:before{content:"\f58c"}.ti-menu:before{content:"\eaeb"}.ti-menu-2:before{content:"\ec42"}.ti-menu-order:before{content:"\f5f5"}.ti-message:before{content:"\eaef"}.ti-message-2:before{content:"\eaec"}.ti-message-2-code:before{content:"\f012"}.ti-message-2-off:before{content:"\f40b"}.ti-message-2-share:before{content:"\f077"}.ti-message-chatbot:before{content:"\f38a"}.ti-message-circle:before{content:"\eaed"}.ti-message-circle-2:before{content:"\ed3f"}.ti-message-circle-2-filled:before{content:"\f682"}.ti-message-circle-off:before{content:"\ed40"}.ti-message-code:before{content:"\f013"}.ti-message-dots:before{content:"\eaee"}.ti-message-forward:before{content:"\f28f"}.ti-message-language:before{content:"\efae"}.ti-message-off:before{content:"\ed41"}.ti-message-plus:before{content:"\ec9a"}.ti-message-report:before{content:"\ec9b"}.ti-message-share:before{content:"\f078"}.ti-messages:before{content:"\eb6c"}.ti-messages-off:before{content:"\ed42"}.ti-meteor:before{content:"\f1fd"}.ti-meteor-off:before{content:"\f40c"}.ti-mickey:before{content:"\f2a3"}.ti-mickey-filled:before{content:"\f683"}.ti-microphone:before{content:"\eaf0"}.ti-microphone-2:before{content:"\ef2c"}.ti-microphone-2-off:before{content:"\f40d"}.ti-microphone-off:before{content:"\ed16"}.ti-microscope:before{content:"\ef64"}.ti-microscope-off:before{content:"\f40e"}.ti-microwave:before{content:"\f248"}.ti-microwave-off:before{content:"\f264"}.ti-military-award:before{content:"\f079"}.ti-military-rank:before{content:"\efcf"}.ti-milk:before{content:"\ef13"}.ti-milk-off:before{content:"\f40f"}.ti-milkshake:before{content:"\f4c8"}.ti-minimize:before{content:"\eaf1"}.ti-minus:before{content:"\eaf2"}.ti-minus-vertical:before{content:"\eeb4"}.ti-mist:before{content:"\ec30"}.ti-mist-off:before{content:"\f410"}.ti-moneybag:before{content:"\f506"}.ti-mood-angry:before{content:"\f2de"}.ti-mood-annoyed:before{content:"\f2e0"}.ti-mood-annoyed-2:before{content:"\f2df"}.ti-mood-boy:before{content:"\ed2d"}.ti-mood-confuzed:before{content:"\eaf3"}.ti-mood-crazy-happy:before{content:"\ed90"}.ti-mood-cry:before{content:"\ecbb"}.ti-mood-empty:before{content:"\eeb5"}.ti-mood-happy:before{content:"\eaf4"}.ti-mood-kid:before{content:"\ec03"}.ti-mood-look-left:before{content:"\f2c5"}.ti-mood-look-right:before{content:"\f2c6"}.ti-mood-nerd:before{content:"\f2e1"}.ti-mood-nervous:before{content:"\ef96"}.ti-mood-neutral:before{content:"\eaf5"}.ti-mood-off:before{content:"\f161"}.ti-mood-sad:before{content:"\eaf6"}.ti-mood-sad-2:before{content:"\f2e2"}.ti-mood-sad-dizzy:before{content:"\f2e3"}.ti-mood-sad-squint:before{content:"\f2e4"}.ti-mood-sick:before{content:"\f2e5"}.ti-mood-silence:before{content:"\f2e6"}.ti-mood-sing:before{content:"\f2c7"}.ti-mood-smile:before{content:"\eaf7"}.ti-mood-smile-beam:before{content:"\f2e7"}.ti-mood-smile-dizzy:before{content:"\f2e8"}.ti-mood-suprised:before{content:"\ec04"}.ti-mood-tongue:before{content:"\eb95"}.ti-mood-tongue-wink:before{content:"\f2ea"}.ti-mood-tongue-wink-2:before{content:"\f2e9"}.ti-mood-unamused:before{content:"\f2eb"}.ti-mood-wink:before{content:"\f2ed"}.ti-mood-wink-2:before{content:"\f2ec"}.ti-mood-wrrr:before{content:"\f2ee"}.ti-mood-xd:before{content:"\f2ef"}.ti-moon:before{content:"\eaf8"}.ti-moon-2:before{content:"\ece6"}.ti-moon-filled:before{content:"\f684"}.ti-moon-off:before{content:"\f162"}.ti-moon-stars:before{content:"\ece7"}.ti-moped:before{content:"\ecbc"}.ti-motorbike:before{content:"\eeb6"}.ti-mountain:before{content:"\ef97"}.ti-mountain-off:before{content:"\f411"}.ti-mouse:before{content:"\eaf9"}.ti-mouse-2:before{content:"\f1d7"}.ti-mouse-off:before{content:"\f163"}.ti-moustache:before{content:"\f4c9"}.ti-movie:before{content:"\eafa"}.ti-movie-off:before{content:"\f164"}.ti-mug:before{content:"\eafb"}.ti-mug-off:before{content:"\f165"}.ti-multiplier-0-5x:before{content:"\ef41"}.ti-multiplier-1-5x:before{content:"\ef42"}.ti-multiplier-1x:before{content:"\ef43"}.ti-multiplier-2x:before{content:"\ef44"}.ti-mushroom:before{content:"\ef14"}.ti-mushroom-off:before{content:"\f412"}.ti-music:before{content:"\eafc"}.ti-music-off:before{content:"\f166"}.ti-navigation:before{content:"\f2c8"}.ti-navigation-filled:before{content:"\f685"}.ti-navigation-off:before{content:"\f413"}.ti-needle:before{content:"\f508"}.ti-needle-thread:before{content:"\f507"}.ti-network:before{content:"\f09f"}.ti-network-off:before{content:"\f414"}.ti-new-section:before{content:"\ebc1"}.ti-news:before{content:"\eafd"}.ti-news-off:before{content:"\f167"}.ti-nfc:before{content:"\eeb7"}.ti-nfc-off:before{content:"\f168"}.ti-no-copyright:before{content:"\efb9"}.ti-no-creative-commons:before{content:"\efba"}.ti-no-derivatives:before{content:"\efbb"}.ti-north-star:before{content:"\f014"}.ti-note:before{content:"\eb6d"}.ti-note-off:before{content:"\f169"}.ti-notebook:before{content:"\eb96"}.ti-notebook-off:before{content:"\f415"}.ti-notes:before{content:"\eb6e"}.ti-notes-off:before{content:"\f16a"}.ti-notification:before{content:"\eafe"}.ti-notification-off:before{content:"\f16b"}.ti-number:before{content:"\f1fe"}.ti-number-0:before{content:"\edf0"}.ti-number-1:before{content:"\edf1"}.ti-number-2:before{content:"\edf2"}.ti-number-3:before{content:"\edf3"}.ti-number-4:before{content:"\edf4"}.ti-number-5:before{content:"\edf5"}.ti-number-6:before{content:"\edf6"}.ti-number-7:before{content:"\edf7"}.ti-number-8:before{content:"\edf8"}.ti-number-9:before{content:"\edf9"}.ti-numbers:before{content:"\f015"}.ti-nurse:before{content:"\ef65"}.ti-octagon:before{content:"\ecbd"}.ti-octagon-filled:before{content:"\f686"}.ti-octagon-off:before{content:"\eeb8"}.ti-old:before{content:"\eeb9"}.ti-olympics:before{content:"\eeba"}.ti-olympics-off:before{content:"\f416"}.ti-om:before{content:"\f58d"}.ti-omega:before{content:"\eb97"}.ti-outbound:before{content:"\f249"}.ti-outlet:before{content:"\ebd7"}.ti-oval:before{content:"\f02e"}.ti-oval-filled:before{content:"\f687"}.ti-oval-vertical:before{content:"\f02d"}.ti-oval-vertical-filled:before{content:"\f688"}.ti-overline:before{content:"\eebb"}.ti-package:before{content:"\eaff"}.ti-package-off:before{content:"\f16c"}.ti-packages:before{content:"\f2c9"}.ti-packge-export:before{content:"\f07a"}.ti-packge-import:before{content:"\f07b"}.ti-pacman:before{content:"\eebc"}.ti-page-break:before{content:"\ec81"}.ti-paint:before{content:"\eb00"}.ti-paint-off:before{content:"\f16d"}.ti-palette:before{content:"\eb01"}.ti-palette-off:before{content:"\f16e"}.ti-panorama-horizontal:before{content:"\ed33"}.ti-panorama-horizontal-off:before{content:"\f417"}.ti-panorama-vertical:before{content:"\ed34"}.ti-panorama-vertical-off:before{content:"\f418"}.ti-paper-bag:before{content:"\f02f"}.ti-paper-bag-off:before{content:"\f16f"}.ti-paperclip:before{content:"\eb02"}.ti-parachute:before{content:"\ed7c"}.ti-parachute-off:before{content:"\f170"}.ti-parentheses:before{content:"\ebd8"}.ti-parentheses-off:before{content:"\f171"}.ti-parking:before{content:"\eb03"}.ti-parking-off:before{content:"\f172"}.ti-password:before{content:"\f4ca"}.ti-paw:before{content:"\eff9"}.ti-paw-filled:before{content:"\f689"}.ti-paw-off:before{content:"\f419"}.ti-peace:before{content:"\ecbe"}.ti-pencil:before{content:"\eb04"}.ti-pencil-minus:before{content:"\f1eb"}.ti-pencil-off:before{content:"\f173"}.ti-pencil-plus:before{content:"\f1ec"}.ti-pennant:before{content:"\ed7d"}.ti-pennant-2:before{content:"\f06a"}.ti-pennant-2-filled:before{content:"\f68a"}.ti-pennant-filled:before{content:"\f68b"}.ti-pennant-off:before{content:"\f174"}.ti-pentagon:before{content:"\efe3"}.ti-pentagon-filled:before{content:"\f68c"}.ti-pentagon-off:before{content:"\f41a"}.ti-pentagram:before{content:"\f586"}.ti-pepper:before{content:"\ef15"}.ti-pepper-off:before{content:"\f175"}.ti-percentage:before{content:"\ecf4"}.ti-perfume:before{content:"\f509"}.ti-perspective:before{content:"\eebd"}.ti-perspective-off:before{content:"\f176"}.ti-phone:before{content:"\eb09"}.ti-phone-call:before{content:"\eb05"}.ti-phone-calling:before{content:"\ec43"}.ti-phone-check:before{content:"\ec05"}.ti-phone-incoming:before{content:"\eb06"}.ti-phone-off:before{content:"\ecf5"}.ti-phone-outgoing:before{content:"\eb07"}.ti-phone-pause:before{content:"\eb08"}.ti-phone-plus:before{content:"\ec06"}.ti-phone-x:before{content:"\ec07"}.ti-photo:before{content:"\eb0a"}.ti-photo-cancel:before{content:"\f35d"}.ti-photo-check:before{content:"\f35e"}.ti-photo-down:before{content:"\f35f"}.ti-photo-edit:before{content:"\f360"}.ti-photo-heart:before{content:"\f361"}.ti-photo-minus:before{content:"\f362"}.ti-photo-off:before{content:"\ecf6"}.ti-photo-plus:before{content:"\f363"}.ti-photo-search:before{content:"\f364"}.ti-photo-shield:before{content:"\f365"}.ti-photo-star:before{content:"\f366"}.ti-photo-up:before{content:"\f38b"}.ti-photo-x:before{content:"\f367"}.ti-physotherapist:before{content:"\eebe"}.ti-picture-in-picture:before{content:"\ed35"}.ti-picture-in-picture-off:before{content:"\ed43"}.ti-picture-in-picture-on:before{content:"\ed44"}.ti-picture-in-picture-top:before{content:"\efe4"}.ti-pig:before{content:"\ef52"}.ti-pig-money:before{content:"\f38c"}.ti-pig-off:before{content:"\f177"}.ti-pilcrow:before{content:"\f5f6"}.ti-pill:before{content:"\ec44"}.ti-pill-off:before{content:"\f178"}.ti-pills:before{content:"\ef66"}.ti-pin:before{content:"\ec9c"}.ti-pin-filled:before{content:"\f68d"}.ti-ping-pong:before{content:"\f38d"}.ti-pinned:before{content:"\ed60"}.ti-pinned-filled:before{content:"\f68e"}.ti-pinned-off:before{content:"\ed5f"}.ti-pizza:before{content:"\edbb"}.ti-pizza-off:before{content:"\f179"}.ti-placeholder:before{content:"\f626"}.ti-plane:before{content:"\eb6f"}.ti-plane-arrival:before{content:"\eb99"}.ti-plane-departure:before{content:"\eb9a"}.ti-plane-inflight:before{content:"\ef98"}.ti-plane-off:before{content:"\f17a"}.ti-plane-tilt:before{content:"\f1ed"}.ti-planet:before{content:"\ec08"}.ti-planet-off:before{content:"\f17b"}.ti-plant:before{content:"\ed50"}.ti-plant-2:before{content:"\ed7e"}.ti-plant-2-off:before{content:"\f17c"}.ti-plant-off:before{content:"\f17d"}.ti-play-card:before{content:"\eebf"}.ti-play-card-off:before{content:"\f17e"}.ti-player-eject:before{content:"\efbc"}.ti-player-eject-filled:before{content:"\f68f"}.ti-player-pause:before{content:"\ed45"}.ti-player-pause-filled:before{content:"\f690"}.ti-player-play:before{content:"\ed46"}.ti-player-play-filled:before{content:"\f691"}.ti-player-record:before{content:"\ed47"}.ti-player-record-filled:before{content:"\f692"}.ti-player-skip-back:before{content:"\ed48"}.ti-player-skip-back-filled:before{content:"\f693"}.ti-player-skip-forward:before{content:"\ed49"}.ti-player-skip-forward-filled:before{content:"\f694"}.ti-player-stop:before{content:"\ed4a"}.ti-player-stop-filled:before{content:"\f695"}.ti-player-track-next:before{content:"\ed4b"}.ti-player-track-next-filled:before{content:"\f696"}.ti-player-track-prev:before{content:"\ed4c"}.ti-player-track-prev-filled:before{content:"\f697"}.ti-playlist:before{content:"\eec0"}.ti-playlist-add:before{content:"\f008"}.ti-playlist-off:before{content:"\f17f"}.ti-playlist-x:before{content:"\f009"}.ti-playstation-circle:before{content:"\f2ad"}.ti-playstation-square:before{content:"\f2ae"}.ti-playstation-triangle:before{content:"\f2af"}.ti-playstation-x:before{content:"\f2b0"}.ti-plug:before{content:"\ebd9"}.ti-plug-connected:before{content:"\f00a"}.ti-plug-connected-x:before{content:"\f0a0"}.ti-plug-off:before{content:"\f180"}.ti-plug-x:before{content:"\f0a1"}.ti-plus:before{content:"\eb0b"}.ti-png:before{content:"\f3ad"}.ti-podium:before{content:"\f1d8"}.ti-podium-off:before{content:"\f41b"}.ti-point:before{content:"\eb0c"}.ti-point-filled:before{content:"\f698"}.ti-point-off:before{content:"\f181"}.ti-pointer:before{content:"\f265"}.ti-pokeball:before{content:"\eec1"}.ti-pokeball-off:before{content:"\f41c"}.ti-poker-chip:before{content:"\f515"}.ti-polaroid:before{content:"\eec2"}.ti-polygon:before{content:"\efd0"}.ti-polygon-off:before{content:"\f182"}.ti-poo:before{content:"\f258"}.ti-pool:before{content:"\ed91"}.ti-pool-off:before{content:"\f41d"}.ti-power:before{content:"\eb0d"}.ti-pray:before{content:"\ecbf"}.ti-premium-rights:before{content:"\efbd"}.ti-prescription:before{content:"\ef99"}.ti-presentation:before{content:"\eb70"}.ti-presentation-analytics:before{content:"\eec3"}.ti-presentation-off:before{content:"\f183"}.ti-printer:before{content:"\eb0e"}.ti-printer-off:before{content:"\f184"}.ti-prison:before{content:"\ef79"}.ti-prompt:before{content:"\eb0f"}.ti-propeller:before{content:"\eec4"}.ti-propeller-off:before{content:"\f185"}.ti-pumpkin-scary:before{content:"\f587"}.ti-puzzle:before{content:"\eb10"}.ti-puzzle-2:before{content:"\ef83"}.ti-puzzle-filled:before{content:"\f699"}.ti-puzzle-off:before{content:"\f186"}.ti-pyramid:before{content:"\eec5"}.ti-pyramid-off:before{content:"\f187"}.ti-qrcode:before{content:"\eb11"}.ti-qrcode-off:before{content:"\f41e"}.ti-question-circle:before{content:"\f637"}.ti-question-mark:before{content:"\ec9d"}.ti-quote:before{content:"\efbe"}.ti-quote-off:before{content:"\f188"}.ti-radar:before{content:"\f017"}.ti-radar-2:before{content:"\f016"}.ti-radar-off:before{content:"\f41f"}.ti-radio:before{content:"\ef2d"}.ti-radio-off:before{content:"\f420"}.ti-radioactive:before{content:"\ecc0"}.ti-radioactive-off:before{content:"\f189"}.ti-radius-bottom-left:before{content:"\eec6"}.ti-radius-bottom-right:before{content:"\eec7"}.ti-radius-top-left:before{content:"\eec8"}.ti-radius-top-right:before{content:"\eec9"}.ti-rainbow:before{content:"\edbc"}.ti-rainbow-off:before{content:"\f18a"}.ti-rating-12-plus:before{content:"\f266"}.ti-rating-14-plus:before{content:"\f267"}.ti-rating-16-plus:before{content:"\f268"}.ti-rating-18-plus:before{content:"\f269"}.ti-rating-21-plus:before{content:"\f26a"}.ti-razor:before{content:"\f4b5"}.ti-razor-electric:before{content:"\f4b4"}.ti-receipt:before{content:"\edfd"}.ti-receipt-2:before{content:"\edfa"}.ti-receipt-off:before{content:"\edfb"}.ti-receipt-refund:before{content:"\edfc"}.ti-receipt-tax:before{content:"\edbd"}.ti-recharging:before{content:"\eeca"}.ti-record-mail:before{content:"\eb12"}.ti-record-mail-off:before{content:"\f18b"}.ti-rectangle:before{content:"\ed37"}.ti-rectangle-filled:before{content:"\f69a"}.ti-rectangle-vertical:before{content:"\ed36"}.ti-rectangle-vertical-filled:before{content:"\f69b"}.ti-recycle:before{content:"\eb9b"}.ti-recycle-off:before{content:"\f18c"}.ti-refresh:before{content:"\eb13"}.ti-refresh-alert:before{content:"\ed57"}.ti-refresh-dot:before{content:"\efbf"}.ti-refresh-off:before{content:"\f18d"}.ti-regex:before{content:"\f31f"}.ti-regex-off:before{content:"\f421"}.ti-registered:before{content:"\eb14"}.ti-relation-many-to-many:before{content:"\ed7f"}.ti-relation-one-to-many:before{content:"\ed80"}.ti-relation-one-to-one:before{content:"\ed81"}.ti-reload:before{content:"\f3ae"}.ti-repeat:before{content:"\eb72"}.ti-repeat-off:before{content:"\f18e"}.ti-repeat-once:before{content:"\eb71"}.ti-replace:before{content:"\ebc7"}.ti-replace-filled:before{content:"\f69c"}.ti-replace-off:before{content:"\f422"}.ti-report:before{content:"\eece"}.ti-report-analytics:before{content:"\eecb"}.ti-report-medical:before{content:"\eecc"}.ti-report-money:before{content:"\eecd"}.ti-report-off:before{content:"\f18f"}.ti-report-search:before{content:"\ef84"}.ti-resize:before{content:"\eecf"}.ti-ribbon-health:before{content:"\f58e"}.ti-ripple:before{content:"\ed82"}.ti-ripple-off:before{content:"\f190"}.ti-road:before{content:"\f018"}.ti-road-off:before{content:"\f191"}.ti-road-sign:before{content:"\ecdd"}.ti-robot:before{content:"\f00b"}.ti-robot-off:before{content:"\f192"}.ti-rocket:before{content:"\ec45"}.ti-rocket-off:before{content:"\f193"}.ti-roller-skating:before{content:"\efd1"}.ti-rollercoaster:before{content:"\f0a2"}.ti-rollercoaster-off:before{content:"\f423"}.ti-rosette:before{content:"\f599"}.ti-rosette-filled:before{content:"\f69d"}.ti-rosette-number-0:before{content:"\f58f"}.ti-rosette-number-1:before{content:"\f590"}.ti-rosette-number-2:before{content:"\f591"}.ti-rosette-number-3:before{content:"\f592"}.ti-rosette-number-4:before{content:"\f593"}.ti-rosette-number-5:before{content:"\f594"}.ti-rosette-number-6:before{content:"\f595"}.ti-rosette-number-7:before{content:"\f596"}.ti-rosette-number-8:before{content:"\f597"}.ti-rosette-number-9:before{content:"\f598"}.ti-rotate:before{content:"\eb16"}.ti-rotate-2:before{content:"\ebb4"}.ti-rotate-360:before{content:"\ef85"}.ti-rotate-clockwise:before{content:"\eb15"}.ti-rotate-clockwise-2:before{content:"\ebb5"}.ti-rotate-dot:before{content:"\efe5"}.ti-rotate-rectangle:before{content:"\ec15"}.ti-route:before{content:"\eb17"}.ti-route-2:before{content:"\f4b6"}.ti-route-off:before{content:"\f194"}.ti-router:before{content:"\eb18"}.ti-router-off:before{content:"\f424"}.ti-row-insert-bottom:before{content:"\eed0"}.ti-row-insert-top:before{content:"\eed1"}.ti-rss:before{content:"\eb19"}.ti-rubber-stamp:before{content:"\f5ab"}.ti-rubber-stamp-off:before{content:"\f5aa"}.ti-ruler:before{content:"\eb1a"}.ti-ruler-2:before{content:"\eed2"}.ti-ruler-2-off:before{content:"\f195"}.ti-ruler-3:before{content:"\f290"}.ti-ruler-measure:before{content:"\f291"}.ti-ruler-off:before{content:"\f196"}.ti-run:before{content:"\ec82"}.ti-s-turn-down:before{content:"\f516"}.ti-s-turn-left:before{content:"\f517"}.ti-s-turn-right:before{content:"\f518"}.ti-s-turn-up:before{content:"\f519"}.ti-sailboat:before{content:"\ec83"}.ti-sailboat-2:before{content:"\f5f7"}.ti-sailboat-off:before{content:"\f425"}.ti-salad:before{content:"\f50a"}.ti-salt:before{content:"\ef16"}.ti-satellite:before{content:"\eed3"}.ti-satellite-off:before{content:"\f197"}.ti-sausage:before{content:"\ef17"}.ti-scale:before{content:"\ebc2"}.ti-scale-off:before{content:"\f198"}.ti-scale-outline:before{content:"\ef53"}.ti-scale-outline-off:before{content:"\f199"}.ti-scan:before{content:"\ebc8"}.ti-scan-eye:before{content:"\f1ff"}.ti-schema:before{content:"\f200"}.ti-schema-off:before{content:"\f426"}.ti-school:before{content:"\ecf7"}.ti-school-bell:before{content:"\f64a"}.ti-school-off:before{content:"\f19a"}.ti-scissors:before{content:"\eb1b"}.ti-scissors-off:before{content:"\f19b"}.ti-scooter:before{content:"\ec6c"}.ti-scooter-electric:before{content:"\ecc1"}.ti-screen-share:before{content:"\ed18"}.ti-screen-share-off:before{content:"\ed17"}.ti-screenshot:before{content:"\f201"}.ti-scribble:before{content:"\f0a3"}.ti-scribble-off:before{content:"\f427"}.ti-script:before{content:"\f2da"}.ti-script-minus:before{content:"\f2d7"}.ti-script-plus:before{content:"\f2d8"}.ti-script-x:before{content:"\f2d9"}.ti-scuba-mask:before{content:"\eed4"}.ti-scuba-mask-off:before{content:"\f428"}.ti-sdk:before{content:"\f3af"}.ti-search:before{content:"\eb1c"}.ti-search-off:before{content:"\f19c"}.ti-section:before{content:"\eed5"}.ti-section-sign:before{content:"\f019"}.ti-seeding:before{content:"\ed51"}.ti-seeding-off:before{content:"\f19d"}.ti-select:before{content:"\ec9e"}.ti-selector:before{content:"\eb1d"}.ti-send:before{content:"\eb1e"}.ti-send-off:before{content:"\f429"}.ti-seo:before{content:"\f26b"}.ti-separator:before{content:"\ebda"}.ti-separator-horizontal:before{content:"\ec79"}.ti-separator-vertical:before{content:"\ec7a"}.ti-server:before{content:"\eb1f"}.ti-server-2:before{content:"\f07c"}.ti-server-bolt:before{content:"\f320"}.ti-server-cog:before{content:"\f321"}.ti-server-off:before{content:"\f19e"}.ti-servicemark:before{content:"\ec09"}.ti-settings:before{content:"\eb20"}.ti-settings-2:before{content:"\f5ac"}.ti-settings-automation:before{content:"\eed6"}.ti-settings-filled:before{content:"\f69e"}.ti-settings-off:before{content:"\f19f"}.ti-shadow:before{content:"\eed8"}.ti-shadow-off:before{content:"\eed7"}.ti-shape:before{content:"\eb9c"}.ti-shape-2:before{content:"\eed9"}.ti-shape-3:before{content:"\eeda"}.ti-shape-off:before{content:"\f1a0"}.ti-share:before{content:"\eb21"}.ti-share-off:before{content:"\f1a1"}.ti-shield:before{content:"\eb24"}.ti-shield-check:before{content:"\eb22"}.ti-shield-checkered:before{content:"\ef9a"}.ti-shield-chevron:before{content:"\ef9b"}.ti-shield-filled:before{content:"\f69f"}.ti-shield-half:before{content:"\f358"}.ti-shield-half-filled:before{content:"\f357"}.ti-shield-lock:before{content:"\ed58"}.ti-shield-off:before{content:"\ecf8"}.ti-shield-x:before{content:"\eb23"}.ti-ship:before{content:"\ec84"}.ti-ship-off:before{content:"\f42a"}.ti-shirt:before{content:"\ec0a"}.ti-shirt-filled:before{content:"\f6a0"}.ti-shirt-off:before{content:"\f1a2"}.ti-shirt-sport:before{content:"\f26c"}.ti-shoe:before{content:"\efd2"}.ti-shoe-off:before{content:"\f1a4"}.ti-shopping-bag:before{content:"\f5f8"}.ti-shopping-cart:before{content:"\eb25"}.ti-shopping-cart-discount:before{content:"\eedb"}.ti-shopping-cart-off:before{content:"\eedc"}.ti-shopping-cart-plus:before{content:"\eedd"}.ti-shopping-cart-x:before{content:"\eede"}.ti-shovel:before{content:"\f1d9"}.ti-shredder:before{content:"\eedf"}.ti-sign-left:before{content:"\f06b"}.ti-sign-left-filled:before{content:"\f6a1"}.ti-sign-right:before{content:"\f06c"}.ti-sign-right-filled:before{content:"\f6a2"}.ti-signal-3g:before{content:"\f1ee"}.ti-signal-4g:before{content:"\f1ef"}.ti-signal-4g-plus:before{content:"\f259"}.ti-signal-5g:before{content:"\f1f0"}.ti-signature:before{content:"\eee0"}.ti-signature-off:before{content:"\f1a5"}.ti-sitemap:before{content:"\eb9d"}.ti-sitemap-off:before{content:"\f1a6"}.ti-skateboard:before{content:"\ecc2"}.ti-skateboard-off:before{content:"\f42b"}.ti-skull:before{content:"\f292"}.ti-slash:before{content:"\f4f9"}.ti-slashes:before{content:"\f588"}.ti-sleigh:before{content:"\ef9c"}.ti-slice:before{content:"\ebdb"}.ti-slideshow:before{content:"\ebc9"}.ti-smart-home:before{content:"\ecde"}.ti-smart-home-off:before{content:"\f1a7"}.ti-smoking:before{content:"\ecc4"}.ti-smoking-no:before{content:"\ecc3"}.ti-snowflake:before{content:"\ec0b"}.ti-snowflake-off:before{content:"\f1a8"}.ti-snowman:before{content:"\f26d"}.ti-soccer-field:before{content:"\ed92"}.ti-social:before{content:"\ebec"}.ti-social-off:before{content:"\f1a9"}.ti-sock:before{content:"\eee1"}.ti-sofa:before{content:"\efaf"}.ti-sofa-off:before{content:"\f42c"}.ti-sort-0-9:before{content:"\f54d"}.ti-sort-9-0:before{content:"\f54e"}.ti-sort-a-z:before{content:"\f54f"}.ti-sort-ascending:before{content:"\eb26"}.ti-sort-ascending-2:before{content:"\eee2"}.ti-sort-ascending-letters:before{content:"\ef18"}.ti-sort-ascending-numbers:before{content:"\ef19"}.ti-sort-descending:before{content:"\eb27"}.ti-sort-descending-2:before{content:"\eee3"}.ti-sort-descending-letters:before{content:"\ef1a"}.ti-sort-descending-numbers:before{content:"\ef1b"}.ti-sort-z-a:before{content:"\f550"}.ti-sos:before{content:"\f24a"}.ti-soup:before{content:"\ef2e"}.ti-soup-off:before{content:"\f42d"}.ti-source-code:before{content:"\f4a2"}.ti-space:before{content:"\ec0c"}.ti-space-off:before{content:"\f1aa"}.ti-spacing-horizontal:before{content:"\ef54"}.ti-spacing-vertical:before{content:"\ef55"}.ti-spade:before{content:"\effa"}.ti-spade-filled:before{content:"\f6a3"}.ti-speakerphone:before{content:"\ed61"}.ti-speedboat:before{content:"\ed93"}.ti-spider:before{content:"\f293"}.ti-spiral:before{content:"\f294"}.ti-spiral-off:before{content:"\f42e"}.ti-sport-billard:before{content:"\eee4"}.ti-spray:before{content:"\f50b"}.ti-spy:before{content:"\f227"}.ti-spy-off:before{content:"\f42f"}.ti-square:before{content:"\eb2c"}.ti-square-arrow-down:before{content:"\f4b7"}.ti-square-arrow-left:before{content:"\f4b8"}.ti-square-arrow-right:before{content:"\f4b9"}.ti-square-arrow-up:before{content:"\f4ba"}.ti-square-asterisk:before{content:"\f01a"}.ti-square-check:before{content:"\eb28"}.ti-square-chevron-down:before{content:"\f627"}.ti-square-chevron-left:before{content:"\f628"}.ti-square-chevron-right:before{content:"\f629"}.ti-square-chevron-up:before{content:"\f62a"}.ti-square-chevrons-down:before{content:"\f64b"}.ti-square-chevrons-left:before{content:"\f64c"}.ti-square-chevrons-right:before{content:"\f64d"}.ti-square-chevrons-up:before{content:"\f64e"}.ti-square-dot:before{content:"\ed59"}.ti-square-f0:before{content:"\f526"}.ti-square-f1:before{content:"\f527"}.ti-square-f2:before{content:"\f528"}.ti-square-f3:before{content:"\f529"}.ti-square-f4:before{content:"\f52a"}.ti-square-f5:before{content:"\f52b"}.ti-square-f6:before{content:"\f52c"}.ti-square-f7:before{content:"\f52d"}.ti-square-f8:before{content:"\f52e"}.ti-square-f9:before{content:"\f52f"}.ti-square-forbid:before{content:"\ed5b"}.ti-square-forbid-2:before{content:"\ed5a"}.ti-square-half:before{content:"\effb"}.ti-square-key:before{content:"\f638"}.ti-square-letter-a:before{content:"\f47c"}.ti-square-letter-b:before{content:"\f47d"}.ti-square-letter-c:before{content:"\f47e"}.ti-square-letter-d:before{content:"\f47f"}.ti-square-letter-e:before{content:"\f480"}.ti-square-letter-f:before{content:"\f481"}.ti-square-letter-g:before{content:"\f482"}.ti-square-letter-h:before{content:"\f483"}.ti-square-letter-i:before{content:"\f484"}.ti-square-letter-j:before{content:"\f485"}.ti-square-letter-k:before{content:"\f486"}.ti-square-letter-l:before{content:"\f487"}.ti-square-letter-m:before{content:"\f488"}.ti-square-letter-n:before{content:"\f489"}.ti-square-letter-o:before{content:"\f48a"}.ti-square-letter-p:before{content:"\f48b"}.ti-square-letter-q:before{content:"\f48c"}.ti-square-letter-r:before{content:"\f48d"}.ti-square-letter-s:before{content:"\f48e"}.ti-square-letter-t:before{content:"\f48f"}.ti-square-letter-u:before{content:"\f490"}.ti-square-letter-v:before{content:"\f4bb"}.ti-square-letter-w:before{content:"\f491"}.ti-square-letter-x:before{content:"\f4bc"}.ti-square-letter-y:before{content:"\f492"}.ti-square-letter-z:before{content:"\f493"}.ti-square-minus:before{content:"\eb29"}.ti-square-number-0:before{content:"\eee5"}.ti-square-number-1:before{content:"\eee6"}.ti-square-number-2:before{content:"\eee7"}.ti-square-number-3:before{content:"\eee8"}.ti-square-number-4:before{content:"\eee9"}.ti-square-number-5:before{content:"\eeea"}.ti-square-number-6:before{content:"\eeeb"}.ti-square-number-7:before{content:"\eeec"}.ti-square-number-8:before{content:"\eeed"}.ti-square-number-9:before{content:"\eeee"}.ti-square-off:before{content:"\eeef"}.ti-square-plus:before{content:"\eb2a"}.ti-square-root:before{content:"\eef1"}.ti-square-root-2:before{content:"\eef0"}.ti-square-rotated:before{content:"\ecdf"}.ti-square-rotated-filled:before{content:"\f6a4"}.ti-square-rotated-forbid:before{content:"\f01c"}.ti-square-rotated-forbid-2:before{content:"\f01b"}.ti-square-rotated-off:before{content:"\eef2"}.ti-square-rounded:before{content:"\f59a"}.ti-square-rounded-arrow-down:before{content:"\f639"}.ti-square-rounded-arrow-left:before{content:"\f63a"}.ti-square-rounded-arrow-right:before{content:"\f63b"}.ti-square-rounded-arrow-up:before{content:"\f63c"}.ti-square-rounded-check:before{content:"\f63d"}.ti-square-rounded-chevron-down:before{content:"\f62b"}.ti-square-rounded-chevron-left:before{content:"\f62c"}.ti-square-rounded-chevron-right:before{content:"\f62d"}.ti-square-rounded-chevron-up:before{content:"\f62e"}.ti-square-rounded-chevrons-down:before{content:"\f64f"}.ti-square-rounded-chevrons-left:before{content:"\f650"}.ti-square-rounded-chevrons-right:before{content:"\f651"}.ti-square-rounded-chevrons-up:before{content:"\f652"}.ti-square-rounded-filled:before{content:"\f6a5"}.ti-square-rounded-letter-a:before{content:"\f5ae"}.ti-square-rounded-letter-b:before{content:"\f5af"}.ti-square-rounded-letter-c:before{content:"\f5b0"}.ti-square-rounded-letter-d:before{content:"\f5b1"}.ti-square-rounded-letter-e:before{content:"\f5b2"}.ti-square-rounded-letter-f:before{content:"\f5b3"}.ti-square-rounded-letter-g:before{content:"\f5b4"}.ti-square-rounded-letter-h:before{content:"\f5b5"}.ti-square-rounded-letter-i:before{content:"\f5b6"}.ti-square-rounded-letter-j:before{content:"\f5b7"}.ti-square-rounded-letter-k:before{content:"\f5b8"}.ti-square-rounded-letter-l:before{content:"\f5b9"}.ti-square-rounded-letter-m:before{content:"\f5ba"}.ti-square-rounded-letter-n:before{content:"\f5bb"}.ti-square-rounded-letter-o:before{content:"\f5bc"}.ti-square-rounded-letter-p:before{content:"\f5bd"}.ti-square-rounded-letter-q:before{content:"\f5be"}.ti-square-rounded-letter-r:before{content:"\f5bf"}.ti-square-rounded-letter-s:before{content:"\f5c0"}.ti-square-rounded-letter-t:before{content:"\f5c1"}.ti-square-rounded-letter-u:before{content:"\f5c2"}.ti-square-rounded-letter-v:before{content:"\f5c3"}.ti-square-rounded-letter-w:before{content:"\f5c4"}.ti-square-rounded-letter-x:before{content:"\f5c5"}.ti-square-rounded-letter-y:before{content:"\f5c6"}.ti-square-rounded-letter-z:before{content:"\f5c7"}.ti-square-rounded-minus:before{content:"\f63e"}.ti-square-rounded-number-0:before{content:"\f5c8"}.ti-square-rounded-number-1:before{content:"\f5c9"}.ti-square-rounded-number-2:before{content:"\f5ca"}.ti-square-rounded-number-3:before{content:"\f5cb"}.ti-square-rounded-number-4:before{content:"\f5cc"}.ti-square-rounded-number-5:before{content:"\f5cd"}.ti-square-rounded-number-6:before{content:"\f5ce"}.ti-square-rounded-number-7:before{content:"\f5cf"}.ti-square-rounded-number-8:before{content:"\f5d0"}.ti-square-rounded-number-9:before{content:"\f5d1"}.ti-square-rounded-plus:before{content:"\f63f"}.ti-square-rounded-x:before{content:"\f640"}.ti-square-toggle:before{content:"\eef4"}.ti-square-toggle-horizontal:before{content:"\eef3"}.ti-square-x:before{content:"\eb2b"}.ti-squares-diagonal:before{content:"\eef5"}.ti-squares-filled:before{content:"\eef6"}.ti-stack:before{content:"\eb2d"}.ti-stack-2:before{content:"\eef7"}.ti-stack-3:before{content:"\ef9d"}.ti-stack-pop:before{content:"\f234"}.ti-stack-push:before{content:"\f235"}.ti-stairs:before{content:"\eca6"}.ti-stairs-down:before{content:"\eca4"}.ti-stairs-up:before{content:"\eca5"}.ti-star:before{content:"\eb2e"}.ti-star-filled:before{content:"\f6a6"}.ti-star-half:before{content:"\ed19"}.ti-star-half-filled:before{content:"\f6a7"}.ti-star-off:before{content:"\ed62"}.ti-stars:before{content:"\ed38"}.ti-stars-filled:before{content:"\f6a8"}.ti-stars-off:before{content:"\f430"}.ti-status-change:before{content:"\f3b0"}.ti-steam:before{content:"\f24b"}.ti-steering-wheel:before{content:"\ec7b"}.ti-steering-wheel-off:before{content:"\f431"}.ti-step-into:before{content:"\ece0"}.ti-step-out:before{content:"\ece1"}.ti-stereo-glasses:before{content:"\f4cb"}.ti-stethoscope:before{content:"\edbe"}.ti-stethoscope-off:before{content:"\f432"}.ti-sticker:before{content:"\eb2f"}.ti-storm:before{content:"\f24c"}.ti-storm-off:before{content:"\f433"}.ti-stretching:before{content:"\f2db"}.ti-strikethrough:before{content:"\eb9e"}.ti-submarine:before{content:"\ed94"}.ti-subscript:before{content:"\eb9f"}.ti-subtask:before{content:"\ec9f"}.ti-sum:before{content:"\eb73"}.ti-sum-off:before{content:"\f1ab"}.ti-sun:before{content:"\eb30"}.ti-sun-filled:before{content:"\f6a9"}.ti-sun-high:before{content:"\f236"}.ti-sun-low:before{content:"\f237"}.ti-sun-moon:before{content:"\f4a3"}.ti-sun-off:before{content:"\ed63"}.ti-sun-wind:before{content:"\f238"}.ti-sunglasses:before{content:"\f239"}.ti-sunrise:before{content:"\ef1c"}.ti-sunset:before{content:"\ec31"}.ti-sunset-2:before{content:"\f23a"}.ti-superscript:before{content:"\eba0"}.ti-svg:before{content:"\f25a"}.ti-swimming:before{content:"\ec92"}.ti-swipe:before{content:"\f551"}.ti-switch:before{content:"\eb33"}.ti-switch-2:before{content:"\edbf"}.ti-switch-3:before{content:"\edc0"}.ti-switch-horizontal:before{content:"\eb31"}.ti-switch-vertical:before{content:"\eb32"}.ti-sword:before{content:"\f030"}.ti-sword-off:before{content:"\f434"}.ti-swords:before{content:"\f132"}.ti-table:before{content:"\eba1"}.ti-table-alias:before{content:"\f25b"}.ti-table-export:before{content:"\eef8"}.ti-table-import:before{content:"\eef9"}.ti-table-off:before{content:"\eefa"}.ti-table-options:before{content:"\f25c"}.ti-table-shortcut:before{content:"\f25d"}.ti-tag:before{content:"\eb34"}.ti-tag-off:before{content:"\efc0"}.ti-tags:before{content:"\ef86"}.ti-tags-off:before{content:"\efc1"}.ti-tallymark-1:before{content:"\ec46"}.ti-tallymark-2:before{content:"\ec47"}.ti-tallymark-3:before{content:"\ec48"}.ti-tallymark-4:before{content:"\ec49"}.ti-tallymarks:before{content:"\ec4a"}.ti-tank:before{content:"\ed95"}.ti-target:before{content:"\eb35"}.ti-target-arrow:before{content:"\f51a"}.ti-target-off:before{content:"\f1ad"}.ti-teapot:before{content:"\f552"}.ti-telescope:before{content:"\f07d"}.ti-telescope-off:before{content:"\f1ae"}.ti-temperature:before{content:"\eb38"}.ti-temperature-celsius:before{content:"\eb36"}.ti-temperature-fahrenheit:before{content:"\eb37"}.ti-temperature-minus:before{content:"\ebed"}.ti-temperature-off:before{content:"\f1af"}.ti-temperature-plus:before{content:"\ebee"}.ti-template:before{content:"\eb39"}.ti-template-off:before{content:"\f1b0"}.ti-tent:before{content:"\eefb"}.ti-tent-off:before{content:"\f435"}.ti-terminal:before{content:"\ebdc"}.ti-terminal-2:before{content:"\ebef"}.ti-test-pipe:before{content:"\eb3a"}.ti-test-pipe-2:before{content:"\f0a4"}.ti-test-pipe-off:before{content:"\f1b1"}.ti-tex:before{content:"\f4e0"}.ti-text-caption:before{content:"\f4a4"}.ti-text-color:before{content:"\f2dc"}.ti-text-decrease:before{content:"\f202"}.ti-text-direction-ltr:before{content:"\eefc"}.ti-text-direction-rtl:before{content:"\eefd"}.ti-text-increase:before{content:"\f203"}.ti-text-orientation:before{content:"\f2a4"}.ti-text-plus:before{content:"\f2a5"}.ti-text-recognition:before{content:"\f204"}.ti-text-resize:before{content:"\ef87"}.ti-text-size:before{content:"\f2b1"}.ti-text-spellcheck:before{content:"\f2a6"}.ti-text-wrap:before{content:"\ebdd"}.ti-text-wrap-disabled:before{content:"\eca7"}.ti-texture:before{content:"\f51b"}.ti-thermometer:before{content:"\ef67"}.ti-thumb-down:before{content:"\eb3b"}.ti-thumb-down-filled:before{content:"\f6aa"}.ti-thumb-down-off:before{content:"\f436"}.ti-thumb-up:before{content:"\eb3c"}.ti-thumb-up-filled:before{content:"\f6ab"}.ti-thumb-up-off:before{content:"\f437"}.ti-tic-tac:before{content:"\f51c"}.ti-ticket:before{content:"\eb3d"}.ti-ticket-off:before{content:"\f1b2"}.ti-tie:before{content:"\f07e"}.ti-tilde:before{content:"\f4a5"}.ti-tilt-shift:before{content:"\eefe"}.ti-tilt-shift-off:before{content:"\f1b3"}.ti-timeline:before{content:"\f031"}.ti-timeline-event:before{content:"\f553"}.ti-timeline-event-exclamation:before{content:"\f662"}.ti-timeline-event-minus:before{content:"\f663"}.ti-timeline-event-plus:before{content:"\f664"}.ti-timeline-event-text:before{content:"\f665"}.ti-timeline-event-x:before{content:"\f666"}.ti-tir:before{content:"\ebf0"}.ti-toggle-left:before{content:"\eb3e"}.ti-toggle-right:before{content:"\eb3f"}.ti-toilet-paper:before{content:"\efd3"}.ti-toilet-paper-off:before{content:"\f1b4"}.ti-tool:before{content:"\eb40"}.ti-tools:before{content:"\ebca"}.ti-tools-kitchen:before{content:"\ed64"}.ti-tools-kitchen-2:before{content:"\eeff"}.ti-tools-kitchen-2-off:before{content:"\f1b5"}.ti-tools-kitchen-off:before{content:"\f1b6"}.ti-tools-off:before{content:"\f1b7"}.ti-tooltip:before{content:"\f2dd"}.ti-topology-bus:before{content:"\f5d9"}.ti-topology-complex:before{content:"\f5da"}.ti-topology-full:before{content:"\f5dc"}.ti-topology-full-hierarchy:before{content:"\f5db"}.ti-topology-ring:before{content:"\f5df"}.ti-topology-ring-2:before{content:"\f5dd"}.ti-topology-ring-3:before{content:"\f5de"}.ti-topology-star:before{content:"\f5e5"}.ti-topology-star-2:before{content:"\f5e0"}.ti-topology-star-3:before{content:"\f5e1"}.ti-topology-star-ring:before{content:"\f5e4"}.ti-topology-star-ring-2:before{content:"\f5e2"}.ti-topology-star-ring-3:before{content:"\f5e3"}.ti-torii:before{content:"\f59b"}.ti-tornado:before{content:"\ece2"}.ti-tournament:before{content:"\ecd0"}.ti-tower:before{content:"\f2cb"}.ti-tower-off:before{content:"\f2ca"}.ti-track:before{content:"\ef00"}.ti-tractor:before{content:"\ec0d"}.ti-trademark:before{content:"\ec0e"}.ti-traffic-cone:before{content:"\ec0f"}.ti-traffic-cone-off:before{content:"\f1b8"}.ti-traffic-lights:before{content:"\ed39"}.ti-traffic-lights-off:before{content:"\f1b9"}.ti-train:before{content:"\ed96"}.ti-transfer-in:before{content:"\ef2f"}.ti-transfer-out:before{content:"\ef30"}.ti-transform:before{content:"\f38e"}.ti-transform-filled:before{content:"\f6ac"}.ti-transition-bottom:before{content:"\f2b2"}.ti-transition-left:before{content:"\f2b3"}.ti-transition-right:before{content:"\f2b4"}.ti-transition-top:before{content:"\f2b5"}.ti-trash:before{content:"\eb41"}.ti-trash-off:before{content:"\ed65"}.ti-trash-x:before{content:"\ef88"}.ti-tree:before{content:"\ef01"}.ti-trees:before{content:"\ec10"}.ti-trekking:before{content:"\f5ad"}.ti-trending-down:before{content:"\eb42"}.ti-trending-down-2:before{content:"\edc1"}.ti-trending-down-3:before{content:"\edc2"}.ti-trending-up:before{content:"\eb43"}.ti-trending-up-2:before{content:"\edc3"}.ti-trending-up-3:before{content:"\edc4"}.ti-triangle:before{content:"\eb44"}.ti-triangle-filled:before{content:"\f6ad"}.ti-triangle-inverted:before{content:"\f01d"}.ti-triangle-inverted-filled:before{content:"\f6ae"}.ti-triangle-off:before{content:"\ef02"}.ti-triangle-square-circle:before{content:"\ece8"}.ti-triangles:before{content:"\f0a5"}.ti-trident:before{content:"\ecc5"}.ti-trolley:before{content:"\f4cc"}.ti-trophy:before{content:"\eb45"}.ti-trophy-filled:before{content:"\f6af"}.ti-trophy-off:before{content:"\f438"}.ti-trowel:before{content:"\f368"}.ti-truck:before{content:"\ebc4"}.ti-truck-delivery:before{content:"\ec4b"}.ti-truck-loading:before{content:"\f1da"}.ti-truck-off:before{content:"\ef03"}.ti-truck-return:before{content:"\ec4c"}.ti-txt:before{content:"\f3b1"}.ti-typography:before{content:"\ebc5"}.ti-typography-off:before{content:"\f1ba"}.ti-uf-off:before{content:"\f26e"}.ti-ufo:before{content:"\f26f"}.ti-umbrella:before{content:"\ebf1"}.ti-umbrella-filled:before{content:"\f6b0"}.ti-umbrella-off:before{content:"\f1bb"}.ti-underline:before{content:"\eba2"}.ti-unlink:before{content:"\eb46"}.ti-upload:before{content:"\eb47"}.ti-urgent:before{content:"\eb48"}.ti-usb:before{content:"\f00c"}.ti-user:before{content:"\eb4d"}.ti-user-check:before{content:"\eb49"}.ti-user-circle:before{content:"\ef68"}.ti-user-exclamation:before{content:"\ec12"}.ti-user-minus:before{content:"\eb4a"}.ti-user-off:before{content:"\ecf9"}.ti-user-plus:before{content:"\eb4b"}.ti-user-search:before{content:"\ef89"}.ti-user-x:before{content:"\eb4c"}.ti-users:before{content:"\ebf2"}.ti-uv-index:before{content:"\f3b2"}.ti-ux-circle:before{content:"\f369"}.ti-vaccine:before{content:"\ef04"}.ti-vaccine-bottle:before{content:"\ef69"}.ti-vaccine-bottle-off:before{content:"\f439"}.ti-vaccine-off:before{content:"\f1bc"}.ti-vacuum-cleaner:before{content:"\f5e6"}.ti-variable:before{content:"\ef05"}.ti-variable-minus:before{content:"\f36a"}.ti-variable-off:before{content:"\f1bd"}.ti-variable-plus:before{content:"\f36b"}.ti-vector:before{content:"\eca9"}.ti-vector-bezier:before{content:"\ef1d"}.ti-vector-bezier-2:before{content:"\f1a3"}.ti-vector-bezier-arc:before{content:"\f4cd"}.ti-vector-bezier-circle:before{content:"\f4ce"}.ti-vector-off:before{content:"\f1be"}.ti-vector-spline:before{content:"\f565"}.ti-vector-triangle:before{content:"\eca8"}.ti-vector-triangle-off:before{content:"\f1bf"}.ti-venus:before{content:"\ec86"}.ti-versions:before{content:"\ed52"}.ti-versions-filled:before{content:"\f6b1"}.ti-versions-off:before{content:"\f1c0"}.ti-video:before{content:"\ed22"}.ti-video-minus:before{content:"\ed1f"}.ti-video-off:before{content:"\ed20"}.ti-video-plus:before{content:"\ed21"}.ti-view-360:before{content:"\ed84"}.ti-view-360-off:before{content:"\f1c1"}.ti-viewfinder:before{content:"\eb4e"}.ti-viewfinder-off:before{content:"\f1c2"}.ti-viewport-narrow:before{content:"\ebf3"}.ti-viewport-wide:before{content:"\ebf4"}.ti-vinyl:before{content:"\f00d"}.ti-vip:before{content:"\f3b3"}.ti-vip-off:before{content:"\f43a"}.ti-virus:before{content:"\eb74"}.ti-virus-off:before{content:"\ed66"}.ti-virus-search:before{content:"\ed67"}.ti-vocabulary:before{content:"\ef1e"}.ti-vocabulary-off:before{content:"\f43b"}.ti-volume:before{content:"\eb51"}.ti-volume-2:before{content:"\eb4f"}.ti-volume-3:before{content:"\eb50"}.ti-volume-off:before{content:"\f1c3"}.ti-walk:before{content:"\ec87"}.ti-wall:before{content:"\ef7a"}.ti-wall-off:before{content:"\f43c"}.ti-wallet:before{content:"\eb75"}.ti-wallet-off:before{content:"\f1c4"}.ti-wallpaper:before{content:"\ef56"}.ti-wallpaper-off:before{content:"\f1c5"}.ti-wand:before{content:"\ebcb"}.ti-wand-off:before{content:"\f1c6"}.ti-wash:before{content:"\f311"}.ti-wash-dry:before{content:"\f304"}.ti-wash-dry-1:before{content:"\f2fa"}.ti-wash-dry-2:before{content:"\f2fb"}.ti-wash-dry-3:before{content:"\f2fc"}.ti-wash-dry-a:before{content:"\f2fd"}.ti-wash-dry-dip:before{content:"\f2fe"}.ti-wash-dry-f:before{content:"\f2ff"}.ti-wash-dry-hang:before{content:"\f300"}.ti-wash-dry-off:before{content:"\f301"}.ti-wash-dry-p:before{content:"\f302"}.ti-wash-dry-shade:before{content:"\f303"}.ti-wash-dry-w:before{content:"\f322"}.ti-wash-dryclean:before{content:"\f305"}.ti-wash-dryclean-off:before{content:"\f323"}.ti-wash-gentle:before{content:"\f306"}.ti-wash-machine:before{content:"\f25e"}.ti-wash-off:before{content:"\f307"}.ti-wash-press:before{content:"\f308"}.ti-wash-temperature-1:before{content:"\f309"}.ti-wash-temperature-2:before{content:"\f30a"}.ti-wash-temperature-3:before{content:"\f30b"}.ti-wash-temperature-4:before{content:"\f30c"}.ti-wash-temperature-5:before{content:"\f30d"}.ti-wash-temperature-6:before{content:"\f30e"}.ti-wash-tumble-dry:before{content:"\f30f"}.ti-wash-tumble-off:before{content:"\f310"}.ti-wave-saw-tool:before{content:"\ecd3"}.ti-wave-sine:before{content:"\ecd4"}.ti-wave-square:before{content:"\ecd5"}.ti-webhook:before{content:"\f01e"}.ti-webhook-off:before{content:"\f43d"}.ti-weight:before{content:"\f589"}.ti-wheelchair:before{content:"\f1db"}.ti-wheelchair-off:before{content:"\f43e"}.ti-whirl:before{content:"\f51d"}.ti-wifi:before{content:"\eb52"}.ti-wifi-0:before{content:"\eba3"}.ti-wifi-1:before{content:"\eba4"}.ti-wifi-2:before{content:"\eba5"}.ti-wifi-off:before{content:"\ecfa"}.ti-wind:before{content:"\ec34"}.ti-wind-off:before{content:"\f1c7"}.ti-windmill:before{content:"\ed85"}.ti-windmill-filled:before{content:"\f6b2"}.ti-windmill-off:before{content:"\f1c8"}.ti-window:before{content:"\ef06"}.ti-window-maximize:before{content:"\f1f1"}.ti-window-minimize:before{content:"\f1f2"}.ti-window-off:before{content:"\f1c9"}.ti-windsock:before{content:"\f06d"}.ti-wiper:before{content:"\ecab"}.ti-wiper-wash:before{content:"\ecaa"}.ti-woman:before{content:"\eb53"}.ti-wood:before{content:"\f359"}.ti-world:before{content:"\eb54"}.ti-world-download:before{content:"\ef8a"}.ti-world-latitude:before{content:"\ed2e"}.ti-world-longitude:before{content:"\ed2f"}.ti-world-off:before{content:"\f1ca"}.ti-world-upload:before{content:"\ef8b"}.ti-world-www:before{content:"\f38f"}.ti-wrecking-ball:before{content:"\ed97"}.ti-writing:before{content:"\ef08"}.ti-writing-off:before{content:"\f1cb"}.ti-writing-sign:before{content:"\ef07"}.ti-writing-sign-off:before{content:"\f1cc"}.ti-x:before{content:"\eb55"}.ti-xbox-a:before{content:"\f2b6"}.ti-xbox-b:before{content:"\f2b7"}.ti-xbox-x:before{content:"\f2b8"}.ti-xbox-y:before{content:"\f2b9"}.ti-yin-yang:before{content:"\ec35"}.ti-yoga:before{content:"\f01f"}.ti-zeppelin:before{content:"\f270"}.ti-zeppelin-off:before{content:"\f43f"}.ti-zip:before{content:"\f3b4"}.ti-zodiac-aquarius:before{content:"\ecac"}.ti-zodiac-aries:before{content:"\ecad"}.ti-zodiac-cancer:before{content:"\ecae"}.ti-zodiac-capricorn:before{content:"\ecaf"}.ti-zodiac-gemini:before{content:"\ecb0"}.ti-zodiac-leo:before{content:"\ecb1"}.ti-zodiac-libra:before{content:"\ecb2"}.ti-zodiac-pisces:before{content:"\ecb3"}.ti-zodiac-sagittarius:before{content:"\ecb4"}.ti-zodiac-scorpio:before{content:"\ecb5"}.ti-zodiac-taurus:before{content:"\ecb6"}.ti-zodiac-virgo:before{content:"\ecb7"}.ti-zoom-cancel:before{content:"\ec4d"}.ti-zoom-check:before{content:"\ef09"}.ti-zoom-code:before{content:"\f07f"}.ti-zoom-exclamation:before{content:"\f080"}.ti-zoom-in:before{content:"\eb56"}.ti-zoom-in-area:before{content:"\f1dc"}.ti-zoom-money:before{content:"\ef0a"}.ti-zoom-out:before{content:"\eb57"}.ti-zoom-out-area:before{content:"\f1dd"}.ti-zoom-pan:before{content:"\f1de"}.ti-zoom-question:before{content:"\edeb"}.ti-zoom-replace:before{content:"\f2a7"}.ti-zoom-reset:before{content:"\f295"}.ti-zzz:before{content:"\f228"}.ti-zzz-off:before{content:"\f440"} +/*# sourceMappingURL=tabler-icons.min.css.map */ diff --git a/packages/icons-webfont/tabler-icons.min.css.map b/packages/icons-webfont/tabler-icons.min.css.map new file mode 100644 index 000000000..9682a8a7d --- /dev/null +++ b/packages/icons-webfont/tabler-icons.min.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAAA;;;GAGG,AAMH,UAUC,CATC,WAAW,CANI,cAAc,CAO7B,UAAU,CAAE,MAAM,CAClB,WAAW,CAAE,GAAG,CAEhB,GAAG,CAAE,6CAAsD,CAC3D,GAAG,CAAE,kQAGsE,CAG7E,GAAe,CACb,WAAW,CAAE,yBAA0B,CACvC,KAAK,CAAE,IAAI,CACX,UAAU,CAAE,MAAM,CAClB,WAAW,CAAE,MAAM,CACnB,YAAY,CAAE,MAAM,CACpB,cAAc,CAAE,IAAI,CACpB,WAAW,CAAE,CAAC,CAGd,sBAAsB,CAAE,WAAW,CACnC,uBAAuB,CAAE,SAAS,CA8oGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,aAAyB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,aAAyB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,aAAyB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,sCAAkD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,aAAyB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uCAAmD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uCAAmD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,wCAAoD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvD,sCAAkD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrD,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,aAAyB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,sCAAkD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrD,sCAAkD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrD,uCAAmD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtD,oCAAgD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnD,uCAAmD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtD,uCAAmD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtD,wCAAoD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvD,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,gCAA4C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qCAAiD,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpD,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kCAA8C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjD,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,mCAA+C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlD,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iCAA6C,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhD,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,+BAA2C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9C,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,8BAA0C,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7C,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,4BAAwC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3C,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,gBAA4B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG/B,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,YAAwB,CAAE,OAAO,CAtoGrB,OAAe,CAuoG3B,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,iBAA6B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGhC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,eAA2B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG9B,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,0BAAsC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGzC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,6BAAyC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG5C,yBAAqC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGxC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,sBAAkC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGrC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,oBAAgC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGnC,2BAAuC,CAAE,OAAO,CAtoGrB,OAAe,CAuoG1C,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,mBAA+B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGlC,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,uBAAmC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGtC,qBAAiC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGpC,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe", +"sources": ["tabler-icons.scss"], +"names": [], +"file": "tabler-icons.min.css" +} diff --git a/iconfont/tabler-icons.scss b/packages/icons-webfont/tabler-icons.scss similarity index 97% rename from iconfont/tabler-icons.scss rename to packages/icons-webfont/tabler-icons.scss index 687bf7e71..9663cfe24 100644 --- a/iconfont/tabler-icons.scss +++ b/packages/icons-webfont/tabler-icons.scss @@ -1,9 +1,9 @@ /*! - * Tabler Icons 1.119.0 by tabler - https://tabler.io + * Tabler Icons 2.0.0-beta.2 by tabler - https://tabler.io * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE */ $ti-font-family: 'tabler-icons' !default; -$ti-font-path: 'fonts' !default; +$ti-font-path: './fonts' !default; $ti-font-display: null !default; $ti-prefix: 'ti' !default; @@ -12,19 +12,11 @@ $ti-prefix: 'ti' !default; font-style: normal; font-weight: 400; font-display: $ti-font-display; - src: url('#{$ti-font-path}/tabler-icons.eot'); - src: url('#{$ti-font-path}/tabler-icons.eot?#iefix') format('embedded-opentype'), - url('#{$ti-font-path}/tabler-icons.woff2') format('woff2'), - url('#{$ti-font-path}/tabler-icons.woff') format('woff'), - url('#{$ti-font-path}/tabler-icons.ttf') format('truetype'), - url("#{$ti-font-path}/tabler-icons.svg\##{$ti-font-family}") format("svg"); -} - -@media screen and (-webkit-min-device-pixel-ratio:0) { - @font-face { - font-family: $ti-font-family; - src: url("#{$ti-font-path}/tabler-icons.svg\##{$ti-font-family}") format("svg"); - } + src: url('#{$ti-font-path}/tabler-icons.eot?v2.0.0-beta.2'); + src: url('#{$ti-font-path}/tabler-icons.eot?#iefix-v2.0.0-beta.2') format('embedded-opentype'), + url('#{$ti-font-path}/tabler-icons.woff2?v2.0.0-beta.2') format('woff2'), + url('#{$ti-font-path}/tabler-icons.woff?') format('woff'), + url('#{$ti-font-path}/tabler-icons.ttf?v2.0.0-beta.2') format('truetype'); } .#{$ti-prefix} { @@ -40,6 +32,7 @@ $ti-prefix: 'ti' !default; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } + @function unicode($str) { @return unquote("\"")+unquote(str-insert($str, "\\", 1))+unquote("\"") } @@ -336,6 +329,7 @@ $ti-icon-badge-8k: unicode('f557'); $ti-icon-badge-ad: unicode('f558'); $ti-icon-badge-ar: unicode('f559'); $ti-icon-badge-cc: unicode('f55a'); +$ti-icon-badge-filled: unicode('f667'); $ti-icon-badge-hd: unicode('f55b'); $ti-icon-badge-off: unicode('f0fb'); $ti-icon-badge-sd: unicode('f55c'); @@ -385,6 +379,7 @@ $ti-icon-battery-automotive: unicode('ee07'); $ti-icon-battery-charging: unicode('ea33'); $ti-icon-battery-charging-2: unicode('ef3b'); $ti-icon-battery-eco: unicode('ef3c'); +$ti-icon-battery-filled: unicode('f668'); $ti-icon-battery-off: unicode('ed1c'); $ti-icon-beach: unicode('ef3d'); $ti-icon-beach-off: unicode('f0b7'); @@ -393,6 +388,7 @@ $ti-icon-bed-off: unicode('f100'); $ti-icon-beer: unicode('efa1'); $ti-icon-beer-off: unicode('f101'); $ti-icon-bell: unicode('ea35'); +$ti-icon-bell-filled: unicode('f669'); $ti-icon-bell-minus: unicode('ede2'); $ti-icon-bell-off: unicode('ece9'); $ti-icon-bell-plus: unicode('ede3'); @@ -834,7 +830,7 @@ $ti-icon-building-fortress: unicode('ed89'); $ti-icon-building-hospital: unicode('ea4d'); $ti-icon-building-lighthouse: unicode('ed8a'); $ti-icon-building-monument: unicode('ed26'); -$ti-icon-building-pavilon: unicode('ebf7'); +$ti-icon-building-pavilion: unicode('ebf7'); $ti-icon-building-skyscraper: unicode('ec39'); $ti-icon-building-stadium: unicode('f641'); $ti-icon-building-store: unicode('ea4e'); @@ -842,6 +838,7 @@ $ti-icon-building-tunnel: unicode('f5a6'); $ti-icon-building-warehouse: unicode('ebe3'); $ti-icon-building-wind-turbine: unicode('f4c0'); $ti-icon-bulb: unicode('ea51'); +$ti-icon-bulb-filled: unicode('f66a'); $ti-icon-bulb-off: unicode('ea50'); $ti-icon-bulldozer: unicode('ee1d'); $ti-icon-bus: unicode('ebe4'); @@ -924,18 +921,23 @@ $ti-icon-charging-pile: unicode('ee26'); $ti-icon-chart-arcs: unicode('ee28'); $ti-icon-chart-arcs-3: unicode('ee27'); $ti-icon-chart-area: unicode('ea58'); +$ti-icon-chart-area-filled: unicode('f66b'); $ti-icon-chart-area-line: unicode('ea57'); +$ti-icon-chart-area-line-filled: unicode('f66c'); $ti-icon-chart-arrows: unicode('ee2a'); $ti-icon-chart-arrows-vertical: unicode('ee29'); $ti-icon-chart-bar: unicode('ea59'); $ti-icon-chart-bar-off: unicode('f3d2'); $ti-icon-chart-bubble: unicode('ec75'); +$ti-icon-chart-bubble-filled: unicode('f66d'); $ti-icon-chart-candle: unicode('ea5a'); +$ti-icon-chart-candle-filled: unicode('f66e'); $ti-icon-chart-circles: unicode('ee2b'); $ti-icon-chart-donut: unicode('ea5b'); $ti-icon-chart-donut-2: unicode('ee2c'); $ti-icon-chart-donut-3: unicode('ee2d'); $ti-icon-chart-donut-4: unicode('ee2e'); +$ti-icon-chart-donut-filled: unicode('f66f'); $ti-icon-chart-dots: unicode('ee2f'); $ti-icon-chart-dots-2: unicode('f097'); $ti-icon-chart-dots-3: unicode('f098'); @@ -947,6 +949,7 @@ $ti-icon-chart-pie: unicode('ea5d'); $ti-icon-chart-pie-2: unicode('ee31'); $ti-icon-chart-pie-3: unicode('ee32'); $ti-icon-chart-pie-4: unicode('ee33'); +$ti-icon-chart-pie-filled: unicode('f670'); $ti-icon-chart-pie-off: unicode('f3d3'); $ti-icon-chart-ppf: unicode('f618'); $ti-icon-chart-radar: unicode('ed77'); @@ -1003,6 +1006,7 @@ $ti-icon-circle-chevrons-up: unicode('f645'); $ti-icon-circle-dashed: unicode('ed27'); $ti-icon-circle-dot: unicode('efb1'); $ti-icon-circle-dotted: unicode('ed28'); +$ti-icon-circle-filled: unicode('f671'); $ti-icon-circle-half: unicode('ee3f'); $ti-icon-circle-half-2: unicode('eff3'); $ti-icon-circle-half-vertical: unicode('ee3e'); @@ -1052,6 +1056,7 @@ $ti-icon-circle-square: unicode('ece4'); $ti-icon-circle-triangle: unicode('f011'); $ti-icon-circle-x: unicode('ea6a'); $ti-icon-circles: unicode('ece5'); +$ti-icon-circles-filled: unicode('f672'); $ti-icon-circles-relation: unicode('f4c3'); $ti-icon-circuit-ammeter: unicode('f271'); $ti-icon-circuit-battery: unicode('f272'); @@ -1113,6 +1118,7 @@ $ti-icon-cloud: unicode('ea76'); $ti-icon-cloud-computing: unicode('f1d0'); $ti-icon-cloud-data-connection: unicode('f1d1'); $ti-icon-cloud-download: unicode('ea71'); +$ti-icon-cloud-filled: unicode('f673'); $ti-icon-cloud-fog: unicode('ecd9'); $ti-icon-cloud-lock: unicode('efdb'); $ti-icon-cloud-lock-open: unicode('efda'); @@ -1124,6 +1130,7 @@ $ti-icon-cloud-upload: unicode('ea75'); $ti-icon-clover: unicode('f1ea'); $ti-icon-clover-2: unicode('f21e'); $ti-icon-clubs: unicode('eff4'); +$ti-icon-clubs-filled: unicode('f674'); $ti-icon-code: unicode('ea77'); $ti-icon-code-asterix: unicode('f312'); $ti-icon-code-circle: unicode('f4ff'); @@ -1216,6 +1223,7 @@ $ti-icon-credit-card-off: unicode('ed11'); $ti-icon-cricket: unicode('f09a'); $ti-icon-crop: unicode('ea85'); $ti-icon-cross: unicode('ef8f'); +$ti-icon-cross-filled: unicode('f675'); $ti-icon-cross-off: unicode('f10b'); $ti-icon-crosshair: unicode('ec3e'); $ti-icon-crown: unicode('ed12'); @@ -1366,6 +1374,7 @@ $ti-icon-dialpad-off: unicode('f114'); $ti-icon-diamond: unicode('eb65'); $ti-icon-diamond-off: unicode('f115'); $ti-icon-diamonds: unicode('eff5'); +$ti-icon-diamonds-filled: unicode('f676'); $ti-icon-dice: unicode('eb66'); $ti-icon-dice-1: unicode('f08b'); $ti-icon-dice-2: unicode('f08c'); @@ -1415,10 +1424,11 @@ $ti-icon-drone: unicode('ed79'); $ti-icon-drone-off: unicode('ee7e'); $ti-icon-drop-circle: unicode('efde'); $ti-icon-droplet: unicode('ea97'); -$ti-icon-droplet-filled: unicode('ee80'); +$ti-icon-droplet-filled: unicode('f677'); $ti-icon-droplet-filled-2: unicode('ee7f'); $ti-icon-droplet-half: unicode('ee82'); $ti-icon-droplet-half-2: unicode('ee81'); +$ti-icon-droplet-half-filled: unicode('ee80'); $ti-icon-droplet-off: unicode('ee83'); $ti-icon-e-passport: unicode('f4df'); $ti-icon-ear: unicode('ebce'); @@ -1435,6 +1445,7 @@ $ti-icon-edit-circle-off: unicode('f11d'); $ti-icon-edit-off: unicode('f11e'); $ti-icon-egg: unicode('eb8a'); $ti-icon-egg-cracked: unicode('f2d6'); +$ti-icon-egg-filled: unicode('f678'); $ti-icon-egg-fried: unicode('f386'); $ti-icon-egg-off: unicode('f11f'); $ti-icon-eggs: unicode('f500'); @@ -1471,6 +1482,7 @@ $ti-icon-external-link: unicode('ea99'); $ti-icon-external-link-off: unicode('f125'); $ti-icon-eye: unicode('ea9a'); $ti-icon-eye-check: unicode('ee88'); +$ti-icon-eye-filled: unicode('f679'); $ti-icon-eye-off: unicode('ecf0'); $ti-icon-eye-table: unicode('ef5e'); $ti-icon-eyeglass: unicode('ee8a'); @@ -1567,6 +1579,7 @@ $ti-icon-flag: unicode('eaa6'); $ti-icon-flag-2: unicode('ee8c'); $ti-icon-flag-2-off: unicode('f12c'); $ti-icon-flag-3: unicode('ee8d'); +$ti-icon-flag-filled: unicode('f67a'); $ti-icon-flag-off: unicode('f12d'); $ti-icon-flame: unicode('ec2c'); $ti-icon-flame-off: unicode('f12e'); @@ -1681,6 +1694,7 @@ $ti-icon-grip-horizontal: unicode('ec00'); $ti-icon-grip-vertical: unicode('ec01'); $ti-icon-growth: unicode('ee93'); $ti-icon-guitar-pick: unicode('f4c6'); +$ti-icon-guitar-pick-filled: unicode('f67b'); $ti-icon-h-1: unicode('ec94'); $ti-icon-h-2: unicode('ec95'); $ti-icon-h-3: unicode('ec96'); @@ -1717,6 +1731,7 @@ $ti-icon-headset-off: unicode('f3f6'); $ti-icon-health-recognition: unicode('f1fb'); $ti-icon-heart: unicode('eabe'); $ti-icon-heart-broken: unicode('ecba'); +$ti-icon-heart-filled: unicode('f67c'); $ti-icon-heart-handshake: unicode('f0f3'); $ti-icon-heart-minus: unicode('f140'); $ti-icon-heart-off: unicode('f141'); @@ -1733,6 +1748,7 @@ $ti-icon-help: unicode('eabf'); $ti-icon-help-off: unicode('f3f8'); $ti-icon-hexagon: unicode('ec02'); $ti-icon-hexagon-3d: unicode('f4c7'); +$ti-icon-hexagon-filled: unicode('f67d'); $ti-icon-hexagon-letter-a: unicode('f463'); $ti-icon-hexagon-letter-b: unicode('f464'); $ti-icon-hexagon-letter-c: unicode('f465'); @@ -1857,6 +1873,7 @@ $ti-icon-italic: unicode('eb93'); $ti-icon-jacket: unicode('f661'); $ti-icon-jetpack: unicode('f581'); $ti-icon-jewish-star: unicode('f3ff'); +$ti-icon-jewish-star-filled: unicode('f67e'); $ti-icon-jpg: unicode('f3ac'); $ti-icon-jump-rope: unicode('ed8f'); $ti-icon-karate: unicode('ed32'); @@ -1988,6 +2005,7 @@ $ti-icon-loader-3: unicode('f513'); $ti-icon-loader-quarter: unicode('eca2'); $ti-icon-location: unicode('eae0'); $ti-icon-location-broken: unicode('f2c4'); +$ti-icon-location-filled: unicode('f67f'); $ti-icon-location-off: unicode('f155'); $ti-icon-lock: unicode('eae2'); $ti-icon-lock-access: unicode('eeaa'); @@ -2030,6 +2048,7 @@ $ti-icon-map: unicode('eae9'); $ti-icon-map-2: unicode('eae7'); $ti-icon-map-off: unicode('f15c'); $ti-icon-map-pin: unicode('eae8'); +$ti-icon-map-pin-filled: unicode('f680'); $ti-icon-map-pin-off: unicode('ecf3'); $ti-icon-map-pins: unicode('ed5e'); $ti-icon-map-search: unicode('ef82'); @@ -2083,6 +2102,7 @@ $ti-icon-meat-off: unicode('f40a'); $ti-icon-medal: unicode('ec78'); $ti-icon-medal-2: unicode('efcd'); $ti-icon-medical-cross: unicode('ec2f'); +$ti-icon-medical-cross-filled: unicode('f681'); $ti-icon-medical-cross-off: unicode('f160'); $ti-icon-medicine-syrup: unicode('ef63'); $ti-icon-meeple: unicode('f514'); @@ -2098,6 +2118,7 @@ $ti-icon-message-2-share: unicode('f077'); $ti-icon-message-chatbot: unicode('f38a'); $ti-icon-message-circle: unicode('eaed'); $ti-icon-message-circle-2: unicode('ed3f'); +$ti-icon-message-circle-2-filled: unicode('f682'); $ti-icon-message-circle-off: unicode('ed40'); $ti-icon-message-code: unicode('f013'); $ti-icon-message-dots: unicode('eaee'); @@ -2112,6 +2133,7 @@ $ti-icon-messages-off: unicode('ed42'); $ti-icon-meteor: unicode('f1fd'); $ti-icon-meteor-off: unicode('f40c'); $ti-icon-mickey: unicode('f2a3'); +$ti-icon-mickey-filled: unicode('f683'); $ti-icon-microphone: unicode('eaf0'); $ti-icon-microphone-2: unicode('ef2c'); $ti-icon-microphone-2-off: unicode('f40d'); @@ -2168,6 +2190,7 @@ $ti-icon-mood-wrrr: unicode('f2ee'); $ti-icon-mood-xd: unicode('f2ef'); $ti-icon-moon: unicode('eaf8'); $ti-icon-moon-2: unicode('ece6'); +$ti-icon-moon-filled: unicode('f684'); $ti-icon-moon-off: unicode('f162'); $ti-icon-moon-stars: unicode('ece7'); $ti-icon-moped: unicode('ecbc'); @@ -2191,6 +2214,7 @@ $ti-icon-mushroom-off: unicode('f412'); $ti-icon-music: unicode('eafc'); $ti-icon-music-off: unicode('f166'); $ti-icon-navigation: unicode('f2c8'); +$ti-icon-navigation-filled: unicode('f685'); $ti-icon-navigation-off: unicode('f413'); $ti-icon-needle: unicode('f508'); $ti-icon-needle-thread: unicode('f507'); @@ -2227,6 +2251,7 @@ $ti-icon-number-9: unicode('edf9'); $ti-icon-numbers: unicode('f015'); $ti-icon-nurse: unicode('ef65'); $ti-icon-octagon: unicode('ecbd'); +$ti-icon-octagon-filled: unicode('f686'); $ti-icon-octagon-off: unicode('eeb8'); $ti-icon-old: unicode('eeb9'); $ti-icon-olympics: unicode('eeba'); @@ -2236,7 +2261,9 @@ $ti-icon-omega: unicode('eb97'); $ti-icon-outbound: unicode('f249'); $ti-icon-outlet: unicode('ebd7'); $ti-icon-oval: unicode('f02e'); +$ti-icon-oval-filled: unicode('f687'); $ti-icon-oval-vertical: unicode('f02d'); +$ti-icon-oval-vertical-filled: unicode('f688'); $ti-icon-overline: unicode('eebb'); $ti-icon-package: unicode('eaff'); $ti-icon-package-off: unicode('f16c'); @@ -2264,6 +2291,7 @@ $ti-icon-parking: unicode('eb03'); $ti-icon-parking-off: unicode('f172'); $ti-icon-password: unicode('f4ca'); $ti-icon-paw: unicode('eff9'); +$ti-icon-paw-filled: unicode('f689'); $ti-icon-paw-off: unicode('f419'); $ti-icon-peace: unicode('ecbe'); $ti-icon-pencil: unicode('eb04'); @@ -2272,8 +2300,11 @@ $ti-icon-pencil-off: unicode('f173'); $ti-icon-pencil-plus: unicode('f1ec'); $ti-icon-pennant: unicode('ed7d'); $ti-icon-pennant-2: unicode('f06a'); +$ti-icon-pennant-2-filled: unicode('f68a'); +$ti-icon-pennant-filled: unicode('f68b'); $ti-icon-pennant-off: unicode('f174'); $ti-icon-pentagon: unicode('efe3'); +$ti-icon-pentagon-filled: unicode('f68c'); $ti-icon-pentagon-off: unicode('f41a'); $ti-icon-pentagram: unicode('f586'); $ti-icon-pepper: unicode('ef15'); @@ -2319,8 +2350,10 @@ $ti-icon-pill: unicode('ec44'); $ti-icon-pill-off: unicode('f178'); $ti-icon-pills: unicode('ef66'); $ti-icon-pin: unicode('ec9c'); +$ti-icon-pin-filled: unicode('f68d'); $ti-icon-ping-pong: unicode('f38d'); $ti-icon-pinned: unicode('ed60'); +$ti-icon-pinned-filled: unicode('f68e'); $ti-icon-pinned-off: unicode('ed5f'); $ti-icon-pizza: unicode('edbb'); $ti-icon-pizza-off: unicode('f179'); @@ -2340,14 +2373,23 @@ $ti-icon-plant-off: unicode('f17d'); $ti-icon-play-card: unicode('eebf'); $ti-icon-play-card-off: unicode('f17e'); $ti-icon-player-eject: unicode('efbc'); +$ti-icon-player-eject-filled: unicode('f68f'); $ti-icon-player-pause: unicode('ed45'); +$ti-icon-player-pause-filled: unicode('f690'); $ti-icon-player-play: unicode('ed46'); +$ti-icon-player-play-filled: unicode('f691'); $ti-icon-player-record: unicode('ed47'); +$ti-icon-player-record-filled: unicode('f692'); $ti-icon-player-skip-back: unicode('ed48'); +$ti-icon-player-skip-back-filled: unicode('f693'); $ti-icon-player-skip-forward: unicode('ed49'); +$ti-icon-player-skip-forward-filled: unicode('f694'); $ti-icon-player-stop: unicode('ed4a'); +$ti-icon-player-stop-filled: unicode('f695'); $ti-icon-player-track-next: unicode('ed4b'); +$ti-icon-player-track-next-filled: unicode('f696'); $ti-icon-player-track-prev: unicode('ed4c'); +$ti-icon-player-track-prev-filled: unicode('f697'); $ti-icon-playlist: unicode('eec0'); $ti-icon-playlist-add: unicode('f008'); $ti-icon-playlist-off: unicode('f17f'); @@ -2366,6 +2408,7 @@ $ti-icon-png: unicode('f3ad'); $ti-icon-podium: unicode('f1d8'); $ti-icon-podium-off: unicode('f41b'); $ti-icon-point: unicode('eb0c'); +$ti-icon-point-filled: unicode('f698'); $ti-icon-point-off: unicode('f181'); $ti-icon-pointer: unicode('f265'); $ti-icon-pokeball: unicode('eec1'); @@ -2393,6 +2436,7 @@ $ti-icon-propeller-off: unicode('f185'); $ti-icon-pumpkin-scary: unicode('f587'); $ti-icon-puzzle: unicode('eb10'); $ti-icon-puzzle-2: unicode('ef83'); +$ti-icon-puzzle-filled: unicode('f699'); $ti-icon-puzzle-off: unicode('f186'); $ti-icon-pyramid: unicode('eec5'); $ti-icon-pyramid-off: unicode('f187'); @@ -2431,7 +2475,9 @@ $ti-icon-recharging: unicode('eeca'); $ti-icon-record-mail: unicode('eb12'); $ti-icon-record-mail-off: unicode('f18b'); $ti-icon-rectangle: unicode('ed37'); +$ti-icon-rectangle-filled: unicode('f69a'); $ti-icon-rectangle-vertical: unicode('ed36'); +$ti-icon-rectangle-vertical-filled: unicode('f69b'); $ti-icon-recycle: unicode('eb9b'); $ti-icon-recycle-off: unicode('f18c'); $ti-icon-refresh: unicode('eb13'); @@ -2449,6 +2495,7 @@ $ti-icon-repeat: unicode('eb72'); $ti-icon-repeat-off: unicode('f18e'); $ti-icon-repeat-once: unicode('eb71'); $ti-icon-replace: unicode('ebc7'); +$ti-icon-replace-filled: unicode('f69c'); $ti-icon-replace-off: unicode('f422'); $ti-icon-report: unicode('eece'); $ti-icon-report-analytics: unicode('eecb'); @@ -2471,6 +2518,7 @@ $ti-icon-roller-skating: unicode('efd1'); $ti-icon-rollercoaster: unicode('f0a2'); $ti-icon-rollercoaster-off: unicode('f423'); $ti-icon-rosette: unicode('f599'); +$ti-icon-rosette-filled: unicode('f69d'); $ti-icon-rosette-number-0: unicode('f58f'); $ti-icon-rosette-number-1: unicode('f590'); $ti-icon-rosette-number-2: unicode('f591'); @@ -2567,6 +2615,7 @@ $ti-icon-servicemark: unicode('ec09'); $ti-icon-settings: unicode('eb20'); $ti-icon-settings-2: unicode('f5ac'); $ti-icon-settings-automation: unicode('eed6'); +$ti-icon-settings-filled: unicode('f69e'); $ti-icon-settings-off: unicode('f19f'); $ti-icon-shadow: unicode('eed8'); $ti-icon-shadow-off: unicode('eed7'); @@ -2580,6 +2629,7 @@ $ti-icon-shield: unicode('eb24'); $ti-icon-shield-check: unicode('eb22'); $ti-icon-shield-checkered: unicode('ef9a'); $ti-icon-shield-chevron: unicode('ef9b'); +$ti-icon-shield-filled: unicode('f69f'); $ti-icon-shield-half: unicode('f358'); $ti-icon-shield-half-filled: unicode('f357'); $ti-icon-shield-lock: unicode('ed58'); @@ -2588,6 +2638,7 @@ $ti-icon-shield-x: unicode('eb23'); $ti-icon-ship: unicode('ec84'); $ti-icon-ship-off: unicode('f42a'); $ti-icon-shirt: unicode('ec0a'); +$ti-icon-shirt-filled: unicode('f6a0'); $ti-icon-shirt-off: unicode('f1a2'); $ti-icon-shirt-sport: unicode('f26c'); $ti-icon-shoe: unicode('efd2'); @@ -2601,7 +2652,9 @@ $ti-icon-shopping-cart-x: unicode('eede'); $ti-icon-shovel: unicode('f1d9'); $ti-icon-shredder: unicode('eedf'); $ti-icon-sign-left: unicode('f06b'); +$ti-icon-sign-left-filled: unicode('f6a1'); $ti-icon-sign-right: unicode('f06c'); +$ti-icon-sign-right-filled: unicode('f6a2'); $ti-icon-signal-3g: unicode('f1ee'); $ti-icon-signal-4g: unicode('f1ef'); $ti-icon-signal-4g-plus: unicode('f259'); @@ -2652,6 +2705,7 @@ $ti-icon-space-off: unicode('f1aa'); $ti-icon-spacing-horizontal: unicode('ef54'); $ti-icon-spacing-vertical: unicode('ef55'); $ti-icon-spade: unicode('effa'); +$ti-icon-spade-filled: unicode('f6a3'); $ti-icon-speakerphone: unicode('ed61'); $ti-icon-speedboat: unicode('ed93'); $ti-icon-spider: unicode('f293'); @@ -2733,6 +2787,7 @@ $ti-icon-square-plus: unicode('eb2a'); $ti-icon-square-root: unicode('eef1'); $ti-icon-square-root-2: unicode('eef0'); $ti-icon-square-rotated: unicode('ecdf'); +$ti-icon-square-rotated-filled: unicode('f6a4'); $ti-icon-square-rotated-forbid: unicode('f01c'); $ti-icon-square-rotated-forbid-2: unicode('f01b'); $ti-icon-square-rotated-off: unicode('eef2'); @@ -2750,6 +2805,7 @@ $ti-icon-square-rounded-chevrons-down: unicode('f64f'); $ti-icon-square-rounded-chevrons-left: unicode('f650'); $ti-icon-square-rounded-chevrons-right: unicode('f651'); $ti-icon-square-rounded-chevrons-up: unicode('f652'); +$ti-icon-square-rounded-filled: unicode('f6a5'); $ti-icon-square-rounded-letter-a: unicode('f5ae'); $ti-icon-square-rounded-letter-b: unicode('f5af'); $ti-icon-square-rounded-letter-c: unicode('f5b0'); @@ -2803,9 +2859,12 @@ $ti-icon-stairs: unicode('eca6'); $ti-icon-stairs-down: unicode('eca4'); $ti-icon-stairs-up: unicode('eca5'); $ti-icon-star: unicode('eb2e'); +$ti-icon-star-filled: unicode('f6a6'); $ti-icon-star-half: unicode('ed19'); +$ti-icon-star-half-filled: unicode('f6a7'); $ti-icon-star-off: unicode('ed62'); $ti-icon-stars: unicode('ed38'); +$ti-icon-stars-filled: unicode('f6a8'); $ti-icon-stars-off: unicode('f430'); $ti-icon-status-change: unicode('f3b0'); $ti-icon-steam: unicode('f24b'); @@ -2827,6 +2886,7 @@ $ti-icon-subtask: unicode('ec9f'); $ti-icon-sum: unicode('eb73'); $ti-icon-sum-off: unicode('f1ab'); $ti-icon-sun: unicode('eb30'); +$ti-icon-sun-filled: unicode('f6a9'); $ti-icon-sun-high: unicode('f236'); $ti-icon-sun-low: unicode('f237'); $ti-icon-sun-moon: unicode('f4a3'); @@ -2904,8 +2964,10 @@ $ti-icon-text-wrap-disabled: unicode('eca7'); $ti-icon-texture: unicode('f51b'); $ti-icon-thermometer: unicode('ef67'); $ti-icon-thumb-down: unicode('eb3b'); +$ti-icon-thumb-down-filled: unicode('f6aa'); $ti-icon-thumb-down-off: unicode('f436'); $ti-icon-thumb-up: unicode('eb3c'); +$ti-icon-thumb-up-filled: unicode('f6ab'); $ti-icon-thumb-up-off: unicode('f437'); $ti-icon-tic-tac: unicode('f51c'); $ti-icon-ticket: unicode('eb3d'); @@ -2963,6 +3025,7 @@ $ti-icon-train: unicode('ed96'); $ti-icon-transfer-in: unicode('ef2f'); $ti-icon-transfer-out: unicode('ef30'); $ti-icon-transform: unicode('f38e'); +$ti-icon-transform-filled: unicode('f6ac'); $ti-icon-transition-bottom: unicode('f2b2'); $ti-icon-transition-left: unicode('f2b3'); $ti-icon-transition-right: unicode('f2b4'); @@ -2980,13 +3043,16 @@ $ti-icon-trending-up: unicode('eb43'); $ti-icon-trending-up-2: unicode('edc3'); $ti-icon-trending-up-3: unicode('edc4'); $ti-icon-triangle: unicode('eb44'); +$ti-icon-triangle-filled: unicode('f6ad'); $ti-icon-triangle-inverted: unicode('f01d'); +$ti-icon-triangle-inverted-filled: unicode('f6ae'); $ti-icon-triangle-off: unicode('ef02'); $ti-icon-triangle-square-circle: unicode('ece8'); $ti-icon-triangles: unicode('f0a5'); $ti-icon-trident: unicode('ecc5'); $ti-icon-trolley: unicode('f4cc'); $ti-icon-trophy: unicode('eb45'); +$ti-icon-trophy-filled: unicode('f6af'); $ti-icon-trophy-off: unicode('f438'); $ti-icon-trowel: unicode('f368'); $ti-icon-truck: unicode('ebc4'); @@ -3000,6 +3066,7 @@ $ti-icon-typography-off: unicode('f1ba'); $ti-icon-uf-off: unicode('f26e'); $ti-icon-ufo: unicode('f26f'); $ti-icon-umbrella: unicode('ebf1'); +$ti-icon-umbrella-filled: unicode('f6b0'); $ti-icon-umbrella-off: unicode('f1bb'); $ti-icon-underline: unicode('eba2'); $ti-icon-unlink: unicode('eb46'); @@ -3038,6 +3105,7 @@ $ti-icon-vector-triangle: unicode('eca8'); $ti-icon-vector-triangle-off: unicode('f1bf'); $ti-icon-venus: unicode('ec86'); $ti-icon-versions: unicode('ed52'); +$ti-icon-versions-filled: unicode('f6b1'); $ti-icon-versions-off: unicode('f1c0'); $ti-icon-video: unicode('ed22'); $ti-icon-video-minus: unicode('ed1f'); @@ -3114,6 +3182,7 @@ $ti-icon-wifi-off: unicode('ecfa'); $ti-icon-wind: unicode('ec34'); $ti-icon-wind-off: unicode('f1c7'); $ti-icon-windmill: unicode('ed85'); +$ti-icon-windmill-filled: unicode('f6b2'); $ti-icon-windmill-off: unicode('f1c8'); $ti-icon-window: unicode('ef06'); $ti-icon-window-maximize: unicode('f1f1'); @@ -3466,6 +3535,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-badge-ad:before { content: $ti-icon-badge-ad; } .#{$ti-prefix}-badge-ar:before { content: $ti-icon-badge-ar; } .#{$ti-prefix}-badge-cc:before { content: $ti-icon-badge-cc; } +.#{$ti-prefix}-badge-filled:before { content: $ti-icon-badge-filled; } .#{$ti-prefix}-badge-hd:before { content: $ti-icon-badge-hd; } .#{$ti-prefix}-badge-off:before { content: $ti-icon-badge-off; } .#{$ti-prefix}-badge-sd:before { content: $ti-icon-badge-sd; } @@ -3515,6 +3585,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-battery-charging:before { content: $ti-icon-battery-charging; } .#{$ti-prefix}-battery-charging-2:before { content: $ti-icon-battery-charging-2; } .#{$ti-prefix}-battery-eco:before { content: $ti-icon-battery-eco; } +.#{$ti-prefix}-battery-filled:before { content: $ti-icon-battery-filled; } .#{$ti-prefix}-battery-off:before { content: $ti-icon-battery-off; } .#{$ti-prefix}-beach:before { content: $ti-icon-beach; } .#{$ti-prefix}-beach-off:before { content: $ti-icon-beach-off; } @@ -3523,6 +3594,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-beer:before { content: $ti-icon-beer; } .#{$ti-prefix}-beer-off:before { content: $ti-icon-beer-off; } .#{$ti-prefix}-bell:before { content: $ti-icon-bell; } +.#{$ti-prefix}-bell-filled:before { content: $ti-icon-bell-filled; } .#{$ti-prefix}-bell-minus:before { content: $ti-icon-bell-minus; } .#{$ti-prefix}-bell-off:before { content: $ti-icon-bell-off; } .#{$ti-prefix}-bell-plus:before { content: $ti-icon-bell-plus; } @@ -3964,7 +4036,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-building-hospital:before { content: $ti-icon-building-hospital; } .#{$ti-prefix}-building-lighthouse:before { content: $ti-icon-building-lighthouse; } .#{$ti-prefix}-building-monument:before { content: $ti-icon-building-monument; } -.#{$ti-prefix}-building-pavilon:before { content: $ti-icon-building-pavilon; } +.#{$ti-prefix}-building-pavilion:before { content: $ti-icon-building-pavilion; } .#{$ti-prefix}-building-skyscraper:before { content: $ti-icon-building-skyscraper; } .#{$ti-prefix}-building-stadium:before { content: $ti-icon-building-stadium; } .#{$ti-prefix}-building-store:before { content: $ti-icon-building-store; } @@ -3972,6 +4044,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-building-warehouse:before { content: $ti-icon-building-warehouse; } .#{$ti-prefix}-building-wind-turbine:before { content: $ti-icon-building-wind-turbine; } .#{$ti-prefix}-bulb:before { content: $ti-icon-bulb; } +.#{$ti-prefix}-bulb-filled:before { content: $ti-icon-bulb-filled; } .#{$ti-prefix}-bulb-off:before { content: $ti-icon-bulb-off; } .#{$ti-prefix}-bulldozer:before { content: $ti-icon-bulldozer; } .#{$ti-prefix}-bus:before { content: $ti-icon-bus; } @@ -4054,18 +4127,23 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-chart-arcs:before { content: $ti-icon-chart-arcs; } .#{$ti-prefix}-chart-arcs-3:before { content: $ti-icon-chart-arcs-3; } .#{$ti-prefix}-chart-area:before { content: $ti-icon-chart-area; } +.#{$ti-prefix}-chart-area-filled:before { content: $ti-icon-chart-area-filled; } .#{$ti-prefix}-chart-area-line:before { content: $ti-icon-chart-area-line; } +.#{$ti-prefix}-chart-area-line-filled:before { content: $ti-icon-chart-area-line-filled; } .#{$ti-prefix}-chart-arrows:before { content: $ti-icon-chart-arrows; } .#{$ti-prefix}-chart-arrows-vertical:before { content: $ti-icon-chart-arrows-vertical; } .#{$ti-prefix}-chart-bar:before { content: $ti-icon-chart-bar; } .#{$ti-prefix}-chart-bar-off:before { content: $ti-icon-chart-bar-off; } .#{$ti-prefix}-chart-bubble:before { content: $ti-icon-chart-bubble; } +.#{$ti-prefix}-chart-bubble-filled:before { content: $ti-icon-chart-bubble-filled; } .#{$ti-prefix}-chart-candle:before { content: $ti-icon-chart-candle; } +.#{$ti-prefix}-chart-candle-filled:before { content: $ti-icon-chart-candle-filled; } .#{$ti-prefix}-chart-circles:before { content: $ti-icon-chart-circles; } .#{$ti-prefix}-chart-donut:before { content: $ti-icon-chart-donut; } .#{$ti-prefix}-chart-donut-2:before { content: $ti-icon-chart-donut-2; } .#{$ti-prefix}-chart-donut-3:before { content: $ti-icon-chart-donut-3; } .#{$ti-prefix}-chart-donut-4:before { content: $ti-icon-chart-donut-4; } +.#{$ti-prefix}-chart-donut-filled:before { content: $ti-icon-chart-donut-filled; } .#{$ti-prefix}-chart-dots:before { content: $ti-icon-chart-dots; } .#{$ti-prefix}-chart-dots-2:before { content: $ti-icon-chart-dots-2; } .#{$ti-prefix}-chart-dots-3:before { content: $ti-icon-chart-dots-3; } @@ -4077,6 +4155,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-chart-pie-2:before { content: $ti-icon-chart-pie-2; } .#{$ti-prefix}-chart-pie-3:before { content: $ti-icon-chart-pie-3; } .#{$ti-prefix}-chart-pie-4:before { content: $ti-icon-chart-pie-4; } +.#{$ti-prefix}-chart-pie-filled:before { content: $ti-icon-chart-pie-filled; } .#{$ti-prefix}-chart-pie-off:before { content: $ti-icon-chart-pie-off; } .#{$ti-prefix}-chart-ppf:before { content: $ti-icon-chart-ppf; } .#{$ti-prefix}-chart-radar:before { content: $ti-icon-chart-radar; } @@ -4133,6 +4212,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-circle-dashed:before { content: $ti-icon-circle-dashed; } .#{$ti-prefix}-circle-dot:before { content: $ti-icon-circle-dot; } .#{$ti-prefix}-circle-dotted:before { content: $ti-icon-circle-dotted; } +.#{$ti-prefix}-circle-filled:before { content: $ti-icon-circle-filled; } .#{$ti-prefix}-circle-half:before { content: $ti-icon-circle-half; } .#{$ti-prefix}-circle-half-2:before { content: $ti-icon-circle-half-2; } .#{$ti-prefix}-circle-half-vertical:before { content: $ti-icon-circle-half-vertical; } @@ -4182,6 +4262,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-circle-triangle:before { content: $ti-icon-circle-triangle; } .#{$ti-prefix}-circle-x:before { content: $ti-icon-circle-x; } .#{$ti-prefix}-circles:before { content: $ti-icon-circles; } +.#{$ti-prefix}-circles-filled:before { content: $ti-icon-circles-filled; } .#{$ti-prefix}-circles-relation:before { content: $ti-icon-circles-relation; } .#{$ti-prefix}-circuit-ammeter:before { content: $ti-icon-circuit-ammeter; } .#{$ti-prefix}-circuit-battery:before { content: $ti-icon-circuit-battery; } @@ -4243,6 +4324,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-cloud-computing:before { content: $ti-icon-cloud-computing; } .#{$ti-prefix}-cloud-data-connection:before { content: $ti-icon-cloud-data-connection; } .#{$ti-prefix}-cloud-download:before { content: $ti-icon-cloud-download; } +.#{$ti-prefix}-cloud-filled:before { content: $ti-icon-cloud-filled; } .#{$ti-prefix}-cloud-fog:before { content: $ti-icon-cloud-fog; } .#{$ti-prefix}-cloud-lock:before { content: $ti-icon-cloud-lock; } .#{$ti-prefix}-cloud-lock-open:before { content: $ti-icon-cloud-lock-open; } @@ -4254,6 +4336,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-clover:before { content: $ti-icon-clover; } .#{$ti-prefix}-clover-2:before { content: $ti-icon-clover-2; } .#{$ti-prefix}-clubs:before { content: $ti-icon-clubs; } +.#{$ti-prefix}-clubs-filled:before { content: $ti-icon-clubs-filled; } .#{$ti-prefix}-code:before { content: $ti-icon-code; } .#{$ti-prefix}-code-asterix:before { content: $ti-icon-code-asterix; } .#{$ti-prefix}-code-circle:before { content: $ti-icon-code-circle; } @@ -4346,6 +4429,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-cricket:before { content: $ti-icon-cricket; } .#{$ti-prefix}-crop:before { content: $ti-icon-crop; } .#{$ti-prefix}-cross:before { content: $ti-icon-cross; } +.#{$ti-prefix}-cross-filled:before { content: $ti-icon-cross-filled; } .#{$ti-prefix}-cross-off:before { content: $ti-icon-cross-off; } .#{$ti-prefix}-crosshair:before { content: $ti-icon-crosshair; } .#{$ti-prefix}-crown:before { content: $ti-icon-crown; } @@ -4496,6 +4580,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-diamond:before { content: $ti-icon-diamond; } .#{$ti-prefix}-diamond-off:before { content: $ti-icon-diamond-off; } .#{$ti-prefix}-diamonds:before { content: $ti-icon-diamonds; } +.#{$ti-prefix}-diamonds-filled:before { content: $ti-icon-diamonds-filled; } .#{$ti-prefix}-dice:before { content: $ti-icon-dice; } .#{$ti-prefix}-dice-1:before { content: $ti-icon-dice-1; } .#{$ti-prefix}-dice-2:before { content: $ti-icon-dice-2; } @@ -4549,6 +4634,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-droplet-filled-2:before { content: $ti-icon-droplet-filled-2; } .#{$ti-prefix}-droplet-half:before { content: $ti-icon-droplet-half; } .#{$ti-prefix}-droplet-half-2:before { content: $ti-icon-droplet-half-2; } +.#{$ti-prefix}-droplet-half-filled:before { content: $ti-icon-droplet-half-filled; } .#{$ti-prefix}-droplet-off:before { content: $ti-icon-droplet-off; } .#{$ti-prefix}-e-passport:before { content: $ti-icon-e-passport; } .#{$ti-prefix}-ear:before { content: $ti-icon-ear; } @@ -4565,6 +4651,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-edit-off:before { content: $ti-icon-edit-off; } .#{$ti-prefix}-egg:before { content: $ti-icon-egg; } .#{$ti-prefix}-egg-cracked:before { content: $ti-icon-egg-cracked; } +.#{$ti-prefix}-egg-filled:before { content: $ti-icon-egg-filled; } .#{$ti-prefix}-egg-fried:before { content: $ti-icon-egg-fried; } .#{$ti-prefix}-egg-off:before { content: $ti-icon-egg-off; } .#{$ti-prefix}-eggs:before { content: $ti-icon-eggs; } @@ -4601,6 +4688,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-external-link-off:before { content: $ti-icon-external-link-off; } .#{$ti-prefix}-eye:before { content: $ti-icon-eye; } .#{$ti-prefix}-eye-check:before { content: $ti-icon-eye-check; } +.#{$ti-prefix}-eye-filled:before { content: $ti-icon-eye-filled; } .#{$ti-prefix}-eye-off:before { content: $ti-icon-eye-off; } .#{$ti-prefix}-eye-table:before { content: $ti-icon-eye-table; } .#{$ti-prefix}-eyeglass:before { content: $ti-icon-eyeglass; } @@ -4697,6 +4785,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-flag-2:before { content: $ti-icon-flag-2; } .#{$ti-prefix}-flag-2-off:before { content: $ti-icon-flag-2-off; } .#{$ti-prefix}-flag-3:before { content: $ti-icon-flag-3; } +.#{$ti-prefix}-flag-filled:before { content: $ti-icon-flag-filled; } .#{$ti-prefix}-flag-off:before { content: $ti-icon-flag-off; } .#{$ti-prefix}-flame:before { content: $ti-icon-flame; } .#{$ti-prefix}-flame-off:before { content: $ti-icon-flame-off; } @@ -4811,6 +4900,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-grip-vertical:before { content: $ti-icon-grip-vertical; } .#{$ti-prefix}-growth:before { content: $ti-icon-growth; } .#{$ti-prefix}-guitar-pick:before { content: $ti-icon-guitar-pick; } +.#{$ti-prefix}-guitar-pick-filled:before { content: $ti-icon-guitar-pick-filled; } .#{$ti-prefix}-h-1:before { content: $ti-icon-h-1; } .#{$ti-prefix}-h-2:before { content: $ti-icon-h-2; } .#{$ti-prefix}-h-3:before { content: $ti-icon-h-3; } @@ -4847,6 +4937,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-health-recognition:before { content: $ti-icon-health-recognition; } .#{$ti-prefix}-heart:before { content: $ti-icon-heart; } .#{$ti-prefix}-heart-broken:before { content: $ti-icon-heart-broken; } +.#{$ti-prefix}-heart-filled:before { content: $ti-icon-heart-filled; } .#{$ti-prefix}-heart-handshake:before { content: $ti-icon-heart-handshake; } .#{$ti-prefix}-heart-minus:before { content: $ti-icon-heart-minus; } .#{$ti-prefix}-heart-off:before { content: $ti-icon-heart-off; } @@ -4863,6 +4954,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-help-off:before { content: $ti-icon-help-off; } .#{$ti-prefix}-hexagon:before { content: $ti-icon-hexagon; } .#{$ti-prefix}-hexagon-3d:before { content: $ti-icon-hexagon-3d; } +.#{$ti-prefix}-hexagon-filled:before { content: $ti-icon-hexagon-filled; } .#{$ti-prefix}-hexagon-letter-a:before { content: $ti-icon-hexagon-letter-a; } .#{$ti-prefix}-hexagon-letter-b:before { content: $ti-icon-hexagon-letter-b; } .#{$ti-prefix}-hexagon-letter-c:before { content: $ti-icon-hexagon-letter-c; } @@ -4987,6 +5079,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-jacket:before { content: $ti-icon-jacket; } .#{$ti-prefix}-jetpack:before { content: $ti-icon-jetpack; } .#{$ti-prefix}-jewish-star:before { content: $ti-icon-jewish-star; } +.#{$ti-prefix}-jewish-star-filled:before { content: $ti-icon-jewish-star-filled; } .#{$ti-prefix}-jpg:before { content: $ti-icon-jpg; } .#{$ti-prefix}-jump-rope:before { content: $ti-icon-jump-rope; } .#{$ti-prefix}-karate:before { content: $ti-icon-karate; } @@ -5118,6 +5211,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-loader-quarter:before { content: $ti-icon-loader-quarter; } .#{$ti-prefix}-location:before { content: $ti-icon-location; } .#{$ti-prefix}-location-broken:before { content: $ti-icon-location-broken; } +.#{$ti-prefix}-location-filled:before { content: $ti-icon-location-filled; } .#{$ti-prefix}-location-off:before { content: $ti-icon-location-off; } .#{$ti-prefix}-lock:before { content: $ti-icon-lock; } .#{$ti-prefix}-lock-access:before { content: $ti-icon-lock-access; } @@ -5160,6 +5254,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-map-2:before { content: $ti-icon-map-2; } .#{$ti-prefix}-map-off:before { content: $ti-icon-map-off; } .#{$ti-prefix}-map-pin:before { content: $ti-icon-map-pin; } +.#{$ti-prefix}-map-pin-filled:before { content: $ti-icon-map-pin-filled; } .#{$ti-prefix}-map-pin-off:before { content: $ti-icon-map-pin-off; } .#{$ti-prefix}-map-pins:before { content: $ti-icon-map-pins; } .#{$ti-prefix}-map-search:before { content: $ti-icon-map-search; } @@ -5213,6 +5308,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-medal:before { content: $ti-icon-medal; } .#{$ti-prefix}-medal-2:before { content: $ti-icon-medal-2; } .#{$ti-prefix}-medical-cross:before { content: $ti-icon-medical-cross; } +.#{$ti-prefix}-medical-cross-filled:before { content: $ti-icon-medical-cross-filled; } .#{$ti-prefix}-medical-cross-off:before { content: $ti-icon-medical-cross-off; } .#{$ti-prefix}-medicine-syrup:before { content: $ti-icon-medicine-syrup; } .#{$ti-prefix}-meeple:before { content: $ti-icon-meeple; } @@ -5228,6 +5324,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-message-chatbot:before { content: $ti-icon-message-chatbot; } .#{$ti-prefix}-message-circle:before { content: $ti-icon-message-circle; } .#{$ti-prefix}-message-circle-2:before { content: $ti-icon-message-circle-2; } +.#{$ti-prefix}-message-circle-2-filled:before { content: $ti-icon-message-circle-2-filled; } .#{$ti-prefix}-message-circle-off:before { content: $ti-icon-message-circle-off; } .#{$ti-prefix}-message-code:before { content: $ti-icon-message-code; } .#{$ti-prefix}-message-dots:before { content: $ti-icon-message-dots; } @@ -5242,6 +5339,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-meteor:before { content: $ti-icon-meteor; } .#{$ti-prefix}-meteor-off:before { content: $ti-icon-meteor-off; } .#{$ti-prefix}-mickey:before { content: $ti-icon-mickey; } +.#{$ti-prefix}-mickey-filled:before { content: $ti-icon-mickey-filled; } .#{$ti-prefix}-microphone:before { content: $ti-icon-microphone; } .#{$ti-prefix}-microphone-2:before { content: $ti-icon-microphone-2; } .#{$ti-prefix}-microphone-2-off:before { content: $ti-icon-microphone-2-off; } @@ -5298,6 +5396,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-mood-xd:before { content: $ti-icon-mood-xd; } .#{$ti-prefix}-moon:before { content: $ti-icon-moon; } .#{$ti-prefix}-moon-2:before { content: $ti-icon-moon-2; } +.#{$ti-prefix}-moon-filled:before { content: $ti-icon-moon-filled; } .#{$ti-prefix}-moon-off:before { content: $ti-icon-moon-off; } .#{$ti-prefix}-moon-stars:before { content: $ti-icon-moon-stars; } .#{$ti-prefix}-moped:before { content: $ti-icon-moped; } @@ -5321,6 +5420,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-music:before { content: $ti-icon-music; } .#{$ti-prefix}-music-off:before { content: $ti-icon-music-off; } .#{$ti-prefix}-navigation:before { content: $ti-icon-navigation; } +.#{$ti-prefix}-navigation-filled:before { content: $ti-icon-navigation-filled; } .#{$ti-prefix}-navigation-off:before { content: $ti-icon-navigation-off; } .#{$ti-prefix}-needle:before { content: $ti-icon-needle; } .#{$ti-prefix}-needle-thread:before { content: $ti-icon-needle-thread; } @@ -5357,6 +5457,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-numbers:before { content: $ti-icon-numbers; } .#{$ti-prefix}-nurse:before { content: $ti-icon-nurse; } .#{$ti-prefix}-octagon:before { content: $ti-icon-octagon; } +.#{$ti-prefix}-octagon-filled:before { content: $ti-icon-octagon-filled; } .#{$ti-prefix}-octagon-off:before { content: $ti-icon-octagon-off; } .#{$ti-prefix}-old:before { content: $ti-icon-old; } .#{$ti-prefix}-olympics:before { content: $ti-icon-olympics; } @@ -5366,7 +5467,9 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-outbound:before { content: $ti-icon-outbound; } .#{$ti-prefix}-outlet:before { content: $ti-icon-outlet; } .#{$ti-prefix}-oval:before { content: $ti-icon-oval; } +.#{$ti-prefix}-oval-filled:before { content: $ti-icon-oval-filled; } .#{$ti-prefix}-oval-vertical:before { content: $ti-icon-oval-vertical; } +.#{$ti-prefix}-oval-vertical-filled:before { content: $ti-icon-oval-vertical-filled; } .#{$ti-prefix}-overline:before { content: $ti-icon-overline; } .#{$ti-prefix}-package:before { content: $ti-icon-package; } .#{$ti-prefix}-package-off:before { content: $ti-icon-package-off; } @@ -5394,6 +5497,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-parking-off:before { content: $ti-icon-parking-off; } .#{$ti-prefix}-password:before { content: $ti-icon-password; } .#{$ti-prefix}-paw:before { content: $ti-icon-paw; } +.#{$ti-prefix}-paw-filled:before { content: $ti-icon-paw-filled; } .#{$ti-prefix}-paw-off:before { content: $ti-icon-paw-off; } .#{$ti-prefix}-peace:before { content: $ti-icon-peace; } .#{$ti-prefix}-pencil:before { content: $ti-icon-pencil; } @@ -5402,8 +5506,11 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-pencil-plus:before { content: $ti-icon-pencil-plus; } .#{$ti-prefix}-pennant:before { content: $ti-icon-pennant; } .#{$ti-prefix}-pennant-2:before { content: $ti-icon-pennant-2; } +.#{$ti-prefix}-pennant-2-filled:before { content: $ti-icon-pennant-2-filled; } +.#{$ti-prefix}-pennant-filled:before { content: $ti-icon-pennant-filled; } .#{$ti-prefix}-pennant-off:before { content: $ti-icon-pennant-off; } .#{$ti-prefix}-pentagon:before { content: $ti-icon-pentagon; } +.#{$ti-prefix}-pentagon-filled:before { content: $ti-icon-pentagon-filled; } .#{$ti-prefix}-pentagon-off:before { content: $ti-icon-pentagon-off; } .#{$ti-prefix}-pentagram:before { content: $ti-icon-pentagram; } .#{$ti-prefix}-pepper:before { content: $ti-icon-pepper; } @@ -5449,8 +5556,10 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-pill-off:before { content: $ti-icon-pill-off; } .#{$ti-prefix}-pills:before { content: $ti-icon-pills; } .#{$ti-prefix}-pin:before { content: $ti-icon-pin; } +.#{$ti-prefix}-pin-filled:before { content: $ti-icon-pin-filled; } .#{$ti-prefix}-ping-pong:before { content: $ti-icon-ping-pong; } .#{$ti-prefix}-pinned:before { content: $ti-icon-pinned; } +.#{$ti-prefix}-pinned-filled:before { content: $ti-icon-pinned-filled; } .#{$ti-prefix}-pinned-off:before { content: $ti-icon-pinned-off; } .#{$ti-prefix}-pizza:before { content: $ti-icon-pizza; } .#{$ti-prefix}-pizza-off:before { content: $ti-icon-pizza-off; } @@ -5470,14 +5579,23 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-play-card:before { content: $ti-icon-play-card; } .#{$ti-prefix}-play-card-off:before { content: $ti-icon-play-card-off; } .#{$ti-prefix}-player-eject:before { content: $ti-icon-player-eject; } +.#{$ti-prefix}-player-eject-filled:before { content: $ti-icon-player-eject-filled; } .#{$ti-prefix}-player-pause:before { content: $ti-icon-player-pause; } +.#{$ti-prefix}-player-pause-filled:before { content: $ti-icon-player-pause-filled; } .#{$ti-prefix}-player-play:before { content: $ti-icon-player-play; } +.#{$ti-prefix}-player-play-filled:before { content: $ti-icon-player-play-filled; } .#{$ti-prefix}-player-record:before { content: $ti-icon-player-record; } +.#{$ti-prefix}-player-record-filled:before { content: $ti-icon-player-record-filled; } .#{$ti-prefix}-player-skip-back:before { content: $ti-icon-player-skip-back; } +.#{$ti-prefix}-player-skip-back-filled:before { content: $ti-icon-player-skip-back-filled; } .#{$ti-prefix}-player-skip-forward:before { content: $ti-icon-player-skip-forward; } +.#{$ti-prefix}-player-skip-forward-filled:before { content: $ti-icon-player-skip-forward-filled; } .#{$ti-prefix}-player-stop:before { content: $ti-icon-player-stop; } +.#{$ti-prefix}-player-stop-filled:before { content: $ti-icon-player-stop-filled; } .#{$ti-prefix}-player-track-next:before { content: $ti-icon-player-track-next; } +.#{$ti-prefix}-player-track-next-filled:before { content: $ti-icon-player-track-next-filled; } .#{$ti-prefix}-player-track-prev:before { content: $ti-icon-player-track-prev; } +.#{$ti-prefix}-player-track-prev-filled:before { content: $ti-icon-player-track-prev-filled; } .#{$ti-prefix}-playlist:before { content: $ti-icon-playlist; } .#{$ti-prefix}-playlist-add:before { content: $ti-icon-playlist-add; } .#{$ti-prefix}-playlist-off:before { content: $ti-icon-playlist-off; } @@ -5496,6 +5614,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-podium:before { content: $ti-icon-podium; } .#{$ti-prefix}-podium-off:before { content: $ti-icon-podium-off; } .#{$ti-prefix}-point:before { content: $ti-icon-point; } +.#{$ti-prefix}-point-filled:before { content: $ti-icon-point-filled; } .#{$ti-prefix}-point-off:before { content: $ti-icon-point-off; } .#{$ti-prefix}-pointer:before { content: $ti-icon-pointer; } .#{$ti-prefix}-pokeball:before { content: $ti-icon-pokeball; } @@ -5523,6 +5642,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-pumpkin-scary:before { content: $ti-icon-pumpkin-scary; } .#{$ti-prefix}-puzzle:before { content: $ti-icon-puzzle; } .#{$ti-prefix}-puzzle-2:before { content: $ti-icon-puzzle-2; } +.#{$ti-prefix}-puzzle-filled:before { content: $ti-icon-puzzle-filled; } .#{$ti-prefix}-puzzle-off:before { content: $ti-icon-puzzle-off; } .#{$ti-prefix}-pyramid:before { content: $ti-icon-pyramid; } .#{$ti-prefix}-pyramid-off:before { content: $ti-icon-pyramid-off; } @@ -5561,7 +5681,9 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-record-mail:before { content: $ti-icon-record-mail; } .#{$ti-prefix}-record-mail-off:before { content: $ti-icon-record-mail-off; } .#{$ti-prefix}-rectangle:before { content: $ti-icon-rectangle; } +.#{$ti-prefix}-rectangle-filled:before { content: $ti-icon-rectangle-filled; } .#{$ti-prefix}-rectangle-vertical:before { content: $ti-icon-rectangle-vertical; } +.#{$ti-prefix}-rectangle-vertical-filled:before { content: $ti-icon-rectangle-vertical-filled; } .#{$ti-prefix}-recycle:before { content: $ti-icon-recycle; } .#{$ti-prefix}-recycle-off:before { content: $ti-icon-recycle-off; } .#{$ti-prefix}-refresh:before { content: $ti-icon-refresh; } @@ -5579,6 +5701,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-repeat-off:before { content: $ti-icon-repeat-off; } .#{$ti-prefix}-repeat-once:before { content: $ti-icon-repeat-once; } .#{$ti-prefix}-replace:before { content: $ti-icon-replace; } +.#{$ti-prefix}-replace-filled:before { content: $ti-icon-replace-filled; } .#{$ti-prefix}-replace-off:before { content: $ti-icon-replace-off; } .#{$ti-prefix}-report:before { content: $ti-icon-report; } .#{$ti-prefix}-report-analytics:before { content: $ti-icon-report-analytics; } @@ -5601,6 +5724,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-rollercoaster:before { content: $ti-icon-rollercoaster; } .#{$ti-prefix}-rollercoaster-off:before { content: $ti-icon-rollercoaster-off; } .#{$ti-prefix}-rosette:before { content: $ti-icon-rosette; } +.#{$ti-prefix}-rosette-filled:before { content: $ti-icon-rosette-filled; } .#{$ti-prefix}-rosette-number-0:before { content: $ti-icon-rosette-number-0; } .#{$ti-prefix}-rosette-number-1:before { content: $ti-icon-rosette-number-1; } .#{$ti-prefix}-rosette-number-2:before { content: $ti-icon-rosette-number-2; } @@ -5697,6 +5821,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-settings:before { content: $ti-icon-settings; } .#{$ti-prefix}-settings-2:before { content: $ti-icon-settings-2; } .#{$ti-prefix}-settings-automation:before { content: $ti-icon-settings-automation; } +.#{$ti-prefix}-settings-filled:before { content: $ti-icon-settings-filled; } .#{$ti-prefix}-settings-off:before { content: $ti-icon-settings-off; } .#{$ti-prefix}-shadow:before { content: $ti-icon-shadow; } .#{$ti-prefix}-shadow-off:before { content: $ti-icon-shadow-off; } @@ -5710,6 +5835,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-shield-check:before { content: $ti-icon-shield-check; } .#{$ti-prefix}-shield-checkered:before { content: $ti-icon-shield-checkered; } .#{$ti-prefix}-shield-chevron:before { content: $ti-icon-shield-chevron; } +.#{$ti-prefix}-shield-filled:before { content: $ti-icon-shield-filled; } .#{$ti-prefix}-shield-half:before { content: $ti-icon-shield-half; } .#{$ti-prefix}-shield-half-filled:before { content: $ti-icon-shield-half-filled; } .#{$ti-prefix}-shield-lock:before { content: $ti-icon-shield-lock; } @@ -5718,6 +5844,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-ship:before { content: $ti-icon-ship; } .#{$ti-prefix}-ship-off:before { content: $ti-icon-ship-off; } .#{$ti-prefix}-shirt:before { content: $ti-icon-shirt; } +.#{$ti-prefix}-shirt-filled:before { content: $ti-icon-shirt-filled; } .#{$ti-prefix}-shirt-off:before { content: $ti-icon-shirt-off; } .#{$ti-prefix}-shirt-sport:before { content: $ti-icon-shirt-sport; } .#{$ti-prefix}-shoe:before { content: $ti-icon-shoe; } @@ -5731,7 +5858,9 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-shovel:before { content: $ti-icon-shovel; } .#{$ti-prefix}-shredder:before { content: $ti-icon-shredder; } .#{$ti-prefix}-sign-left:before { content: $ti-icon-sign-left; } +.#{$ti-prefix}-sign-left-filled:before { content: $ti-icon-sign-left-filled; } .#{$ti-prefix}-sign-right:before { content: $ti-icon-sign-right; } +.#{$ti-prefix}-sign-right-filled:before { content: $ti-icon-sign-right-filled; } .#{$ti-prefix}-signal-3g:before { content: $ti-icon-signal-3g; } .#{$ti-prefix}-signal-4g:before { content: $ti-icon-signal-4g; } .#{$ti-prefix}-signal-4g-plus:before { content: $ti-icon-signal-4g-plus; } @@ -5782,6 +5911,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-spacing-horizontal:before { content: $ti-icon-spacing-horizontal; } .#{$ti-prefix}-spacing-vertical:before { content: $ti-icon-spacing-vertical; } .#{$ti-prefix}-spade:before { content: $ti-icon-spade; } +.#{$ti-prefix}-spade-filled:before { content: $ti-icon-spade-filled; } .#{$ti-prefix}-speakerphone:before { content: $ti-icon-speakerphone; } .#{$ti-prefix}-speedboat:before { content: $ti-icon-speedboat; } .#{$ti-prefix}-spider:before { content: $ti-icon-spider; } @@ -5863,6 +5993,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-square-root:before { content: $ti-icon-square-root; } .#{$ti-prefix}-square-root-2:before { content: $ti-icon-square-root-2; } .#{$ti-prefix}-square-rotated:before { content: $ti-icon-square-rotated; } +.#{$ti-prefix}-square-rotated-filled:before { content: $ti-icon-square-rotated-filled; } .#{$ti-prefix}-square-rotated-forbid:before { content: $ti-icon-square-rotated-forbid; } .#{$ti-prefix}-square-rotated-forbid-2:before { content: $ti-icon-square-rotated-forbid-2; } .#{$ti-prefix}-square-rotated-off:before { content: $ti-icon-square-rotated-off; } @@ -5880,6 +6011,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-square-rounded-chevrons-left:before { content: $ti-icon-square-rounded-chevrons-left; } .#{$ti-prefix}-square-rounded-chevrons-right:before { content: $ti-icon-square-rounded-chevrons-right; } .#{$ti-prefix}-square-rounded-chevrons-up:before { content: $ti-icon-square-rounded-chevrons-up; } +.#{$ti-prefix}-square-rounded-filled:before { content: $ti-icon-square-rounded-filled; } .#{$ti-prefix}-square-rounded-letter-a:before { content: $ti-icon-square-rounded-letter-a; } .#{$ti-prefix}-square-rounded-letter-b:before { content: $ti-icon-square-rounded-letter-b; } .#{$ti-prefix}-square-rounded-letter-c:before { content: $ti-icon-square-rounded-letter-c; } @@ -5933,9 +6065,12 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-stairs-down:before { content: $ti-icon-stairs-down; } .#{$ti-prefix}-stairs-up:before { content: $ti-icon-stairs-up; } .#{$ti-prefix}-star:before { content: $ti-icon-star; } +.#{$ti-prefix}-star-filled:before { content: $ti-icon-star-filled; } .#{$ti-prefix}-star-half:before { content: $ti-icon-star-half; } +.#{$ti-prefix}-star-half-filled:before { content: $ti-icon-star-half-filled; } .#{$ti-prefix}-star-off:before { content: $ti-icon-star-off; } .#{$ti-prefix}-stars:before { content: $ti-icon-stars; } +.#{$ti-prefix}-stars-filled:before { content: $ti-icon-stars-filled; } .#{$ti-prefix}-stars-off:before { content: $ti-icon-stars-off; } .#{$ti-prefix}-status-change:before { content: $ti-icon-status-change; } .#{$ti-prefix}-steam:before { content: $ti-icon-steam; } @@ -5957,6 +6092,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-sum:before { content: $ti-icon-sum; } .#{$ti-prefix}-sum-off:before { content: $ti-icon-sum-off; } .#{$ti-prefix}-sun:before { content: $ti-icon-sun; } +.#{$ti-prefix}-sun-filled:before { content: $ti-icon-sun-filled; } .#{$ti-prefix}-sun-high:before { content: $ti-icon-sun-high; } .#{$ti-prefix}-sun-low:before { content: $ti-icon-sun-low; } .#{$ti-prefix}-sun-moon:before { content: $ti-icon-sun-moon; } @@ -6034,8 +6170,10 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-texture:before { content: $ti-icon-texture; } .#{$ti-prefix}-thermometer:before { content: $ti-icon-thermometer; } .#{$ti-prefix}-thumb-down:before { content: $ti-icon-thumb-down; } +.#{$ti-prefix}-thumb-down-filled:before { content: $ti-icon-thumb-down-filled; } .#{$ti-prefix}-thumb-down-off:before { content: $ti-icon-thumb-down-off; } .#{$ti-prefix}-thumb-up:before { content: $ti-icon-thumb-up; } +.#{$ti-prefix}-thumb-up-filled:before { content: $ti-icon-thumb-up-filled; } .#{$ti-prefix}-thumb-up-off:before { content: $ti-icon-thumb-up-off; } .#{$ti-prefix}-tic-tac:before { content: $ti-icon-tic-tac; } .#{$ti-prefix}-ticket:before { content: $ti-icon-ticket; } @@ -6093,6 +6231,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-transfer-in:before { content: $ti-icon-transfer-in; } .#{$ti-prefix}-transfer-out:before { content: $ti-icon-transfer-out; } .#{$ti-prefix}-transform:before { content: $ti-icon-transform; } +.#{$ti-prefix}-transform-filled:before { content: $ti-icon-transform-filled; } .#{$ti-prefix}-transition-bottom:before { content: $ti-icon-transition-bottom; } .#{$ti-prefix}-transition-left:before { content: $ti-icon-transition-left; } .#{$ti-prefix}-transition-right:before { content: $ti-icon-transition-right; } @@ -6110,13 +6249,16 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-trending-up-2:before { content: $ti-icon-trending-up-2; } .#{$ti-prefix}-trending-up-3:before { content: $ti-icon-trending-up-3; } .#{$ti-prefix}-triangle:before { content: $ti-icon-triangle; } +.#{$ti-prefix}-triangle-filled:before { content: $ti-icon-triangle-filled; } .#{$ti-prefix}-triangle-inverted:before { content: $ti-icon-triangle-inverted; } +.#{$ti-prefix}-triangle-inverted-filled:before { content: $ti-icon-triangle-inverted-filled; } .#{$ti-prefix}-triangle-off:before { content: $ti-icon-triangle-off; } .#{$ti-prefix}-triangle-square-circle:before { content: $ti-icon-triangle-square-circle; } .#{$ti-prefix}-triangles:before { content: $ti-icon-triangles; } .#{$ti-prefix}-trident:before { content: $ti-icon-trident; } .#{$ti-prefix}-trolley:before { content: $ti-icon-trolley; } .#{$ti-prefix}-trophy:before { content: $ti-icon-trophy; } +.#{$ti-prefix}-trophy-filled:before { content: $ti-icon-trophy-filled; } .#{$ti-prefix}-trophy-off:before { content: $ti-icon-trophy-off; } .#{$ti-prefix}-trowel:before { content: $ti-icon-trowel; } .#{$ti-prefix}-truck:before { content: $ti-icon-truck; } @@ -6130,6 +6272,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-uf-off:before { content: $ti-icon-uf-off; } .#{$ti-prefix}-ufo:before { content: $ti-icon-ufo; } .#{$ti-prefix}-umbrella:before { content: $ti-icon-umbrella; } +.#{$ti-prefix}-umbrella-filled:before { content: $ti-icon-umbrella-filled; } .#{$ti-prefix}-umbrella-off:before { content: $ti-icon-umbrella-off; } .#{$ti-prefix}-underline:before { content: $ti-icon-underline; } .#{$ti-prefix}-unlink:before { content: $ti-icon-unlink; } @@ -6168,6 +6311,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-vector-triangle-off:before { content: $ti-icon-vector-triangle-off; } .#{$ti-prefix}-venus:before { content: $ti-icon-venus; } .#{$ti-prefix}-versions:before { content: $ti-icon-versions; } +.#{$ti-prefix}-versions-filled:before { content: $ti-icon-versions-filled; } .#{$ti-prefix}-versions-off:before { content: $ti-icon-versions-off; } .#{$ti-prefix}-video:before { content: $ti-icon-video; } .#{$ti-prefix}-video-minus:before { content: $ti-icon-video-minus; } @@ -6244,6 +6388,7 @@ $ti-icon-zzz-off: unicode('f440'); .#{$ti-prefix}-wind:before { content: $ti-icon-wind; } .#{$ti-prefix}-wind-off:before { content: $ti-icon-wind-off; } .#{$ti-prefix}-windmill:before { content: $ti-icon-windmill; } +.#{$ti-prefix}-windmill-filled:before { content: $ti-icon-windmill-filled; } .#{$ti-prefix}-windmill-off:before { content: $ti-icon-windmill-off; } .#{$ti-prefix}-window:before { content: $ti-icon-window; } .#{$ti-prefix}-window-maximize:before { content: $ti-icon-window-maximize; } diff --git a/packages/icons/README.md b/packages/icons/README.md new file mode 100644 index 000000000..e5b4c488a --- /dev/null +++ b/packages/icons/README.md @@ -0,0 +1,117 @@ +# Tabler Icons + +

+ Tabler Icons +

+ +

+ A set of 3204 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. +

+ +

+ Browse all icons at tabler-icons.io → +

+ +

+ Latest Release + License +

+ +## Sponsors + +**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)** + + + + + +### Sponsor Tabler + +Sponsor Tabler + +## Installation + +``` +yarn add @tabler/icons +``` + +or + +``` +npm install @tabler/icons +``` + +or + +``` +pnpm install @tabler/icons +``` + +or just [download from Github](https://github.com/tabler/tabler-icons/releases). + +## Usage + +All icons are built with SVG, so you can place them as ``, `background-image` and inline in HTML code. + +### HTML image + +If you load an icon as an image, you can modify its size using CSS. + +```html +icon title +``` + +### Inline HTML + +You can paste the content of the icon file into your HTML code to display it on the page. + +```html + + + ... + + Click me + +``` + +Thanks to that, you can change the size, color and the `stroke-width` of the icons with CSS code. + +```css +.icon-tabler { + color: red; + width: 32px; + height: 32px; + stroke-width: 1.25; +} +``` + +### SVG sprite + +Add an icon to be displayed on your page with the following markup (`activity` in the above example can be replaced with any valid icon name): + +```html + + + +``` + +## Contributing + +For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md). + +Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons/README.md) + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). diff --git a/packages/icons/build.mjs b/packages/icons/build.mjs new file mode 100644 index 000000000..e0ae0ebe7 --- /dev/null +++ b/packages/icons/build.mjs @@ -0,0 +1,61 @@ +import fs from 'fs' +import { createDirectory, readSvgs } from '../../.build/helpers.mjs' +import { buildIcons } from '../../.build/build-icons.mjs' +import { stringify } from 'svgson' + +const svgFiles = readSvgs() + +const buildSprite = () => { + let svgContent = '' + svgFiles.forEach(function(file, i) { + const svgFileContent = file.contents.replace(/]+>/g, '').replace(/<\/svg>/g, '').replace(/\n+/g, '').replace(/>\s+<').trim() + svgContent += `${svgFileContent}` + }) + + let svg = `${svgContent}` + + fs.writeFileSync('tabler-sprite.svg', svg) + fs.writeFileSync('tabler-sprite-nostroke.svg', svg.replace(/stroke-width="2"\s/g, '')) +} + +const buildNodes = () => { + const iconNodes = svgFiles.reduce((acc, { name, obj }) => { + acc[name] = obj.children.map(({ name, attributes }) => [name, attributes]); + + return acc; + }, {}); + + const iconNodesStringified = JSON.stringify(iconNodes, null, 2); + + fs.writeFileSync(`./tabler-nodes.json`, iconNodesStringified); +} + +const componentTemplate = ({ + namePascal, + svg +}) => `\ +export default ${namePascal} => \`${svg.contents}\`;`; + +const indexItemTemplate = ({ + name, + namePascal +}) => `export { default as ${namePascal} } from './icons/${name}';` + +const typeDefinitionsTemplate = () => `// Generated icons` + +const indexTypeTemplate = ({ + namePascal +}) => `export declare const ${namePascal}: string;` + + + +buildSprite() +buildNodes() +buildIcons({ + name: 'icons', + componentTemplate, + indexItemTemplate, + typeDefinitionsTemplate, + indexTypeTemplate, + pretty: false +}) diff --git a/packages/icons/icons/123.svg b/packages/icons/icons/123.svg new file mode 100644 index 000000000..62040b663 --- /dev/null +++ b/packages/icons/icons/123.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/24-hours.svg b/packages/icons/icons/24-hours.svg new file mode 100644 index 000000000..9c17c5865 --- /dev/null +++ b/packages/icons/icons/24-hours.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/2fa.svg b/packages/icons/icons/2fa.svg new file mode 100644 index 000000000..37c05f70a --- /dev/null +++ b/packages/icons/icons/2fa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/360-view.svg b/packages/icons/icons/360-view.svg new file mode 100644 index 000000000..e29752832 --- /dev/null +++ b/packages/icons/icons/360-view.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/360.svg b/packages/icons/icons/360.svg new file mode 100644 index 000000000..9bdfee5e9 --- /dev/null +++ b/packages/icons/icons/360.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/3d-cube-sphere-off.svg b/packages/icons/icons/3d-cube-sphere-off.svg new file mode 100644 index 000000000..9b2348647 --- /dev/null +++ b/packages/icons/icons/3d-cube-sphere-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/3d-cube-sphere.svg b/packages/icons/icons/3d-cube-sphere.svg new file mode 100644 index 000000000..219c6b98a --- /dev/null +++ b/packages/icons/icons/3d-cube-sphere.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/3d-rotate.svg b/packages/icons/icons/3d-rotate.svg new file mode 100644 index 000000000..c4443a86a --- /dev/null +++ b/packages/icons/icons/3d-rotate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/a-b-2.svg b/packages/icons/icons/a-b-2.svg new file mode 100644 index 000000000..25788d692 --- /dev/null +++ b/packages/icons/icons/a-b-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/a-b-off.svg b/packages/icons/icons/a-b-off.svg new file mode 100644 index 000000000..89c201d0b --- /dev/null +++ b/packages/icons/icons/a-b-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/a-b.svg b/packages/icons/icons/a-b.svg new file mode 100644 index 000000000..9ae4b7583 --- /dev/null +++ b/packages/icons/icons/a-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/abacus-off.svg b/packages/icons/icons/abacus-off.svg new file mode 100644 index 000000000..20a8a43f3 --- /dev/null +++ b/packages/icons/icons/abacus-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/abacus.svg b/packages/icons/icons/abacus.svg new file mode 100644 index 000000000..d75687244 --- /dev/null +++ b/packages/icons/icons/abacus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/abc.svg b/packages/icons/icons/abc.svg new file mode 100644 index 000000000..01ab3dfea --- /dev/null +++ b/packages/icons/icons/abc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/access-point-off.svg b/packages/icons/icons/access-point-off.svg new file mode 100644 index 000000000..e3abd0702 --- /dev/null +++ b/packages/icons/icons/access-point-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/access-point.svg b/packages/icons/icons/access-point.svg new file mode 100644 index 000000000..2833f9e90 --- /dev/null +++ b/packages/icons/icons/access-point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/accessible-off.svg b/packages/icons/icons/accessible-off.svg new file mode 100644 index 000000000..f7a585330 --- /dev/null +++ b/packages/icons/icons/accessible-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/accessible.svg b/packages/icons/icons/accessible.svg new file mode 100644 index 000000000..e2b6d18cd --- /dev/null +++ b/packages/icons/icons/accessible.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/activity-heartbeat.svg b/packages/icons/icons/activity-heartbeat.svg new file mode 100644 index 000000000..1c0d05679 --- /dev/null +++ b/packages/icons/icons/activity-heartbeat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/activity.svg b/packages/icons/icons/activity.svg new file mode 100644 index 000000000..302535935 --- /dev/null +++ b/packages/icons/icons/activity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ad-2.svg b/packages/icons/icons/ad-2.svg new file mode 100644 index 000000000..b79c29ff8 --- /dev/null +++ b/packages/icons/icons/ad-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ad-off.svg b/packages/icons/icons/ad-off.svg new file mode 100644 index 000000000..47c286385 --- /dev/null +++ b/packages/icons/icons/ad-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ad.svg b/packages/icons/icons/ad.svg new file mode 100644 index 000000000..afca20812 --- /dev/null +++ b/packages/icons/icons/ad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/address-book-off.svg b/packages/icons/icons/address-book-off.svg new file mode 100644 index 000000000..88f253860 --- /dev/null +++ b/packages/icons/icons/address-book-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/address-book.svg b/packages/icons/icons/address-book.svg new file mode 100644 index 000000000..2cddf4eba --- /dev/null +++ b/packages/icons/icons/address-book.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/adjustments-alt.svg b/packages/icons/icons/adjustments-alt.svg new file mode 100644 index 000000000..55268d1ba --- /dev/null +++ b/packages/icons/icons/adjustments-alt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/adjustments-horizontal.svg b/packages/icons/icons/adjustments-horizontal.svg new file mode 100644 index 000000000..b7ab188c0 --- /dev/null +++ b/packages/icons/icons/adjustments-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/adjustments-off.svg b/packages/icons/icons/adjustments-off.svg new file mode 100644 index 000000000..db4501279 --- /dev/null +++ b/packages/icons/icons/adjustments-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/adjustments.svg b/packages/icons/icons/adjustments.svg new file mode 100644 index 000000000..52599e50d --- /dev/null +++ b/packages/icons/icons/adjustments.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/aerial-lift.svg b/packages/icons/icons/aerial-lift.svg new file mode 100644 index 000000000..78597857f --- /dev/null +++ b/packages/icons/icons/aerial-lift.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/affiliate.svg b/packages/icons/icons/affiliate.svg new file mode 100644 index 000000000..af468e8bc --- /dev/null +++ b/packages/icons/icons/affiliate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/air-balloon.svg b/packages/icons/icons/air-balloon.svg new file mode 100644 index 000000000..b3ad51b73 --- /dev/null +++ b/packages/icons/icons/air-balloon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/air-conditioning-disabled.svg b/packages/icons/icons/air-conditioning-disabled.svg new file mode 100644 index 000000000..9ec1bac4f --- /dev/null +++ b/packages/icons/icons/air-conditioning-disabled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/air-conditioning.svg b/packages/icons/icons/air-conditioning.svg new file mode 100644 index 000000000..f915b89c4 --- /dev/null +++ b/packages/icons/icons/air-conditioning.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alarm-minus.svg b/packages/icons/icons/alarm-minus.svg new file mode 100644 index 000000000..6c3bbb31c --- /dev/null +++ b/packages/icons/icons/alarm-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alarm-off.svg b/packages/icons/icons/alarm-off.svg new file mode 100644 index 000000000..e015374e2 --- /dev/null +++ b/packages/icons/icons/alarm-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alarm-plus.svg b/packages/icons/icons/alarm-plus.svg new file mode 100644 index 000000000..791b5e2b6 --- /dev/null +++ b/packages/icons/icons/alarm-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alarm-snooze.svg b/packages/icons/icons/alarm-snooze.svg new file mode 100644 index 000000000..537d70e1f --- /dev/null +++ b/packages/icons/icons/alarm-snooze.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alarm.svg b/packages/icons/icons/alarm.svg new file mode 100644 index 000000000..938324372 --- /dev/null +++ b/packages/icons/icons/alarm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/album-off.svg b/packages/icons/icons/album-off.svg new file mode 100644 index 000000000..54fa3caf6 --- /dev/null +++ b/packages/icons/icons/album-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/album.svg b/packages/icons/icons/album.svg new file mode 100644 index 000000000..cab2da7a0 --- /dev/null +++ b/packages/icons/icons/album.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alert-circle.svg b/packages/icons/icons/alert-circle.svg new file mode 100644 index 000000000..7b5222efb --- /dev/null +++ b/packages/icons/icons/alert-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alert-octagon.svg b/packages/icons/icons/alert-octagon.svg new file mode 100644 index 000000000..b43925591 --- /dev/null +++ b/packages/icons/icons/alert-octagon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alert-triangle.svg b/packages/icons/icons/alert-triangle.svg new file mode 100644 index 000000000..44d102301 --- /dev/null +++ b/packages/icons/icons/alert-triangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alien.svg b/packages/icons/icons/alien.svg new file mode 100644 index 000000000..330ccf12f --- /dev/null +++ b/packages/icons/icons/alien.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-bottom-center.svg b/packages/icons/icons/align-box-bottom-center.svg new file mode 100644 index 000000000..09228a651 --- /dev/null +++ b/packages/icons/icons/align-box-bottom-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-bottom-left.svg b/packages/icons/icons/align-box-bottom-left.svg new file mode 100644 index 000000000..f9b2af612 --- /dev/null +++ b/packages/icons/icons/align-box-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-bottom-right.svg b/packages/icons/icons/align-box-bottom-right.svg new file mode 100644 index 000000000..5a9e6fc73 --- /dev/null +++ b/packages/icons/icons/align-box-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-left-bottom.svg b/packages/icons/icons/align-box-left-bottom.svg new file mode 100644 index 000000000..cb073537c --- /dev/null +++ b/packages/icons/icons/align-box-left-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-left-middle.svg b/packages/icons/icons/align-box-left-middle.svg new file mode 100644 index 000000000..72f637793 --- /dev/null +++ b/packages/icons/icons/align-box-left-middle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-left-top.svg b/packages/icons/icons/align-box-left-top.svg new file mode 100644 index 000000000..f342931a9 --- /dev/null +++ b/packages/icons/icons/align-box-left-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-right-bottom.svg b/packages/icons/icons/align-box-right-bottom.svg new file mode 100644 index 000000000..edfdc53f1 --- /dev/null +++ b/packages/icons/icons/align-box-right-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-right-middle.svg b/packages/icons/icons/align-box-right-middle.svg new file mode 100644 index 000000000..2513ad977 --- /dev/null +++ b/packages/icons/icons/align-box-right-middle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-right-top.svg b/packages/icons/icons/align-box-right-top.svg new file mode 100644 index 000000000..0a9290ebc --- /dev/null +++ b/packages/icons/icons/align-box-right-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-top-center.svg b/packages/icons/icons/align-box-top-center.svg new file mode 100644 index 000000000..ac9d3826f --- /dev/null +++ b/packages/icons/icons/align-box-top-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-top-left.svg b/packages/icons/icons/align-box-top-left.svg new file mode 100644 index 000000000..74e44e3d4 --- /dev/null +++ b/packages/icons/icons/align-box-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-box-top-right.svg b/packages/icons/icons/align-box-top-right.svg new file mode 100644 index 000000000..07a5498c2 --- /dev/null +++ b/packages/icons/icons/align-box-top-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-center.svg b/packages/icons/icons/align-center.svg new file mode 100644 index 000000000..d4947a432 --- /dev/null +++ b/packages/icons/icons/align-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-justified.svg b/packages/icons/icons/align-justified.svg new file mode 100644 index 000000000..1febe2b43 --- /dev/null +++ b/packages/icons/icons/align-justified.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-left.svg b/packages/icons/icons/align-left.svg new file mode 100644 index 000000000..23c016e18 --- /dev/null +++ b/packages/icons/icons/align-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/align-right.svg b/packages/icons/icons/align-right.svg new file mode 100644 index 000000000..b8d65657d --- /dev/null +++ b/packages/icons/icons/align-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alpha.svg b/packages/icons/icons/alpha.svg new file mode 100644 index 000000000..98bb0cf21 --- /dev/null +++ b/packages/icons/icons/alpha.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alphabet-cyrillic.svg b/packages/icons/icons/alphabet-cyrillic.svg new file mode 100644 index 000000000..46a2605d4 --- /dev/null +++ b/packages/icons/icons/alphabet-cyrillic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alphabet-greek.svg b/packages/icons/icons/alphabet-greek.svg new file mode 100644 index 000000000..8b96c0973 --- /dev/null +++ b/packages/icons/icons/alphabet-greek.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/alphabet-latin.svg b/packages/icons/icons/alphabet-latin.svg new file mode 100644 index 000000000..1f5bc54db --- /dev/null +++ b/packages/icons/icons/alphabet-latin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ambulance.svg b/packages/icons/icons/ambulance.svg new file mode 100644 index 000000000..c9e02f10b --- /dev/null +++ b/packages/icons/icons/ambulance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ampersand.svg b/packages/icons/icons/ampersand.svg new file mode 100644 index 000000000..0a6577a85 --- /dev/null +++ b/packages/icons/icons/ampersand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/analyze-off.svg b/packages/icons/icons/analyze-off.svg new file mode 100644 index 000000000..4b11ea3c9 --- /dev/null +++ b/packages/icons/icons/analyze-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/analyze.svg b/packages/icons/icons/analyze.svg new file mode 100644 index 000000000..c84172512 --- /dev/null +++ b/packages/icons/icons/analyze.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/anchor-off.svg b/packages/icons/icons/anchor-off.svg new file mode 100644 index 000000000..c7443c893 --- /dev/null +++ b/packages/icons/icons/anchor-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/anchor.svg b/packages/icons/icons/anchor.svg new file mode 100644 index 000000000..257ede722 --- /dev/null +++ b/packages/icons/icons/anchor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/angle.svg b/packages/icons/icons/angle.svg new file mode 100644 index 000000000..aa0269b83 --- /dev/null +++ b/packages/icons/icons/angle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ankh.svg b/packages/icons/icons/ankh.svg new file mode 100644 index 000000000..e3e674a09 --- /dev/null +++ b/packages/icons/icons/ankh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-1.svg b/packages/icons/icons/antenna-bars-1.svg new file mode 100644 index 000000000..f66f8d435 --- /dev/null +++ b/packages/icons/icons/antenna-bars-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-2.svg b/packages/icons/icons/antenna-bars-2.svg new file mode 100644 index 000000000..ff30e25ad --- /dev/null +++ b/packages/icons/icons/antenna-bars-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-3.svg b/packages/icons/icons/antenna-bars-3.svg new file mode 100644 index 000000000..11f2d62a5 --- /dev/null +++ b/packages/icons/icons/antenna-bars-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-4.svg b/packages/icons/icons/antenna-bars-4.svg new file mode 100644 index 000000000..30eee9ac9 --- /dev/null +++ b/packages/icons/icons/antenna-bars-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-5.svg b/packages/icons/icons/antenna-bars-5.svg new file mode 100644 index 000000000..e2e24e8fc --- /dev/null +++ b/packages/icons/icons/antenna-bars-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-bars-off.svg b/packages/icons/icons/antenna-bars-off.svg new file mode 100644 index 000000000..2bca71c5b --- /dev/null +++ b/packages/icons/icons/antenna-bars-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna-off.svg b/packages/icons/icons/antenna-off.svg new file mode 100644 index 000000000..e487fd7b1 --- /dev/null +++ b/packages/icons/icons/antenna-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/antenna.svg b/packages/icons/icons/antenna.svg new file mode 100644 index 000000000..2b4b94af4 --- /dev/null +++ b/packages/icons/icons/antenna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/aperture-off.svg b/packages/icons/icons/aperture-off.svg new file mode 100644 index 000000000..5b5aa1624 --- /dev/null +++ b/packages/icons/icons/aperture-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/aperture.svg b/packages/icons/icons/aperture.svg new file mode 100644 index 000000000..9cdc008c7 --- /dev/null +++ b/packages/icons/icons/aperture.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/api-app-off.svg b/packages/icons/icons/api-app-off.svg new file mode 100644 index 000000000..3c4c8aaa6 --- /dev/null +++ b/packages/icons/icons/api-app-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/api-app.svg b/packages/icons/icons/api-app.svg new file mode 100644 index 000000000..21be2bad0 --- /dev/null +++ b/packages/icons/icons/api-app.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/api-off.svg b/packages/icons/icons/api-off.svg new file mode 100644 index 000000000..fc79632a6 --- /dev/null +++ b/packages/icons/icons/api-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/api.svg b/packages/icons/icons/api.svg new file mode 100644 index 000000000..1a6e1fcdd --- /dev/null +++ b/packages/icons/icons/api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/app-window.svg b/packages/icons/icons/app-window.svg new file mode 100644 index 000000000..5bd199d10 --- /dev/null +++ b/packages/icons/icons/app-window.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/apple.svg b/packages/icons/icons/apple.svg new file mode 100644 index 000000000..2ffd95640 --- /dev/null +++ b/packages/icons/icons/apple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/apps-off.svg b/packages/icons/icons/apps-off.svg new file mode 100644 index 000000000..adbb96d19 --- /dev/null +++ b/packages/icons/icons/apps-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/apps.svg b/packages/icons/icons/apps.svg new file mode 100644 index 000000000..aea1a886b --- /dev/null +++ b/packages/icons/icons/apps.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/archive-off.svg b/packages/icons/icons/archive-off.svg new file mode 100644 index 000000000..aeec1fd23 --- /dev/null +++ b/packages/icons/icons/archive-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/archive.svg b/packages/icons/icons/archive.svg new file mode 100644 index 000000000..bd80b1b64 --- /dev/null +++ b/packages/icons/icons/archive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/armchair-2-off.svg b/packages/icons/icons/armchair-2-off.svg new file mode 100644 index 000000000..94165bcfb --- /dev/null +++ b/packages/icons/icons/armchair-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/armchair-2.svg b/packages/icons/icons/armchair-2.svg new file mode 100644 index 000000000..5d4ba4261 --- /dev/null +++ b/packages/icons/icons/armchair-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/armchair-off.svg b/packages/icons/icons/armchair-off.svg new file mode 100644 index 000000000..9d69ef00d --- /dev/null +++ b/packages/icons/icons/armchair-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/armchair.svg b/packages/icons/icons/armchair.svg new file mode 100644 index 000000000..c5de5447e --- /dev/null +++ b/packages/icons/icons/armchair.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-content.svg b/packages/icons/icons/arrow-autofit-content.svg new file mode 100644 index 000000000..21b1885c0 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-content.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-down.svg b/packages/icons/icons/arrow-autofit-down.svg new file mode 100644 index 000000000..ceb1ce4d2 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-height.svg b/packages/icons/icons/arrow-autofit-height.svg new file mode 100644 index 000000000..6d87f8867 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-height.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-left.svg b/packages/icons/icons/arrow-autofit-left.svg new file mode 100644 index 000000000..0c50461f6 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-right.svg b/packages/icons/icons/arrow-autofit-right.svg new file mode 100644 index 000000000..0677319d2 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-up.svg b/packages/icons/icons/arrow-autofit-up.svg new file mode 100644 index 000000000..75d3e36fc --- /dev/null +++ b/packages/icons/icons/arrow-autofit-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-autofit-width.svg b/packages/icons/icons/arrow-autofit-width.svg new file mode 100644 index 000000000..617287038 --- /dev/null +++ b/packages/icons/icons/arrow-autofit-width.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-back-up.svg b/packages/icons/icons/arrow-back-up.svg new file mode 100644 index 000000000..d23413d9a --- /dev/null +++ b/packages/icons/icons/arrow-back-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-back.svg b/packages/icons/icons/arrow-back.svg new file mode 100644 index 000000000..b350c2257 --- /dev/null +++ b/packages/icons/icons/arrow-back.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-badge-down.svg b/packages/icons/icons/arrow-badge-down.svg new file mode 100644 index 000000000..37c407620 --- /dev/null +++ b/packages/icons/icons/arrow-badge-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-badge-left.svg b/packages/icons/icons/arrow-badge-left.svg new file mode 100644 index 000000000..fb6a71e98 --- /dev/null +++ b/packages/icons/icons/arrow-badge-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-badge-right.svg b/packages/icons/icons/arrow-badge-right.svg new file mode 100644 index 000000000..ed979e947 --- /dev/null +++ b/packages/icons/icons/arrow-badge-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-badge-up.svg b/packages/icons/icons/arrow-badge-up.svg new file mode 100644 index 000000000..7b9b583d8 --- /dev/null +++ b/packages/icons/icons/arrow-badge-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-down.svg b/packages/icons/icons/arrow-bar-down.svg new file mode 100644 index 000000000..dd2ea8b43 --- /dev/null +++ b/packages/icons/icons/arrow-bar-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-left.svg b/packages/icons/icons/arrow-bar-left.svg new file mode 100644 index 000000000..31decce3a --- /dev/null +++ b/packages/icons/icons/arrow-bar-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-right.svg b/packages/icons/icons/arrow-bar-right.svg new file mode 100644 index 000000000..4a6e8993c --- /dev/null +++ b/packages/icons/icons/arrow-bar-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-to-down.svg b/packages/icons/icons/arrow-bar-to-down.svg new file mode 100644 index 000000000..77ee01a25 --- /dev/null +++ b/packages/icons/icons/arrow-bar-to-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-to-left.svg b/packages/icons/icons/arrow-bar-to-left.svg new file mode 100644 index 000000000..8f5c25701 --- /dev/null +++ b/packages/icons/icons/arrow-bar-to-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-to-right.svg b/packages/icons/icons/arrow-bar-to-right.svg new file mode 100644 index 000000000..13ebbfe57 --- /dev/null +++ b/packages/icons/icons/arrow-bar-to-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-to-up.svg b/packages/icons/icons/arrow-bar-to-up.svg new file mode 100644 index 000000000..5dff8ea3c --- /dev/null +++ b/packages/icons/icons/arrow-bar-to-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bar-up.svg b/packages/icons/icons/arrow-bar-up.svg new file mode 100644 index 000000000..bbe3fec1e --- /dev/null +++ b/packages/icons/icons/arrow-bar-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bear-left-2.svg b/packages/icons/icons/arrow-bear-left-2.svg new file mode 100644 index 000000000..09b004cff --- /dev/null +++ b/packages/icons/icons/arrow-bear-left-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bear-left.svg b/packages/icons/icons/arrow-bear-left.svg new file mode 100644 index 000000000..dd3caf77f --- /dev/null +++ b/packages/icons/icons/arrow-bear-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bear-right-2.svg b/packages/icons/icons/arrow-bear-right-2.svg new file mode 100644 index 000000000..11ba71507 --- /dev/null +++ b/packages/icons/icons/arrow-bear-right-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bear-right.svg b/packages/icons/icons/arrow-bear-right.svg new file mode 100644 index 000000000..449cc888d --- /dev/null +++ b/packages/icons/icons/arrow-bear-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-down-line.svg b/packages/icons/icons/arrow-big-down-line.svg new file mode 100644 index 000000000..0e5e54261 --- /dev/null +++ b/packages/icons/icons/arrow-big-down-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-down-lines.svg b/packages/icons/icons/arrow-big-down-lines.svg new file mode 100644 index 000000000..5ea25944f --- /dev/null +++ b/packages/icons/icons/arrow-big-down-lines.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-down.svg b/packages/icons/icons/arrow-big-down.svg new file mode 100644 index 000000000..7cea530f2 --- /dev/null +++ b/packages/icons/icons/arrow-big-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-left-line.svg b/packages/icons/icons/arrow-big-left-line.svg new file mode 100644 index 000000000..86164a330 --- /dev/null +++ b/packages/icons/icons/arrow-big-left-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-left-lines.svg b/packages/icons/icons/arrow-big-left-lines.svg new file mode 100644 index 000000000..5eac10139 --- /dev/null +++ b/packages/icons/icons/arrow-big-left-lines.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-left.svg b/packages/icons/icons/arrow-big-left.svg new file mode 100644 index 000000000..e971da592 --- /dev/null +++ b/packages/icons/icons/arrow-big-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-right-line.svg b/packages/icons/icons/arrow-big-right-line.svg new file mode 100644 index 000000000..c094182af --- /dev/null +++ b/packages/icons/icons/arrow-big-right-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-right-lines.svg b/packages/icons/icons/arrow-big-right-lines.svg new file mode 100644 index 000000000..ecaf08849 --- /dev/null +++ b/packages/icons/icons/arrow-big-right-lines.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-right.svg b/packages/icons/icons/arrow-big-right.svg new file mode 100644 index 000000000..ebaf46cc7 --- /dev/null +++ b/packages/icons/icons/arrow-big-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-top.svg b/packages/icons/icons/arrow-big-top.svg new file mode 100644 index 000000000..9193051c4 --- /dev/null +++ b/packages/icons/icons/arrow-big-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-up-line.svg b/packages/icons/icons/arrow-big-up-line.svg new file mode 100644 index 000000000..a9c063c62 --- /dev/null +++ b/packages/icons/icons/arrow-big-up-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-big-up-lines.svg b/packages/icons/icons/arrow-big-up-lines.svg new file mode 100644 index 000000000..8fe2cdd05 --- /dev/null +++ b/packages/icons/icons/arrow-big-up-lines.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-bounce.svg b/packages/icons/icons/arrow-bounce.svg new file mode 100644 index 000000000..3f889e91b --- /dev/null +++ b/packages/icons/icons/arrow-bounce.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-curve-left.svg b/packages/icons/icons/arrow-curve-left.svg new file mode 100644 index 000000000..1746cc4e8 --- /dev/null +++ b/packages/icons/icons/arrow-curve-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-curve-right.svg b/packages/icons/icons/arrow-curve-right.svg new file mode 100644 index 000000000..18aaa407b --- /dev/null +++ b/packages/icons/icons/arrow-curve-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-bar.svg b/packages/icons/icons/arrow-down-bar.svg new file mode 100644 index 000000000..4ddff4c36 --- /dev/null +++ b/packages/icons/icons/arrow-down-bar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-circle.svg b/packages/icons/icons/arrow-down-circle.svg new file mode 100644 index 000000000..4c5e87aac --- /dev/null +++ b/packages/icons/icons/arrow-down-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-left-circle.svg b/packages/icons/icons/arrow-down-left-circle.svg new file mode 100644 index 000000000..fd0841119 --- /dev/null +++ b/packages/icons/icons/arrow-down-left-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-left.svg b/packages/icons/icons/arrow-down-left.svg new file mode 100644 index 000000000..ed45d4a45 --- /dev/null +++ b/packages/icons/icons/arrow-down-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-rhombus.svg b/packages/icons/icons/arrow-down-rhombus.svg new file mode 100644 index 000000000..07d9029b1 --- /dev/null +++ b/packages/icons/icons/arrow-down-rhombus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-right-circle.svg b/packages/icons/icons/arrow-down-right-circle.svg new file mode 100644 index 000000000..1246d1573 --- /dev/null +++ b/packages/icons/icons/arrow-down-right-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-right.svg b/packages/icons/icons/arrow-down-right.svg new file mode 100644 index 000000000..04c39e3fd --- /dev/null +++ b/packages/icons/icons/arrow-down-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-square.svg b/packages/icons/icons/arrow-down-square.svg new file mode 100644 index 000000000..a5e23d5f6 --- /dev/null +++ b/packages/icons/icons/arrow-down-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down-tail.svg b/packages/icons/icons/arrow-down-tail.svg new file mode 100644 index 000000000..661a99a7e --- /dev/null +++ b/packages/icons/icons/arrow-down-tail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-down.svg b/packages/icons/icons/arrow-down.svg new file mode 100644 index 000000000..8fd301f97 --- /dev/null +++ b/packages/icons/icons/arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-fork.svg b/packages/icons/icons/arrow-fork.svg new file mode 100644 index 000000000..fd3c987ad --- /dev/null +++ b/packages/icons/icons/arrow-fork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-forward-up.svg b/packages/icons/icons/arrow-forward-up.svg new file mode 100644 index 000000000..322fd6996 --- /dev/null +++ b/packages/icons/icons/arrow-forward-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-forward.svg b/packages/icons/icons/arrow-forward.svg new file mode 100644 index 000000000..4478088b0 --- /dev/null +++ b/packages/icons/icons/arrow-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-guide.svg b/packages/icons/icons/arrow-guide.svg new file mode 100644 index 000000000..c6806005e --- /dev/null +++ b/packages/icons/icons/arrow-guide.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-iteration.svg b/packages/icons/icons/arrow-iteration.svg new file mode 100644 index 000000000..fc4eb1f87 --- /dev/null +++ b/packages/icons/icons/arrow-iteration.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-bar.svg b/packages/icons/icons/arrow-left-bar.svg new file mode 100644 index 000000000..722cd2d5e --- /dev/null +++ b/packages/icons/icons/arrow-left-bar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-circle.svg b/packages/icons/icons/arrow-left-circle.svg new file mode 100644 index 000000000..4e6d906fd --- /dev/null +++ b/packages/icons/icons/arrow-left-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-rhombus.svg b/packages/icons/icons/arrow-left-rhombus.svg new file mode 100644 index 000000000..f8812a2be --- /dev/null +++ b/packages/icons/icons/arrow-left-rhombus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-right.svg b/packages/icons/icons/arrow-left-right.svg new file mode 100644 index 000000000..cb2cfe712 --- /dev/null +++ b/packages/icons/icons/arrow-left-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-square.svg b/packages/icons/icons/arrow-left-square.svg new file mode 100644 index 000000000..f738de314 --- /dev/null +++ b/packages/icons/icons/arrow-left-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left-tail.svg b/packages/icons/icons/arrow-left-tail.svg new file mode 100644 index 000000000..ff18ad67c --- /dev/null +++ b/packages/icons/icons/arrow-left-tail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-left.svg b/packages/icons/icons/arrow-left.svg new file mode 100644 index 000000000..4ebcd9431 --- /dev/null +++ b/packages/icons/icons/arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-loop-left-2.svg b/packages/icons/icons/arrow-loop-left-2.svg new file mode 100644 index 000000000..a148e10b0 --- /dev/null +++ b/packages/icons/icons/arrow-loop-left-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-loop-left.svg b/packages/icons/icons/arrow-loop-left.svg new file mode 100644 index 000000000..16acdadb8 --- /dev/null +++ b/packages/icons/icons/arrow-loop-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-loop-right-2.svg b/packages/icons/icons/arrow-loop-right-2.svg new file mode 100644 index 000000000..6f8e74b88 --- /dev/null +++ b/packages/icons/icons/arrow-loop-right-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-loop-right.svg b/packages/icons/icons/arrow-loop-right.svg new file mode 100644 index 000000000..2f6148fa5 --- /dev/null +++ b/packages/icons/icons/arrow-loop-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-merge-both.svg b/packages/icons/icons/arrow-merge-both.svg new file mode 100644 index 000000000..1f927d3e8 --- /dev/null +++ b/packages/icons/icons/arrow-merge-both.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-merge-left.svg b/packages/icons/icons/arrow-merge-left.svg new file mode 100644 index 000000000..7d9b6db2a --- /dev/null +++ b/packages/icons/icons/arrow-merge-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-merge-right.svg b/packages/icons/icons/arrow-merge-right.svg new file mode 100644 index 000000000..edacdc32a --- /dev/null +++ b/packages/icons/icons/arrow-merge-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-merge.svg b/packages/icons/icons/arrow-merge.svg new file mode 100644 index 000000000..ced41dba3 --- /dev/null +++ b/packages/icons/icons/arrow-merge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-move-down.svg b/packages/icons/icons/arrow-move-down.svg new file mode 100644 index 000000000..f176fcaa7 --- /dev/null +++ b/packages/icons/icons/arrow-move-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-move-left.svg b/packages/icons/icons/arrow-move-left.svg new file mode 100644 index 000000000..cde52e4da --- /dev/null +++ b/packages/icons/icons/arrow-move-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-move-right.svg b/packages/icons/icons/arrow-move-right.svg new file mode 100644 index 000000000..287707f02 --- /dev/null +++ b/packages/icons/icons/arrow-move-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-move-up.svg b/packages/icons/icons/arrow-move-up.svg new file mode 100644 index 000000000..e3b5d7258 --- /dev/null +++ b/packages/icons/icons/arrow-move-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-narrow-down.svg b/packages/icons/icons/arrow-narrow-down.svg new file mode 100644 index 000000000..82a9ba8c3 --- /dev/null +++ b/packages/icons/icons/arrow-narrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-narrow-left.svg b/packages/icons/icons/arrow-narrow-left.svg new file mode 100644 index 000000000..a1650fb42 --- /dev/null +++ b/packages/icons/icons/arrow-narrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-narrow-right.svg b/packages/icons/icons/arrow-narrow-right.svg new file mode 100644 index 000000000..c13952a69 --- /dev/null +++ b/packages/icons/icons/arrow-narrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-narrow-up.svg b/packages/icons/icons/arrow-narrow-up.svg new file mode 100644 index 000000000..35f8001a4 --- /dev/null +++ b/packages/icons/icons/arrow-narrow-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-left-2.svg b/packages/icons/icons/arrow-ramp-left-2.svg new file mode 100644 index 000000000..ee3316c7b --- /dev/null +++ b/packages/icons/icons/arrow-ramp-left-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-left-3.svg b/packages/icons/icons/arrow-ramp-left-3.svg new file mode 100644 index 000000000..dc25c36d1 --- /dev/null +++ b/packages/icons/icons/arrow-ramp-left-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-left.svg b/packages/icons/icons/arrow-ramp-left.svg new file mode 100644 index 000000000..f39e4e575 --- /dev/null +++ b/packages/icons/icons/arrow-ramp-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-right-2.svg b/packages/icons/icons/arrow-ramp-right-2.svg new file mode 100644 index 000000000..35f6310ae --- /dev/null +++ b/packages/icons/icons/arrow-ramp-right-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-right-3.svg b/packages/icons/icons/arrow-ramp-right-3.svg new file mode 100644 index 000000000..ed2737595 --- /dev/null +++ b/packages/icons/icons/arrow-ramp-right-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-ramp-right.svg b/packages/icons/icons/arrow-ramp-right.svg new file mode 100644 index 000000000..3d352e4ef --- /dev/null +++ b/packages/icons/icons/arrow-ramp-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right-bar.svg b/packages/icons/icons/arrow-right-bar.svg new file mode 100644 index 000000000..d5be334e8 --- /dev/null +++ b/packages/icons/icons/arrow-right-bar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right-circle.svg b/packages/icons/icons/arrow-right-circle.svg new file mode 100644 index 000000000..16203a948 --- /dev/null +++ b/packages/icons/icons/arrow-right-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right-rhombus.svg b/packages/icons/icons/arrow-right-rhombus.svg new file mode 100644 index 000000000..5dacba19b --- /dev/null +++ b/packages/icons/icons/arrow-right-rhombus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right-square.svg b/packages/icons/icons/arrow-right-square.svg new file mode 100644 index 000000000..7728e42d3 --- /dev/null +++ b/packages/icons/icons/arrow-right-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right-tail.svg b/packages/icons/icons/arrow-right-tail.svg new file mode 100644 index 000000000..2559422aa --- /dev/null +++ b/packages/icons/icons/arrow-right-tail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-right.svg b/packages/icons/icons/arrow-right.svg new file mode 100644 index 000000000..4f4dbba67 --- /dev/null +++ b/packages/icons/icons/arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-first-left.svg b/packages/icons/icons/arrow-rotary-first-left.svg new file mode 100644 index 000000000..069afba76 --- /dev/null +++ b/packages/icons/icons/arrow-rotary-first-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-first-right.svg b/packages/icons/icons/arrow-rotary-first-right.svg new file mode 100644 index 000000000..ae3a319d9 --- /dev/null +++ b/packages/icons/icons/arrow-rotary-first-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-last-left.svg b/packages/icons/icons/arrow-rotary-last-left.svg new file mode 100644 index 000000000..99b25604d --- /dev/null +++ b/packages/icons/icons/arrow-rotary-last-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-last-right.svg b/packages/icons/icons/arrow-rotary-last-right.svg new file mode 100644 index 000000000..9047d4e7e --- /dev/null +++ b/packages/icons/icons/arrow-rotary-last-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-left.svg b/packages/icons/icons/arrow-rotary-left.svg new file mode 100644 index 000000000..e58cb0309 --- /dev/null +++ b/packages/icons/icons/arrow-rotary-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-right.svg b/packages/icons/icons/arrow-rotary-right.svg new file mode 100644 index 000000000..083a11f34 --- /dev/null +++ b/packages/icons/icons/arrow-rotary-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-rotary-straight.svg b/packages/icons/icons/arrow-rotary-straight.svg new file mode 100644 index 000000000..9e1a35d2a --- /dev/null +++ b/packages/icons/icons/arrow-rotary-straight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-roundabout-left.svg b/packages/icons/icons/arrow-roundabout-left.svg new file mode 100644 index 000000000..5e9f8acbb --- /dev/null +++ b/packages/icons/icons/arrow-roundabout-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-roundabout-right.svg b/packages/icons/icons/arrow-roundabout-right.svg new file mode 100644 index 000000000..55920ca60 --- /dev/null +++ b/packages/icons/icons/arrow-roundabout-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-sharp-turn-left.svg b/packages/icons/icons/arrow-sharp-turn-left.svg new file mode 100644 index 000000000..bd52bdf2b --- /dev/null +++ b/packages/icons/icons/arrow-sharp-turn-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-sharp-turn-right.svg b/packages/icons/icons/arrow-sharp-turn-right.svg new file mode 100644 index 000000000..a478d3355 --- /dev/null +++ b/packages/icons/icons/arrow-sharp-turn-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-bar.svg b/packages/icons/icons/arrow-up-bar.svg new file mode 100644 index 000000000..e0dd0fd9d --- /dev/null +++ b/packages/icons/icons/arrow-up-bar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-circle.svg b/packages/icons/icons/arrow-up-circle.svg new file mode 100644 index 000000000..bfc2cc1ed --- /dev/null +++ b/packages/icons/icons/arrow-up-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-left-circle.svg b/packages/icons/icons/arrow-up-left-circle.svg new file mode 100644 index 000000000..3f027e5dc --- /dev/null +++ b/packages/icons/icons/arrow-up-left-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-left.svg b/packages/icons/icons/arrow-up-left.svg new file mode 100644 index 000000000..b49474189 --- /dev/null +++ b/packages/icons/icons/arrow-up-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-rhombus.svg b/packages/icons/icons/arrow-up-rhombus.svg new file mode 100644 index 000000000..08ce33ede --- /dev/null +++ b/packages/icons/icons/arrow-up-rhombus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-right-circle.svg b/packages/icons/icons/arrow-up-right-circle.svg new file mode 100644 index 000000000..3374c006d --- /dev/null +++ b/packages/icons/icons/arrow-up-right-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-right.svg b/packages/icons/icons/arrow-up-right.svg new file mode 100644 index 000000000..c9cc59719 --- /dev/null +++ b/packages/icons/icons/arrow-up-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-square.svg b/packages/icons/icons/arrow-up-square.svg new file mode 100644 index 000000000..c3d9c949b --- /dev/null +++ b/packages/icons/icons/arrow-up-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up-tail.svg b/packages/icons/icons/arrow-up-tail.svg new file mode 100644 index 000000000..3d8432d08 --- /dev/null +++ b/packages/icons/icons/arrow-up-tail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-up.svg b/packages/icons/icons/arrow-up.svg new file mode 100644 index 000000000..ab2e83dda --- /dev/null +++ b/packages/icons/icons/arrow-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-wave-left-down.svg b/packages/icons/icons/arrow-wave-left-down.svg new file mode 100644 index 000000000..3ac19c96e --- /dev/null +++ b/packages/icons/icons/arrow-wave-left-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-wave-left-up.svg b/packages/icons/icons/arrow-wave-left-up.svg new file mode 100644 index 000000000..9bb13cd6f --- /dev/null +++ b/packages/icons/icons/arrow-wave-left-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-wave-right-down.svg b/packages/icons/icons/arrow-wave-right-down.svg new file mode 100644 index 000000000..4990f9d64 --- /dev/null +++ b/packages/icons/icons/arrow-wave-right-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-wave-right-up.svg b/packages/icons/icons/arrow-wave-right-up.svg new file mode 100644 index 000000000..1f28889ec --- /dev/null +++ b/packages/icons/icons/arrow-wave-right-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrow-zig-zag.svg b/packages/icons/icons/arrow-zig-zag.svg new file mode 100644 index 000000000..8109f6c54 --- /dev/null +++ b/packages/icons/icons/arrow-zig-zag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-cross.svg b/packages/icons/icons/arrows-cross.svg new file mode 100644 index 000000000..2ce4e1d34 --- /dev/null +++ b/packages/icons/icons/arrows-cross.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-diagonal-2.svg b/packages/icons/icons/arrows-diagonal-2.svg new file mode 100644 index 000000000..3d26b67b8 --- /dev/null +++ b/packages/icons/icons/arrows-diagonal-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-diagonal-minimize-2.svg b/packages/icons/icons/arrows-diagonal-minimize-2.svg new file mode 100644 index 000000000..0b2e35130 --- /dev/null +++ b/packages/icons/icons/arrows-diagonal-minimize-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-diagonal-minimize.svg b/packages/icons/icons/arrows-diagonal-minimize.svg new file mode 100644 index 000000000..e0f764fcf --- /dev/null +++ b/packages/icons/icons/arrows-diagonal-minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-diagonal.svg b/packages/icons/icons/arrows-diagonal.svg new file mode 100644 index 000000000..86a1723cb --- /dev/null +++ b/packages/icons/icons/arrows-diagonal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-diff.svg b/packages/icons/icons/arrows-diff.svg new file mode 100644 index 000000000..a775f8342 --- /dev/null +++ b/packages/icons/icons/arrows-diff.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-double-ne-sw.svg b/packages/icons/icons/arrows-double-ne-sw.svg new file mode 100644 index 000000000..32e7d7efa --- /dev/null +++ b/packages/icons/icons/arrows-double-ne-sw.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-double-nw-se.svg b/packages/icons/icons/arrows-double-nw-se.svg new file mode 100644 index 000000000..c11fcd90f --- /dev/null +++ b/packages/icons/icons/arrows-double-nw-se.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-double-se-nw.svg b/packages/icons/icons/arrows-double-se-nw.svg new file mode 100644 index 000000000..7ef9b85c7 --- /dev/null +++ b/packages/icons/icons/arrows-double-se-nw.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-double-sw-ne.svg b/packages/icons/icons/arrows-double-sw-ne.svg new file mode 100644 index 000000000..7f58c9f4a --- /dev/null +++ b/packages/icons/icons/arrows-double-sw-ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-down-up.svg b/packages/icons/icons/arrows-down-up.svg new file mode 100644 index 000000000..d25f9f10e --- /dev/null +++ b/packages/icons/icons/arrows-down-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-down.svg b/packages/icons/icons/arrows-down.svg new file mode 100644 index 000000000..a0571b530 --- /dev/null +++ b/packages/icons/icons/arrows-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-exchange-2.svg b/packages/icons/icons/arrows-exchange-2.svg new file mode 100644 index 000000000..4a08e9550 --- /dev/null +++ b/packages/icons/icons/arrows-exchange-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-exchange.svg b/packages/icons/icons/arrows-exchange.svg new file mode 100644 index 000000000..904bc2901 --- /dev/null +++ b/packages/icons/icons/arrows-exchange.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-horizontal.svg b/packages/icons/icons/arrows-horizontal.svg new file mode 100644 index 000000000..1317eb94f --- /dev/null +++ b/packages/icons/icons/arrows-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-join-2.svg b/packages/icons/icons/arrows-join-2.svg new file mode 100644 index 000000000..91ec5219d --- /dev/null +++ b/packages/icons/icons/arrows-join-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-join.svg b/packages/icons/icons/arrows-join.svg new file mode 100644 index 000000000..a49927f58 --- /dev/null +++ b/packages/icons/icons/arrows-join.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-left-down.svg b/packages/icons/icons/arrows-left-down.svg new file mode 100644 index 000000000..c9a1c7209 --- /dev/null +++ b/packages/icons/icons/arrows-left-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-left-right.svg b/packages/icons/icons/arrows-left-right.svg new file mode 100644 index 000000000..7a7d92e82 --- /dev/null +++ b/packages/icons/icons/arrows-left-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-left.svg b/packages/icons/icons/arrows-left.svg new file mode 100644 index 000000000..2392ba96c --- /dev/null +++ b/packages/icons/icons/arrows-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-maximize.svg b/packages/icons/icons/arrows-maximize.svg new file mode 100644 index 000000000..673683def --- /dev/null +++ b/packages/icons/icons/arrows-maximize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-minimize.svg b/packages/icons/icons/arrows-minimize.svg new file mode 100644 index 000000000..ed13b7d4e --- /dev/null +++ b/packages/icons/icons/arrows-minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-move-horizontal.svg b/packages/icons/icons/arrows-move-horizontal.svg new file mode 100644 index 000000000..707cb7ccb --- /dev/null +++ b/packages/icons/icons/arrows-move-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-move-vertical.svg b/packages/icons/icons/arrows-move-vertical.svg new file mode 100644 index 000000000..eca87ac94 --- /dev/null +++ b/packages/icons/icons/arrows-move-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-move.svg b/packages/icons/icons/arrows-move.svg new file mode 100644 index 000000000..b71e690fc --- /dev/null +++ b/packages/icons/icons/arrows-move.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-random.svg b/packages/icons/icons/arrows-random.svg new file mode 100644 index 000000000..19d1bc783 --- /dev/null +++ b/packages/icons/icons/arrows-random.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-right-down.svg b/packages/icons/icons/arrows-right-down.svg new file mode 100644 index 000000000..04b901546 --- /dev/null +++ b/packages/icons/icons/arrows-right-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-right-left.svg b/packages/icons/icons/arrows-right-left.svg new file mode 100644 index 000000000..72bdeabc3 --- /dev/null +++ b/packages/icons/icons/arrows-right-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-right.svg b/packages/icons/icons/arrows-right.svg new file mode 100644 index 000000000..35bf6f9a0 --- /dev/null +++ b/packages/icons/icons/arrows-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-shuffle-2.svg b/packages/icons/icons/arrows-shuffle-2.svg new file mode 100644 index 000000000..cea828fe7 --- /dev/null +++ b/packages/icons/icons/arrows-shuffle-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-shuffle.svg b/packages/icons/icons/arrows-shuffle.svg new file mode 100644 index 000000000..dcc173c05 --- /dev/null +++ b/packages/icons/icons/arrows-shuffle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-sort.svg b/packages/icons/icons/arrows-sort.svg new file mode 100644 index 000000000..e025846ad --- /dev/null +++ b/packages/icons/icons/arrows-sort.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-split-2.svg b/packages/icons/icons/arrows-split-2.svg new file mode 100644 index 000000000..89ad18a6e --- /dev/null +++ b/packages/icons/icons/arrows-split-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-split.svg b/packages/icons/icons/arrows-split.svg new file mode 100644 index 000000000..6cbe58f86 --- /dev/null +++ b/packages/icons/icons/arrows-split.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-transfer-down.svg b/packages/icons/icons/arrows-transfer-down.svg new file mode 100644 index 000000000..73e2dc8d9 --- /dev/null +++ b/packages/icons/icons/arrows-transfer-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-transfer-up.svg b/packages/icons/icons/arrows-transfer-up.svg new file mode 100644 index 000000000..7fc7b4627 --- /dev/null +++ b/packages/icons/icons/arrows-transfer-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-up-down.svg b/packages/icons/icons/arrows-up-down.svg new file mode 100644 index 000000000..b629f47aa --- /dev/null +++ b/packages/icons/icons/arrows-up-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-up-left.svg b/packages/icons/icons/arrows-up-left.svg new file mode 100644 index 000000000..9c2d93fac --- /dev/null +++ b/packages/icons/icons/arrows-up-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-up-right.svg b/packages/icons/icons/arrows-up-right.svg new file mode 100644 index 000000000..75d836941 --- /dev/null +++ b/packages/icons/icons/arrows-up-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-up.svg b/packages/icons/icons/arrows-up.svg new file mode 100644 index 000000000..b89545cf8 --- /dev/null +++ b/packages/icons/icons/arrows-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/arrows-vertical.svg b/packages/icons/icons/arrows-vertical.svg new file mode 100644 index 000000000..80add3660 --- /dev/null +++ b/packages/icons/icons/arrows-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/artboard-off.svg b/packages/icons/icons/artboard-off.svg new file mode 100644 index 000000000..87111ffbb --- /dev/null +++ b/packages/icons/icons/artboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/artboard.svg b/packages/icons/icons/artboard.svg new file mode 100644 index 000000000..f8c53003f --- /dev/null +++ b/packages/icons/icons/artboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/article-off.svg b/packages/icons/icons/article-off.svg new file mode 100644 index 000000000..7f6ff0902 --- /dev/null +++ b/packages/icons/icons/article-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/article.svg b/packages/icons/icons/article.svg new file mode 100644 index 000000000..1753b32f7 --- /dev/null +++ b/packages/icons/icons/article.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/aspect-ratio-off.svg b/packages/icons/icons/aspect-ratio-off.svg new file mode 100644 index 000000000..94b20213d --- /dev/null +++ b/packages/icons/icons/aspect-ratio-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/aspect-ratio.svg b/packages/icons/icons/aspect-ratio.svg new file mode 100644 index 000000000..472a854df --- /dev/null +++ b/packages/icons/icons/aspect-ratio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/assembly-off.svg b/packages/icons/icons/assembly-off.svg new file mode 100644 index 000000000..eb82eb213 --- /dev/null +++ b/packages/icons/icons/assembly-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/assembly.svg b/packages/icons/icons/assembly.svg new file mode 100644 index 000000000..bdfd4d664 --- /dev/null +++ b/packages/icons/icons/assembly.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/asset.svg b/packages/icons/icons/asset.svg new file mode 100644 index 000000000..c5a2aa927 --- /dev/null +++ b/packages/icons/icons/asset.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/asterisk-simple.svg b/packages/icons/icons/asterisk-simple.svg new file mode 100644 index 000000000..7323cd560 --- /dev/null +++ b/packages/icons/icons/asterisk-simple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/asterisk.svg b/packages/icons/icons/asterisk.svg new file mode 100644 index 000000000..1c7a51804 --- /dev/null +++ b/packages/icons/icons/asterisk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/at-off.svg b/packages/icons/icons/at-off.svg new file mode 100644 index 000000000..7c2a4a1cd --- /dev/null +++ b/packages/icons/icons/at-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/at.svg b/packages/icons/icons/at.svg new file mode 100644 index 000000000..f4829a91f --- /dev/null +++ b/packages/icons/icons/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/atom-2.svg b/packages/icons/icons/atom-2.svg new file mode 100644 index 000000000..9dde7ea94 --- /dev/null +++ b/packages/icons/icons/atom-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/atom-off.svg b/packages/icons/icons/atom-off.svg new file mode 100644 index 000000000..282192cbb --- /dev/null +++ b/packages/icons/icons/atom-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/atom.svg b/packages/icons/icons/atom.svg new file mode 100644 index 000000000..89ff646b4 --- /dev/null +++ b/packages/icons/icons/atom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/augmented-reality-2.svg b/packages/icons/icons/augmented-reality-2.svg new file mode 100644 index 000000000..850f5c61f --- /dev/null +++ b/packages/icons/icons/augmented-reality-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/augmented-reality-off.svg b/packages/icons/icons/augmented-reality-off.svg new file mode 100644 index 000000000..804c65dd3 --- /dev/null +++ b/packages/icons/icons/augmented-reality-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/augmented-reality.svg b/packages/icons/icons/augmented-reality.svg new file mode 100644 index 000000000..629ff28a8 --- /dev/null +++ b/packages/icons/icons/augmented-reality.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/award-off.svg b/packages/icons/icons/award-off.svg new file mode 100644 index 000000000..7dcaaf1cf --- /dev/null +++ b/packages/icons/icons/award-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/award.svg b/packages/icons/icons/award.svg new file mode 100644 index 000000000..56e64c61b --- /dev/null +++ b/packages/icons/icons/award.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/axe.svg b/packages/icons/icons/axe.svg new file mode 100644 index 000000000..3f92b0b4b --- /dev/null +++ b/packages/icons/icons/axe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/axis-x.svg b/packages/icons/icons/axis-x.svg new file mode 100644 index 000000000..7748b509f --- /dev/null +++ b/packages/icons/icons/axis-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/axis-y.svg b/packages/icons/icons/axis-y.svg new file mode 100644 index 000000000..e47cec011 --- /dev/null +++ b/packages/icons/icons/axis-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/baby-bottle.svg b/packages/icons/icons/baby-bottle.svg new file mode 100644 index 000000000..7c6cfddee --- /dev/null +++ b/packages/icons/icons/baby-bottle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/baby-carriage.svg b/packages/icons/icons/baby-carriage.svg new file mode 100644 index 000000000..20fe81f58 --- /dev/null +++ b/packages/icons/icons/baby-carriage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/backhoe.svg b/packages/icons/icons/backhoe.svg new file mode 100644 index 000000000..68ae6d756 --- /dev/null +++ b/packages/icons/icons/backhoe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/backpack-off.svg b/packages/icons/icons/backpack-off.svg new file mode 100644 index 000000000..4fb9beb72 --- /dev/null +++ b/packages/icons/icons/backpack-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/backpack.svg b/packages/icons/icons/backpack.svg new file mode 100644 index 000000000..3e4be3414 --- /dev/null +++ b/packages/icons/icons/backpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/backspace.svg b/packages/icons/icons/backspace.svg new file mode 100644 index 000000000..56e509a1b --- /dev/null +++ b/packages/icons/icons/backspace.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-3d.svg b/packages/icons/icons/badge-3d.svg new file mode 100644 index 000000000..b9ed78186 --- /dev/null +++ b/packages/icons/icons/badge-3d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-4k.svg b/packages/icons/icons/badge-4k.svg new file mode 100644 index 000000000..c24e0b758 --- /dev/null +++ b/packages/icons/icons/badge-4k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-8k.svg b/packages/icons/icons/badge-8k.svg new file mode 100644 index 000000000..fa60ad4bd --- /dev/null +++ b/packages/icons/icons/badge-8k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-ad.svg b/packages/icons/icons/badge-ad.svg new file mode 100644 index 000000000..974caf873 --- /dev/null +++ b/packages/icons/icons/badge-ad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-ar.svg b/packages/icons/icons/badge-ar.svg new file mode 100644 index 000000000..79860c970 --- /dev/null +++ b/packages/icons/icons/badge-ar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-cc.svg b/packages/icons/icons/badge-cc.svg new file mode 100644 index 000000000..7861e259b --- /dev/null +++ b/packages/icons/icons/badge-cc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-hd.svg b/packages/icons/icons/badge-hd.svg new file mode 100644 index 000000000..060d36522 --- /dev/null +++ b/packages/icons/icons/badge-hd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-off.svg b/packages/icons/icons/badge-off.svg new file mode 100644 index 000000000..5dc5ec8c5 --- /dev/null +++ b/packages/icons/icons/badge-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-sd.svg b/packages/icons/icons/badge-sd.svg new file mode 100644 index 000000000..c15799fae --- /dev/null +++ b/packages/icons/icons/badge-sd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-tm.svg b/packages/icons/icons/badge-tm.svg new file mode 100644 index 000000000..da9bc5892 --- /dev/null +++ b/packages/icons/icons/badge-tm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-vo.svg b/packages/icons/icons/badge-vo.svg new file mode 100644 index 000000000..c6744e6cf --- /dev/null +++ b/packages/icons/icons/badge-vo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-vr.svg b/packages/icons/icons/badge-vr.svg new file mode 100644 index 000000000..52e2987cd --- /dev/null +++ b/packages/icons/icons/badge-vr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge-wc.svg b/packages/icons/icons/badge-wc.svg new file mode 100644 index 000000000..c7ff08499 --- /dev/null +++ b/packages/icons/icons/badge-wc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badge.svg b/packages/icons/icons/badge.svg new file mode 100644 index 000000000..518b2b91a --- /dev/null +++ b/packages/icons/icons/badge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badges-off.svg b/packages/icons/icons/badges-off.svg new file mode 100644 index 000000000..8ee31a33b --- /dev/null +++ b/packages/icons/icons/badges-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/badges.svg b/packages/icons/icons/badges.svg new file mode 100644 index 000000000..815028f15 --- /dev/null +++ b/packages/icons/icons/badges.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/baguette.svg b/packages/icons/icons/baguette.svg new file mode 100644 index 000000000..bd6a30fc2 --- /dev/null +++ b/packages/icons/icons/baguette.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-american-football-off.svg b/packages/icons/icons/ball-american-football-off.svg new file mode 100644 index 000000000..abc933ae7 --- /dev/null +++ b/packages/icons/icons/ball-american-football-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-american-football.svg b/packages/icons/icons/ball-american-football.svg new file mode 100644 index 000000000..08a349479 --- /dev/null +++ b/packages/icons/icons/ball-american-football.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-baseball.svg b/packages/icons/icons/ball-baseball.svg new file mode 100644 index 000000000..086226cb6 --- /dev/null +++ b/packages/icons/icons/ball-baseball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-basketball.svg b/packages/icons/icons/ball-basketball.svg new file mode 100644 index 000000000..de5e4c148 --- /dev/null +++ b/packages/icons/icons/ball-basketball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-bowling.svg b/packages/icons/icons/ball-bowling.svg new file mode 100644 index 000000000..f76541d0b --- /dev/null +++ b/packages/icons/icons/ball-bowling.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-football-off.svg b/packages/icons/icons/ball-football-off.svg new file mode 100644 index 000000000..6912229c1 --- /dev/null +++ b/packages/icons/icons/ball-football-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-football.svg b/packages/icons/icons/ball-football.svg new file mode 100644 index 000000000..6db3e2ef4 --- /dev/null +++ b/packages/icons/icons/ball-football.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-tennis.svg b/packages/icons/icons/ball-tennis.svg new file mode 100644 index 000000000..6d78fdaaa --- /dev/null +++ b/packages/icons/icons/ball-tennis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ball-volleyball.svg b/packages/icons/icons/ball-volleyball.svg new file mode 100644 index 000000000..e866f5f47 --- /dev/null +++ b/packages/icons/icons/ball-volleyball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ballon-off.svg b/packages/icons/icons/ballon-off.svg new file mode 100644 index 000000000..cb6a90664 --- /dev/null +++ b/packages/icons/icons/ballon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ballon.svg b/packages/icons/icons/ballon.svg new file mode 100644 index 000000000..154fb2e27 --- /dev/null +++ b/packages/icons/icons/ballon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ballpen-off.svg b/packages/icons/icons/ballpen-off.svg new file mode 100644 index 000000000..0cbffaa88 --- /dev/null +++ b/packages/icons/icons/ballpen-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ballpen.svg b/packages/icons/icons/ballpen.svg new file mode 100644 index 000000000..6f046769d --- /dev/null +++ b/packages/icons/icons/ballpen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ban.svg b/packages/icons/icons/ban.svg new file mode 100644 index 000000000..85303bc9a --- /dev/null +++ b/packages/icons/icons/ban.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bandage-off.svg b/packages/icons/icons/bandage-off.svg new file mode 100644 index 000000000..766353e02 --- /dev/null +++ b/packages/icons/icons/bandage-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bandage.svg b/packages/icons/icons/bandage.svg new file mode 100644 index 000000000..0128dcb12 --- /dev/null +++ b/packages/icons/icons/bandage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barbell-off.svg b/packages/icons/icons/barbell-off.svg new file mode 100644 index 000000000..dc050fa26 --- /dev/null +++ b/packages/icons/icons/barbell-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barbell.svg b/packages/icons/icons/barbell.svg new file mode 100644 index 000000000..2fed4d343 --- /dev/null +++ b/packages/icons/icons/barbell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barcode-off.svg b/packages/icons/icons/barcode-off.svg new file mode 100644 index 000000000..f73542652 --- /dev/null +++ b/packages/icons/icons/barcode-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barcode.svg b/packages/icons/icons/barcode.svg new file mode 100644 index 000000000..8e5ee4349 --- /dev/null +++ b/packages/icons/icons/barcode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barrel-off.svg b/packages/icons/icons/barrel-off.svg new file mode 100644 index 000000000..7294c2d0d --- /dev/null +++ b/packages/icons/icons/barrel-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barrel.svg b/packages/icons/icons/barrel.svg new file mode 100644 index 000000000..e3950e98a --- /dev/null +++ b/packages/icons/icons/barrel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barrier-block-off.svg b/packages/icons/icons/barrier-block-off.svg new file mode 100644 index 000000000..b9668c6b4 --- /dev/null +++ b/packages/icons/icons/barrier-block-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/barrier-block.svg b/packages/icons/icons/barrier-block.svg new file mode 100644 index 000000000..42395b6c1 --- /dev/null +++ b/packages/icons/icons/barrier-block.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/baseline.svg b/packages/icons/icons/baseline.svg new file mode 100644 index 000000000..edb3185f8 --- /dev/null +++ b/packages/icons/icons/baseline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/basket-off.svg b/packages/icons/icons/basket-off.svg new file mode 100644 index 000000000..32421c141 --- /dev/null +++ b/packages/icons/icons/basket-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/basket.svg b/packages/icons/icons/basket.svg new file mode 100644 index 000000000..413476738 --- /dev/null +++ b/packages/icons/icons/basket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bat.svg b/packages/icons/icons/bat.svg new file mode 100644 index 000000000..6e69527d4 --- /dev/null +++ b/packages/icons/icons/bat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bath-off.svg b/packages/icons/icons/bath-off.svg new file mode 100644 index 000000000..b6225bc96 --- /dev/null +++ b/packages/icons/icons/bath-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bath.svg b/packages/icons/icons/bath.svg new file mode 100644 index 000000000..1edbad9e1 --- /dev/null +++ b/packages/icons/icons/bath.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-1.svg b/packages/icons/icons/battery-1.svg new file mode 100644 index 000000000..8aef860c2 --- /dev/null +++ b/packages/icons/icons/battery-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-2.svg b/packages/icons/icons/battery-2.svg new file mode 100644 index 000000000..8690f4113 --- /dev/null +++ b/packages/icons/icons/battery-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-3.svg b/packages/icons/icons/battery-3.svg new file mode 100644 index 000000000..0a2f22f83 --- /dev/null +++ b/packages/icons/icons/battery-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-4.svg b/packages/icons/icons/battery-4.svg new file mode 100644 index 000000000..a708754a3 --- /dev/null +++ b/packages/icons/icons/battery-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-automotive.svg b/packages/icons/icons/battery-automotive.svg new file mode 100644 index 000000000..89272bbdd --- /dev/null +++ b/packages/icons/icons/battery-automotive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-charging-2.svg b/packages/icons/icons/battery-charging-2.svg new file mode 100644 index 000000000..f97d62af0 --- /dev/null +++ b/packages/icons/icons/battery-charging-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-charging.svg b/packages/icons/icons/battery-charging.svg new file mode 100644 index 000000000..faee2d2bc --- /dev/null +++ b/packages/icons/icons/battery-charging.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-eco.svg b/packages/icons/icons/battery-eco.svg new file mode 100644 index 000000000..fc299ecd6 --- /dev/null +++ b/packages/icons/icons/battery-eco.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery-off.svg b/packages/icons/icons/battery-off.svg new file mode 100644 index 000000000..1f3bfedf7 --- /dev/null +++ b/packages/icons/icons/battery-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/battery.svg b/packages/icons/icons/battery.svg new file mode 100644 index 000000000..6f27c9de1 --- /dev/null +++ b/packages/icons/icons/battery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/beach-off.svg b/packages/icons/icons/beach-off.svg new file mode 100644 index 000000000..5a226dae2 --- /dev/null +++ b/packages/icons/icons/beach-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/beach.svg b/packages/icons/icons/beach.svg new file mode 100644 index 000000000..7181bf1f0 --- /dev/null +++ b/packages/icons/icons/beach.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bed-off.svg b/packages/icons/icons/bed-off.svg new file mode 100644 index 000000000..8de8068d0 --- /dev/null +++ b/packages/icons/icons/bed-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bed.svg b/packages/icons/icons/bed.svg new file mode 100644 index 000000000..ebae22562 --- /dev/null +++ b/packages/icons/icons/bed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/beer-off.svg b/packages/icons/icons/beer-off.svg new file mode 100644 index 000000000..379ddace3 --- /dev/null +++ b/packages/icons/icons/beer-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/beer.svg b/packages/icons/icons/beer.svg new file mode 100644 index 000000000..7a465f382 --- /dev/null +++ b/packages/icons/icons/beer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-minus.svg b/packages/icons/icons/bell-minus.svg new file mode 100644 index 000000000..8cb2cb457 --- /dev/null +++ b/packages/icons/icons/bell-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-off.svg b/packages/icons/icons/bell-off.svg new file mode 100644 index 000000000..41381d751 --- /dev/null +++ b/packages/icons/icons/bell-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-plus.svg b/packages/icons/icons/bell-plus.svg new file mode 100644 index 000000000..ace04ad76 --- /dev/null +++ b/packages/icons/icons/bell-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-ringing-2.svg b/packages/icons/icons/bell-ringing-2.svg new file mode 100644 index 000000000..f3f1bb0ae --- /dev/null +++ b/packages/icons/icons/bell-ringing-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-ringing.svg b/packages/icons/icons/bell-ringing.svg new file mode 100644 index 000000000..882a19946 --- /dev/null +++ b/packages/icons/icons/bell-ringing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-school.svg b/packages/icons/icons/bell-school.svg new file mode 100644 index 000000000..db7c49e47 --- /dev/null +++ b/packages/icons/icons/bell-school.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-x.svg b/packages/icons/icons/bell-x.svg new file mode 100644 index 000000000..e667743e5 --- /dev/null +++ b/packages/icons/icons/bell-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell-z.svg b/packages/icons/icons/bell-z.svg new file mode 100644 index 000000000..d4bfe9a6a --- /dev/null +++ b/packages/icons/icons/bell-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bell.svg b/packages/icons/icons/bell.svg new file mode 100644 index 000000000..9d4929f4f --- /dev/null +++ b/packages/icons/icons/bell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/beta.svg b/packages/icons/icons/beta.svg new file mode 100644 index 000000000..a46ef866c --- /dev/null +++ b/packages/icons/icons/beta.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bible.svg b/packages/icons/icons/bible.svg new file mode 100644 index 000000000..52906bcab --- /dev/null +++ b/packages/icons/icons/bible.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bike-off.svg b/packages/icons/icons/bike-off.svg new file mode 100644 index 000000000..6f90441e0 --- /dev/null +++ b/packages/icons/icons/bike-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bike.svg b/packages/icons/icons/bike.svg new file mode 100644 index 000000000..eea536b0d --- /dev/null +++ b/packages/icons/icons/bike.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/binary-off.svg b/packages/icons/icons/binary-off.svg new file mode 100644 index 000000000..14b2e9546 --- /dev/null +++ b/packages/icons/icons/binary-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/binary-tree-2.svg b/packages/icons/icons/binary-tree-2.svg new file mode 100644 index 000000000..fde6a5995 --- /dev/null +++ b/packages/icons/icons/binary-tree-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/binary-tree.svg b/packages/icons/icons/binary-tree.svg new file mode 100644 index 000000000..af4a6e762 --- /dev/null +++ b/packages/icons/icons/binary-tree.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/binary.svg b/packages/icons/icons/binary.svg new file mode 100644 index 000000000..3fdf212ae --- /dev/null +++ b/packages/icons/icons/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/biohazard-off.svg b/packages/icons/icons/biohazard-off.svg new file mode 100644 index 000000000..c461d0004 --- /dev/null +++ b/packages/icons/icons/biohazard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/biohazard.svg b/packages/icons/icons/biohazard.svg new file mode 100644 index 000000000..1b03f6d56 --- /dev/null +++ b/packages/icons/icons/biohazard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/blade.svg b/packages/icons/icons/blade.svg new file mode 100644 index 000000000..3359290ec --- /dev/null +++ b/packages/icons/icons/blade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bleach-chlorine.svg b/packages/icons/icons/bleach-chlorine.svg new file mode 100644 index 000000000..d0009fcc6 --- /dev/null +++ b/packages/icons/icons/bleach-chlorine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bleach-no-chlorine.svg b/packages/icons/icons/bleach-no-chlorine.svg new file mode 100644 index 000000000..5d84f901f --- /dev/null +++ b/packages/icons/icons/bleach-no-chlorine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bleach-off.svg b/packages/icons/icons/bleach-off.svg new file mode 100644 index 000000000..756c59fd2 --- /dev/null +++ b/packages/icons/icons/bleach-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bleach.svg b/packages/icons/icons/bleach.svg new file mode 100644 index 000000000..b425546ae --- /dev/null +++ b/packages/icons/icons/bleach.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/blockquote.svg b/packages/icons/icons/blockquote.svg new file mode 100644 index 000000000..e8e002990 --- /dev/null +++ b/packages/icons/icons/blockquote.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bluetooth-connected.svg b/packages/icons/icons/bluetooth-connected.svg new file mode 100644 index 000000000..4ef159e3e --- /dev/null +++ b/packages/icons/icons/bluetooth-connected.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bluetooth-off.svg b/packages/icons/icons/bluetooth-off.svg new file mode 100644 index 000000000..fc1afaec4 --- /dev/null +++ b/packages/icons/icons/bluetooth-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bluetooth-x.svg b/packages/icons/icons/bluetooth-x.svg new file mode 100644 index 000000000..2c9420ee6 --- /dev/null +++ b/packages/icons/icons/bluetooth-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bluetooth.svg b/packages/icons/icons/bluetooth.svg new file mode 100644 index 000000000..77df8a18e --- /dev/null +++ b/packages/icons/icons/bluetooth.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/blur-off.svg b/packages/icons/icons/blur-off.svg new file mode 100644 index 000000000..1552924a4 --- /dev/null +++ b/packages/icons/icons/blur-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/blur.svg b/packages/icons/icons/blur.svg new file mode 100644 index 000000000..9271e9f7d --- /dev/null +++ b/packages/icons/icons/blur.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bmp.svg b/packages/icons/icons/bmp.svg new file mode 100644 index 000000000..7616f4e2d --- /dev/null +++ b/packages/icons/icons/bmp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bold-off.svg b/packages/icons/icons/bold-off.svg new file mode 100644 index 000000000..cebe857bd --- /dev/null +++ b/packages/icons/icons/bold-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bold.svg b/packages/icons/icons/bold.svg new file mode 100644 index 000000000..1d4b8d4e2 --- /dev/null +++ b/packages/icons/icons/bold.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bolt-off.svg b/packages/icons/icons/bolt-off.svg new file mode 100644 index 000000000..9f201932d --- /dev/null +++ b/packages/icons/icons/bolt-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bolt.svg b/packages/icons/icons/bolt.svg new file mode 100644 index 000000000..37bdc9683 --- /dev/null +++ b/packages/icons/icons/bolt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bomb.svg b/packages/icons/icons/bomb.svg new file mode 100644 index 000000000..7045b9106 --- /dev/null +++ b/packages/icons/icons/bomb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bone-off.svg b/packages/icons/icons/bone-off.svg new file mode 100644 index 000000000..e507bf223 --- /dev/null +++ b/packages/icons/icons/bone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bone.svg b/packages/icons/icons/bone.svg new file mode 100644 index 000000000..b05a158aa --- /dev/null +++ b/packages/icons/icons/bone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bong-off.svg b/packages/icons/icons/bong-off.svg new file mode 100644 index 000000000..f821faf1e --- /dev/null +++ b/packages/icons/icons/bong-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bong.svg b/packages/icons/icons/bong.svg new file mode 100644 index 000000000..8ea4418ae --- /dev/null +++ b/packages/icons/icons/bong.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/book-2.svg b/packages/icons/icons/book-2.svg new file mode 100644 index 000000000..8f4af6e2d --- /dev/null +++ b/packages/icons/icons/book-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/book-download.svg b/packages/icons/icons/book-download.svg new file mode 100644 index 000000000..e8b06dd97 --- /dev/null +++ b/packages/icons/icons/book-download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/book-off.svg b/packages/icons/icons/book-off.svg new file mode 100644 index 000000000..809d791bf --- /dev/null +++ b/packages/icons/icons/book-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/book-upload.svg b/packages/icons/icons/book-upload.svg new file mode 100644 index 000000000..e502e045a --- /dev/null +++ b/packages/icons/icons/book-upload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/book.svg b/packages/icons/icons/book.svg new file mode 100644 index 000000000..30b3688a4 --- /dev/null +++ b/packages/icons/icons/book.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bookmark-off.svg b/packages/icons/icons/bookmark-off.svg new file mode 100644 index 000000000..7b4ff9a51 --- /dev/null +++ b/packages/icons/icons/bookmark-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bookmark.svg b/packages/icons/icons/bookmark.svg new file mode 100644 index 000000000..fc11d8fb7 --- /dev/null +++ b/packages/icons/icons/bookmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bookmarks-off.svg b/packages/icons/icons/bookmarks-off.svg new file mode 100644 index 000000000..ce87381fa --- /dev/null +++ b/packages/icons/icons/bookmarks-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bookmarks.svg b/packages/icons/icons/bookmarks.svg new file mode 100644 index 000000000..88b458c71 --- /dev/null +++ b/packages/icons/icons/bookmarks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/books-off.svg b/packages/icons/icons/books-off.svg new file mode 100644 index 000000000..f970afe7a --- /dev/null +++ b/packages/icons/icons/books-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/books.svg b/packages/icons/icons/books.svg new file mode 100644 index 000000000..d21d67690 --- /dev/null +++ b/packages/icons/icons/books.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-all.svg b/packages/icons/icons/border-all.svg new file mode 100644 index 000000000..47bb6c0dc --- /dev/null +++ b/packages/icons/icons/border-all.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-bottom.svg b/packages/icons/icons/border-bottom.svg new file mode 100644 index 000000000..4ada5c0b1 --- /dev/null +++ b/packages/icons/icons/border-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-horizontal.svg b/packages/icons/icons/border-horizontal.svg new file mode 100644 index 000000000..460b060a4 --- /dev/null +++ b/packages/icons/icons/border-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-inner.svg b/packages/icons/icons/border-inner.svg new file mode 100644 index 000000000..1445e576a --- /dev/null +++ b/packages/icons/icons/border-inner.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-left.svg b/packages/icons/icons/border-left.svg new file mode 100644 index 000000000..fd023de98 --- /dev/null +++ b/packages/icons/icons/border-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-none.svg b/packages/icons/icons/border-none.svg new file mode 100644 index 000000000..b27426e0f --- /dev/null +++ b/packages/icons/icons/border-none.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-outer.svg b/packages/icons/icons/border-outer.svg new file mode 100644 index 000000000..0766b224a --- /dev/null +++ b/packages/icons/icons/border-outer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-radius.svg b/packages/icons/icons/border-radius.svg new file mode 100644 index 000000000..a2d321165 --- /dev/null +++ b/packages/icons/icons/border-radius.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-right.svg b/packages/icons/icons/border-right.svg new file mode 100644 index 000000000..0c714008d --- /dev/null +++ b/packages/icons/icons/border-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-style-2.svg b/packages/icons/icons/border-style-2.svg new file mode 100644 index 000000000..d7c9b997e --- /dev/null +++ b/packages/icons/icons/border-style-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-style.svg b/packages/icons/icons/border-style.svg new file mode 100644 index 000000000..f4ba8bc78 --- /dev/null +++ b/packages/icons/icons/border-style.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-top.svg b/packages/icons/icons/border-top.svg new file mode 100644 index 000000000..b0780f46d --- /dev/null +++ b/packages/icons/icons/border-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/border-vertical.svg b/packages/icons/icons/border-vertical.svg new file mode 100644 index 000000000..f1bc4b54b --- /dev/null +++ b/packages/icons/icons/border-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bottle-off.svg b/packages/icons/icons/bottle-off.svg new file mode 100644 index 000000000..3d2cfcb95 --- /dev/null +++ b/packages/icons/icons/bottle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bottle.svg b/packages/icons/icons/bottle.svg new file mode 100644 index 000000000..1ddc1262c --- /dev/null +++ b/packages/icons/icons/bottle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bounce-left.svg b/packages/icons/icons/bounce-left.svg new file mode 100644 index 000000000..7a56b1184 --- /dev/null +++ b/packages/icons/icons/bounce-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bounce-right.svg b/packages/icons/icons/bounce-right.svg new file mode 100644 index 000000000..818118e70 --- /dev/null +++ b/packages/icons/icons/bounce-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bow.svg b/packages/icons/icons/bow.svg new file mode 100644 index 000000000..398be8d98 --- /dev/null +++ b/packages/icons/icons/bow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bowl.svg b/packages/icons/icons/bowl.svg new file mode 100644 index 000000000..da9fbdcfd --- /dev/null +++ b/packages/icons/icons/bowl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-bottom-left.svg b/packages/icons/icons/box-align-bottom-left.svg new file mode 100644 index 000000000..3bc781c98 --- /dev/null +++ b/packages/icons/icons/box-align-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-bottom-right.svg b/packages/icons/icons/box-align-bottom-right.svg new file mode 100644 index 000000000..70fd9cf58 --- /dev/null +++ b/packages/icons/icons/box-align-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-bottom.svg b/packages/icons/icons/box-align-bottom.svg new file mode 100644 index 000000000..b24798460 --- /dev/null +++ b/packages/icons/icons/box-align-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-left.svg b/packages/icons/icons/box-align-left.svg new file mode 100644 index 000000000..ea483afdf --- /dev/null +++ b/packages/icons/icons/box-align-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-right.svg b/packages/icons/icons/box-align-right.svg new file mode 100644 index 000000000..0a04c647d --- /dev/null +++ b/packages/icons/icons/box-align-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-top-left.svg b/packages/icons/icons/box-align-top-left.svg new file mode 100644 index 000000000..008c17f8f --- /dev/null +++ b/packages/icons/icons/box-align-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-top-right.svg b/packages/icons/icons/box-align-top-right.svg new file mode 100644 index 000000000..388d68861 --- /dev/null +++ b/packages/icons/icons/box-align-top-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-align-top.svg b/packages/icons/icons/box-align-top.svg new file mode 100644 index 000000000..2725e709e --- /dev/null +++ b/packages/icons/icons/box-align-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-margin.svg b/packages/icons/icons/box-margin.svg new file mode 100644 index 000000000..260c2f982 --- /dev/null +++ b/packages/icons/icons/box-margin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-model-2-off.svg b/packages/icons/icons/box-model-2-off.svg new file mode 100644 index 000000000..488a147cb --- /dev/null +++ b/packages/icons/icons/box-model-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-model-2.svg b/packages/icons/icons/box-model-2.svg new file mode 100644 index 000000000..261c236e3 --- /dev/null +++ b/packages/icons/icons/box-model-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-model-off.svg b/packages/icons/icons/box-model-off.svg new file mode 100644 index 000000000..e79378ceb --- /dev/null +++ b/packages/icons/icons/box-model-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-model.svg b/packages/icons/icons/box-model.svg new file mode 100644 index 000000000..d1f1c8b5d --- /dev/null +++ b/packages/icons/icons/box-model.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-0.svg b/packages/icons/icons/box-multiple-0.svg new file mode 100644 index 000000000..33bda6915 --- /dev/null +++ b/packages/icons/icons/box-multiple-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-1.svg b/packages/icons/icons/box-multiple-1.svg new file mode 100644 index 000000000..13e34872d --- /dev/null +++ b/packages/icons/icons/box-multiple-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-2.svg b/packages/icons/icons/box-multiple-2.svg new file mode 100644 index 000000000..80bfc42b3 --- /dev/null +++ b/packages/icons/icons/box-multiple-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-3.svg b/packages/icons/icons/box-multiple-3.svg new file mode 100644 index 000000000..0e0e32483 --- /dev/null +++ b/packages/icons/icons/box-multiple-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-4.svg b/packages/icons/icons/box-multiple-4.svg new file mode 100644 index 000000000..50e885e77 --- /dev/null +++ b/packages/icons/icons/box-multiple-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-5.svg b/packages/icons/icons/box-multiple-5.svg new file mode 100644 index 000000000..214fe4a66 --- /dev/null +++ b/packages/icons/icons/box-multiple-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-6.svg b/packages/icons/icons/box-multiple-6.svg new file mode 100644 index 000000000..eba558cd1 --- /dev/null +++ b/packages/icons/icons/box-multiple-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-7.svg b/packages/icons/icons/box-multiple-7.svg new file mode 100644 index 000000000..22c812eb6 --- /dev/null +++ b/packages/icons/icons/box-multiple-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-8.svg b/packages/icons/icons/box-multiple-8.svg new file mode 100644 index 000000000..2cb7d1c1b --- /dev/null +++ b/packages/icons/icons/box-multiple-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple-9.svg b/packages/icons/icons/box-multiple-9.svg new file mode 100644 index 000000000..32cc39115 --- /dev/null +++ b/packages/icons/icons/box-multiple-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-multiple.svg b/packages/icons/icons/box-multiple.svg new file mode 100644 index 000000000..b52cb2ead --- /dev/null +++ b/packages/icons/icons/box-multiple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-off.svg b/packages/icons/icons/box-off.svg new file mode 100644 index 000000000..a61167848 --- /dev/null +++ b/packages/icons/icons/box-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-padding.svg b/packages/icons/icons/box-padding.svg new file mode 100644 index 000000000..8b05d47ba --- /dev/null +++ b/packages/icons/icons/box-padding.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box-seam.svg b/packages/icons/icons/box-seam.svg new file mode 100644 index 000000000..78bf0a556 --- /dev/null +++ b/packages/icons/icons/box-seam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/box.svg b/packages/icons/icons/box.svg new file mode 100644 index 000000000..82fb0a182 --- /dev/null +++ b/packages/icons/icons/box.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/braces-off.svg b/packages/icons/icons/braces-off.svg new file mode 100644 index 000000000..6a08bd22d --- /dev/null +++ b/packages/icons/icons/braces-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/braces.svg b/packages/icons/icons/braces.svg new file mode 100644 index 000000000..12fde4383 --- /dev/null +++ b/packages/icons/icons/braces.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brackets-contain-end.svg b/packages/icons/icons/brackets-contain-end.svg new file mode 100644 index 000000000..2d80c9c77 --- /dev/null +++ b/packages/icons/icons/brackets-contain-end.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brackets-contain-start.svg b/packages/icons/icons/brackets-contain-start.svg new file mode 100644 index 000000000..863595882 --- /dev/null +++ b/packages/icons/icons/brackets-contain-start.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brackets-contain.svg b/packages/icons/icons/brackets-contain.svg new file mode 100644 index 000000000..78210c40f --- /dev/null +++ b/packages/icons/icons/brackets-contain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brackets-off.svg b/packages/icons/icons/brackets-off.svg new file mode 100644 index 000000000..7efee0534 --- /dev/null +++ b/packages/icons/icons/brackets-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brackets.svg b/packages/icons/icons/brackets.svg new file mode 100644 index 000000000..7fe2acd4c --- /dev/null +++ b/packages/icons/icons/brackets.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/braile.svg b/packages/icons/icons/braile.svg new file mode 100644 index 000000000..16aa9b0c0 --- /dev/null +++ b/packages/icons/icons/braile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brain.svg b/packages/icons/icons/brain.svg new file mode 100644 index 000000000..1e5bb9afd --- /dev/null +++ b/packages/icons/icons/brain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-4chan.svg b/packages/icons/icons/brand-4chan.svg new file mode 100644 index 000000000..f36b006f8 --- /dev/null +++ b/packages/icons/icons/brand-4chan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-abstract.svg b/packages/icons/icons/brand-abstract.svg new file mode 100644 index 000000000..01d24c573 --- /dev/null +++ b/packages/icons/icons/brand-abstract.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-adobe.svg b/packages/icons/icons/brand-adobe.svg new file mode 100644 index 000000000..81de315d2 --- /dev/null +++ b/packages/icons/icons/brand-adobe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-adonis-js.svg b/packages/icons/icons/brand-adonis-js.svg new file mode 100644 index 000000000..391461127 --- /dev/null +++ b/packages/icons/icons/brand-adonis-js.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-airbnb.svg b/packages/icons/icons/brand-airbnb.svg new file mode 100644 index 000000000..b967853f0 --- /dev/null +++ b/packages/icons/icons/brand-airbnb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-airtable.svg b/packages/icons/icons/brand-airtable.svg new file mode 100644 index 000000000..d35b02ccc --- /dev/null +++ b/packages/icons/icons/brand-airtable.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-algolia.svg b/packages/icons/icons/brand-algolia.svg new file mode 100644 index 000000000..3be321d9c --- /dev/null +++ b/packages/icons/icons/brand-algolia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-alpine-js.svg b/packages/icons/icons/brand-alpine-js.svg new file mode 100644 index 000000000..d06b0fc47 --- /dev/null +++ b/packages/icons/icons/brand-alpine-js.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-amazon.svg b/packages/icons/icons/brand-amazon.svg new file mode 100644 index 000000000..23d130292 --- /dev/null +++ b/packages/icons/icons/brand-amazon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-amd.svg b/packages/icons/icons/brand-amd.svg new file mode 100644 index 000000000..b218341ac --- /dev/null +++ b/packages/icons/icons/brand-amd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-amigo.svg b/packages/icons/icons/brand-amigo.svg new file mode 100644 index 000000000..716737fbe --- /dev/null +++ b/packages/icons/icons/brand-amigo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-amongus.svg b/packages/icons/icons/brand-amongus.svg new file mode 100644 index 000000000..1f0fb4256 --- /dev/null +++ b/packages/icons/icons/brand-amongus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-android.svg b/packages/icons/icons/brand-android.svg new file mode 100644 index 000000000..2ab130f9b --- /dev/null +++ b/packages/icons/icons/brand-android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-angular.svg b/packages/icons/icons/brand-angular.svg new file mode 100644 index 000000000..819d87bb6 --- /dev/null +++ b/packages/icons/icons/brand-angular.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ao3.svg b/packages/icons/icons/brand-ao3.svg new file mode 100644 index 000000000..9ea22817c --- /dev/null +++ b/packages/icons/icons/brand-ao3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-appgallery.svg b/packages/icons/icons/brand-appgallery.svg new file mode 100644 index 000000000..7393bb82e --- /dev/null +++ b/packages/icons/icons/brand-appgallery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-apple-arcade.svg b/packages/icons/icons/brand-apple-arcade.svg new file mode 100644 index 000000000..0b8837293 --- /dev/null +++ b/packages/icons/icons/brand-apple-arcade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-apple-podcast.svg b/packages/icons/icons/brand-apple-podcast.svg new file mode 100644 index 000000000..3be0668d9 --- /dev/null +++ b/packages/icons/icons/brand-apple-podcast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-apple.svg b/packages/icons/icons/brand-apple.svg new file mode 100644 index 000000000..91f22cd07 --- /dev/null +++ b/packages/icons/icons/brand-apple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-appstore.svg b/packages/icons/icons/brand-appstore.svg new file mode 100644 index 000000000..8937d2af4 --- /dev/null +++ b/packages/icons/icons/brand-appstore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-asana.svg b/packages/icons/icons/brand-asana.svg new file mode 100644 index 000000000..de65f4f89 --- /dev/null +++ b/packages/icons/icons/brand-asana.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-backbone.svg b/packages/icons/icons/brand-backbone.svg new file mode 100644 index 000000000..09546026c --- /dev/null +++ b/packages/icons/icons/brand-backbone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-badoo.svg b/packages/icons/icons/brand-badoo.svg new file mode 100644 index 000000000..a488d31c3 --- /dev/null +++ b/packages/icons/icons/brand-badoo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-baidu.svg b/packages/icons/icons/brand-baidu.svg new file mode 100644 index 000000000..b6fc799f8 --- /dev/null +++ b/packages/icons/icons/brand-baidu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bandcamp.svg b/packages/icons/icons/brand-bandcamp.svg new file mode 100644 index 000000000..d31c9d532 --- /dev/null +++ b/packages/icons/icons/brand-bandcamp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bandlab.svg b/packages/icons/icons/brand-bandlab.svg new file mode 100644 index 000000000..bb2fb61e9 --- /dev/null +++ b/packages/icons/icons/brand-bandlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-beats.svg b/packages/icons/icons/brand-beats.svg new file mode 100644 index 000000000..d18454880 --- /dev/null +++ b/packages/icons/icons/brand-beats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-behance.svg b/packages/icons/icons/brand-behance.svg new file mode 100644 index 000000000..5e6e6401e --- /dev/null +++ b/packages/icons/icons/brand-behance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-binance.svg b/packages/icons/icons/brand-binance.svg new file mode 100644 index 000000000..8b3522f39 --- /dev/null +++ b/packages/icons/icons/brand-binance.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bing.svg b/packages/icons/icons/brand-bing.svg new file mode 100644 index 000000000..ce2866bd6 --- /dev/null +++ b/packages/icons/icons/brand-bing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bitbucket.svg b/packages/icons/icons/brand-bitbucket.svg new file mode 100644 index 000000000..e33cb8132 --- /dev/null +++ b/packages/icons/icons/brand-bitbucket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-blackbery.svg b/packages/icons/icons/brand-blackbery.svg new file mode 100644 index 000000000..05fd24611 --- /dev/null +++ b/packages/icons/icons/brand-blackbery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-blender.svg b/packages/icons/icons/brand-blender.svg new file mode 100644 index 000000000..f9519c8e7 --- /dev/null +++ b/packages/icons/icons/brand-blender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-blogger.svg b/packages/icons/icons/brand-blogger.svg new file mode 100644 index 000000000..68520c70a --- /dev/null +++ b/packages/icons/icons/brand-blogger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-booking.svg b/packages/icons/icons/brand-booking.svg new file mode 100644 index 000000000..6730d2a94 --- /dev/null +++ b/packages/icons/icons/brand-booking.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bootstrap.svg b/packages/icons/icons/brand-bootstrap.svg new file mode 100644 index 000000000..263ede5a7 --- /dev/null +++ b/packages/icons/icons/brand-bootstrap.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bulma.svg b/packages/icons/icons/brand-bulma.svg new file mode 100644 index 000000000..9ffa01a60 --- /dev/null +++ b/packages/icons/icons/brand-bulma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bumble.svg b/packages/icons/icons/brand-bumble.svg new file mode 100644 index 000000000..bb3586f72 --- /dev/null +++ b/packages/icons/icons/brand-bumble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-bunpo.svg b/packages/icons/icons/brand-bunpo.svg new file mode 100644 index 000000000..84bce62f6 --- /dev/null +++ b/packages/icons/icons/brand-bunpo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-campaignmonitor.svg b/packages/icons/icons/brand-campaignmonitor.svg new file mode 100644 index 000000000..4b0f6fb7f --- /dev/null +++ b/packages/icons/icons/brand-campaignmonitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-carbon.svg b/packages/icons/icons/brand-carbon.svg new file mode 100644 index 000000000..1c7a67225 --- /dev/null +++ b/packages/icons/icons/brand-carbon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cashapp.svg b/packages/icons/icons/brand-cashapp.svg new file mode 100644 index 000000000..9a0ead5b2 --- /dev/null +++ b/packages/icons/icons/brand-cashapp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-chrome.svg b/packages/icons/icons/brand-chrome.svg new file mode 100644 index 000000000..890d1453f --- /dev/null +++ b/packages/icons/icons/brand-chrome.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-citymapper.svg b/packages/icons/icons/brand-citymapper.svg new file mode 100644 index 000000000..76db2f9b6 --- /dev/null +++ b/packages/icons/icons/brand-citymapper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-codecov.svg b/packages/icons/icons/brand-codecov.svg new file mode 100644 index 000000000..8252d8a45 --- /dev/null +++ b/packages/icons/icons/brand-codecov.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-codepen.svg b/packages/icons/icons/brand-codepen.svg new file mode 100644 index 000000000..3254ae44d --- /dev/null +++ b/packages/icons/icons/brand-codepen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-codesandbox.svg b/packages/icons/icons/brand-codesandbox.svg new file mode 100644 index 000000000..55f3f884f --- /dev/null +++ b/packages/icons/icons/brand-codesandbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cohost.svg b/packages/icons/icons/brand-cohost.svg new file mode 100644 index 000000000..95d391b61 --- /dev/null +++ b/packages/icons/icons/brand-cohost.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-coinbase.svg b/packages/icons/icons/brand-coinbase.svg new file mode 100644 index 000000000..3c3092915 --- /dev/null +++ b/packages/icons/icons/brand-coinbase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-comedy-central.svg b/packages/icons/icons/brand-comedy-central.svg new file mode 100644 index 000000000..acd23addf --- /dev/null +++ b/packages/icons/icons/brand-comedy-central.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-coreos.svg b/packages/icons/icons/brand-coreos.svg new file mode 100644 index 000000000..e7e004894 --- /dev/null +++ b/packages/icons/icons/brand-coreos.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-couchdb.svg b/packages/icons/icons/brand-couchdb.svg new file mode 100644 index 000000000..79c1fad25 --- /dev/null +++ b/packages/icons/icons/brand-couchdb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-couchsurfing.svg b/packages/icons/icons/brand-couchsurfing.svg new file mode 100644 index 000000000..5989f674e --- /dev/null +++ b/packages/icons/icons/brand-couchsurfing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cpp.svg b/packages/icons/icons/brand-cpp.svg new file mode 100644 index 000000000..f55d07c64 --- /dev/null +++ b/packages/icons/icons/brand-cpp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-css3.svg b/packages/icons/icons/brand-css3.svg new file mode 100644 index 000000000..8090805d6 --- /dev/null +++ b/packages/icons/icons/brand-css3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ctemplar.svg b/packages/icons/icons/brand-ctemplar.svg new file mode 100644 index 000000000..d2a4a0d12 --- /dev/null +++ b/packages/icons/icons/brand-ctemplar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cucumber.svg b/packages/icons/icons/brand-cucumber.svg new file mode 100644 index 000000000..b18c05d76 --- /dev/null +++ b/packages/icons/icons/brand-cucumber.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cupra.svg b/packages/icons/icons/brand-cupra.svg new file mode 100644 index 000000000..04f7e63d6 --- /dev/null +++ b/packages/icons/icons/brand-cupra.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-cypress.svg b/packages/icons/icons/brand-cypress.svg new file mode 100644 index 000000000..8f5b9c263 --- /dev/null +++ b/packages/icons/icons/brand-cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-d3.svg b/packages/icons/icons/brand-d3.svg new file mode 100644 index 000000000..425338147 --- /dev/null +++ b/packages/icons/icons/brand-d3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-days-counter.svg b/packages/icons/icons/brand-days-counter.svg new file mode 100644 index 000000000..d25007b9c --- /dev/null +++ b/packages/icons/icons/brand-days-counter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-dcos.svg b/packages/icons/icons/brand-dcos.svg new file mode 100644 index 000000000..9f77e54c4 --- /dev/null +++ b/packages/icons/icons/brand-dcos.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-debian.svg b/packages/icons/icons/brand-debian.svg new file mode 100644 index 000000000..c057b7572 --- /dev/null +++ b/packages/icons/icons/brand-debian.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-deliveroo.svg b/packages/icons/icons/brand-deliveroo.svg new file mode 100644 index 000000000..8f839eeac --- /dev/null +++ b/packages/icons/icons/brand-deliveroo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-deno.svg b/packages/icons/icons/brand-deno.svg new file mode 100644 index 000000000..d5592701e --- /dev/null +++ b/packages/icons/icons/brand-deno.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-denodo.svg b/packages/icons/icons/brand-denodo.svg new file mode 100644 index 000000000..47cb3b459 --- /dev/null +++ b/packages/icons/icons/brand-denodo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-deviantart.svg b/packages/icons/icons/brand-deviantart.svg new file mode 100644 index 000000000..8d11ffd2a --- /dev/null +++ b/packages/icons/icons/brand-deviantart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-dingtalk.svg b/packages/icons/icons/brand-dingtalk.svg new file mode 100644 index 000000000..bb07afb34 --- /dev/null +++ b/packages/icons/icons/brand-dingtalk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-discord.svg b/packages/icons/icons/brand-discord.svg new file mode 100644 index 000000000..bc18e0879 --- /dev/null +++ b/packages/icons/icons/brand-discord.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-disney.svg b/packages/icons/icons/brand-disney.svg new file mode 100644 index 000000000..b9807607c --- /dev/null +++ b/packages/icons/icons/brand-disney.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-disqus.svg b/packages/icons/icons/brand-disqus.svg new file mode 100644 index 000000000..30f6f96b9 --- /dev/null +++ b/packages/icons/icons/brand-disqus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-django.svg b/packages/icons/icons/brand-django.svg new file mode 100644 index 000000000..a67af6040 --- /dev/null +++ b/packages/icons/icons/brand-django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-docker.svg b/packages/icons/icons/brand-docker.svg new file mode 100644 index 000000000..9bfa2bd40 --- /dev/null +++ b/packages/icons/icons/brand-docker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-doctrine.svg b/packages/icons/icons/brand-doctrine.svg new file mode 100644 index 000000000..050a58b54 --- /dev/null +++ b/packages/icons/icons/brand-doctrine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-dolby-digital.svg b/packages/icons/icons/brand-dolby-digital.svg new file mode 100644 index 000000000..7e87778c2 --- /dev/null +++ b/packages/icons/icons/brand-dolby-digital.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-douban.svg b/packages/icons/icons/brand-douban.svg new file mode 100644 index 000000000..ffd4fda68 --- /dev/null +++ b/packages/icons/icons/brand-douban.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-dribbble.svg b/packages/icons/icons/brand-dribbble.svg new file mode 100644 index 000000000..ad58a5316 --- /dev/null +++ b/packages/icons/icons/brand-dribbble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-drops.svg b/packages/icons/icons/brand-drops.svg new file mode 100644 index 000000000..4c37876d9 --- /dev/null +++ b/packages/icons/icons/brand-drops.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-drupal.svg b/packages/icons/icons/brand-drupal.svg new file mode 100644 index 000000000..1597c164b --- /dev/null +++ b/packages/icons/icons/brand-drupal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-edge.svg b/packages/icons/icons/brand-edge.svg new file mode 100644 index 000000000..a959f650d --- /dev/null +++ b/packages/icons/icons/brand-edge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-elastic.svg b/packages/icons/icons/brand-elastic.svg new file mode 100644 index 000000000..813736494 --- /dev/null +++ b/packages/icons/icons/brand-elastic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ember.svg b/packages/icons/icons/brand-ember.svg new file mode 100644 index 000000000..52ba09f31 --- /dev/null +++ b/packages/icons/icons/brand-ember.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-envato.svg b/packages/icons/icons/brand-envato.svg new file mode 100644 index 000000000..24f765472 --- /dev/null +++ b/packages/icons/icons/brand-envato.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-etsy.svg b/packages/icons/icons/brand-etsy.svg new file mode 100644 index 000000000..444525789 --- /dev/null +++ b/packages/icons/icons/brand-etsy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-evernote.svg b/packages/icons/icons/brand-evernote.svg new file mode 100644 index 000000000..58f2cc1d0 --- /dev/null +++ b/packages/icons/icons/brand-evernote.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-facebook.svg b/packages/icons/icons/brand-facebook.svg new file mode 100644 index 000000000..97eb06449 --- /dev/null +++ b/packages/icons/icons/brand-facebook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-figma.svg b/packages/icons/icons/brand-figma.svg new file mode 100644 index 000000000..360a92e6f --- /dev/null +++ b/packages/icons/icons/brand-figma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-finder.svg b/packages/icons/icons/brand-finder.svg new file mode 100644 index 000000000..7e3865cc8 --- /dev/null +++ b/packages/icons/icons/brand-finder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-firebase.svg b/packages/icons/icons/brand-firebase.svg new file mode 100644 index 000000000..41912c150 --- /dev/null +++ b/packages/icons/icons/brand-firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-firefox.svg b/packages/icons/icons/brand-firefox.svg new file mode 100644 index 000000000..63fd1e8b0 --- /dev/null +++ b/packages/icons/icons/brand-firefox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-flickr.svg b/packages/icons/icons/brand-flickr.svg new file mode 100644 index 000000000..be2c1a2d5 --- /dev/null +++ b/packages/icons/icons/brand-flickr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-flightradar24.svg b/packages/icons/icons/brand-flightradar24.svg new file mode 100644 index 000000000..790c48d41 --- /dev/null +++ b/packages/icons/icons/brand-flightradar24.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-flipboard.svg b/packages/icons/icons/brand-flipboard.svg new file mode 100644 index 000000000..4ad72aeb6 --- /dev/null +++ b/packages/icons/icons/brand-flipboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-flutter.svg b/packages/icons/icons/brand-flutter.svg new file mode 100644 index 000000000..b2bcf260e --- /dev/null +++ b/packages/icons/icons/brand-flutter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-fortnite.svg b/packages/icons/icons/brand-fortnite.svg new file mode 100644 index 000000000..8a6b5231d --- /dev/null +++ b/packages/icons/icons/brand-fortnite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-foursquare.svg b/packages/icons/icons/brand-foursquare.svg new file mode 100644 index 000000000..6c2b95e22 --- /dev/null +++ b/packages/icons/icons/brand-foursquare.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-framer.svg b/packages/icons/icons/brand-framer.svg new file mode 100644 index 000000000..9932a9d79 --- /dev/null +++ b/packages/icons/icons/brand-framer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-funimation.svg b/packages/icons/icons/brand-funimation.svg new file mode 100644 index 000000000..7f6c62e8f --- /dev/null +++ b/packages/icons/icons/brand-funimation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-gatsby.svg b/packages/icons/icons/brand-gatsby.svg new file mode 100644 index 000000000..94756808b --- /dev/null +++ b/packages/icons/icons/brand-gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-git.svg b/packages/icons/icons/brand-git.svg new file mode 100644 index 000000000..99e818560 --- /dev/null +++ b/packages/icons/icons/brand-git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-github-copilot.svg b/packages/icons/icons/brand-github-copilot.svg new file mode 100644 index 000000000..fdda2018a --- /dev/null +++ b/packages/icons/icons/brand-github-copilot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-github.svg b/packages/icons/icons/brand-github.svg new file mode 100644 index 000000000..1fe7e0b47 --- /dev/null +++ b/packages/icons/icons/brand-github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-gitlab.svg b/packages/icons/icons/brand-gitlab.svg new file mode 100644 index 000000000..dd8fce749 --- /dev/null +++ b/packages/icons/icons/brand-gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-gmail.svg b/packages/icons/icons/brand-gmail.svg new file mode 100644 index 000000000..2605bf867 --- /dev/null +++ b/packages/icons/icons/brand-gmail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-analytics.svg b/packages/icons/icons/brand-google-analytics.svg new file mode 100644 index 000000000..fcb078da9 --- /dev/null +++ b/packages/icons/icons/brand-google-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-big-query.svg b/packages/icons/icons/brand-google-big-query.svg new file mode 100644 index 000000000..79ab9d026 --- /dev/null +++ b/packages/icons/icons/brand-google-big-query.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-drive.svg b/packages/icons/icons/brand-google-drive.svg new file mode 100644 index 000000000..1487e3165 --- /dev/null +++ b/packages/icons/icons/brand-google-drive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-fit.svg b/packages/icons/icons/brand-google-fit.svg new file mode 100644 index 000000000..ccb5c4e65 --- /dev/null +++ b/packages/icons/icons/brand-google-fit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-home.svg b/packages/icons/icons/brand-google-home.svg new file mode 100644 index 000000000..79938dfdc --- /dev/null +++ b/packages/icons/icons/brand-google-home.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-one.svg b/packages/icons/icons/brand-google-one.svg new file mode 100644 index 000000000..973ba2732 --- /dev/null +++ b/packages/icons/icons/brand-google-one.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-photos.svg b/packages/icons/icons/brand-google-photos.svg new file mode 100644 index 000000000..381b32b4f --- /dev/null +++ b/packages/icons/icons/brand-google-photos.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-play.svg b/packages/icons/icons/brand-google-play.svg new file mode 100644 index 000000000..5649268ba --- /dev/null +++ b/packages/icons/icons/brand-google-play.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google-podcasts.svg b/packages/icons/icons/brand-google-podcasts.svg new file mode 100644 index 000000000..8c45e68b1 --- /dev/null +++ b/packages/icons/icons/brand-google-podcasts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-google.svg b/packages/icons/icons/brand-google.svg new file mode 100644 index 000000000..d03db9f1c --- /dev/null +++ b/packages/icons/icons/brand-google.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-grammarly.svg b/packages/icons/icons/brand-grammarly.svg new file mode 100644 index 000000000..d25c0d9fa --- /dev/null +++ b/packages/icons/icons/brand-grammarly.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-graphql.svg b/packages/icons/icons/brand-graphql.svg new file mode 100644 index 000000000..70299d871 --- /dev/null +++ b/packages/icons/icons/brand-graphql.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-gravatar.svg b/packages/icons/icons/brand-gravatar.svg new file mode 100644 index 000000000..426bea518 --- /dev/null +++ b/packages/icons/icons/brand-gravatar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-grindr.svg b/packages/icons/icons/brand-grindr.svg new file mode 100644 index 000000000..2aa2084a2 --- /dev/null +++ b/packages/icons/icons/brand-grindr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-guardian.svg b/packages/icons/icons/brand-guardian.svg new file mode 100644 index 000000000..47da8a5fe --- /dev/null +++ b/packages/icons/icons/brand-guardian.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-gumroad.svg b/packages/icons/icons/brand-gumroad.svg new file mode 100644 index 000000000..380437e3b --- /dev/null +++ b/packages/icons/icons/brand-gumroad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-hbo.svg b/packages/icons/icons/brand-hbo.svg new file mode 100644 index 000000000..5a5651153 --- /dev/null +++ b/packages/icons/icons/brand-hbo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-headlessui.svg b/packages/icons/icons/brand-headlessui.svg new file mode 100644 index 000000000..dba47563e --- /dev/null +++ b/packages/icons/icons/brand-headlessui.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-hipchat.svg b/packages/icons/icons/brand-hipchat.svg new file mode 100644 index 000000000..ff9f2fa7d --- /dev/null +++ b/packages/icons/icons/brand-hipchat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-html5.svg b/packages/icons/icons/brand-html5.svg new file mode 100644 index 000000000..594d83b78 --- /dev/null +++ b/packages/icons/icons/brand-html5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-inertia.svg b/packages/icons/icons/brand-inertia.svg new file mode 100644 index 000000000..17dbfc2c6 --- /dev/null +++ b/packages/icons/icons/brand-inertia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-instagram.svg b/packages/icons/icons/brand-instagram.svg new file mode 100644 index 000000000..f2e0ab8fa --- /dev/null +++ b/packages/icons/icons/brand-instagram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-intercom.svg b/packages/icons/icons/brand-intercom.svg new file mode 100644 index 000000000..d30a79745 --- /dev/null +++ b/packages/icons/icons/brand-intercom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-javascript.svg b/packages/icons/icons/brand-javascript.svg new file mode 100644 index 000000000..0f433219a --- /dev/null +++ b/packages/icons/icons/brand-javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-kickstarter.svg b/packages/icons/icons/brand-kickstarter.svg new file mode 100644 index 000000000..0e6f703da --- /dev/null +++ b/packages/icons/icons/brand-kickstarter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-kotlin.svg b/packages/icons/icons/brand-kotlin.svg new file mode 100644 index 000000000..5932a097e --- /dev/null +++ b/packages/icons/icons/brand-kotlin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-laravel.svg b/packages/icons/icons/brand-laravel.svg new file mode 100644 index 000000000..fad53337a --- /dev/null +++ b/packages/icons/icons/brand-laravel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-lastfm.svg b/packages/icons/icons/brand-lastfm.svg new file mode 100644 index 000000000..20180c439 --- /dev/null +++ b/packages/icons/icons/brand-lastfm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-linkedin.svg b/packages/icons/icons/brand-linkedin.svg new file mode 100644 index 000000000..35e439d1f --- /dev/null +++ b/packages/icons/icons/brand-linkedin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-linktree.svg b/packages/icons/icons/brand-linktree.svg new file mode 100644 index 000000000..f6e2e206a --- /dev/null +++ b/packages/icons/icons/brand-linktree.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-linqpad.svg b/packages/icons/icons/brand-linqpad.svg new file mode 100644 index 000000000..1dfb68a20 --- /dev/null +++ b/packages/icons/icons/brand-linqpad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-loom.svg b/packages/icons/icons/brand-loom.svg new file mode 100644 index 000000000..5c0c8adef --- /dev/null +++ b/packages/icons/icons/brand-loom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mailgun.svg b/packages/icons/icons/brand-mailgun.svg new file mode 100644 index 000000000..345983e39 --- /dev/null +++ b/packages/icons/icons/brand-mailgun.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mantine.svg b/packages/icons/icons/brand-mantine.svg new file mode 100644 index 000000000..b8e389e3c --- /dev/null +++ b/packages/icons/icons/brand-mantine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mastercard.svg b/packages/icons/icons/brand-mastercard.svg new file mode 100644 index 000000000..7250adb4a --- /dev/null +++ b/packages/icons/icons/brand-mastercard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mastodon.svg b/packages/icons/icons/brand-mastodon.svg new file mode 100644 index 000000000..aca1fd71c --- /dev/null +++ b/packages/icons/icons/brand-mastodon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-matrix.svg b/packages/icons/icons/brand-matrix.svg new file mode 100644 index 000000000..f8644e0db --- /dev/null +++ b/packages/icons/icons/brand-matrix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mcdonalds.svg b/packages/icons/icons/brand-mcdonalds.svg new file mode 100644 index 000000000..0bf053d14 --- /dev/null +++ b/packages/icons/icons/brand-mcdonalds.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-medium.svg b/packages/icons/icons/brand-medium.svg new file mode 100644 index 000000000..5bde7b52c --- /dev/null +++ b/packages/icons/icons/brand-medium.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mercedes.svg b/packages/icons/icons/brand-mercedes.svg new file mode 100644 index 000000000..e2feac0b5 --- /dev/null +++ b/packages/icons/icons/brand-mercedes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-messenger.svg b/packages/icons/icons/brand-messenger.svg new file mode 100644 index 000000000..ddf3b25ec --- /dev/null +++ b/packages/icons/icons/brand-messenger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-meta.svg b/packages/icons/icons/brand-meta.svg new file mode 100644 index 000000000..30474a180 --- /dev/null +++ b/packages/icons/icons/brand-meta.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-miniprogram.svg b/packages/icons/icons/brand-miniprogram.svg new file mode 100644 index 000000000..4ea99f25f --- /dev/null +++ b/packages/icons/icons/brand-miniprogram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mixpanel.svg b/packages/icons/icons/brand-mixpanel.svg new file mode 100644 index 000000000..8338ae933 --- /dev/null +++ b/packages/icons/icons/brand-mixpanel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-monday.svg b/packages/icons/icons/brand-monday.svg new file mode 100644 index 000000000..dab2176fc --- /dev/null +++ b/packages/icons/icons/brand-monday.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mongodb.svg b/packages/icons/icons/brand-mongodb.svg new file mode 100644 index 000000000..f7630ce4e --- /dev/null +++ b/packages/icons/icons/brand-mongodb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-my-oppo.svg b/packages/icons/icons/brand-my-oppo.svg new file mode 100644 index 000000000..36e467eb4 --- /dev/null +++ b/packages/icons/icons/brand-my-oppo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-mysql.svg b/packages/icons/icons/brand-mysql.svg new file mode 100644 index 000000000..54aa6fb83 --- /dev/null +++ b/packages/icons/icons/brand-mysql.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-national-geographic.svg b/packages/icons/icons/brand-national-geographic.svg new file mode 100644 index 000000000..eaa8d7793 --- /dev/null +++ b/packages/icons/icons/brand-national-geographic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nem.svg b/packages/icons/icons/brand-nem.svg new file mode 100644 index 000000000..e8d73de84 --- /dev/null +++ b/packages/icons/icons/brand-nem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-netbeans.svg b/packages/icons/icons/brand-netbeans.svg new file mode 100644 index 000000000..29903d662 --- /dev/null +++ b/packages/icons/icons/brand-netbeans.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-netease-music.svg b/packages/icons/icons/brand-netease-music.svg new file mode 100644 index 000000000..0567f62d3 --- /dev/null +++ b/packages/icons/icons/brand-netease-music.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-netflix.svg b/packages/icons/icons/brand-netflix.svg new file mode 100644 index 000000000..1b2d1679b --- /dev/null +++ b/packages/icons/icons/brand-netflix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nexo.svg b/packages/icons/icons/brand-nexo.svg new file mode 100644 index 000000000..60e6fcfdc --- /dev/null +++ b/packages/icons/icons/brand-nexo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nextcloud.svg b/packages/icons/icons/brand-nextcloud.svg new file mode 100644 index 000000000..c0979b033 --- /dev/null +++ b/packages/icons/icons/brand-nextcloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nextjs.svg b/packages/icons/icons/brand-nextjs.svg new file mode 100644 index 000000000..77df57d8f --- /dev/null +++ b/packages/icons/icons/brand-nextjs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nord-vpn.svg b/packages/icons/icons/brand-nord-vpn.svg new file mode 100644 index 000000000..d8a968802 --- /dev/null +++ b/packages/icons/icons/brand-nord-vpn.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-notion.svg b/packages/icons/icons/brand-notion.svg new file mode 100644 index 000000000..a114c11d7 --- /dev/null +++ b/packages/icons/icons/brand-notion.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-npm.svg b/packages/icons/icons/brand-npm.svg new file mode 100644 index 000000000..5ef7679ac --- /dev/null +++ b/packages/icons/icons/brand-npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nuxt.svg b/packages/icons/icons/brand-nuxt.svg new file mode 100644 index 000000000..f77cbf227 --- /dev/null +++ b/packages/icons/icons/brand-nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-nytimes.svg b/packages/icons/icons/brand-nytimes.svg new file mode 100644 index 000000000..b21eac430 --- /dev/null +++ b/packages/icons/icons/brand-nytimes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-office.svg b/packages/icons/icons/brand-office.svg new file mode 100644 index 000000000..d887cedda --- /dev/null +++ b/packages/icons/icons/brand-office.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ok-ru.svg b/packages/icons/icons/brand-ok-ru.svg new file mode 100644 index 000000000..426de5a2e --- /dev/null +++ b/packages/icons/icons/brand-ok-ru.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-onedrive.svg b/packages/icons/icons/brand-onedrive.svg new file mode 100644 index 000000000..e5f099ddd --- /dev/null +++ b/packages/icons/icons/brand-onedrive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-onlyfans.svg b/packages/icons/icons/brand-onlyfans.svg new file mode 100644 index 000000000..0dc915e1d --- /dev/null +++ b/packages/icons/icons/brand-onlyfans.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-open-source.svg b/packages/icons/icons/brand-open-source.svg new file mode 100644 index 000000000..20b2d8e60 --- /dev/null +++ b/packages/icons/icons/brand-open-source.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-openvpn.svg b/packages/icons/icons/brand-openvpn.svg new file mode 100644 index 000000000..6d435c77d --- /dev/null +++ b/packages/icons/icons/brand-openvpn.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-opera.svg b/packages/icons/icons/brand-opera.svg new file mode 100644 index 000000000..dc2085e21 --- /dev/null +++ b/packages/icons/icons/brand-opera.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pagekit.svg b/packages/icons/icons/brand-pagekit.svg new file mode 100644 index 000000000..eedb55be6 --- /dev/null +++ b/packages/icons/icons/brand-pagekit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-patreon.svg b/packages/icons/icons/brand-patreon.svg new file mode 100644 index 000000000..dd4a82349 --- /dev/null +++ b/packages/icons/icons/brand-patreon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-paypal.svg b/packages/icons/icons/brand-paypal.svg new file mode 100644 index 000000000..6a47c6638 --- /dev/null +++ b/packages/icons/icons/brand-paypal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-paypay.svg b/packages/icons/icons/brand-paypay.svg new file mode 100644 index 000000000..2c2044678 --- /dev/null +++ b/packages/icons/icons/brand-paypay.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-peanut.svg b/packages/icons/icons/brand-peanut.svg new file mode 100644 index 000000000..9c4c134b2 --- /dev/null +++ b/packages/icons/icons/brand-peanut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pepsi.svg b/packages/icons/icons/brand-pepsi.svg new file mode 100644 index 000000000..4aacd4d13 --- /dev/null +++ b/packages/icons/icons/brand-pepsi.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-php.svg b/packages/icons/icons/brand-php.svg new file mode 100644 index 000000000..cd612795d --- /dev/null +++ b/packages/icons/icons/brand-php.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-picsart.svg b/packages/icons/icons/brand-picsart.svg new file mode 100644 index 000000000..752beb698 --- /dev/null +++ b/packages/icons/icons/brand-picsart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pinterest.svg b/packages/icons/icons/brand-pinterest.svg new file mode 100644 index 000000000..76a270fea --- /dev/null +++ b/packages/icons/icons/brand-pinterest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pocket.svg b/packages/icons/icons/brand-pocket.svg new file mode 100644 index 000000000..e86eec61b --- /dev/null +++ b/packages/icons/icons/brand-pocket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-polymer.svg b/packages/icons/icons/brand-polymer.svg new file mode 100644 index 000000000..f64be842c --- /dev/null +++ b/packages/icons/icons/brand-polymer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-powershell.svg b/packages/icons/icons/brand-powershell.svg new file mode 100644 index 000000000..b60489bac --- /dev/null +++ b/packages/icons/icons/brand-powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-prisma.svg b/packages/icons/icons/brand-prisma.svg new file mode 100644 index 000000000..08428c2ff --- /dev/null +++ b/packages/icons/icons/brand-prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-producthunt.svg b/packages/icons/icons/brand-producthunt.svg new file mode 100644 index 000000000..5e237f8db --- /dev/null +++ b/packages/icons/icons/brand-producthunt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pushbullet.svg b/packages/icons/icons/brand-pushbullet.svg new file mode 100644 index 000000000..58add1abb --- /dev/null +++ b/packages/icons/icons/brand-pushbullet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-pushover.svg b/packages/icons/icons/brand-pushover.svg new file mode 100644 index 000000000..3ec60b4b4 --- /dev/null +++ b/packages/icons/icons/brand-pushover.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-python.svg b/packages/icons/icons/brand-python.svg new file mode 100644 index 000000000..f74f9eb56 --- /dev/null +++ b/packages/icons/icons/brand-python.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-qq.svg b/packages/icons/icons/brand-qq.svg new file mode 100644 index 000000000..b7eef5338 --- /dev/null +++ b/packages/icons/icons/brand-qq.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-react-native.svg b/packages/icons/icons/brand-react-native.svg new file mode 100644 index 000000000..cdd5dbe95 --- /dev/null +++ b/packages/icons/icons/brand-react-native.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-react.svg b/packages/icons/icons/brand-react.svg new file mode 100644 index 000000000..dd8172898 --- /dev/null +++ b/packages/icons/icons/brand-react.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-reason.svg b/packages/icons/icons/brand-reason.svg new file mode 100644 index 000000000..fbec60863 --- /dev/null +++ b/packages/icons/icons/brand-reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-reddit.svg b/packages/icons/icons/brand-reddit.svg new file mode 100644 index 000000000..b50835ab2 --- /dev/null +++ b/packages/icons/icons/brand-reddit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-redhat.svg b/packages/icons/icons/brand-redhat.svg new file mode 100644 index 000000000..08abd3907 --- /dev/null +++ b/packages/icons/icons/brand-redhat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-redux.svg b/packages/icons/icons/brand-redux.svg new file mode 100644 index 000000000..e9473e697 --- /dev/null +++ b/packages/icons/icons/brand-redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-revolut.svg b/packages/icons/icons/brand-revolut.svg new file mode 100644 index 000000000..f42762bac --- /dev/null +++ b/packages/icons/icons/brand-revolut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-safari.svg b/packages/icons/icons/brand-safari.svg new file mode 100644 index 000000000..b72b5ee00 --- /dev/null +++ b/packages/icons/icons/brand-safari.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-samsungpass.svg b/packages/icons/icons/brand-samsungpass.svg new file mode 100644 index 000000000..24e51160d --- /dev/null +++ b/packages/icons/icons/brand-samsungpass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-sass.svg b/packages/icons/icons/brand-sass.svg new file mode 100644 index 000000000..5922c6b0e --- /dev/null +++ b/packages/icons/icons/brand-sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-sentry.svg b/packages/icons/icons/brand-sentry.svg new file mode 100644 index 000000000..9b6913117 --- /dev/null +++ b/packages/icons/icons/brand-sentry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-sharik.svg b/packages/icons/icons/brand-sharik.svg new file mode 100644 index 000000000..4b6ef23f8 --- /dev/null +++ b/packages/icons/icons/brand-sharik.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-shazam.svg b/packages/icons/icons/brand-shazam.svg new file mode 100644 index 000000000..b83561291 --- /dev/null +++ b/packages/icons/icons/brand-shazam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-shopee.svg b/packages/icons/icons/brand-shopee.svg new file mode 100644 index 000000000..0333056db --- /dev/null +++ b/packages/icons/icons/brand-shopee.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-sketch.svg b/packages/icons/icons/brand-sketch.svg new file mode 100644 index 000000000..06a8a1273 --- /dev/null +++ b/packages/icons/icons/brand-sketch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-skype.svg b/packages/icons/icons/brand-skype.svg new file mode 100644 index 000000000..fdc6b3905 --- /dev/null +++ b/packages/icons/icons/brand-skype.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-slack.svg b/packages/icons/icons/brand-slack.svg new file mode 100644 index 000000000..03530601f --- /dev/null +++ b/packages/icons/icons/brand-slack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-snapchat.svg b/packages/icons/icons/brand-snapchat.svg new file mode 100644 index 000000000..268c27ae3 --- /dev/null +++ b/packages/icons/icons/brand-snapchat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-snapseed.svg b/packages/icons/icons/brand-snapseed.svg new file mode 100644 index 000000000..279995430 --- /dev/null +++ b/packages/icons/icons/brand-snapseed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-snowflake.svg b/packages/icons/icons/brand-snowflake.svg new file mode 100644 index 000000000..370366028 --- /dev/null +++ b/packages/icons/icons/brand-snowflake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-socket-io.svg b/packages/icons/icons/brand-socket-io.svg new file mode 100644 index 000000000..d4ec822eb --- /dev/null +++ b/packages/icons/icons/brand-socket-io.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-solidjs.svg b/packages/icons/icons/brand-solidjs.svg new file mode 100644 index 000000000..20acff2c1 --- /dev/null +++ b/packages/icons/icons/brand-solidjs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-soundcloud.svg b/packages/icons/icons/brand-soundcloud.svg new file mode 100644 index 000000000..17547edcb --- /dev/null +++ b/packages/icons/icons/brand-soundcloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-spacehey.svg b/packages/icons/icons/brand-spacehey.svg new file mode 100644 index 000000000..7b1a3c5c3 --- /dev/null +++ b/packages/icons/icons/brand-spacehey.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-spotify.svg b/packages/icons/icons/brand-spotify.svg new file mode 100644 index 000000000..97ad22fb0 --- /dev/null +++ b/packages/icons/icons/brand-spotify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-stackoverflow.svg b/packages/icons/icons/brand-stackoverflow.svg new file mode 100644 index 000000000..612a27322 --- /dev/null +++ b/packages/icons/icons/brand-stackoverflow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-stackshare.svg b/packages/icons/icons/brand-stackshare.svg new file mode 100644 index 000000000..16614899c --- /dev/null +++ b/packages/icons/icons/brand-stackshare.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-steam.svg b/packages/icons/icons/brand-steam.svg new file mode 100644 index 000000000..f8ec2473b --- /dev/null +++ b/packages/icons/icons/brand-steam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-storybook.svg b/packages/icons/icons/brand-storybook.svg new file mode 100644 index 000000000..4e20714e4 --- /dev/null +++ b/packages/icons/icons/brand-storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-storytel.svg b/packages/icons/icons/brand-storytel.svg new file mode 100644 index 000000000..a4528375f --- /dev/null +++ b/packages/icons/icons/brand-storytel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-strava.svg b/packages/icons/icons/brand-strava.svg new file mode 100644 index 000000000..70d505610 --- /dev/null +++ b/packages/icons/icons/brand-strava.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-stripe.svg b/packages/icons/icons/brand-stripe.svg new file mode 100644 index 000000000..19eb9ce75 --- /dev/null +++ b/packages/icons/icons/brand-stripe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-sublime-text.svg b/packages/icons/icons/brand-sublime-text.svg new file mode 100644 index 000000000..19ec1e6f8 --- /dev/null +++ b/packages/icons/icons/brand-sublime-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-superhuman.svg b/packages/icons/icons/brand-superhuman.svg new file mode 100644 index 000000000..6eebe5964 --- /dev/null +++ b/packages/icons/icons/brand-superhuman.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-supernova.svg b/packages/icons/icons/brand-supernova.svg new file mode 100644 index 000000000..f9f742e7f --- /dev/null +++ b/packages/icons/icons/brand-supernova.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-surfshark.svg b/packages/icons/icons/brand-surfshark.svg new file mode 100644 index 000000000..a64772446 --- /dev/null +++ b/packages/icons/icons/brand-surfshark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-svelte.svg b/packages/icons/icons/brand-svelte.svg new file mode 100644 index 000000000..cd43e18dd --- /dev/null +++ b/packages/icons/icons/brand-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-symfony.svg b/packages/icons/icons/brand-symfony.svg new file mode 100644 index 000000000..ed6ef4cdd --- /dev/null +++ b/packages/icons/icons/brand-symfony.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tabler.svg b/packages/icons/icons/brand-tabler.svg new file mode 100644 index 000000000..c8387b16c --- /dev/null +++ b/packages/icons/icons/brand-tabler.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tailwind.svg b/packages/icons/icons/brand-tailwind.svg new file mode 100644 index 000000000..1613c1516 --- /dev/null +++ b/packages/icons/icons/brand-tailwind.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-taobao.svg b/packages/icons/icons/brand-taobao.svg new file mode 100644 index 000000000..0375359f6 --- /dev/null +++ b/packages/icons/icons/brand-taobao.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ted.svg b/packages/icons/icons/brand-ted.svg new file mode 100644 index 000000000..f1d9ede20 --- /dev/null +++ b/packages/icons/icons/brand-ted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-telegram.svg b/packages/icons/icons/brand-telegram.svg new file mode 100644 index 000000000..632ace568 --- /dev/null +++ b/packages/icons/icons/brand-telegram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tether.svg b/packages/icons/icons/brand-tether.svg new file mode 100644 index 000000000..1b2d31601 --- /dev/null +++ b/packages/icons/icons/brand-tether.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-threejs.svg b/packages/icons/icons/brand-threejs.svg new file mode 100644 index 000000000..9485533d7 --- /dev/null +++ b/packages/icons/icons/brand-threejs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tidal.svg b/packages/icons/icons/brand-tidal.svg new file mode 100644 index 000000000..9550c0052 --- /dev/null +++ b/packages/icons/icons/brand-tidal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tiktok.svg b/packages/icons/icons/brand-tiktok.svg new file mode 100644 index 000000000..d43b8ca0a --- /dev/null +++ b/packages/icons/icons/brand-tiktok.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tinder.svg b/packages/icons/icons/brand-tinder.svg new file mode 100644 index 000000000..df04d7a2f --- /dev/null +++ b/packages/icons/icons/brand-tinder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-topbuzz.svg b/packages/icons/icons/brand-topbuzz.svg new file mode 100644 index 000000000..2723d3f91 --- /dev/null +++ b/packages/icons/icons/brand-topbuzz.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-torchain.svg b/packages/icons/icons/brand-torchain.svg new file mode 100644 index 000000000..8233521cc --- /dev/null +++ b/packages/icons/icons/brand-torchain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-toyota.svg b/packages/icons/icons/brand-toyota.svg new file mode 100644 index 000000000..37e43ed4a --- /dev/null +++ b/packages/icons/icons/brand-toyota.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-trello.svg b/packages/icons/icons/brand-trello.svg new file mode 100644 index 000000000..c9868a68c --- /dev/null +++ b/packages/icons/icons/brand-trello.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tripadvisor.svg b/packages/icons/icons/brand-tripadvisor.svg new file mode 100644 index 000000000..bb02b22dc --- /dev/null +++ b/packages/icons/icons/brand-tripadvisor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-tumblr.svg b/packages/icons/icons/brand-tumblr.svg new file mode 100644 index 000000000..8fa1d50cd --- /dev/null +++ b/packages/icons/icons/brand-tumblr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-twilio.svg b/packages/icons/icons/brand-twilio.svg new file mode 100644 index 000000000..9a5be033c --- /dev/null +++ b/packages/icons/icons/brand-twilio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-twitch.svg b/packages/icons/icons/brand-twitch.svg new file mode 100644 index 000000000..a304b55d3 --- /dev/null +++ b/packages/icons/icons/brand-twitch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-twitter.svg b/packages/icons/icons/brand-twitter.svg new file mode 100644 index 000000000..aa78003a1 --- /dev/null +++ b/packages/icons/icons/brand-twitter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-typescript.svg b/packages/icons/icons/brand-typescript.svg new file mode 100644 index 000000000..2a7fad6c5 --- /dev/null +++ b/packages/icons/icons/brand-typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-uber.svg b/packages/icons/icons/brand-uber.svg new file mode 100644 index 000000000..31057184b --- /dev/null +++ b/packages/icons/icons/brand-uber.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ubuntu.svg b/packages/icons/icons/brand-ubuntu.svg new file mode 100644 index 000000000..d02c6e4b4 --- /dev/null +++ b/packages/icons/icons/brand-ubuntu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-unity.svg b/packages/icons/icons/brand-unity.svg new file mode 100644 index 000000000..a063aefbc --- /dev/null +++ b/packages/icons/icons/brand-unity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-unsplash.svg b/packages/icons/icons/brand-unsplash.svg new file mode 100644 index 000000000..4c4364b83 --- /dev/null +++ b/packages/icons/icons/brand-unsplash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-upwork.svg b/packages/icons/icons/brand-upwork.svg new file mode 100644 index 000000000..493862e7e --- /dev/null +++ b/packages/icons/icons/brand-upwork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-valorant.svg b/packages/icons/icons/brand-valorant.svg new file mode 100644 index 000000000..666df0a7a --- /dev/null +++ b/packages/icons/icons/brand-valorant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vercel.svg b/packages/icons/icons/brand-vercel.svg new file mode 100644 index 000000000..60a7cbd3f --- /dev/null +++ b/packages/icons/icons/brand-vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vimeo.svg b/packages/icons/icons/brand-vimeo.svg new file mode 100644 index 000000000..414844212 --- /dev/null +++ b/packages/icons/icons/brand-vimeo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vinted.svg b/packages/icons/icons/brand-vinted.svg new file mode 100644 index 000000000..4698dc8a5 --- /dev/null +++ b/packages/icons/icons/brand-vinted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-visa.svg b/packages/icons/icons/brand-visa.svg new file mode 100644 index 000000000..191fa4cc7 --- /dev/null +++ b/packages/icons/icons/brand-visa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-visual-studio.svg b/packages/icons/icons/brand-visual-studio.svg new file mode 100644 index 000000000..3f2449e9a --- /dev/null +++ b/packages/icons/icons/brand-visual-studio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vite.svg b/packages/icons/icons/brand-vite.svg new file mode 100644 index 000000000..8f72fd37a --- /dev/null +++ b/packages/icons/icons/brand-vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vivaldi.svg b/packages/icons/icons/brand-vivaldi.svg new file mode 100644 index 000000000..8d9562096 --- /dev/null +++ b/packages/icons/icons/brand-vivaldi.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vk.svg b/packages/icons/icons/brand-vk.svg new file mode 100644 index 000000000..5f607b583 --- /dev/null +++ b/packages/icons/icons/brand-vk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-volkswagen.svg b/packages/icons/icons/brand-volkswagen.svg new file mode 100644 index 000000000..c3eb169da --- /dev/null +++ b/packages/icons/icons/brand-volkswagen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vsco.svg b/packages/icons/icons/brand-vsco.svg new file mode 100644 index 000000000..fd3b87544 --- /dev/null +++ b/packages/icons/icons/brand-vsco.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vscode.svg b/packages/icons/icons/brand-vscode.svg new file mode 100644 index 000000000..7f35c359f --- /dev/null +++ b/packages/icons/icons/brand-vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-vue.svg b/packages/icons/icons/brand-vue.svg new file mode 100644 index 000000000..d4165e404 --- /dev/null +++ b/packages/icons/icons/brand-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-walmart.svg b/packages/icons/icons/brand-walmart.svg new file mode 100644 index 000000000..b42d0ddea --- /dev/null +++ b/packages/icons/icons/brand-walmart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-waze.svg b/packages/icons/icons/brand-waze.svg new file mode 100644 index 000000000..14e3c70b7 --- /dev/null +++ b/packages/icons/icons/brand-waze.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-webflow.svg b/packages/icons/icons/brand-webflow.svg new file mode 100644 index 000000000..e1a56f7d2 --- /dev/null +++ b/packages/icons/icons/brand-webflow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-wechat.svg b/packages/icons/icons/brand-wechat.svg new file mode 100644 index 000000000..8faa1821b --- /dev/null +++ b/packages/icons/icons/brand-wechat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-weibo.svg b/packages/icons/icons/brand-weibo.svg new file mode 100644 index 000000000..8ec36b999 --- /dev/null +++ b/packages/icons/icons/brand-weibo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-whatsapp.svg b/packages/icons/icons/brand-whatsapp.svg new file mode 100644 index 000000000..43dd763ad --- /dev/null +++ b/packages/icons/icons/brand-whatsapp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-windows.svg b/packages/icons/icons/brand-windows.svg new file mode 100644 index 000000000..6d9a7a695 --- /dev/null +++ b/packages/icons/icons/brand-windows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-windy.svg b/packages/icons/icons/brand-windy.svg new file mode 100644 index 000000000..3932462f8 --- /dev/null +++ b/packages/icons/icons/brand-windy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-wish.svg b/packages/icons/icons/brand-wish.svg new file mode 100644 index 000000000..4d0a44c46 --- /dev/null +++ b/packages/icons/icons/brand-wish.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-wix.svg b/packages/icons/icons/brand-wix.svg new file mode 100644 index 000000000..c465999aa --- /dev/null +++ b/packages/icons/icons/brand-wix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-wordpress.svg b/packages/icons/icons/brand-wordpress.svg new file mode 100644 index 000000000..587ff2481 --- /dev/null +++ b/packages/icons/icons/brand-wordpress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-xbox.svg b/packages/icons/icons/brand-xbox.svg new file mode 100644 index 000000000..e0f5b6fa8 --- /dev/null +++ b/packages/icons/icons/brand-xbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-xing.svg b/packages/icons/icons/brand-xing.svg new file mode 100644 index 000000000..7146fefac --- /dev/null +++ b/packages/icons/icons/brand-xing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-yahoo.svg b/packages/icons/icons/brand-yahoo.svg new file mode 100644 index 000000000..d3243ecb3 --- /dev/null +++ b/packages/icons/icons/brand-yahoo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-yatse.svg b/packages/icons/icons/brand-yatse.svg new file mode 100644 index 000000000..d78eaefd8 --- /dev/null +++ b/packages/icons/icons/brand-yatse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-ycombinator.svg b/packages/icons/icons/brand-ycombinator.svg new file mode 100644 index 000000000..41e8f2072 --- /dev/null +++ b/packages/icons/icons/brand-ycombinator.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-youtube-kids.svg b/packages/icons/icons/brand-youtube-kids.svg new file mode 100644 index 000000000..91b0dbcff --- /dev/null +++ b/packages/icons/icons/brand-youtube-kids.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-youtube.svg b/packages/icons/icons/brand-youtube.svg new file mode 100644 index 000000000..0968456b0 --- /dev/null +++ b/packages/icons/icons/brand-youtube.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zalando.svg b/packages/icons/icons/brand-zalando.svg new file mode 100644 index 000000000..387f65864 --- /dev/null +++ b/packages/icons/icons/brand-zalando.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zapier.svg b/packages/icons/icons/brand-zapier.svg new file mode 100644 index 000000000..ff8d5ead3 --- /dev/null +++ b/packages/icons/icons/brand-zapier.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zeit.svg b/packages/icons/icons/brand-zeit.svg new file mode 100644 index 000000000..9e5f59bb1 --- /dev/null +++ b/packages/icons/icons/brand-zeit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zhihu.svg b/packages/icons/icons/brand-zhihu.svg new file mode 100644 index 000000000..ea427e8c6 --- /dev/null +++ b/packages/icons/icons/brand-zhihu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zoom.svg b/packages/icons/icons/brand-zoom.svg new file mode 100644 index 000000000..100b98f0e --- /dev/null +++ b/packages/icons/icons/brand-zoom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zulip.svg b/packages/icons/icons/brand-zulip.svg new file mode 100644 index 000000000..4b28f0803 --- /dev/null +++ b/packages/icons/icons/brand-zulip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brand-zwift.svg b/packages/icons/icons/brand-zwift.svg new file mode 100644 index 000000000..b03128c5a --- /dev/null +++ b/packages/icons/icons/brand-zwift.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bread-off.svg b/packages/icons/icons/bread-off.svg new file mode 100644 index 000000000..f4a5c132a --- /dev/null +++ b/packages/icons/icons/bread-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bread.svg b/packages/icons/icons/bread.svg new file mode 100644 index 000000000..938557484 --- /dev/null +++ b/packages/icons/icons/bread.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/briefcase-off.svg b/packages/icons/icons/briefcase-off.svg new file mode 100644 index 000000000..1d602d329 --- /dev/null +++ b/packages/icons/icons/briefcase-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/briefcase.svg b/packages/icons/icons/briefcase.svg new file mode 100644 index 000000000..28619fffb --- /dev/null +++ b/packages/icons/icons/briefcase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness-2.svg b/packages/icons/icons/brightness-2.svg new file mode 100644 index 000000000..9972a94e5 --- /dev/null +++ b/packages/icons/icons/brightness-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness-down.svg b/packages/icons/icons/brightness-down.svg new file mode 100644 index 000000000..86ee96f10 --- /dev/null +++ b/packages/icons/icons/brightness-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness-half.svg b/packages/icons/icons/brightness-half.svg new file mode 100644 index 000000000..914b827bc --- /dev/null +++ b/packages/icons/icons/brightness-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness-off.svg b/packages/icons/icons/brightness-off.svg new file mode 100644 index 000000000..f8f71fa46 --- /dev/null +++ b/packages/icons/icons/brightness-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness-up.svg b/packages/icons/icons/brightness-up.svg new file mode 100644 index 000000000..428e2d83d --- /dev/null +++ b/packages/icons/icons/brightness-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brightness.svg b/packages/icons/icons/brightness.svg new file mode 100644 index 000000000..b4d386761 --- /dev/null +++ b/packages/icons/icons/brightness.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/broadcast-off.svg b/packages/icons/icons/broadcast-off.svg new file mode 100644 index 000000000..ec190e3c6 --- /dev/null +++ b/packages/icons/icons/broadcast-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/broadcast.svg b/packages/icons/icons/broadcast.svg new file mode 100644 index 000000000..d4e69a020 --- /dev/null +++ b/packages/icons/icons/broadcast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/browser-check.svg b/packages/icons/icons/browser-check.svg new file mode 100644 index 000000000..e779cf832 --- /dev/null +++ b/packages/icons/icons/browser-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/browser-off.svg b/packages/icons/icons/browser-off.svg new file mode 100644 index 000000000..668b8efe9 --- /dev/null +++ b/packages/icons/icons/browser-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/browser-plus.svg b/packages/icons/icons/browser-plus.svg new file mode 100644 index 000000000..ea68f4ece --- /dev/null +++ b/packages/icons/icons/browser-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/browser-x.svg b/packages/icons/icons/browser-x.svg new file mode 100644 index 000000000..f388dd7b8 --- /dev/null +++ b/packages/icons/icons/browser-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/browser.svg b/packages/icons/icons/browser.svg new file mode 100644 index 000000000..fb0220afb --- /dev/null +++ b/packages/icons/icons/browser.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brush-off.svg b/packages/icons/icons/brush-off.svg new file mode 100644 index 000000000..ee4309e1d --- /dev/null +++ b/packages/icons/icons/brush-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/brush.svg b/packages/icons/icons/brush.svg new file mode 100644 index 000000000..b88d991d4 --- /dev/null +++ b/packages/icons/icons/brush.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bucket-droplet.svg b/packages/icons/icons/bucket-droplet.svg new file mode 100644 index 000000000..56da22dad --- /dev/null +++ b/packages/icons/icons/bucket-droplet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bucket-off.svg b/packages/icons/icons/bucket-off.svg new file mode 100644 index 000000000..f6cfd9ac4 --- /dev/null +++ b/packages/icons/icons/bucket-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bucket.svg b/packages/icons/icons/bucket.svg new file mode 100644 index 000000000..f61e26f62 --- /dev/null +++ b/packages/icons/icons/bucket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bug-off.svg b/packages/icons/icons/bug-off.svg new file mode 100644 index 000000000..c730abaa6 --- /dev/null +++ b/packages/icons/icons/bug-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bug.svg b/packages/icons/icons/bug.svg new file mode 100644 index 000000000..e79650d05 --- /dev/null +++ b/packages/icons/icons/bug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-arch.svg b/packages/icons/icons/building-arch.svg new file mode 100644 index 000000000..f3755f98f --- /dev/null +++ b/packages/icons/icons/building-arch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-bank.svg b/packages/icons/icons/building-bank.svg new file mode 100644 index 000000000..f09a1f7c9 --- /dev/null +++ b/packages/icons/icons/building-bank.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-bridge-2.svg b/packages/icons/icons/building-bridge-2.svg new file mode 100644 index 000000000..9d612fcdc --- /dev/null +++ b/packages/icons/icons/building-bridge-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-bridge.svg b/packages/icons/icons/building-bridge.svg new file mode 100644 index 000000000..54496a59e --- /dev/null +++ b/packages/icons/icons/building-bridge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-broadcast-tower.svg b/packages/icons/icons/building-broadcast-tower.svg new file mode 100644 index 000000000..50f5d1fa3 --- /dev/null +++ b/packages/icons/icons/building-broadcast-tower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-carousel.svg b/packages/icons/icons/building-carousel.svg new file mode 100644 index 000000000..77644d76e --- /dev/null +++ b/packages/icons/icons/building-carousel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-castle.svg b/packages/icons/icons/building-castle.svg new file mode 100644 index 000000000..1bd2da917 --- /dev/null +++ b/packages/icons/icons/building-castle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-church.svg b/packages/icons/icons/building-church.svg new file mode 100644 index 000000000..674e3b052 --- /dev/null +++ b/packages/icons/icons/building-church.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-circus.svg b/packages/icons/icons/building-circus.svg new file mode 100644 index 000000000..1d89c8615 --- /dev/null +++ b/packages/icons/icons/building-circus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-community.svg b/packages/icons/icons/building-community.svg new file mode 100644 index 000000000..781c3c51a --- /dev/null +++ b/packages/icons/icons/building-community.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-cottage.svg b/packages/icons/icons/building-cottage.svg new file mode 100644 index 000000000..d69f769c8 --- /dev/null +++ b/packages/icons/icons/building-cottage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-estate.svg b/packages/icons/icons/building-estate.svg new file mode 100644 index 000000000..cf3a974bc --- /dev/null +++ b/packages/icons/icons/building-estate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-factory-2.svg b/packages/icons/icons/building-factory-2.svg new file mode 100644 index 000000000..c12fecaf2 --- /dev/null +++ b/packages/icons/icons/building-factory-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-factory.svg b/packages/icons/icons/building-factory.svg new file mode 100644 index 000000000..4e6f5f736 --- /dev/null +++ b/packages/icons/icons/building-factory.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-fortress.svg b/packages/icons/icons/building-fortress.svg new file mode 100644 index 000000000..58229c349 --- /dev/null +++ b/packages/icons/icons/building-fortress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-hospital.svg b/packages/icons/icons/building-hospital.svg new file mode 100644 index 000000000..f5051db2d --- /dev/null +++ b/packages/icons/icons/building-hospital.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-lighthouse.svg b/packages/icons/icons/building-lighthouse.svg new file mode 100644 index 000000000..aa3afd4f3 --- /dev/null +++ b/packages/icons/icons/building-lighthouse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-monument.svg b/packages/icons/icons/building-monument.svg new file mode 100644 index 000000000..71ba3ace7 --- /dev/null +++ b/packages/icons/icons/building-monument.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-skyscraper.svg b/packages/icons/icons/building-skyscraper.svg new file mode 100644 index 000000000..9ec136051 --- /dev/null +++ b/packages/icons/icons/building-skyscraper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-stadium.svg b/packages/icons/icons/building-stadium.svg new file mode 100644 index 000000000..802166a32 --- /dev/null +++ b/packages/icons/icons/building-stadium.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-store.svg b/packages/icons/icons/building-store.svg new file mode 100644 index 000000000..9af1b7110 --- /dev/null +++ b/packages/icons/icons/building-store.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-tunnel.svg b/packages/icons/icons/building-tunnel.svg new file mode 100644 index 000000000..6480dea98 --- /dev/null +++ b/packages/icons/icons/building-tunnel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-warehouse.svg b/packages/icons/icons/building-warehouse.svg new file mode 100644 index 000000000..8e2100d25 --- /dev/null +++ b/packages/icons/icons/building-warehouse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building-wind-turbine.svg b/packages/icons/icons/building-wind-turbine.svg new file mode 100644 index 000000000..96c72a83f --- /dev/null +++ b/packages/icons/icons/building-wind-turbine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/building.svg b/packages/icons/icons/building.svg new file mode 100644 index 000000000..c79b95fa6 --- /dev/null +++ b/packages/icons/icons/building.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bulb-off.svg b/packages/icons/icons/bulb-off.svg new file mode 100644 index 000000000..70bd489f3 --- /dev/null +++ b/packages/icons/icons/bulb-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bulb.svg b/packages/icons/icons/bulb.svg new file mode 100644 index 000000000..51d5bef20 --- /dev/null +++ b/packages/icons/icons/bulb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bulldozer.svg b/packages/icons/icons/bulldozer.svg new file mode 100644 index 000000000..c210a2de6 --- /dev/null +++ b/packages/icons/icons/bulldozer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bus-off.svg b/packages/icons/icons/bus-off.svg new file mode 100644 index 000000000..097f5f9c7 --- /dev/null +++ b/packages/icons/icons/bus-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bus-stop.svg b/packages/icons/icons/bus-stop.svg new file mode 100644 index 000000000..2b32e92f9 --- /dev/null +++ b/packages/icons/icons/bus-stop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/bus.svg b/packages/icons/icons/bus.svg new file mode 100644 index 000000000..77571f099 --- /dev/null +++ b/packages/icons/icons/bus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/businessplan.svg b/packages/icons/icons/businessplan.svg new file mode 100644 index 000000000..22d7e785a --- /dev/null +++ b/packages/icons/icons/businessplan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/butterfly.svg b/packages/icons/icons/butterfly.svg new file mode 100644 index 000000000..c2701b201 --- /dev/null +++ b/packages/icons/icons/butterfly.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/c-sharp.svg b/packages/icons/icons/c-sharp.svg new file mode 100644 index 000000000..1a3570f2a --- /dev/null +++ b/packages/icons/icons/c-sharp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cactus-off.svg b/packages/icons/icons/cactus-off.svg new file mode 100644 index 000000000..28d7bd0f9 --- /dev/null +++ b/packages/icons/icons/cactus-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cactus.svg b/packages/icons/icons/cactus.svg new file mode 100644 index 000000000..34676d840 --- /dev/null +++ b/packages/icons/icons/cactus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cake-off.svg b/packages/icons/icons/cake-off.svg new file mode 100644 index 000000000..5b514d717 --- /dev/null +++ b/packages/icons/icons/cake-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cake.svg b/packages/icons/icons/cake.svg new file mode 100644 index 000000000..d9e84cb68 --- /dev/null +++ b/packages/icons/icons/cake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calculator-off.svg b/packages/icons/icons/calculator-off.svg new file mode 100644 index 000000000..6263de519 --- /dev/null +++ b/packages/icons/icons/calculator-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calculator.svg b/packages/icons/icons/calculator.svg new file mode 100644 index 000000000..51f6ef83c --- /dev/null +++ b/packages/icons/icons/calculator.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-due.svg b/packages/icons/icons/calendar-due.svg new file mode 100644 index 000000000..0e71c1ea0 --- /dev/null +++ b/packages/icons/icons/calendar-due.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-event.svg b/packages/icons/icons/calendar-event.svg new file mode 100644 index 000000000..02273ceea --- /dev/null +++ b/packages/icons/icons/calendar-event.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-minus.svg b/packages/icons/icons/calendar-minus.svg new file mode 100644 index 000000000..b1a82bf87 --- /dev/null +++ b/packages/icons/icons/calendar-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-off.svg b/packages/icons/icons/calendar-off.svg new file mode 100644 index 000000000..16446b5bd --- /dev/null +++ b/packages/icons/icons/calendar-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-plus.svg b/packages/icons/icons/calendar-plus.svg new file mode 100644 index 000000000..c4a45c867 --- /dev/null +++ b/packages/icons/icons/calendar-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-stats.svg b/packages/icons/icons/calendar-stats.svg new file mode 100644 index 000000000..ebdd12707 --- /dev/null +++ b/packages/icons/icons/calendar-stats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar-time.svg b/packages/icons/icons/calendar-time.svg new file mode 100644 index 000000000..ef2f16df2 --- /dev/null +++ b/packages/icons/icons/calendar-time.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/calendar.svg b/packages/icons/icons/calendar.svg new file mode 100644 index 000000000..4c8992e90 --- /dev/null +++ b/packages/icons/icons/calendar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera-minus.svg b/packages/icons/icons/camera-minus.svg new file mode 100644 index 000000000..727608da7 --- /dev/null +++ b/packages/icons/icons/camera-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera-off.svg b/packages/icons/icons/camera-off.svg new file mode 100644 index 000000000..3e0afc251 --- /dev/null +++ b/packages/icons/icons/camera-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera-plus.svg b/packages/icons/icons/camera-plus.svg new file mode 100644 index 000000000..0434adbf6 --- /dev/null +++ b/packages/icons/icons/camera-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera-rotate.svg b/packages/icons/icons/camera-rotate.svg new file mode 100644 index 000000000..5823f3da9 --- /dev/null +++ b/packages/icons/icons/camera-rotate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera-selfie.svg b/packages/icons/icons/camera-selfie.svg new file mode 100644 index 000000000..c24b17fcc --- /dev/null +++ b/packages/icons/icons/camera-selfie.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/camera.svg b/packages/icons/icons/camera.svg new file mode 100644 index 000000000..37660a5f8 --- /dev/null +++ b/packages/icons/icons/camera.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/campfire.svg b/packages/icons/icons/campfire.svg new file mode 100644 index 000000000..d63d840c9 --- /dev/null +++ b/packages/icons/icons/campfire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/candle.svg b/packages/icons/icons/candle.svg new file mode 100644 index 000000000..99e002ccc --- /dev/null +++ b/packages/icons/icons/candle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/candy-off.svg b/packages/icons/icons/candy-off.svg new file mode 100644 index 000000000..309cfa3d7 --- /dev/null +++ b/packages/icons/icons/candy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/candy.svg b/packages/icons/icons/candy.svg new file mode 100644 index 000000000..0c99cdff7 --- /dev/null +++ b/packages/icons/icons/candy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cane.svg b/packages/icons/icons/cane.svg new file mode 100644 index 000000000..580a1e6db --- /dev/null +++ b/packages/icons/icons/cane.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cannabis.svg b/packages/icons/icons/cannabis.svg new file mode 100644 index 000000000..60f1d6a56 --- /dev/null +++ b/packages/icons/icons/cannabis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/capture-off.svg b/packages/icons/icons/capture-off.svg new file mode 100644 index 000000000..e9a58691f --- /dev/null +++ b/packages/icons/icons/capture-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/capture.svg b/packages/icons/icons/capture.svg new file mode 100644 index 000000000..d89cfd834 --- /dev/null +++ b/packages/icons/icons/capture.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/car-crane.svg b/packages/icons/icons/car-crane.svg new file mode 100644 index 000000000..246225d67 --- /dev/null +++ b/packages/icons/icons/car-crane.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/car-crash.svg b/packages/icons/icons/car-crash.svg new file mode 100644 index 000000000..0ff3827a1 --- /dev/null +++ b/packages/icons/icons/car-crash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/car-off.svg b/packages/icons/icons/car-off.svg new file mode 100644 index 000000000..d6ecabf78 --- /dev/null +++ b/packages/icons/icons/car-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/car-turbine.svg b/packages/icons/icons/car-turbine.svg new file mode 100644 index 000000000..d47bd2b19 --- /dev/null +++ b/packages/icons/icons/car-turbine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/car.svg b/packages/icons/icons/car.svg new file mode 100644 index 000000000..8cbf38a60 --- /dev/null +++ b/packages/icons/icons/car.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/caravan.svg b/packages/icons/icons/caravan.svg new file mode 100644 index 000000000..9905c66a0 --- /dev/null +++ b/packages/icons/icons/caravan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cardboards-off.svg b/packages/icons/icons/cardboards-off.svg new file mode 100644 index 000000000..35a6b1375 --- /dev/null +++ b/packages/icons/icons/cardboards-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cardboards.svg b/packages/icons/icons/cardboards.svg new file mode 100644 index 000000000..f93c9ab87 --- /dev/null +++ b/packages/icons/icons/cardboards.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cards.svg b/packages/icons/icons/cards.svg new file mode 100644 index 000000000..53c3a5b02 --- /dev/null +++ b/packages/icons/icons/cards.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/caret-down.svg b/packages/icons/icons/caret-down.svg new file mode 100644 index 000000000..6c4a3bd76 --- /dev/null +++ b/packages/icons/icons/caret-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/caret-left.svg b/packages/icons/icons/caret-left.svg new file mode 100644 index 000000000..3582a3fb4 --- /dev/null +++ b/packages/icons/icons/caret-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/caret-right.svg b/packages/icons/icons/caret-right.svg new file mode 100644 index 000000000..1f60339f4 --- /dev/null +++ b/packages/icons/icons/caret-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/caret-up.svg b/packages/icons/icons/caret-up.svg new file mode 100644 index 000000000..398017071 --- /dev/null +++ b/packages/icons/icons/caret-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/carousel-horizontal.svg b/packages/icons/icons/carousel-horizontal.svg new file mode 100644 index 000000000..d6ba481d6 --- /dev/null +++ b/packages/icons/icons/carousel-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/carousel-vertical.svg b/packages/icons/icons/carousel-vertical.svg new file mode 100644 index 000000000..4e09f0794 --- /dev/null +++ b/packages/icons/icons/carousel-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/carrot-off.svg b/packages/icons/icons/carrot-off.svg new file mode 100644 index 000000000..87997d3bd --- /dev/null +++ b/packages/icons/icons/carrot-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/carrot.svg b/packages/icons/icons/carrot.svg new file mode 100644 index 000000000..541814b9d --- /dev/null +++ b/packages/icons/icons/carrot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cash-banknote-off.svg b/packages/icons/icons/cash-banknote-off.svg new file mode 100644 index 000000000..912a6b1ec --- /dev/null +++ b/packages/icons/icons/cash-banknote-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cash-banknote.svg b/packages/icons/icons/cash-banknote.svg new file mode 100644 index 000000000..2940b828b --- /dev/null +++ b/packages/icons/icons/cash-banknote.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cash-off.svg b/packages/icons/icons/cash-off.svg new file mode 100644 index 000000000..924e6a03c --- /dev/null +++ b/packages/icons/icons/cash-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cash.svg b/packages/icons/icons/cash.svg new file mode 100644 index 000000000..8f8e8ed22 --- /dev/null +++ b/packages/icons/icons/cash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cast-off.svg b/packages/icons/icons/cast-off.svg new file mode 100644 index 000000000..3a1731f44 --- /dev/null +++ b/packages/icons/icons/cast-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cast.svg b/packages/icons/icons/cast.svg new file mode 100644 index 000000000..fd06cb6a9 --- /dev/null +++ b/packages/icons/icons/cast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cat.svg b/packages/icons/icons/cat.svg new file mode 100644 index 000000000..eee1bce49 --- /dev/null +++ b/packages/icons/icons/cat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/category-2.svg b/packages/icons/icons/category-2.svg new file mode 100644 index 000000000..9f4d0214e --- /dev/null +++ b/packages/icons/icons/category-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/category.svg b/packages/icons/icons/category.svg new file mode 100644 index 000000000..bf4753c96 --- /dev/null +++ b/packages/icons/icons/category.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ce-off.svg b/packages/icons/icons/ce-off.svg new file mode 100644 index 000000000..6404059ce --- /dev/null +++ b/packages/icons/icons/ce-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ce.svg b/packages/icons/icons/ce.svg new file mode 100644 index 000000000..ab81389f7 --- /dev/null +++ b/packages/icons/icons/ce.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-1.svg b/packages/icons/icons/cell-signal-1.svg new file mode 100644 index 000000000..9b768d644 --- /dev/null +++ b/packages/icons/icons/cell-signal-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-2.svg b/packages/icons/icons/cell-signal-2.svg new file mode 100644 index 000000000..ca4df4378 --- /dev/null +++ b/packages/icons/icons/cell-signal-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-3.svg b/packages/icons/icons/cell-signal-3.svg new file mode 100644 index 000000000..3dd9dd3d9 --- /dev/null +++ b/packages/icons/icons/cell-signal-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-4.svg b/packages/icons/icons/cell-signal-4.svg new file mode 100644 index 000000000..2fedac61f --- /dev/null +++ b/packages/icons/icons/cell-signal-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-5.svg b/packages/icons/icons/cell-signal-5.svg new file mode 100644 index 000000000..1d81c614f --- /dev/null +++ b/packages/icons/icons/cell-signal-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell-signal-off.svg b/packages/icons/icons/cell-signal-off.svg new file mode 100644 index 000000000..d089869a7 --- /dev/null +++ b/packages/icons/icons/cell-signal-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cell.svg b/packages/icons/icons/cell.svg new file mode 100644 index 000000000..92d4d7bf7 --- /dev/null +++ b/packages/icons/icons/cell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/certificate-2-off.svg b/packages/icons/icons/certificate-2-off.svg new file mode 100644 index 000000000..662428f5e --- /dev/null +++ b/packages/icons/icons/certificate-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/certificate-2.svg b/packages/icons/icons/certificate-2.svg new file mode 100644 index 000000000..2e41deaf1 --- /dev/null +++ b/packages/icons/icons/certificate-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/certificate-off.svg b/packages/icons/icons/certificate-off.svg new file mode 100644 index 000000000..5b9071e13 --- /dev/null +++ b/packages/icons/icons/certificate-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/certificate.svg b/packages/icons/icons/certificate.svg new file mode 100644 index 000000000..5cc65abfb --- /dev/null +++ b/packages/icons/icons/certificate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chair-director.svg b/packages/icons/icons/chair-director.svg new file mode 100644 index 000000000..715b10ad0 --- /dev/null +++ b/packages/icons/icons/chair-director.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chalkboard-off.svg b/packages/icons/icons/chalkboard-off.svg new file mode 100644 index 000000000..479c6899a --- /dev/null +++ b/packages/icons/icons/chalkboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chalkboard.svg b/packages/icons/icons/chalkboard.svg new file mode 100644 index 000000000..97825e863 --- /dev/null +++ b/packages/icons/icons/chalkboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/charging-pile.svg b/packages/icons/icons/charging-pile.svg new file mode 100644 index 000000000..8274fec88 --- /dev/null +++ b/packages/icons/icons/charging-pile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-arcs-3.svg b/packages/icons/icons/chart-arcs-3.svg new file mode 100644 index 000000000..3fd0ae40d --- /dev/null +++ b/packages/icons/icons/chart-arcs-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-arcs.svg b/packages/icons/icons/chart-arcs.svg new file mode 100644 index 000000000..ca71ed320 --- /dev/null +++ b/packages/icons/icons/chart-arcs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-area-line.svg b/packages/icons/icons/chart-area-line.svg new file mode 100644 index 000000000..a3e0f3002 --- /dev/null +++ b/packages/icons/icons/chart-area-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-area.svg b/packages/icons/icons/chart-area.svg new file mode 100644 index 000000000..d151fec7e --- /dev/null +++ b/packages/icons/icons/chart-area.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-arrows-vertical.svg b/packages/icons/icons/chart-arrows-vertical.svg new file mode 100644 index 000000000..6af0bcc6b --- /dev/null +++ b/packages/icons/icons/chart-arrows-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-arrows.svg b/packages/icons/icons/chart-arrows.svg new file mode 100644 index 000000000..a24dc2ebe --- /dev/null +++ b/packages/icons/icons/chart-arrows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-bar-off.svg b/packages/icons/icons/chart-bar-off.svg new file mode 100644 index 000000000..efa5c9ae5 --- /dev/null +++ b/packages/icons/icons/chart-bar-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-bar.svg b/packages/icons/icons/chart-bar.svg new file mode 100644 index 000000000..6f05eb2aa --- /dev/null +++ b/packages/icons/icons/chart-bar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-bubble.svg b/packages/icons/icons/chart-bubble.svg new file mode 100644 index 000000000..d5cca8ebf --- /dev/null +++ b/packages/icons/icons/chart-bubble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-candle.svg b/packages/icons/icons/chart-candle.svg new file mode 100644 index 000000000..ea0536847 --- /dev/null +++ b/packages/icons/icons/chart-candle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-circles.svg b/packages/icons/icons/chart-circles.svg new file mode 100644 index 000000000..3b11ff246 --- /dev/null +++ b/packages/icons/icons/chart-circles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-donut-2.svg b/packages/icons/icons/chart-donut-2.svg new file mode 100644 index 000000000..ef3377ad1 --- /dev/null +++ b/packages/icons/icons/chart-donut-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-donut-3.svg b/packages/icons/icons/chart-donut-3.svg new file mode 100644 index 000000000..263592d4b --- /dev/null +++ b/packages/icons/icons/chart-donut-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-donut-4.svg b/packages/icons/icons/chart-donut-4.svg new file mode 100644 index 000000000..30271e280 --- /dev/null +++ b/packages/icons/icons/chart-donut-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-donut.svg b/packages/icons/icons/chart-donut.svg new file mode 100644 index 000000000..f61da569f --- /dev/null +++ b/packages/icons/icons/chart-donut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-dots-2.svg b/packages/icons/icons/chart-dots-2.svg new file mode 100644 index 000000000..8ed0c05ac --- /dev/null +++ b/packages/icons/icons/chart-dots-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-dots-3.svg b/packages/icons/icons/chart-dots-3.svg new file mode 100644 index 000000000..ddc9641be --- /dev/null +++ b/packages/icons/icons/chart-dots-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-dots.svg b/packages/icons/icons/chart-dots.svg new file mode 100644 index 000000000..957eb65e5 --- /dev/null +++ b/packages/icons/icons/chart-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-grid-dots.svg b/packages/icons/icons/chart-grid-dots.svg new file mode 100644 index 000000000..15537f142 --- /dev/null +++ b/packages/icons/icons/chart-grid-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-histogram.svg b/packages/icons/icons/chart-histogram.svg new file mode 100644 index 000000000..42b58db1b --- /dev/null +++ b/packages/icons/icons/chart-histogram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-infographic.svg b/packages/icons/icons/chart-infographic.svg new file mode 100644 index 000000000..1e63900bb --- /dev/null +++ b/packages/icons/icons/chart-infographic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-line.svg b/packages/icons/icons/chart-line.svg new file mode 100644 index 000000000..1c941a8a8 --- /dev/null +++ b/packages/icons/icons/chart-line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-pie-2.svg b/packages/icons/icons/chart-pie-2.svg new file mode 100644 index 000000000..3784d6c73 --- /dev/null +++ b/packages/icons/icons/chart-pie-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-pie-3.svg b/packages/icons/icons/chart-pie-3.svg new file mode 100644 index 000000000..3101330fa --- /dev/null +++ b/packages/icons/icons/chart-pie-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-pie-4.svg b/packages/icons/icons/chart-pie-4.svg new file mode 100644 index 000000000..c7baab14a --- /dev/null +++ b/packages/icons/icons/chart-pie-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-pie-off.svg b/packages/icons/icons/chart-pie-off.svg new file mode 100644 index 000000000..522fbeaee --- /dev/null +++ b/packages/icons/icons/chart-pie-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-pie.svg b/packages/icons/icons/chart-pie.svg new file mode 100644 index 000000000..d695bdda6 --- /dev/null +++ b/packages/icons/icons/chart-pie.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-ppf.svg b/packages/icons/icons/chart-ppf.svg new file mode 100644 index 000000000..5c4cb47fa --- /dev/null +++ b/packages/icons/icons/chart-ppf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-radar.svg b/packages/icons/icons/chart-radar.svg new file mode 100644 index 000000000..70fbf5d0b --- /dev/null +++ b/packages/icons/icons/chart-radar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-sankey.svg b/packages/icons/icons/chart-sankey.svg new file mode 100644 index 000000000..62c313fb1 --- /dev/null +++ b/packages/icons/icons/chart-sankey.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chart-treemap.svg b/packages/icons/icons/chart-treemap.svg new file mode 100644 index 000000000..087d7f515 --- /dev/null +++ b/packages/icons/icons/chart-treemap.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/check.svg b/packages/icons/icons/check.svg new file mode 100644 index 000000000..8b703e65d --- /dev/null +++ b/packages/icons/icons/check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/checkbox.svg b/packages/icons/icons/checkbox.svg new file mode 100644 index 000000000..72083abfb --- /dev/null +++ b/packages/icons/icons/checkbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/checklist.svg b/packages/icons/icons/checklist.svg new file mode 100644 index 000000000..d4063f5a2 --- /dev/null +++ b/packages/icons/icons/checklist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/checks.svg b/packages/icons/icons/checks.svg new file mode 100644 index 000000000..15c189689 --- /dev/null +++ b/packages/icons/icons/checks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/checkup-list.svg b/packages/icons/icons/checkup-list.svg new file mode 100644 index 000000000..18976a629 --- /dev/null +++ b/packages/icons/icons/checkup-list.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cheese.svg b/packages/icons/icons/cheese.svg new file mode 100644 index 000000000..417b828a4 --- /dev/null +++ b/packages/icons/icons/cheese.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chef-hat-off.svg b/packages/icons/icons/chef-hat-off.svg new file mode 100644 index 000000000..fb86bc91b --- /dev/null +++ b/packages/icons/icons/chef-hat-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chef-hat.svg b/packages/icons/icons/chef-hat.svg new file mode 100644 index 000000000..795761050 --- /dev/null +++ b/packages/icons/icons/chef-hat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cherry.svg b/packages/icons/icons/cherry.svg new file mode 100644 index 000000000..90484f648 --- /dev/null +++ b/packages/icons/icons/cherry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess-bishop.svg b/packages/icons/icons/chess-bishop.svg new file mode 100644 index 000000000..9bf610c35 --- /dev/null +++ b/packages/icons/icons/chess-bishop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess-king.svg b/packages/icons/icons/chess-king.svg new file mode 100644 index 000000000..07bb65ec7 --- /dev/null +++ b/packages/icons/icons/chess-king.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess-knight.svg b/packages/icons/icons/chess-knight.svg new file mode 100644 index 000000000..47bf792b8 --- /dev/null +++ b/packages/icons/icons/chess-knight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess-queen.svg b/packages/icons/icons/chess-queen.svg new file mode 100644 index 000000000..2f04949bf --- /dev/null +++ b/packages/icons/icons/chess-queen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess-rook.svg b/packages/icons/icons/chess-rook.svg new file mode 100644 index 000000000..5e75b7e5b --- /dev/null +++ b/packages/icons/icons/chess-rook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chess.svg b/packages/icons/icons/chess.svg new file mode 100644 index 000000000..6d7279260 --- /dev/null +++ b/packages/icons/icons/chess.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-down-left.svg b/packages/icons/icons/chevron-down-left.svg new file mode 100644 index 000000000..3b5108d5e --- /dev/null +++ b/packages/icons/icons/chevron-down-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-down-right.svg b/packages/icons/icons/chevron-down-right.svg new file mode 100644 index 000000000..47363b27c --- /dev/null +++ b/packages/icons/icons/chevron-down-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-down.svg b/packages/icons/icons/chevron-down.svg new file mode 100644 index 000000000..69133945f --- /dev/null +++ b/packages/icons/icons/chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-left.svg b/packages/icons/icons/chevron-left.svg new file mode 100644 index 000000000..1d0e626e3 --- /dev/null +++ b/packages/icons/icons/chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-right.svg b/packages/icons/icons/chevron-right.svg new file mode 100644 index 000000000..ce7675b5b --- /dev/null +++ b/packages/icons/icons/chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-up-left.svg b/packages/icons/icons/chevron-up-left.svg new file mode 100644 index 000000000..3379b9655 --- /dev/null +++ b/packages/icons/icons/chevron-up-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-up-right.svg b/packages/icons/icons/chevron-up-right.svg new file mode 100644 index 000000000..690ae0778 --- /dev/null +++ b/packages/icons/icons/chevron-up-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevron-up.svg b/packages/icons/icons/chevron-up.svg new file mode 100644 index 000000000..ae0db0f1a --- /dev/null +++ b/packages/icons/icons/chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-down-left.svg b/packages/icons/icons/chevrons-down-left.svg new file mode 100644 index 000000000..fe7b3f1ae --- /dev/null +++ b/packages/icons/icons/chevrons-down-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-down-right.svg b/packages/icons/icons/chevrons-down-right.svg new file mode 100644 index 000000000..daa489f22 --- /dev/null +++ b/packages/icons/icons/chevrons-down-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-down.svg b/packages/icons/icons/chevrons-down.svg new file mode 100644 index 000000000..dee19bd39 --- /dev/null +++ b/packages/icons/icons/chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-left.svg b/packages/icons/icons/chevrons-left.svg new file mode 100644 index 000000000..651b35388 --- /dev/null +++ b/packages/icons/icons/chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-right.svg b/packages/icons/icons/chevrons-right.svg new file mode 100644 index 000000000..ae37b1a16 --- /dev/null +++ b/packages/icons/icons/chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-up-left.svg b/packages/icons/icons/chevrons-up-left.svg new file mode 100644 index 000000000..2c5f7ab58 --- /dev/null +++ b/packages/icons/icons/chevrons-up-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-up-right.svg b/packages/icons/icons/chevrons-up-right.svg new file mode 100644 index 000000000..60ae2a418 --- /dev/null +++ b/packages/icons/icons/chevrons-up-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chevrons-up.svg b/packages/icons/icons/chevrons-up.svg new file mode 100644 index 000000000..58c7b5b5a --- /dev/null +++ b/packages/icons/icons/chevrons-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/chisel.svg b/packages/icons/icons/chisel.svg new file mode 100644 index 000000000..5068a3ab9 --- /dev/null +++ b/packages/icons/icons/chisel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/christmas-tree-off.svg b/packages/icons/icons/christmas-tree-off.svg new file mode 100644 index 000000000..565906c03 --- /dev/null +++ b/packages/icons/icons/christmas-tree-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/christmas-tree.svg b/packages/icons/icons/christmas-tree.svg new file mode 100644 index 000000000..1b66d8af8 --- /dev/null +++ b/packages/icons/icons/christmas-tree.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-caret-down.svg b/packages/icons/icons/circle-caret-down.svg new file mode 100644 index 000000000..fccc1e0f3 --- /dev/null +++ b/packages/icons/icons/circle-caret-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-caret-left.svg b/packages/icons/icons/circle-caret-left.svg new file mode 100644 index 000000000..babc29f4e --- /dev/null +++ b/packages/icons/icons/circle-caret-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-caret-right.svg b/packages/icons/icons/circle-caret-right.svg new file mode 100644 index 000000000..d712f0bf2 --- /dev/null +++ b/packages/icons/icons/circle-caret-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-caret-up.svg b/packages/icons/icons/circle-caret-up.svg new file mode 100644 index 000000000..0ba898171 --- /dev/null +++ b/packages/icons/icons/circle-caret-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-check.svg b/packages/icons/icons/circle-check.svg new file mode 100644 index 000000000..1ec99b8ee --- /dev/null +++ b/packages/icons/icons/circle-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevron-down.svg b/packages/icons/icons/circle-chevron-down.svg new file mode 100644 index 000000000..8472bb548 --- /dev/null +++ b/packages/icons/icons/circle-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevron-left.svg b/packages/icons/icons/circle-chevron-left.svg new file mode 100644 index 000000000..503391e87 --- /dev/null +++ b/packages/icons/icons/circle-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevron-right.svg b/packages/icons/icons/circle-chevron-right.svg new file mode 100644 index 000000000..c32d56e21 --- /dev/null +++ b/packages/icons/icons/circle-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevron-up.svg b/packages/icons/icons/circle-chevron-up.svg new file mode 100644 index 000000000..9375168ec --- /dev/null +++ b/packages/icons/icons/circle-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevrons-down.svg b/packages/icons/icons/circle-chevrons-down.svg new file mode 100644 index 000000000..4d7b94313 --- /dev/null +++ b/packages/icons/icons/circle-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevrons-left.svg b/packages/icons/icons/circle-chevrons-left.svg new file mode 100644 index 000000000..aa283b655 --- /dev/null +++ b/packages/icons/icons/circle-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevrons-right.svg b/packages/icons/icons/circle-chevrons-right.svg new file mode 100644 index 000000000..a6b9540ef --- /dev/null +++ b/packages/icons/icons/circle-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-chevrons-up.svg b/packages/icons/icons/circle-chevrons-up.svg new file mode 100644 index 000000000..a45e8f43f --- /dev/null +++ b/packages/icons/icons/circle-chevrons-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-dashed.svg b/packages/icons/icons/circle-dashed.svg new file mode 100644 index 000000000..cf0673b9b --- /dev/null +++ b/packages/icons/icons/circle-dashed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-dot.svg b/packages/icons/icons/circle-dot.svg new file mode 100644 index 000000000..52e256ba2 --- /dev/null +++ b/packages/icons/icons/circle-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-dotted.svg b/packages/icons/icons/circle-dotted.svg new file mode 100644 index 000000000..0f4471583 --- /dev/null +++ b/packages/icons/icons/circle-dotted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-half-2.svg b/packages/icons/icons/circle-half-2.svg new file mode 100644 index 000000000..f20f2903d --- /dev/null +++ b/packages/icons/icons/circle-half-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-half-vertical.svg b/packages/icons/icons/circle-half-vertical.svg new file mode 100644 index 000000000..c06a6ecf0 --- /dev/null +++ b/packages/icons/icons/circle-half-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-half.svg b/packages/icons/icons/circle-half.svg new file mode 100644 index 000000000..1e8c9892b --- /dev/null +++ b/packages/icons/icons/circle-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-key.svg b/packages/icons/icons/circle-key.svg new file mode 100644 index 000000000..bc543e88f --- /dev/null +++ b/packages/icons/icons/circle-key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-a.svg b/packages/icons/icons/circle-letter-a.svg new file mode 100644 index 000000000..ea144422a --- /dev/null +++ b/packages/icons/icons/circle-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-b.svg b/packages/icons/icons/circle-letter-b.svg new file mode 100644 index 000000000..f2bb985aa --- /dev/null +++ b/packages/icons/icons/circle-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-c.svg b/packages/icons/icons/circle-letter-c.svg new file mode 100644 index 000000000..1f58c5c32 --- /dev/null +++ b/packages/icons/icons/circle-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-d.svg b/packages/icons/icons/circle-letter-d.svg new file mode 100644 index 000000000..4a7b89ace --- /dev/null +++ b/packages/icons/icons/circle-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-e.svg b/packages/icons/icons/circle-letter-e.svg new file mode 100644 index 000000000..e93c7b74a --- /dev/null +++ b/packages/icons/icons/circle-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-f.svg b/packages/icons/icons/circle-letter-f.svg new file mode 100644 index 000000000..8436ede13 --- /dev/null +++ b/packages/icons/icons/circle-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-g.svg b/packages/icons/icons/circle-letter-g.svg new file mode 100644 index 000000000..7952cc01e --- /dev/null +++ b/packages/icons/icons/circle-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-h.svg b/packages/icons/icons/circle-letter-h.svg new file mode 100644 index 000000000..68f895772 --- /dev/null +++ b/packages/icons/icons/circle-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-i.svg b/packages/icons/icons/circle-letter-i.svg new file mode 100644 index 000000000..8163bf06c --- /dev/null +++ b/packages/icons/icons/circle-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-j.svg b/packages/icons/icons/circle-letter-j.svg new file mode 100644 index 000000000..dc3ac9516 --- /dev/null +++ b/packages/icons/icons/circle-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-k.svg b/packages/icons/icons/circle-letter-k.svg new file mode 100644 index 000000000..ff0e0c513 --- /dev/null +++ b/packages/icons/icons/circle-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-l.svg b/packages/icons/icons/circle-letter-l.svg new file mode 100644 index 000000000..d34af4dae --- /dev/null +++ b/packages/icons/icons/circle-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-m.svg b/packages/icons/icons/circle-letter-m.svg new file mode 100644 index 000000000..53307b7fe --- /dev/null +++ b/packages/icons/icons/circle-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-n.svg b/packages/icons/icons/circle-letter-n.svg new file mode 100644 index 000000000..78ca2cf57 --- /dev/null +++ b/packages/icons/icons/circle-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-o.svg b/packages/icons/icons/circle-letter-o.svg new file mode 100644 index 000000000..c0aa016da --- /dev/null +++ b/packages/icons/icons/circle-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-p.svg b/packages/icons/icons/circle-letter-p.svg new file mode 100644 index 000000000..b1a2fd1e7 --- /dev/null +++ b/packages/icons/icons/circle-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-q.svg b/packages/icons/icons/circle-letter-q.svg new file mode 100644 index 000000000..962d71bd1 --- /dev/null +++ b/packages/icons/icons/circle-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-r.svg b/packages/icons/icons/circle-letter-r.svg new file mode 100644 index 000000000..b41e3ff65 --- /dev/null +++ b/packages/icons/icons/circle-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-s.svg b/packages/icons/icons/circle-letter-s.svg new file mode 100644 index 000000000..d8e9d629d --- /dev/null +++ b/packages/icons/icons/circle-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-t.svg b/packages/icons/icons/circle-letter-t.svg new file mode 100644 index 000000000..fcab751ac --- /dev/null +++ b/packages/icons/icons/circle-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-u.svg b/packages/icons/icons/circle-letter-u.svg new file mode 100644 index 000000000..cf650120e --- /dev/null +++ b/packages/icons/icons/circle-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-v.svg b/packages/icons/icons/circle-letter-v.svg new file mode 100644 index 000000000..faa2aa3c9 --- /dev/null +++ b/packages/icons/icons/circle-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-w.svg b/packages/icons/icons/circle-letter-w.svg new file mode 100644 index 000000000..7067e0b0e --- /dev/null +++ b/packages/icons/icons/circle-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-x.svg b/packages/icons/icons/circle-letter-x.svg new file mode 100644 index 000000000..ef2c8fb29 --- /dev/null +++ b/packages/icons/icons/circle-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-y.svg b/packages/icons/icons/circle-letter-y.svg new file mode 100644 index 000000000..b82cfca78 --- /dev/null +++ b/packages/icons/icons/circle-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-letter-z.svg b/packages/icons/icons/circle-letter-z.svg new file mode 100644 index 000000000..34e580553 --- /dev/null +++ b/packages/icons/icons/circle-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-minus.svg b/packages/icons/icons/circle-minus.svg new file mode 100644 index 000000000..1a99869bc --- /dev/null +++ b/packages/icons/icons/circle-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-0.svg b/packages/icons/icons/circle-number-0.svg new file mode 100644 index 000000000..e4e484c09 --- /dev/null +++ b/packages/icons/icons/circle-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-1.svg b/packages/icons/icons/circle-number-1.svg new file mode 100644 index 000000000..f5745e348 --- /dev/null +++ b/packages/icons/icons/circle-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-2.svg b/packages/icons/icons/circle-number-2.svg new file mode 100644 index 000000000..b3e8d0ad3 --- /dev/null +++ b/packages/icons/icons/circle-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-3.svg b/packages/icons/icons/circle-number-3.svg new file mode 100644 index 000000000..a4540f9ee --- /dev/null +++ b/packages/icons/icons/circle-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-4.svg b/packages/icons/icons/circle-number-4.svg new file mode 100644 index 000000000..35306fc4d --- /dev/null +++ b/packages/icons/icons/circle-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-5.svg b/packages/icons/icons/circle-number-5.svg new file mode 100644 index 000000000..9fa60f2da --- /dev/null +++ b/packages/icons/icons/circle-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-6.svg b/packages/icons/icons/circle-number-6.svg new file mode 100644 index 000000000..391d9760c --- /dev/null +++ b/packages/icons/icons/circle-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-7.svg b/packages/icons/icons/circle-number-7.svg new file mode 100644 index 000000000..ec1ae9c3a --- /dev/null +++ b/packages/icons/icons/circle-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-8.svg b/packages/icons/icons/circle-number-8.svg new file mode 100644 index 000000000..9fdf2a3df --- /dev/null +++ b/packages/icons/icons/circle-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-number-9.svg b/packages/icons/icons/circle-number-9.svg new file mode 100644 index 000000000..f60f240f5 --- /dev/null +++ b/packages/icons/icons/circle-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-off.svg b/packages/icons/icons/circle-off.svg new file mode 100644 index 000000000..74a54f663 --- /dev/null +++ b/packages/icons/icons/circle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-plus.svg b/packages/icons/icons/circle-plus.svg new file mode 100644 index 000000000..4aa5a1b59 --- /dev/null +++ b/packages/icons/icons/circle-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-rectangle-off.svg b/packages/icons/icons/circle-rectangle-off.svg new file mode 100644 index 000000000..1d46c23f5 --- /dev/null +++ b/packages/icons/icons/circle-rectangle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-rectangle.svg b/packages/icons/icons/circle-rectangle.svg new file mode 100644 index 000000000..933db3efd --- /dev/null +++ b/packages/icons/icons/circle-rectangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-square.svg b/packages/icons/icons/circle-square.svg new file mode 100644 index 000000000..f2342e2ea --- /dev/null +++ b/packages/icons/icons/circle-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-triangle.svg b/packages/icons/icons/circle-triangle.svg new file mode 100644 index 000000000..36e0f20b0 --- /dev/null +++ b/packages/icons/icons/circle-triangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle-x.svg b/packages/icons/icons/circle-x.svg new file mode 100644 index 000000000..bf63a4b90 --- /dev/null +++ b/packages/icons/icons/circle-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circle.svg b/packages/icons/icons/circle.svg new file mode 100644 index 000000000..de03b685a --- /dev/null +++ b/packages/icons/icons/circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circles-relation.svg b/packages/icons/icons/circles-relation.svg new file mode 100644 index 000000000..122be4d01 --- /dev/null +++ b/packages/icons/icons/circles-relation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circles.svg b/packages/icons/icons/circles.svg new file mode 100644 index 000000000..d35613d18 --- /dev/null +++ b/packages/icons/icons/circles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-ammeter.svg b/packages/icons/icons/circuit-ammeter.svg new file mode 100644 index 000000000..b79e3fa41 --- /dev/null +++ b/packages/icons/icons/circuit-ammeter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-battery.svg b/packages/icons/icons/circuit-battery.svg new file mode 100644 index 000000000..ae70a261d --- /dev/null +++ b/packages/icons/icons/circuit-battery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-bulb.svg b/packages/icons/icons/circuit-bulb.svg new file mode 100644 index 000000000..d0fc6c9b8 --- /dev/null +++ b/packages/icons/icons/circuit-bulb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-capacitor-polarized.svg b/packages/icons/icons/circuit-capacitor-polarized.svg new file mode 100644 index 000000000..703b445a8 --- /dev/null +++ b/packages/icons/icons/circuit-capacitor-polarized.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-capacitor.svg b/packages/icons/icons/circuit-capacitor.svg new file mode 100644 index 000000000..f3075a367 --- /dev/null +++ b/packages/icons/icons/circuit-capacitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-cell-plus.svg b/packages/icons/icons/circuit-cell-plus.svg new file mode 100644 index 000000000..a5efcfebc --- /dev/null +++ b/packages/icons/icons/circuit-cell-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-cell.svg b/packages/icons/icons/circuit-cell.svg new file mode 100644 index 000000000..b80f39bb5 --- /dev/null +++ b/packages/icons/icons/circuit-cell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-changeover.svg b/packages/icons/icons/circuit-changeover.svg new file mode 100644 index 000000000..c00d03d53 --- /dev/null +++ b/packages/icons/icons/circuit-changeover.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-diode-zener.svg b/packages/icons/icons/circuit-diode-zener.svg new file mode 100644 index 000000000..2f0c4b991 --- /dev/null +++ b/packages/icons/icons/circuit-diode-zener.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-diode.svg b/packages/icons/icons/circuit-diode.svg new file mode 100644 index 000000000..938e4b25e --- /dev/null +++ b/packages/icons/icons/circuit-diode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-ground-digital.svg b/packages/icons/icons/circuit-ground-digital.svg new file mode 100644 index 000000000..0257f2cf7 --- /dev/null +++ b/packages/icons/icons/circuit-ground-digital.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-ground.svg b/packages/icons/icons/circuit-ground.svg new file mode 100644 index 000000000..fe8f838d8 --- /dev/null +++ b/packages/icons/icons/circuit-ground.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-inductor.svg b/packages/icons/icons/circuit-inductor.svg new file mode 100644 index 000000000..f23a48b70 --- /dev/null +++ b/packages/icons/icons/circuit-inductor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-motor.svg b/packages/icons/icons/circuit-motor.svg new file mode 100644 index 000000000..10a7b4e3b --- /dev/null +++ b/packages/icons/icons/circuit-motor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-pushbutton.svg b/packages/icons/icons/circuit-pushbutton.svg new file mode 100644 index 000000000..9c54f551d --- /dev/null +++ b/packages/icons/icons/circuit-pushbutton.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-resistor.svg b/packages/icons/icons/circuit-resistor.svg new file mode 100644 index 000000000..e62e193fe --- /dev/null +++ b/packages/icons/icons/circuit-resistor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-switch-closed.svg b/packages/icons/icons/circuit-switch-closed.svg new file mode 100644 index 000000000..13e19a322 --- /dev/null +++ b/packages/icons/icons/circuit-switch-closed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-switch-open.svg b/packages/icons/icons/circuit-switch-open.svg new file mode 100644 index 000000000..bc0c861ac --- /dev/null +++ b/packages/icons/icons/circuit-switch-open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/circuit-voltmeter.svg b/packages/icons/icons/circuit-voltmeter.svg new file mode 100644 index 000000000..c5ef2e2e9 --- /dev/null +++ b/packages/icons/icons/circuit-voltmeter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clear-all.svg b/packages/icons/icons/clear-all.svg new file mode 100644 index 000000000..9331704b9 --- /dev/null +++ b/packages/icons/icons/clear-all.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clear-formatting.svg b/packages/icons/icons/clear-formatting.svg new file mode 100644 index 000000000..91eb3f7e5 --- /dev/null +++ b/packages/icons/icons/clear-formatting.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/click.svg b/packages/icons/icons/click.svg new file mode 100644 index 000000000..33b4d040b --- /dev/null +++ b/packages/icons/icons/click.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-check.svg b/packages/icons/icons/clipboard-check.svg new file mode 100644 index 000000000..05fc0b12f --- /dev/null +++ b/packages/icons/icons/clipboard-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-copy.svg b/packages/icons/icons/clipboard-copy.svg new file mode 100644 index 000000000..1d425613d --- /dev/null +++ b/packages/icons/icons/clipboard-copy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-data.svg b/packages/icons/icons/clipboard-data.svg new file mode 100644 index 000000000..3f8226534 --- /dev/null +++ b/packages/icons/icons/clipboard-data.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-heart.svg b/packages/icons/icons/clipboard-heart.svg new file mode 100644 index 000000000..13a4bf86b --- /dev/null +++ b/packages/icons/icons/clipboard-heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-list.svg b/packages/icons/icons/clipboard-list.svg new file mode 100644 index 000000000..6bbaf31e1 --- /dev/null +++ b/packages/icons/icons/clipboard-list.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-off.svg b/packages/icons/icons/clipboard-off.svg new file mode 100644 index 000000000..44e3df1c3 --- /dev/null +++ b/packages/icons/icons/clipboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-plus.svg b/packages/icons/icons/clipboard-plus.svg new file mode 100644 index 000000000..f2b55dee2 --- /dev/null +++ b/packages/icons/icons/clipboard-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-text.svg b/packages/icons/icons/clipboard-text.svg new file mode 100644 index 000000000..445cad7f8 --- /dev/null +++ b/packages/icons/icons/clipboard-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-typography.svg b/packages/icons/icons/clipboard-typography.svg new file mode 100644 index 000000000..9c46ff80c --- /dev/null +++ b/packages/icons/icons/clipboard-typography.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard-x.svg b/packages/icons/icons/clipboard-x.svg new file mode 100644 index 000000000..f41163e85 --- /dev/null +++ b/packages/icons/icons/clipboard-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clipboard.svg b/packages/icons/icons/clipboard.svg new file mode 100644 index 000000000..2e93d61b3 --- /dev/null +++ b/packages/icons/icons/clipboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-2.svg b/packages/icons/icons/clock-2.svg new file mode 100644 index 000000000..393892500 --- /dev/null +++ b/packages/icons/icons/clock-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-cancel.svg b/packages/icons/icons/clock-cancel.svg new file mode 100644 index 000000000..ba0566de6 --- /dev/null +++ b/packages/icons/icons/clock-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-edit.svg b/packages/icons/icons/clock-edit.svg new file mode 100644 index 000000000..2294da724 --- /dev/null +++ b/packages/icons/icons/clock-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-1.svg b/packages/icons/icons/clock-hour-1.svg new file mode 100644 index 000000000..ed4aceec2 --- /dev/null +++ b/packages/icons/icons/clock-hour-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-10.svg b/packages/icons/icons/clock-hour-10.svg new file mode 100644 index 000000000..8cd0429df --- /dev/null +++ b/packages/icons/icons/clock-hour-10.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-11.svg b/packages/icons/icons/clock-hour-11.svg new file mode 100644 index 000000000..6d277752c --- /dev/null +++ b/packages/icons/icons/clock-hour-11.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-12.svg b/packages/icons/icons/clock-hour-12.svg new file mode 100644 index 000000000..0bff5722c --- /dev/null +++ b/packages/icons/icons/clock-hour-12.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-2.svg b/packages/icons/icons/clock-hour-2.svg new file mode 100644 index 000000000..7381903e2 --- /dev/null +++ b/packages/icons/icons/clock-hour-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-3.svg b/packages/icons/icons/clock-hour-3.svg new file mode 100644 index 000000000..a6857a6cb --- /dev/null +++ b/packages/icons/icons/clock-hour-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-4.svg b/packages/icons/icons/clock-hour-4.svg new file mode 100644 index 000000000..fc1653886 --- /dev/null +++ b/packages/icons/icons/clock-hour-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-5.svg b/packages/icons/icons/clock-hour-5.svg new file mode 100644 index 000000000..d29d9d450 --- /dev/null +++ b/packages/icons/icons/clock-hour-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-6.svg b/packages/icons/icons/clock-hour-6.svg new file mode 100644 index 000000000..fb72377a0 --- /dev/null +++ b/packages/icons/icons/clock-hour-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-7.svg b/packages/icons/icons/clock-hour-7.svg new file mode 100644 index 000000000..95c3526e0 --- /dev/null +++ b/packages/icons/icons/clock-hour-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-8.svg b/packages/icons/icons/clock-hour-8.svg new file mode 100644 index 000000000..a2bb42ddd --- /dev/null +++ b/packages/icons/icons/clock-hour-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-hour-9.svg b/packages/icons/icons/clock-hour-9.svg new file mode 100644 index 000000000..6a58fbe2f --- /dev/null +++ b/packages/icons/icons/clock-hour-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-off.svg b/packages/icons/icons/clock-off.svg new file mode 100644 index 000000000..b6380f779 --- /dev/null +++ b/packages/icons/icons/clock-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-pause.svg b/packages/icons/icons/clock-pause.svg new file mode 100644 index 000000000..599f881c7 --- /dev/null +++ b/packages/icons/icons/clock-pause.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-play.svg b/packages/icons/icons/clock-play.svg new file mode 100644 index 000000000..86d793272 --- /dev/null +++ b/packages/icons/icons/clock-play.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-record.svg b/packages/icons/icons/clock-record.svg new file mode 100644 index 000000000..c2eeaf613 --- /dev/null +++ b/packages/icons/icons/clock-record.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock-stop.svg b/packages/icons/icons/clock-stop.svg new file mode 100644 index 000000000..143baab04 --- /dev/null +++ b/packages/icons/icons/clock-stop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clock.svg b/packages/icons/icons/clock.svg new file mode 100644 index 000000000..6d56c8d19 --- /dev/null +++ b/packages/icons/icons/clock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clothes-rack-off.svg b/packages/icons/icons/clothes-rack-off.svg new file mode 100644 index 000000000..409f8e2a5 --- /dev/null +++ b/packages/icons/icons/clothes-rack-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clothes-rack.svg b/packages/icons/icons/clothes-rack.svg new file mode 100644 index 000000000..38de2aa0d --- /dev/null +++ b/packages/icons/icons/clothes-rack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-computing.svg b/packages/icons/icons/cloud-computing.svg new file mode 100644 index 000000000..171904c5e --- /dev/null +++ b/packages/icons/icons/cloud-computing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-data-connection.svg b/packages/icons/icons/cloud-data-connection.svg new file mode 100644 index 000000000..d837f5b12 --- /dev/null +++ b/packages/icons/icons/cloud-data-connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-download.svg b/packages/icons/icons/cloud-download.svg new file mode 100644 index 000000000..6fe35c5a5 --- /dev/null +++ b/packages/icons/icons/cloud-download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-fog.svg b/packages/icons/icons/cloud-fog.svg new file mode 100644 index 000000000..4033cad7a --- /dev/null +++ b/packages/icons/icons/cloud-fog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-lock-open.svg b/packages/icons/icons/cloud-lock-open.svg new file mode 100644 index 000000000..5ae73df2b --- /dev/null +++ b/packages/icons/icons/cloud-lock-open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-lock.svg b/packages/icons/icons/cloud-lock.svg new file mode 100644 index 000000000..4fe1c3b27 --- /dev/null +++ b/packages/icons/icons/cloud-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-off.svg b/packages/icons/icons/cloud-off.svg new file mode 100644 index 000000000..9cdacf78a --- /dev/null +++ b/packages/icons/icons/cloud-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-rain.svg b/packages/icons/icons/cloud-rain.svg new file mode 100644 index 000000000..1ccdd38a1 --- /dev/null +++ b/packages/icons/icons/cloud-rain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-snow.svg b/packages/icons/icons/cloud-snow.svg new file mode 100644 index 000000000..075516e0e --- /dev/null +++ b/packages/icons/icons/cloud-snow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-storm.svg b/packages/icons/icons/cloud-storm.svg new file mode 100644 index 000000000..e73cc16f8 --- /dev/null +++ b/packages/icons/icons/cloud-storm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud-upload.svg b/packages/icons/icons/cloud-upload.svg new file mode 100644 index 000000000..b404f3a4f --- /dev/null +++ b/packages/icons/icons/cloud-upload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cloud.svg b/packages/icons/icons/cloud.svg new file mode 100644 index 000000000..5a859e78d --- /dev/null +++ b/packages/icons/icons/cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clover-2.svg b/packages/icons/icons/clover-2.svg new file mode 100644 index 000000000..35cc099c0 --- /dev/null +++ b/packages/icons/icons/clover-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clover.svg b/packages/icons/icons/clover.svg new file mode 100644 index 000000000..aa38b142a --- /dev/null +++ b/packages/icons/icons/clover.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/clubs.svg b/packages/icons/icons/clubs.svg new file mode 100644 index 000000000..3a1183ba8 --- /dev/null +++ b/packages/icons/icons/clubs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-asterix.svg b/packages/icons/icons/code-asterix.svg new file mode 100644 index 000000000..98e5c3164 --- /dev/null +++ b/packages/icons/icons/code-asterix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-circle-2.svg b/packages/icons/icons/code-circle-2.svg new file mode 100644 index 000000000..c7100112e --- /dev/null +++ b/packages/icons/icons/code-circle-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-circle.svg b/packages/icons/icons/code-circle.svg new file mode 100644 index 000000000..9dfe9219d --- /dev/null +++ b/packages/icons/icons/code-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-dots.svg b/packages/icons/icons/code-dots.svg new file mode 100644 index 000000000..d937fd402 --- /dev/null +++ b/packages/icons/icons/code-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-minus.svg b/packages/icons/icons/code-minus.svg new file mode 100644 index 000000000..db07fb1c1 --- /dev/null +++ b/packages/icons/icons/code-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-off.svg b/packages/icons/icons/code-off.svg new file mode 100644 index 000000000..9c340b8b3 --- /dev/null +++ b/packages/icons/icons/code-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code-plus.svg b/packages/icons/icons/code-plus.svg new file mode 100644 index 000000000..b83e1f94d --- /dev/null +++ b/packages/icons/icons/code-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/code.svg b/packages/icons/icons/code.svg new file mode 100644 index 000000000..0273345ff --- /dev/null +++ b/packages/icons/icons/code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coffee-off.svg b/packages/icons/icons/coffee-off.svg new file mode 100644 index 000000000..4066d0ad7 --- /dev/null +++ b/packages/icons/icons/coffee-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coffee.svg b/packages/icons/icons/coffee.svg new file mode 100644 index 000000000..316233684 --- /dev/null +++ b/packages/icons/icons/coffee.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coffin.svg b/packages/icons/icons/coffin.svg new file mode 100644 index 000000000..a35d9036a --- /dev/null +++ b/packages/icons/icons/coffin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-bitcoin.svg b/packages/icons/icons/coin-bitcoin.svg new file mode 100644 index 000000000..959c2e91a --- /dev/null +++ b/packages/icons/icons/coin-bitcoin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-euro.svg b/packages/icons/icons/coin-euro.svg new file mode 100644 index 000000000..df4afb00e --- /dev/null +++ b/packages/icons/icons/coin-euro.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-monero.svg b/packages/icons/icons/coin-monero.svg new file mode 100644 index 000000000..73c9e48d9 --- /dev/null +++ b/packages/icons/icons/coin-monero.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-off.svg b/packages/icons/icons/coin-off.svg new file mode 100644 index 000000000..4b1f8b411 --- /dev/null +++ b/packages/icons/icons/coin-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-pound.svg b/packages/icons/icons/coin-pound.svg new file mode 100644 index 000000000..438779c7c --- /dev/null +++ b/packages/icons/icons/coin-pound.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-rupee.svg b/packages/icons/icons/coin-rupee.svg new file mode 100644 index 000000000..1fb027c83 --- /dev/null +++ b/packages/icons/icons/coin-rupee.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-yen.svg b/packages/icons/icons/coin-yen.svg new file mode 100644 index 000000000..9bfed7e0e --- /dev/null +++ b/packages/icons/icons/coin-yen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin-yuan.svg b/packages/icons/icons/coin-yuan.svg new file mode 100644 index 000000000..a35c5edc2 --- /dev/null +++ b/packages/icons/icons/coin-yuan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coin.svg b/packages/icons/icons/coin.svg new file mode 100644 index 000000000..c10b7a155 --- /dev/null +++ b/packages/icons/icons/coin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/coins.svg b/packages/icons/icons/coins.svg new file mode 100644 index 000000000..a8c36a821 --- /dev/null +++ b/packages/icons/icons/coins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/color-filter.svg b/packages/icons/icons/color-filter.svg new file mode 100644 index 000000000..45d1a1447 --- /dev/null +++ b/packages/icons/icons/color-filter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/color-picker-off.svg b/packages/icons/icons/color-picker-off.svg new file mode 100644 index 000000000..9934a7a81 --- /dev/null +++ b/packages/icons/icons/color-picker-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/color-picker.svg b/packages/icons/icons/color-picker.svg new file mode 100644 index 000000000..caaef8c41 --- /dev/null +++ b/packages/icons/icons/color-picker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/color-swatch-off.svg b/packages/icons/icons/color-swatch-off.svg new file mode 100644 index 000000000..8c25067b0 --- /dev/null +++ b/packages/icons/icons/color-swatch-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/color-swatch.svg b/packages/icons/icons/color-swatch.svg new file mode 100644 index 000000000..7a19aedb4 --- /dev/null +++ b/packages/icons/icons/color-swatch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/column-insert-left.svg b/packages/icons/icons/column-insert-left.svg new file mode 100644 index 000000000..3080344f2 --- /dev/null +++ b/packages/icons/icons/column-insert-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/column-insert-right.svg b/packages/icons/icons/column-insert-right.svg new file mode 100644 index 000000000..55fdfd637 --- /dev/null +++ b/packages/icons/icons/column-insert-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/columns-off.svg b/packages/icons/icons/columns-off.svg new file mode 100644 index 000000000..3c5b05024 --- /dev/null +++ b/packages/icons/icons/columns-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/columns.svg b/packages/icons/icons/columns.svg new file mode 100644 index 000000000..e9488ca21 --- /dev/null +++ b/packages/icons/icons/columns.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/comet.svg b/packages/icons/icons/comet.svg new file mode 100644 index 000000000..32ab1af7b --- /dev/null +++ b/packages/icons/icons/comet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/command-off.svg b/packages/icons/icons/command-off.svg new file mode 100644 index 000000000..d2260933d --- /dev/null +++ b/packages/icons/icons/command-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/command.svg b/packages/icons/icons/command.svg new file mode 100644 index 000000000..293b5498b --- /dev/null +++ b/packages/icons/icons/command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/compass-off.svg b/packages/icons/icons/compass-off.svg new file mode 100644 index 000000000..b1fd858b7 --- /dev/null +++ b/packages/icons/icons/compass-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/compass.svg b/packages/icons/icons/compass.svg new file mode 100644 index 000000000..b9bda4268 --- /dev/null +++ b/packages/icons/icons/compass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/components-off.svg b/packages/icons/icons/components-off.svg new file mode 100644 index 000000000..5414493fe --- /dev/null +++ b/packages/icons/icons/components-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/components.svg b/packages/icons/icons/components.svg new file mode 100644 index 000000000..c61931cb9 --- /dev/null +++ b/packages/icons/icons/components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cone-2.svg b/packages/icons/icons/cone-2.svg new file mode 100644 index 000000000..d6fc49220 --- /dev/null +++ b/packages/icons/icons/cone-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cone-off.svg b/packages/icons/icons/cone-off.svg new file mode 100644 index 000000000..3a55927fd --- /dev/null +++ b/packages/icons/icons/cone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cone.svg b/packages/icons/icons/cone.svg new file mode 100644 index 000000000..72ed526b1 --- /dev/null +++ b/packages/icons/icons/cone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/confetti-off.svg b/packages/icons/icons/confetti-off.svg new file mode 100644 index 000000000..c13e41dde --- /dev/null +++ b/packages/icons/icons/confetti-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/confetti.svg b/packages/icons/icons/confetti.svg new file mode 100644 index 000000000..a8cc5fd65 --- /dev/null +++ b/packages/icons/icons/confetti.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/confucius.svg b/packages/icons/icons/confucius.svg new file mode 100644 index 000000000..774d323ef --- /dev/null +++ b/packages/icons/icons/confucius.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/container-off.svg b/packages/icons/icons/container-off.svg new file mode 100644 index 000000000..9164cc1fe --- /dev/null +++ b/packages/icons/icons/container-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/container.svg b/packages/icons/icons/container.svg new file mode 100644 index 000000000..98edddb98 --- /dev/null +++ b/packages/icons/icons/container.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/contrast-2-off.svg b/packages/icons/icons/contrast-2-off.svg new file mode 100644 index 000000000..630510180 --- /dev/null +++ b/packages/icons/icons/contrast-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/contrast-2.svg b/packages/icons/icons/contrast-2.svg new file mode 100644 index 000000000..2b3687870 --- /dev/null +++ b/packages/icons/icons/contrast-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/contrast-off.svg b/packages/icons/icons/contrast-off.svg new file mode 100644 index 000000000..dda47fcc1 --- /dev/null +++ b/packages/icons/icons/contrast-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/contrast.svg b/packages/icons/icons/contrast.svg new file mode 100644 index 000000000..1e325c98d --- /dev/null +++ b/packages/icons/icons/contrast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cooker.svg b/packages/icons/icons/cooker.svg new file mode 100644 index 000000000..70c01eb50 --- /dev/null +++ b/packages/icons/icons/cooker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cookie-man.svg b/packages/icons/icons/cookie-man.svg new file mode 100644 index 000000000..d074c5093 --- /dev/null +++ b/packages/icons/icons/cookie-man.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cookie-off.svg b/packages/icons/icons/cookie-off.svg new file mode 100644 index 000000000..8645cba87 --- /dev/null +++ b/packages/icons/icons/cookie-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cookie.svg b/packages/icons/icons/cookie.svg new file mode 100644 index 000000000..4ddd9d8c0 --- /dev/null +++ b/packages/icons/icons/cookie.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copy-off.svg b/packages/icons/icons/copy-off.svg new file mode 100644 index 000000000..37a5686bc --- /dev/null +++ b/packages/icons/icons/copy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copy.svg b/packages/icons/icons/copy.svg new file mode 100644 index 000000000..707535c73 --- /dev/null +++ b/packages/icons/icons/copy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copyleft-off.svg b/packages/icons/icons/copyleft-off.svg new file mode 100644 index 000000000..ac6301d13 --- /dev/null +++ b/packages/icons/icons/copyleft-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copyleft.svg b/packages/icons/icons/copyleft.svg new file mode 100644 index 000000000..d39769261 --- /dev/null +++ b/packages/icons/icons/copyleft.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copyright-off.svg b/packages/icons/icons/copyright-off.svg new file mode 100644 index 000000000..de8375200 --- /dev/null +++ b/packages/icons/icons/copyright-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/copyright.svg b/packages/icons/icons/copyright.svg new file mode 100644 index 000000000..0fc90082c --- /dev/null +++ b/packages/icons/icons/copyright.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-down-left-double.svg b/packages/icons/icons/corner-down-left-double.svg new file mode 100644 index 000000000..3ff73ea64 --- /dev/null +++ b/packages/icons/icons/corner-down-left-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-down-left.svg b/packages/icons/icons/corner-down-left.svg new file mode 100644 index 000000000..a94255f3d --- /dev/null +++ b/packages/icons/icons/corner-down-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-down-right-double.svg b/packages/icons/icons/corner-down-right-double.svg new file mode 100644 index 000000000..dd94e9831 --- /dev/null +++ b/packages/icons/icons/corner-down-right-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-down-right.svg b/packages/icons/icons/corner-down-right.svg new file mode 100644 index 000000000..8e876672b --- /dev/null +++ b/packages/icons/icons/corner-down-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-left-down-double.svg b/packages/icons/icons/corner-left-down-double.svg new file mode 100644 index 000000000..8b15d5546 --- /dev/null +++ b/packages/icons/icons/corner-left-down-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-left-down.svg b/packages/icons/icons/corner-left-down.svg new file mode 100644 index 000000000..eac1c5932 --- /dev/null +++ b/packages/icons/icons/corner-left-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-left-up-double.svg b/packages/icons/icons/corner-left-up-double.svg new file mode 100644 index 000000000..55c96f67c --- /dev/null +++ b/packages/icons/icons/corner-left-up-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-left-up.svg b/packages/icons/icons/corner-left-up.svg new file mode 100644 index 000000000..b51556e26 --- /dev/null +++ b/packages/icons/icons/corner-left-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-right-down-double.svg b/packages/icons/icons/corner-right-down-double.svg new file mode 100644 index 000000000..83676d8fd --- /dev/null +++ b/packages/icons/icons/corner-right-down-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-right-down.svg b/packages/icons/icons/corner-right-down.svg new file mode 100644 index 000000000..46573c471 --- /dev/null +++ b/packages/icons/icons/corner-right-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-right-up-double.svg b/packages/icons/icons/corner-right-up-double.svg new file mode 100644 index 000000000..a9e9e0d2b --- /dev/null +++ b/packages/icons/icons/corner-right-up-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-right-up.svg b/packages/icons/icons/corner-right-up.svg new file mode 100644 index 000000000..d5ed291cb --- /dev/null +++ b/packages/icons/icons/corner-right-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-up-left-double.svg b/packages/icons/icons/corner-up-left-double.svg new file mode 100644 index 000000000..26536e1b6 --- /dev/null +++ b/packages/icons/icons/corner-up-left-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-up-left.svg b/packages/icons/icons/corner-up-left.svg new file mode 100644 index 000000000..29cd72a01 --- /dev/null +++ b/packages/icons/icons/corner-up-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-up-right-double.svg b/packages/icons/icons/corner-up-right-double.svg new file mode 100644 index 000000000..3e71e1cd4 --- /dev/null +++ b/packages/icons/icons/corner-up-right-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/corner-up-right.svg b/packages/icons/icons/corner-up-right.svg new file mode 100644 index 000000000..028342b24 --- /dev/null +++ b/packages/icons/icons/corner-up-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cpu-2.svg b/packages/icons/icons/cpu-2.svg new file mode 100644 index 000000000..1769a8edb --- /dev/null +++ b/packages/icons/icons/cpu-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cpu-off.svg b/packages/icons/icons/cpu-off.svg new file mode 100644 index 000000000..01b020458 --- /dev/null +++ b/packages/icons/icons/cpu-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cpu.svg b/packages/icons/icons/cpu.svg new file mode 100644 index 000000000..4288b9717 --- /dev/null +++ b/packages/icons/icons/cpu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crane-off.svg b/packages/icons/icons/crane-off.svg new file mode 100644 index 000000000..426f10398 --- /dev/null +++ b/packages/icons/icons/crane-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crane.svg b/packages/icons/icons/crane.svg new file mode 100644 index 000000000..e705e3089 --- /dev/null +++ b/packages/icons/icons/crane.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-by.svg b/packages/icons/icons/creative-commons-by.svg new file mode 100644 index 000000000..88b81dcde --- /dev/null +++ b/packages/icons/icons/creative-commons-by.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-nc.svg b/packages/icons/icons/creative-commons-nc.svg new file mode 100644 index 000000000..a68a18695 --- /dev/null +++ b/packages/icons/icons/creative-commons-nc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-nd.svg b/packages/icons/icons/creative-commons-nd.svg new file mode 100644 index 000000000..617d14d5f --- /dev/null +++ b/packages/icons/icons/creative-commons-nd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-off.svg b/packages/icons/icons/creative-commons-off.svg new file mode 100644 index 000000000..6512f452a --- /dev/null +++ b/packages/icons/icons/creative-commons-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-sa.svg b/packages/icons/icons/creative-commons-sa.svg new file mode 100644 index 000000000..cf85e2b0c --- /dev/null +++ b/packages/icons/icons/creative-commons-sa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons-zero.svg b/packages/icons/icons/creative-commons-zero.svg new file mode 100644 index 000000000..954e93c3c --- /dev/null +++ b/packages/icons/icons/creative-commons-zero.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/creative-commons.svg b/packages/icons/icons/creative-commons.svg new file mode 100644 index 000000000..a768842cd --- /dev/null +++ b/packages/icons/icons/creative-commons.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/credit-card-off.svg b/packages/icons/icons/credit-card-off.svg new file mode 100644 index 000000000..47d978634 --- /dev/null +++ b/packages/icons/icons/credit-card-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/credit-card.svg b/packages/icons/icons/credit-card.svg new file mode 100644 index 000000000..ebe7434ad --- /dev/null +++ b/packages/icons/icons/credit-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cricket.svg b/packages/icons/icons/cricket.svg new file mode 100644 index 000000000..25aba85a9 --- /dev/null +++ b/packages/icons/icons/cricket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crop.svg b/packages/icons/icons/crop.svg new file mode 100644 index 000000000..72fd6d9b4 --- /dev/null +++ b/packages/icons/icons/crop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cross-off.svg b/packages/icons/icons/cross-off.svg new file mode 100644 index 000000000..9da4c31a8 --- /dev/null +++ b/packages/icons/icons/cross-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cross.svg b/packages/icons/icons/cross.svg new file mode 100644 index 000000000..1d5b3da99 --- /dev/null +++ b/packages/icons/icons/cross.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crosshair.svg b/packages/icons/icons/crosshair.svg new file mode 100644 index 000000000..ea6de8919 --- /dev/null +++ b/packages/icons/icons/crosshair.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crown-off.svg b/packages/icons/icons/crown-off.svg new file mode 100644 index 000000000..37e15b07e --- /dev/null +++ b/packages/icons/icons/crown-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crown.svg b/packages/icons/icons/crown.svg new file mode 100644 index 000000000..a198e2555 --- /dev/null +++ b/packages/icons/icons/crown.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crutches-off.svg b/packages/icons/icons/crutches-off.svg new file mode 100644 index 000000000..cfb45ebdc --- /dev/null +++ b/packages/icons/icons/crutches-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crutches.svg b/packages/icons/icons/crutches.svg new file mode 100644 index 000000000..16c555e20 --- /dev/null +++ b/packages/icons/icons/crutches.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/crystal-ball.svg b/packages/icons/icons/crystal-ball.svg new file mode 100644 index 000000000..dd94bbb2e --- /dev/null +++ b/packages/icons/icons/crystal-ball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cube-send.svg b/packages/icons/icons/cube-send.svg new file mode 100644 index 000000000..93e00396c --- /dev/null +++ b/packages/icons/icons/cube-send.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cube-unfolded.svg b/packages/icons/icons/cube-unfolded.svg new file mode 100644 index 000000000..dd984ca4a --- /dev/null +++ b/packages/icons/icons/cube-unfolded.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cup-off.svg b/packages/icons/icons/cup-off.svg new file mode 100644 index 000000000..b0f413b1a --- /dev/null +++ b/packages/icons/icons/cup-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cup.svg b/packages/icons/icons/cup.svg new file mode 100644 index 000000000..891102037 --- /dev/null +++ b/packages/icons/icons/cup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/curling.svg b/packages/icons/icons/curling.svg new file mode 100644 index 000000000..fa3a48a73 --- /dev/null +++ b/packages/icons/icons/curling.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/curly-loop.svg b/packages/icons/icons/curly-loop.svg new file mode 100644 index 000000000..f0eec5a17 --- /dev/null +++ b/packages/icons/icons/curly-loop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-afghani.svg b/packages/icons/icons/currency-afghani.svg new file mode 100644 index 000000000..0968b15cd --- /dev/null +++ b/packages/icons/icons/currency-afghani.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-bahraini.svg b/packages/icons/icons/currency-bahraini.svg new file mode 100644 index 000000000..26487403b --- /dev/null +++ b/packages/icons/icons/currency-bahraini.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-baht.svg b/packages/icons/icons/currency-baht.svg new file mode 100644 index 000000000..68df89308 --- /dev/null +++ b/packages/icons/icons/currency-baht.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-bitcoin.svg b/packages/icons/icons/currency-bitcoin.svg new file mode 100644 index 000000000..74c5a4de2 --- /dev/null +++ b/packages/icons/icons/currency-bitcoin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-cent.svg b/packages/icons/icons/currency-cent.svg new file mode 100644 index 000000000..03c134bda --- /dev/null +++ b/packages/icons/icons/currency-cent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dinar.svg b/packages/icons/icons/currency-dinar.svg new file mode 100644 index 000000000..34ca7ee63 --- /dev/null +++ b/packages/icons/icons/currency-dinar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dirham.svg b/packages/icons/icons/currency-dirham.svg new file mode 100644 index 000000000..42a839d0d --- /dev/null +++ b/packages/icons/icons/currency-dirham.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dogecoin.svg b/packages/icons/icons/currency-dogecoin.svg new file mode 100644 index 000000000..40cabbb7e --- /dev/null +++ b/packages/icons/icons/currency-dogecoin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-australian.svg b/packages/icons/icons/currency-dollar-australian.svg new file mode 100644 index 000000000..b0d9cb84e --- /dev/null +++ b/packages/icons/icons/currency-dollar-australian.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-brunei.svg b/packages/icons/icons/currency-dollar-brunei.svg new file mode 100644 index 000000000..9b03461bf --- /dev/null +++ b/packages/icons/icons/currency-dollar-brunei.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-canadian.svg b/packages/icons/icons/currency-dollar-canadian.svg new file mode 100644 index 000000000..da2cd8455 --- /dev/null +++ b/packages/icons/icons/currency-dollar-canadian.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-guyanese.svg b/packages/icons/icons/currency-dollar-guyanese.svg new file mode 100644 index 000000000..c0bc1c14f --- /dev/null +++ b/packages/icons/icons/currency-dollar-guyanese.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-off.svg b/packages/icons/icons/currency-dollar-off.svg new file mode 100644 index 000000000..fda979401 --- /dev/null +++ b/packages/icons/icons/currency-dollar-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-singapore.svg b/packages/icons/icons/currency-dollar-singapore.svg new file mode 100644 index 000000000..2598718aa --- /dev/null +++ b/packages/icons/icons/currency-dollar-singapore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar-zimbabwean.svg b/packages/icons/icons/currency-dollar-zimbabwean.svg new file mode 100644 index 000000000..b04621ae7 --- /dev/null +++ b/packages/icons/icons/currency-dollar-zimbabwean.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dollar.svg b/packages/icons/icons/currency-dollar.svg new file mode 100644 index 000000000..bb1baa520 --- /dev/null +++ b/packages/icons/icons/currency-dollar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dong.svg b/packages/icons/icons/currency-dong.svg new file mode 100644 index 000000000..905531c12 --- /dev/null +++ b/packages/icons/icons/currency-dong.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-dram.svg b/packages/icons/icons/currency-dram.svg new file mode 100644 index 000000000..3a44e52eb --- /dev/null +++ b/packages/icons/icons/currency-dram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-ethereum.svg b/packages/icons/icons/currency-ethereum.svg new file mode 100644 index 000000000..89c7eb260 --- /dev/null +++ b/packages/icons/icons/currency-ethereum.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-euro-off.svg b/packages/icons/icons/currency-euro-off.svg new file mode 100644 index 000000000..662dbab37 --- /dev/null +++ b/packages/icons/icons/currency-euro-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-euro.svg b/packages/icons/icons/currency-euro.svg new file mode 100644 index 000000000..d22934ada --- /dev/null +++ b/packages/icons/icons/currency-euro.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-forint.svg b/packages/icons/icons/currency-forint.svg new file mode 100644 index 000000000..4c80ff0de --- /dev/null +++ b/packages/icons/icons/currency-forint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-frank.svg b/packages/icons/icons/currency-frank.svg new file mode 100644 index 000000000..66c328b28 --- /dev/null +++ b/packages/icons/icons/currency-frank.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-guarani.svg b/packages/icons/icons/currency-guarani.svg new file mode 100644 index 000000000..b9f4fe7ac --- /dev/null +++ b/packages/icons/icons/currency-guarani.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-hryvnia.svg b/packages/icons/icons/currency-hryvnia.svg new file mode 100644 index 000000000..e39cfae11 --- /dev/null +++ b/packages/icons/icons/currency-hryvnia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-kip.svg b/packages/icons/icons/currency-kip.svg new file mode 100644 index 000000000..0b2f1a33a --- /dev/null +++ b/packages/icons/icons/currency-kip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-krone-czech.svg b/packages/icons/icons/currency-krone-czech.svg new file mode 100644 index 000000000..6820f80d3 --- /dev/null +++ b/packages/icons/icons/currency-krone-czech.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-krone-danish.svg b/packages/icons/icons/currency-krone-danish.svg new file mode 100644 index 000000000..4fef28104 --- /dev/null +++ b/packages/icons/icons/currency-krone-danish.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-krone-swedish.svg b/packages/icons/icons/currency-krone-swedish.svg new file mode 100644 index 000000000..62608bf76 --- /dev/null +++ b/packages/icons/icons/currency-krone-swedish.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-lari.svg b/packages/icons/icons/currency-lari.svg new file mode 100644 index 000000000..b1e7b7602 --- /dev/null +++ b/packages/icons/icons/currency-lari.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-leu.svg b/packages/icons/icons/currency-leu.svg new file mode 100644 index 000000000..28a7e7468 --- /dev/null +++ b/packages/icons/icons/currency-leu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-lira.svg b/packages/icons/icons/currency-lira.svg new file mode 100644 index 000000000..35b00bbd5 --- /dev/null +++ b/packages/icons/icons/currency-lira.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-litecoin.svg b/packages/icons/icons/currency-litecoin.svg new file mode 100644 index 000000000..c7d2620bd --- /dev/null +++ b/packages/icons/icons/currency-litecoin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-lyd.svg b/packages/icons/icons/currency-lyd.svg new file mode 100644 index 000000000..dd0541d3e --- /dev/null +++ b/packages/icons/icons/currency-lyd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-manat.svg b/packages/icons/icons/currency-manat.svg new file mode 100644 index 000000000..ea5ca24d4 --- /dev/null +++ b/packages/icons/icons/currency-manat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-monero.svg b/packages/icons/icons/currency-monero.svg new file mode 100644 index 000000000..da57d8209 --- /dev/null +++ b/packages/icons/icons/currency-monero.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-naira.svg b/packages/icons/icons/currency-naira.svg new file mode 100644 index 000000000..6c87940f1 --- /dev/null +++ b/packages/icons/icons/currency-naira.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-off.svg b/packages/icons/icons/currency-off.svg new file mode 100644 index 000000000..8715e6996 --- /dev/null +++ b/packages/icons/icons/currency-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-paanga.svg b/packages/icons/icons/currency-paanga.svg new file mode 100644 index 000000000..e4c972bd9 --- /dev/null +++ b/packages/icons/icons/currency-paanga.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-peso.svg b/packages/icons/icons/currency-peso.svg new file mode 100644 index 000000000..1e8ddc652 --- /dev/null +++ b/packages/icons/icons/currency-peso.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-pound-off.svg b/packages/icons/icons/currency-pound-off.svg new file mode 100644 index 000000000..04a261616 --- /dev/null +++ b/packages/icons/icons/currency-pound-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-pound.svg b/packages/icons/icons/currency-pound.svg new file mode 100644 index 000000000..5d8ae6690 --- /dev/null +++ b/packages/icons/icons/currency-pound.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-quetzal.svg b/packages/icons/icons/currency-quetzal.svg new file mode 100644 index 000000000..7c9b45278 --- /dev/null +++ b/packages/icons/icons/currency-quetzal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-real.svg b/packages/icons/icons/currency-real.svg new file mode 100644 index 000000000..d4e5456d5 --- /dev/null +++ b/packages/icons/icons/currency-real.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-renminbi.svg b/packages/icons/icons/currency-renminbi.svg new file mode 100644 index 000000000..21e7e4a13 --- /dev/null +++ b/packages/icons/icons/currency-renminbi.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-ripple.svg b/packages/icons/icons/currency-ripple.svg new file mode 100644 index 000000000..20d89bcc2 --- /dev/null +++ b/packages/icons/icons/currency-ripple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-riyal.svg b/packages/icons/icons/currency-riyal.svg new file mode 100644 index 000000000..03561218a --- /dev/null +++ b/packages/icons/icons/currency-riyal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-rubel.svg b/packages/icons/icons/currency-rubel.svg new file mode 100644 index 000000000..fe85525ac --- /dev/null +++ b/packages/icons/icons/currency-rubel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-rufiyaa.svg b/packages/icons/icons/currency-rufiyaa.svg new file mode 100644 index 000000000..9395d758b --- /dev/null +++ b/packages/icons/icons/currency-rufiyaa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-rupee-nepalese.svg b/packages/icons/icons/currency-rupee-nepalese.svg new file mode 100644 index 000000000..2bbb4e3aa --- /dev/null +++ b/packages/icons/icons/currency-rupee-nepalese.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-rupee.svg b/packages/icons/icons/currency-rupee.svg new file mode 100644 index 000000000..31859d3f0 --- /dev/null +++ b/packages/icons/icons/currency-rupee.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-shekel.svg b/packages/icons/icons/currency-shekel.svg new file mode 100644 index 000000000..3d8c31cb6 --- /dev/null +++ b/packages/icons/icons/currency-shekel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-solana.svg b/packages/icons/icons/currency-solana.svg new file mode 100644 index 000000000..52776843d --- /dev/null +++ b/packages/icons/icons/currency-solana.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-som.svg b/packages/icons/icons/currency-som.svg new file mode 100644 index 000000000..8e5f9c469 --- /dev/null +++ b/packages/icons/icons/currency-som.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-taka.svg b/packages/icons/icons/currency-taka.svg new file mode 100644 index 000000000..861dc9555 --- /dev/null +++ b/packages/icons/icons/currency-taka.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-tenge.svg b/packages/icons/icons/currency-tenge.svg new file mode 100644 index 000000000..9aaddfc9a --- /dev/null +++ b/packages/icons/icons/currency-tenge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-tugrik.svg b/packages/icons/icons/currency-tugrik.svg new file mode 100644 index 000000000..9a2a2745f --- /dev/null +++ b/packages/icons/icons/currency-tugrik.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-won.svg b/packages/icons/icons/currency-won.svg new file mode 100644 index 000000000..8cc45cd5c --- /dev/null +++ b/packages/icons/icons/currency-won.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-yen-off.svg b/packages/icons/icons/currency-yen-off.svg new file mode 100644 index 000000000..9935a899f --- /dev/null +++ b/packages/icons/icons/currency-yen-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-yen.svg b/packages/icons/icons/currency-yen.svg new file mode 100644 index 000000000..b9855cc79 --- /dev/null +++ b/packages/icons/icons/currency-yen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-yuan.svg b/packages/icons/icons/currency-yuan.svg new file mode 100644 index 000000000..149c57f8e --- /dev/null +++ b/packages/icons/icons/currency-yuan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency-zloty.svg b/packages/icons/icons/currency-zloty.svg new file mode 100644 index 000000000..b86a1fc02 --- /dev/null +++ b/packages/icons/icons/currency-zloty.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/currency.svg b/packages/icons/icons/currency.svg new file mode 100644 index 000000000..fd0975cef --- /dev/null +++ b/packages/icons/icons/currency.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/current-location-off.svg b/packages/icons/icons/current-location-off.svg new file mode 100644 index 000000000..4963e5753 --- /dev/null +++ b/packages/icons/icons/current-location-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/current-location.svg b/packages/icons/icons/current-location.svg new file mode 100644 index 000000000..c3d106949 --- /dev/null +++ b/packages/icons/icons/current-location.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cursor-off.svg b/packages/icons/icons/cursor-off.svg new file mode 100644 index 000000000..436ca31a8 --- /dev/null +++ b/packages/icons/icons/cursor-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cursor-text.svg b/packages/icons/icons/cursor-text.svg new file mode 100644 index 000000000..f82b47ab9 --- /dev/null +++ b/packages/icons/icons/cursor-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cut.svg b/packages/icons/icons/cut.svg new file mode 100644 index 000000000..556e7e8f6 --- /dev/null +++ b/packages/icons/icons/cut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/cylinder.svg b/packages/icons/icons/cylinder.svg new file mode 100644 index 000000000..695df42b5 --- /dev/null +++ b/packages/icons/icons/cylinder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dashboard-off.svg b/packages/icons/icons/dashboard-off.svg new file mode 100644 index 000000000..858e0ff93 --- /dev/null +++ b/packages/icons/icons/dashboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dashboard.svg b/packages/icons/icons/dashboard.svg new file mode 100644 index 000000000..ebc51cbff --- /dev/null +++ b/packages/icons/icons/dashboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/database-export.svg b/packages/icons/icons/database-export.svg new file mode 100644 index 000000000..87169a12d --- /dev/null +++ b/packages/icons/icons/database-export.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/database-import.svg b/packages/icons/icons/database-import.svg new file mode 100644 index 000000000..e1e30ac3d --- /dev/null +++ b/packages/icons/icons/database-import.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/database-off.svg b/packages/icons/icons/database-off.svg new file mode 100644 index 000000000..51da28bde --- /dev/null +++ b/packages/icons/icons/database-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/database.svg b/packages/icons/icons/database.svg new file mode 100644 index 000000000..124b3cecf --- /dev/null +++ b/packages/icons/icons/database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/deer.svg b/packages/icons/icons/deer.svg new file mode 100644 index 000000000..95bf9c0c2 --- /dev/null +++ b/packages/icons/icons/deer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/delta.svg b/packages/icons/icons/delta.svg new file mode 100644 index 000000000..2c10373b2 --- /dev/null +++ b/packages/icons/icons/delta.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dental-broken.svg b/packages/icons/icons/dental-broken.svg new file mode 100644 index 000000000..67020f139 --- /dev/null +++ b/packages/icons/icons/dental-broken.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dental-off.svg b/packages/icons/icons/dental-off.svg new file mode 100644 index 000000000..102afa714 --- /dev/null +++ b/packages/icons/icons/dental-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dental.svg b/packages/icons/icons/dental.svg new file mode 100644 index 000000000..130ad7f35 --- /dev/null +++ b/packages/icons/icons/dental.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/details-off.svg b/packages/icons/icons/details-off.svg new file mode 100644 index 000000000..43f6c5c95 --- /dev/null +++ b/packages/icons/icons/details-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/details.svg b/packages/icons/icons/details.svg new file mode 100644 index 000000000..47097e61f --- /dev/null +++ b/packages/icons/icons/details.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-airpods-case.svg b/packages/icons/icons/device-airpods-case.svg new file mode 100644 index 000000000..30073c519 --- /dev/null +++ b/packages/icons/icons/device-airpods-case.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-airpods.svg b/packages/icons/icons/device-airpods.svg new file mode 100644 index 000000000..a0a0a2295 --- /dev/null +++ b/packages/icons/icons/device-airpods.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-analytics.svg b/packages/icons/icons/device-analytics.svg new file mode 100644 index 000000000..c0410a03a --- /dev/null +++ b/packages/icons/icons/device-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-audio-tape.svg b/packages/icons/icons/device-audio-tape.svg new file mode 100644 index 000000000..bd28a7784 --- /dev/null +++ b/packages/icons/icons/device-audio-tape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-camera-phone.svg b/packages/icons/icons/device-camera-phone.svg new file mode 100644 index 000000000..d8f459d9c --- /dev/null +++ b/packages/icons/icons/device-camera-phone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-cctv-off.svg b/packages/icons/icons/device-cctv-off.svg new file mode 100644 index 000000000..664d726cc --- /dev/null +++ b/packages/icons/icons/device-cctv-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-cctv.svg b/packages/icons/icons/device-cctv.svg new file mode 100644 index 000000000..a8f9313bd --- /dev/null +++ b/packages/icons/icons/device-cctv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-computer-camera-off.svg b/packages/icons/icons/device-computer-camera-off.svg new file mode 100644 index 000000000..aba10abd9 --- /dev/null +++ b/packages/icons/icons/device-computer-camera-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-computer-camera.svg b/packages/icons/icons/device-computer-camera.svg new file mode 100644 index 000000000..bf8d10db8 --- /dev/null +++ b/packages/icons/icons/device-computer-camera.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-desktop-analytics.svg b/packages/icons/icons/device-desktop-analytics.svg new file mode 100644 index 000000000..d747653ae --- /dev/null +++ b/packages/icons/icons/device-desktop-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-desktop-off.svg b/packages/icons/icons/device-desktop-off.svg new file mode 100644 index 000000000..59c566c48 --- /dev/null +++ b/packages/icons/icons/device-desktop-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-desktop.svg b/packages/icons/icons/device-desktop.svg new file mode 100644 index 000000000..9bf6cfcb8 --- /dev/null +++ b/packages/icons/icons/device-desktop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-floppy.svg b/packages/icons/icons/device-floppy.svg new file mode 100644 index 000000000..104b80d46 --- /dev/null +++ b/packages/icons/icons/device-floppy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-gamepad-2.svg b/packages/icons/icons/device-gamepad-2.svg new file mode 100644 index 000000000..004ab35ff --- /dev/null +++ b/packages/icons/icons/device-gamepad-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-gamepad.svg b/packages/icons/icons/device-gamepad.svg new file mode 100644 index 000000000..97c5c7ee1 --- /dev/null +++ b/packages/icons/icons/device-gamepad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-heart-monitor.svg b/packages/icons/icons/device-heart-monitor.svg new file mode 100644 index 000000000..83a9caad2 --- /dev/null +++ b/packages/icons/icons/device-heart-monitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-ipad-horizontal.svg b/packages/icons/icons/device-ipad-horizontal.svg new file mode 100644 index 000000000..cca152bf5 --- /dev/null +++ b/packages/icons/icons/device-ipad-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-ipad.svg b/packages/icons/icons/device-ipad.svg new file mode 100644 index 000000000..89e099d9a --- /dev/null +++ b/packages/icons/icons/device-ipad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-landline-phone.svg b/packages/icons/icons/device-landline-phone.svg new file mode 100644 index 000000000..d30d749ab --- /dev/null +++ b/packages/icons/icons/device-landline-phone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-laptop-off.svg b/packages/icons/icons/device-laptop-off.svg new file mode 100644 index 000000000..905b83d9e --- /dev/null +++ b/packages/icons/icons/device-laptop-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-laptop.svg b/packages/icons/icons/device-laptop.svg new file mode 100644 index 000000000..17890ebfd --- /dev/null +++ b/packages/icons/icons/device-laptop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile-charging.svg b/packages/icons/icons/device-mobile-charging.svg new file mode 100644 index 000000000..fc5608548 --- /dev/null +++ b/packages/icons/icons/device-mobile-charging.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile-message.svg b/packages/icons/icons/device-mobile-message.svg new file mode 100644 index 000000000..f1d734aac --- /dev/null +++ b/packages/icons/icons/device-mobile-message.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile-off.svg b/packages/icons/icons/device-mobile-off.svg new file mode 100644 index 000000000..691a606fb --- /dev/null +++ b/packages/icons/icons/device-mobile-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile-rotated.svg b/packages/icons/icons/device-mobile-rotated.svg new file mode 100644 index 000000000..6c3380363 --- /dev/null +++ b/packages/icons/icons/device-mobile-rotated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile-vibration.svg b/packages/icons/icons/device-mobile-vibration.svg new file mode 100644 index 000000000..ebe5c43cb --- /dev/null +++ b/packages/icons/icons/device-mobile-vibration.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-mobile.svg b/packages/icons/icons/device-mobile.svg new file mode 100644 index 000000000..4bcb3ff15 --- /dev/null +++ b/packages/icons/icons/device-mobile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-nintendo-off.svg b/packages/icons/icons/device-nintendo-off.svg new file mode 100644 index 000000000..51cb28f07 --- /dev/null +++ b/packages/icons/icons/device-nintendo-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-nintendo.svg b/packages/icons/icons/device-nintendo.svg new file mode 100644 index 000000000..e020d007a --- /dev/null +++ b/packages/icons/icons/device-nintendo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-sd-card.svg b/packages/icons/icons/device-sd-card.svg new file mode 100644 index 000000000..d2c79ece2 --- /dev/null +++ b/packages/icons/icons/device-sd-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-sim-1.svg b/packages/icons/icons/device-sim-1.svg new file mode 100644 index 000000000..4ec260a91 --- /dev/null +++ b/packages/icons/icons/device-sim-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-sim-2.svg b/packages/icons/icons/device-sim-2.svg new file mode 100644 index 000000000..9e4354d85 --- /dev/null +++ b/packages/icons/icons/device-sim-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-sim-3.svg b/packages/icons/icons/device-sim-3.svg new file mode 100644 index 000000000..1644fa7c8 --- /dev/null +++ b/packages/icons/icons/device-sim-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-sim.svg b/packages/icons/icons/device-sim.svg new file mode 100644 index 000000000..f551937c7 --- /dev/null +++ b/packages/icons/icons/device-sim.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-speaker-off.svg b/packages/icons/icons/device-speaker-off.svg new file mode 100644 index 000000000..a019be991 --- /dev/null +++ b/packages/icons/icons/device-speaker-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-speaker.svg b/packages/icons/icons/device-speaker.svg new file mode 100644 index 000000000..189a5d849 --- /dev/null +++ b/packages/icons/icons/device-speaker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-tablet-off.svg b/packages/icons/icons/device-tablet-off.svg new file mode 100644 index 000000000..159b37842 --- /dev/null +++ b/packages/icons/icons/device-tablet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-tablet.svg b/packages/icons/icons/device-tablet.svg new file mode 100644 index 000000000..3e643bfb5 --- /dev/null +++ b/packages/icons/icons/device-tablet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-tv-off.svg b/packages/icons/icons/device-tv-off.svg new file mode 100644 index 000000000..c62f1cb7e --- /dev/null +++ b/packages/icons/icons/device-tv-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-tv-old.svg b/packages/icons/icons/device-tv-old.svg new file mode 100644 index 000000000..b67d7c6e0 --- /dev/null +++ b/packages/icons/icons/device-tv-old.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-tv.svg b/packages/icons/icons/device-tv.svg new file mode 100644 index 000000000..9a4c6ed23 --- /dev/null +++ b/packages/icons/icons/device-tv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-watch-off.svg b/packages/icons/icons/device-watch-off.svg new file mode 100644 index 000000000..658e0fd47 --- /dev/null +++ b/packages/icons/icons/device-watch-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-watch-stats-2.svg b/packages/icons/icons/device-watch-stats-2.svg new file mode 100644 index 000000000..cdb2a6b41 --- /dev/null +++ b/packages/icons/icons/device-watch-stats-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-watch-stats.svg b/packages/icons/icons/device-watch-stats.svg new file mode 100644 index 000000000..8e1eac455 --- /dev/null +++ b/packages/icons/icons/device-watch-stats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/device-watch.svg b/packages/icons/icons/device-watch.svg new file mode 100644 index 000000000..754f51b95 --- /dev/null +++ b/packages/icons/icons/device-watch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/devices-2.svg b/packages/icons/icons/devices-2.svg new file mode 100644 index 000000000..686937a82 --- /dev/null +++ b/packages/icons/icons/devices-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/devices-off.svg b/packages/icons/icons/devices-off.svg new file mode 100644 index 000000000..17273f455 --- /dev/null +++ b/packages/icons/icons/devices-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/devices-pc-off.svg b/packages/icons/icons/devices-pc-off.svg new file mode 100644 index 000000000..cf89c87af --- /dev/null +++ b/packages/icons/icons/devices-pc-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/devices-pc.svg b/packages/icons/icons/devices-pc.svg new file mode 100644 index 000000000..83d8a52bf --- /dev/null +++ b/packages/icons/icons/devices-pc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/devices.svg b/packages/icons/icons/devices.svg new file mode 100644 index 000000000..1546d6c8e --- /dev/null +++ b/packages/icons/icons/devices.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dialpad-off.svg b/packages/icons/icons/dialpad-off.svg new file mode 100644 index 000000000..b3bd62958 --- /dev/null +++ b/packages/icons/icons/dialpad-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dialpad.svg b/packages/icons/icons/dialpad.svg new file mode 100644 index 000000000..e2b6447df --- /dev/null +++ b/packages/icons/icons/dialpad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/diamond-off.svg b/packages/icons/icons/diamond-off.svg new file mode 100644 index 000000000..1bda7ef38 --- /dev/null +++ b/packages/icons/icons/diamond-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/diamond.svg b/packages/icons/icons/diamond.svg new file mode 100644 index 000000000..a9555a1da --- /dev/null +++ b/packages/icons/icons/diamond.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/diamonds.svg b/packages/icons/icons/diamonds.svg new file mode 100644 index 000000000..a666fe37d --- /dev/null +++ b/packages/icons/icons/diamonds.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-1.svg b/packages/icons/icons/dice-1.svg new file mode 100644 index 000000000..9fcf7480d --- /dev/null +++ b/packages/icons/icons/dice-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-2.svg b/packages/icons/icons/dice-2.svg new file mode 100644 index 000000000..5a5b39ede --- /dev/null +++ b/packages/icons/icons/dice-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-3.svg b/packages/icons/icons/dice-3.svg new file mode 100644 index 000000000..3505b1904 --- /dev/null +++ b/packages/icons/icons/dice-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-4.svg b/packages/icons/icons/dice-4.svg new file mode 100644 index 000000000..acd3ff03d --- /dev/null +++ b/packages/icons/icons/dice-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-5.svg b/packages/icons/icons/dice-5.svg new file mode 100644 index 000000000..4e130f676 --- /dev/null +++ b/packages/icons/icons/dice-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice-6.svg b/packages/icons/icons/dice-6.svg new file mode 100644 index 000000000..ab8790bc4 --- /dev/null +++ b/packages/icons/icons/dice-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dice.svg b/packages/icons/icons/dice.svg new file mode 100644 index 000000000..2867ee118 --- /dev/null +++ b/packages/icons/icons/dice.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dimensions.svg b/packages/icons/icons/dimensions.svg new file mode 100644 index 000000000..2001add22 --- /dev/null +++ b/packages/icons/icons/dimensions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/direction-horizontal.svg b/packages/icons/icons/direction-horizontal.svg new file mode 100644 index 000000000..ea6f9c306 --- /dev/null +++ b/packages/icons/icons/direction-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/direction-sign-off.svg b/packages/icons/icons/direction-sign-off.svg new file mode 100644 index 000000000..62d41c143 --- /dev/null +++ b/packages/icons/icons/direction-sign-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/direction-sign.svg b/packages/icons/icons/direction-sign.svg new file mode 100644 index 000000000..b6c2c4443 --- /dev/null +++ b/packages/icons/icons/direction-sign.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/direction.svg b/packages/icons/icons/direction.svg new file mode 100644 index 000000000..9326a1689 --- /dev/null +++ b/packages/icons/icons/direction.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/directions-off.svg b/packages/icons/icons/directions-off.svg new file mode 100644 index 000000000..054791182 --- /dev/null +++ b/packages/icons/icons/directions-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/directions.svg b/packages/icons/icons/directions.svg new file mode 100644 index 000000000..d3b63e0ab --- /dev/null +++ b/packages/icons/icons/directions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disabled-2.svg b/packages/icons/icons/disabled-2.svg new file mode 100644 index 000000000..adff2db35 --- /dev/null +++ b/packages/icons/icons/disabled-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disabled-off.svg b/packages/icons/icons/disabled-off.svg new file mode 100644 index 000000000..67fd672f8 --- /dev/null +++ b/packages/icons/icons/disabled-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disabled.svg b/packages/icons/icons/disabled.svg new file mode 100644 index 000000000..091928539 --- /dev/null +++ b/packages/icons/icons/disabled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disc-golf.svg b/packages/icons/icons/disc-golf.svg new file mode 100644 index 000000000..a368552c7 --- /dev/null +++ b/packages/icons/icons/disc-golf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disc-off.svg b/packages/icons/icons/disc-off.svg new file mode 100644 index 000000000..4e9baa7ed --- /dev/null +++ b/packages/icons/icons/disc-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/disc.svg b/packages/icons/icons/disc.svg new file mode 100644 index 000000000..86b46769c --- /dev/null +++ b/packages/icons/icons/disc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/discount-2-off.svg b/packages/icons/icons/discount-2-off.svg new file mode 100644 index 000000000..80f78383b --- /dev/null +++ b/packages/icons/icons/discount-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/discount-2.svg b/packages/icons/icons/discount-2.svg new file mode 100644 index 000000000..54b8978d5 --- /dev/null +++ b/packages/icons/icons/discount-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/discount-check.svg b/packages/icons/icons/discount-check.svg new file mode 100644 index 000000000..3039cde20 --- /dev/null +++ b/packages/icons/icons/discount-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/discount-off.svg b/packages/icons/icons/discount-off.svg new file mode 100644 index 000000000..c39cabcce --- /dev/null +++ b/packages/icons/icons/discount-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/discount.svg b/packages/icons/icons/discount.svg new file mode 100644 index 000000000..48affd481 --- /dev/null +++ b/packages/icons/icons/discount.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/divide.svg b/packages/icons/icons/divide.svg new file mode 100644 index 000000000..bfa84e10d --- /dev/null +++ b/packages/icons/icons/divide.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dna-2-off.svg b/packages/icons/icons/dna-2-off.svg new file mode 100644 index 000000000..556f5f69c --- /dev/null +++ b/packages/icons/icons/dna-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dna-2.svg b/packages/icons/icons/dna-2.svg new file mode 100644 index 000000000..a58b4f787 --- /dev/null +++ b/packages/icons/icons/dna-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dna-off.svg b/packages/icons/icons/dna-off.svg new file mode 100644 index 000000000..79f46279d --- /dev/null +++ b/packages/icons/icons/dna-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dna.svg b/packages/icons/icons/dna.svg new file mode 100644 index 000000000..55f4f11e8 --- /dev/null +++ b/packages/icons/icons/dna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dog-bowl.svg b/packages/icons/icons/dog-bowl.svg new file mode 100644 index 000000000..ba73df4d7 --- /dev/null +++ b/packages/icons/icons/dog-bowl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dog.svg b/packages/icons/icons/dog.svg new file mode 100644 index 000000000..852949fd7 --- /dev/null +++ b/packages/icons/icons/dog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/door-enter.svg b/packages/icons/icons/door-enter.svg new file mode 100644 index 000000000..0c6f3f2be --- /dev/null +++ b/packages/icons/icons/door-enter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/door-exit.svg b/packages/icons/icons/door-exit.svg new file mode 100644 index 000000000..07a33a0a7 --- /dev/null +++ b/packages/icons/icons/door-exit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/door-off.svg b/packages/icons/icons/door-off.svg new file mode 100644 index 000000000..ae43237c6 --- /dev/null +++ b/packages/icons/icons/door-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/door.svg b/packages/icons/icons/door.svg new file mode 100644 index 000000000..7d59179cb --- /dev/null +++ b/packages/icons/icons/door.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dots-circle-horizontal.svg b/packages/icons/icons/dots-circle-horizontal.svg new file mode 100644 index 000000000..b6530d19c --- /dev/null +++ b/packages/icons/icons/dots-circle-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dots-diagonal-2.svg b/packages/icons/icons/dots-diagonal-2.svg new file mode 100644 index 000000000..1fcc60a8c --- /dev/null +++ b/packages/icons/icons/dots-diagonal-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dots-diagonal.svg b/packages/icons/icons/dots-diagonal.svg new file mode 100644 index 000000000..15669cf4c --- /dev/null +++ b/packages/icons/icons/dots-diagonal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dots-vertical.svg b/packages/icons/icons/dots-vertical.svg new file mode 100644 index 000000000..95f786266 --- /dev/null +++ b/packages/icons/icons/dots-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/dots.svg b/packages/icons/icons/dots.svg new file mode 100644 index 000000000..3e21aefe5 --- /dev/null +++ b/packages/icons/icons/dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/download-off.svg b/packages/icons/icons/download-off.svg new file mode 100644 index 000000000..b74c58320 --- /dev/null +++ b/packages/icons/icons/download-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/download.svg b/packages/icons/icons/download.svg new file mode 100644 index 000000000..68b58e29e --- /dev/null +++ b/packages/icons/icons/download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/drag-drop-2.svg b/packages/icons/icons/drag-drop-2.svg new file mode 100644 index 000000000..706dc3a63 --- /dev/null +++ b/packages/icons/icons/drag-drop-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/drag-drop.svg b/packages/icons/icons/drag-drop.svg new file mode 100644 index 000000000..8b3e08e06 --- /dev/null +++ b/packages/icons/icons/drag-drop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/drone-off.svg b/packages/icons/icons/drone-off.svg new file mode 100644 index 000000000..5479ae015 --- /dev/null +++ b/packages/icons/icons/drone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/drone.svg b/packages/icons/icons/drone.svg new file mode 100644 index 000000000..f7776945a --- /dev/null +++ b/packages/icons/icons/drone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/drop-circle.svg b/packages/icons/icons/drop-circle.svg new file mode 100644 index 000000000..5451220ae --- /dev/null +++ b/packages/icons/icons/drop-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet-filled-2.svg b/packages/icons/icons/droplet-filled-2.svg new file mode 100644 index 000000000..7867ec9c6 --- /dev/null +++ b/packages/icons/icons/droplet-filled-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet-filled.svg b/packages/icons/icons/droplet-filled.svg new file mode 100644 index 000000000..10eff308e --- /dev/null +++ b/packages/icons/icons/droplet-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet-half-2.svg b/packages/icons/icons/droplet-half-2.svg new file mode 100644 index 000000000..1f262500e --- /dev/null +++ b/packages/icons/icons/droplet-half-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet-half.svg b/packages/icons/icons/droplet-half.svg new file mode 100644 index 000000000..c490f29fd --- /dev/null +++ b/packages/icons/icons/droplet-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet-off.svg b/packages/icons/icons/droplet-off.svg new file mode 100644 index 000000000..98c73a2a5 --- /dev/null +++ b/packages/icons/icons/droplet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/droplet.svg b/packages/icons/icons/droplet.svg new file mode 100644 index 000000000..4cf6bbf22 --- /dev/null +++ b/packages/icons/icons/droplet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/e-passport.svg b/packages/icons/icons/e-passport.svg new file mode 100644 index 000000000..c878bcf3d --- /dev/null +++ b/packages/icons/icons/e-passport.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ear-off.svg b/packages/icons/icons/ear-off.svg new file mode 100644 index 000000000..607c36c5f --- /dev/null +++ b/packages/icons/icons/ear-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ear.svg b/packages/icons/icons/ear.svg new file mode 100644 index 000000000..8ccc75b93 --- /dev/null +++ b/packages/icons/icons/ear.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-in-control-point.svg b/packages/icons/icons/ease-in-control-point.svg new file mode 100644 index 000000000..4c0582e9a --- /dev/null +++ b/packages/icons/icons/ease-in-control-point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-in-out-control-points.svg b/packages/icons/icons/ease-in-out-control-points.svg new file mode 100644 index 000000000..04eaa3176 --- /dev/null +++ b/packages/icons/icons/ease-in-out-control-points.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-in-out.svg b/packages/icons/icons/ease-in-out.svg new file mode 100644 index 000000000..6a98dd8e0 --- /dev/null +++ b/packages/icons/icons/ease-in-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-in.svg b/packages/icons/icons/ease-in.svg new file mode 100644 index 000000000..0706343b3 --- /dev/null +++ b/packages/icons/icons/ease-in.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-out-control-point.svg b/packages/icons/icons/ease-out-control-point.svg new file mode 100644 index 000000000..3a6727a53 --- /dev/null +++ b/packages/icons/icons/ease-out-control-point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ease-out.svg b/packages/icons/icons/ease-out.svg new file mode 100644 index 000000000..b27181b8b --- /dev/null +++ b/packages/icons/icons/ease-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/edit-circle-off.svg b/packages/icons/icons/edit-circle-off.svg new file mode 100644 index 000000000..1a1d65825 --- /dev/null +++ b/packages/icons/icons/edit-circle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/edit-circle.svg b/packages/icons/icons/edit-circle.svg new file mode 100644 index 000000000..aa06a9385 --- /dev/null +++ b/packages/icons/icons/edit-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/edit-off.svg b/packages/icons/icons/edit-off.svg new file mode 100644 index 000000000..e3df581e0 --- /dev/null +++ b/packages/icons/icons/edit-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/edit.svg b/packages/icons/icons/edit.svg new file mode 100644 index 000000000..58d81a7e7 --- /dev/null +++ b/packages/icons/icons/edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/egg-cracked.svg b/packages/icons/icons/egg-cracked.svg new file mode 100644 index 000000000..89e5a3f6b --- /dev/null +++ b/packages/icons/icons/egg-cracked.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/egg-fried.svg b/packages/icons/icons/egg-fried.svg new file mode 100644 index 000000000..6cb7e2fde --- /dev/null +++ b/packages/icons/icons/egg-fried.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/egg-off.svg b/packages/icons/icons/egg-off.svg new file mode 100644 index 000000000..00ba768ec --- /dev/null +++ b/packages/icons/icons/egg-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/egg.svg b/packages/icons/icons/egg.svg new file mode 100644 index 000000000..72658dbbf --- /dev/null +++ b/packages/icons/icons/egg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eggs.svg b/packages/icons/icons/eggs.svg new file mode 100644 index 000000000..049040f4d --- /dev/null +++ b/packages/icons/icons/eggs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/elevator-off.svg b/packages/icons/icons/elevator-off.svg new file mode 100644 index 000000000..3cda4ba35 --- /dev/null +++ b/packages/icons/icons/elevator-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/elevator.svg b/packages/icons/icons/elevator.svg new file mode 100644 index 000000000..db5d51467 --- /dev/null +++ b/packages/icons/icons/elevator.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/emergency-bed.svg b/packages/icons/icons/emergency-bed.svg new file mode 100644 index 000000000..7fadd8f47 --- /dev/null +++ b/packages/icons/icons/emergency-bed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/empathize-off.svg b/packages/icons/icons/empathize-off.svg new file mode 100644 index 000000000..334b8ca45 --- /dev/null +++ b/packages/icons/icons/empathize-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/empathize.svg b/packages/icons/icons/empathize.svg new file mode 100644 index 000000000..aea8504fe --- /dev/null +++ b/packages/icons/icons/empathize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/emphasis.svg b/packages/icons/icons/emphasis.svg new file mode 100644 index 000000000..07f09b3b4 --- /dev/null +++ b/packages/icons/icons/emphasis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/engine-off.svg b/packages/icons/icons/engine-off.svg new file mode 100644 index 000000000..e203fae98 --- /dev/null +++ b/packages/icons/icons/engine-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/engine.svg b/packages/icons/icons/engine.svg new file mode 100644 index 000000000..74aecb5c0 --- /dev/null +++ b/packages/icons/icons/engine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/equal-double.svg b/packages/icons/icons/equal-double.svg new file mode 100644 index 000000000..2e5723e83 --- /dev/null +++ b/packages/icons/icons/equal-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/equal-not.svg b/packages/icons/icons/equal-not.svg new file mode 100644 index 000000000..ad699983c --- /dev/null +++ b/packages/icons/icons/equal-not.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/equal.svg b/packages/icons/icons/equal.svg new file mode 100644 index 000000000..6136a9fc4 --- /dev/null +++ b/packages/icons/icons/equal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eraser-off.svg b/packages/icons/icons/eraser-off.svg new file mode 100644 index 000000000..4a85715d8 --- /dev/null +++ b/packages/icons/icons/eraser-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eraser.svg b/packages/icons/icons/eraser.svg new file mode 100644 index 000000000..09e5f0c65 --- /dev/null +++ b/packages/icons/icons/eraser.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/error-404-off.svg b/packages/icons/icons/error-404-off.svg new file mode 100644 index 000000000..44db294c7 --- /dev/null +++ b/packages/icons/icons/error-404-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/error-404.svg b/packages/icons/icons/error-404.svg new file mode 100644 index 000000000..27df7e6e1 --- /dev/null +++ b/packages/icons/icons/error-404.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exchange-off.svg b/packages/icons/icons/exchange-off.svg new file mode 100644 index 000000000..0df8c7b4d --- /dev/null +++ b/packages/icons/icons/exchange-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exchange.svg b/packages/icons/icons/exchange.svg new file mode 100644 index 000000000..1f65e49e1 --- /dev/null +++ b/packages/icons/icons/exchange.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exclamation-circle.svg b/packages/icons/icons/exclamation-circle.svg new file mode 100644 index 000000000..8ae928e54 --- /dev/null +++ b/packages/icons/icons/exclamation-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exclamation-mark-off.svg b/packages/icons/icons/exclamation-mark-off.svg new file mode 100644 index 000000000..af289d739 --- /dev/null +++ b/packages/icons/icons/exclamation-mark-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exclamation-mark.svg b/packages/icons/icons/exclamation-mark.svg new file mode 100644 index 000000000..00306c408 --- /dev/null +++ b/packages/icons/icons/exclamation-mark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/explicit-off.svg b/packages/icons/icons/explicit-off.svg new file mode 100644 index 000000000..591110f0c --- /dev/null +++ b/packages/icons/icons/explicit-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/explicit.svg b/packages/icons/icons/explicit.svg new file mode 100644 index 000000000..5ee02be68 --- /dev/null +++ b/packages/icons/icons/explicit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-0.svg b/packages/icons/icons/exposure-0.svg new file mode 100644 index 000000000..ac6006870 --- /dev/null +++ b/packages/icons/icons/exposure-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-minus-1.svg b/packages/icons/icons/exposure-minus-1.svg new file mode 100644 index 000000000..2793aa3f9 --- /dev/null +++ b/packages/icons/icons/exposure-minus-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-minus-2.svg b/packages/icons/icons/exposure-minus-2.svg new file mode 100644 index 000000000..5ca4c5cdf --- /dev/null +++ b/packages/icons/icons/exposure-minus-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-off.svg b/packages/icons/icons/exposure-off.svg new file mode 100644 index 000000000..160c49e97 --- /dev/null +++ b/packages/icons/icons/exposure-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-plus-1.svg b/packages/icons/icons/exposure-plus-1.svg new file mode 100644 index 000000000..d046d1503 --- /dev/null +++ b/packages/icons/icons/exposure-plus-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure-plus-2.svg b/packages/icons/icons/exposure-plus-2.svg new file mode 100644 index 000000000..9f39ffc62 --- /dev/null +++ b/packages/icons/icons/exposure-plus-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/exposure.svg b/packages/icons/icons/exposure.svg new file mode 100644 index 000000000..a069796d9 --- /dev/null +++ b/packages/icons/icons/exposure.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/external-link-off.svg b/packages/icons/icons/external-link-off.svg new file mode 100644 index 000000000..63ab687b2 --- /dev/null +++ b/packages/icons/icons/external-link-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/external-link.svg b/packages/icons/icons/external-link.svg new file mode 100644 index 000000000..93105bf02 --- /dev/null +++ b/packages/icons/icons/external-link.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eye-check.svg b/packages/icons/icons/eye-check.svg new file mode 100644 index 000000000..e7653aa17 --- /dev/null +++ b/packages/icons/icons/eye-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eye-off.svg b/packages/icons/icons/eye-off.svg new file mode 100644 index 000000000..96c3bfcd3 --- /dev/null +++ b/packages/icons/icons/eye-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eye-table.svg b/packages/icons/icons/eye-table.svg new file mode 100644 index 000000000..c7addeb67 --- /dev/null +++ b/packages/icons/icons/eye-table.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eye.svg b/packages/icons/icons/eye.svg new file mode 100644 index 000000000..3468472e0 --- /dev/null +++ b/packages/icons/icons/eye.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eyeglass-2.svg b/packages/icons/icons/eyeglass-2.svg new file mode 100644 index 000000000..de896c22f --- /dev/null +++ b/packages/icons/icons/eyeglass-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eyeglass-off.svg b/packages/icons/icons/eyeglass-off.svg new file mode 100644 index 000000000..fa0d445de --- /dev/null +++ b/packages/icons/icons/eyeglass-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/eyeglass.svg b/packages/icons/icons/eyeglass.svg new file mode 100644 index 000000000..e399056ba --- /dev/null +++ b/packages/icons/icons/eyeglass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/face-id-error.svg b/packages/icons/icons/face-id-error.svg new file mode 100644 index 000000000..6a1c3f9b9 --- /dev/null +++ b/packages/icons/icons/face-id-error.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/face-id.svg b/packages/icons/icons/face-id.svg new file mode 100644 index 000000000..6ef7d759e --- /dev/null +++ b/packages/icons/icons/face-id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/face-mask-off.svg b/packages/icons/icons/face-mask-off.svg new file mode 100644 index 000000000..dab173fc2 --- /dev/null +++ b/packages/icons/icons/face-mask-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/face-mask.svg b/packages/icons/icons/face-mask.svg new file mode 100644 index 000000000..5658b7375 --- /dev/null +++ b/packages/icons/icons/face-mask.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fall.svg b/packages/icons/icons/fall.svg new file mode 100644 index 000000000..6fa236885 --- /dev/null +++ b/packages/icons/icons/fall.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/feather-off.svg b/packages/icons/icons/feather-off.svg new file mode 100644 index 000000000..e52f3fdaf --- /dev/null +++ b/packages/icons/icons/feather-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/feather.svg b/packages/icons/icons/feather.svg new file mode 100644 index 000000000..dc0aa4862 --- /dev/null +++ b/packages/icons/icons/feather.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fence-off.svg b/packages/icons/icons/fence-off.svg new file mode 100644 index 000000000..5172bd77d --- /dev/null +++ b/packages/icons/icons/fence-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fence.svg b/packages/icons/icons/fence.svg new file mode 100644 index 000000000..225f3f7e7 --- /dev/null +++ b/packages/icons/icons/fence.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fidget-spinner.svg b/packages/icons/icons/fidget-spinner.svg new file mode 100644 index 000000000..70e9b343e --- /dev/null +++ b/packages/icons/icons/fidget-spinner.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-3d.svg b/packages/icons/icons/file-3d.svg new file mode 100644 index 000000000..0506c57e4 --- /dev/null +++ b/packages/icons/icons/file-3d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-alert.svg b/packages/icons/icons/file-alert.svg new file mode 100644 index 000000000..0bca2d97c --- /dev/null +++ b/packages/icons/icons/file-alert.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-analytics.svg b/packages/icons/icons/file-analytics.svg new file mode 100644 index 000000000..b592674ce --- /dev/null +++ b/packages/icons/icons/file-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-arrow-left.svg b/packages/icons/icons/file-arrow-left.svg new file mode 100644 index 000000000..3acda34bc --- /dev/null +++ b/packages/icons/icons/file-arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-arrow-right.svg b/packages/icons/icons/file-arrow-right.svg new file mode 100644 index 000000000..8e2371126 --- /dev/null +++ b/packages/icons/icons/file-arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-barcode.svg b/packages/icons/icons/file-barcode.svg new file mode 100644 index 000000000..25897a1e3 --- /dev/null +++ b/packages/icons/icons/file-barcode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-broken.svg b/packages/icons/icons/file-broken.svg new file mode 100644 index 000000000..999173f94 --- /dev/null +++ b/packages/icons/icons/file-broken.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-certificate.svg b/packages/icons/icons/file-certificate.svg new file mode 100644 index 000000000..d884bf153 --- /dev/null +++ b/packages/icons/icons/file-certificate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-chart.svg b/packages/icons/icons/file-chart.svg new file mode 100644 index 000000000..63b1eafdb --- /dev/null +++ b/packages/icons/icons/file-chart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-check.svg b/packages/icons/icons/file-check.svg new file mode 100644 index 000000000..96e50a063 --- /dev/null +++ b/packages/icons/icons/file-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-code-2.svg b/packages/icons/icons/file-code-2.svg new file mode 100644 index 000000000..7d25063b9 --- /dev/null +++ b/packages/icons/icons/file-code-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-code.svg b/packages/icons/icons/file-code.svg new file mode 100644 index 000000000..4d006f5f0 --- /dev/null +++ b/packages/icons/icons/file-code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-database.svg b/packages/icons/icons/file-database.svg new file mode 100644 index 000000000..7f5db0b95 --- /dev/null +++ b/packages/icons/icons/file-database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-delta.svg b/packages/icons/icons/file-delta.svg new file mode 100644 index 000000000..5beab84dd --- /dev/null +++ b/packages/icons/icons/file-delta.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-description.svg b/packages/icons/icons/file-description.svg new file mode 100644 index 000000000..8b49f32e4 --- /dev/null +++ b/packages/icons/icons/file-description.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-diff.svg b/packages/icons/icons/file-diff.svg new file mode 100644 index 000000000..3f28e58fe --- /dev/null +++ b/packages/icons/icons/file-diff.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-digit.svg b/packages/icons/icons/file-digit.svg new file mode 100644 index 000000000..10586fe4b --- /dev/null +++ b/packages/icons/icons/file-digit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-dislike.svg b/packages/icons/icons/file-dislike.svg new file mode 100644 index 000000000..731ba58b9 --- /dev/null +++ b/packages/icons/icons/file-dislike.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-dollar.svg b/packages/icons/icons/file-dollar.svg new file mode 100644 index 000000000..428d4f908 --- /dev/null +++ b/packages/icons/icons/file-dollar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-dots.svg b/packages/icons/icons/file-dots.svg new file mode 100644 index 000000000..a00ef4e51 --- /dev/null +++ b/packages/icons/icons/file-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-download.svg b/packages/icons/icons/file-download.svg new file mode 100644 index 000000000..80c86cd33 --- /dev/null +++ b/packages/icons/icons/file-download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-euro.svg b/packages/icons/icons/file-euro.svg new file mode 100644 index 000000000..33d3aaa9a --- /dev/null +++ b/packages/icons/icons/file-euro.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-export.svg b/packages/icons/icons/file-export.svg new file mode 100644 index 000000000..a92f60348 --- /dev/null +++ b/packages/icons/icons/file-export.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-function.svg b/packages/icons/icons/file-function.svg new file mode 100644 index 000000000..fb1f94af7 --- /dev/null +++ b/packages/icons/icons/file-function.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-horizontal.svg b/packages/icons/icons/file-horizontal.svg new file mode 100644 index 000000000..cdf855b47 --- /dev/null +++ b/packages/icons/icons/file-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-import.svg b/packages/icons/icons/file-import.svg new file mode 100644 index 000000000..32cce60d1 --- /dev/null +++ b/packages/icons/icons/file-import.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-infinity.svg b/packages/icons/icons/file-infinity.svg new file mode 100644 index 000000000..66722b119 --- /dev/null +++ b/packages/icons/icons/file-infinity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-info.svg b/packages/icons/icons/file-info.svg new file mode 100644 index 000000000..b302dfa4b --- /dev/null +++ b/packages/icons/icons/file-info.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-invoice.svg b/packages/icons/icons/file-invoice.svg new file mode 100644 index 000000000..1a616e08a --- /dev/null +++ b/packages/icons/icons/file-invoice.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-lambda.svg b/packages/icons/icons/file-lambda.svg new file mode 100644 index 000000000..00aec2555 --- /dev/null +++ b/packages/icons/icons/file-lambda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-like.svg b/packages/icons/icons/file-like.svg new file mode 100644 index 000000000..cf6003e99 --- /dev/null +++ b/packages/icons/icons/file-like.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-minus.svg b/packages/icons/icons/file-minus.svg new file mode 100644 index 000000000..07742cd25 --- /dev/null +++ b/packages/icons/icons/file-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-music.svg b/packages/icons/icons/file-music.svg new file mode 100644 index 000000000..62bb89236 --- /dev/null +++ b/packages/icons/icons/file-music.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-off.svg b/packages/icons/icons/file-off.svg new file mode 100644 index 000000000..57f706b64 --- /dev/null +++ b/packages/icons/icons/file-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-orientation.svg b/packages/icons/icons/file-orientation.svg new file mode 100644 index 000000000..fbcb8c97e --- /dev/null +++ b/packages/icons/icons/file-orientation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-pencil.svg b/packages/icons/icons/file-pencil.svg new file mode 100644 index 000000000..202c14b43 --- /dev/null +++ b/packages/icons/icons/file-pencil.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-percent.svg b/packages/icons/icons/file-percent.svg new file mode 100644 index 000000000..d38a1938a --- /dev/null +++ b/packages/icons/icons/file-percent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-phone.svg b/packages/icons/icons/file-phone.svg new file mode 100644 index 000000000..24156c01f --- /dev/null +++ b/packages/icons/icons/file-phone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-plus.svg b/packages/icons/icons/file-plus.svg new file mode 100644 index 000000000..4e100f39b --- /dev/null +++ b/packages/icons/icons/file-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-power.svg b/packages/icons/icons/file-power.svg new file mode 100644 index 000000000..305571458 --- /dev/null +++ b/packages/icons/icons/file-power.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-report.svg b/packages/icons/icons/file-report.svg new file mode 100644 index 000000000..76bb0737a --- /dev/null +++ b/packages/icons/icons/file-report.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-rss.svg b/packages/icons/icons/file-rss.svg new file mode 100644 index 000000000..3011c6eee --- /dev/null +++ b/packages/icons/icons/file-rss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-scissors.svg b/packages/icons/icons/file-scissors.svg new file mode 100644 index 000000000..e131e479b --- /dev/null +++ b/packages/icons/icons/file-scissors.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-search.svg b/packages/icons/icons/file-search.svg new file mode 100644 index 000000000..a05efb5ff --- /dev/null +++ b/packages/icons/icons/file-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-settings.svg b/packages/icons/icons/file-settings.svg new file mode 100644 index 000000000..fff10f1cf --- /dev/null +++ b/packages/icons/icons/file-settings.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-shredder.svg b/packages/icons/icons/file-shredder.svg new file mode 100644 index 000000000..2c50233df --- /dev/null +++ b/packages/icons/icons/file-shredder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-signal.svg b/packages/icons/icons/file-signal.svg new file mode 100644 index 000000000..ef1a8895d --- /dev/null +++ b/packages/icons/icons/file-signal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-spreadsheet.svg b/packages/icons/icons/file-spreadsheet.svg new file mode 100644 index 000000000..335b0847e --- /dev/null +++ b/packages/icons/icons/file-spreadsheet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-stack.svg b/packages/icons/icons/file-stack.svg new file mode 100644 index 000000000..933b93111 --- /dev/null +++ b/packages/icons/icons/file-stack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-star.svg b/packages/icons/icons/file-star.svg new file mode 100644 index 000000000..ab79e5bae --- /dev/null +++ b/packages/icons/icons/file-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-symlink.svg b/packages/icons/icons/file-symlink.svg new file mode 100644 index 000000000..dca5265ce --- /dev/null +++ b/packages/icons/icons/file-symlink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-text.svg b/packages/icons/icons/file-text.svg new file mode 100644 index 000000000..1539d7c51 --- /dev/null +++ b/packages/icons/icons/file-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-time.svg b/packages/icons/icons/file-time.svg new file mode 100644 index 000000000..9510b1c11 --- /dev/null +++ b/packages/icons/icons/file-time.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-typography.svg b/packages/icons/icons/file-typography.svg new file mode 100644 index 000000000..bd91a940f --- /dev/null +++ b/packages/icons/icons/file-typography.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-unknown.svg b/packages/icons/icons/file-unknown.svg new file mode 100644 index 000000000..64f60c0a3 --- /dev/null +++ b/packages/icons/icons/file-unknown.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-upload.svg b/packages/icons/icons/file-upload.svg new file mode 100644 index 000000000..457463beb --- /dev/null +++ b/packages/icons/icons/file-upload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-vector.svg b/packages/icons/icons/file-vector.svg new file mode 100644 index 000000000..f76040db8 --- /dev/null +++ b/packages/icons/icons/file-vector.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-x.svg b/packages/icons/icons/file-x.svg new file mode 100644 index 000000000..3c59bac38 --- /dev/null +++ b/packages/icons/icons/file-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file-zip.svg b/packages/icons/icons/file-zip.svg new file mode 100644 index 000000000..f6173e338 --- /dev/null +++ b/packages/icons/icons/file-zip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/file.svg b/packages/icons/icons/file.svg new file mode 100644 index 000000000..1549672e3 --- /dev/null +++ b/packages/icons/icons/file.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/files-off.svg b/packages/icons/icons/files-off.svg new file mode 100644 index 000000000..e17d7fc69 --- /dev/null +++ b/packages/icons/icons/files-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/files.svg b/packages/icons/icons/files.svg new file mode 100644 index 000000000..0f67939fd --- /dev/null +++ b/packages/icons/icons/files.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/filter-off.svg b/packages/icons/icons/filter-off.svg new file mode 100644 index 000000000..c7035e6a3 --- /dev/null +++ b/packages/icons/icons/filter-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/filter.svg b/packages/icons/icons/filter.svg new file mode 100644 index 000000000..d77eec544 --- /dev/null +++ b/packages/icons/icons/filter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fingerprint-off.svg b/packages/icons/icons/fingerprint-off.svg new file mode 100644 index 000000000..cec2c07dd --- /dev/null +++ b/packages/icons/icons/fingerprint-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fingerprint.svg b/packages/icons/icons/fingerprint.svg new file mode 100644 index 000000000..26ca313fd --- /dev/null +++ b/packages/icons/icons/fingerprint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fire-hydrant-off.svg b/packages/icons/icons/fire-hydrant-off.svg new file mode 100644 index 000000000..a14a53c86 --- /dev/null +++ b/packages/icons/icons/fire-hydrant-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fire-hydrant.svg b/packages/icons/icons/fire-hydrant.svg new file mode 100644 index 000000000..b3fb05f80 --- /dev/null +++ b/packages/icons/icons/fire-hydrant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/firetruck.svg b/packages/icons/icons/firetruck.svg new file mode 100644 index 000000000..574d5d529 --- /dev/null +++ b/packages/icons/icons/firetruck.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/first-aid-kit-off.svg b/packages/icons/icons/first-aid-kit-off.svg new file mode 100644 index 000000000..96218460b --- /dev/null +++ b/packages/icons/icons/first-aid-kit-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/first-aid-kit.svg b/packages/icons/icons/first-aid-kit.svg new file mode 100644 index 000000000..4933b2e6f --- /dev/null +++ b/packages/icons/icons/first-aid-kit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish-bone.svg b/packages/icons/icons/fish-bone.svg new file mode 100644 index 000000000..896cfe538 --- /dev/null +++ b/packages/icons/icons/fish-bone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish-christianity.svg b/packages/icons/icons/fish-christianity.svg new file mode 100644 index 000000000..7c0b465c9 --- /dev/null +++ b/packages/icons/icons/fish-christianity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish-hook-off.svg b/packages/icons/icons/fish-hook-off.svg new file mode 100644 index 000000000..bb184f512 --- /dev/null +++ b/packages/icons/icons/fish-hook-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish-hook.svg b/packages/icons/icons/fish-hook.svg new file mode 100644 index 000000000..355ad7ac7 --- /dev/null +++ b/packages/icons/icons/fish-hook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish-off.svg b/packages/icons/icons/fish-off.svg new file mode 100644 index 000000000..5b73ea9b6 --- /dev/null +++ b/packages/icons/icons/fish-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fish.svg b/packages/icons/icons/fish.svg new file mode 100644 index 000000000..81982237b --- /dev/null +++ b/packages/icons/icons/fish.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flag-2-off.svg b/packages/icons/icons/flag-2-off.svg new file mode 100644 index 000000000..f49a074a0 --- /dev/null +++ b/packages/icons/icons/flag-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flag-2.svg b/packages/icons/icons/flag-2.svg new file mode 100644 index 000000000..f8e8d3db8 --- /dev/null +++ b/packages/icons/icons/flag-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flag-3.svg b/packages/icons/icons/flag-3.svg new file mode 100644 index 000000000..e845ac5c1 --- /dev/null +++ b/packages/icons/icons/flag-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flag-off.svg b/packages/icons/icons/flag-off.svg new file mode 100644 index 000000000..3ed7ae708 --- /dev/null +++ b/packages/icons/icons/flag-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flag.svg b/packages/icons/icons/flag.svg new file mode 100644 index 000000000..3a58655fe --- /dev/null +++ b/packages/icons/icons/flag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flame-off.svg b/packages/icons/icons/flame-off.svg new file mode 100644 index 000000000..32f6460ff --- /dev/null +++ b/packages/icons/icons/flame-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flame.svg b/packages/icons/icons/flame.svg new file mode 100644 index 000000000..3842bd1f6 --- /dev/null +++ b/packages/icons/icons/flame.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flare.svg b/packages/icons/icons/flare.svg new file mode 100644 index 000000000..97fb553e8 --- /dev/null +++ b/packages/icons/icons/flare.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flask-2-off.svg b/packages/icons/icons/flask-2-off.svg new file mode 100644 index 000000000..83bf67aac --- /dev/null +++ b/packages/icons/icons/flask-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flask-2.svg b/packages/icons/icons/flask-2.svg new file mode 100644 index 000000000..46a7a80ac --- /dev/null +++ b/packages/icons/icons/flask-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flask-off.svg b/packages/icons/icons/flask-off.svg new file mode 100644 index 000000000..9f6b9ae32 --- /dev/null +++ b/packages/icons/icons/flask-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flask.svg b/packages/icons/icons/flask.svg new file mode 100644 index 000000000..4bd9cd816 --- /dev/null +++ b/packages/icons/icons/flask.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flip-flops.svg b/packages/icons/icons/flip-flops.svg new file mode 100644 index 000000000..2caefc3cc --- /dev/null +++ b/packages/icons/icons/flip-flops.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flip-horizontal.svg b/packages/icons/icons/flip-horizontal.svg new file mode 100644 index 000000000..b438f4208 --- /dev/null +++ b/packages/icons/icons/flip-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flip-vertical.svg b/packages/icons/icons/flip-vertical.svg new file mode 100644 index 000000000..aa1d61ef1 --- /dev/null +++ b/packages/icons/icons/flip-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/float-center.svg b/packages/icons/icons/float-center.svg new file mode 100644 index 000000000..99228e7a0 --- /dev/null +++ b/packages/icons/icons/float-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/float-left.svg b/packages/icons/icons/float-left.svg new file mode 100644 index 000000000..55a2103f6 --- /dev/null +++ b/packages/icons/icons/float-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/float-none.svg b/packages/icons/icons/float-none.svg new file mode 100644 index 000000000..4047ae6fd --- /dev/null +++ b/packages/icons/icons/float-none.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/float-right.svg b/packages/icons/icons/float-right.svg new file mode 100644 index 000000000..519d234cc --- /dev/null +++ b/packages/icons/icons/float-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flower-off.svg b/packages/icons/icons/flower-off.svg new file mode 100644 index 000000000..27f4be3bc --- /dev/null +++ b/packages/icons/icons/flower-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/flower.svg b/packages/icons/icons/flower.svg new file mode 100644 index 000000000..9ac64b23f --- /dev/null +++ b/packages/icons/icons/flower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/focus-2.svg b/packages/icons/icons/focus-2.svg new file mode 100644 index 000000000..67b88d563 --- /dev/null +++ b/packages/icons/icons/focus-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/focus-centered.svg b/packages/icons/icons/focus-centered.svg new file mode 100644 index 000000000..7a16a021f --- /dev/null +++ b/packages/icons/icons/focus-centered.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/focus.svg b/packages/icons/icons/focus.svg new file mode 100644 index 000000000..844112668 --- /dev/null +++ b/packages/icons/icons/focus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fold-down.svg b/packages/icons/icons/fold-down.svg new file mode 100644 index 000000000..44fd13f4e --- /dev/null +++ b/packages/icons/icons/fold-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fold-up.svg b/packages/icons/icons/fold-up.svg new file mode 100644 index 000000000..9d7e02134 --- /dev/null +++ b/packages/icons/icons/fold-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fold.svg b/packages/icons/icons/fold.svg new file mode 100644 index 000000000..50eb90999 --- /dev/null +++ b/packages/icons/icons/fold.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folder-minus.svg b/packages/icons/icons/folder-minus.svg new file mode 100644 index 000000000..47f874b21 --- /dev/null +++ b/packages/icons/icons/folder-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folder-off.svg b/packages/icons/icons/folder-off.svg new file mode 100644 index 000000000..373342400 --- /dev/null +++ b/packages/icons/icons/folder-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folder-plus.svg b/packages/icons/icons/folder-plus.svg new file mode 100644 index 000000000..6f88eb239 --- /dev/null +++ b/packages/icons/icons/folder-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folder-x.svg b/packages/icons/icons/folder-x.svg new file mode 100644 index 000000000..a79dc4f70 --- /dev/null +++ b/packages/icons/icons/folder-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folder.svg b/packages/icons/icons/folder.svg new file mode 100644 index 000000000..f662c4787 --- /dev/null +++ b/packages/icons/icons/folder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folders-off.svg b/packages/icons/icons/folders-off.svg new file mode 100644 index 000000000..f1790a72f --- /dev/null +++ b/packages/icons/icons/folders-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/folders.svg b/packages/icons/icons/folders.svg new file mode 100644 index 000000000..2c58875e9 --- /dev/null +++ b/packages/icons/icons/folders.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/forbid-2.svg b/packages/icons/icons/forbid-2.svg new file mode 100644 index 000000000..6bcb7281f --- /dev/null +++ b/packages/icons/icons/forbid-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/forbid.svg b/packages/icons/icons/forbid.svg new file mode 100644 index 000000000..47729e971 --- /dev/null +++ b/packages/icons/icons/forbid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/forklift.svg b/packages/icons/icons/forklift.svg new file mode 100644 index 000000000..8322c7456 --- /dev/null +++ b/packages/icons/icons/forklift.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/forms.svg b/packages/icons/icons/forms.svg new file mode 100644 index 000000000..c47f32823 --- /dev/null +++ b/packages/icons/icons/forms.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fountain-off.svg b/packages/icons/icons/fountain-off.svg new file mode 100644 index 000000000..d36b1c418 --- /dev/null +++ b/packages/icons/icons/fountain-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fountain.svg b/packages/icons/icons/fountain.svg new file mode 100644 index 000000000..07d99bda1 --- /dev/null +++ b/packages/icons/icons/fountain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/frame-off.svg b/packages/icons/icons/frame-off.svg new file mode 100644 index 000000000..c2a537d5d --- /dev/null +++ b/packages/icons/icons/frame-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/frame.svg b/packages/icons/icons/frame.svg new file mode 100644 index 000000000..9967e3bdf --- /dev/null +++ b/packages/icons/icons/frame.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/free-rights.svg b/packages/icons/icons/free-rights.svg new file mode 100644 index 000000000..6e07f0ab9 --- /dev/null +++ b/packages/icons/icons/free-rights.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fridge-off.svg b/packages/icons/icons/fridge-off.svg new file mode 100644 index 000000000..8cb079116 --- /dev/null +++ b/packages/icons/icons/fridge-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/fridge.svg b/packages/icons/icons/fridge.svg new file mode 100644 index 000000000..a117789a5 --- /dev/null +++ b/packages/icons/icons/fridge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/friends-off.svg b/packages/icons/icons/friends-off.svg new file mode 100644 index 000000000..de991ff89 --- /dev/null +++ b/packages/icons/icons/friends-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/friends.svg b/packages/icons/icons/friends.svg new file mode 100644 index 000000000..dae2f0ac5 --- /dev/null +++ b/packages/icons/icons/friends.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/function-off.svg b/packages/icons/icons/function-off.svg new file mode 100644 index 000000000..5487e413e --- /dev/null +++ b/packages/icons/icons/function-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/function.svg b/packages/icons/icons/function.svg new file mode 100644 index 000000000..ad52cf7a3 --- /dev/null +++ b/packages/icons/icons/function.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/garden-cart-off.svg b/packages/icons/icons/garden-cart-off.svg new file mode 100644 index 000000000..b9df049e7 --- /dev/null +++ b/packages/icons/icons/garden-cart-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/garden-cart.svg b/packages/icons/icons/garden-cart.svg new file mode 100644 index 000000000..5bb202f29 --- /dev/null +++ b/packages/icons/icons/garden-cart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gas-station-off.svg b/packages/icons/icons/gas-station-off.svg new file mode 100644 index 000000000..1a905a1cc --- /dev/null +++ b/packages/icons/icons/gas-station-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gas-station.svg b/packages/icons/icons/gas-station.svg new file mode 100644 index 000000000..1d65f98a5 --- /dev/null +++ b/packages/icons/icons/gas-station.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gauge-off.svg b/packages/icons/icons/gauge-off.svg new file mode 100644 index 000000000..ee8082133 --- /dev/null +++ b/packages/icons/icons/gauge-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gauge.svg b/packages/icons/icons/gauge.svg new file mode 100644 index 000000000..81cfaa92c --- /dev/null +++ b/packages/icons/icons/gauge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gavel.svg b/packages/icons/icons/gavel.svg new file mode 100644 index 000000000..f148c171b --- /dev/null +++ b/packages/icons/icons/gavel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-agender.svg b/packages/icons/icons/gender-agender.svg new file mode 100644 index 000000000..2ee144320 --- /dev/null +++ b/packages/icons/icons/gender-agender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-androgyne.svg b/packages/icons/icons/gender-androgyne.svg new file mode 100644 index 000000000..28c2ca8ac --- /dev/null +++ b/packages/icons/icons/gender-androgyne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-bigender.svg b/packages/icons/icons/gender-bigender.svg new file mode 100644 index 000000000..71fb5adf5 --- /dev/null +++ b/packages/icons/icons/gender-bigender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-demiboy.svg b/packages/icons/icons/gender-demiboy.svg new file mode 100644 index 000000000..30ef68efb --- /dev/null +++ b/packages/icons/icons/gender-demiboy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-demigirl.svg b/packages/icons/icons/gender-demigirl.svg new file mode 100644 index 000000000..74e28e9f3 --- /dev/null +++ b/packages/icons/icons/gender-demigirl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-epicene.svg b/packages/icons/icons/gender-epicene.svg new file mode 100644 index 000000000..70cb89c76 --- /dev/null +++ b/packages/icons/icons/gender-epicene.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-female.svg b/packages/icons/icons/gender-female.svg new file mode 100644 index 000000000..2d64a4752 --- /dev/null +++ b/packages/icons/icons/gender-female.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-femme.svg b/packages/icons/icons/gender-femme.svg new file mode 100644 index 000000000..99ba3be2c --- /dev/null +++ b/packages/icons/icons/gender-femme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-genderfluid.svg b/packages/icons/icons/gender-genderfluid.svg new file mode 100644 index 000000000..bb1ed1ac7 --- /dev/null +++ b/packages/icons/icons/gender-genderfluid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-genderless.svg b/packages/icons/icons/gender-genderless.svg new file mode 100644 index 000000000..42ce11689 --- /dev/null +++ b/packages/icons/icons/gender-genderless.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-genderqueer.svg b/packages/icons/icons/gender-genderqueer.svg new file mode 100644 index 000000000..add463751 --- /dev/null +++ b/packages/icons/icons/gender-genderqueer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-hermaphrodite.svg b/packages/icons/icons/gender-hermaphrodite.svg new file mode 100644 index 000000000..0ca2f471c --- /dev/null +++ b/packages/icons/icons/gender-hermaphrodite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-intergender.svg b/packages/icons/icons/gender-intergender.svg new file mode 100644 index 000000000..509026ef9 --- /dev/null +++ b/packages/icons/icons/gender-intergender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-male.svg b/packages/icons/icons/gender-male.svg new file mode 100644 index 000000000..c9781576d --- /dev/null +++ b/packages/icons/icons/gender-male.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-neutrois.svg b/packages/icons/icons/gender-neutrois.svg new file mode 100644 index 000000000..2d3573f23 --- /dev/null +++ b/packages/icons/icons/gender-neutrois.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-third.svg b/packages/icons/icons/gender-third.svg new file mode 100644 index 000000000..fb86ed44d --- /dev/null +++ b/packages/icons/icons/gender-third.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-transgender.svg b/packages/icons/icons/gender-transgender.svg new file mode 100644 index 000000000..4992d224e --- /dev/null +++ b/packages/icons/icons/gender-transgender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gender-trasvesti.svg b/packages/icons/icons/gender-trasvesti.svg new file mode 100644 index 000000000..98d7ce9d0 --- /dev/null +++ b/packages/icons/icons/gender-trasvesti.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/geometry.svg b/packages/icons/icons/geometry.svg new file mode 100644 index 000000000..fbc794be8 --- /dev/null +++ b/packages/icons/icons/geometry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ghost-2.svg b/packages/icons/icons/ghost-2.svg new file mode 100644 index 000000000..e51c45d6f --- /dev/null +++ b/packages/icons/icons/ghost-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ghost-off.svg b/packages/icons/icons/ghost-off.svg new file mode 100644 index 000000000..692552621 --- /dev/null +++ b/packages/icons/icons/ghost-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ghost.svg b/packages/icons/icons/ghost.svg new file mode 100644 index 000000000..092676955 --- /dev/null +++ b/packages/icons/icons/ghost.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gif.svg b/packages/icons/icons/gif.svg new file mode 100644 index 000000000..c29e379f2 --- /dev/null +++ b/packages/icons/icons/gif.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gift-card.svg b/packages/icons/icons/gift-card.svg new file mode 100644 index 000000000..5d0b98f89 --- /dev/null +++ b/packages/icons/icons/gift-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gift-off.svg b/packages/icons/icons/gift-off.svg new file mode 100644 index 000000000..1a4fb8ec3 --- /dev/null +++ b/packages/icons/icons/gift-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gift.svg b/packages/icons/icons/gift.svg new file mode 100644 index 000000000..43109194d --- /dev/null +++ b/packages/icons/icons/gift.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-branch-deleted.svg b/packages/icons/icons/git-branch-deleted.svg new file mode 100644 index 000000000..2176bd288 --- /dev/null +++ b/packages/icons/icons/git-branch-deleted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-branch.svg b/packages/icons/icons/git-branch.svg new file mode 100644 index 000000000..0822c3667 --- /dev/null +++ b/packages/icons/icons/git-branch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-cherry-pick.svg b/packages/icons/icons/git-cherry-pick.svg new file mode 100644 index 000000000..e0f06c22b --- /dev/null +++ b/packages/icons/icons/git-cherry-pick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-commit.svg b/packages/icons/icons/git-commit.svg new file mode 100644 index 000000000..a7a20ad5c --- /dev/null +++ b/packages/icons/icons/git-commit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-compare.svg b/packages/icons/icons/git-compare.svg new file mode 100644 index 000000000..832384e48 --- /dev/null +++ b/packages/icons/icons/git-compare.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-fork.svg b/packages/icons/icons/git-fork.svg new file mode 100644 index 000000000..393b7c928 --- /dev/null +++ b/packages/icons/icons/git-fork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-merge.svg b/packages/icons/icons/git-merge.svg new file mode 100644 index 000000000..8014c1645 --- /dev/null +++ b/packages/icons/icons/git-merge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-pull-request-closed.svg b/packages/icons/icons/git-pull-request-closed.svg new file mode 100644 index 000000000..ae6201295 --- /dev/null +++ b/packages/icons/icons/git-pull-request-closed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-pull-request-draft.svg b/packages/icons/icons/git-pull-request-draft.svg new file mode 100644 index 000000000..9eed64c60 --- /dev/null +++ b/packages/icons/icons/git-pull-request-draft.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/git-pull-request.svg b/packages/icons/icons/git-pull-request.svg new file mode 100644 index 000000000..95c871b69 --- /dev/null +++ b/packages/icons/icons/git-pull-request.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gizmo.svg b/packages/icons/icons/gizmo.svg new file mode 100644 index 000000000..0c0038ad8 --- /dev/null +++ b/packages/icons/icons/gizmo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/glass-full.svg b/packages/icons/icons/glass-full.svg new file mode 100644 index 000000000..560ce479a --- /dev/null +++ b/packages/icons/icons/glass-full.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/glass-off.svg b/packages/icons/icons/glass-off.svg new file mode 100644 index 000000000..360c597d7 --- /dev/null +++ b/packages/icons/icons/glass-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/glass.svg b/packages/icons/icons/glass.svg new file mode 100644 index 000000000..25c829bdc --- /dev/null +++ b/packages/icons/icons/glass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/globe-off.svg b/packages/icons/icons/globe-off.svg new file mode 100644 index 000000000..d1e7be530 --- /dev/null +++ b/packages/icons/icons/globe-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/globe.svg b/packages/icons/icons/globe.svg new file mode 100644 index 000000000..3b8cc5398 --- /dev/null +++ b/packages/icons/icons/globe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/go-game.svg b/packages/icons/icons/go-game.svg new file mode 100644 index 000000000..f7eb955be --- /dev/null +++ b/packages/icons/icons/go-game.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/golf-off.svg b/packages/icons/icons/golf-off.svg new file mode 100644 index 000000000..7abd360ba --- /dev/null +++ b/packages/icons/icons/golf-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/golf.svg b/packages/icons/icons/golf.svg new file mode 100644 index 000000000..98dcda1dc --- /dev/null +++ b/packages/icons/icons/golf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gps.svg b/packages/icons/icons/gps.svg new file mode 100644 index 000000000..42a81ac67 --- /dev/null +++ b/packages/icons/icons/gps.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/gradienter.svg b/packages/icons/icons/gradienter.svg new file mode 100644 index 000000000..d767f0398 --- /dev/null +++ b/packages/icons/icons/gradienter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grain.svg b/packages/icons/icons/grain.svg new file mode 100644 index 000000000..8fb06fe7d --- /dev/null +++ b/packages/icons/icons/grain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/graph-off.svg b/packages/icons/icons/graph-off.svg new file mode 100644 index 000000000..8ddaeeb68 --- /dev/null +++ b/packages/icons/icons/graph-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/graph.svg b/packages/icons/icons/graph.svg new file mode 100644 index 000000000..d44294f53 --- /dev/null +++ b/packages/icons/icons/graph.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grave-2.svg b/packages/icons/icons/grave-2.svg new file mode 100644 index 000000000..6eec73240 --- /dev/null +++ b/packages/icons/icons/grave-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grave.svg b/packages/icons/icons/grave.svg new file mode 100644 index 000000000..1f296990e --- /dev/null +++ b/packages/icons/icons/grave.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grid-dots.svg b/packages/icons/icons/grid-dots.svg new file mode 100644 index 000000000..5729196f6 --- /dev/null +++ b/packages/icons/icons/grid-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grid-pattern.svg b/packages/icons/icons/grid-pattern.svg new file mode 100644 index 000000000..e4bd23cc6 --- /dev/null +++ b/packages/icons/icons/grid-pattern.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grill-fork.svg b/packages/icons/icons/grill-fork.svg new file mode 100644 index 000000000..09fce2a5a --- /dev/null +++ b/packages/icons/icons/grill-fork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grill-off.svg b/packages/icons/icons/grill-off.svg new file mode 100644 index 000000000..f0a1086d3 --- /dev/null +++ b/packages/icons/icons/grill-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grill-spatula.svg b/packages/icons/icons/grill-spatula.svg new file mode 100644 index 000000000..cb8ad3e6c --- /dev/null +++ b/packages/icons/icons/grill-spatula.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grill.svg b/packages/icons/icons/grill.svg new file mode 100644 index 000000000..f14825208 --- /dev/null +++ b/packages/icons/icons/grill.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grip-horizontal.svg b/packages/icons/icons/grip-horizontal.svg new file mode 100644 index 000000000..83f18b72c --- /dev/null +++ b/packages/icons/icons/grip-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/grip-vertical.svg b/packages/icons/icons/grip-vertical.svg new file mode 100644 index 000000000..19ba60f11 --- /dev/null +++ b/packages/icons/icons/grip-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/growth.svg b/packages/icons/icons/growth.svg new file mode 100644 index 000000000..30e17f217 --- /dev/null +++ b/packages/icons/icons/growth.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/guitar-pick.svg b/packages/icons/icons/guitar-pick.svg new file mode 100644 index 000000000..c31e8534a --- /dev/null +++ b/packages/icons/icons/guitar-pick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-1.svg b/packages/icons/icons/h-1.svg new file mode 100644 index 000000000..3c685bac0 --- /dev/null +++ b/packages/icons/icons/h-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-2.svg b/packages/icons/icons/h-2.svg new file mode 100644 index 000000000..2424c397c --- /dev/null +++ b/packages/icons/icons/h-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-3.svg b/packages/icons/icons/h-3.svg new file mode 100644 index 000000000..2b641ffd1 --- /dev/null +++ b/packages/icons/icons/h-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-4.svg b/packages/icons/icons/h-4.svg new file mode 100644 index 000000000..b09632dff --- /dev/null +++ b/packages/icons/icons/h-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-5.svg b/packages/icons/icons/h-5.svg new file mode 100644 index 000000000..5cddfc1a6 --- /dev/null +++ b/packages/icons/icons/h-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/h-6.svg b/packages/icons/icons/h-6.svg new file mode 100644 index 000000000..ed2bc28c0 --- /dev/null +++ b/packages/icons/icons/h-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hammer-off.svg b/packages/icons/icons/hammer-off.svg new file mode 100644 index 000000000..3594053c2 --- /dev/null +++ b/packages/icons/icons/hammer-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hammer.svg b/packages/icons/icons/hammer.svg new file mode 100644 index 000000000..20aeb63af --- /dev/null +++ b/packages/icons/icons/hammer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-click.svg b/packages/icons/icons/hand-click.svg new file mode 100644 index 000000000..aade5867b --- /dev/null +++ b/packages/icons/icons/hand-click.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-finger-off.svg b/packages/icons/icons/hand-finger-off.svg new file mode 100644 index 000000000..c95ab14da --- /dev/null +++ b/packages/icons/icons/hand-finger-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-finger.svg b/packages/icons/icons/hand-finger.svg new file mode 100644 index 000000000..378b2c370 --- /dev/null +++ b/packages/icons/icons/hand-finger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-grab.svg b/packages/icons/icons/hand-grab.svg new file mode 100644 index 000000000..551e99698 --- /dev/null +++ b/packages/icons/icons/hand-grab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-little-finger.svg b/packages/icons/icons/hand-little-finger.svg new file mode 100644 index 000000000..8c046a978 --- /dev/null +++ b/packages/icons/icons/hand-little-finger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-middle-finger.svg b/packages/icons/icons/hand-middle-finger.svg new file mode 100644 index 000000000..242f4f4bc --- /dev/null +++ b/packages/icons/icons/hand-middle-finger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-move.svg b/packages/icons/icons/hand-move.svg new file mode 100644 index 000000000..dbe179fb1 --- /dev/null +++ b/packages/icons/icons/hand-move.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-off.svg b/packages/icons/icons/hand-off.svg new file mode 100644 index 000000000..f4281e46c --- /dev/null +++ b/packages/icons/icons/hand-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-ring-finger.svg b/packages/icons/icons/hand-ring-finger.svg new file mode 100644 index 000000000..94fcada51 --- /dev/null +++ b/packages/icons/icons/hand-ring-finger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-rock.svg b/packages/icons/icons/hand-rock.svg new file mode 100644 index 000000000..eeda47c76 --- /dev/null +++ b/packages/icons/icons/hand-rock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-sanitizer.svg b/packages/icons/icons/hand-sanitizer.svg new file mode 100644 index 000000000..96a7cb74f --- /dev/null +++ b/packages/icons/icons/hand-sanitizer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-stop.svg b/packages/icons/icons/hand-stop.svg new file mode 100644 index 000000000..870abc3c3 --- /dev/null +++ b/packages/icons/icons/hand-stop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-three-fingers.svg b/packages/icons/icons/hand-three-fingers.svg new file mode 100644 index 000000000..5efc3845c --- /dev/null +++ b/packages/icons/icons/hand-three-fingers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hand-two-fingers.svg b/packages/icons/icons/hand-two-fingers.svg new file mode 100644 index 000000000..f842c46ae --- /dev/null +++ b/packages/icons/icons/hand-two-fingers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hanger-2.svg b/packages/icons/icons/hanger-2.svg new file mode 100644 index 000000000..616d469e7 --- /dev/null +++ b/packages/icons/icons/hanger-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hanger-off.svg b/packages/icons/icons/hanger-off.svg new file mode 100644 index 000000000..0a3da2f21 --- /dev/null +++ b/packages/icons/icons/hanger-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hanger.svg b/packages/icons/icons/hanger.svg new file mode 100644 index 000000000..531b8f947 --- /dev/null +++ b/packages/icons/icons/hanger.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hash.svg b/packages/icons/icons/hash.svg new file mode 100644 index 000000000..c212af4d7 --- /dev/null +++ b/packages/icons/icons/hash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/haze.svg b/packages/icons/icons/haze.svg new file mode 100644 index 000000000..26b8ccdb6 --- /dev/null +++ b/packages/icons/icons/haze.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heading-off.svg b/packages/icons/icons/heading-off.svg new file mode 100644 index 000000000..e48da9e96 --- /dev/null +++ b/packages/icons/icons/heading-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heading.svg b/packages/icons/icons/heading.svg new file mode 100644 index 000000000..d0c112e31 --- /dev/null +++ b/packages/icons/icons/heading.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/headphones-off.svg b/packages/icons/icons/headphones-off.svg new file mode 100644 index 000000000..1a7a30684 --- /dev/null +++ b/packages/icons/icons/headphones-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/headphones.svg b/packages/icons/icons/headphones.svg new file mode 100644 index 000000000..9a7cd1c14 --- /dev/null +++ b/packages/icons/icons/headphones.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/headset-off.svg b/packages/icons/icons/headset-off.svg new file mode 100644 index 000000000..d904c09b4 --- /dev/null +++ b/packages/icons/icons/headset-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/headset.svg b/packages/icons/icons/headset.svg new file mode 100644 index 000000000..e3f09fe16 --- /dev/null +++ b/packages/icons/icons/headset.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/health-recognition.svg b/packages/icons/icons/health-recognition.svg new file mode 100644 index 000000000..7506cec64 --- /dev/null +++ b/packages/icons/icons/health-recognition.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-broken.svg b/packages/icons/icons/heart-broken.svg new file mode 100644 index 000000000..38c5a2034 --- /dev/null +++ b/packages/icons/icons/heart-broken.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-handshake.svg b/packages/icons/icons/heart-handshake.svg new file mode 100644 index 000000000..8bcb3da79 --- /dev/null +++ b/packages/icons/icons/heart-handshake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-minus.svg b/packages/icons/icons/heart-minus.svg new file mode 100644 index 000000000..31034b834 --- /dev/null +++ b/packages/icons/icons/heart-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-off.svg b/packages/icons/icons/heart-off.svg new file mode 100644 index 000000000..11982b72a --- /dev/null +++ b/packages/icons/icons/heart-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-plus.svg b/packages/icons/icons/heart-plus.svg new file mode 100644 index 000000000..5e3b2a3d6 --- /dev/null +++ b/packages/icons/icons/heart-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart-rate-monitor.svg b/packages/icons/icons/heart-rate-monitor.svg new file mode 100644 index 000000000..8931a19df --- /dev/null +++ b/packages/icons/icons/heart-rate-monitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heart.svg b/packages/icons/icons/heart.svg new file mode 100644 index 000000000..94c5a8cd8 --- /dev/null +++ b/packages/icons/icons/heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/heartbeat.svg b/packages/icons/icons/heartbeat.svg new file mode 100644 index 000000000..66c862e30 --- /dev/null +++ b/packages/icons/icons/heartbeat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hearts-off.svg b/packages/icons/icons/hearts-off.svg new file mode 100644 index 000000000..b78e38a35 --- /dev/null +++ b/packages/icons/icons/hearts-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hearts.svg b/packages/icons/icons/hearts.svg new file mode 100644 index 000000000..5563fd641 --- /dev/null +++ b/packages/icons/icons/hearts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/helicopter-landing.svg b/packages/icons/icons/helicopter-landing.svg new file mode 100644 index 000000000..afbf2e0dc --- /dev/null +++ b/packages/icons/icons/helicopter-landing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/helicopter.svg b/packages/icons/icons/helicopter.svg new file mode 100644 index 000000000..2283904d5 --- /dev/null +++ b/packages/icons/icons/helicopter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/helmet-off.svg b/packages/icons/icons/helmet-off.svg new file mode 100644 index 000000000..e448c32f7 --- /dev/null +++ b/packages/icons/icons/helmet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/helmet.svg b/packages/icons/icons/helmet.svg new file mode 100644 index 000000000..668cd5c89 --- /dev/null +++ b/packages/icons/icons/helmet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/help-off.svg b/packages/icons/icons/help-off.svg new file mode 100644 index 000000000..0b19253d9 --- /dev/null +++ b/packages/icons/icons/help-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/help.svg b/packages/icons/icons/help.svg new file mode 100644 index 000000000..24057ef0e --- /dev/null +++ b/packages/icons/icons/help.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-3d.svg b/packages/icons/icons/hexagon-3d.svg new file mode 100644 index 000000000..4006c9e6e --- /dev/null +++ b/packages/icons/icons/hexagon-3d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-a.svg b/packages/icons/icons/hexagon-letter-a.svg new file mode 100644 index 000000000..9f3f3afd1 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-b.svg b/packages/icons/icons/hexagon-letter-b.svg new file mode 100644 index 000000000..d78bc86d0 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-c.svg b/packages/icons/icons/hexagon-letter-c.svg new file mode 100644 index 000000000..f70aa86ec --- /dev/null +++ b/packages/icons/icons/hexagon-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-d.svg b/packages/icons/icons/hexagon-letter-d.svg new file mode 100644 index 000000000..8be60f4db --- /dev/null +++ b/packages/icons/icons/hexagon-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-e.svg b/packages/icons/icons/hexagon-letter-e.svg new file mode 100644 index 000000000..8f450e4ae --- /dev/null +++ b/packages/icons/icons/hexagon-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-f.svg b/packages/icons/icons/hexagon-letter-f.svg new file mode 100644 index 000000000..c5e6b1ba9 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-g.svg b/packages/icons/icons/hexagon-letter-g.svg new file mode 100644 index 000000000..1489b8f60 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-h.svg b/packages/icons/icons/hexagon-letter-h.svg new file mode 100644 index 000000000..159fcc3d7 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-i.svg b/packages/icons/icons/hexagon-letter-i.svg new file mode 100644 index 000000000..195404baa --- /dev/null +++ b/packages/icons/icons/hexagon-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-j.svg b/packages/icons/icons/hexagon-letter-j.svg new file mode 100644 index 000000000..f1654ba6e --- /dev/null +++ b/packages/icons/icons/hexagon-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-k.svg b/packages/icons/icons/hexagon-letter-k.svg new file mode 100644 index 000000000..a292c87e5 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-l.svg b/packages/icons/icons/hexagon-letter-l.svg new file mode 100644 index 000000000..d9e964b11 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-m.svg b/packages/icons/icons/hexagon-letter-m.svg new file mode 100644 index 000000000..aefc63956 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-n.svg b/packages/icons/icons/hexagon-letter-n.svg new file mode 100644 index 000000000..2d19e1d1e --- /dev/null +++ b/packages/icons/icons/hexagon-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-o.svg b/packages/icons/icons/hexagon-letter-o.svg new file mode 100644 index 000000000..4e319d1e4 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-p.svg b/packages/icons/icons/hexagon-letter-p.svg new file mode 100644 index 000000000..24662bfa8 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-q.svg b/packages/icons/icons/hexagon-letter-q.svg new file mode 100644 index 000000000..2326cf8f1 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-r.svg b/packages/icons/icons/hexagon-letter-r.svg new file mode 100644 index 000000000..210a4f003 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-s.svg b/packages/icons/icons/hexagon-letter-s.svg new file mode 100644 index 000000000..6c841454a --- /dev/null +++ b/packages/icons/icons/hexagon-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-t.svg b/packages/icons/icons/hexagon-letter-t.svg new file mode 100644 index 000000000..6eeb3b497 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-u.svg b/packages/icons/icons/hexagon-letter-u.svg new file mode 100644 index 000000000..e0ab4381e --- /dev/null +++ b/packages/icons/icons/hexagon-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-v.svg b/packages/icons/icons/hexagon-letter-v.svg new file mode 100644 index 000000000..e16891388 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-w.svg b/packages/icons/icons/hexagon-letter-w.svg new file mode 100644 index 000000000..960b905af --- /dev/null +++ b/packages/icons/icons/hexagon-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-x.svg b/packages/icons/icons/hexagon-letter-x.svg new file mode 100644 index 000000000..da5b7aaef --- /dev/null +++ b/packages/icons/icons/hexagon-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-y.svg b/packages/icons/icons/hexagon-letter-y.svg new file mode 100644 index 000000000..8290d04c0 --- /dev/null +++ b/packages/icons/icons/hexagon-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-letter-z.svg b/packages/icons/icons/hexagon-letter-z.svg new file mode 100644 index 000000000..cfb15055d --- /dev/null +++ b/packages/icons/icons/hexagon-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-0.svg b/packages/icons/icons/hexagon-number-0.svg new file mode 100644 index 000000000..a6084b637 --- /dev/null +++ b/packages/icons/icons/hexagon-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-1.svg b/packages/icons/icons/hexagon-number-1.svg new file mode 100644 index 000000000..46ba852d6 --- /dev/null +++ b/packages/icons/icons/hexagon-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-2.svg b/packages/icons/icons/hexagon-number-2.svg new file mode 100644 index 000000000..c31484bd5 --- /dev/null +++ b/packages/icons/icons/hexagon-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-3.svg b/packages/icons/icons/hexagon-number-3.svg new file mode 100644 index 000000000..f3b4870e2 --- /dev/null +++ b/packages/icons/icons/hexagon-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-4.svg b/packages/icons/icons/hexagon-number-4.svg new file mode 100644 index 000000000..80d47fd3b --- /dev/null +++ b/packages/icons/icons/hexagon-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-5.svg b/packages/icons/icons/hexagon-number-5.svg new file mode 100644 index 000000000..bac3d3c6e --- /dev/null +++ b/packages/icons/icons/hexagon-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-6.svg b/packages/icons/icons/hexagon-number-6.svg new file mode 100644 index 000000000..58e379458 --- /dev/null +++ b/packages/icons/icons/hexagon-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-7.svg b/packages/icons/icons/hexagon-number-7.svg new file mode 100644 index 000000000..d58b2eb3b --- /dev/null +++ b/packages/icons/icons/hexagon-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-8.svg b/packages/icons/icons/hexagon-number-8.svg new file mode 100644 index 000000000..812f43082 --- /dev/null +++ b/packages/icons/icons/hexagon-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-number-9.svg b/packages/icons/icons/hexagon-number-9.svg new file mode 100644 index 000000000..54a3a3ac7 --- /dev/null +++ b/packages/icons/icons/hexagon-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon-off.svg b/packages/icons/icons/hexagon-off.svg new file mode 100644 index 000000000..7e8a4868b --- /dev/null +++ b/packages/icons/icons/hexagon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagon.svg b/packages/icons/icons/hexagon.svg new file mode 100644 index 000000000..66e802036 --- /dev/null +++ b/packages/icons/icons/hexagon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagons-off.svg b/packages/icons/icons/hexagons-off.svg new file mode 100644 index 000000000..5f21b6538 --- /dev/null +++ b/packages/icons/icons/hexagons-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hexagons.svg b/packages/icons/icons/hexagons.svg new file mode 100644 index 000000000..9f066e2a5 --- /dev/null +++ b/packages/icons/icons/hexagons.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hierarchy-2.svg b/packages/icons/icons/hierarchy-2.svg new file mode 100644 index 000000000..ecf354328 --- /dev/null +++ b/packages/icons/icons/hierarchy-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hierarchy-3.svg b/packages/icons/icons/hierarchy-3.svg new file mode 100644 index 000000000..d17357ade --- /dev/null +++ b/packages/icons/icons/hierarchy-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hierarchy-off.svg b/packages/icons/icons/hierarchy-off.svg new file mode 100644 index 000000000..815b42bb2 --- /dev/null +++ b/packages/icons/icons/hierarchy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hierarchy.svg b/packages/icons/icons/hierarchy.svg new file mode 100644 index 000000000..a6fffc5bd --- /dev/null +++ b/packages/icons/icons/hierarchy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/highlight-off.svg b/packages/icons/icons/highlight-off.svg new file mode 100644 index 000000000..e7c286f79 --- /dev/null +++ b/packages/icons/icons/highlight-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/highlight.svg b/packages/icons/icons/highlight.svg new file mode 100644 index 000000000..44599f5ce --- /dev/null +++ b/packages/icons/icons/highlight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/history-off.svg b/packages/icons/icons/history-off.svg new file mode 100644 index 000000000..79529ce37 --- /dev/null +++ b/packages/icons/icons/history-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/history-toggle.svg b/packages/icons/icons/history-toggle.svg new file mode 100644 index 000000000..35202f3b7 --- /dev/null +++ b/packages/icons/icons/history-toggle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/history.svg b/packages/icons/icons/history.svg new file mode 100644 index 000000000..2266146b6 --- /dev/null +++ b/packages/icons/icons/history.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-2.svg b/packages/icons/icons/home-2.svg new file mode 100644 index 000000000..171934ad2 --- /dev/null +++ b/packages/icons/icons/home-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-bolt.svg b/packages/icons/icons/home-bolt.svg new file mode 100644 index 000000000..81b493c50 --- /dev/null +++ b/packages/icons/icons/home-bolt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-cancel.svg b/packages/icons/icons/home-cancel.svg new file mode 100644 index 000000000..4a5701aba --- /dev/null +++ b/packages/icons/icons/home-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-check.svg b/packages/icons/icons/home-check.svg new file mode 100644 index 000000000..3b9fb9e3d --- /dev/null +++ b/packages/icons/icons/home-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-cog.svg b/packages/icons/icons/home-cog.svg new file mode 100644 index 000000000..c457e1eeb --- /dev/null +++ b/packages/icons/icons/home-cog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-dollar.svg b/packages/icons/icons/home-dollar.svg new file mode 100644 index 000000000..5d48271d5 --- /dev/null +++ b/packages/icons/icons/home-dollar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-dot.svg b/packages/icons/icons/home-dot.svg new file mode 100644 index 000000000..0a87893b1 --- /dev/null +++ b/packages/icons/icons/home-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-down.svg b/packages/icons/icons/home-down.svg new file mode 100644 index 000000000..1abf790a9 --- /dev/null +++ b/packages/icons/icons/home-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-eco.svg b/packages/icons/icons/home-eco.svg new file mode 100644 index 000000000..6f64e5b4d --- /dev/null +++ b/packages/icons/icons/home-eco.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-edit.svg b/packages/icons/icons/home-edit.svg new file mode 100644 index 000000000..ca04810ce --- /dev/null +++ b/packages/icons/icons/home-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-exclamation.svg b/packages/icons/icons/home-exclamation.svg new file mode 100644 index 000000000..7ed6460a8 --- /dev/null +++ b/packages/icons/icons/home-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-hand.svg b/packages/icons/icons/home-hand.svg new file mode 100644 index 000000000..551402fd4 --- /dev/null +++ b/packages/icons/icons/home-hand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-heart.svg b/packages/icons/icons/home-heart.svg new file mode 100644 index 000000000..5d66c3538 --- /dev/null +++ b/packages/icons/icons/home-heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-infinity.svg b/packages/icons/icons/home-infinity.svg new file mode 100644 index 000000000..45feab47d --- /dev/null +++ b/packages/icons/icons/home-infinity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-link.svg b/packages/icons/icons/home-link.svg new file mode 100644 index 000000000..0ae4c7076 --- /dev/null +++ b/packages/icons/icons/home-link.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-minus.svg b/packages/icons/icons/home-minus.svg new file mode 100644 index 000000000..cbd0c9ba0 --- /dev/null +++ b/packages/icons/icons/home-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-move.svg b/packages/icons/icons/home-move.svg new file mode 100644 index 000000000..06d08c234 --- /dev/null +++ b/packages/icons/icons/home-move.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-off.svg b/packages/icons/icons/home-off.svg new file mode 100644 index 000000000..3850816f2 --- /dev/null +++ b/packages/icons/icons/home-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-plus.svg b/packages/icons/icons/home-plus.svg new file mode 100644 index 000000000..c21b65ead --- /dev/null +++ b/packages/icons/icons/home-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-question.svg b/packages/icons/icons/home-question.svg new file mode 100644 index 000000000..d4c1500bd --- /dev/null +++ b/packages/icons/icons/home-question.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-ribbon.svg b/packages/icons/icons/home-ribbon.svg new file mode 100644 index 000000000..c922027e3 --- /dev/null +++ b/packages/icons/icons/home-ribbon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-search.svg b/packages/icons/icons/home-search.svg new file mode 100644 index 000000000..2893218ce --- /dev/null +++ b/packages/icons/icons/home-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-share.svg b/packages/icons/icons/home-share.svg new file mode 100644 index 000000000..b8fc9c7bb --- /dev/null +++ b/packages/icons/icons/home-share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-shield.svg b/packages/icons/icons/home-shield.svg new file mode 100644 index 000000000..4663c021c --- /dev/null +++ b/packages/icons/icons/home-shield.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-signal.svg b/packages/icons/icons/home-signal.svg new file mode 100644 index 000000000..5bf040d08 --- /dev/null +++ b/packages/icons/icons/home-signal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-star.svg b/packages/icons/icons/home-star.svg new file mode 100644 index 000000000..1b055bcef --- /dev/null +++ b/packages/icons/icons/home-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-stats.svg b/packages/icons/icons/home-stats.svg new file mode 100644 index 000000000..d2b7c19c1 --- /dev/null +++ b/packages/icons/icons/home-stats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-up.svg b/packages/icons/icons/home-up.svg new file mode 100644 index 000000000..ebf0dae7a --- /dev/null +++ b/packages/icons/icons/home-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home-x.svg b/packages/icons/icons/home-x.svg new file mode 100644 index 000000000..79e4e9b52 --- /dev/null +++ b/packages/icons/icons/home-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/home.svg b/packages/icons/icons/home.svg new file mode 100644 index 000000000..c88f53203 --- /dev/null +++ b/packages/icons/icons/home.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/horse-toy.svg b/packages/icons/icons/horse-toy.svg new file mode 100644 index 000000000..b2cc09e96 --- /dev/null +++ b/packages/icons/icons/horse-toy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hotel-service.svg b/packages/icons/icons/hotel-service.svg new file mode 100644 index 000000000..4d0e1a69e --- /dev/null +++ b/packages/icons/icons/hotel-service.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hourglass-empty.svg b/packages/icons/icons/hourglass-empty.svg new file mode 100644 index 000000000..ae71afe9b --- /dev/null +++ b/packages/icons/icons/hourglass-empty.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hourglass-high.svg b/packages/icons/icons/hourglass-high.svg new file mode 100644 index 000000000..5fdd985bc --- /dev/null +++ b/packages/icons/icons/hourglass-high.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hourglass-low.svg b/packages/icons/icons/hourglass-low.svg new file mode 100644 index 000000000..b4971301d --- /dev/null +++ b/packages/icons/icons/hourglass-low.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hourglass-off.svg b/packages/icons/icons/hourglass-off.svg new file mode 100644 index 000000000..1a8c72a68 --- /dev/null +++ b/packages/icons/icons/hourglass-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/hourglass.svg b/packages/icons/icons/hourglass.svg new file mode 100644 index 000000000..78545198d --- /dev/null +++ b/packages/icons/icons/hourglass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ice-cream-2.svg b/packages/icons/icons/ice-cream-2.svg new file mode 100644 index 000000000..f99c6b55d --- /dev/null +++ b/packages/icons/icons/ice-cream-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ice-cream-off.svg b/packages/icons/icons/ice-cream-off.svg new file mode 100644 index 000000000..7e225830b --- /dev/null +++ b/packages/icons/icons/ice-cream-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ice-cream.svg b/packages/icons/icons/ice-cream.svg new file mode 100644 index 000000000..9ece4cccc --- /dev/null +++ b/packages/icons/icons/ice-cream.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ice-skating.svg b/packages/icons/icons/ice-skating.svg new file mode 100644 index 000000000..51bb984f4 --- /dev/null +++ b/packages/icons/icons/ice-skating.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/icons-off.svg b/packages/icons/icons/icons-off.svg new file mode 100644 index 000000000..a80eedffd --- /dev/null +++ b/packages/icons/icons/icons-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/icons.svg b/packages/icons/icons/icons.svg new file mode 100644 index 000000000..b9dc65532 --- /dev/null +++ b/packages/icons/icons/icons.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/id-badge-2.svg b/packages/icons/icons/id-badge-2.svg new file mode 100644 index 000000000..6fbbb5cf6 --- /dev/null +++ b/packages/icons/icons/id-badge-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/id-badge-off.svg b/packages/icons/icons/id-badge-off.svg new file mode 100644 index 000000000..e729fed42 --- /dev/null +++ b/packages/icons/icons/id-badge-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/id-badge.svg b/packages/icons/icons/id-badge.svg new file mode 100644 index 000000000..edeec6f7c --- /dev/null +++ b/packages/icons/icons/id-badge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/id-off.svg b/packages/icons/icons/id-off.svg new file mode 100644 index 000000000..3f47df0aa --- /dev/null +++ b/packages/icons/icons/id-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/id.svg b/packages/icons/icons/id.svg new file mode 100644 index 000000000..8d6686d78 --- /dev/null +++ b/packages/icons/icons/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inbox-off.svg b/packages/icons/icons/inbox-off.svg new file mode 100644 index 000000000..fc2eaee78 --- /dev/null +++ b/packages/icons/icons/inbox-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inbox.svg b/packages/icons/icons/inbox.svg new file mode 100644 index 000000000..b233c5242 --- /dev/null +++ b/packages/icons/icons/inbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/indent-decrease.svg b/packages/icons/icons/indent-decrease.svg new file mode 100644 index 000000000..337ad5552 --- /dev/null +++ b/packages/icons/icons/indent-decrease.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/indent-increase.svg b/packages/icons/icons/indent-increase.svg new file mode 100644 index 000000000..c0b58f4ee --- /dev/null +++ b/packages/icons/icons/indent-increase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/infinity-off.svg b/packages/icons/icons/infinity-off.svg new file mode 100644 index 000000000..191873581 --- /dev/null +++ b/packages/icons/icons/infinity-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/infinity.svg b/packages/icons/icons/infinity.svg new file mode 100644 index 000000000..5f0bebc23 --- /dev/null +++ b/packages/icons/icons/infinity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/info-circle.svg b/packages/icons/icons/info-circle.svg new file mode 100644 index 000000000..57d7f17fa --- /dev/null +++ b/packages/icons/icons/info-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/info-square-rounded.svg b/packages/icons/icons/info-square-rounded.svg new file mode 100644 index 000000000..4da3dda09 --- /dev/null +++ b/packages/icons/icons/info-square-rounded.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/info-square.svg b/packages/icons/icons/info-square.svg new file mode 100644 index 000000000..835892165 --- /dev/null +++ b/packages/icons/icons/info-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-bottom-left.svg b/packages/icons/icons/inner-shadow-bottom-left.svg new file mode 100644 index 000000000..31011228e --- /dev/null +++ b/packages/icons/icons/inner-shadow-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-bottom-right.svg b/packages/icons/icons/inner-shadow-bottom-right.svg new file mode 100644 index 000000000..e973d9423 --- /dev/null +++ b/packages/icons/icons/inner-shadow-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-bottom.svg b/packages/icons/icons/inner-shadow-bottom.svg new file mode 100644 index 000000000..74b503efe --- /dev/null +++ b/packages/icons/icons/inner-shadow-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-left.svg b/packages/icons/icons/inner-shadow-left.svg new file mode 100644 index 000000000..40da91a0b --- /dev/null +++ b/packages/icons/icons/inner-shadow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-right.svg b/packages/icons/icons/inner-shadow-right.svg new file mode 100644 index 000000000..5880e4797 --- /dev/null +++ b/packages/icons/icons/inner-shadow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-top-left.svg b/packages/icons/icons/inner-shadow-top-left.svg new file mode 100644 index 000000000..30402104b --- /dev/null +++ b/packages/icons/icons/inner-shadow-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-top-right.svg b/packages/icons/icons/inner-shadow-top-right.svg new file mode 100644 index 000000000..9a75d71bf --- /dev/null +++ b/packages/icons/icons/inner-shadow-top-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/inner-shadow-top.svg b/packages/icons/icons/inner-shadow-top.svg new file mode 100644 index 000000000..277834b47 --- /dev/null +++ b/packages/icons/icons/inner-shadow-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/input-search.svg b/packages/icons/icons/input-search.svg new file mode 100644 index 000000000..ea15762d0 --- /dev/null +++ b/packages/icons/icons/input-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-1.svg b/packages/icons/icons/ironing-1.svg new file mode 100644 index 000000000..5d6690c3e --- /dev/null +++ b/packages/icons/icons/ironing-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-2.svg b/packages/icons/icons/ironing-2.svg new file mode 100644 index 000000000..02b0b4de0 --- /dev/null +++ b/packages/icons/icons/ironing-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-3.svg b/packages/icons/icons/ironing-3.svg new file mode 100644 index 000000000..5b4bffd28 --- /dev/null +++ b/packages/icons/icons/ironing-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-off.svg b/packages/icons/icons/ironing-off.svg new file mode 100644 index 000000000..00c7e8f44 --- /dev/null +++ b/packages/icons/icons/ironing-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-steam-off.svg b/packages/icons/icons/ironing-steam-off.svg new file mode 100644 index 000000000..23571b958 --- /dev/null +++ b/packages/icons/icons/ironing-steam-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ironing-steam.svg b/packages/icons/icons/ironing-steam.svg new file mode 100644 index 000000000..874b9e21f --- /dev/null +++ b/packages/icons/icons/ironing-steam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/italic.svg b/packages/icons/icons/italic.svg new file mode 100644 index 000000000..238a51067 --- /dev/null +++ b/packages/icons/icons/italic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/jacket.svg b/packages/icons/icons/jacket.svg new file mode 100644 index 000000000..802e6204e --- /dev/null +++ b/packages/icons/icons/jacket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/jetpack.svg b/packages/icons/icons/jetpack.svg new file mode 100644 index 000000000..e7f7cd88d --- /dev/null +++ b/packages/icons/icons/jetpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/jewish-star.svg b/packages/icons/icons/jewish-star.svg new file mode 100644 index 000000000..804ece5db --- /dev/null +++ b/packages/icons/icons/jewish-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/jpg.svg b/packages/icons/icons/jpg.svg new file mode 100644 index 000000000..272c6fcc0 --- /dev/null +++ b/packages/icons/icons/jpg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/jump-rope.svg b/packages/icons/icons/jump-rope.svg new file mode 100644 index 000000000..b6fd531ea --- /dev/null +++ b/packages/icons/icons/jump-rope.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/karate.svg b/packages/icons/icons/karate.svg new file mode 100644 index 000000000..9acca9d52 --- /dev/null +++ b/packages/icons/icons/karate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/kayak.svg b/packages/icons/icons/kayak.svg new file mode 100644 index 000000000..5b162f869 --- /dev/null +++ b/packages/icons/icons/kayak.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/kering.svg b/packages/icons/icons/kering.svg new file mode 100644 index 000000000..87dadfbee --- /dev/null +++ b/packages/icons/icons/kering.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/key-off.svg b/packages/icons/icons/key-off.svg new file mode 100644 index 000000000..9b679de4c --- /dev/null +++ b/packages/icons/icons/key-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/key.svg b/packages/icons/icons/key.svg new file mode 100644 index 000000000..7aaa48a65 --- /dev/null +++ b/packages/icons/icons/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyboard-hide.svg b/packages/icons/icons/keyboard-hide.svg new file mode 100644 index 000000000..206aef812 --- /dev/null +++ b/packages/icons/icons/keyboard-hide.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyboard-off.svg b/packages/icons/icons/keyboard-off.svg new file mode 100644 index 000000000..897021926 --- /dev/null +++ b/packages/icons/icons/keyboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyboard-show.svg b/packages/icons/icons/keyboard-show.svg new file mode 100644 index 000000000..26e0cc8d3 --- /dev/null +++ b/packages/icons/icons/keyboard-show.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyboard.svg b/packages/icons/icons/keyboard.svg new file mode 100644 index 000000000..097634abb --- /dev/null +++ b/packages/icons/icons/keyboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyframe-align-center.svg b/packages/icons/icons/keyframe-align-center.svg new file mode 100644 index 000000000..3de93f61b --- /dev/null +++ b/packages/icons/icons/keyframe-align-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyframe-align-horizontal.svg b/packages/icons/icons/keyframe-align-horizontal.svg new file mode 100644 index 000000000..0197e84ba --- /dev/null +++ b/packages/icons/icons/keyframe-align-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyframe-align-vertical.svg b/packages/icons/icons/keyframe-align-vertical.svg new file mode 100644 index 000000000..64d8a4d4c --- /dev/null +++ b/packages/icons/icons/keyframe-align-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyframe.svg b/packages/icons/icons/keyframe.svg new file mode 100644 index 000000000..8ae184818 --- /dev/null +++ b/packages/icons/icons/keyframe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/keyframes.svg b/packages/icons/icons/keyframes.svg new file mode 100644 index 000000000..0a19f50af --- /dev/null +++ b/packages/icons/icons/keyframes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ladder-off.svg b/packages/icons/icons/ladder-off.svg new file mode 100644 index 000000000..5599ead16 --- /dev/null +++ b/packages/icons/icons/ladder-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ladder.svg b/packages/icons/icons/ladder.svg new file mode 100644 index 000000000..6db3599d0 --- /dev/null +++ b/packages/icons/icons/ladder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lambda.svg b/packages/icons/icons/lambda.svg new file mode 100644 index 000000000..908bc7ec7 --- /dev/null +++ b/packages/icons/icons/lambda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lamp-2.svg b/packages/icons/icons/lamp-2.svg new file mode 100644 index 000000000..00428a8a5 --- /dev/null +++ b/packages/icons/icons/lamp-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lamp-off.svg b/packages/icons/icons/lamp-off.svg new file mode 100644 index 000000000..ede607adb --- /dev/null +++ b/packages/icons/icons/lamp-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lamp.svg b/packages/icons/icons/lamp.svg new file mode 100644 index 000000000..ec718dd27 --- /dev/null +++ b/packages/icons/icons/lamp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/language-hiragana.svg b/packages/icons/icons/language-hiragana.svg new file mode 100644 index 000000000..94f1ddd02 --- /dev/null +++ b/packages/icons/icons/language-hiragana.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/language-katakana.svg b/packages/icons/icons/language-katakana.svg new file mode 100644 index 000000000..3926360b3 --- /dev/null +++ b/packages/icons/icons/language-katakana.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/language-off.svg b/packages/icons/icons/language-off.svg new file mode 100644 index 000000000..e21ca30a8 --- /dev/null +++ b/packages/icons/icons/language-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/language.svg b/packages/icons/icons/language.svg new file mode 100644 index 000000000..b5b9f8340 --- /dev/null +++ b/packages/icons/icons/language.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lasso-off.svg b/packages/icons/icons/lasso-off.svg new file mode 100644 index 000000000..d5274115d --- /dev/null +++ b/packages/icons/icons/lasso-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lasso-polygon.svg b/packages/icons/icons/lasso-polygon.svg new file mode 100644 index 000000000..1f4e86a7f --- /dev/null +++ b/packages/icons/icons/lasso-polygon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lasso.svg b/packages/icons/icons/lasso.svg new file mode 100644 index 000000000..827ba1816 --- /dev/null +++ b/packages/icons/icons/lasso.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-difference.svg b/packages/icons/icons/layers-difference.svg new file mode 100644 index 000000000..0f0406727 --- /dev/null +++ b/packages/icons/icons/layers-difference.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-intersect-2.svg b/packages/icons/icons/layers-intersect-2.svg new file mode 100644 index 000000000..2b5480143 --- /dev/null +++ b/packages/icons/icons/layers-intersect-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-intersect.svg b/packages/icons/icons/layers-intersect.svg new file mode 100644 index 000000000..76ca2db53 --- /dev/null +++ b/packages/icons/icons/layers-intersect.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-linked.svg b/packages/icons/icons/layers-linked.svg new file mode 100644 index 000000000..ec6c53c27 --- /dev/null +++ b/packages/icons/icons/layers-linked.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-off.svg b/packages/icons/icons/layers-off.svg new file mode 100644 index 000000000..e23514edf --- /dev/null +++ b/packages/icons/icons/layers-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-subtract.svg b/packages/icons/icons/layers-subtract.svg new file mode 100644 index 000000000..663ca4bf6 --- /dev/null +++ b/packages/icons/icons/layers-subtract.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layers-union.svg b/packages/icons/icons/layers-union.svg new file mode 100644 index 000000000..c05fa3fb9 --- /dev/null +++ b/packages/icons/icons/layers-union.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-2.svg b/packages/icons/icons/layout-2.svg new file mode 100644 index 000000000..d1646cbd5 --- /dev/null +++ b/packages/icons/icons/layout-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-bottom.svg b/packages/icons/icons/layout-align-bottom.svg new file mode 100644 index 000000000..486e65c92 --- /dev/null +++ b/packages/icons/icons/layout-align-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-center.svg b/packages/icons/icons/layout-align-center.svg new file mode 100644 index 000000000..1cadac381 --- /dev/null +++ b/packages/icons/icons/layout-align-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-left.svg b/packages/icons/icons/layout-align-left.svg new file mode 100644 index 000000000..f690fa20d --- /dev/null +++ b/packages/icons/icons/layout-align-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-middle.svg b/packages/icons/icons/layout-align-middle.svg new file mode 100644 index 000000000..fb1b2b6c2 --- /dev/null +++ b/packages/icons/icons/layout-align-middle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-right.svg b/packages/icons/icons/layout-align-right.svg new file mode 100644 index 000000000..50239467b --- /dev/null +++ b/packages/icons/icons/layout-align-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-align-top.svg b/packages/icons/icons/layout-align-top.svg new file mode 100644 index 000000000..fcf621746 --- /dev/null +++ b/packages/icons/icons/layout-align-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-board-split.svg b/packages/icons/icons/layout-board-split.svg new file mode 100644 index 000000000..bf7a6b040 --- /dev/null +++ b/packages/icons/icons/layout-board-split.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-board.svg b/packages/icons/icons/layout-board.svg new file mode 100644 index 000000000..af1a6e407 --- /dev/null +++ b/packages/icons/icons/layout-board.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-bottombar-collapse.svg b/packages/icons/icons/layout-bottombar-collapse.svg new file mode 100644 index 000000000..90deab1c0 --- /dev/null +++ b/packages/icons/icons/layout-bottombar-collapse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-bottombar-expand.svg b/packages/icons/icons/layout-bottombar-expand.svg new file mode 100644 index 000000000..773ac9a6e --- /dev/null +++ b/packages/icons/icons/layout-bottombar-expand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-bottombar.svg b/packages/icons/icons/layout-bottombar.svg new file mode 100644 index 000000000..14e0feed0 --- /dev/null +++ b/packages/icons/icons/layout-bottombar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-cards.svg b/packages/icons/icons/layout-cards.svg new file mode 100644 index 000000000..4c156ada2 --- /dev/null +++ b/packages/icons/icons/layout-cards.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-collage.svg b/packages/icons/icons/layout-collage.svg new file mode 100644 index 000000000..076851aea --- /dev/null +++ b/packages/icons/icons/layout-collage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-columns.svg b/packages/icons/icons/layout-columns.svg new file mode 100644 index 000000000..6037b4027 --- /dev/null +++ b/packages/icons/icons/layout-columns.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-dashboard.svg b/packages/icons/icons/layout-dashboard.svg new file mode 100644 index 000000000..16daf625a --- /dev/null +++ b/packages/icons/icons/layout-dashboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-distribute-horizontal.svg b/packages/icons/icons/layout-distribute-horizontal.svg new file mode 100644 index 000000000..8747f1fa1 --- /dev/null +++ b/packages/icons/icons/layout-distribute-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-distribute-vertical.svg b/packages/icons/icons/layout-distribute-vertical.svg new file mode 100644 index 000000000..e35be4039 --- /dev/null +++ b/packages/icons/icons/layout-distribute-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-grid-add.svg b/packages/icons/icons/layout-grid-add.svg new file mode 100644 index 000000000..f62784ac9 --- /dev/null +++ b/packages/icons/icons/layout-grid-add.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-grid.svg b/packages/icons/icons/layout-grid.svg new file mode 100644 index 000000000..7a8d5f387 --- /dev/null +++ b/packages/icons/icons/layout-grid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-kanban.svg b/packages/icons/icons/layout-kanban.svg new file mode 100644 index 000000000..648397e86 --- /dev/null +++ b/packages/icons/icons/layout-kanban.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-list.svg b/packages/icons/icons/layout-list.svg new file mode 100644 index 000000000..8650ace95 --- /dev/null +++ b/packages/icons/icons/layout-list.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-navbar-collapse.svg b/packages/icons/icons/layout-navbar-collapse.svg new file mode 100644 index 000000000..f7302ac2c --- /dev/null +++ b/packages/icons/icons/layout-navbar-collapse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-navbar-expand.svg b/packages/icons/icons/layout-navbar-expand.svg new file mode 100644 index 000000000..23254afd8 --- /dev/null +++ b/packages/icons/icons/layout-navbar-expand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-navbar.svg b/packages/icons/icons/layout-navbar.svg new file mode 100644 index 000000000..8e26bb43f --- /dev/null +++ b/packages/icons/icons/layout-navbar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-off.svg b/packages/icons/icons/layout-off.svg new file mode 100644 index 000000000..0eba0d6d0 --- /dev/null +++ b/packages/icons/icons/layout-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-rows.svg b/packages/icons/icons/layout-rows.svg new file mode 100644 index 000000000..b41397c08 --- /dev/null +++ b/packages/icons/icons/layout-rows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar-left-collapse.svg b/packages/icons/icons/layout-sidebar-left-collapse.svg new file mode 100644 index 000000000..14784181b --- /dev/null +++ b/packages/icons/icons/layout-sidebar-left-collapse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar-left-expand.svg b/packages/icons/icons/layout-sidebar-left-expand.svg new file mode 100644 index 000000000..e3bb4af25 --- /dev/null +++ b/packages/icons/icons/layout-sidebar-left-expand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar-right-collapse.svg b/packages/icons/icons/layout-sidebar-right-collapse.svg new file mode 100644 index 000000000..f3458c5e4 --- /dev/null +++ b/packages/icons/icons/layout-sidebar-right-collapse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar-right-expand.svg b/packages/icons/icons/layout-sidebar-right-expand.svg new file mode 100644 index 000000000..f71b4b200 --- /dev/null +++ b/packages/icons/icons/layout-sidebar-right-expand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar-right.svg b/packages/icons/icons/layout-sidebar-right.svg new file mode 100644 index 000000000..a27b4890a --- /dev/null +++ b/packages/icons/icons/layout-sidebar-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout-sidebar.svg b/packages/icons/icons/layout-sidebar.svg new file mode 100644 index 000000000..1136f9430 --- /dev/null +++ b/packages/icons/icons/layout-sidebar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/layout.svg b/packages/icons/icons/layout.svg new file mode 100644 index 000000000..bc2674b99 --- /dev/null +++ b/packages/icons/icons/layout.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/leaf-off.svg b/packages/icons/icons/leaf-off.svg new file mode 100644 index 000000000..b087daac6 --- /dev/null +++ b/packages/icons/icons/leaf-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/leaf.svg b/packages/icons/icons/leaf.svg new file mode 100644 index 000000000..2b83cffc0 --- /dev/null +++ b/packages/icons/icons/leaf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lego-off.svg b/packages/icons/icons/lego-off.svg new file mode 100644 index 000000000..1b7b03832 --- /dev/null +++ b/packages/icons/icons/lego-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lego.svg b/packages/icons/icons/lego.svg new file mode 100644 index 000000000..2a0e82abc --- /dev/null +++ b/packages/icons/icons/lego.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lemon-2.svg b/packages/icons/icons/lemon-2.svg new file mode 100644 index 000000000..622f7adf1 --- /dev/null +++ b/packages/icons/icons/lemon-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lemon.svg b/packages/icons/icons/lemon.svg new file mode 100644 index 000000000..c26cffa05 --- /dev/null +++ b/packages/icons/icons/lemon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-a.svg b/packages/icons/icons/letter-a.svg new file mode 100644 index 000000000..313ed2911 --- /dev/null +++ b/packages/icons/icons/letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-b.svg b/packages/icons/icons/letter-b.svg new file mode 100644 index 000000000..ade479a25 --- /dev/null +++ b/packages/icons/icons/letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-c.svg b/packages/icons/icons/letter-c.svg new file mode 100644 index 000000000..53b2833d9 --- /dev/null +++ b/packages/icons/icons/letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-case-lower.svg b/packages/icons/icons/letter-case-lower.svg new file mode 100644 index 000000000..3a7a71d65 --- /dev/null +++ b/packages/icons/icons/letter-case-lower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-case-toggle.svg b/packages/icons/icons/letter-case-toggle.svg new file mode 100644 index 000000000..3fc3f6cc0 --- /dev/null +++ b/packages/icons/icons/letter-case-toggle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-case-upper.svg b/packages/icons/icons/letter-case-upper.svg new file mode 100644 index 000000000..22121e058 --- /dev/null +++ b/packages/icons/icons/letter-case-upper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-case.svg b/packages/icons/icons/letter-case.svg new file mode 100644 index 000000000..3f846fc4d --- /dev/null +++ b/packages/icons/icons/letter-case.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-d.svg b/packages/icons/icons/letter-d.svg new file mode 100644 index 000000000..2781d4636 --- /dev/null +++ b/packages/icons/icons/letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-e.svg b/packages/icons/icons/letter-e.svg new file mode 100644 index 000000000..069de9c50 --- /dev/null +++ b/packages/icons/icons/letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-f.svg b/packages/icons/icons/letter-f.svg new file mode 100644 index 000000000..c6b414350 --- /dev/null +++ b/packages/icons/icons/letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-g.svg b/packages/icons/icons/letter-g.svg new file mode 100644 index 000000000..a9114ad64 --- /dev/null +++ b/packages/icons/icons/letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-h.svg b/packages/icons/icons/letter-h.svg new file mode 100644 index 000000000..e20883c8d --- /dev/null +++ b/packages/icons/icons/letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-i.svg b/packages/icons/icons/letter-i.svg new file mode 100644 index 000000000..90aa7ff73 --- /dev/null +++ b/packages/icons/icons/letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-j.svg b/packages/icons/icons/letter-j.svg new file mode 100644 index 000000000..d82d9aa4a --- /dev/null +++ b/packages/icons/icons/letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-k.svg b/packages/icons/icons/letter-k.svg new file mode 100644 index 000000000..e9e7f63d3 --- /dev/null +++ b/packages/icons/icons/letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-l.svg b/packages/icons/icons/letter-l.svg new file mode 100644 index 000000000..130aada5d --- /dev/null +++ b/packages/icons/icons/letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-m.svg b/packages/icons/icons/letter-m.svg new file mode 100644 index 000000000..419ba7086 --- /dev/null +++ b/packages/icons/icons/letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-n.svg b/packages/icons/icons/letter-n.svg new file mode 100644 index 000000000..15e04bb00 --- /dev/null +++ b/packages/icons/icons/letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-o.svg b/packages/icons/icons/letter-o.svg new file mode 100644 index 000000000..9e6de0558 --- /dev/null +++ b/packages/icons/icons/letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-p.svg b/packages/icons/icons/letter-p.svg new file mode 100644 index 000000000..40e284c42 --- /dev/null +++ b/packages/icons/icons/letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-q.svg b/packages/icons/icons/letter-q.svg new file mode 100644 index 000000000..8796b799e --- /dev/null +++ b/packages/icons/icons/letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-r.svg b/packages/icons/icons/letter-r.svg new file mode 100644 index 000000000..f8b31cf13 --- /dev/null +++ b/packages/icons/icons/letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-s.svg b/packages/icons/icons/letter-s.svg new file mode 100644 index 000000000..8cc33005b --- /dev/null +++ b/packages/icons/icons/letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-spacing.svg b/packages/icons/icons/letter-spacing.svg new file mode 100644 index 000000000..e96d977e2 --- /dev/null +++ b/packages/icons/icons/letter-spacing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-t.svg b/packages/icons/icons/letter-t.svg new file mode 100644 index 000000000..576942e0a --- /dev/null +++ b/packages/icons/icons/letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-u.svg b/packages/icons/icons/letter-u.svg new file mode 100644 index 000000000..3c8e96623 --- /dev/null +++ b/packages/icons/icons/letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-v.svg b/packages/icons/icons/letter-v.svg new file mode 100644 index 000000000..2b078b519 --- /dev/null +++ b/packages/icons/icons/letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-w.svg b/packages/icons/icons/letter-w.svg new file mode 100644 index 000000000..4df2877a5 --- /dev/null +++ b/packages/icons/icons/letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-x.svg b/packages/icons/icons/letter-x.svg new file mode 100644 index 000000000..b0a170ba9 --- /dev/null +++ b/packages/icons/icons/letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-y.svg b/packages/icons/icons/letter-y.svg new file mode 100644 index 000000000..bf24a63ca --- /dev/null +++ b/packages/icons/icons/letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/letter-z.svg b/packages/icons/icons/letter-z.svg new file mode 100644 index 000000000..d62919357 --- /dev/null +++ b/packages/icons/icons/letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/license-off.svg b/packages/icons/icons/license-off.svg new file mode 100644 index 000000000..0345cead4 --- /dev/null +++ b/packages/icons/icons/license-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/license.svg b/packages/icons/icons/license.svg new file mode 100644 index 000000000..af9fa5d59 --- /dev/null +++ b/packages/icons/icons/license.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lifebuoy-off.svg b/packages/icons/icons/lifebuoy-off.svg new file mode 100644 index 000000000..34c119a7d --- /dev/null +++ b/packages/icons/icons/lifebuoy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lifebuoy.svg b/packages/icons/icons/lifebuoy.svg new file mode 100644 index 000000000..72e6d1595 --- /dev/null +++ b/packages/icons/icons/lifebuoy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/line-dashed.svg b/packages/icons/icons/line-dashed.svg new file mode 100644 index 000000000..e5052e4bf --- /dev/null +++ b/packages/icons/icons/line-dashed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/line-dotted.svg b/packages/icons/icons/line-dotted.svg new file mode 100644 index 000000000..66fbcd533 --- /dev/null +++ b/packages/icons/icons/line-dotted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/line-height.svg b/packages/icons/icons/line-height.svg new file mode 100644 index 000000000..27dd09317 --- /dev/null +++ b/packages/icons/icons/line-height.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/line.svg b/packages/icons/icons/line.svg new file mode 100644 index 000000000..c90ae69da --- /dev/null +++ b/packages/icons/icons/line.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/link-off.svg b/packages/icons/icons/link-off.svg new file mode 100644 index 000000000..3be527a0a --- /dev/null +++ b/packages/icons/icons/link-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/link.svg b/packages/icons/icons/link.svg new file mode 100644 index 000000000..03b0ebe22 --- /dev/null +++ b/packages/icons/icons/link.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/list-check.svg b/packages/icons/icons/list-check.svg new file mode 100644 index 000000000..40cac3ac4 --- /dev/null +++ b/packages/icons/icons/list-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/list-details.svg b/packages/icons/icons/list-details.svg new file mode 100644 index 000000000..e2e03948b --- /dev/null +++ b/packages/icons/icons/list-details.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/list-numbers.svg b/packages/icons/icons/list-numbers.svg new file mode 100644 index 000000000..3b281c7fe --- /dev/null +++ b/packages/icons/icons/list-numbers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/list-search.svg b/packages/icons/icons/list-search.svg new file mode 100644 index 000000000..64e82f64d --- /dev/null +++ b/packages/icons/icons/list-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/list.svg b/packages/icons/icons/list.svg new file mode 100644 index 000000000..b7a050581 --- /dev/null +++ b/packages/icons/icons/list.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/live-photo-off.svg b/packages/icons/icons/live-photo-off.svg new file mode 100644 index 000000000..b647c8e2a --- /dev/null +++ b/packages/icons/icons/live-photo-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/live-photo.svg b/packages/icons/icons/live-photo.svg new file mode 100644 index 000000000..1dd4466c9 --- /dev/null +++ b/packages/icons/icons/live-photo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/live-view.svg b/packages/icons/icons/live-view.svg new file mode 100644 index 000000000..eac6bbdb5 --- /dev/null +++ b/packages/icons/icons/live-view.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/loader-2.svg b/packages/icons/icons/loader-2.svg new file mode 100644 index 000000000..fe87ea436 --- /dev/null +++ b/packages/icons/icons/loader-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/loader-3.svg b/packages/icons/icons/loader-3.svg new file mode 100644 index 000000000..e54631406 --- /dev/null +++ b/packages/icons/icons/loader-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/loader-quarter.svg b/packages/icons/icons/loader-quarter.svg new file mode 100644 index 000000000..cdfaeb2b1 --- /dev/null +++ b/packages/icons/icons/loader-quarter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/loader.svg b/packages/icons/icons/loader.svg new file mode 100644 index 000000000..c5800cf26 --- /dev/null +++ b/packages/icons/icons/loader.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/location-broken.svg b/packages/icons/icons/location-broken.svg new file mode 100644 index 000000000..c05d4ead7 --- /dev/null +++ b/packages/icons/icons/location-broken.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/location-off.svg b/packages/icons/icons/location-off.svg new file mode 100644 index 000000000..81302593c --- /dev/null +++ b/packages/icons/icons/location-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/location.svg b/packages/icons/icons/location.svg new file mode 100644 index 000000000..b14251e07 --- /dev/null +++ b/packages/icons/icons/location.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-access-off.svg b/packages/icons/icons/lock-access-off.svg new file mode 100644 index 000000000..695ef444a --- /dev/null +++ b/packages/icons/icons/lock-access-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-access.svg b/packages/icons/icons/lock-access.svg new file mode 100644 index 000000000..52b180a3b --- /dev/null +++ b/packages/icons/icons/lock-access.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-off.svg b/packages/icons/icons/lock-off.svg new file mode 100644 index 000000000..cd4da8f2a --- /dev/null +++ b/packages/icons/icons/lock-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-open-off.svg b/packages/icons/icons/lock-open-off.svg new file mode 100644 index 000000000..42162522d --- /dev/null +++ b/packages/icons/icons/lock-open-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-open.svg b/packages/icons/icons/lock-open.svg new file mode 100644 index 000000000..efe813859 --- /dev/null +++ b/packages/icons/icons/lock-open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-square-rounded.svg b/packages/icons/icons/lock-square-rounded.svg new file mode 100644 index 000000000..6be9ecda3 --- /dev/null +++ b/packages/icons/icons/lock-square-rounded.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock-square.svg b/packages/icons/icons/lock-square.svg new file mode 100644 index 000000000..c6c6143a0 --- /dev/null +++ b/packages/icons/icons/lock-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lock.svg b/packages/icons/icons/lock.svg new file mode 100644 index 000000000..a018cfb42 --- /dev/null +++ b/packages/icons/icons/lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-and.svg b/packages/icons/icons/logic-and.svg new file mode 100644 index 000000000..8b4df760c --- /dev/null +++ b/packages/icons/icons/logic-and.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-buffer.svg b/packages/icons/icons/logic-buffer.svg new file mode 100644 index 000000000..0d76503af --- /dev/null +++ b/packages/icons/icons/logic-buffer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-nand.svg b/packages/icons/icons/logic-nand.svg new file mode 100644 index 000000000..30bc854ff --- /dev/null +++ b/packages/icons/icons/logic-nand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-nor.svg b/packages/icons/icons/logic-nor.svg new file mode 100644 index 000000000..e18e6c38f --- /dev/null +++ b/packages/icons/icons/logic-nor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-not.svg b/packages/icons/icons/logic-not.svg new file mode 100644 index 000000000..b4d0cac24 --- /dev/null +++ b/packages/icons/icons/logic-not.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-or.svg b/packages/icons/icons/logic-or.svg new file mode 100644 index 000000000..cd38f7151 --- /dev/null +++ b/packages/icons/icons/logic-or.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-xnor.svg b/packages/icons/icons/logic-xnor.svg new file mode 100644 index 000000000..65db9539d --- /dev/null +++ b/packages/icons/icons/logic-xnor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/logic-xor.svg b/packages/icons/icons/logic-xor.svg new file mode 100644 index 000000000..dd7603141 --- /dev/null +++ b/packages/icons/icons/logic-xor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/login.svg b/packages/icons/icons/login.svg new file mode 100644 index 000000000..03d029818 --- /dev/null +++ b/packages/icons/icons/login.svg @@ -0,0 +1,6 @@ + + + diff --git a/packages/icons/icons/logout.svg b/packages/icons/icons/logout.svg new file mode 100644 index 000000000..e40404fdc --- /dev/null +++ b/packages/icons/icons/logout.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lollipop-off.svg b/packages/icons/icons/lollipop-off.svg new file mode 100644 index 000000000..701f33a71 --- /dev/null +++ b/packages/icons/icons/lollipop-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lollipop.svg b/packages/icons/icons/lollipop.svg new file mode 100644 index 000000000..dc24c7bc7 --- /dev/null +++ b/packages/icons/icons/lollipop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/luggage-off.svg b/packages/icons/icons/luggage-off.svg new file mode 100644 index 000000000..cd02d1303 --- /dev/null +++ b/packages/icons/icons/luggage-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/luggage.svg b/packages/icons/icons/luggage.svg new file mode 100644 index 000000000..e3f03c788 --- /dev/null +++ b/packages/icons/icons/luggage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lungs-off.svg b/packages/icons/icons/lungs-off.svg new file mode 100644 index 000000000..a2ba7ccf7 --- /dev/null +++ b/packages/icons/icons/lungs-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/lungs.svg b/packages/icons/icons/lungs.svg new file mode 100644 index 000000000..fe4617f68 --- /dev/null +++ b/packages/icons/icons/lungs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/macro-off.svg b/packages/icons/icons/macro-off.svg new file mode 100644 index 000000000..c17dc895d --- /dev/null +++ b/packages/icons/icons/macro-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/macro.svg b/packages/icons/icons/macro.svg new file mode 100644 index 000000000..e3dc8f2b9 --- /dev/null +++ b/packages/icons/icons/macro.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/magnet-off.svg b/packages/icons/icons/magnet-off.svg new file mode 100644 index 000000000..20984b850 --- /dev/null +++ b/packages/icons/icons/magnet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/magnet.svg b/packages/icons/icons/magnet.svg new file mode 100644 index 000000000..2b79e12fb --- /dev/null +++ b/packages/icons/icons/magnet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mail-fast.svg b/packages/icons/icons/mail-fast.svg new file mode 100644 index 000000000..80b21ce5e --- /dev/null +++ b/packages/icons/icons/mail-fast.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mail-forward.svg b/packages/icons/icons/mail-forward.svg new file mode 100644 index 000000000..48983423f --- /dev/null +++ b/packages/icons/icons/mail-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mail-off.svg b/packages/icons/icons/mail-off.svg new file mode 100644 index 000000000..8d49d7ce0 --- /dev/null +++ b/packages/icons/icons/mail-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mail-opened.svg b/packages/icons/icons/mail-opened.svg new file mode 100644 index 000000000..a646b55e0 --- /dev/null +++ b/packages/icons/icons/mail-opened.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mail.svg b/packages/icons/icons/mail.svg new file mode 100644 index 000000000..6a5df0261 --- /dev/null +++ b/packages/icons/icons/mail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mailbox-off.svg b/packages/icons/icons/mailbox-off.svg new file mode 100644 index 000000000..faf7e625a --- /dev/null +++ b/packages/icons/icons/mailbox-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mailbox.svg b/packages/icons/icons/mailbox.svg new file mode 100644 index 000000000..4a2ad1d5e --- /dev/null +++ b/packages/icons/icons/mailbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/man.svg b/packages/icons/icons/man.svg new file mode 100644 index 000000000..4210de39c --- /dev/null +++ b/packages/icons/icons/man.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/manual-gearbox.svg b/packages/icons/icons/manual-gearbox.svg new file mode 100644 index 000000000..7358c7657 --- /dev/null +++ b/packages/icons/icons/manual-gearbox.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-2.svg b/packages/icons/icons/map-2.svg new file mode 100644 index 000000000..874dabf0a --- /dev/null +++ b/packages/icons/icons/map-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-off.svg b/packages/icons/icons/map-off.svg new file mode 100644 index 000000000..2ab9293a8 --- /dev/null +++ b/packages/icons/icons/map-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-pin-off.svg b/packages/icons/icons/map-pin-off.svg new file mode 100644 index 000000000..7363da79d --- /dev/null +++ b/packages/icons/icons/map-pin-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-pin.svg b/packages/icons/icons/map-pin.svg new file mode 100644 index 000000000..bfea03513 --- /dev/null +++ b/packages/icons/icons/map-pin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-pins.svg b/packages/icons/icons/map-pins.svg new file mode 100644 index 000000000..c02b77c52 --- /dev/null +++ b/packages/icons/icons/map-pins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map-search.svg b/packages/icons/icons/map-search.svg new file mode 100644 index 000000000..0bed3eb0a --- /dev/null +++ b/packages/icons/icons/map-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/map.svg b/packages/icons/icons/map.svg new file mode 100644 index 000000000..d0a80cddd --- /dev/null +++ b/packages/icons/icons/map.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/markdown-off.svg b/packages/icons/icons/markdown-off.svg new file mode 100644 index 000000000..acb3a2332 --- /dev/null +++ b/packages/icons/icons/markdown-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/markdown.svg b/packages/icons/icons/markdown.svg new file mode 100644 index 000000000..65814f3eb --- /dev/null +++ b/packages/icons/icons/markdown.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/marquee-2.svg b/packages/icons/icons/marquee-2.svg new file mode 100644 index 000000000..f808ef445 --- /dev/null +++ b/packages/icons/icons/marquee-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/marquee-off.svg b/packages/icons/icons/marquee-off.svg new file mode 100644 index 000000000..600fa656d --- /dev/null +++ b/packages/icons/icons/marquee-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/marquee.svg b/packages/icons/icons/marquee.svg new file mode 100644 index 000000000..1569ff1c9 --- /dev/null +++ b/packages/icons/icons/marquee.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mars.svg b/packages/icons/icons/mars.svg new file mode 100644 index 000000000..67f79b69d --- /dev/null +++ b/packages/icons/icons/mars.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mask-off.svg b/packages/icons/icons/mask-off.svg new file mode 100644 index 000000000..856cbd869 --- /dev/null +++ b/packages/icons/icons/mask-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mask.svg b/packages/icons/icons/mask.svg new file mode 100644 index 000000000..0c49d6077 --- /dev/null +++ b/packages/icons/icons/mask.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/masks-theater-off.svg b/packages/icons/icons/masks-theater-off.svg new file mode 100644 index 000000000..02f4b390e --- /dev/null +++ b/packages/icons/icons/masks-theater-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/masks-theater.svg b/packages/icons/icons/masks-theater.svg new file mode 100644 index 000000000..4396b1935 --- /dev/null +++ b/packages/icons/icons/masks-theater.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/massage.svg b/packages/icons/icons/massage.svg new file mode 100644 index 000000000..34f8c62ef --- /dev/null +++ b/packages/icons/icons/massage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/matchstick.svg b/packages/icons/icons/matchstick.svg new file mode 100644 index 000000000..502e442c2 --- /dev/null +++ b/packages/icons/icons/matchstick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-1-divide-2.svg b/packages/icons/icons/math-1-divide-2.svg new file mode 100644 index 000000000..255ca4fa8 --- /dev/null +++ b/packages/icons/icons/math-1-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-1-divide-3.svg b/packages/icons/icons/math-1-divide-3.svg new file mode 100644 index 000000000..5cb904ef1 --- /dev/null +++ b/packages/icons/icons/math-1-divide-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-avg.svg b/packages/icons/icons/math-avg.svg new file mode 100644 index 000000000..251e3b21e --- /dev/null +++ b/packages/icons/icons/math-avg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-equal-greater.svg b/packages/icons/icons/math-equal-greater.svg new file mode 100644 index 000000000..9d28f0f86 --- /dev/null +++ b/packages/icons/icons/math-equal-greater.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-equal-lower.svg b/packages/icons/icons/math-equal-lower.svg new file mode 100644 index 000000000..e301300a4 --- /dev/null +++ b/packages/icons/icons/math-equal-lower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-function-off.svg b/packages/icons/icons/math-function-off.svg new file mode 100644 index 000000000..dc2094ca1 --- /dev/null +++ b/packages/icons/icons/math-function-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-function-y.svg b/packages/icons/icons/math-function-y.svg new file mode 100644 index 000000000..04184f0d4 --- /dev/null +++ b/packages/icons/icons/math-function-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-function.svg b/packages/icons/icons/math-function.svg new file mode 100644 index 000000000..e1c932c72 --- /dev/null +++ b/packages/icons/icons/math-function.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-greater.svg b/packages/icons/icons/math-greater.svg new file mode 100644 index 000000000..3915770ef --- /dev/null +++ b/packages/icons/icons/math-greater.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-integral-x.svg b/packages/icons/icons/math-integral-x.svg new file mode 100644 index 000000000..cfc05f1c1 --- /dev/null +++ b/packages/icons/icons/math-integral-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-integral.svg b/packages/icons/icons/math-integral.svg new file mode 100644 index 000000000..a45d45e4e --- /dev/null +++ b/packages/icons/icons/math-integral.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-integrals.svg b/packages/icons/icons/math-integrals.svg new file mode 100644 index 000000000..dec3da243 --- /dev/null +++ b/packages/icons/icons/math-integrals.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-lower.svg b/packages/icons/icons/math-lower.svg new file mode 100644 index 000000000..553932203 --- /dev/null +++ b/packages/icons/icons/math-lower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-max.svg b/packages/icons/icons/math-max.svg new file mode 100644 index 000000000..a2353dd46 --- /dev/null +++ b/packages/icons/icons/math-max.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-min.svg b/packages/icons/icons/math-min.svg new file mode 100644 index 000000000..cfc186df0 --- /dev/null +++ b/packages/icons/icons/math-min.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-not.svg b/packages/icons/icons/math-not.svg new file mode 100644 index 000000000..b2d9c7f30 --- /dev/null +++ b/packages/icons/icons/math-not.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-off.svg b/packages/icons/icons/math-off.svg new file mode 100644 index 000000000..474648ef9 --- /dev/null +++ b/packages/icons/icons/math-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-pi-divide-2.svg b/packages/icons/icons/math-pi-divide-2.svg new file mode 100644 index 000000000..cd02cf4c1 --- /dev/null +++ b/packages/icons/icons/math-pi-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-pi.svg b/packages/icons/icons/math-pi.svg new file mode 100644 index 000000000..02dcd63c3 --- /dev/null +++ b/packages/icons/icons/math-pi.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-symbols.svg b/packages/icons/icons/math-symbols.svg new file mode 100644 index 000000000..41c422891 --- /dev/null +++ b/packages/icons/icons/math-symbols.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-divide-2.svg b/packages/icons/icons/math-x-divide-2.svg new file mode 100644 index 000000000..dc5017acf --- /dev/null +++ b/packages/icons/icons/math-x-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-divide-y-2.svg b/packages/icons/icons/math-x-divide-y-2.svg new file mode 100644 index 000000000..6636d4e64 --- /dev/null +++ b/packages/icons/icons/math-x-divide-y-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-divide-y.svg b/packages/icons/icons/math-x-divide-y.svg new file mode 100644 index 000000000..0de2b62f6 --- /dev/null +++ b/packages/icons/icons/math-x-divide-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-minus-x.svg b/packages/icons/icons/math-x-minus-x.svg new file mode 100644 index 000000000..301ba8b27 --- /dev/null +++ b/packages/icons/icons/math-x-minus-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-minus-y.svg b/packages/icons/icons/math-x-minus-y.svg new file mode 100644 index 000000000..56b6aeacc --- /dev/null +++ b/packages/icons/icons/math-x-minus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-plus-x.svg b/packages/icons/icons/math-x-plus-x.svg new file mode 100644 index 000000000..fbd3445dc --- /dev/null +++ b/packages/icons/icons/math-x-plus-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-x-plus-y.svg b/packages/icons/icons/math-x-plus-y.svg new file mode 100644 index 000000000..0de3d0dc7 --- /dev/null +++ b/packages/icons/icons/math-x-plus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-xy.svg b/packages/icons/icons/math-xy.svg new file mode 100644 index 000000000..e81ef7f4a --- /dev/null +++ b/packages/icons/icons/math-xy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-y-minus-y.svg b/packages/icons/icons/math-y-minus-y.svg new file mode 100644 index 000000000..c0cab50e0 --- /dev/null +++ b/packages/icons/icons/math-y-minus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math-y-plus-y.svg b/packages/icons/icons/math-y-plus-y.svg new file mode 100644 index 000000000..0bf1a5259 --- /dev/null +++ b/packages/icons/icons/math-y-plus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/math.svg b/packages/icons/icons/math.svg new file mode 100644 index 000000000..77a43d613 --- /dev/null +++ b/packages/icons/icons/math.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/maximize-off.svg b/packages/icons/icons/maximize-off.svg new file mode 100644 index 000000000..9855da35e --- /dev/null +++ b/packages/icons/icons/maximize-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/maximize.svg b/packages/icons/icons/maximize.svg new file mode 100644 index 000000000..f38ce5935 --- /dev/null +++ b/packages/icons/icons/maximize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/meat-off.svg b/packages/icons/icons/meat-off.svg new file mode 100644 index 000000000..fa08a2095 --- /dev/null +++ b/packages/icons/icons/meat-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/meat.svg b/packages/icons/icons/meat.svg new file mode 100644 index 000000000..99324b460 --- /dev/null +++ b/packages/icons/icons/meat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/medal-2.svg b/packages/icons/icons/medal-2.svg new file mode 100644 index 000000000..6ad30bbd6 --- /dev/null +++ b/packages/icons/icons/medal-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/medal.svg b/packages/icons/icons/medal.svg new file mode 100644 index 000000000..6cc3b3967 --- /dev/null +++ b/packages/icons/icons/medal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/medical-cross-off.svg b/packages/icons/icons/medical-cross-off.svg new file mode 100644 index 000000000..e7bce5426 --- /dev/null +++ b/packages/icons/icons/medical-cross-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/medical-cross.svg b/packages/icons/icons/medical-cross.svg new file mode 100644 index 000000000..b01c7e57d --- /dev/null +++ b/packages/icons/icons/medical-cross.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/medicine-syrup.svg b/packages/icons/icons/medicine-syrup.svg new file mode 100644 index 000000000..e2b7a5f55 --- /dev/null +++ b/packages/icons/icons/medicine-syrup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/meeple.svg b/packages/icons/icons/meeple.svg new file mode 100644 index 000000000..9ef1a35ed --- /dev/null +++ b/packages/icons/icons/meeple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/menorah.svg b/packages/icons/icons/menorah.svg new file mode 100644 index 000000000..caba61894 --- /dev/null +++ b/packages/icons/icons/menorah.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/menu-2.svg b/packages/icons/icons/menu-2.svg new file mode 100644 index 000000000..aac6b3756 --- /dev/null +++ b/packages/icons/icons/menu-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/menu-order.svg b/packages/icons/icons/menu-order.svg new file mode 100644 index 000000000..e2bed8923 --- /dev/null +++ b/packages/icons/icons/menu-order.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/menu.svg b/packages/icons/icons/menu.svg new file mode 100644 index 000000000..b71ff2871 --- /dev/null +++ b/packages/icons/icons/menu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-2-code.svg b/packages/icons/icons/message-2-code.svg new file mode 100644 index 000000000..203a65f77 --- /dev/null +++ b/packages/icons/icons/message-2-code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-2-off.svg b/packages/icons/icons/message-2-off.svg new file mode 100644 index 000000000..de5910805 --- /dev/null +++ b/packages/icons/icons/message-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-2-share.svg b/packages/icons/icons/message-2-share.svg new file mode 100644 index 000000000..b2e8f98ae --- /dev/null +++ b/packages/icons/icons/message-2-share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-2.svg b/packages/icons/icons/message-2.svg new file mode 100644 index 000000000..46c0b09d0 --- /dev/null +++ b/packages/icons/icons/message-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-chatbot.svg b/packages/icons/icons/message-chatbot.svg new file mode 100644 index 000000000..7f55ee546 --- /dev/null +++ b/packages/icons/icons/message-chatbot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-circle-2.svg b/packages/icons/icons/message-circle-2.svg new file mode 100644 index 000000000..bcf9d428c --- /dev/null +++ b/packages/icons/icons/message-circle-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-circle-off.svg b/packages/icons/icons/message-circle-off.svg new file mode 100644 index 000000000..8a806693d --- /dev/null +++ b/packages/icons/icons/message-circle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-circle.svg b/packages/icons/icons/message-circle.svg new file mode 100644 index 000000000..acdcd78c9 --- /dev/null +++ b/packages/icons/icons/message-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-code.svg b/packages/icons/icons/message-code.svg new file mode 100644 index 000000000..b5d2f55ba --- /dev/null +++ b/packages/icons/icons/message-code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-dots.svg b/packages/icons/icons/message-dots.svg new file mode 100644 index 000000000..6da749cb2 --- /dev/null +++ b/packages/icons/icons/message-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-forward.svg b/packages/icons/icons/message-forward.svg new file mode 100644 index 000000000..d27136f57 --- /dev/null +++ b/packages/icons/icons/message-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-language.svg b/packages/icons/icons/message-language.svg new file mode 100644 index 000000000..81cb5ea58 --- /dev/null +++ b/packages/icons/icons/message-language.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-off.svg b/packages/icons/icons/message-off.svg new file mode 100644 index 000000000..4e9bd29e2 --- /dev/null +++ b/packages/icons/icons/message-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-plus.svg b/packages/icons/icons/message-plus.svg new file mode 100644 index 000000000..8e845fd3d --- /dev/null +++ b/packages/icons/icons/message-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-report.svg b/packages/icons/icons/message-report.svg new file mode 100644 index 000000000..b7edbe680 --- /dev/null +++ b/packages/icons/icons/message-report.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message-share.svg b/packages/icons/icons/message-share.svg new file mode 100644 index 000000000..6139cd4d0 --- /dev/null +++ b/packages/icons/icons/message-share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/message.svg b/packages/icons/icons/message.svg new file mode 100644 index 000000000..5153c5802 --- /dev/null +++ b/packages/icons/icons/message.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/messages-off.svg b/packages/icons/icons/messages-off.svg new file mode 100644 index 000000000..66b9b0e32 --- /dev/null +++ b/packages/icons/icons/messages-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/messages.svg b/packages/icons/icons/messages.svg new file mode 100644 index 000000000..251de2ecd --- /dev/null +++ b/packages/icons/icons/messages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/meteor-off.svg b/packages/icons/icons/meteor-off.svg new file mode 100644 index 000000000..b60cd17ed --- /dev/null +++ b/packages/icons/icons/meteor-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/meteor.svg b/packages/icons/icons/meteor.svg new file mode 100644 index 000000000..1a7345123 --- /dev/null +++ b/packages/icons/icons/meteor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mickey.svg b/packages/icons/icons/mickey.svg new file mode 100644 index 000000000..cc7309949 --- /dev/null +++ b/packages/icons/icons/mickey.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microphone-2-off.svg b/packages/icons/icons/microphone-2-off.svg new file mode 100644 index 000000000..5c728aa32 --- /dev/null +++ b/packages/icons/icons/microphone-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microphone-2.svg b/packages/icons/icons/microphone-2.svg new file mode 100644 index 000000000..329a91379 --- /dev/null +++ b/packages/icons/icons/microphone-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microphone-off.svg b/packages/icons/icons/microphone-off.svg new file mode 100644 index 000000000..ccd10e0fb --- /dev/null +++ b/packages/icons/icons/microphone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microphone.svg b/packages/icons/icons/microphone.svg new file mode 100644 index 000000000..9542faaa7 --- /dev/null +++ b/packages/icons/icons/microphone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microscope-off.svg b/packages/icons/icons/microscope-off.svg new file mode 100644 index 000000000..c30f1bb78 --- /dev/null +++ b/packages/icons/icons/microscope-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microscope.svg b/packages/icons/icons/microscope.svg new file mode 100644 index 000000000..d6d0e97b8 --- /dev/null +++ b/packages/icons/icons/microscope.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microwave-off.svg b/packages/icons/icons/microwave-off.svg new file mode 100644 index 000000000..e8d197173 --- /dev/null +++ b/packages/icons/icons/microwave-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/microwave.svg b/packages/icons/icons/microwave.svg new file mode 100644 index 000000000..e8734d5dd --- /dev/null +++ b/packages/icons/icons/microwave.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/military-award.svg b/packages/icons/icons/military-award.svg new file mode 100644 index 000000000..13682a3a5 --- /dev/null +++ b/packages/icons/icons/military-award.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/military-rank.svg b/packages/icons/icons/military-rank.svg new file mode 100644 index 000000000..fd59842ca --- /dev/null +++ b/packages/icons/icons/military-rank.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/milk-off.svg b/packages/icons/icons/milk-off.svg new file mode 100644 index 000000000..26735fe81 --- /dev/null +++ b/packages/icons/icons/milk-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/milk.svg b/packages/icons/icons/milk.svg new file mode 100644 index 000000000..c232f8d4b --- /dev/null +++ b/packages/icons/icons/milk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/milkshake.svg b/packages/icons/icons/milkshake.svg new file mode 100644 index 000000000..6400e3615 --- /dev/null +++ b/packages/icons/icons/milkshake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/minimize.svg b/packages/icons/icons/minimize.svg new file mode 100644 index 000000000..ebc3bd69e --- /dev/null +++ b/packages/icons/icons/minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/minus-vertical.svg b/packages/icons/icons/minus-vertical.svg new file mode 100644 index 000000000..61b4f3bfd --- /dev/null +++ b/packages/icons/icons/minus-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/minus.svg b/packages/icons/icons/minus.svg new file mode 100644 index 000000000..c532b6196 --- /dev/null +++ b/packages/icons/icons/minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mist-off.svg b/packages/icons/icons/mist-off.svg new file mode 100644 index 000000000..925590c01 --- /dev/null +++ b/packages/icons/icons/mist-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mist.svg b/packages/icons/icons/mist.svg new file mode 100644 index 000000000..2351f1113 --- /dev/null +++ b/packages/icons/icons/mist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moneybag.svg b/packages/icons/icons/moneybag.svg new file mode 100644 index 000000000..f83aac50d --- /dev/null +++ b/packages/icons/icons/moneybag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-angry.svg b/packages/icons/icons/mood-angry.svg new file mode 100644 index 000000000..e376ab67a --- /dev/null +++ b/packages/icons/icons/mood-angry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-annoyed-2.svg b/packages/icons/icons/mood-annoyed-2.svg new file mode 100644 index 000000000..5d9b8490b --- /dev/null +++ b/packages/icons/icons/mood-annoyed-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-annoyed.svg b/packages/icons/icons/mood-annoyed.svg new file mode 100644 index 000000000..930c2b47e --- /dev/null +++ b/packages/icons/icons/mood-annoyed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-boy.svg b/packages/icons/icons/mood-boy.svg new file mode 100644 index 000000000..bb39cc6a9 --- /dev/null +++ b/packages/icons/icons/mood-boy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-confuzed.svg b/packages/icons/icons/mood-confuzed.svg new file mode 100644 index 000000000..45fd2b317 --- /dev/null +++ b/packages/icons/icons/mood-confuzed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-crazy-happy.svg b/packages/icons/icons/mood-crazy-happy.svg new file mode 100644 index 000000000..3765aae4c --- /dev/null +++ b/packages/icons/icons/mood-crazy-happy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-cry.svg b/packages/icons/icons/mood-cry.svg new file mode 100644 index 000000000..e38d1c6b2 --- /dev/null +++ b/packages/icons/icons/mood-cry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-empty.svg b/packages/icons/icons/mood-empty.svg new file mode 100644 index 000000000..5c6126b41 --- /dev/null +++ b/packages/icons/icons/mood-empty.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-happy.svg b/packages/icons/icons/mood-happy.svg new file mode 100644 index 000000000..3a9910ce4 --- /dev/null +++ b/packages/icons/icons/mood-happy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-kid.svg b/packages/icons/icons/mood-kid.svg new file mode 100644 index 000000000..dc163a0f9 --- /dev/null +++ b/packages/icons/icons/mood-kid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-look-left.svg b/packages/icons/icons/mood-look-left.svg new file mode 100644 index 000000000..ba22d6ca4 --- /dev/null +++ b/packages/icons/icons/mood-look-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-look-right.svg b/packages/icons/icons/mood-look-right.svg new file mode 100644 index 000000000..4ef9e7f4b --- /dev/null +++ b/packages/icons/icons/mood-look-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-nerd.svg b/packages/icons/icons/mood-nerd.svg new file mode 100644 index 000000000..c3ce86442 --- /dev/null +++ b/packages/icons/icons/mood-nerd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-nervous.svg b/packages/icons/icons/mood-nervous.svg new file mode 100644 index 000000000..ce007d4e8 --- /dev/null +++ b/packages/icons/icons/mood-nervous.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-neutral.svg b/packages/icons/icons/mood-neutral.svg new file mode 100644 index 000000000..89aeced65 --- /dev/null +++ b/packages/icons/icons/mood-neutral.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-off.svg b/packages/icons/icons/mood-off.svg new file mode 100644 index 000000000..a52b64e34 --- /dev/null +++ b/packages/icons/icons/mood-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sad-2.svg b/packages/icons/icons/mood-sad-2.svg new file mode 100644 index 000000000..0aaa49c60 --- /dev/null +++ b/packages/icons/icons/mood-sad-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sad-dizzy.svg b/packages/icons/icons/mood-sad-dizzy.svg new file mode 100644 index 000000000..af30706be --- /dev/null +++ b/packages/icons/icons/mood-sad-dizzy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sad-squint.svg b/packages/icons/icons/mood-sad-squint.svg new file mode 100644 index 000000000..5e25a73fc --- /dev/null +++ b/packages/icons/icons/mood-sad-squint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sad.svg b/packages/icons/icons/mood-sad.svg new file mode 100644 index 000000000..27f1ab1bf --- /dev/null +++ b/packages/icons/icons/mood-sad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sick.svg b/packages/icons/icons/mood-sick.svg new file mode 100644 index 000000000..e49de7ef3 --- /dev/null +++ b/packages/icons/icons/mood-sick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-silence.svg b/packages/icons/icons/mood-silence.svg new file mode 100644 index 000000000..7beda5ae5 --- /dev/null +++ b/packages/icons/icons/mood-silence.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-sing.svg b/packages/icons/icons/mood-sing.svg new file mode 100644 index 000000000..3d622634f --- /dev/null +++ b/packages/icons/icons/mood-sing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-smile-beam.svg b/packages/icons/icons/mood-smile-beam.svg new file mode 100644 index 000000000..4a25b24c7 --- /dev/null +++ b/packages/icons/icons/mood-smile-beam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-smile-dizzy.svg b/packages/icons/icons/mood-smile-dizzy.svg new file mode 100644 index 000000000..8810837f2 --- /dev/null +++ b/packages/icons/icons/mood-smile-dizzy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-smile.svg b/packages/icons/icons/mood-smile.svg new file mode 100644 index 000000000..2c8e46ec1 --- /dev/null +++ b/packages/icons/icons/mood-smile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-suprised.svg b/packages/icons/icons/mood-suprised.svg new file mode 100644 index 000000000..c05a80435 --- /dev/null +++ b/packages/icons/icons/mood-suprised.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-tongue-wink-2.svg b/packages/icons/icons/mood-tongue-wink-2.svg new file mode 100644 index 000000000..039ba6bf7 --- /dev/null +++ b/packages/icons/icons/mood-tongue-wink-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-tongue-wink.svg b/packages/icons/icons/mood-tongue-wink.svg new file mode 100644 index 000000000..0d7701c2c --- /dev/null +++ b/packages/icons/icons/mood-tongue-wink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-tongue.svg b/packages/icons/icons/mood-tongue.svg new file mode 100644 index 000000000..aa187c245 --- /dev/null +++ b/packages/icons/icons/mood-tongue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-unamused.svg b/packages/icons/icons/mood-unamused.svg new file mode 100644 index 000000000..0ba688ba5 --- /dev/null +++ b/packages/icons/icons/mood-unamused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-wink-2.svg b/packages/icons/icons/mood-wink-2.svg new file mode 100644 index 000000000..6421e55c6 --- /dev/null +++ b/packages/icons/icons/mood-wink-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-wink.svg b/packages/icons/icons/mood-wink.svg new file mode 100644 index 000000000..03625d2cd --- /dev/null +++ b/packages/icons/icons/mood-wink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-wrrr.svg b/packages/icons/icons/mood-wrrr.svg new file mode 100644 index 000000000..298a3a575 --- /dev/null +++ b/packages/icons/icons/mood-wrrr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mood-xd.svg b/packages/icons/icons/mood-xd.svg new file mode 100644 index 000000000..b1730075d --- /dev/null +++ b/packages/icons/icons/mood-xd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moon-2.svg b/packages/icons/icons/moon-2.svg new file mode 100644 index 000000000..175a5cef0 --- /dev/null +++ b/packages/icons/icons/moon-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moon-off.svg b/packages/icons/icons/moon-off.svg new file mode 100644 index 000000000..4e9ef1362 --- /dev/null +++ b/packages/icons/icons/moon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moon-stars.svg b/packages/icons/icons/moon-stars.svg new file mode 100644 index 000000000..89d10a010 --- /dev/null +++ b/packages/icons/icons/moon-stars.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moon.svg b/packages/icons/icons/moon.svg new file mode 100644 index 000000000..84e2554bb --- /dev/null +++ b/packages/icons/icons/moon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moped.svg b/packages/icons/icons/moped.svg new file mode 100644 index 000000000..d75dbc3ec --- /dev/null +++ b/packages/icons/icons/moped.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/motorbike.svg b/packages/icons/icons/motorbike.svg new file mode 100644 index 000000000..cd3c595da --- /dev/null +++ b/packages/icons/icons/motorbike.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mountain-off.svg b/packages/icons/icons/mountain-off.svg new file mode 100644 index 000000000..b19a59759 --- /dev/null +++ b/packages/icons/icons/mountain-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mountain.svg b/packages/icons/icons/mountain.svg new file mode 100644 index 000000000..3d5fb7424 --- /dev/null +++ b/packages/icons/icons/mountain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mouse-2.svg b/packages/icons/icons/mouse-2.svg new file mode 100644 index 000000000..45608d622 --- /dev/null +++ b/packages/icons/icons/mouse-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mouse-off.svg b/packages/icons/icons/mouse-off.svg new file mode 100644 index 000000000..769a6868e --- /dev/null +++ b/packages/icons/icons/mouse-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mouse.svg b/packages/icons/icons/mouse.svg new file mode 100644 index 000000000..47c1b9f1b --- /dev/null +++ b/packages/icons/icons/mouse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/moustache.svg b/packages/icons/icons/moustache.svg new file mode 100644 index 000000000..fb150273b --- /dev/null +++ b/packages/icons/icons/moustache.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/movie-off.svg b/packages/icons/icons/movie-off.svg new file mode 100644 index 000000000..9e39f6ddf --- /dev/null +++ b/packages/icons/icons/movie-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/movie.svg b/packages/icons/icons/movie.svg new file mode 100644 index 000000000..9d3739a4a --- /dev/null +++ b/packages/icons/icons/movie.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mug-off.svg b/packages/icons/icons/mug-off.svg new file mode 100644 index 000000000..095bb749f --- /dev/null +++ b/packages/icons/icons/mug-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mug.svg b/packages/icons/icons/mug.svg new file mode 100644 index 000000000..c13fe1d6e --- /dev/null +++ b/packages/icons/icons/mug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/multiplier-0-5x.svg b/packages/icons/icons/multiplier-0-5x.svg new file mode 100644 index 000000000..49daa0f14 --- /dev/null +++ b/packages/icons/icons/multiplier-0-5x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/multiplier-1-5x.svg b/packages/icons/icons/multiplier-1-5x.svg new file mode 100644 index 000000000..5dde40257 --- /dev/null +++ b/packages/icons/icons/multiplier-1-5x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/multiplier-1x.svg b/packages/icons/icons/multiplier-1x.svg new file mode 100644 index 000000000..5127e040b --- /dev/null +++ b/packages/icons/icons/multiplier-1x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/multiplier-2x.svg b/packages/icons/icons/multiplier-2x.svg new file mode 100644 index 000000000..00bed4bb0 --- /dev/null +++ b/packages/icons/icons/multiplier-2x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mushroom-off.svg b/packages/icons/icons/mushroom-off.svg new file mode 100644 index 000000000..2ec3ba303 --- /dev/null +++ b/packages/icons/icons/mushroom-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/mushroom.svg b/packages/icons/icons/mushroom.svg new file mode 100644 index 000000000..d1fc1f2d2 --- /dev/null +++ b/packages/icons/icons/mushroom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/music-off.svg b/packages/icons/icons/music-off.svg new file mode 100644 index 000000000..7d645ce91 --- /dev/null +++ b/packages/icons/icons/music-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/music.svg b/packages/icons/icons/music.svg new file mode 100644 index 000000000..3b1e2c1c2 --- /dev/null +++ b/packages/icons/icons/music.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/navigation-off.svg b/packages/icons/icons/navigation-off.svg new file mode 100644 index 000000000..d2cd4939b --- /dev/null +++ b/packages/icons/icons/navigation-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/navigation.svg b/packages/icons/icons/navigation.svg new file mode 100644 index 000000000..68d4cd046 --- /dev/null +++ b/packages/icons/icons/navigation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/needle-thread.svg b/packages/icons/icons/needle-thread.svg new file mode 100644 index 000000000..8ba912daf --- /dev/null +++ b/packages/icons/icons/needle-thread.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/needle.svg b/packages/icons/icons/needle.svg new file mode 100644 index 000000000..5558793db --- /dev/null +++ b/packages/icons/icons/needle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/network-off.svg b/packages/icons/icons/network-off.svg new file mode 100644 index 000000000..b23e9cd12 --- /dev/null +++ b/packages/icons/icons/network-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/network.svg b/packages/icons/icons/network.svg new file mode 100644 index 000000000..21963a4f0 --- /dev/null +++ b/packages/icons/icons/network.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/new-section.svg b/packages/icons/icons/new-section.svg new file mode 100644 index 000000000..e7657488f --- /dev/null +++ b/packages/icons/icons/new-section.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/news-off.svg b/packages/icons/icons/news-off.svg new file mode 100644 index 000000000..9bdf4fb63 --- /dev/null +++ b/packages/icons/icons/news-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/news.svg b/packages/icons/icons/news.svg new file mode 100644 index 000000000..7df09f757 --- /dev/null +++ b/packages/icons/icons/news.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/nfc-off.svg b/packages/icons/icons/nfc-off.svg new file mode 100644 index 000000000..8f1bd9cc4 --- /dev/null +++ b/packages/icons/icons/nfc-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/nfc.svg b/packages/icons/icons/nfc.svg new file mode 100644 index 000000000..e58612c25 --- /dev/null +++ b/packages/icons/icons/nfc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/no-copyright.svg b/packages/icons/icons/no-copyright.svg new file mode 100644 index 000000000..7bd835a59 --- /dev/null +++ b/packages/icons/icons/no-copyright.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/no-creative-commons.svg b/packages/icons/icons/no-creative-commons.svg new file mode 100644 index 000000000..f13b70571 --- /dev/null +++ b/packages/icons/icons/no-creative-commons.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/no-derivatives.svg b/packages/icons/icons/no-derivatives.svg new file mode 100644 index 000000000..e0e674488 --- /dev/null +++ b/packages/icons/icons/no-derivatives.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/north-star.svg b/packages/icons/icons/north-star.svg new file mode 100644 index 000000000..f7a184501 --- /dev/null +++ b/packages/icons/icons/north-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/note-off.svg b/packages/icons/icons/note-off.svg new file mode 100644 index 000000000..37661d81b --- /dev/null +++ b/packages/icons/icons/note-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/note.svg b/packages/icons/icons/note.svg new file mode 100644 index 000000000..011696595 --- /dev/null +++ b/packages/icons/icons/note.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notebook-off.svg b/packages/icons/icons/notebook-off.svg new file mode 100644 index 000000000..a8fd62ad3 --- /dev/null +++ b/packages/icons/icons/notebook-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notebook.svg b/packages/icons/icons/notebook.svg new file mode 100644 index 000000000..88ef0da3a --- /dev/null +++ b/packages/icons/icons/notebook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notes-off.svg b/packages/icons/icons/notes-off.svg new file mode 100644 index 000000000..51dcc44e8 --- /dev/null +++ b/packages/icons/icons/notes-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notes.svg b/packages/icons/icons/notes.svg new file mode 100644 index 000000000..b3118e781 --- /dev/null +++ b/packages/icons/icons/notes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notification-off.svg b/packages/icons/icons/notification-off.svg new file mode 100644 index 000000000..8ae793ed0 --- /dev/null +++ b/packages/icons/icons/notification-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/notification.svg b/packages/icons/icons/notification.svg new file mode 100644 index 000000000..f127fa554 --- /dev/null +++ b/packages/icons/icons/notification.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-0.svg b/packages/icons/icons/number-0.svg new file mode 100644 index 000000000..a60576659 --- /dev/null +++ b/packages/icons/icons/number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-1.svg b/packages/icons/icons/number-1.svg new file mode 100644 index 000000000..0a36eebf4 --- /dev/null +++ b/packages/icons/icons/number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-2.svg b/packages/icons/icons/number-2.svg new file mode 100644 index 000000000..c4b2c653c --- /dev/null +++ b/packages/icons/icons/number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-3.svg b/packages/icons/icons/number-3.svg new file mode 100644 index 000000000..143b0a525 --- /dev/null +++ b/packages/icons/icons/number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-4.svg b/packages/icons/icons/number-4.svg new file mode 100644 index 000000000..2ae3192a2 --- /dev/null +++ b/packages/icons/icons/number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-5.svg b/packages/icons/icons/number-5.svg new file mode 100644 index 000000000..f9b65ff42 --- /dev/null +++ b/packages/icons/icons/number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-6.svg b/packages/icons/icons/number-6.svg new file mode 100644 index 000000000..8da7618fd --- /dev/null +++ b/packages/icons/icons/number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-7.svg b/packages/icons/icons/number-7.svg new file mode 100644 index 000000000..811929a4a --- /dev/null +++ b/packages/icons/icons/number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-8.svg b/packages/icons/icons/number-8.svg new file mode 100644 index 000000000..5002bfca0 --- /dev/null +++ b/packages/icons/icons/number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number-9.svg b/packages/icons/icons/number-9.svg new file mode 100644 index 000000000..a964509ff --- /dev/null +++ b/packages/icons/icons/number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/number.svg b/packages/icons/icons/number.svg new file mode 100644 index 000000000..0010fae97 --- /dev/null +++ b/packages/icons/icons/number.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/numbers.svg b/packages/icons/icons/numbers.svg new file mode 100644 index 000000000..560154506 --- /dev/null +++ b/packages/icons/icons/numbers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/nurse.svg b/packages/icons/icons/nurse.svg new file mode 100644 index 000000000..fc1578460 --- /dev/null +++ b/packages/icons/icons/nurse.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/octagon-off.svg b/packages/icons/icons/octagon-off.svg new file mode 100644 index 000000000..d4cf57d3c --- /dev/null +++ b/packages/icons/icons/octagon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/octagon.svg b/packages/icons/icons/octagon.svg new file mode 100644 index 000000000..f3ccb34a5 --- /dev/null +++ b/packages/icons/icons/octagon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/old.svg b/packages/icons/icons/old.svg new file mode 100644 index 000000000..129806c0e --- /dev/null +++ b/packages/icons/icons/old.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/olympics-off.svg b/packages/icons/icons/olympics-off.svg new file mode 100644 index 000000000..168918737 --- /dev/null +++ b/packages/icons/icons/olympics-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/olympics.svg b/packages/icons/icons/olympics.svg new file mode 100644 index 000000000..78af1e164 --- /dev/null +++ b/packages/icons/icons/olympics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/om.svg b/packages/icons/icons/om.svg new file mode 100644 index 000000000..9fae2f1c0 --- /dev/null +++ b/packages/icons/icons/om.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/omega.svg b/packages/icons/icons/omega.svg new file mode 100644 index 000000000..6aa715bbd --- /dev/null +++ b/packages/icons/icons/omega.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/outbound.svg b/packages/icons/icons/outbound.svg new file mode 100644 index 000000000..7997c31f4 --- /dev/null +++ b/packages/icons/icons/outbound.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/outlet.svg b/packages/icons/icons/outlet.svg new file mode 100644 index 000000000..7e19dfbe4 --- /dev/null +++ b/packages/icons/icons/outlet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/oval-vertical.svg b/packages/icons/icons/oval-vertical.svg new file mode 100644 index 000000000..1c59fa1df --- /dev/null +++ b/packages/icons/icons/oval-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/oval.svg b/packages/icons/icons/oval.svg new file mode 100644 index 000000000..8478d1a1f --- /dev/null +++ b/packages/icons/icons/oval.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/overline.svg b/packages/icons/icons/overline.svg new file mode 100644 index 000000000..f80b52e46 --- /dev/null +++ b/packages/icons/icons/overline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/package-off.svg b/packages/icons/icons/package-off.svg new file mode 100644 index 000000000..939c9d01a --- /dev/null +++ b/packages/icons/icons/package-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/package.svg b/packages/icons/icons/package.svg new file mode 100644 index 000000000..e73accd91 --- /dev/null +++ b/packages/icons/icons/package.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/packages.svg b/packages/icons/icons/packages.svg new file mode 100644 index 000000000..8ecb5b4f3 --- /dev/null +++ b/packages/icons/icons/packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/packge-export.svg b/packages/icons/icons/packge-export.svg new file mode 100644 index 000000000..8d479e49d --- /dev/null +++ b/packages/icons/icons/packge-export.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/packge-import.svg b/packages/icons/icons/packge-import.svg new file mode 100644 index 000000000..9a9594082 --- /dev/null +++ b/packages/icons/icons/packge-import.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pacman.svg b/packages/icons/icons/pacman.svg new file mode 100644 index 000000000..f4bc6de45 --- /dev/null +++ b/packages/icons/icons/pacman.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/page-break.svg b/packages/icons/icons/page-break.svg new file mode 100644 index 000000000..f0dbd705c --- /dev/null +++ b/packages/icons/icons/page-break.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paint-off.svg b/packages/icons/icons/paint-off.svg new file mode 100644 index 000000000..070eca8f9 --- /dev/null +++ b/packages/icons/icons/paint-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paint.svg b/packages/icons/icons/paint.svg new file mode 100644 index 000000000..1ea7c9dc6 --- /dev/null +++ b/packages/icons/icons/paint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/palette-off.svg b/packages/icons/icons/palette-off.svg new file mode 100644 index 000000000..24ae904cd --- /dev/null +++ b/packages/icons/icons/palette-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/palette.svg b/packages/icons/icons/palette.svg new file mode 100644 index 000000000..9f6a2f194 --- /dev/null +++ b/packages/icons/icons/palette.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/panorama-horizontal-off.svg b/packages/icons/icons/panorama-horizontal-off.svg new file mode 100644 index 000000000..024757450 --- /dev/null +++ b/packages/icons/icons/panorama-horizontal-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/panorama-horizontal.svg b/packages/icons/icons/panorama-horizontal.svg new file mode 100644 index 000000000..56cd328ef --- /dev/null +++ b/packages/icons/icons/panorama-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/panorama-vertical-off.svg b/packages/icons/icons/panorama-vertical-off.svg new file mode 100644 index 000000000..f63f2b12c --- /dev/null +++ b/packages/icons/icons/panorama-vertical-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/panorama-vertical.svg b/packages/icons/icons/panorama-vertical.svg new file mode 100644 index 000000000..f593eecb4 --- /dev/null +++ b/packages/icons/icons/panorama-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paper-bag-off.svg b/packages/icons/icons/paper-bag-off.svg new file mode 100644 index 000000000..069f1a5ba --- /dev/null +++ b/packages/icons/icons/paper-bag-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paper-bag.svg b/packages/icons/icons/paper-bag.svg new file mode 100644 index 000000000..7408d904d --- /dev/null +++ b/packages/icons/icons/paper-bag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paperclip.svg b/packages/icons/icons/paperclip.svg new file mode 100644 index 000000000..b41e35965 --- /dev/null +++ b/packages/icons/icons/paperclip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parachute-off.svg b/packages/icons/icons/parachute-off.svg new file mode 100644 index 000000000..f59d7be7c --- /dev/null +++ b/packages/icons/icons/parachute-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parachute.svg b/packages/icons/icons/parachute.svg new file mode 100644 index 000000000..2c2eb1b1c --- /dev/null +++ b/packages/icons/icons/parachute.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parentheses-off.svg b/packages/icons/icons/parentheses-off.svg new file mode 100644 index 000000000..be3bf803e --- /dev/null +++ b/packages/icons/icons/parentheses-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parentheses.svg b/packages/icons/icons/parentheses.svg new file mode 100644 index 000000000..a69d4eb3b --- /dev/null +++ b/packages/icons/icons/parentheses.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parking-off.svg b/packages/icons/icons/parking-off.svg new file mode 100644 index 000000000..a49a090c2 --- /dev/null +++ b/packages/icons/icons/parking-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/parking.svg b/packages/icons/icons/parking.svg new file mode 100644 index 000000000..284012bb2 --- /dev/null +++ b/packages/icons/icons/parking.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/password.svg b/packages/icons/icons/password.svg new file mode 100644 index 000000000..e28cdd077 --- /dev/null +++ b/packages/icons/icons/password.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paw-off.svg b/packages/icons/icons/paw-off.svg new file mode 100644 index 000000000..9f10c6b2b --- /dev/null +++ b/packages/icons/icons/paw-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/paw.svg b/packages/icons/icons/paw.svg new file mode 100644 index 000000000..d1c4d8826 --- /dev/null +++ b/packages/icons/icons/paw.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/peace.svg b/packages/icons/icons/peace.svg new file mode 100644 index 000000000..69cce5268 --- /dev/null +++ b/packages/icons/icons/peace.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pencil-minus.svg b/packages/icons/icons/pencil-minus.svg new file mode 100644 index 000000000..bdbcdd614 --- /dev/null +++ b/packages/icons/icons/pencil-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pencil-off.svg b/packages/icons/icons/pencil-off.svg new file mode 100644 index 000000000..174c06126 --- /dev/null +++ b/packages/icons/icons/pencil-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pencil-plus.svg b/packages/icons/icons/pencil-plus.svg new file mode 100644 index 000000000..7f058d3e4 --- /dev/null +++ b/packages/icons/icons/pencil-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pencil.svg b/packages/icons/icons/pencil.svg new file mode 100644 index 000000000..f1e31b623 --- /dev/null +++ b/packages/icons/icons/pencil.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pennant-2.svg b/packages/icons/icons/pennant-2.svg new file mode 100644 index 000000000..0cd6c59e9 --- /dev/null +++ b/packages/icons/icons/pennant-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pennant-off.svg b/packages/icons/icons/pennant-off.svg new file mode 100644 index 000000000..b71c4b3a0 --- /dev/null +++ b/packages/icons/icons/pennant-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pennant.svg b/packages/icons/icons/pennant.svg new file mode 100644 index 000000000..5f2fa9c7e --- /dev/null +++ b/packages/icons/icons/pennant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pentagon-off.svg b/packages/icons/icons/pentagon-off.svg new file mode 100644 index 000000000..6440fee55 --- /dev/null +++ b/packages/icons/icons/pentagon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pentagon.svg b/packages/icons/icons/pentagon.svg new file mode 100644 index 000000000..1cefb3e20 --- /dev/null +++ b/packages/icons/icons/pentagon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pentagram.svg b/packages/icons/icons/pentagram.svg new file mode 100644 index 000000000..3608abb60 --- /dev/null +++ b/packages/icons/icons/pentagram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pepper-off.svg b/packages/icons/icons/pepper-off.svg new file mode 100644 index 000000000..e8902ce35 --- /dev/null +++ b/packages/icons/icons/pepper-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pepper.svg b/packages/icons/icons/pepper.svg new file mode 100644 index 000000000..2845f3420 --- /dev/null +++ b/packages/icons/icons/pepper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/percentage.svg b/packages/icons/icons/percentage.svg new file mode 100644 index 000000000..5fc3eef4c --- /dev/null +++ b/packages/icons/icons/percentage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/perfume.svg b/packages/icons/icons/perfume.svg new file mode 100644 index 000000000..25f23cb03 --- /dev/null +++ b/packages/icons/icons/perfume.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/perspective-off.svg b/packages/icons/icons/perspective-off.svg new file mode 100644 index 000000000..b15226c47 --- /dev/null +++ b/packages/icons/icons/perspective-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/perspective.svg b/packages/icons/icons/perspective.svg new file mode 100644 index 000000000..fa5d61ec6 --- /dev/null +++ b/packages/icons/icons/perspective.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-call.svg b/packages/icons/icons/phone-call.svg new file mode 100644 index 000000000..184749592 --- /dev/null +++ b/packages/icons/icons/phone-call.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-calling.svg b/packages/icons/icons/phone-calling.svg new file mode 100644 index 000000000..7ff3b6396 --- /dev/null +++ b/packages/icons/icons/phone-calling.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-check.svg b/packages/icons/icons/phone-check.svg new file mode 100644 index 000000000..b32f87143 --- /dev/null +++ b/packages/icons/icons/phone-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-incoming.svg b/packages/icons/icons/phone-incoming.svg new file mode 100644 index 000000000..668b0c596 --- /dev/null +++ b/packages/icons/icons/phone-incoming.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-off.svg b/packages/icons/icons/phone-off.svg new file mode 100644 index 000000000..7d34f933e --- /dev/null +++ b/packages/icons/icons/phone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-outgoing.svg b/packages/icons/icons/phone-outgoing.svg new file mode 100644 index 000000000..0d89f50e7 --- /dev/null +++ b/packages/icons/icons/phone-outgoing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-pause.svg b/packages/icons/icons/phone-pause.svg new file mode 100644 index 000000000..f86ddcff6 --- /dev/null +++ b/packages/icons/icons/phone-pause.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-plus.svg b/packages/icons/icons/phone-plus.svg new file mode 100644 index 000000000..4715c0a85 --- /dev/null +++ b/packages/icons/icons/phone-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone-x.svg b/packages/icons/icons/phone-x.svg new file mode 100644 index 000000000..05cda860d --- /dev/null +++ b/packages/icons/icons/phone-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/phone.svg b/packages/icons/icons/phone.svg new file mode 100644 index 000000000..90522d545 --- /dev/null +++ b/packages/icons/icons/phone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-cancel.svg b/packages/icons/icons/photo-cancel.svg new file mode 100644 index 000000000..72cea050f --- /dev/null +++ b/packages/icons/icons/photo-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-check.svg b/packages/icons/icons/photo-check.svg new file mode 100644 index 000000000..6ec415e07 --- /dev/null +++ b/packages/icons/icons/photo-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-down.svg b/packages/icons/icons/photo-down.svg new file mode 100644 index 000000000..c3d3e7ca3 --- /dev/null +++ b/packages/icons/icons/photo-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-edit.svg b/packages/icons/icons/photo-edit.svg new file mode 100644 index 000000000..671faf159 --- /dev/null +++ b/packages/icons/icons/photo-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-heart.svg b/packages/icons/icons/photo-heart.svg new file mode 100644 index 000000000..b05ef0e4a --- /dev/null +++ b/packages/icons/icons/photo-heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-minus.svg b/packages/icons/icons/photo-minus.svg new file mode 100644 index 000000000..76d96b84a --- /dev/null +++ b/packages/icons/icons/photo-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-off.svg b/packages/icons/icons/photo-off.svg new file mode 100644 index 000000000..facdddf57 --- /dev/null +++ b/packages/icons/icons/photo-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-plus.svg b/packages/icons/icons/photo-plus.svg new file mode 100644 index 000000000..3dde471e6 --- /dev/null +++ b/packages/icons/icons/photo-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-search.svg b/packages/icons/icons/photo-search.svg new file mode 100644 index 000000000..a7fd13234 --- /dev/null +++ b/packages/icons/icons/photo-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-shield.svg b/packages/icons/icons/photo-shield.svg new file mode 100644 index 000000000..95dd5737e --- /dev/null +++ b/packages/icons/icons/photo-shield.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-star.svg b/packages/icons/icons/photo-star.svg new file mode 100644 index 000000000..558453e4e --- /dev/null +++ b/packages/icons/icons/photo-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-up.svg b/packages/icons/icons/photo-up.svg new file mode 100644 index 000000000..7bfd55711 --- /dev/null +++ b/packages/icons/icons/photo-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo-x.svg b/packages/icons/icons/photo-x.svg new file mode 100644 index 000000000..450ed6442 --- /dev/null +++ b/packages/icons/icons/photo-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/photo.svg b/packages/icons/icons/photo.svg new file mode 100644 index 000000000..b325b0ddf --- /dev/null +++ b/packages/icons/icons/photo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/physotherapist.svg b/packages/icons/icons/physotherapist.svg new file mode 100644 index 000000000..c838a6448 --- /dev/null +++ b/packages/icons/icons/physotherapist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/picture-in-picture-off.svg b/packages/icons/icons/picture-in-picture-off.svg new file mode 100644 index 000000000..11523aee8 --- /dev/null +++ b/packages/icons/icons/picture-in-picture-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/picture-in-picture-on.svg b/packages/icons/icons/picture-in-picture-on.svg new file mode 100644 index 000000000..80d6b9a1b --- /dev/null +++ b/packages/icons/icons/picture-in-picture-on.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/picture-in-picture-top.svg b/packages/icons/icons/picture-in-picture-top.svg new file mode 100644 index 000000000..376ad7cb4 --- /dev/null +++ b/packages/icons/icons/picture-in-picture-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/picture-in-picture.svg b/packages/icons/icons/picture-in-picture.svg new file mode 100644 index 000000000..d9833f598 --- /dev/null +++ b/packages/icons/icons/picture-in-picture.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pig-money.svg b/packages/icons/icons/pig-money.svg new file mode 100644 index 000000000..5fb36a8f8 --- /dev/null +++ b/packages/icons/icons/pig-money.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pig-off.svg b/packages/icons/icons/pig-off.svg new file mode 100644 index 000000000..33273ea2a --- /dev/null +++ b/packages/icons/icons/pig-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pig.svg b/packages/icons/icons/pig.svg new file mode 100644 index 000000000..eee574283 --- /dev/null +++ b/packages/icons/icons/pig.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pilcrow.svg b/packages/icons/icons/pilcrow.svg new file mode 100644 index 000000000..7433df8e7 --- /dev/null +++ b/packages/icons/icons/pilcrow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pill-off.svg b/packages/icons/icons/pill-off.svg new file mode 100644 index 000000000..826f116ea --- /dev/null +++ b/packages/icons/icons/pill-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pill.svg b/packages/icons/icons/pill.svg new file mode 100644 index 000000000..64552dd14 --- /dev/null +++ b/packages/icons/icons/pill.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pills.svg b/packages/icons/icons/pills.svg new file mode 100644 index 000000000..c90983baf --- /dev/null +++ b/packages/icons/icons/pills.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pin.svg b/packages/icons/icons/pin.svg new file mode 100644 index 000000000..9333cb5c2 --- /dev/null +++ b/packages/icons/icons/pin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ping-pong.svg b/packages/icons/icons/ping-pong.svg new file mode 100644 index 000000000..d85883dff --- /dev/null +++ b/packages/icons/icons/ping-pong.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pinned-off.svg b/packages/icons/icons/pinned-off.svg new file mode 100644 index 000000000..36863fce4 --- /dev/null +++ b/packages/icons/icons/pinned-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pinned.svg b/packages/icons/icons/pinned.svg new file mode 100644 index 000000000..46da8a549 --- /dev/null +++ b/packages/icons/icons/pinned.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pizza-off.svg b/packages/icons/icons/pizza-off.svg new file mode 100644 index 000000000..a76adfb22 --- /dev/null +++ b/packages/icons/icons/pizza-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pizza.svg b/packages/icons/icons/pizza.svg new file mode 100644 index 000000000..e75497bbe --- /dev/null +++ b/packages/icons/icons/pizza.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/placeholder.svg b/packages/icons/icons/placeholder.svg new file mode 100644 index 000000000..e1956133f --- /dev/null +++ b/packages/icons/icons/placeholder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane-arrival.svg b/packages/icons/icons/plane-arrival.svg new file mode 100644 index 000000000..100c8f34b --- /dev/null +++ b/packages/icons/icons/plane-arrival.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane-departure.svg b/packages/icons/icons/plane-departure.svg new file mode 100644 index 000000000..74bfc8825 --- /dev/null +++ b/packages/icons/icons/plane-departure.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane-inflight.svg b/packages/icons/icons/plane-inflight.svg new file mode 100644 index 000000000..4677e2202 --- /dev/null +++ b/packages/icons/icons/plane-inflight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane-off.svg b/packages/icons/icons/plane-off.svg new file mode 100644 index 000000000..1e30de004 --- /dev/null +++ b/packages/icons/icons/plane-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane-tilt.svg b/packages/icons/icons/plane-tilt.svg new file mode 100644 index 000000000..bed8d482e --- /dev/null +++ b/packages/icons/icons/plane-tilt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plane.svg b/packages/icons/icons/plane.svg new file mode 100644 index 000000000..dcce5f739 --- /dev/null +++ b/packages/icons/icons/plane.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/planet-off.svg b/packages/icons/icons/planet-off.svg new file mode 100644 index 000000000..2c14c5569 --- /dev/null +++ b/packages/icons/icons/planet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/planet.svg b/packages/icons/icons/planet.svg new file mode 100644 index 000000000..4317cdf81 --- /dev/null +++ b/packages/icons/icons/planet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plant-2-off.svg b/packages/icons/icons/plant-2-off.svg new file mode 100644 index 000000000..dda0488eb --- /dev/null +++ b/packages/icons/icons/plant-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plant-2.svg b/packages/icons/icons/plant-2.svg new file mode 100644 index 000000000..fc7c05d34 --- /dev/null +++ b/packages/icons/icons/plant-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plant-off.svg b/packages/icons/icons/plant-off.svg new file mode 100644 index 000000000..bbb43dc35 --- /dev/null +++ b/packages/icons/icons/plant-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plant.svg b/packages/icons/icons/plant.svg new file mode 100644 index 000000000..1811ec4bc --- /dev/null +++ b/packages/icons/icons/plant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/play-card-off.svg b/packages/icons/icons/play-card-off.svg new file mode 100644 index 000000000..89ce28672 --- /dev/null +++ b/packages/icons/icons/play-card-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/play-card.svg b/packages/icons/icons/play-card.svg new file mode 100644 index 000000000..3cad8e45b --- /dev/null +++ b/packages/icons/icons/play-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-eject.svg b/packages/icons/icons/player-eject.svg new file mode 100644 index 000000000..077e1e4b4 --- /dev/null +++ b/packages/icons/icons/player-eject.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-pause.svg b/packages/icons/icons/player-pause.svg new file mode 100644 index 000000000..c1c6b2b40 --- /dev/null +++ b/packages/icons/icons/player-pause.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-play.svg b/packages/icons/icons/player-play.svg new file mode 100644 index 000000000..069f87916 --- /dev/null +++ b/packages/icons/icons/player-play.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-record.svg b/packages/icons/icons/player-record.svg new file mode 100644 index 000000000..383e8c758 --- /dev/null +++ b/packages/icons/icons/player-record.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-skip-back.svg b/packages/icons/icons/player-skip-back.svg new file mode 100644 index 000000000..d48dc26df --- /dev/null +++ b/packages/icons/icons/player-skip-back.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-skip-forward.svg b/packages/icons/icons/player-skip-forward.svg new file mode 100644 index 000000000..b8c237bc7 --- /dev/null +++ b/packages/icons/icons/player-skip-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-stop.svg b/packages/icons/icons/player-stop.svg new file mode 100644 index 000000000..4dbb130f3 --- /dev/null +++ b/packages/icons/icons/player-stop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-track-next.svg b/packages/icons/icons/player-track-next.svg new file mode 100644 index 000000000..6d9042593 --- /dev/null +++ b/packages/icons/icons/player-track-next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/player-track-prev.svg b/packages/icons/icons/player-track-prev.svg new file mode 100644 index 000000000..8b6f97a0a --- /dev/null +++ b/packages/icons/icons/player-track-prev.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playlist-add.svg b/packages/icons/icons/playlist-add.svg new file mode 100644 index 000000000..a6d806fe1 --- /dev/null +++ b/packages/icons/icons/playlist-add.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playlist-off.svg b/packages/icons/icons/playlist-off.svg new file mode 100644 index 000000000..0a3269fbc --- /dev/null +++ b/packages/icons/icons/playlist-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playlist-x.svg b/packages/icons/icons/playlist-x.svg new file mode 100644 index 000000000..cbb7fb70d --- /dev/null +++ b/packages/icons/icons/playlist-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playlist.svg b/packages/icons/icons/playlist.svg new file mode 100644 index 000000000..1a2fff666 --- /dev/null +++ b/packages/icons/icons/playlist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playstation-circle.svg b/packages/icons/icons/playstation-circle.svg new file mode 100644 index 000000000..3dbe10c84 --- /dev/null +++ b/packages/icons/icons/playstation-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playstation-square.svg b/packages/icons/icons/playstation-square.svg new file mode 100644 index 000000000..3cbbd3867 --- /dev/null +++ b/packages/icons/icons/playstation-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playstation-triangle.svg b/packages/icons/icons/playstation-triangle.svg new file mode 100644 index 000000000..c7806bac7 --- /dev/null +++ b/packages/icons/icons/playstation-triangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/playstation-x.svg b/packages/icons/icons/playstation-x.svg new file mode 100644 index 000000000..36ea20878 --- /dev/null +++ b/packages/icons/icons/playstation-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plug-connected-x.svg b/packages/icons/icons/plug-connected-x.svg new file mode 100644 index 000000000..931a6c0f7 --- /dev/null +++ b/packages/icons/icons/plug-connected-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plug-connected.svg b/packages/icons/icons/plug-connected.svg new file mode 100644 index 000000000..2ed63fb71 --- /dev/null +++ b/packages/icons/icons/plug-connected.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plug-off.svg b/packages/icons/icons/plug-off.svg new file mode 100644 index 000000000..4b3570f6d --- /dev/null +++ b/packages/icons/icons/plug-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plug-x.svg b/packages/icons/icons/plug-x.svg new file mode 100644 index 000000000..140c2b8d7 --- /dev/null +++ b/packages/icons/icons/plug-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plug.svg b/packages/icons/icons/plug.svg new file mode 100644 index 000000000..0d07e736b --- /dev/null +++ b/packages/icons/icons/plug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/plus.svg b/packages/icons/icons/plus.svg new file mode 100644 index 000000000..5e6b6baae --- /dev/null +++ b/packages/icons/icons/plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/png.svg b/packages/icons/icons/png.svg new file mode 100644 index 000000000..5b95a7eca --- /dev/null +++ b/packages/icons/icons/png.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/podium-off.svg b/packages/icons/icons/podium-off.svg new file mode 100644 index 000000000..fa004ce9a --- /dev/null +++ b/packages/icons/icons/podium-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/podium.svg b/packages/icons/icons/podium.svg new file mode 100644 index 000000000..03c8d3db6 --- /dev/null +++ b/packages/icons/icons/podium.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/point-off.svg b/packages/icons/icons/point-off.svg new file mode 100644 index 000000000..61443ddf3 --- /dev/null +++ b/packages/icons/icons/point-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/point.svg b/packages/icons/icons/point.svg new file mode 100644 index 000000000..dcada57e5 --- /dev/null +++ b/packages/icons/icons/point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pointer.svg b/packages/icons/icons/pointer.svg new file mode 100644 index 000000000..d3f86f679 --- /dev/null +++ b/packages/icons/icons/pointer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pokeball-off.svg b/packages/icons/icons/pokeball-off.svg new file mode 100644 index 000000000..736bb082b --- /dev/null +++ b/packages/icons/icons/pokeball-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pokeball.svg b/packages/icons/icons/pokeball.svg new file mode 100644 index 000000000..51a59bc24 --- /dev/null +++ b/packages/icons/icons/pokeball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/poker-chip.svg b/packages/icons/icons/poker-chip.svg new file mode 100644 index 000000000..c12af27a0 --- /dev/null +++ b/packages/icons/icons/poker-chip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/polaroid.svg b/packages/icons/icons/polaroid.svg new file mode 100644 index 000000000..14315ba8d --- /dev/null +++ b/packages/icons/icons/polaroid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/polygon-off.svg b/packages/icons/icons/polygon-off.svg new file mode 100644 index 000000000..29824289a --- /dev/null +++ b/packages/icons/icons/polygon-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/polygon.svg b/packages/icons/icons/polygon.svg new file mode 100644 index 000000000..fd19e1650 --- /dev/null +++ b/packages/icons/icons/polygon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/poo.svg b/packages/icons/icons/poo.svg new file mode 100644 index 000000000..a6950489a --- /dev/null +++ b/packages/icons/icons/poo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pool-off.svg b/packages/icons/icons/pool-off.svg new file mode 100644 index 000000000..6614fcb41 --- /dev/null +++ b/packages/icons/icons/pool-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pool.svg b/packages/icons/icons/pool.svg new file mode 100644 index 000000000..3062ecb4e --- /dev/null +++ b/packages/icons/icons/pool.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/power.svg b/packages/icons/icons/power.svg new file mode 100644 index 000000000..6b88bfff9 --- /dev/null +++ b/packages/icons/icons/power.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pray.svg b/packages/icons/icons/pray.svg new file mode 100644 index 000000000..daf9761c3 --- /dev/null +++ b/packages/icons/icons/pray.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/premium-rights.svg b/packages/icons/icons/premium-rights.svg new file mode 100644 index 000000000..dd24bf129 --- /dev/null +++ b/packages/icons/icons/premium-rights.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/prescription.svg b/packages/icons/icons/prescription.svg new file mode 100644 index 000000000..e6fbe93a2 --- /dev/null +++ b/packages/icons/icons/prescription.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/presentation-analytics.svg b/packages/icons/icons/presentation-analytics.svg new file mode 100644 index 000000000..268ae5efa --- /dev/null +++ b/packages/icons/icons/presentation-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/presentation-off.svg b/packages/icons/icons/presentation-off.svg new file mode 100644 index 000000000..725dd516e --- /dev/null +++ b/packages/icons/icons/presentation-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/presentation.svg b/packages/icons/icons/presentation.svg new file mode 100644 index 000000000..95afb65ee --- /dev/null +++ b/packages/icons/icons/presentation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/printer-off.svg b/packages/icons/icons/printer-off.svg new file mode 100644 index 000000000..e69ecf53c --- /dev/null +++ b/packages/icons/icons/printer-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/printer.svg b/packages/icons/icons/printer.svg new file mode 100644 index 000000000..d35e8ba4c --- /dev/null +++ b/packages/icons/icons/printer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/prison.svg b/packages/icons/icons/prison.svg new file mode 100644 index 000000000..2349f75a4 --- /dev/null +++ b/packages/icons/icons/prison.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/prompt.svg b/packages/icons/icons/prompt.svg new file mode 100644 index 000000000..84494e3b3 --- /dev/null +++ b/packages/icons/icons/prompt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/propeller-off.svg b/packages/icons/icons/propeller-off.svg new file mode 100644 index 000000000..a174e80a4 --- /dev/null +++ b/packages/icons/icons/propeller-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/propeller.svg b/packages/icons/icons/propeller.svg new file mode 100644 index 000000000..9f9c2c949 --- /dev/null +++ b/packages/icons/icons/propeller.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pumpkin-scary.svg b/packages/icons/icons/pumpkin-scary.svg new file mode 100644 index 000000000..1e54372ca --- /dev/null +++ b/packages/icons/icons/pumpkin-scary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/puzzle-2.svg b/packages/icons/icons/puzzle-2.svg new file mode 100644 index 000000000..1cd915385 --- /dev/null +++ b/packages/icons/icons/puzzle-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/puzzle-off.svg b/packages/icons/icons/puzzle-off.svg new file mode 100644 index 000000000..5fc8b8edb --- /dev/null +++ b/packages/icons/icons/puzzle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/puzzle.svg b/packages/icons/icons/puzzle.svg new file mode 100644 index 000000000..0d03f43d1 --- /dev/null +++ b/packages/icons/icons/puzzle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pyramid-off.svg b/packages/icons/icons/pyramid-off.svg new file mode 100644 index 000000000..8952f352c --- /dev/null +++ b/packages/icons/icons/pyramid-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/pyramid.svg b/packages/icons/icons/pyramid.svg new file mode 100644 index 000000000..1e3503d23 --- /dev/null +++ b/packages/icons/icons/pyramid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/qrcode-off.svg b/packages/icons/icons/qrcode-off.svg new file mode 100644 index 000000000..33d4a8bfb --- /dev/null +++ b/packages/icons/icons/qrcode-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/qrcode.svg b/packages/icons/icons/qrcode.svg new file mode 100644 index 000000000..d2e1d104a --- /dev/null +++ b/packages/icons/icons/qrcode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/question-circle.svg b/packages/icons/icons/question-circle.svg new file mode 100644 index 000000000..86e8f9269 --- /dev/null +++ b/packages/icons/icons/question-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/question-mark.svg b/packages/icons/icons/question-mark.svg new file mode 100644 index 000000000..ad990f63a --- /dev/null +++ b/packages/icons/icons/question-mark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/quote-off.svg b/packages/icons/icons/quote-off.svg new file mode 100644 index 000000000..0136017d0 --- /dev/null +++ b/packages/icons/icons/quote-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/quote.svg b/packages/icons/icons/quote.svg new file mode 100644 index 000000000..5eb659d11 --- /dev/null +++ b/packages/icons/icons/quote.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radar-2.svg b/packages/icons/icons/radar-2.svg new file mode 100644 index 000000000..bf0cfbefc --- /dev/null +++ b/packages/icons/icons/radar-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radar-off.svg b/packages/icons/icons/radar-off.svg new file mode 100644 index 000000000..f2470d7aa --- /dev/null +++ b/packages/icons/icons/radar-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radar.svg b/packages/icons/icons/radar.svg new file mode 100644 index 000000000..bea131652 --- /dev/null +++ b/packages/icons/icons/radar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radio-off.svg b/packages/icons/icons/radio-off.svg new file mode 100644 index 000000000..22482022e --- /dev/null +++ b/packages/icons/icons/radio-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radio.svg b/packages/icons/icons/radio.svg new file mode 100644 index 000000000..23fd45036 --- /dev/null +++ b/packages/icons/icons/radio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radioactive-off.svg b/packages/icons/icons/radioactive-off.svg new file mode 100644 index 000000000..e394f184b --- /dev/null +++ b/packages/icons/icons/radioactive-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radioactive.svg b/packages/icons/icons/radioactive.svg new file mode 100644 index 000000000..7c1acf34e --- /dev/null +++ b/packages/icons/icons/radioactive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radius-bottom-left.svg b/packages/icons/icons/radius-bottom-left.svg new file mode 100644 index 000000000..d45e8d019 --- /dev/null +++ b/packages/icons/icons/radius-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radius-bottom-right.svg b/packages/icons/icons/radius-bottom-right.svg new file mode 100644 index 000000000..8ce6ab172 --- /dev/null +++ b/packages/icons/icons/radius-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radius-top-left.svg b/packages/icons/icons/radius-top-left.svg new file mode 100644 index 000000000..569f2f02d --- /dev/null +++ b/packages/icons/icons/radius-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/radius-top-right.svg b/packages/icons/icons/radius-top-right.svg new file mode 100644 index 000000000..d0494ae83 --- /dev/null +++ b/packages/icons/icons/radius-top-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rainbow-off.svg b/packages/icons/icons/rainbow-off.svg new file mode 100644 index 000000000..c080db5b2 --- /dev/null +++ b/packages/icons/icons/rainbow-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rainbow.svg b/packages/icons/icons/rainbow.svg new file mode 100644 index 000000000..2e6feab61 --- /dev/null +++ b/packages/icons/icons/rainbow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rating-12-plus.svg b/packages/icons/icons/rating-12-plus.svg new file mode 100644 index 000000000..893f476dc --- /dev/null +++ b/packages/icons/icons/rating-12-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rating-14-plus.svg b/packages/icons/icons/rating-14-plus.svg new file mode 100644 index 000000000..b546c9f40 --- /dev/null +++ b/packages/icons/icons/rating-14-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rating-16-plus.svg b/packages/icons/icons/rating-16-plus.svg new file mode 100644 index 000000000..9da6f1548 --- /dev/null +++ b/packages/icons/icons/rating-16-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rating-18-plus.svg b/packages/icons/icons/rating-18-plus.svg new file mode 100644 index 000000000..486a1a3dd --- /dev/null +++ b/packages/icons/icons/rating-18-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rating-21-plus.svg b/packages/icons/icons/rating-21-plus.svg new file mode 100644 index 000000000..018a80766 --- /dev/null +++ b/packages/icons/icons/rating-21-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/razor-electric.svg b/packages/icons/icons/razor-electric.svg new file mode 100644 index 000000000..0c5947ace --- /dev/null +++ b/packages/icons/icons/razor-electric.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/razor.svg b/packages/icons/icons/razor.svg new file mode 100644 index 000000000..31b57b53f --- /dev/null +++ b/packages/icons/icons/razor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/receipt-2.svg b/packages/icons/icons/receipt-2.svg new file mode 100644 index 000000000..e384f2caa --- /dev/null +++ b/packages/icons/icons/receipt-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/receipt-off.svg b/packages/icons/icons/receipt-off.svg new file mode 100644 index 000000000..b3249128c --- /dev/null +++ b/packages/icons/icons/receipt-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/receipt-refund.svg b/packages/icons/icons/receipt-refund.svg new file mode 100644 index 000000000..006b84dbd --- /dev/null +++ b/packages/icons/icons/receipt-refund.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/receipt-tax.svg b/packages/icons/icons/receipt-tax.svg new file mode 100644 index 000000000..e16d44bbf --- /dev/null +++ b/packages/icons/icons/receipt-tax.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/receipt.svg b/packages/icons/icons/receipt.svg new file mode 100644 index 000000000..8e3d7b9c8 --- /dev/null +++ b/packages/icons/icons/receipt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/recharging.svg b/packages/icons/icons/recharging.svg new file mode 100644 index 000000000..46a3e4cd2 --- /dev/null +++ b/packages/icons/icons/recharging.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/record-mail-off.svg b/packages/icons/icons/record-mail-off.svg new file mode 100644 index 000000000..0f0b626ee --- /dev/null +++ b/packages/icons/icons/record-mail-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/record-mail.svg b/packages/icons/icons/record-mail.svg new file mode 100644 index 000000000..f3b48533b --- /dev/null +++ b/packages/icons/icons/record-mail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rectangle-vertical.svg b/packages/icons/icons/rectangle-vertical.svg new file mode 100644 index 000000000..ce7ec84b1 --- /dev/null +++ b/packages/icons/icons/rectangle-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rectangle.svg b/packages/icons/icons/rectangle.svg new file mode 100644 index 000000000..e7d5ccc20 --- /dev/null +++ b/packages/icons/icons/rectangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/recycle-off.svg b/packages/icons/icons/recycle-off.svg new file mode 100644 index 000000000..4c13346fe --- /dev/null +++ b/packages/icons/icons/recycle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/recycle.svg b/packages/icons/icons/recycle.svg new file mode 100644 index 000000000..7b701acf4 --- /dev/null +++ b/packages/icons/icons/recycle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/refresh-alert.svg b/packages/icons/icons/refresh-alert.svg new file mode 100644 index 000000000..bf8363ed0 --- /dev/null +++ b/packages/icons/icons/refresh-alert.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/refresh-dot.svg b/packages/icons/icons/refresh-dot.svg new file mode 100644 index 000000000..68e21ca1f --- /dev/null +++ b/packages/icons/icons/refresh-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/refresh-off.svg b/packages/icons/icons/refresh-off.svg new file mode 100644 index 000000000..8b01912a2 --- /dev/null +++ b/packages/icons/icons/refresh-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/refresh.svg b/packages/icons/icons/refresh.svg new file mode 100644 index 000000000..94148ec6f --- /dev/null +++ b/packages/icons/icons/refresh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/regex-off.svg b/packages/icons/icons/regex-off.svg new file mode 100644 index 000000000..e9190ad6e --- /dev/null +++ b/packages/icons/icons/regex-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/regex.svg b/packages/icons/icons/regex.svg new file mode 100644 index 000000000..9463134d4 --- /dev/null +++ b/packages/icons/icons/regex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/registered.svg b/packages/icons/icons/registered.svg new file mode 100644 index 000000000..c4008a452 --- /dev/null +++ b/packages/icons/icons/registered.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/relation-many-to-many.svg b/packages/icons/icons/relation-many-to-many.svg new file mode 100644 index 000000000..028760260 --- /dev/null +++ b/packages/icons/icons/relation-many-to-many.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/relation-one-to-many.svg b/packages/icons/icons/relation-one-to-many.svg new file mode 100644 index 000000000..b21d1b24f --- /dev/null +++ b/packages/icons/icons/relation-one-to-many.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/relation-one-to-one.svg b/packages/icons/icons/relation-one-to-one.svg new file mode 100644 index 000000000..e6e266164 --- /dev/null +++ b/packages/icons/icons/relation-one-to-one.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/reload.svg b/packages/icons/icons/reload.svg new file mode 100644 index 000000000..7e21e6385 --- /dev/null +++ b/packages/icons/icons/reload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/repeat-off.svg b/packages/icons/icons/repeat-off.svg new file mode 100644 index 000000000..9dcdaf595 --- /dev/null +++ b/packages/icons/icons/repeat-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/repeat-once.svg b/packages/icons/icons/repeat-once.svg new file mode 100644 index 000000000..b6ce2e921 --- /dev/null +++ b/packages/icons/icons/repeat-once.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/repeat.svg b/packages/icons/icons/repeat.svg new file mode 100644 index 000000000..417d95692 --- /dev/null +++ b/packages/icons/icons/repeat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/replace-off.svg b/packages/icons/icons/replace-off.svg new file mode 100644 index 000000000..330062060 --- /dev/null +++ b/packages/icons/icons/replace-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/replace.svg b/packages/icons/icons/replace.svg new file mode 100644 index 000000000..e87e17001 --- /dev/null +++ b/packages/icons/icons/replace.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report-analytics.svg b/packages/icons/icons/report-analytics.svg new file mode 100644 index 000000000..268c30f53 --- /dev/null +++ b/packages/icons/icons/report-analytics.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report-medical.svg b/packages/icons/icons/report-medical.svg new file mode 100644 index 000000000..3c18bea7e --- /dev/null +++ b/packages/icons/icons/report-medical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report-money.svg b/packages/icons/icons/report-money.svg new file mode 100644 index 000000000..ca0e97141 --- /dev/null +++ b/packages/icons/icons/report-money.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report-off.svg b/packages/icons/icons/report-off.svg new file mode 100644 index 000000000..650d02669 --- /dev/null +++ b/packages/icons/icons/report-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report-search.svg b/packages/icons/icons/report-search.svg new file mode 100644 index 000000000..48f80be7d --- /dev/null +++ b/packages/icons/icons/report-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/report.svg b/packages/icons/icons/report.svg new file mode 100644 index 000000000..d59c588cb --- /dev/null +++ b/packages/icons/icons/report.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/resize.svg b/packages/icons/icons/resize.svg new file mode 100644 index 000000000..2c7149da1 --- /dev/null +++ b/packages/icons/icons/resize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ribbon-health.svg b/packages/icons/icons/ribbon-health.svg new file mode 100644 index 000000000..8558cbe13 --- /dev/null +++ b/packages/icons/icons/ribbon-health.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ripple-off.svg b/packages/icons/icons/ripple-off.svg new file mode 100644 index 000000000..0140e4ea3 --- /dev/null +++ b/packages/icons/icons/ripple-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ripple.svg b/packages/icons/icons/ripple.svg new file mode 100644 index 000000000..29693edc8 --- /dev/null +++ b/packages/icons/icons/ripple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/road-off.svg b/packages/icons/icons/road-off.svg new file mode 100644 index 000000000..81563d3cc --- /dev/null +++ b/packages/icons/icons/road-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/road-sign.svg b/packages/icons/icons/road-sign.svg new file mode 100644 index 000000000..9c79aaad4 --- /dev/null +++ b/packages/icons/icons/road-sign.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/road.svg b/packages/icons/icons/road.svg new file mode 100644 index 000000000..13c1af6a9 --- /dev/null +++ b/packages/icons/icons/road.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/robot-off.svg b/packages/icons/icons/robot-off.svg new file mode 100644 index 000000000..1ab2a0aaf --- /dev/null +++ b/packages/icons/icons/robot-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/robot.svg b/packages/icons/icons/robot.svg new file mode 100644 index 000000000..a418bf217 --- /dev/null +++ b/packages/icons/icons/robot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rocket-off.svg b/packages/icons/icons/rocket-off.svg new file mode 100644 index 000000000..0e2880bd4 --- /dev/null +++ b/packages/icons/icons/rocket-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rocket.svg b/packages/icons/icons/rocket.svg new file mode 100644 index 000000000..794a6f39a --- /dev/null +++ b/packages/icons/icons/rocket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/roller-skating.svg b/packages/icons/icons/roller-skating.svg new file mode 100644 index 000000000..039f89ea4 --- /dev/null +++ b/packages/icons/icons/roller-skating.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rollercoaster-off.svg b/packages/icons/icons/rollercoaster-off.svg new file mode 100644 index 000000000..44e758baa --- /dev/null +++ b/packages/icons/icons/rollercoaster-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rollercoaster.svg b/packages/icons/icons/rollercoaster.svg new file mode 100644 index 000000000..4f3e8623c --- /dev/null +++ b/packages/icons/icons/rollercoaster.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-0.svg b/packages/icons/icons/rosette-number-0.svg new file mode 100644 index 000000000..d5ee42856 --- /dev/null +++ b/packages/icons/icons/rosette-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-1.svg b/packages/icons/icons/rosette-number-1.svg new file mode 100644 index 000000000..1a3928047 --- /dev/null +++ b/packages/icons/icons/rosette-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-2.svg b/packages/icons/icons/rosette-number-2.svg new file mode 100644 index 000000000..797d3258e --- /dev/null +++ b/packages/icons/icons/rosette-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-3.svg b/packages/icons/icons/rosette-number-3.svg new file mode 100644 index 000000000..71742e0de --- /dev/null +++ b/packages/icons/icons/rosette-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-4.svg b/packages/icons/icons/rosette-number-4.svg new file mode 100644 index 000000000..554934608 --- /dev/null +++ b/packages/icons/icons/rosette-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-5.svg b/packages/icons/icons/rosette-number-5.svg new file mode 100644 index 000000000..7d5499cc2 --- /dev/null +++ b/packages/icons/icons/rosette-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-6.svg b/packages/icons/icons/rosette-number-6.svg new file mode 100644 index 000000000..277f1d85d --- /dev/null +++ b/packages/icons/icons/rosette-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-7.svg b/packages/icons/icons/rosette-number-7.svg new file mode 100644 index 000000000..a614545fc --- /dev/null +++ b/packages/icons/icons/rosette-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-8.svg b/packages/icons/icons/rosette-number-8.svg new file mode 100644 index 000000000..105db064d --- /dev/null +++ b/packages/icons/icons/rosette-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette-number-9.svg b/packages/icons/icons/rosette-number-9.svg new file mode 100644 index 000000000..6f331ff11 --- /dev/null +++ b/packages/icons/icons/rosette-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rosette.svg b/packages/icons/icons/rosette.svg new file mode 100644 index 000000000..61d1e62d3 --- /dev/null +++ b/packages/icons/icons/rosette.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-2.svg b/packages/icons/icons/rotate-2.svg new file mode 100644 index 000000000..a41e65c44 --- /dev/null +++ b/packages/icons/icons/rotate-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-360.svg b/packages/icons/icons/rotate-360.svg new file mode 100644 index 000000000..f90802347 --- /dev/null +++ b/packages/icons/icons/rotate-360.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-clockwise-2.svg b/packages/icons/icons/rotate-clockwise-2.svg new file mode 100644 index 000000000..6f71c1257 --- /dev/null +++ b/packages/icons/icons/rotate-clockwise-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-clockwise.svg b/packages/icons/icons/rotate-clockwise.svg new file mode 100644 index 000000000..21df873b7 --- /dev/null +++ b/packages/icons/icons/rotate-clockwise.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-dot.svg b/packages/icons/icons/rotate-dot.svg new file mode 100644 index 000000000..3862fde2d --- /dev/null +++ b/packages/icons/icons/rotate-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate-rectangle.svg b/packages/icons/icons/rotate-rectangle.svg new file mode 100644 index 000000000..b71c28a10 --- /dev/null +++ b/packages/icons/icons/rotate-rectangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rotate.svg b/packages/icons/icons/rotate.svg new file mode 100644 index 000000000..dedcca9d1 --- /dev/null +++ b/packages/icons/icons/rotate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/route-2.svg b/packages/icons/icons/route-2.svg new file mode 100644 index 000000000..350f2249e --- /dev/null +++ b/packages/icons/icons/route-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/route-off.svg b/packages/icons/icons/route-off.svg new file mode 100644 index 000000000..00fbad0e3 --- /dev/null +++ b/packages/icons/icons/route-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/route.svg b/packages/icons/icons/route.svg new file mode 100644 index 000000000..619fa8861 --- /dev/null +++ b/packages/icons/icons/route.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/router-off.svg b/packages/icons/icons/router-off.svg new file mode 100644 index 000000000..a65c0220d --- /dev/null +++ b/packages/icons/icons/router-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/router.svg b/packages/icons/icons/router.svg new file mode 100644 index 000000000..0c1a966b9 --- /dev/null +++ b/packages/icons/icons/router.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/row-insert-bottom.svg b/packages/icons/icons/row-insert-bottom.svg new file mode 100644 index 000000000..e2dac1854 --- /dev/null +++ b/packages/icons/icons/row-insert-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/row-insert-top.svg b/packages/icons/icons/row-insert-top.svg new file mode 100644 index 000000000..269efc79d --- /dev/null +++ b/packages/icons/icons/row-insert-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rss.svg b/packages/icons/icons/rss.svg new file mode 100644 index 000000000..7629da440 --- /dev/null +++ b/packages/icons/icons/rss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rubber-stamp-off.svg b/packages/icons/icons/rubber-stamp-off.svg new file mode 100644 index 000000000..bceb82e8c --- /dev/null +++ b/packages/icons/icons/rubber-stamp-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/rubber-stamp.svg b/packages/icons/icons/rubber-stamp.svg new file mode 100644 index 000000000..15ff40c38 --- /dev/null +++ b/packages/icons/icons/rubber-stamp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/icons/icons/ruler-2-off.svg b/packages/icons/icons/ruler-2-off.svg new file mode 100644 index 000000000..823c5ba69 --- /dev/null +++ b/packages/icons/icons/ruler-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ruler-2.svg b/packages/icons/icons/ruler-2.svg new file mode 100644 index 000000000..e812869ec --- /dev/null +++ b/packages/icons/icons/ruler-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ruler-3.svg b/packages/icons/icons/ruler-3.svg new file mode 100644 index 000000000..20dd258a8 --- /dev/null +++ b/packages/icons/icons/ruler-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ruler-measure.svg b/packages/icons/icons/ruler-measure.svg new file mode 100644 index 000000000..a33647f77 --- /dev/null +++ b/packages/icons/icons/ruler-measure.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ruler-off.svg b/packages/icons/icons/ruler-off.svg new file mode 100644 index 000000000..bd9243f72 --- /dev/null +++ b/packages/icons/icons/ruler-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ruler.svg b/packages/icons/icons/ruler.svg new file mode 100644 index 000000000..18a10a51d --- /dev/null +++ b/packages/icons/icons/ruler.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/run.svg b/packages/icons/icons/run.svg new file mode 100644 index 000000000..81722676c --- /dev/null +++ b/packages/icons/icons/run.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/s-turn-down.svg b/packages/icons/icons/s-turn-down.svg new file mode 100644 index 000000000..ba06064ad --- /dev/null +++ b/packages/icons/icons/s-turn-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/s-turn-left.svg b/packages/icons/icons/s-turn-left.svg new file mode 100644 index 000000000..26e79c8ca --- /dev/null +++ b/packages/icons/icons/s-turn-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/s-turn-right.svg b/packages/icons/icons/s-turn-right.svg new file mode 100644 index 000000000..44ad0dad1 --- /dev/null +++ b/packages/icons/icons/s-turn-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/s-turn-up.svg b/packages/icons/icons/s-turn-up.svg new file mode 100644 index 000000000..b5226dc9d --- /dev/null +++ b/packages/icons/icons/s-turn-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sailboat-2.svg b/packages/icons/icons/sailboat-2.svg new file mode 100644 index 000000000..c32c6eef3 --- /dev/null +++ b/packages/icons/icons/sailboat-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sailboat-off.svg b/packages/icons/icons/sailboat-off.svg new file mode 100644 index 000000000..12a974595 --- /dev/null +++ b/packages/icons/icons/sailboat-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sailboat.svg b/packages/icons/icons/sailboat.svg new file mode 100644 index 000000000..d4ae25630 --- /dev/null +++ b/packages/icons/icons/sailboat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/salad.svg b/packages/icons/icons/salad.svg new file mode 100644 index 000000000..3f6e561b7 --- /dev/null +++ b/packages/icons/icons/salad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/salt.svg b/packages/icons/icons/salt.svg new file mode 100644 index 000000000..fcfc6f3dd --- /dev/null +++ b/packages/icons/icons/salt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/satellite-off.svg b/packages/icons/icons/satellite-off.svg new file mode 100644 index 000000000..79f88eb8b --- /dev/null +++ b/packages/icons/icons/satellite-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/satellite.svg b/packages/icons/icons/satellite.svg new file mode 100644 index 000000000..08ab6de5e --- /dev/null +++ b/packages/icons/icons/satellite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sausage.svg b/packages/icons/icons/sausage.svg new file mode 100644 index 000000000..0a801dfde --- /dev/null +++ b/packages/icons/icons/sausage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scale-off.svg b/packages/icons/icons/scale-off.svg new file mode 100644 index 000000000..2bfef227f --- /dev/null +++ b/packages/icons/icons/scale-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scale-outline-off.svg b/packages/icons/icons/scale-outline-off.svg new file mode 100644 index 000000000..03cf42feb --- /dev/null +++ b/packages/icons/icons/scale-outline-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scale-outline.svg b/packages/icons/icons/scale-outline.svg new file mode 100644 index 000000000..68d98aa95 --- /dev/null +++ b/packages/icons/icons/scale-outline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scale.svg b/packages/icons/icons/scale.svg new file mode 100644 index 000000000..4322f716b --- /dev/null +++ b/packages/icons/icons/scale.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scan-eye.svg b/packages/icons/icons/scan-eye.svg new file mode 100644 index 000000000..23c076076 --- /dev/null +++ b/packages/icons/icons/scan-eye.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scan.svg b/packages/icons/icons/scan.svg new file mode 100644 index 000000000..26581c3fe --- /dev/null +++ b/packages/icons/icons/scan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/schema-off.svg b/packages/icons/icons/schema-off.svg new file mode 100644 index 000000000..26a731d7e --- /dev/null +++ b/packages/icons/icons/schema-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/schema.svg b/packages/icons/icons/schema.svg new file mode 100644 index 000000000..ef36d61ca --- /dev/null +++ b/packages/icons/icons/schema.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/school-bell.svg b/packages/icons/icons/school-bell.svg new file mode 100644 index 000000000..4448261e7 --- /dev/null +++ b/packages/icons/icons/school-bell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/school-off.svg b/packages/icons/icons/school-off.svg new file mode 100644 index 000000000..80d980ffb --- /dev/null +++ b/packages/icons/icons/school-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/school.svg b/packages/icons/icons/school.svg new file mode 100644 index 000000000..bb15e6812 --- /dev/null +++ b/packages/icons/icons/school.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scissors-off.svg b/packages/icons/icons/scissors-off.svg new file mode 100644 index 000000000..ff0fef1d4 --- /dev/null +++ b/packages/icons/icons/scissors-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scissors.svg b/packages/icons/icons/scissors.svg new file mode 100644 index 000000000..005355c6c --- /dev/null +++ b/packages/icons/icons/scissors.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scooter-electric.svg b/packages/icons/icons/scooter-electric.svg new file mode 100644 index 000000000..ee4cd04b8 --- /dev/null +++ b/packages/icons/icons/scooter-electric.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scooter.svg b/packages/icons/icons/scooter.svg new file mode 100644 index 000000000..b08efe81c --- /dev/null +++ b/packages/icons/icons/scooter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/screen-share-off.svg b/packages/icons/icons/screen-share-off.svg new file mode 100644 index 000000000..85c19f1a8 --- /dev/null +++ b/packages/icons/icons/screen-share-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/screen-share.svg b/packages/icons/icons/screen-share.svg new file mode 100644 index 000000000..5cb3e995b --- /dev/null +++ b/packages/icons/icons/screen-share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/screenshot.svg b/packages/icons/icons/screenshot.svg new file mode 100644 index 000000000..ba96de890 --- /dev/null +++ b/packages/icons/icons/screenshot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scribble-off.svg b/packages/icons/icons/scribble-off.svg new file mode 100644 index 000000000..2a010ceec --- /dev/null +++ b/packages/icons/icons/scribble-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scribble.svg b/packages/icons/icons/scribble.svg new file mode 100644 index 000000000..381345eb6 --- /dev/null +++ b/packages/icons/icons/scribble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/script-minus.svg b/packages/icons/icons/script-minus.svg new file mode 100644 index 000000000..d78218a2d --- /dev/null +++ b/packages/icons/icons/script-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/script-plus.svg b/packages/icons/icons/script-plus.svg new file mode 100644 index 000000000..d5bd679c8 --- /dev/null +++ b/packages/icons/icons/script-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/script-x.svg b/packages/icons/icons/script-x.svg new file mode 100644 index 000000000..346aca2f3 --- /dev/null +++ b/packages/icons/icons/script-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/script.svg b/packages/icons/icons/script.svg new file mode 100644 index 000000000..f57eca09a --- /dev/null +++ b/packages/icons/icons/script.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scuba-mask-off.svg b/packages/icons/icons/scuba-mask-off.svg new file mode 100644 index 000000000..d4b09c10f --- /dev/null +++ b/packages/icons/icons/scuba-mask-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/scuba-mask.svg b/packages/icons/icons/scuba-mask.svg new file mode 100644 index 000000000..adb71d2e7 --- /dev/null +++ b/packages/icons/icons/scuba-mask.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sdk.svg b/packages/icons/icons/sdk.svg new file mode 100644 index 000000000..adabe1ca1 --- /dev/null +++ b/packages/icons/icons/sdk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/search-off.svg b/packages/icons/icons/search-off.svg new file mode 100644 index 000000000..d50b4a0d5 --- /dev/null +++ b/packages/icons/icons/search-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/search.svg b/packages/icons/icons/search.svg new file mode 100644 index 000000000..2b444f7d9 --- /dev/null +++ b/packages/icons/icons/search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/section-sign.svg b/packages/icons/icons/section-sign.svg new file mode 100644 index 000000000..ccc4a35ea --- /dev/null +++ b/packages/icons/icons/section-sign.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/section.svg b/packages/icons/icons/section.svg new file mode 100644 index 000000000..0bd2f151a --- /dev/null +++ b/packages/icons/icons/section.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/seeding-off.svg b/packages/icons/icons/seeding-off.svg new file mode 100644 index 000000000..7d7438140 --- /dev/null +++ b/packages/icons/icons/seeding-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/seeding.svg b/packages/icons/icons/seeding.svg new file mode 100644 index 000000000..fe273eb36 --- /dev/null +++ b/packages/icons/icons/seeding.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/select.svg b/packages/icons/icons/select.svg new file mode 100644 index 000000000..d05e210e7 --- /dev/null +++ b/packages/icons/icons/select.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/selector.svg b/packages/icons/icons/selector.svg new file mode 100644 index 000000000..686807099 --- /dev/null +++ b/packages/icons/icons/selector.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/send-off.svg b/packages/icons/icons/send-off.svg new file mode 100644 index 000000000..107af1d7f --- /dev/null +++ b/packages/icons/icons/send-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/send.svg b/packages/icons/icons/send.svg new file mode 100644 index 000000000..6295a891a --- /dev/null +++ b/packages/icons/icons/send.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/seo.svg b/packages/icons/icons/seo.svg new file mode 100644 index 000000000..610b194a4 --- /dev/null +++ b/packages/icons/icons/seo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/separator-horizontal.svg b/packages/icons/icons/separator-horizontal.svg new file mode 100644 index 000000000..166b67275 --- /dev/null +++ b/packages/icons/icons/separator-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/separator-vertical.svg b/packages/icons/icons/separator-vertical.svg new file mode 100644 index 000000000..1518ecafc --- /dev/null +++ b/packages/icons/icons/separator-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/separator.svg b/packages/icons/icons/separator.svg new file mode 100644 index 000000000..e737e3f54 --- /dev/null +++ b/packages/icons/icons/separator.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/server-2.svg b/packages/icons/icons/server-2.svg new file mode 100644 index 000000000..5aa0ba5c3 --- /dev/null +++ b/packages/icons/icons/server-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/server-bolt.svg b/packages/icons/icons/server-bolt.svg new file mode 100644 index 000000000..6af072695 --- /dev/null +++ b/packages/icons/icons/server-bolt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/server-cog.svg b/packages/icons/icons/server-cog.svg new file mode 100644 index 000000000..1f50a3d6a --- /dev/null +++ b/packages/icons/icons/server-cog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/server-off.svg b/packages/icons/icons/server-off.svg new file mode 100644 index 000000000..b130c443b --- /dev/null +++ b/packages/icons/icons/server-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/server.svg b/packages/icons/icons/server.svg new file mode 100644 index 000000000..7a8656c29 --- /dev/null +++ b/packages/icons/icons/server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/servicemark.svg b/packages/icons/icons/servicemark.svg new file mode 100644 index 000000000..f8b7c0842 --- /dev/null +++ b/packages/icons/icons/servicemark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/settings-2.svg b/packages/icons/icons/settings-2.svg new file mode 100644 index 000000000..0fe32d5fa --- /dev/null +++ b/packages/icons/icons/settings-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/settings-automation.svg b/packages/icons/icons/settings-automation.svg new file mode 100644 index 000000000..f172040fd --- /dev/null +++ b/packages/icons/icons/settings-automation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/settings-off.svg b/packages/icons/icons/settings-off.svg new file mode 100644 index 000000000..d532f5efc --- /dev/null +++ b/packages/icons/icons/settings-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/settings.svg b/packages/icons/icons/settings.svg new file mode 100644 index 000000000..6d4fd847c --- /dev/null +++ b/packages/icons/icons/settings.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shadow-off.svg b/packages/icons/icons/shadow-off.svg new file mode 100644 index 000000000..02798121d --- /dev/null +++ b/packages/icons/icons/shadow-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shadow.svg b/packages/icons/icons/shadow.svg new file mode 100644 index 000000000..5d3765e03 --- /dev/null +++ b/packages/icons/icons/shadow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shape-2.svg b/packages/icons/icons/shape-2.svg new file mode 100644 index 000000000..3aa6b2c21 --- /dev/null +++ b/packages/icons/icons/shape-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shape-3.svg b/packages/icons/icons/shape-3.svg new file mode 100644 index 000000000..ebc33705e --- /dev/null +++ b/packages/icons/icons/shape-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shape-off.svg b/packages/icons/icons/shape-off.svg new file mode 100644 index 000000000..c6e0630e6 --- /dev/null +++ b/packages/icons/icons/shape-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shape.svg b/packages/icons/icons/shape.svg new file mode 100644 index 000000000..fa446ce20 --- /dev/null +++ b/packages/icons/icons/shape.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/share-off.svg b/packages/icons/icons/share-off.svg new file mode 100644 index 000000000..a59a3eaa4 --- /dev/null +++ b/packages/icons/icons/share-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/share.svg b/packages/icons/icons/share.svg new file mode 100644 index 000000000..6bb7ffb09 --- /dev/null +++ b/packages/icons/icons/share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-check.svg b/packages/icons/icons/shield-check.svg new file mode 100644 index 000000000..cb4dfbced --- /dev/null +++ b/packages/icons/icons/shield-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-checkered.svg b/packages/icons/icons/shield-checkered.svg new file mode 100644 index 000000000..9aec9bd91 --- /dev/null +++ b/packages/icons/icons/shield-checkered.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-chevron.svg b/packages/icons/icons/shield-chevron.svg new file mode 100644 index 000000000..104a99e75 --- /dev/null +++ b/packages/icons/icons/shield-chevron.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-half-filled.svg b/packages/icons/icons/shield-half-filled.svg new file mode 100644 index 000000000..582c5645c --- /dev/null +++ b/packages/icons/icons/shield-half-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-half.svg b/packages/icons/icons/shield-half.svg new file mode 100644 index 000000000..f94b2b90f --- /dev/null +++ b/packages/icons/icons/shield-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-lock.svg b/packages/icons/icons/shield-lock.svg new file mode 100644 index 000000000..32b3865c9 --- /dev/null +++ b/packages/icons/icons/shield-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-off.svg b/packages/icons/icons/shield-off.svg new file mode 100644 index 000000000..f88536b9e --- /dev/null +++ b/packages/icons/icons/shield-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield-x.svg b/packages/icons/icons/shield-x.svg new file mode 100644 index 000000000..1eab25d9e --- /dev/null +++ b/packages/icons/icons/shield-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shield.svg b/packages/icons/icons/shield.svg new file mode 100644 index 000000000..3a8119f0b --- /dev/null +++ b/packages/icons/icons/shield.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ship-off.svg b/packages/icons/icons/ship-off.svg new file mode 100644 index 000000000..cb1295652 --- /dev/null +++ b/packages/icons/icons/ship-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ship.svg b/packages/icons/icons/ship.svg new file mode 100644 index 000000000..1943485d3 --- /dev/null +++ b/packages/icons/icons/ship.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shirt-off.svg b/packages/icons/icons/shirt-off.svg new file mode 100644 index 000000000..6b3ba7a01 --- /dev/null +++ b/packages/icons/icons/shirt-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shirt-sport.svg b/packages/icons/icons/shirt-sport.svg new file mode 100644 index 000000000..4377c23f7 --- /dev/null +++ b/packages/icons/icons/shirt-sport.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shirt.svg b/packages/icons/icons/shirt.svg new file mode 100644 index 000000000..60d49db69 --- /dev/null +++ b/packages/icons/icons/shirt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shoe-off.svg b/packages/icons/icons/shoe-off.svg new file mode 100644 index 000000000..9faf6f295 --- /dev/null +++ b/packages/icons/icons/shoe-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shoe.svg b/packages/icons/icons/shoe.svg new file mode 100644 index 000000000..2a4a24469 --- /dev/null +++ b/packages/icons/icons/shoe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-bag.svg b/packages/icons/icons/shopping-bag.svg new file mode 100644 index 000000000..bb57f6b59 --- /dev/null +++ b/packages/icons/icons/shopping-bag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-cart-discount.svg b/packages/icons/icons/shopping-cart-discount.svg new file mode 100644 index 000000000..c852a77d0 --- /dev/null +++ b/packages/icons/icons/shopping-cart-discount.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-cart-off.svg b/packages/icons/icons/shopping-cart-off.svg new file mode 100644 index 000000000..3cff2bca6 --- /dev/null +++ b/packages/icons/icons/shopping-cart-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-cart-plus.svg b/packages/icons/icons/shopping-cart-plus.svg new file mode 100644 index 000000000..fc3189165 --- /dev/null +++ b/packages/icons/icons/shopping-cart-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-cart-x.svg b/packages/icons/icons/shopping-cart-x.svg new file mode 100644 index 000000000..77a352f5a --- /dev/null +++ b/packages/icons/icons/shopping-cart-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shopping-cart.svg b/packages/icons/icons/shopping-cart.svg new file mode 100644 index 000000000..c4af2707c --- /dev/null +++ b/packages/icons/icons/shopping-cart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shovel.svg b/packages/icons/icons/shovel.svg new file mode 100644 index 000000000..f07d5744a --- /dev/null +++ b/packages/icons/icons/shovel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/shredder.svg b/packages/icons/icons/shredder.svg new file mode 100644 index 000000000..23cf7fc8f --- /dev/null +++ b/packages/icons/icons/shredder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sign-left.svg b/packages/icons/icons/sign-left.svg new file mode 100644 index 000000000..765875989 --- /dev/null +++ b/packages/icons/icons/sign-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sign-right.svg b/packages/icons/icons/sign-right.svg new file mode 100644 index 000000000..adf070467 --- /dev/null +++ b/packages/icons/icons/sign-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signal-3g.svg b/packages/icons/icons/signal-3g.svg new file mode 100644 index 000000000..62cf1c394 --- /dev/null +++ b/packages/icons/icons/signal-3g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signal-4g-plus.svg b/packages/icons/icons/signal-4g-plus.svg new file mode 100644 index 000000000..2adb9bed3 --- /dev/null +++ b/packages/icons/icons/signal-4g-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signal-4g.svg b/packages/icons/icons/signal-4g.svg new file mode 100644 index 000000000..44bdc9751 --- /dev/null +++ b/packages/icons/icons/signal-4g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signal-5g.svg b/packages/icons/icons/signal-5g.svg new file mode 100644 index 000000000..3f4d46402 --- /dev/null +++ b/packages/icons/icons/signal-5g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signature-off.svg b/packages/icons/icons/signature-off.svg new file mode 100644 index 000000000..40d31a3f5 --- /dev/null +++ b/packages/icons/icons/signature-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/signature.svg b/packages/icons/icons/signature.svg new file mode 100644 index 000000000..f59d9fcef --- /dev/null +++ b/packages/icons/icons/signature.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sitemap-off.svg b/packages/icons/icons/sitemap-off.svg new file mode 100644 index 000000000..f5fde921d --- /dev/null +++ b/packages/icons/icons/sitemap-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sitemap.svg b/packages/icons/icons/sitemap.svg new file mode 100644 index 000000000..8622be70b --- /dev/null +++ b/packages/icons/icons/sitemap.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/skateboard-off.svg b/packages/icons/icons/skateboard-off.svg new file mode 100644 index 000000000..3d00cffaf --- /dev/null +++ b/packages/icons/icons/skateboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/skateboard.svg b/packages/icons/icons/skateboard.svg new file mode 100644 index 000000000..6f445d416 --- /dev/null +++ b/packages/icons/icons/skateboard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/skull.svg b/packages/icons/icons/skull.svg new file mode 100644 index 000000000..b11d78836 --- /dev/null +++ b/packages/icons/icons/skull.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/slash.svg b/packages/icons/icons/slash.svg new file mode 100644 index 000000000..bef76a3c3 --- /dev/null +++ b/packages/icons/icons/slash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/slashes.svg b/packages/icons/icons/slashes.svg new file mode 100644 index 000000000..9dde373ec --- /dev/null +++ b/packages/icons/icons/slashes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sleigh.svg b/packages/icons/icons/sleigh.svg new file mode 100644 index 000000000..252ef25a8 --- /dev/null +++ b/packages/icons/icons/sleigh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/slice.svg b/packages/icons/icons/slice.svg new file mode 100644 index 000000000..52a8f8f6e --- /dev/null +++ b/packages/icons/icons/slice.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/slideshow.svg b/packages/icons/icons/slideshow.svg new file mode 100644 index 000000000..5c0864593 --- /dev/null +++ b/packages/icons/icons/slideshow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/smart-home-off.svg b/packages/icons/icons/smart-home-off.svg new file mode 100644 index 000000000..bbb679980 --- /dev/null +++ b/packages/icons/icons/smart-home-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/smart-home.svg b/packages/icons/icons/smart-home.svg new file mode 100644 index 000000000..22ea66120 --- /dev/null +++ b/packages/icons/icons/smart-home.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/smoking-no.svg b/packages/icons/icons/smoking-no.svg new file mode 100644 index 000000000..e56040c42 --- /dev/null +++ b/packages/icons/icons/smoking-no.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/smoking.svg b/packages/icons/icons/smoking.svg new file mode 100644 index 000000000..47b623b8e --- /dev/null +++ b/packages/icons/icons/smoking.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/snowflake-off.svg b/packages/icons/icons/snowflake-off.svg new file mode 100644 index 000000000..ffd3c3994 --- /dev/null +++ b/packages/icons/icons/snowflake-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/snowflake.svg b/packages/icons/icons/snowflake.svg new file mode 100644 index 000000000..f70a6b07c --- /dev/null +++ b/packages/icons/icons/snowflake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/snowman.svg b/packages/icons/icons/snowman.svg new file mode 100644 index 000000000..d9f53f44d --- /dev/null +++ b/packages/icons/icons/snowman.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/soccer-field.svg b/packages/icons/icons/soccer-field.svg new file mode 100644 index 000000000..487519286 --- /dev/null +++ b/packages/icons/icons/soccer-field.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/social-off.svg b/packages/icons/icons/social-off.svg new file mode 100644 index 000000000..4edf49d56 --- /dev/null +++ b/packages/icons/icons/social-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/social.svg b/packages/icons/icons/social.svg new file mode 100644 index 000000000..a716a8baa --- /dev/null +++ b/packages/icons/icons/social.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sock.svg b/packages/icons/icons/sock.svg new file mode 100644 index 000000000..d5bace9fc --- /dev/null +++ b/packages/icons/icons/sock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sofa-off.svg b/packages/icons/icons/sofa-off.svg new file mode 100644 index 000000000..8602ee066 --- /dev/null +++ b/packages/icons/icons/sofa-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sofa.svg b/packages/icons/icons/sofa.svg new file mode 100644 index 000000000..d8afdaee7 --- /dev/null +++ b/packages/icons/icons/sofa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-0-9.svg b/packages/icons/icons/sort-0-9.svg new file mode 100644 index 000000000..36b21c86a --- /dev/null +++ b/packages/icons/icons/sort-0-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-9-0.svg b/packages/icons/icons/sort-9-0.svg new file mode 100644 index 000000000..a5e6e8f8a --- /dev/null +++ b/packages/icons/icons/sort-9-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-a-z.svg b/packages/icons/icons/sort-a-z.svg new file mode 100644 index 000000000..477263d32 --- /dev/null +++ b/packages/icons/icons/sort-a-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-ascending-2.svg b/packages/icons/icons/sort-ascending-2.svg new file mode 100644 index 000000000..4643a980d --- /dev/null +++ b/packages/icons/icons/sort-ascending-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-ascending-letters.svg b/packages/icons/icons/sort-ascending-letters.svg new file mode 100644 index 000000000..6457fd461 --- /dev/null +++ b/packages/icons/icons/sort-ascending-letters.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-ascending-numbers.svg b/packages/icons/icons/sort-ascending-numbers.svg new file mode 100644 index 000000000..5ef45c2a8 --- /dev/null +++ b/packages/icons/icons/sort-ascending-numbers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-ascending.svg b/packages/icons/icons/sort-ascending.svg new file mode 100644 index 000000000..842edeaac --- /dev/null +++ b/packages/icons/icons/sort-ascending.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-descending-2.svg b/packages/icons/icons/sort-descending-2.svg new file mode 100644 index 000000000..d2e826144 --- /dev/null +++ b/packages/icons/icons/sort-descending-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-descending-letters.svg b/packages/icons/icons/sort-descending-letters.svg new file mode 100644 index 000000000..5656cce35 --- /dev/null +++ b/packages/icons/icons/sort-descending-letters.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-descending-numbers.svg b/packages/icons/icons/sort-descending-numbers.svg new file mode 100644 index 000000000..fc4c7e210 --- /dev/null +++ b/packages/icons/icons/sort-descending-numbers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-descending.svg b/packages/icons/icons/sort-descending.svg new file mode 100644 index 000000000..279dc5a27 --- /dev/null +++ b/packages/icons/icons/sort-descending.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sort-z-a.svg b/packages/icons/icons/sort-z-a.svg new file mode 100644 index 000000000..30c6f0c98 --- /dev/null +++ b/packages/icons/icons/sort-z-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sos.svg b/packages/icons/icons/sos.svg new file mode 100644 index 000000000..0bfcb25ff --- /dev/null +++ b/packages/icons/icons/sos.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/soup-off.svg b/packages/icons/icons/soup-off.svg new file mode 100644 index 000000000..ec03bd0c4 --- /dev/null +++ b/packages/icons/icons/soup-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/soup.svg b/packages/icons/icons/soup.svg new file mode 100644 index 000000000..970032b60 --- /dev/null +++ b/packages/icons/icons/soup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/source-code.svg b/packages/icons/icons/source-code.svg new file mode 100644 index 000000000..97002f226 --- /dev/null +++ b/packages/icons/icons/source-code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/space-off.svg b/packages/icons/icons/space-off.svg new file mode 100644 index 000000000..6b383a146 --- /dev/null +++ b/packages/icons/icons/space-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/space.svg b/packages/icons/icons/space.svg new file mode 100644 index 000000000..db5381471 --- /dev/null +++ b/packages/icons/icons/space.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spacing-horizontal.svg b/packages/icons/icons/spacing-horizontal.svg new file mode 100644 index 000000000..72fdb13b7 --- /dev/null +++ b/packages/icons/icons/spacing-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spacing-vertical.svg b/packages/icons/icons/spacing-vertical.svg new file mode 100644 index 000000000..2afe06de2 --- /dev/null +++ b/packages/icons/icons/spacing-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spade.svg b/packages/icons/icons/spade.svg new file mode 100644 index 000000000..ae37c694d --- /dev/null +++ b/packages/icons/icons/spade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/speakerphone.svg b/packages/icons/icons/speakerphone.svg new file mode 100644 index 000000000..3a670c211 --- /dev/null +++ b/packages/icons/icons/speakerphone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/speedboat.svg b/packages/icons/icons/speedboat.svg new file mode 100644 index 000000000..1dce01e87 --- /dev/null +++ b/packages/icons/icons/speedboat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spider.svg b/packages/icons/icons/spider.svg new file mode 100644 index 000000000..4ccc0e4e7 --- /dev/null +++ b/packages/icons/icons/spider.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spiral-off.svg b/packages/icons/icons/spiral-off.svg new file mode 100644 index 000000000..30d2536cc --- /dev/null +++ b/packages/icons/icons/spiral-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spiral.svg b/packages/icons/icons/spiral.svg new file mode 100644 index 000000000..2c4bd5052 --- /dev/null +++ b/packages/icons/icons/spiral.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sport-billard.svg b/packages/icons/icons/sport-billard.svg new file mode 100644 index 000000000..67ed1d55b --- /dev/null +++ b/packages/icons/icons/sport-billard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spray.svg b/packages/icons/icons/spray.svg new file mode 100644 index 000000000..8a44be52a --- /dev/null +++ b/packages/icons/icons/spray.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spy-off.svg b/packages/icons/icons/spy-off.svg new file mode 100644 index 000000000..a52826548 --- /dev/null +++ b/packages/icons/icons/spy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/spy.svg b/packages/icons/icons/spy.svg new file mode 100644 index 000000000..6918e2f26 --- /dev/null +++ b/packages/icons/icons/spy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-arrow-down.svg b/packages/icons/icons/square-arrow-down.svg new file mode 100644 index 000000000..345a0393a --- /dev/null +++ b/packages/icons/icons/square-arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-arrow-left.svg b/packages/icons/icons/square-arrow-left.svg new file mode 100644 index 000000000..3f1f771ff --- /dev/null +++ b/packages/icons/icons/square-arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-arrow-right.svg b/packages/icons/icons/square-arrow-right.svg new file mode 100644 index 000000000..03a7ee446 --- /dev/null +++ b/packages/icons/icons/square-arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-arrow-up.svg b/packages/icons/icons/square-arrow-up.svg new file mode 100644 index 000000000..9ce498a6a --- /dev/null +++ b/packages/icons/icons/square-arrow-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-asterisk.svg b/packages/icons/icons/square-asterisk.svg new file mode 100644 index 000000000..3b23fc3ae --- /dev/null +++ b/packages/icons/icons/square-asterisk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-check.svg b/packages/icons/icons/square-check.svg new file mode 100644 index 000000000..6388bc2f5 --- /dev/null +++ b/packages/icons/icons/square-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevron-down.svg b/packages/icons/icons/square-chevron-down.svg new file mode 100644 index 000000000..f04bdffd0 --- /dev/null +++ b/packages/icons/icons/square-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevron-left.svg b/packages/icons/icons/square-chevron-left.svg new file mode 100644 index 000000000..07579b60d --- /dev/null +++ b/packages/icons/icons/square-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevron-right.svg b/packages/icons/icons/square-chevron-right.svg new file mode 100644 index 000000000..d24086af9 --- /dev/null +++ b/packages/icons/icons/square-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevron-up.svg b/packages/icons/icons/square-chevron-up.svg new file mode 100644 index 000000000..6b6d2aacc --- /dev/null +++ b/packages/icons/icons/square-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevrons-down.svg b/packages/icons/icons/square-chevrons-down.svg new file mode 100644 index 000000000..7a5d2ce59 --- /dev/null +++ b/packages/icons/icons/square-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevrons-left.svg b/packages/icons/icons/square-chevrons-left.svg new file mode 100644 index 000000000..0bbbde092 --- /dev/null +++ b/packages/icons/icons/square-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevrons-right.svg b/packages/icons/icons/square-chevrons-right.svg new file mode 100644 index 000000000..5dfb84bdc --- /dev/null +++ b/packages/icons/icons/square-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-chevrons-up.svg b/packages/icons/icons/square-chevrons-up.svg new file mode 100644 index 000000000..330fecf22 --- /dev/null +++ b/packages/icons/icons/square-chevrons-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-dot.svg b/packages/icons/icons/square-dot.svg new file mode 100644 index 000000000..bd51a439d --- /dev/null +++ b/packages/icons/icons/square-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f0.svg b/packages/icons/icons/square-f0.svg new file mode 100644 index 000000000..75f0438e3 --- /dev/null +++ b/packages/icons/icons/square-f0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f1.svg b/packages/icons/icons/square-f1.svg new file mode 100644 index 000000000..bbe164af5 --- /dev/null +++ b/packages/icons/icons/square-f1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f2.svg b/packages/icons/icons/square-f2.svg new file mode 100644 index 000000000..5062e07e5 --- /dev/null +++ b/packages/icons/icons/square-f2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f3.svg b/packages/icons/icons/square-f3.svg new file mode 100644 index 000000000..b1e342510 --- /dev/null +++ b/packages/icons/icons/square-f3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f4.svg b/packages/icons/icons/square-f4.svg new file mode 100644 index 000000000..1deecc1ad --- /dev/null +++ b/packages/icons/icons/square-f4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f5.svg b/packages/icons/icons/square-f5.svg new file mode 100644 index 000000000..e117297ad --- /dev/null +++ b/packages/icons/icons/square-f5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f6.svg b/packages/icons/icons/square-f6.svg new file mode 100644 index 000000000..f3233a8f3 --- /dev/null +++ b/packages/icons/icons/square-f6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f7.svg b/packages/icons/icons/square-f7.svg new file mode 100644 index 000000000..f85eb889a --- /dev/null +++ b/packages/icons/icons/square-f7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f8.svg b/packages/icons/icons/square-f8.svg new file mode 100644 index 000000000..047c10610 --- /dev/null +++ b/packages/icons/icons/square-f8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-f9.svg b/packages/icons/icons/square-f9.svg new file mode 100644 index 000000000..40e91fd8f --- /dev/null +++ b/packages/icons/icons/square-f9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-forbid-2.svg b/packages/icons/icons/square-forbid-2.svg new file mode 100644 index 000000000..bbcbaa520 --- /dev/null +++ b/packages/icons/icons/square-forbid-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-forbid.svg b/packages/icons/icons/square-forbid.svg new file mode 100644 index 000000000..a78d63027 --- /dev/null +++ b/packages/icons/icons/square-forbid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-half.svg b/packages/icons/icons/square-half.svg new file mode 100644 index 000000000..b4f28a291 --- /dev/null +++ b/packages/icons/icons/square-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-key.svg b/packages/icons/icons/square-key.svg new file mode 100644 index 000000000..478e556a4 --- /dev/null +++ b/packages/icons/icons/square-key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-a.svg b/packages/icons/icons/square-letter-a.svg new file mode 100644 index 000000000..72d5210a2 --- /dev/null +++ b/packages/icons/icons/square-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-b.svg b/packages/icons/icons/square-letter-b.svg new file mode 100644 index 000000000..895bbd456 --- /dev/null +++ b/packages/icons/icons/square-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-c.svg b/packages/icons/icons/square-letter-c.svg new file mode 100644 index 000000000..6500a0d60 --- /dev/null +++ b/packages/icons/icons/square-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-d.svg b/packages/icons/icons/square-letter-d.svg new file mode 100644 index 000000000..240fdebdc --- /dev/null +++ b/packages/icons/icons/square-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-e.svg b/packages/icons/icons/square-letter-e.svg new file mode 100644 index 000000000..00fddc5d5 --- /dev/null +++ b/packages/icons/icons/square-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-f.svg b/packages/icons/icons/square-letter-f.svg new file mode 100644 index 000000000..bed938f16 --- /dev/null +++ b/packages/icons/icons/square-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-g.svg b/packages/icons/icons/square-letter-g.svg new file mode 100644 index 000000000..49c7ab201 --- /dev/null +++ b/packages/icons/icons/square-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-h.svg b/packages/icons/icons/square-letter-h.svg new file mode 100644 index 000000000..ddd495117 --- /dev/null +++ b/packages/icons/icons/square-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-i.svg b/packages/icons/icons/square-letter-i.svg new file mode 100644 index 000000000..c3de39bbe --- /dev/null +++ b/packages/icons/icons/square-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-j.svg b/packages/icons/icons/square-letter-j.svg new file mode 100644 index 000000000..ef79cb032 --- /dev/null +++ b/packages/icons/icons/square-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-k.svg b/packages/icons/icons/square-letter-k.svg new file mode 100644 index 000000000..b03e7e948 --- /dev/null +++ b/packages/icons/icons/square-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-l.svg b/packages/icons/icons/square-letter-l.svg new file mode 100644 index 000000000..f89dad7d1 --- /dev/null +++ b/packages/icons/icons/square-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-m.svg b/packages/icons/icons/square-letter-m.svg new file mode 100644 index 000000000..d612c63e2 --- /dev/null +++ b/packages/icons/icons/square-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-n.svg b/packages/icons/icons/square-letter-n.svg new file mode 100644 index 000000000..7dc9f9b2d --- /dev/null +++ b/packages/icons/icons/square-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-o.svg b/packages/icons/icons/square-letter-o.svg new file mode 100644 index 000000000..533382311 --- /dev/null +++ b/packages/icons/icons/square-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-p.svg b/packages/icons/icons/square-letter-p.svg new file mode 100644 index 000000000..ce85c476d --- /dev/null +++ b/packages/icons/icons/square-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-q.svg b/packages/icons/icons/square-letter-q.svg new file mode 100644 index 000000000..d6cd4950b --- /dev/null +++ b/packages/icons/icons/square-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-r.svg b/packages/icons/icons/square-letter-r.svg new file mode 100644 index 000000000..420500c42 --- /dev/null +++ b/packages/icons/icons/square-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-s.svg b/packages/icons/icons/square-letter-s.svg new file mode 100644 index 000000000..c615ea60f --- /dev/null +++ b/packages/icons/icons/square-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-t.svg b/packages/icons/icons/square-letter-t.svg new file mode 100644 index 000000000..5d4eaba85 --- /dev/null +++ b/packages/icons/icons/square-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-u.svg b/packages/icons/icons/square-letter-u.svg new file mode 100644 index 000000000..e5197868c --- /dev/null +++ b/packages/icons/icons/square-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-v.svg b/packages/icons/icons/square-letter-v.svg new file mode 100644 index 000000000..5cc367f3e --- /dev/null +++ b/packages/icons/icons/square-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-w.svg b/packages/icons/icons/square-letter-w.svg new file mode 100644 index 000000000..5e5517485 --- /dev/null +++ b/packages/icons/icons/square-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-x.svg b/packages/icons/icons/square-letter-x.svg new file mode 100644 index 000000000..7b9c10e4f --- /dev/null +++ b/packages/icons/icons/square-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-y.svg b/packages/icons/icons/square-letter-y.svg new file mode 100644 index 000000000..c07506de5 --- /dev/null +++ b/packages/icons/icons/square-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-letter-z.svg b/packages/icons/icons/square-letter-z.svg new file mode 100644 index 000000000..702d382b8 --- /dev/null +++ b/packages/icons/icons/square-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-minus.svg b/packages/icons/icons/square-minus.svg new file mode 100644 index 000000000..de8a15ac1 --- /dev/null +++ b/packages/icons/icons/square-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-0.svg b/packages/icons/icons/square-number-0.svg new file mode 100644 index 000000000..88bb97f18 --- /dev/null +++ b/packages/icons/icons/square-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-1.svg b/packages/icons/icons/square-number-1.svg new file mode 100644 index 000000000..55cd9a0f8 --- /dev/null +++ b/packages/icons/icons/square-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-2.svg b/packages/icons/icons/square-number-2.svg new file mode 100644 index 000000000..3814e51d2 --- /dev/null +++ b/packages/icons/icons/square-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-3.svg b/packages/icons/icons/square-number-3.svg new file mode 100644 index 000000000..59921de6f --- /dev/null +++ b/packages/icons/icons/square-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-4.svg b/packages/icons/icons/square-number-4.svg new file mode 100644 index 000000000..54fbc2c75 --- /dev/null +++ b/packages/icons/icons/square-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-5.svg b/packages/icons/icons/square-number-5.svg new file mode 100644 index 000000000..74cbfb01e --- /dev/null +++ b/packages/icons/icons/square-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-6.svg b/packages/icons/icons/square-number-6.svg new file mode 100644 index 000000000..bdd3a1137 --- /dev/null +++ b/packages/icons/icons/square-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-7.svg b/packages/icons/icons/square-number-7.svg new file mode 100644 index 000000000..82b3fa40a --- /dev/null +++ b/packages/icons/icons/square-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-8.svg b/packages/icons/icons/square-number-8.svg new file mode 100644 index 000000000..baefd650a --- /dev/null +++ b/packages/icons/icons/square-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-number-9.svg b/packages/icons/icons/square-number-9.svg new file mode 100644 index 000000000..5b85fcb1b --- /dev/null +++ b/packages/icons/icons/square-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-off.svg b/packages/icons/icons/square-off.svg new file mode 100644 index 000000000..34d230bfe --- /dev/null +++ b/packages/icons/icons/square-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-plus.svg b/packages/icons/icons/square-plus.svg new file mode 100644 index 000000000..4c78b565d --- /dev/null +++ b/packages/icons/icons/square-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-root-2.svg b/packages/icons/icons/square-root-2.svg new file mode 100644 index 000000000..e380d3c04 --- /dev/null +++ b/packages/icons/icons/square-root-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-root.svg b/packages/icons/icons/square-root.svg new file mode 100644 index 000000000..f2879b645 --- /dev/null +++ b/packages/icons/icons/square-root.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rotated-forbid-2.svg b/packages/icons/icons/square-rotated-forbid-2.svg new file mode 100644 index 000000000..938c3547d --- /dev/null +++ b/packages/icons/icons/square-rotated-forbid-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rotated-forbid.svg b/packages/icons/icons/square-rotated-forbid.svg new file mode 100644 index 000000000..c2ab7ee9f --- /dev/null +++ b/packages/icons/icons/square-rotated-forbid.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rotated-off.svg b/packages/icons/icons/square-rotated-off.svg new file mode 100644 index 000000000..fac767d5e --- /dev/null +++ b/packages/icons/icons/square-rotated-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rotated.svg b/packages/icons/icons/square-rotated.svg new file mode 100644 index 000000000..1eed1a750 --- /dev/null +++ b/packages/icons/icons/square-rotated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-arrow-down.svg b/packages/icons/icons/square-rounded-arrow-down.svg new file mode 100644 index 000000000..de605d08d --- /dev/null +++ b/packages/icons/icons/square-rounded-arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-arrow-left.svg b/packages/icons/icons/square-rounded-arrow-left.svg new file mode 100644 index 000000000..a779edbdf --- /dev/null +++ b/packages/icons/icons/square-rounded-arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-arrow-right.svg b/packages/icons/icons/square-rounded-arrow-right.svg new file mode 100644 index 000000000..6c447942e --- /dev/null +++ b/packages/icons/icons/square-rounded-arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-arrow-up.svg b/packages/icons/icons/square-rounded-arrow-up.svg new file mode 100644 index 000000000..0ba2c9d4f --- /dev/null +++ b/packages/icons/icons/square-rounded-arrow-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-check.svg b/packages/icons/icons/square-rounded-check.svg new file mode 100644 index 000000000..3d7c50ecd --- /dev/null +++ b/packages/icons/icons/square-rounded-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevron-down.svg b/packages/icons/icons/square-rounded-chevron-down.svg new file mode 100644 index 000000000..814e7a681 --- /dev/null +++ b/packages/icons/icons/square-rounded-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevron-left.svg b/packages/icons/icons/square-rounded-chevron-left.svg new file mode 100644 index 000000000..60203bbfb --- /dev/null +++ b/packages/icons/icons/square-rounded-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevron-right.svg b/packages/icons/icons/square-rounded-chevron-right.svg new file mode 100644 index 000000000..e3a73adb1 --- /dev/null +++ b/packages/icons/icons/square-rounded-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevron-up.svg b/packages/icons/icons/square-rounded-chevron-up.svg new file mode 100644 index 000000000..dca912567 --- /dev/null +++ b/packages/icons/icons/square-rounded-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevrons-down.svg b/packages/icons/icons/square-rounded-chevrons-down.svg new file mode 100644 index 000000000..0febfb4cc --- /dev/null +++ b/packages/icons/icons/square-rounded-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevrons-left.svg b/packages/icons/icons/square-rounded-chevrons-left.svg new file mode 100644 index 000000000..fc9af3e04 --- /dev/null +++ b/packages/icons/icons/square-rounded-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevrons-right.svg b/packages/icons/icons/square-rounded-chevrons-right.svg new file mode 100644 index 000000000..ff1df38cb --- /dev/null +++ b/packages/icons/icons/square-rounded-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-chevrons-up.svg b/packages/icons/icons/square-rounded-chevrons-up.svg new file mode 100644 index 000000000..15f7a3f32 --- /dev/null +++ b/packages/icons/icons/square-rounded-chevrons-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-a.svg b/packages/icons/icons/square-rounded-letter-a.svg new file mode 100644 index 000000000..58c64cba4 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-b.svg b/packages/icons/icons/square-rounded-letter-b.svg new file mode 100644 index 000000000..1a19742d6 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-c.svg b/packages/icons/icons/square-rounded-letter-c.svg new file mode 100644 index 000000000..3b8520b37 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-d.svg b/packages/icons/icons/square-rounded-letter-d.svg new file mode 100644 index 000000000..e1f321395 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-e.svg b/packages/icons/icons/square-rounded-letter-e.svg new file mode 100644 index 000000000..135f4358d --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-f.svg b/packages/icons/icons/square-rounded-letter-f.svg new file mode 100644 index 000000000..6c73f8b46 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-g.svg b/packages/icons/icons/square-rounded-letter-g.svg new file mode 100644 index 000000000..8ec27e9a6 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-h.svg b/packages/icons/icons/square-rounded-letter-h.svg new file mode 100644 index 000000000..cdea01e34 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-i.svg b/packages/icons/icons/square-rounded-letter-i.svg new file mode 100644 index 000000000..004051b3d --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-j.svg b/packages/icons/icons/square-rounded-letter-j.svg new file mode 100644 index 000000000..6b705ae4d --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-k.svg b/packages/icons/icons/square-rounded-letter-k.svg new file mode 100644 index 000000000..1922be83d --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-l.svg b/packages/icons/icons/square-rounded-letter-l.svg new file mode 100644 index 000000000..83d979bf8 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-m.svg b/packages/icons/icons/square-rounded-letter-m.svg new file mode 100644 index 000000000..b9d935ef0 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-n.svg b/packages/icons/icons/square-rounded-letter-n.svg new file mode 100644 index 000000000..16acfadbf --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-o.svg b/packages/icons/icons/square-rounded-letter-o.svg new file mode 100644 index 000000000..53ca9cf55 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-p.svg b/packages/icons/icons/square-rounded-letter-p.svg new file mode 100644 index 000000000..d3ace29ad --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-q.svg b/packages/icons/icons/square-rounded-letter-q.svg new file mode 100644 index 000000000..33262fedf --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-r.svg b/packages/icons/icons/square-rounded-letter-r.svg new file mode 100644 index 000000000..f6cd2f23b --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-s.svg b/packages/icons/icons/square-rounded-letter-s.svg new file mode 100644 index 000000000..e6ff2847e --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-t.svg b/packages/icons/icons/square-rounded-letter-t.svg new file mode 100644 index 000000000..4c5a9a555 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-u.svg b/packages/icons/icons/square-rounded-letter-u.svg new file mode 100644 index 000000000..f7d10a420 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-v.svg b/packages/icons/icons/square-rounded-letter-v.svg new file mode 100644 index 000000000..7e273c1ea --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-w.svg b/packages/icons/icons/square-rounded-letter-w.svg new file mode 100644 index 000000000..0e9d78c63 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-x.svg b/packages/icons/icons/square-rounded-letter-x.svg new file mode 100644 index 000000000..3cda118d9 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-y.svg b/packages/icons/icons/square-rounded-letter-y.svg new file mode 100644 index 000000000..8a7643780 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-letter-z.svg b/packages/icons/icons/square-rounded-letter-z.svg new file mode 100644 index 000000000..fe11e97a1 --- /dev/null +++ b/packages/icons/icons/square-rounded-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-minus.svg b/packages/icons/icons/square-rounded-minus.svg new file mode 100644 index 000000000..ea9e70b5d --- /dev/null +++ b/packages/icons/icons/square-rounded-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-0.svg b/packages/icons/icons/square-rounded-number-0.svg new file mode 100644 index 000000000..aa9e8f78b --- /dev/null +++ b/packages/icons/icons/square-rounded-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-1.svg b/packages/icons/icons/square-rounded-number-1.svg new file mode 100644 index 000000000..b80f3f1f3 --- /dev/null +++ b/packages/icons/icons/square-rounded-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-2.svg b/packages/icons/icons/square-rounded-number-2.svg new file mode 100644 index 000000000..d1e63923e --- /dev/null +++ b/packages/icons/icons/square-rounded-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-3.svg b/packages/icons/icons/square-rounded-number-3.svg new file mode 100644 index 000000000..13a53a029 --- /dev/null +++ b/packages/icons/icons/square-rounded-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-4.svg b/packages/icons/icons/square-rounded-number-4.svg new file mode 100644 index 000000000..fbe9f5adc --- /dev/null +++ b/packages/icons/icons/square-rounded-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-5.svg b/packages/icons/icons/square-rounded-number-5.svg new file mode 100644 index 000000000..a42ee3e5b --- /dev/null +++ b/packages/icons/icons/square-rounded-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-6.svg b/packages/icons/icons/square-rounded-number-6.svg new file mode 100644 index 000000000..39b05e81a --- /dev/null +++ b/packages/icons/icons/square-rounded-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-7.svg b/packages/icons/icons/square-rounded-number-7.svg new file mode 100644 index 000000000..62775da47 --- /dev/null +++ b/packages/icons/icons/square-rounded-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-8.svg b/packages/icons/icons/square-rounded-number-8.svg new file mode 100644 index 000000000..e7da8e851 --- /dev/null +++ b/packages/icons/icons/square-rounded-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-number-9.svg b/packages/icons/icons/square-rounded-number-9.svg new file mode 100644 index 000000000..009ffc70c --- /dev/null +++ b/packages/icons/icons/square-rounded-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-plus.svg b/packages/icons/icons/square-rounded-plus.svg new file mode 100644 index 000000000..69b491002 --- /dev/null +++ b/packages/icons/icons/square-rounded-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded-x.svg b/packages/icons/icons/square-rounded-x.svg new file mode 100644 index 000000000..298893bfc --- /dev/null +++ b/packages/icons/icons/square-rounded-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-rounded.svg b/packages/icons/icons/square-rounded.svg new file mode 100644 index 000000000..16f9a0031 --- /dev/null +++ b/packages/icons/icons/square-rounded.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-toggle-horizontal.svg b/packages/icons/icons/square-toggle-horizontal.svg new file mode 100644 index 000000000..2c91e9896 --- /dev/null +++ b/packages/icons/icons/square-toggle-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-toggle.svg b/packages/icons/icons/square-toggle.svg new file mode 100644 index 000000000..fc174fe79 --- /dev/null +++ b/packages/icons/icons/square-toggle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square-x.svg b/packages/icons/icons/square-x.svg new file mode 100644 index 000000000..b01de15b3 --- /dev/null +++ b/packages/icons/icons/square-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/square.svg b/packages/icons/icons/square.svg new file mode 100644 index 000000000..51f4db2ad --- /dev/null +++ b/packages/icons/icons/square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/squares-diagonal.svg b/packages/icons/icons/squares-diagonal.svg new file mode 100644 index 000000000..1969f2b7b --- /dev/null +++ b/packages/icons/icons/squares-diagonal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/squares-filled.svg b/packages/icons/icons/squares-filled.svg new file mode 100644 index 000000000..64553d1eb --- /dev/null +++ b/packages/icons/icons/squares-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stack-2.svg b/packages/icons/icons/stack-2.svg new file mode 100644 index 000000000..ad921f487 --- /dev/null +++ b/packages/icons/icons/stack-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stack-3.svg b/packages/icons/icons/stack-3.svg new file mode 100644 index 000000000..33b2e91a9 --- /dev/null +++ b/packages/icons/icons/stack-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stack-pop.svg b/packages/icons/icons/stack-pop.svg new file mode 100644 index 000000000..0ab05b901 --- /dev/null +++ b/packages/icons/icons/stack-pop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stack-push.svg b/packages/icons/icons/stack-push.svg new file mode 100644 index 000000000..66365686e --- /dev/null +++ b/packages/icons/icons/stack-push.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stack.svg b/packages/icons/icons/stack.svg new file mode 100644 index 000000000..e8c3a3935 --- /dev/null +++ b/packages/icons/icons/stack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stairs-down.svg b/packages/icons/icons/stairs-down.svg new file mode 100644 index 000000000..9f852775c --- /dev/null +++ b/packages/icons/icons/stairs-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stairs-up.svg b/packages/icons/icons/stairs-up.svg new file mode 100644 index 000000000..63fa288e3 --- /dev/null +++ b/packages/icons/icons/stairs-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stairs.svg b/packages/icons/icons/stairs.svg new file mode 100644 index 000000000..d130f8637 --- /dev/null +++ b/packages/icons/icons/stairs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/star-half.svg b/packages/icons/icons/star-half.svg new file mode 100644 index 000000000..bcc7ee687 --- /dev/null +++ b/packages/icons/icons/star-half.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/star-off.svg b/packages/icons/icons/star-off.svg new file mode 100644 index 000000000..59952269f --- /dev/null +++ b/packages/icons/icons/star-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/star.svg b/packages/icons/icons/star.svg new file mode 100644 index 000000000..e5b3ccf24 --- /dev/null +++ b/packages/icons/icons/star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stars-off.svg b/packages/icons/icons/stars-off.svg new file mode 100644 index 000000000..afad5bd65 --- /dev/null +++ b/packages/icons/icons/stars-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stars.svg b/packages/icons/icons/stars.svg new file mode 100644 index 000000000..d34b67f08 --- /dev/null +++ b/packages/icons/icons/stars.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/status-change.svg b/packages/icons/icons/status-change.svg new file mode 100644 index 000000000..c965d8975 --- /dev/null +++ b/packages/icons/icons/status-change.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/steam.svg b/packages/icons/icons/steam.svg new file mode 100644 index 000000000..0f8919991 --- /dev/null +++ b/packages/icons/icons/steam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/steering-wheel-off.svg b/packages/icons/icons/steering-wheel-off.svg new file mode 100644 index 000000000..99afe4303 --- /dev/null +++ b/packages/icons/icons/steering-wheel-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/steering-wheel.svg b/packages/icons/icons/steering-wheel.svg new file mode 100644 index 000000000..c64356df8 --- /dev/null +++ b/packages/icons/icons/steering-wheel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/step-into.svg b/packages/icons/icons/step-into.svg new file mode 100644 index 000000000..9e4dbfeff --- /dev/null +++ b/packages/icons/icons/step-into.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/step-out.svg b/packages/icons/icons/step-out.svg new file mode 100644 index 000000000..5dddc946e --- /dev/null +++ b/packages/icons/icons/step-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stereo-glasses.svg b/packages/icons/icons/stereo-glasses.svg new file mode 100644 index 000000000..0ed754522 --- /dev/null +++ b/packages/icons/icons/stereo-glasses.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stethoscope-off.svg b/packages/icons/icons/stethoscope-off.svg new file mode 100644 index 000000000..355251d2c --- /dev/null +++ b/packages/icons/icons/stethoscope-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stethoscope.svg b/packages/icons/icons/stethoscope.svg new file mode 100644 index 000000000..5216f96d2 --- /dev/null +++ b/packages/icons/icons/stethoscope.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sticker.svg b/packages/icons/icons/sticker.svg new file mode 100644 index 000000000..6141bc437 --- /dev/null +++ b/packages/icons/icons/sticker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/storm-off.svg b/packages/icons/icons/storm-off.svg new file mode 100644 index 000000000..380d923d3 --- /dev/null +++ b/packages/icons/icons/storm-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/storm.svg b/packages/icons/icons/storm.svg new file mode 100644 index 000000000..1f8b0487b --- /dev/null +++ b/packages/icons/icons/storm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/stretching.svg b/packages/icons/icons/stretching.svg new file mode 100644 index 000000000..236ea85c5 --- /dev/null +++ b/packages/icons/icons/stretching.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/strikethrough.svg b/packages/icons/icons/strikethrough.svg new file mode 100644 index 000000000..8712a55f1 --- /dev/null +++ b/packages/icons/icons/strikethrough.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/submarine.svg b/packages/icons/icons/submarine.svg new file mode 100644 index 000000000..f0825b25d --- /dev/null +++ b/packages/icons/icons/submarine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/subscript.svg b/packages/icons/icons/subscript.svg new file mode 100644 index 000000000..f22d0ec37 --- /dev/null +++ b/packages/icons/icons/subscript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/subtask.svg b/packages/icons/icons/subtask.svg new file mode 100644 index 000000000..c07ae97d4 --- /dev/null +++ b/packages/icons/icons/subtask.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sum-off.svg b/packages/icons/icons/sum-off.svg new file mode 100644 index 000000000..045f30825 --- /dev/null +++ b/packages/icons/icons/sum-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sum.svg b/packages/icons/icons/sum.svg new file mode 100644 index 000000000..11ebb8531 --- /dev/null +++ b/packages/icons/icons/sum.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun-high.svg b/packages/icons/icons/sun-high.svg new file mode 100644 index 000000000..1ffb42e63 --- /dev/null +++ b/packages/icons/icons/sun-high.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun-low.svg b/packages/icons/icons/sun-low.svg new file mode 100644 index 000000000..ed3998ec4 --- /dev/null +++ b/packages/icons/icons/sun-low.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun-moon.svg b/packages/icons/icons/sun-moon.svg new file mode 100644 index 000000000..de4933db0 --- /dev/null +++ b/packages/icons/icons/sun-moon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun-off.svg b/packages/icons/icons/sun-off.svg new file mode 100644 index 000000000..83d8b3ae3 --- /dev/null +++ b/packages/icons/icons/sun-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun-wind.svg b/packages/icons/icons/sun-wind.svg new file mode 100644 index 000000000..991fccb7d --- /dev/null +++ b/packages/icons/icons/sun-wind.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sun.svg b/packages/icons/icons/sun.svg new file mode 100644 index 000000000..48b24bed4 --- /dev/null +++ b/packages/icons/icons/sun.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sunglasses.svg b/packages/icons/icons/sunglasses.svg new file mode 100644 index 000000000..a9fcacfab --- /dev/null +++ b/packages/icons/icons/sunglasses.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sunrise.svg b/packages/icons/icons/sunrise.svg new file mode 100644 index 000000000..bb9052a84 --- /dev/null +++ b/packages/icons/icons/sunrise.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sunset-2.svg b/packages/icons/icons/sunset-2.svg new file mode 100644 index 000000000..d73241636 --- /dev/null +++ b/packages/icons/icons/sunset-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sunset.svg b/packages/icons/icons/sunset.svg new file mode 100644 index 000000000..f556cbe45 --- /dev/null +++ b/packages/icons/icons/sunset.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/superscript.svg b/packages/icons/icons/superscript.svg new file mode 100644 index 000000000..74ac7a1b1 --- /dev/null +++ b/packages/icons/icons/superscript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/svg.svg b/packages/icons/icons/svg.svg new file mode 100644 index 000000000..730a26c55 --- /dev/null +++ b/packages/icons/icons/svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/swimming.svg b/packages/icons/icons/swimming.svg new file mode 100644 index 000000000..eedc12dbb --- /dev/null +++ b/packages/icons/icons/swimming.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/swipe.svg b/packages/icons/icons/swipe.svg new file mode 100644 index 000000000..6c9885e17 --- /dev/null +++ b/packages/icons/icons/swipe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/switch-2.svg b/packages/icons/icons/switch-2.svg new file mode 100644 index 000000000..eac41d864 --- /dev/null +++ b/packages/icons/icons/switch-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/switch-3.svg b/packages/icons/icons/switch-3.svg new file mode 100644 index 000000000..62be85467 --- /dev/null +++ b/packages/icons/icons/switch-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/switch-horizontal.svg b/packages/icons/icons/switch-horizontal.svg new file mode 100644 index 000000000..f308cbc59 --- /dev/null +++ b/packages/icons/icons/switch-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/switch-vertical.svg b/packages/icons/icons/switch-vertical.svg new file mode 100644 index 000000000..65d539d09 --- /dev/null +++ b/packages/icons/icons/switch-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/switch.svg b/packages/icons/icons/switch.svg new file mode 100644 index 000000000..b7ebef454 --- /dev/null +++ b/packages/icons/icons/switch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sword-off.svg b/packages/icons/icons/sword-off.svg new file mode 100644 index 000000000..2c9a8189b --- /dev/null +++ b/packages/icons/icons/sword-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/sword.svg b/packages/icons/icons/sword.svg new file mode 100644 index 000000000..b782158e4 --- /dev/null +++ b/packages/icons/icons/sword.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/swords.svg b/packages/icons/icons/swords.svg new file mode 100644 index 000000000..34c916039 --- /dev/null +++ b/packages/icons/icons/swords.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-alias.svg b/packages/icons/icons/table-alias.svg new file mode 100644 index 000000000..879dd5da1 --- /dev/null +++ b/packages/icons/icons/table-alias.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-export.svg b/packages/icons/icons/table-export.svg new file mode 100644 index 000000000..4ff1b320b --- /dev/null +++ b/packages/icons/icons/table-export.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-import.svg b/packages/icons/icons/table-import.svg new file mode 100644 index 000000000..eb7b71eac --- /dev/null +++ b/packages/icons/icons/table-import.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-off.svg b/packages/icons/icons/table-off.svg new file mode 100644 index 000000000..255284868 --- /dev/null +++ b/packages/icons/icons/table-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-options.svg b/packages/icons/icons/table-options.svg new file mode 100644 index 000000000..3c307fac5 --- /dev/null +++ b/packages/icons/icons/table-options.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table-shortcut.svg b/packages/icons/icons/table-shortcut.svg new file mode 100644 index 000000000..0f3688f3e --- /dev/null +++ b/packages/icons/icons/table-shortcut.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/table.svg b/packages/icons/icons/table.svg new file mode 100644 index 000000000..e3eed46b4 --- /dev/null +++ b/packages/icons/icons/table.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tag-off.svg b/packages/icons/icons/tag-off.svg new file mode 100644 index 000000000..99c178568 --- /dev/null +++ b/packages/icons/icons/tag-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tag.svg b/packages/icons/icons/tag.svg new file mode 100644 index 000000000..f63469226 --- /dev/null +++ b/packages/icons/icons/tag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tags-off.svg b/packages/icons/icons/tags-off.svg new file mode 100644 index 000000000..281482da6 --- /dev/null +++ b/packages/icons/icons/tags-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tags.svg b/packages/icons/icons/tags.svg new file mode 100644 index 000000000..365da2b33 --- /dev/null +++ b/packages/icons/icons/tags.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tallymark-1.svg b/packages/icons/icons/tallymark-1.svg new file mode 100644 index 000000000..5c060f2e7 --- /dev/null +++ b/packages/icons/icons/tallymark-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tallymark-2.svg b/packages/icons/icons/tallymark-2.svg new file mode 100644 index 000000000..261651ab6 --- /dev/null +++ b/packages/icons/icons/tallymark-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tallymark-3.svg b/packages/icons/icons/tallymark-3.svg new file mode 100644 index 000000000..395cacff2 --- /dev/null +++ b/packages/icons/icons/tallymark-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tallymark-4.svg b/packages/icons/icons/tallymark-4.svg new file mode 100644 index 000000000..cef30fd2d --- /dev/null +++ b/packages/icons/icons/tallymark-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tallymarks.svg b/packages/icons/icons/tallymarks.svg new file mode 100644 index 000000000..6ce2bd31b --- /dev/null +++ b/packages/icons/icons/tallymarks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tank.svg b/packages/icons/icons/tank.svg new file mode 100644 index 000000000..73858c0bc --- /dev/null +++ b/packages/icons/icons/tank.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/target-arrow.svg b/packages/icons/icons/target-arrow.svg new file mode 100644 index 000000000..34f313179 --- /dev/null +++ b/packages/icons/icons/target-arrow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/target-off.svg b/packages/icons/icons/target-off.svg new file mode 100644 index 000000000..2b02877e5 --- /dev/null +++ b/packages/icons/icons/target-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/target.svg b/packages/icons/icons/target.svg new file mode 100644 index 000000000..8d408f0fe --- /dev/null +++ b/packages/icons/icons/target.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/teapot.svg b/packages/icons/icons/teapot.svg new file mode 100644 index 000000000..7e38bb5f7 --- /dev/null +++ b/packages/icons/icons/teapot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/telescope-off.svg b/packages/icons/icons/telescope-off.svg new file mode 100644 index 000000000..71d5bd6f9 --- /dev/null +++ b/packages/icons/icons/telescope-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/telescope.svg b/packages/icons/icons/telescope.svg new file mode 100644 index 000000000..09a77f962 --- /dev/null +++ b/packages/icons/icons/telescope.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature-celsius.svg b/packages/icons/icons/temperature-celsius.svg new file mode 100644 index 000000000..ebb307ba0 --- /dev/null +++ b/packages/icons/icons/temperature-celsius.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature-fahrenheit.svg b/packages/icons/icons/temperature-fahrenheit.svg new file mode 100644 index 000000000..726df256a --- /dev/null +++ b/packages/icons/icons/temperature-fahrenheit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature-minus.svg b/packages/icons/icons/temperature-minus.svg new file mode 100644 index 000000000..9564e599b --- /dev/null +++ b/packages/icons/icons/temperature-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature-off.svg b/packages/icons/icons/temperature-off.svg new file mode 100644 index 000000000..c577a03a3 --- /dev/null +++ b/packages/icons/icons/temperature-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature-plus.svg b/packages/icons/icons/temperature-plus.svg new file mode 100644 index 000000000..407d76c60 --- /dev/null +++ b/packages/icons/icons/temperature-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/temperature.svg b/packages/icons/icons/temperature.svg new file mode 100644 index 000000000..132407448 --- /dev/null +++ b/packages/icons/icons/temperature.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/template-off.svg b/packages/icons/icons/template-off.svg new file mode 100644 index 000000000..fc0e25cef --- /dev/null +++ b/packages/icons/icons/template-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/template.svg b/packages/icons/icons/template.svg new file mode 100644 index 000000000..66e449565 --- /dev/null +++ b/packages/icons/icons/template.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tent-off.svg b/packages/icons/icons/tent-off.svg new file mode 100644 index 000000000..1ec5c250c --- /dev/null +++ b/packages/icons/icons/tent-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tent.svg b/packages/icons/icons/tent.svg new file mode 100644 index 000000000..c6be117d6 --- /dev/null +++ b/packages/icons/icons/tent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/terminal-2.svg b/packages/icons/icons/terminal-2.svg new file mode 100644 index 000000000..a3b54e881 --- /dev/null +++ b/packages/icons/icons/terminal-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/terminal.svg b/packages/icons/icons/terminal.svg new file mode 100644 index 000000000..054a92593 --- /dev/null +++ b/packages/icons/icons/terminal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/test-pipe-2.svg b/packages/icons/icons/test-pipe-2.svg new file mode 100644 index 000000000..76d7ff5ed --- /dev/null +++ b/packages/icons/icons/test-pipe-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/test-pipe-off.svg b/packages/icons/icons/test-pipe-off.svg new file mode 100644 index 000000000..c94da3252 --- /dev/null +++ b/packages/icons/icons/test-pipe-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/test-pipe.svg b/packages/icons/icons/test-pipe.svg new file mode 100644 index 000000000..62ffac01d --- /dev/null +++ b/packages/icons/icons/test-pipe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tex.svg b/packages/icons/icons/tex.svg new file mode 100644 index 000000000..891566356 --- /dev/null +++ b/packages/icons/icons/tex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-caption.svg b/packages/icons/icons/text-caption.svg new file mode 100644 index 000000000..91b6f61a6 --- /dev/null +++ b/packages/icons/icons/text-caption.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-color.svg b/packages/icons/icons/text-color.svg new file mode 100644 index 000000000..13c22084a --- /dev/null +++ b/packages/icons/icons/text-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-decrease.svg b/packages/icons/icons/text-decrease.svg new file mode 100644 index 000000000..e4684bb5d --- /dev/null +++ b/packages/icons/icons/text-decrease.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-direction-ltr.svg b/packages/icons/icons/text-direction-ltr.svg new file mode 100644 index 000000000..2c2922b32 --- /dev/null +++ b/packages/icons/icons/text-direction-ltr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-direction-rtl.svg b/packages/icons/icons/text-direction-rtl.svg new file mode 100644 index 000000000..5674c4255 --- /dev/null +++ b/packages/icons/icons/text-direction-rtl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-increase.svg b/packages/icons/icons/text-increase.svg new file mode 100644 index 000000000..c2fe09722 --- /dev/null +++ b/packages/icons/icons/text-increase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-orientation.svg b/packages/icons/icons/text-orientation.svg new file mode 100644 index 000000000..def672db8 --- /dev/null +++ b/packages/icons/icons/text-orientation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-plus.svg b/packages/icons/icons/text-plus.svg new file mode 100644 index 000000000..ea7ab4d52 --- /dev/null +++ b/packages/icons/icons/text-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-recognition.svg b/packages/icons/icons/text-recognition.svg new file mode 100644 index 000000000..ec1ed1398 --- /dev/null +++ b/packages/icons/icons/text-recognition.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-resize.svg b/packages/icons/icons/text-resize.svg new file mode 100644 index 000000000..e286ef7d8 --- /dev/null +++ b/packages/icons/icons/text-resize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-size.svg b/packages/icons/icons/text-size.svg new file mode 100644 index 000000000..5e4935718 --- /dev/null +++ b/packages/icons/icons/text-size.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-spellcheck.svg b/packages/icons/icons/text-spellcheck.svg new file mode 100644 index 000000000..0ef980db9 --- /dev/null +++ b/packages/icons/icons/text-spellcheck.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-wrap-disabled.svg b/packages/icons/icons/text-wrap-disabled.svg new file mode 100644 index 000000000..8a3b2036d --- /dev/null +++ b/packages/icons/icons/text-wrap-disabled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/text-wrap.svg b/packages/icons/icons/text-wrap.svg new file mode 100644 index 000000000..4537f9f8f --- /dev/null +++ b/packages/icons/icons/text-wrap.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/texture.svg b/packages/icons/icons/texture.svg new file mode 100644 index 000000000..0c6ab0eba --- /dev/null +++ b/packages/icons/icons/texture.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/thermometer.svg b/packages/icons/icons/thermometer.svg new file mode 100644 index 000000000..da5e9a75f --- /dev/null +++ b/packages/icons/icons/thermometer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/thumb-down-off.svg b/packages/icons/icons/thumb-down-off.svg new file mode 100644 index 000000000..90ac94ef7 --- /dev/null +++ b/packages/icons/icons/thumb-down-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/thumb-down.svg b/packages/icons/icons/thumb-down.svg new file mode 100644 index 000000000..50cb8e36d --- /dev/null +++ b/packages/icons/icons/thumb-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/thumb-up-off.svg b/packages/icons/icons/thumb-up-off.svg new file mode 100644 index 000000000..6966a98a8 --- /dev/null +++ b/packages/icons/icons/thumb-up-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/thumb-up.svg b/packages/icons/icons/thumb-up.svg new file mode 100644 index 000000000..db274add0 --- /dev/null +++ b/packages/icons/icons/thumb-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tic-tac.svg b/packages/icons/icons/tic-tac.svg new file mode 100644 index 000000000..92a2da381 --- /dev/null +++ b/packages/icons/icons/tic-tac.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ticket-off.svg b/packages/icons/icons/ticket-off.svg new file mode 100644 index 000000000..17f4ab4dd --- /dev/null +++ b/packages/icons/icons/ticket-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ticket.svg b/packages/icons/icons/ticket.svg new file mode 100644 index 000000000..ada461a08 --- /dev/null +++ b/packages/icons/icons/ticket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tie.svg b/packages/icons/icons/tie.svg new file mode 100644 index 000000000..b44de3e89 --- /dev/null +++ b/packages/icons/icons/tie.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tilde.svg b/packages/icons/icons/tilde.svg new file mode 100644 index 000000000..c863130f3 --- /dev/null +++ b/packages/icons/icons/tilde.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tilt-shift-off.svg b/packages/icons/icons/tilt-shift-off.svg new file mode 100644 index 000000000..6e2667316 --- /dev/null +++ b/packages/icons/icons/tilt-shift-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tilt-shift.svg b/packages/icons/icons/tilt-shift.svg new file mode 100644 index 000000000..5f3df1a4c --- /dev/null +++ b/packages/icons/icons/tilt-shift.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event-exclamation.svg b/packages/icons/icons/timeline-event-exclamation.svg new file mode 100644 index 000000000..5d485cbfc --- /dev/null +++ b/packages/icons/icons/timeline-event-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event-minus.svg b/packages/icons/icons/timeline-event-minus.svg new file mode 100644 index 000000000..344d3234c --- /dev/null +++ b/packages/icons/icons/timeline-event-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event-plus.svg b/packages/icons/icons/timeline-event-plus.svg new file mode 100644 index 000000000..41cc27b2c --- /dev/null +++ b/packages/icons/icons/timeline-event-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event-text.svg b/packages/icons/icons/timeline-event-text.svg new file mode 100644 index 000000000..1661a7b3c --- /dev/null +++ b/packages/icons/icons/timeline-event-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event-x.svg b/packages/icons/icons/timeline-event-x.svg new file mode 100644 index 000000000..42268701a --- /dev/null +++ b/packages/icons/icons/timeline-event-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline-event.svg b/packages/icons/icons/timeline-event.svg new file mode 100644 index 000000000..a640f09e7 --- /dev/null +++ b/packages/icons/icons/timeline-event.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/timeline.svg b/packages/icons/icons/timeline.svg new file mode 100644 index 000000000..d0b5f1d25 --- /dev/null +++ b/packages/icons/icons/timeline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tir.svg b/packages/icons/icons/tir.svg new file mode 100644 index 000000000..d966960db --- /dev/null +++ b/packages/icons/icons/tir.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/toggle-left.svg b/packages/icons/icons/toggle-left.svg new file mode 100644 index 000000000..cbc37bcab --- /dev/null +++ b/packages/icons/icons/toggle-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/toggle-right.svg b/packages/icons/icons/toggle-right.svg new file mode 100644 index 000000000..7f12b63de --- /dev/null +++ b/packages/icons/icons/toggle-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/toilet-paper-off.svg b/packages/icons/icons/toilet-paper-off.svg new file mode 100644 index 000000000..1958222c5 --- /dev/null +++ b/packages/icons/icons/toilet-paper-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/toilet-paper.svg b/packages/icons/icons/toilet-paper.svg new file mode 100644 index 000000000..8ddbea0e5 --- /dev/null +++ b/packages/icons/icons/toilet-paper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tool.svg b/packages/icons/icons/tool.svg new file mode 100644 index 000000000..703f16e27 --- /dev/null +++ b/packages/icons/icons/tool.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools-kitchen-2-off.svg b/packages/icons/icons/tools-kitchen-2-off.svg new file mode 100644 index 000000000..7522fee15 --- /dev/null +++ b/packages/icons/icons/tools-kitchen-2-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools-kitchen-2.svg b/packages/icons/icons/tools-kitchen-2.svg new file mode 100644 index 000000000..eec254778 --- /dev/null +++ b/packages/icons/icons/tools-kitchen-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools-kitchen-off.svg b/packages/icons/icons/tools-kitchen-off.svg new file mode 100644 index 000000000..0c54babcf --- /dev/null +++ b/packages/icons/icons/tools-kitchen-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools-kitchen.svg b/packages/icons/icons/tools-kitchen.svg new file mode 100644 index 000000000..ad602f9dc --- /dev/null +++ b/packages/icons/icons/tools-kitchen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools-off.svg b/packages/icons/icons/tools-off.svg new file mode 100644 index 000000000..7256b298b --- /dev/null +++ b/packages/icons/icons/tools-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tools.svg b/packages/icons/icons/tools.svg new file mode 100644 index 000000000..31949ec04 --- /dev/null +++ b/packages/icons/icons/tools.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tooltip.svg b/packages/icons/icons/tooltip.svg new file mode 100644 index 000000000..d66607df1 --- /dev/null +++ b/packages/icons/icons/tooltip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-bus.svg b/packages/icons/icons/topology-bus.svg new file mode 100644 index 000000000..93fe1e634 --- /dev/null +++ b/packages/icons/icons/topology-bus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-complex.svg b/packages/icons/icons/topology-complex.svg new file mode 100644 index 000000000..a5027565f --- /dev/null +++ b/packages/icons/icons/topology-complex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-full-hierarchy.svg b/packages/icons/icons/topology-full-hierarchy.svg new file mode 100644 index 000000000..3727dcb3e --- /dev/null +++ b/packages/icons/icons/topology-full-hierarchy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-full.svg b/packages/icons/icons/topology-full.svg new file mode 100644 index 000000000..06b96a265 --- /dev/null +++ b/packages/icons/icons/topology-full.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-ring-2.svg b/packages/icons/icons/topology-ring-2.svg new file mode 100644 index 000000000..413d65faf --- /dev/null +++ b/packages/icons/icons/topology-ring-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-ring-3.svg b/packages/icons/icons/topology-ring-3.svg new file mode 100644 index 000000000..3680c5752 --- /dev/null +++ b/packages/icons/icons/topology-ring-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-ring.svg b/packages/icons/icons/topology-ring.svg new file mode 100644 index 000000000..8f5f6f910 --- /dev/null +++ b/packages/icons/icons/topology-ring.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star-2.svg b/packages/icons/icons/topology-star-2.svg new file mode 100644 index 000000000..e4f3e225f --- /dev/null +++ b/packages/icons/icons/topology-star-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star-3.svg b/packages/icons/icons/topology-star-3.svg new file mode 100644 index 000000000..0fbc83674 --- /dev/null +++ b/packages/icons/icons/topology-star-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star-ring-2.svg b/packages/icons/icons/topology-star-ring-2.svg new file mode 100644 index 000000000..778ea37a9 --- /dev/null +++ b/packages/icons/icons/topology-star-ring-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star-ring-3.svg b/packages/icons/icons/topology-star-ring-3.svg new file mode 100644 index 000000000..9ed233204 --- /dev/null +++ b/packages/icons/icons/topology-star-ring-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star-ring.svg b/packages/icons/icons/topology-star-ring.svg new file mode 100644 index 000000000..50f4e66f3 --- /dev/null +++ b/packages/icons/icons/topology-star-ring.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/topology-star.svg b/packages/icons/icons/topology-star.svg new file mode 100644 index 000000000..0014a1e4e --- /dev/null +++ b/packages/icons/icons/topology-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/torii.svg b/packages/icons/icons/torii.svg new file mode 100644 index 000000000..9ab644c03 --- /dev/null +++ b/packages/icons/icons/torii.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tornado.svg b/packages/icons/icons/tornado.svg new file mode 100644 index 000000000..e9e356efc --- /dev/null +++ b/packages/icons/icons/tornado.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tournament.svg b/packages/icons/icons/tournament.svg new file mode 100644 index 000000000..1ced015eb --- /dev/null +++ b/packages/icons/icons/tournament.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tower-off.svg b/packages/icons/icons/tower-off.svg new file mode 100644 index 000000000..e9a695000 --- /dev/null +++ b/packages/icons/icons/tower-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tower.svg b/packages/icons/icons/tower.svg new file mode 100644 index 000000000..cf35f8fa3 --- /dev/null +++ b/packages/icons/icons/tower.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/track.svg b/packages/icons/icons/track.svg new file mode 100644 index 000000000..331dc932f --- /dev/null +++ b/packages/icons/icons/track.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tractor.svg b/packages/icons/icons/tractor.svg new file mode 100644 index 000000000..85d7e65af --- /dev/null +++ b/packages/icons/icons/tractor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trademark.svg b/packages/icons/icons/trademark.svg new file mode 100644 index 000000000..43eab46dc --- /dev/null +++ b/packages/icons/icons/trademark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/traffic-cone-off.svg b/packages/icons/icons/traffic-cone-off.svg new file mode 100644 index 000000000..ada12bbb3 --- /dev/null +++ b/packages/icons/icons/traffic-cone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/traffic-cone.svg b/packages/icons/icons/traffic-cone.svg new file mode 100644 index 000000000..506dbf114 --- /dev/null +++ b/packages/icons/icons/traffic-cone.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/traffic-lights-off.svg b/packages/icons/icons/traffic-lights-off.svg new file mode 100644 index 000000000..285c3d0da --- /dev/null +++ b/packages/icons/icons/traffic-lights-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/traffic-lights.svg b/packages/icons/icons/traffic-lights.svg new file mode 100644 index 000000000..202770166 --- /dev/null +++ b/packages/icons/icons/traffic-lights.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/train.svg b/packages/icons/icons/train.svg new file mode 100644 index 000000000..90434cf63 --- /dev/null +++ b/packages/icons/icons/train.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transfer-in.svg b/packages/icons/icons/transfer-in.svg new file mode 100644 index 000000000..5107fe7cf --- /dev/null +++ b/packages/icons/icons/transfer-in.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transfer-out.svg b/packages/icons/icons/transfer-out.svg new file mode 100644 index 000000000..38045f0aa --- /dev/null +++ b/packages/icons/icons/transfer-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transform.svg b/packages/icons/icons/transform.svg new file mode 100644 index 000000000..d86223fcb --- /dev/null +++ b/packages/icons/icons/transform.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transition-bottom.svg b/packages/icons/icons/transition-bottom.svg new file mode 100644 index 000000000..5df516c51 --- /dev/null +++ b/packages/icons/icons/transition-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transition-left.svg b/packages/icons/icons/transition-left.svg new file mode 100644 index 000000000..abbf330df --- /dev/null +++ b/packages/icons/icons/transition-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transition-right.svg b/packages/icons/icons/transition-right.svg new file mode 100644 index 000000000..d003d199a --- /dev/null +++ b/packages/icons/icons/transition-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/transition-top.svg b/packages/icons/icons/transition-top.svg new file mode 100644 index 000000000..1c412bb77 --- /dev/null +++ b/packages/icons/icons/transition-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trash-off.svg b/packages/icons/icons/trash-off.svg new file mode 100644 index 000000000..a327ea1e5 --- /dev/null +++ b/packages/icons/icons/trash-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trash-x.svg b/packages/icons/icons/trash-x.svg new file mode 100644 index 000000000..6b3cdcbc0 --- /dev/null +++ b/packages/icons/icons/trash-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trash.svg b/packages/icons/icons/trash.svg new file mode 100644 index 000000000..72171ec91 --- /dev/null +++ b/packages/icons/icons/trash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/tree.svg b/packages/icons/icons/tree.svg new file mode 100644 index 000000000..12a625d50 --- /dev/null +++ b/packages/icons/icons/tree.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trees.svg b/packages/icons/icons/trees.svg new file mode 100644 index 000000000..cec8c7ff7 --- /dev/null +++ b/packages/icons/icons/trees.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trekking.svg b/packages/icons/icons/trekking.svg new file mode 100644 index 000000000..3a193449b --- /dev/null +++ b/packages/icons/icons/trekking.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-down-2.svg b/packages/icons/icons/trending-down-2.svg new file mode 100644 index 000000000..62ad3f174 --- /dev/null +++ b/packages/icons/icons/trending-down-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-down-3.svg b/packages/icons/icons/trending-down-3.svg new file mode 100644 index 000000000..c5202c002 --- /dev/null +++ b/packages/icons/icons/trending-down-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-down.svg b/packages/icons/icons/trending-down.svg new file mode 100644 index 000000000..b7f68097f --- /dev/null +++ b/packages/icons/icons/trending-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-up-2.svg b/packages/icons/icons/trending-up-2.svg new file mode 100644 index 000000000..77665bc4e --- /dev/null +++ b/packages/icons/icons/trending-up-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-up-3.svg b/packages/icons/icons/trending-up-3.svg new file mode 100644 index 000000000..b5438a38f --- /dev/null +++ b/packages/icons/icons/trending-up-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trending-up.svg b/packages/icons/icons/trending-up.svg new file mode 100644 index 000000000..3ef480d48 --- /dev/null +++ b/packages/icons/icons/trending-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/triangle-inverted.svg b/packages/icons/icons/triangle-inverted.svg new file mode 100644 index 000000000..d0fc3f530 --- /dev/null +++ b/packages/icons/icons/triangle-inverted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/triangle-off.svg b/packages/icons/icons/triangle-off.svg new file mode 100644 index 000000000..5b93fd90b --- /dev/null +++ b/packages/icons/icons/triangle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/triangle-square-circle.svg b/packages/icons/icons/triangle-square-circle.svg new file mode 100644 index 000000000..82423b779 --- /dev/null +++ b/packages/icons/icons/triangle-square-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/triangle.svg b/packages/icons/icons/triangle.svg new file mode 100644 index 000000000..c80315a7a --- /dev/null +++ b/packages/icons/icons/triangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/triangles.svg b/packages/icons/icons/triangles.svg new file mode 100644 index 000000000..be07a1907 --- /dev/null +++ b/packages/icons/icons/triangles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trident.svg b/packages/icons/icons/trident.svg new file mode 100644 index 000000000..ad404339a --- /dev/null +++ b/packages/icons/icons/trident.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trolley.svg b/packages/icons/icons/trolley.svg new file mode 100644 index 000000000..7e0c8a031 --- /dev/null +++ b/packages/icons/icons/trolley.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trophy-off.svg b/packages/icons/icons/trophy-off.svg new file mode 100644 index 000000000..fd31db464 --- /dev/null +++ b/packages/icons/icons/trophy-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trophy.svg b/packages/icons/icons/trophy.svg new file mode 100644 index 000000000..bd2543677 --- /dev/null +++ b/packages/icons/icons/trophy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/trowel.svg b/packages/icons/icons/trowel.svg new file mode 100644 index 000000000..9d6e815fe --- /dev/null +++ b/packages/icons/icons/trowel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/truck-delivery.svg b/packages/icons/icons/truck-delivery.svg new file mode 100644 index 000000000..85912cae9 --- /dev/null +++ b/packages/icons/icons/truck-delivery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/truck-loading.svg b/packages/icons/icons/truck-loading.svg new file mode 100644 index 000000000..510e0a5d6 --- /dev/null +++ b/packages/icons/icons/truck-loading.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/truck-off.svg b/packages/icons/icons/truck-off.svg new file mode 100644 index 000000000..03f2484ee --- /dev/null +++ b/packages/icons/icons/truck-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/truck-return.svg b/packages/icons/icons/truck-return.svg new file mode 100644 index 000000000..11aa405ab --- /dev/null +++ b/packages/icons/icons/truck-return.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/truck.svg b/packages/icons/icons/truck.svg new file mode 100644 index 000000000..38c6e7458 --- /dev/null +++ b/packages/icons/icons/truck.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/txt.svg b/packages/icons/icons/txt.svg new file mode 100644 index 000000000..c63ecfb36 --- /dev/null +++ b/packages/icons/icons/txt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/typography-off.svg b/packages/icons/icons/typography-off.svg new file mode 100644 index 000000000..e1065cddb --- /dev/null +++ b/packages/icons/icons/typography-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/typography.svg b/packages/icons/icons/typography.svg new file mode 100644 index 000000000..ac0adebde --- /dev/null +++ b/packages/icons/icons/typography.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/uf-off.svg b/packages/icons/icons/uf-off.svg new file mode 100644 index 000000000..8c775be7e --- /dev/null +++ b/packages/icons/icons/uf-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ufo.svg b/packages/icons/icons/ufo.svg new file mode 100644 index 000000000..0fa5c0648 --- /dev/null +++ b/packages/icons/icons/ufo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/umbrella-off.svg b/packages/icons/icons/umbrella-off.svg new file mode 100644 index 000000000..a5d0ac7e7 --- /dev/null +++ b/packages/icons/icons/umbrella-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/umbrella.svg b/packages/icons/icons/umbrella.svg new file mode 100644 index 000000000..a5f02a072 --- /dev/null +++ b/packages/icons/icons/umbrella.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/underline.svg b/packages/icons/icons/underline.svg new file mode 100644 index 000000000..d5e48dc4c --- /dev/null +++ b/packages/icons/icons/underline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/unlink.svg b/packages/icons/icons/unlink.svg new file mode 100644 index 000000000..662283f65 --- /dev/null +++ b/packages/icons/icons/unlink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/upload.svg b/packages/icons/icons/upload.svg new file mode 100644 index 000000000..e9f7680b6 --- /dev/null +++ b/packages/icons/icons/upload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/urgent.svg b/packages/icons/icons/urgent.svg new file mode 100644 index 000000000..c84429517 --- /dev/null +++ b/packages/icons/icons/urgent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/usb.svg b/packages/icons/icons/usb.svg new file mode 100644 index 000000000..6f7cdd100 --- /dev/null +++ b/packages/icons/icons/usb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-check.svg b/packages/icons/icons/user-check.svg new file mode 100644 index 000000000..631a43c90 --- /dev/null +++ b/packages/icons/icons/user-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-circle.svg b/packages/icons/icons/user-circle.svg new file mode 100644 index 000000000..889e612dd --- /dev/null +++ b/packages/icons/icons/user-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-exclamation.svg b/packages/icons/icons/user-exclamation.svg new file mode 100644 index 000000000..d2f90a288 --- /dev/null +++ b/packages/icons/icons/user-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-minus.svg b/packages/icons/icons/user-minus.svg new file mode 100644 index 000000000..ac336cbfd --- /dev/null +++ b/packages/icons/icons/user-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-off.svg b/packages/icons/icons/user-off.svg new file mode 100644 index 000000000..614c444b4 --- /dev/null +++ b/packages/icons/icons/user-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-plus.svg b/packages/icons/icons/user-plus.svg new file mode 100644 index 000000000..262f86f42 --- /dev/null +++ b/packages/icons/icons/user-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-search.svg b/packages/icons/icons/user-search.svg new file mode 100644 index 000000000..f24062563 --- /dev/null +++ b/packages/icons/icons/user-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user-x.svg b/packages/icons/icons/user-x.svg new file mode 100644 index 000000000..10ab2e94f --- /dev/null +++ b/packages/icons/icons/user-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/user.svg b/packages/icons/icons/user.svg new file mode 100644 index 000000000..b7f3bcf42 --- /dev/null +++ b/packages/icons/icons/user.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/users.svg b/packages/icons/icons/users.svg new file mode 100644 index 000000000..61555bbe3 --- /dev/null +++ b/packages/icons/icons/users.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/uv-index.svg b/packages/icons/icons/uv-index.svg new file mode 100644 index 000000000..4289b2018 --- /dev/null +++ b/packages/icons/icons/uv-index.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/ux-circle.svg b/packages/icons/icons/ux-circle.svg new file mode 100644 index 000000000..1016c2ee3 --- /dev/null +++ b/packages/icons/icons/ux-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vaccine-bottle-off.svg b/packages/icons/icons/vaccine-bottle-off.svg new file mode 100644 index 000000000..bcf3cc882 --- /dev/null +++ b/packages/icons/icons/vaccine-bottle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vaccine-bottle.svg b/packages/icons/icons/vaccine-bottle.svg new file mode 100644 index 000000000..9491a6d46 --- /dev/null +++ b/packages/icons/icons/vaccine-bottle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vaccine-off.svg b/packages/icons/icons/vaccine-off.svg new file mode 100644 index 000000000..2ea55fba7 --- /dev/null +++ b/packages/icons/icons/vaccine-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vaccine.svg b/packages/icons/icons/vaccine.svg new file mode 100644 index 000000000..0627d01e5 --- /dev/null +++ b/packages/icons/icons/vaccine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vacuum-cleaner.svg b/packages/icons/icons/vacuum-cleaner.svg new file mode 100644 index 000000000..d3b271c12 --- /dev/null +++ b/packages/icons/icons/vacuum-cleaner.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/variable-minus.svg b/packages/icons/icons/variable-minus.svg new file mode 100644 index 000000000..5e6ad8f78 --- /dev/null +++ b/packages/icons/icons/variable-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/variable-off.svg b/packages/icons/icons/variable-off.svg new file mode 100644 index 000000000..93a840913 --- /dev/null +++ b/packages/icons/icons/variable-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/variable-plus.svg b/packages/icons/icons/variable-plus.svg new file mode 100644 index 000000000..4cab86b54 --- /dev/null +++ b/packages/icons/icons/variable-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/variable.svg b/packages/icons/icons/variable.svg new file mode 100644 index 000000000..0ef8334c6 --- /dev/null +++ b/packages/icons/icons/variable.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-bezier-2.svg b/packages/icons/icons/vector-bezier-2.svg new file mode 100644 index 000000000..4cb6198b8 --- /dev/null +++ b/packages/icons/icons/vector-bezier-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-bezier-arc.svg b/packages/icons/icons/vector-bezier-arc.svg new file mode 100644 index 000000000..b0bdc4c50 --- /dev/null +++ b/packages/icons/icons/vector-bezier-arc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-bezier-circle.svg b/packages/icons/icons/vector-bezier-circle.svg new file mode 100644 index 000000000..fb7ad5beb --- /dev/null +++ b/packages/icons/icons/vector-bezier-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-bezier.svg b/packages/icons/icons/vector-bezier.svg new file mode 100644 index 000000000..faec813f9 --- /dev/null +++ b/packages/icons/icons/vector-bezier.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-off.svg b/packages/icons/icons/vector-off.svg new file mode 100644 index 000000000..a46463bb9 --- /dev/null +++ b/packages/icons/icons/vector-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-spline.svg b/packages/icons/icons/vector-spline.svg new file mode 100644 index 000000000..7da64b6cf --- /dev/null +++ b/packages/icons/icons/vector-spline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-triangle-off.svg b/packages/icons/icons/vector-triangle-off.svg new file mode 100644 index 000000000..8c25c49ba --- /dev/null +++ b/packages/icons/icons/vector-triangle-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector-triangle.svg b/packages/icons/icons/vector-triangle.svg new file mode 100644 index 000000000..d540e1a8f --- /dev/null +++ b/packages/icons/icons/vector-triangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vector.svg b/packages/icons/icons/vector.svg new file mode 100644 index 000000000..ab85074ff --- /dev/null +++ b/packages/icons/icons/vector.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/venus.svg b/packages/icons/icons/venus.svg new file mode 100644 index 000000000..64e17566e --- /dev/null +++ b/packages/icons/icons/venus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/versions-off.svg b/packages/icons/icons/versions-off.svg new file mode 100644 index 000000000..bdde964fc --- /dev/null +++ b/packages/icons/icons/versions-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/versions.svg b/packages/icons/icons/versions.svg new file mode 100644 index 000000000..55b7b29df --- /dev/null +++ b/packages/icons/icons/versions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/video-minus.svg b/packages/icons/icons/video-minus.svg new file mode 100644 index 000000000..c66da9609 --- /dev/null +++ b/packages/icons/icons/video-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/video-off.svg b/packages/icons/icons/video-off.svg new file mode 100644 index 000000000..dcca9403d --- /dev/null +++ b/packages/icons/icons/video-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/video-plus.svg b/packages/icons/icons/video-plus.svg new file mode 100644 index 000000000..79169a170 --- /dev/null +++ b/packages/icons/icons/video-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/video.svg b/packages/icons/icons/video.svg new file mode 100644 index 000000000..9c796a7b4 --- /dev/null +++ b/packages/icons/icons/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/view-360-off.svg b/packages/icons/icons/view-360-off.svg new file mode 100644 index 000000000..a0c350d5c --- /dev/null +++ b/packages/icons/icons/view-360-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/view-360.svg b/packages/icons/icons/view-360.svg new file mode 100644 index 000000000..8e99835ec --- /dev/null +++ b/packages/icons/icons/view-360.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/viewfinder-off.svg b/packages/icons/icons/viewfinder-off.svg new file mode 100644 index 000000000..9110483cc --- /dev/null +++ b/packages/icons/icons/viewfinder-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/viewfinder.svg b/packages/icons/icons/viewfinder.svg new file mode 100644 index 000000000..c75bc297c --- /dev/null +++ b/packages/icons/icons/viewfinder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/viewport-narrow.svg b/packages/icons/icons/viewport-narrow.svg new file mode 100644 index 000000000..91d2a7c98 --- /dev/null +++ b/packages/icons/icons/viewport-narrow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/viewport-wide.svg b/packages/icons/icons/viewport-wide.svg new file mode 100644 index 000000000..bc1a65ba7 --- /dev/null +++ b/packages/icons/icons/viewport-wide.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vinyl.svg b/packages/icons/icons/vinyl.svg new file mode 100644 index 000000000..2aa076232 --- /dev/null +++ b/packages/icons/icons/vinyl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vip-off.svg b/packages/icons/icons/vip-off.svg new file mode 100644 index 000000000..d608f1cab --- /dev/null +++ b/packages/icons/icons/vip-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vip.svg b/packages/icons/icons/vip.svg new file mode 100644 index 000000000..545a8db7e --- /dev/null +++ b/packages/icons/icons/vip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/virus-off.svg b/packages/icons/icons/virus-off.svg new file mode 100644 index 000000000..9308892a4 --- /dev/null +++ b/packages/icons/icons/virus-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/virus-search.svg b/packages/icons/icons/virus-search.svg new file mode 100644 index 000000000..d97c97fc6 --- /dev/null +++ b/packages/icons/icons/virus-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/virus.svg b/packages/icons/icons/virus.svg new file mode 100644 index 000000000..f33bd02d1 --- /dev/null +++ b/packages/icons/icons/virus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vocabulary-off.svg b/packages/icons/icons/vocabulary-off.svg new file mode 100644 index 000000000..2b39e65bc --- /dev/null +++ b/packages/icons/icons/vocabulary-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/vocabulary.svg b/packages/icons/icons/vocabulary.svg new file mode 100644 index 000000000..37519b452 --- /dev/null +++ b/packages/icons/icons/vocabulary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/volume-2.svg b/packages/icons/icons/volume-2.svg new file mode 100644 index 000000000..6dc3f0e89 --- /dev/null +++ b/packages/icons/icons/volume-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/volume-3.svg b/packages/icons/icons/volume-3.svg new file mode 100644 index 000000000..ed24bf6cb --- /dev/null +++ b/packages/icons/icons/volume-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/volume-off.svg b/packages/icons/icons/volume-off.svg new file mode 100644 index 000000000..095bdea37 --- /dev/null +++ b/packages/icons/icons/volume-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/volume.svg b/packages/icons/icons/volume.svg new file mode 100644 index 000000000..6042b8f6b --- /dev/null +++ b/packages/icons/icons/volume.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/walk.svg b/packages/icons/icons/walk.svg new file mode 100644 index 000000000..98ec8f8ab --- /dev/null +++ b/packages/icons/icons/walk.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wall-off.svg b/packages/icons/icons/wall-off.svg new file mode 100644 index 000000000..b7a19ecc6 --- /dev/null +++ b/packages/icons/icons/wall-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wall.svg b/packages/icons/icons/wall.svg new file mode 100644 index 000000000..b9b1f65d5 --- /dev/null +++ b/packages/icons/icons/wall.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wallet-off.svg b/packages/icons/icons/wallet-off.svg new file mode 100644 index 000000000..88028b82c --- /dev/null +++ b/packages/icons/icons/wallet-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wallet.svg b/packages/icons/icons/wallet.svg new file mode 100644 index 000000000..bce41897f --- /dev/null +++ b/packages/icons/icons/wallet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wallpaper-off.svg b/packages/icons/icons/wallpaper-off.svg new file mode 100644 index 000000000..4fd577fbf --- /dev/null +++ b/packages/icons/icons/wallpaper-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wallpaper.svg b/packages/icons/icons/wallpaper.svg new file mode 100644 index 000000000..e75682b7c --- /dev/null +++ b/packages/icons/icons/wallpaper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wand-off.svg b/packages/icons/icons/wand-off.svg new file mode 100644 index 000000000..613825816 --- /dev/null +++ b/packages/icons/icons/wand-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wand.svg b/packages/icons/icons/wand.svg new file mode 100644 index 000000000..91c9da172 --- /dev/null +++ b/packages/icons/icons/wand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-1.svg b/packages/icons/icons/wash-dry-1.svg new file mode 100644 index 000000000..a1132e893 --- /dev/null +++ b/packages/icons/icons/wash-dry-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-2.svg b/packages/icons/icons/wash-dry-2.svg new file mode 100644 index 000000000..7773164df --- /dev/null +++ b/packages/icons/icons/wash-dry-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-3.svg b/packages/icons/icons/wash-dry-3.svg new file mode 100644 index 000000000..82bd9dc83 --- /dev/null +++ b/packages/icons/icons/wash-dry-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-a.svg b/packages/icons/icons/wash-dry-a.svg new file mode 100644 index 000000000..d353d0e33 --- /dev/null +++ b/packages/icons/icons/wash-dry-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-dip.svg b/packages/icons/icons/wash-dry-dip.svg new file mode 100644 index 000000000..7452f0844 --- /dev/null +++ b/packages/icons/icons/wash-dry-dip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-f.svg b/packages/icons/icons/wash-dry-f.svg new file mode 100644 index 000000000..5bd606949 --- /dev/null +++ b/packages/icons/icons/wash-dry-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-hang.svg b/packages/icons/icons/wash-dry-hang.svg new file mode 100644 index 000000000..4e936f6c1 --- /dev/null +++ b/packages/icons/icons/wash-dry-hang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-off.svg b/packages/icons/icons/wash-dry-off.svg new file mode 100644 index 000000000..8526a3f86 --- /dev/null +++ b/packages/icons/icons/wash-dry-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-p.svg b/packages/icons/icons/wash-dry-p.svg new file mode 100644 index 000000000..2b59d0a28 --- /dev/null +++ b/packages/icons/icons/wash-dry-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-shade.svg b/packages/icons/icons/wash-dry-shade.svg new file mode 100644 index 000000000..2e5ce15af --- /dev/null +++ b/packages/icons/icons/wash-dry-shade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry-w.svg b/packages/icons/icons/wash-dry-w.svg new file mode 100644 index 000000000..b8ff78511 --- /dev/null +++ b/packages/icons/icons/wash-dry-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dry.svg b/packages/icons/icons/wash-dry.svg new file mode 100644 index 000000000..059d0b340 --- /dev/null +++ b/packages/icons/icons/wash-dry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dryclean-off.svg b/packages/icons/icons/wash-dryclean-off.svg new file mode 100644 index 000000000..014ee81db --- /dev/null +++ b/packages/icons/icons/wash-dryclean-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-dryclean.svg b/packages/icons/icons/wash-dryclean.svg new file mode 100644 index 000000000..85cfe420e --- /dev/null +++ b/packages/icons/icons/wash-dryclean.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-gentle.svg b/packages/icons/icons/wash-gentle.svg new file mode 100644 index 000000000..1015de2fb --- /dev/null +++ b/packages/icons/icons/wash-gentle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-machine.svg b/packages/icons/icons/wash-machine.svg new file mode 100644 index 000000000..6c59c6f98 --- /dev/null +++ b/packages/icons/icons/wash-machine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-off.svg b/packages/icons/icons/wash-off.svg new file mode 100644 index 000000000..99b6748d8 --- /dev/null +++ b/packages/icons/icons/wash-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-press.svg b/packages/icons/icons/wash-press.svg new file mode 100644 index 000000000..007f3f9ed --- /dev/null +++ b/packages/icons/icons/wash-press.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-1.svg b/packages/icons/icons/wash-temperature-1.svg new file mode 100644 index 000000000..030c49427 --- /dev/null +++ b/packages/icons/icons/wash-temperature-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-2.svg b/packages/icons/icons/wash-temperature-2.svg new file mode 100644 index 000000000..cf7c8b5e5 --- /dev/null +++ b/packages/icons/icons/wash-temperature-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-3.svg b/packages/icons/icons/wash-temperature-3.svg new file mode 100644 index 000000000..be2ef6a82 --- /dev/null +++ b/packages/icons/icons/wash-temperature-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-4.svg b/packages/icons/icons/wash-temperature-4.svg new file mode 100644 index 000000000..4220a5cdc --- /dev/null +++ b/packages/icons/icons/wash-temperature-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-5.svg b/packages/icons/icons/wash-temperature-5.svg new file mode 100644 index 000000000..7b194eea5 --- /dev/null +++ b/packages/icons/icons/wash-temperature-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-temperature-6.svg b/packages/icons/icons/wash-temperature-6.svg new file mode 100644 index 000000000..e30867554 --- /dev/null +++ b/packages/icons/icons/wash-temperature-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-tumble-dry.svg b/packages/icons/icons/wash-tumble-dry.svg new file mode 100644 index 000000000..22f6a0fc2 --- /dev/null +++ b/packages/icons/icons/wash-tumble-dry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash-tumble-off.svg b/packages/icons/icons/wash-tumble-off.svg new file mode 100644 index 000000000..31552f6bb --- /dev/null +++ b/packages/icons/icons/wash-tumble-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wash.svg b/packages/icons/icons/wash.svg new file mode 100644 index 000000000..94a47c75d --- /dev/null +++ b/packages/icons/icons/wash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wave-saw-tool.svg b/packages/icons/icons/wave-saw-tool.svg new file mode 100644 index 000000000..9875024fa --- /dev/null +++ b/packages/icons/icons/wave-saw-tool.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wave-sine.svg b/packages/icons/icons/wave-sine.svg new file mode 100644 index 000000000..a318081a6 --- /dev/null +++ b/packages/icons/icons/wave-sine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wave-square.svg b/packages/icons/icons/wave-square.svg new file mode 100644 index 000000000..0e24164b9 --- /dev/null +++ b/packages/icons/icons/wave-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/webhook-off.svg b/packages/icons/icons/webhook-off.svg new file mode 100644 index 000000000..de7b6f338 --- /dev/null +++ b/packages/icons/icons/webhook-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/webhook.svg b/packages/icons/icons/webhook.svg new file mode 100644 index 000000000..f0d4a9167 --- /dev/null +++ b/packages/icons/icons/webhook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/weight.svg b/packages/icons/icons/weight.svg new file mode 100644 index 000000000..887e2f88f --- /dev/null +++ b/packages/icons/icons/weight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wheelchair-off.svg b/packages/icons/icons/wheelchair-off.svg new file mode 100644 index 000000000..49cfb2ed4 --- /dev/null +++ b/packages/icons/icons/wheelchair-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wheelchair.svg b/packages/icons/icons/wheelchair.svg new file mode 100644 index 000000000..b25ef6cef --- /dev/null +++ b/packages/icons/icons/wheelchair.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/whirl.svg b/packages/icons/icons/whirl.svg new file mode 100644 index 000000000..b8b950f64 --- /dev/null +++ b/packages/icons/icons/whirl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wifi-0.svg b/packages/icons/icons/wifi-0.svg new file mode 100644 index 000000000..f4054aa49 --- /dev/null +++ b/packages/icons/icons/wifi-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wifi-1.svg b/packages/icons/icons/wifi-1.svg new file mode 100644 index 000000000..cdd7638b8 --- /dev/null +++ b/packages/icons/icons/wifi-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wifi-2.svg b/packages/icons/icons/wifi-2.svg new file mode 100644 index 000000000..dc5adf907 --- /dev/null +++ b/packages/icons/icons/wifi-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wifi-off.svg b/packages/icons/icons/wifi-off.svg new file mode 100644 index 000000000..96229924d --- /dev/null +++ b/packages/icons/icons/wifi-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wifi.svg b/packages/icons/icons/wifi.svg new file mode 100644 index 000000000..034a53f48 --- /dev/null +++ b/packages/icons/icons/wifi.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wind-off.svg b/packages/icons/icons/wind-off.svg new file mode 100644 index 000000000..233fb56a3 --- /dev/null +++ b/packages/icons/icons/wind-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wind.svg b/packages/icons/icons/wind.svg new file mode 100644 index 000000000..b007fbef0 --- /dev/null +++ b/packages/icons/icons/wind.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/windmill-off.svg b/packages/icons/icons/windmill-off.svg new file mode 100644 index 000000000..3fc863f05 --- /dev/null +++ b/packages/icons/icons/windmill-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/windmill.svg b/packages/icons/icons/windmill.svg new file mode 100644 index 000000000..9df35b73d --- /dev/null +++ b/packages/icons/icons/windmill.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/window-maximize.svg b/packages/icons/icons/window-maximize.svg new file mode 100644 index 000000000..0c33ceff3 --- /dev/null +++ b/packages/icons/icons/window-maximize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/window-minimize.svg b/packages/icons/icons/window-minimize.svg new file mode 100644 index 000000000..ab5dad6c3 --- /dev/null +++ b/packages/icons/icons/window-minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/window-off.svg b/packages/icons/icons/window-off.svg new file mode 100644 index 000000000..d0d7937e7 --- /dev/null +++ b/packages/icons/icons/window-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/window.svg b/packages/icons/icons/window.svg new file mode 100644 index 000000000..6066534c6 --- /dev/null +++ b/packages/icons/icons/window.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/windsock.svg b/packages/icons/icons/windsock.svg new file mode 100644 index 000000000..fb58212e4 --- /dev/null +++ b/packages/icons/icons/windsock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wiper-wash.svg b/packages/icons/icons/wiper-wash.svg new file mode 100644 index 000000000..d8b37effe --- /dev/null +++ b/packages/icons/icons/wiper-wash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wiper.svg b/packages/icons/icons/wiper.svg new file mode 100644 index 000000000..de1244584 --- /dev/null +++ b/packages/icons/icons/wiper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/woman.svg b/packages/icons/icons/woman.svg new file mode 100644 index 000000000..d31bd7eb1 --- /dev/null +++ b/packages/icons/icons/woman.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wood.svg b/packages/icons/icons/wood.svg new file mode 100644 index 000000000..632e2d260 --- /dev/null +++ b/packages/icons/icons/wood.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-download.svg b/packages/icons/icons/world-download.svg new file mode 100644 index 000000000..e22af4dd8 --- /dev/null +++ b/packages/icons/icons/world-download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-latitude.svg b/packages/icons/icons/world-latitude.svg new file mode 100644 index 000000000..f78048694 --- /dev/null +++ b/packages/icons/icons/world-latitude.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-longitude.svg b/packages/icons/icons/world-longitude.svg new file mode 100644 index 000000000..d2369634f --- /dev/null +++ b/packages/icons/icons/world-longitude.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-off.svg b/packages/icons/icons/world-off.svg new file mode 100644 index 000000000..b78a12a48 --- /dev/null +++ b/packages/icons/icons/world-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-upload.svg b/packages/icons/icons/world-upload.svg new file mode 100644 index 000000000..7fb272396 --- /dev/null +++ b/packages/icons/icons/world-upload.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world-www.svg b/packages/icons/icons/world-www.svg new file mode 100644 index 000000000..3446cceae --- /dev/null +++ b/packages/icons/icons/world-www.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/world.svg b/packages/icons/icons/world.svg new file mode 100644 index 000000000..988d3f9a8 --- /dev/null +++ b/packages/icons/icons/world.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/wrecking-ball.svg b/packages/icons/icons/wrecking-ball.svg new file mode 100644 index 000000000..9a20cb319 --- /dev/null +++ b/packages/icons/icons/wrecking-ball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/writing-off.svg b/packages/icons/icons/writing-off.svg new file mode 100644 index 000000000..fd21f8642 --- /dev/null +++ b/packages/icons/icons/writing-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/writing-sign-off.svg b/packages/icons/icons/writing-sign-off.svg new file mode 100644 index 000000000..fc85d4acb --- /dev/null +++ b/packages/icons/icons/writing-sign-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/writing-sign.svg b/packages/icons/icons/writing-sign.svg new file mode 100644 index 000000000..9ad06fa97 --- /dev/null +++ b/packages/icons/icons/writing-sign.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/writing.svg b/packages/icons/icons/writing.svg new file mode 100644 index 000000000..4ff84d2fb --- /dev/null +++ b/packages/icons/icons/writing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/x.svg b/packages/icons/icons/x.svg new file mode 100644 index 000000000..10a93dbea --- /dev/null +++ b/packages/icons/icons/x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/xbox-a.svg b/packages/icons/icons/xbox-a.svg new file mode 100644 index 000000000..2f4fbfb59 --- /dev/null +++ b/packages/icons/icons/xbox-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/xbox-b.svg b/packages/icons/icons/xbox-b.svg new file mode 100644 index 000000000..5006a28e2 --- /dev/null +++ b/packages/icons/icons/xbox-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/xbox-x.svg b/packages/icons/icons/xbox-x.svg new file mode 100644 index 000000000..f6d6fe852 --- /dev/null +++ b/packages/icons/icons/xbox-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/xbox-y.svg b/packages/icons/icons/xbox-y.svg new file mode 100644 index 000000000..eb61be75d --- /dev/null +++ b/packages/icons/icons/xbox-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/yin-yang.svg b/packages/icons/icons/yin-yang.svg new file mode 100644 index 000000000..6a7a3add0 --- /dev/null +++ b/packages/icons/icons/yin-yang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/yoga.svg b/packages/icons/icons/yoga.svg new file mode 100644 index 000000000..610692daa --- /dev/null +++ b/packages/icons/icons/yoga.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zeppelin-off.svg b/packages/icons/icons/zeppelin-off.svg new file mode 100644 index 000000000..3f2f0b82d --- /dev/null +++ b/packages/icons/icons/zeppelin-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zeppelin.svg b/packages/icons/icons/zeppelin.svg new file mode 100644 index 000000000..546397d0b --- /dev/null +++ b/packages/icons/icons/zeppelin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zip.svg b/packages/icons/icons/zip.svg new file mode 100644 index 000000000..ff349334e --- /dev/null +++ b/packages/icons/icons/zip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-aquarius.svg b/packages/icons/icons/zodiac-aquarius.svg new file mode 100644 index 000000000..0c7109958 --- /dev/null +++ b/packages/icons/icons/zodiac-aquarius.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-aries.svg b/packages/icons/icons/zodiac-aries.svg new file mode 100644 index 000000000..fdcf3ecdc --- /dev/null +++ b/packages/icons/icons/zodiac-aries.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-cancer.svg b/packages/icons/icons/zodiac-cancer.svg new file mode 100644 index 000000000..0747a4d2a --- /dev/null +++ b/packages/icons/icons/zodiac-cancer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-capricorn.svg b/packages/icons/icons/zodiac-capricorn.svg new file mode 100644 index 000000000..fb7ca217d --- /dev/null +++ b/packages/icons/icons/zodiac-capricorn.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-gemini.svg b/packages/icons/icons/zodiac-gemini.svg new file mode 100644 index 000000000..f9c7fafcf --- /dev/null +++ b/packages/icons/icons/zodiac-gemini.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-leo.svg b/packages/icons/icons/zodiac-leo.svg new file mode 100644 index 000000000..418e0f94c --- /dev/null +++ b/packages/icons/icons/zodiac-leo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-libra.svg b/packages/icons/icons/zodiac-libra.svg new file mode 100644 index 000000000..0bcb46fd5 --- /dev/null +++ b/packages/icons/icons/zodiac-libra.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-pisces.svg b/packages/icons/icons/zodiac-pisces.svg new file mode 100644 index 000000000..7da500cb3 --- /dev/null +++ b/packages/icons/icons/zodiac-pisces.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-sagittarius.svg b/packages/icons/icons/zodiac-sagittarius.svg new file mode 100644 index 000000000..f392be3ab --- /dev/null +++ b/packages/icons/icons/zodiac-sagittarius.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-scorpio.svg b/packages/icons/icons/zodiac-scorpio.svg new file mode 100644 index 000000000..effa59ad2 --- /dev/null +++ b/packages/icons/icons/zodiac-scorpio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-taurus.svg b/packages/icons/icons/zodiac-taurus.svg new file mode 100644 index 000000000..3eb996e8d --- /dev/null +++ b/packages/icons/icons/zodiac-taurus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zodiac-virgo.svg b/packages/icons/icons/zodiac-virgo.svg new file mode 100644 index 000000000..169b073d6 --- /dev/null +++ b/packages/icons/icons/zodiac-virgo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-cancel.svg b/packages/icons/icons/zoom-cancel.svg new file mode 100644 index 000000000..ea10347db --- /dev/null +++ b/packages/icons/icons/zoom-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-check.svg b/packages/icons/icons/zoom-check.svg new file mode 100644 index 000000000..86c85b6e3 --- /dev/null +++ b/packages/icons/icons/zoom-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-code.svg b/packages/icons/icons/zoom-code.svg new file mode 100644 index 000000000..7d0a06d19 --- /dev/null +++ b/packages/icons/icons/zoom-code.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-exclamation.svg b/packages/icons/icons/zoom-exclamation.svg new file mode 100644 index 000000000..94994cd71 --- /dev/null +++ b/packages/icons/icons/zoom-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-in-area.svg b/packages/icons/icons/zoom-in-area.svg new file mode 100644 index 000000000..5e312c144 --- /dev/null +++ b/packages/icons/icons/zoom-in-area.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-in.svg b/packages/icons/icons/zoom-in.svg new file mode 100644 index 000000000..bba9a9811 --- /dev/null +++ b/packages/icons/icons/zoom-in.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-money.svg b/packages/icons/icons/zoom-money.svg new file mode 100644 index 000000000..aa4994080 --- /dev/null +++ b/packages/icons/icons/zoom-money.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-out-area.svg b/packages/icons/icons/zoom-out-area.svg new file mode 100644 index 000000000..908057deb --- /dev/null +++ b/packages/icons/icons/zoom-out-area.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-out.svg b/packages/icons/icons/zoom-out.svg new file mode 100644 index 000000000..e4c6b51b9 --- /dev/null +++ b/packages/icons/icons/zoom-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-pan.svg b/packages/icons/icons/zoom-pan.svg new file mode 100644 index 000000000..b885424a3 --- /dev/null +++ b/packages/icons/icons/zoom-pan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-question.svg b/packages/icons/icons/zoom-question.svg new file mode 100644 index 000000000..9ef0b2883 --- /dev/null +++ b/packages/icons/icons/zoom-question.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-replace.svg b/packages/icons/icons/zoom-replace.svg new file mode 100644 index 000000000..ad641da72 --- /dev/null +++ b/packages/icons/icons/zoom-replace.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zoom-reset.svg b/packages/icons/icons/zoom-reset.svg new file mode 100644 index 000000000..e0cda8d26 --- /dev/null +++ b/packages/icons/icons/zoom-reset.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zzz-off.svg b/packages/icons/icons/zzz-off.svg new file mode 100644 index 000000000..fc1c1f31e --- /dev/null +++ b/packages/icons/icons/zzz-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/icons/zzz.svg b/packages/icons/icons/zzz.svg new file mode 100644 index 000000000..8248f56d9 --- /dev/null +++ b/packages/icons/icons/zzz.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/icons/package.json b/packages/icons/package.json new file mode 100644 index 000000000..6a6287499 --- /dev/null +++ b/packages/icons/package.json @@ -0,0 +1,54 @@ +{ + "name": "@tabler/icons", + "version": "2.0.0-beta.2", + "license": "MIT", + "author": "codecalm", + "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.", + "repository": { + "type": "git", + "url": "git+https://github.com/tabler/tabler-icons.git" + }, + "main": "dist/cjs/tabler-icons.js", + "main:umd": "dist/umd/tabler-icons.js", + "module": "dist/esm/tabler-icons.js", + "unpkg": "dist/umd/tabler-icons.min.js", + "typings": "dist/tabler-icons.d.ts", + "sideEffects": false, + "files": [ + "dist/*", + "tags.json", + "tabler-nodes.json", + "icons/*", + "tabler-sprite.svg", + "tabler-sprite-nostroke.svg" + ], + "homepage": "https://tabler-icons.io", + "bugs": { + "url": "https://github.com/tabler/tabler-icons/issues" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "scripts": { + "build": "pnpm run clean && pnpm run copy && pnpm run build:icons && pnpm run build:es && pnpm run build:bundles", + "build:icons": "node build.mjs", + "build:es": "babel src -d dist/esm", + "build:bundles": "rollup -c ./rollup.config.mjs", + "copy": "pnpm run copy:license && pnpm run copy:icons && pnpm run copy:tags", + "copy:icons": "mkdir -p ./icons && cp ../../icons/*.svg ./icons/", + "copy:tags": "cp ../../tags.json tags.json", + "copy:license": "cp ../../LICENSE ./LICENSE", + "clean": "rm -rf dist && rm -rf icons", + "test": "echo 'ok'" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web" + ] +} diff --git a/packages/icons/rollup.config.mjs b/packages/icons/rollup.config.mjs new file mode 100644 index 000000000..a45a7a6ac --- /dev/null +++ b/packages/icons/rollup.config.mjs @@ -0,0 +1,62 @@ +import fs from 'fs' +import { getRollupPlugins } from '../../.build/build-icons.mjs' + +const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8')) + +const packageName = '@tabler/icons'; +const outputFileName = 'tabler-icons'; +const outputDir = 'dist'; +const inputs = ['./src/tabler-icons.js']; +const bundles = [ + { + format: 'umd', + inputs, + outputDir, + minify: true, + }, + { + format: 'umd', + inputs, + outputDir, + }, + { + format: 'cjs', + inputs, + outputDir, + }, + { + format: 'es', + inputs, + outputDir, + }, + { + format: 'esm', + inputs, + outputDir, + preserveModules: true, + }, +]; + +const configs = bundles + .map(({ inputs, outputDir, format, minify, preserveModules }) => + inputs.map(input => ({ + input, + plugins: getRollupPlugins(pkg, minify), + output: { + name: packageName, + ...(preserveModules + ? { + dir: `${outputDir}/${format}`, + } + : { + file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, + }), + format, + preserveModules, + sourcemap: true, + }, + })), + ) + .flat(); + +export default configs; diff --git a/packages/icons/src/tabler-icons.js b/packages/icons/src/tabler-icons.js new file mode 100644 index 000000000..838008a0b --- /dev/null +++ b/packages/icons/src/tabler-icons.js @@ -0,0 +1 @@ +export * from './icons'; diff --git a/packages/icons/tabler-nodes.json b/packages/icons/tabler-nodes.json new file mode 100644 index 000000000..268194dbf --- /dev/null +++ b/packages/icons/tabler-nodes.json @@ -0,0 +1,25940 @@ +{ + "123": [ + [ + "path", + { + "d": "M3 10l2 -2v8m4 -8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m4 -8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5" + } + ] + ], + "360": [ + [ + "path", + { + "d": "M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4m-3 -3l3 3l-3 3" + } + ] + ], + "24-hours": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4m-4 4a8.094 8.094 0 0 0 3 5.24m4 -3.24h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2m3 -6v2a1 1 0 0 0 1 1h1m1 -3v6" + } + ] + ], + "2fa": [ + [ + "path", + { + "d": "M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54m7 6.2v-8h4m-4 4l3 0m4 4v-6a2 2 0 0 1 4 0v6m-4 -3l4 0" + } + ] + ], + "360-view": [ + [ + "path", + { + "d": "M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3m-7 -4h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5m14 -6v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0zm-14 9c0 1.657 4.03 3 9 3s9 -1.343 9 -3" + } + ] + ], + "3d-cube-sphere-off": [ + [ + "path", + { + "d": "M6 17.6l-2 -1.1v-2.5m0 -4v-2.5l2 -1.1m4 -2.3l2 -1.1l2 1.1m4 2.3l2 1.1v2.5m0 4v2m-6 3.9l-2 1.1l-2 -1.1m8 -11.3l2 -1.1m-8 4.5v2.5m0 4v2.5m0 -9l-2 -1.12m-4 -2.28l-2 -1.1m-1 -4.5l18 18" + } + ] + ], + "3d-cube-sphere": [ + [ + "path", + { + "d": "M6 17.6l-2 -1.1v-2.5m0 -4v-2.5l2 -1.1m4 -2.3l2 -1.1l2 1.1m4 2.3l2 1.1v2.5m0 4v2.5l-2 1.12m-4 2.28l-2 1.1l-2 -1.1m2 -7.9l2 -1.1m4 -2.3l2 -1.1m-8 4.5l0 2.5m0 4l0 2.5m0 -9l-2 -1.12m-4 -2.28l-2 -1.1" + } + ] + ], + "3d-rotate": [ + [ + "path", + { + "d": "M12 3a7 7 0 0 1 7 7v4l-3 -3m6 0l-3 3m-11 1.5l-5 -3l5 -3l5 3v5.5l-5 3zm-5 -3v5.5l5 3m0 -5.455l5 -3.03" + } + ] + ], + "a-b-2": [ + [ + "path", + { + "d": "M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3zm0 -6h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3zm-12 -6v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4m-5.01 2.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9m-3.99 4.02h-4" + } + ] + ], + "a-b-off": [ + [ + "path", + { + "d": "M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5m9 0v6m0 -12v2m4 0h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4m-13 -5l18 18" + } + ] + ], + "a-b": [ + [ + "path", + { + "d": "M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5m9 -6l0 12m4 -2v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3" + } + ] + ], + "abacus-off": [ + [ + "path", + { + "d": "M5 5v16m14 0v-2m0 -4v-12m-14 4h2m4 0h8m-14 8h10m-7 -2v4m3 -4v4m5 -1v1m-2 -12v4m-3 -4v2m-3 1v1m-5 12h18m-18 -18l18 18" + } + ] + ], + "abacus": [ + [ + "path", + { + "d": "M5 3v18m14 0v-18m-14 4h14m-14 8h14m-11 -2v4m3 -4v4m5 -4v4m-2 -12v4m-3 -4v4m-3 -4v4m-5 12h18" + } + ] + ], + "abc": [ + [ + "path", + { + "d": "M3 16v-6a2 2 0 1 1 4 0v6m-4 -3h4m3 -5v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1m10.732 -2a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01" + } + ] + ], + "access-point-off": [ + [ + "path", + { + "d": "M3 3l18 18m-6.172 -11.828a4 4 0 0 1 1.172 2.828m1.657 -5.657a8 8 0 0 1 1.635 8.952m-10.124 -.467a4 4 0 0 1 0 -5.656m-2.831 8.485a8 8 0 0 1 0 -11.314" + } + ] + ], + "access-point": [ + [ + "path", + { + "d": "M12 12l0 .01m2.828 -2.838a4 4 0 0 1 0 5.656m2.829 -8.485a8 8 0 0 1 0 11.314m-8.489 -2.829a4 4 0 0 1 0 -5.656m-2.831 8.485a8 8 0 0 1 0 -11.314" + } + ] + ], + "accessible-off": [ + [ + "path", + { + "d": "M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744m8.811 4.801a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-6.362 -10.365a0.5 .5 0 1 0 -.5 -.5m-8.5 -4.5l18 18" + } + ] + ], + "accessible": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1m0 -4m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "activity-heartbeat": [ + [ + "path", + { + "d": "M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5" + } + ] + ], + "activity": [ + [ + "path", + { + "d": "M3 12h4l3 8l4 -16l3 8h4" + } + ] + ], + "ad-2": [ + [ + "path", + { + "d": "M11.933 5h-6.933v16h13v-8m-4 4h-5m0 -4h5v-4h-5zm6 -8v-2m3 3l2 -2m-1 5h2" + } + ] + ], + "ad-off": [ + [ + "path", + { + "d": "M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m2 10v-4a2 2 0 0 1 2 -2m2 2v4m-4 -2h4m6 -4v4m-.885 -.869c.33 .149 .595 .412 .747 .74m-13.862 -9.871l18 18" + } + ] + ], + "ad": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 8v-4a2 2 0 0 1 4 0v4m-4 -2l4 0m6 -4v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5" + } + ] + ], + "address-book-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12m4 10h6m-5 -5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2m-9 -1h3m-3 4h3m-3 4h3m-4 -13l18 18" + } + ] + ], + "address-book": [ + [ + "path", + { + "d": "M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2zm-10 10h6m-3 -5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-7 -3h3m-3 4h3m-3 4h3" + } + ] + ], + "adjustments-alt": [ + [ + "path", + { + "d": "M4 8h4v4h-4zm2 -4l0 4m0 4l0 8m4 -6h4v4h-4zm2 -10l0 10m0 4l0 2m4 -15h4v4h-4zm2 -1l0 1m0 4l0 11" + } + ] + ], + "adjustments-horizontal": [ + [ + "path", + { + "d": "M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 0l8 0m4 0l4 0m-12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-2 0l2 0m4 0l10 0m-3 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-11 0l11 0m4 0l1 0" + } + ] + ], + "adjustments-off": [ + [ + "path", + { + "d": "M6 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -4v2m0 4v8m6 -4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12v4m0 4v2m0 4v2m6 -13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3v1m0 4v5m0 4v2m-15 -17l18 18" + } + ] + ], + "adjustments": [ + [ + "path", + { + "d": "M6 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -6l0 4m0 4l0 8m6 -4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12l0 10m0 4l0 2m6 -13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3l0 1m0 4l0 11" + } + ] + ], + "aerial-lift": [ + [ + "path", + { + "d": "M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14" + } + ] + ], + "affiliate": [ + [ + "path", + { + "d": "M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275m-5.381 -5.752l5.759 -5.759m-11.942 -1.058m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m14.5 0m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 13m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-8.5 -3m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0" + } + ] + ], + "air-balloon": [ + [ + "path", + { + "d": "M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -4c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8zm0 -7m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0" + } + ] + ], + "air-conditioning-disabled": [ + [ + "path", + { + "d": "M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 6v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3" + } + ] + ], + "air-conditioning": [ + [ + "path", + { + "d": "M8 16a3 3 0 0 1 -3 3m11 -3a3 3 0 0 0 3 3m-7 -3v4m-9 -15m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 6v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3" + } + ] + ], + "alarm-minus": [ + [ + "path", + { + "d": "M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m2 -9l-2.75 2m12.75 -2l2.75 2m-9.75 7h4" + } + ] + ], + "alarm-off": [ + [ + "path", + { + "d": "M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56m1.766 5.775v1h1m-7.739 -7.735l-1.011 .735m12.75 -2l2.75 2m-16.75 -3l18 18" + } + ] + ], + "alarm-plus": [ + [ + "path", + { + "d": "M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m2 -9l-2.75 2m12.75 -2l2.75 2m-9.75 7h4m-2 -2v4" + } + ] + ], + "alarm-snooze": [ + [ + "path", + { + "d": "M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m5 -2h4l-4 4h4m-7 -11l-2.75 2m12.75 -2l2.75 2" + } + ] + ], + "alarm": [ + [ + "path", + { + "d": "M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m7 -3l0 3l2 0m-7 -9l-2.75 2m12.75 -2l2.75 2" + } + ] + ], + "album-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413m7.415 -.587v4m1.503 1.497l.497 -.497l2 2v-7m-13 -1l18 18" + } + ] + ], + "album": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 -2v7l2 -2l2 2v-7" + } + ] + ], + "alert-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4l0 4m0 4l.01 0" + } + ] + ], + "alert-octagon": [ + [ + "path", + { + "d": "M8.7 3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c.2 -.2 .4 -.3 .7 -.3zm3.3 5l0 4m0 4l.01 0" + } + ] + ], + "alert-triangle": [ + [ + "path", + { + "d": "M12 9v2m0 4v.01m-7 3.99h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" + } + ] + ], + "alien": [ + [ + "path", + { + "d": "M11 17a2.5 2.5 0 0 0 2 0m-1 -14c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595zm-4 8l2 2m6 -2l-2 2" + } + ] + ], + "align-box-bottom-center": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 9v2m3 -6v6m3 -4v4" + } + ] + ], + "align-box-bottom-left": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 9v2m3 -6v6m3 -4v4" + } + ] + ], + "align-box-bottom-right": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm7 9v2m3 -6v6m3 -4v4" + } + ] + ], + "align-box-left-bottom": [ + [ + "path", + { + "d": "M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778zm-11 -1.222h-2m6 -3h-6m4 -3h-4" + } + ] + ], + "align-box-left-middle": [ + [ + "path", + { + "d": "M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778zm-11 -3.222h-2m6 -3h-6m4 -3h-4" + } + ] + ], + "align-box-left-top": [ + [ + "path", + { + "d": "M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778zm-11 -5.222h-2m6 -3h-6m4 -3h-4" + } + ] + ], + "align-box-right-bottom": [ + [ + "path", + { + "d": "M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778zm11 -1.222h2m-6 -3h6m-4 -3h4" + } + ] + ], + "align-box-right-middle": [ + [ + "path", + { + "d": "M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778zm11 -3.222h2m-6 -3h6m-4 -3h4" + } + ] + ], + "align-box-right-top": [ + [ + "path", + { + "d": "M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778zm11 -5.222h2m-6 -3h6m-4 -3h4" + } + ] + ], + "align-box-top-center": [ + [ + "path", + { + "d": "M5.778 20h12.444c.982 0 1.778 -.796 1.778 -1.778v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778zm3.222 -11v-2m3 6v-6m3 4v-4" + } + ] + ], + "align-box-top-left": [ + [ + "path", + { + "d": "M5.778 20h12.444c.982 0 1.778 -.796 1.778 -1.778v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778zm1.222 -11v-2m3 6v-6m3 4v-4" + } + ] + ], + "align-box-top-right": [ + [ + "path", + { + "d": "M5.778 20h12.444c.982 0 1.778 -.796 1.778 -1.778v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778zm5.222 -11v-2m3 6v-6m3 4v-4" + } + ] + ], + "align-center": [ + [ + "path", + { + "d": "M4 6l16 0m-12 6l8 0m-10 6l12 0" + } + ] + ], + "align-justified": [ + [ + "path", + { + "d": "M4 6l16 0m-16 6l16 0m-16 6l12 0" + } + ] + ], + "align-left": [ + [ + "path", + { + "d": "M4 6l16 0m-16 6l10 0m-10 6l14 0" + } + ] + ], + "align-right": [ + [ + "path", + { + "d": "M4 6l16 0m-10 6l10 0m-14 6l14 0" + } + ] + ], + "alpha": [ + [ + "path", + { + "d": "M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6" + } + ] + ], + "alphabet-cyrillic": [ + [ + "path", + { + "d": "M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3m9 -6h-3a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1a2 2 0 0 0 2 -2v-3a2 2 0 0 0 -2 -2h-3" + } + ] + ], + "alphabet-greek": [ + [ + "path", + { + "d": "M10 10v7m-5 -7m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2zm9 8v-11a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2" + } + ] + ], + "alphabet-latin": [ + [ + "path", + { + "d": "M6 10h2a2 2 0 0 1 2 2v5h-3a2 2 0 1 1 0 -4h3m4 -6v10m0 -7m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z" + } + ] + ], + "ambulance": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5m-15 -1h4m-2 -2v4" + } + ] + ], + "ampersand": [ + [ + "path", + { + "d": "M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922" + } + ] + ], + "analyze-off": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.086 8.086 0 0 0 -4.31 .62m-2.383 1.608a8.089 8.089 0 0 0 -1.326 1.69m-1 5a8.1 8.1 0 0 0 13.687 4.676m2.313 -1.676a1 1 0 0 0 -1 -1m-14 -7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5.888 1.87a3 3 0 1 0 4.233 4.252m.595 -3.397a3.012 3.012 0 0 0 -1.426 -1.435m-10.29 -6.29l18 18" + } + ] + ], + "analyze": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -6.986 -6.918a8.095 8.095 0 0 0 -8.019 3.918m-1 5a8.1 8.1 0 0 0 15 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-13 -8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 4m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "anchor-off": [ + [ + "path", + { + "d": "M12 12v9m-8 -8a8 8 0 0 0 14.138 5.13m1.44 -2.56a7.99 7.99 0 0 0 .422 -2.57m1 0h-2m-14 0h-2m9.866 -4.127a3 3 0 1 0 -3.737 -3.747m-6.129 -2.126l18 18" + } + ] + ], + "anchor": [ + [ + "path", + { + "d": "M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2m9 -7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "angle": [ + [ + "path", + { + "d": "M21 19h-18l9 -15m8.615 11.171h.015m-1.115 -3.4h.015m-1.815 -3.1h.015m-2.315 -2.7h.015" + } + ] + ], + "ankh": [ + [ + "path", + { + "d": "M6 13h12m-6 8v-8l-.422 -.211a6.472 6.472 0 0 1 -3.578 -5.789a4 4 0 1 1 8 0a6.472 6.472 0 0 1 -3.578 5.789l-.422 .211" + } + ] + ], + "antenna-bars-1": [ + [ + "path", + { + "d": "M6 18l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "antenna-bars-2": [ + [ + "path", + { + "d": "M6 18l0 -3m4 3l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "antenna-bars-3": [ + [ + "path", + { + "d": "M6 18l0 -3m4 3l0 -6m4 6l0 .01m4 -.01l0 .01" + } + ] + ], + "antenna-bars-4": [ + [ + "path", + { + "d": "M6 18l0 -3m4 3l0 -6m4 6l0 -9m4 9l0 .01" + } + ] + ], + "antenna-bars-5": [ + [ + "path", + { + "d": "M6 18l0 -3m4 3l0 -6m4 6l0 -9m4 9l0 -12" + } + ] + ], + "antenna-bars-off": [ + [ + "path", + { + "d": "M6 18v-3m4 3v-6m4 6v-4m0 -4v-1m4 5v-8m-15 -3l18 18" + } + ] + ], + "antenna-off": [ + [ + "path", + { + "d": "M20 4v8m-4 -7.5v7m-4 -6.5v3m0 4v9m-4 -13v2.5m-4 -4.5v4m16 -2h-8m-4 0h-4m-1 -5l18 18" + } + ] + ], + "antenna": [ + [ + "path", + { + "d": "M20 4v8m-4 -7.5v7m-4 -6.5v16m-4 -15.5v5m-4 -4.5v4m16 -2h-16" + } + ] + ], + "aperture-off": [ + [ + "path", + { + "d": "M3.6 15h10.55m-8.509 -9.369a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m-.571 3.581l2.416 7.438m7.221 -10.336l-4.852 3.526m-2.334 1.695l-1.349 .98m12.062 3.673l-8.535 -6.201m.233 12.607l2.123 -6.533m.984 -3.028l.154 -.473m-12.518 -7.882l18 18" + } + ] + ], + "aperture": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m.6 3h10.55m-7.599 -10.062l3.26 10.034m7.221 -10.336l-8.535 6.201m12.062 3.673l-8.535 -6.201m.233 12.607l3.261 -10.034" + } + ] + ], + "api-app-off": [ + [ + "path", + { + "d": "M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5m9 5v3.5a2.5 2.5 0 1 1 -5 0v-.5m3 -9h5.5a2.5 2.5 0 1 1 0 5h-.5m-9 -2v-3m.042 -3.957a2.5 2.5 0 0 1 4.958 .457v.5m-11 -3l18 18" + } + ] + ], + "api-app": [ + [ + "path", + { + "d": "M12 15h-6.5a2.5 2.5 0 1 1 0 -5h.5m9 2v6.5a2.5 2.5 0 1 1 -5 0v-.5m2 -9h6.5a2.5 2.5 0 1 1 0 5h-.5m-9 -2v-6.5a2.5 2.5 0 0 1 5 0v.5" + } + ] + ], + "api-off": [ + [ + "path", + { + "d": "M4 13h5m3 3v-4m0 -4h3a2 2 0 0 1 2 2v1c0 .554 -.225 1.055 -.589 1.417m-3.411 .583h-1m8 -5v8m-11 0v-5.5a2.5 2.5 0 0 0 -5 0v5.5m-1 -13l18 18" + } + ] + ], + "api": [ + [ + "path", + { + "d": "M4 13h5m3 3v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3m8 -5v8m-11 0v-5.5a2.5 2.5 0 0 0 -5 0v5.5" + } + ] + ], + "app-window": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm3 1h.01m2.99 0h.01" + } + ] + ], + "apple": [ + [ + "path", + { + "d": "M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m7 -3v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2m-2 4.5c1.333 .667 2.667 .667 4 0" + } + ] + ], + "apps-off": [ + [ + "path", + { + "d": "M8 4h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706m13.708 9.706h1a1 1 0 0 1 1 1v1m-.29 3.704a1 1 0 0 1 -.71 .296h-4a1 1 0 0 1 -1 -1v-4c0 -.276 .111 -.525 .292 -.706m-10.292 -.294m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -8h6m-3 -3v6m-14 -7l18 18" + } + ] + ], + "apps": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm0 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -1m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm0 -8l6 0m-3 -3l0 6" + } + ] + ], + "archive-off": [ + [ + "path", + { + "d": "M8 4h11a2 2 0 1 1 0 4h-7m-4 0h-3a2 2 0 0 1 -.826 -3.822m.826 3.822v10a2 2 0 0 0 2 2h10a2 2 0 0 0 1.824 -1.18m.176 -3.82v-7m-9 4h2m-9 -9l18 18" + } + ] + ], + "archive": [ + [ + "path", + { + "d": "M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10m-9 4l4 0" + } + ] + ], + "armchair-2-off": [ + [ + "path", + { + "d": "M5 10v-4a3 3 0 0 1 .128 -.869m2.038 -2.013c.264 -.078 .544 -.118 .834 -.118h8a3 3 0 0 1 3 3v4m-2.876 2.145a3 3 0 1 1 3.756 3.724m-.88 3.131h-14v-3a3 3 0 1 1 3 -3v2m0 -3h4m-5 7v2m10 -2v2m-14 -18l18 18" + } + ] + ], + "armchair-2": [ + [ + "path", + { + "d": "M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4m-3 5v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2m0 -3h8m-9 7v2m10 -2v2" + } + ] + ], + "armchair-off": [ + [ + "path", + { + "d": "M17 13a2 2 0 1 1 4 0v4m-2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 1 1 4 0v2h8.036m-10.036 -4v-5a3 3 0 0 1 .134 -.89m1.987 -1.98a3 3 0 0 1 .879 -.13h8a3 3 0 0 1 3 3v5m-13 8v2m12 -2v2m-15 -18l18 18" + } + ] + ], + "armchair": [ + [ + "path", + { + "d": "M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2zv-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5m-13 8v2m12 -2v2" + } + ] + ], + "arrow-autofit-content": [ + [ + "path", + { + "d": "M6 4l-3 3l3 3m12 -6l3 3l-3 3m-14 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 -9h-7m18 0h-7" + } + ] + ], + "arrow-autofit-down": [ + [ + "path", + { + "d": "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8m4 0v17m-3 -3l3 3l3 -3" + } + ] + ], + "arrow-autofit-height": [ + [ + "path", + { + "d": "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6m6 10v7m0 -18v7m-3 8l3 3l3 -3m-6 -12l3 -3l3 3" + } + ] + ], + "arrow-autofit-left": [ + [ + "path", + { + "d": "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8m0 4h-17m3 -3l-3 3l3 3" + } + ] + ], + "arrow-autofit-right": [ + [ + "path", + { + "d": "M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8m0 4h17m-3 -3l3 3l-3 3" + } + ] + ], + "arrow-autofit-up": [ + [ + "path", + { + "d": "M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8m4 0v-17m-3 3l3 -3l3 3" + } + ] + ], + "arrow-autofit-width": [ + [ + "path", + { + "d": "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6m-10 6h-7m18 0h-7m-8 -3l-3 3l3 3m12 -6l3 3l-3 3" + } + ] + ], + "arrow-back-up": [ + [ + "path", + { + "d": "M9 13l-4 -4l4 -4m-4 4h11a4 4 0 0 1 0 8h-1" + } + ] + ], + "arrow-back": [ + [ + "path", + { + "d": "M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1" + } + ] + ], + "arrow-badge-down": [ + [ + "path", + { + "d": "M17 13v-6l-5 4l-5 -4v6l5 4z" + } + ] + ], + "arrow-badge-left": [ + [ + "path", + { + "d": "M11 17h6l-4 -5l4 -5h-6l-4 5z" + } + ] + ], + "arrow-badge-right": [ + [ + "path", + { + "d": "M13 7h-6l4 5l-4 5h6l4 -5z" + } + ] + ], + "arrow-badge-up": [ + [ + "path", + { + "d": "M17 11v6l-5 -4l-5 4v-6l5 -4z" + } + ] + ], + "arrow-bar-down": [ + [ + "path", + { + "d": "M12 20l0 -10m0 10l4 -4m-4 4l-4 -4m-4 -12l16 0" + } + ] + ], + "arrow-bar-left": [ + [ + "path", + { + "d": "M4 12l10 0m-10 0l4 4m-4 -4l4 -4m12 -4l0 16" + } + ] + ], + "arrow-bar-right": [ + [ + "path", + { + "d": "M20 12l-10 0m10 0l-4 4m4 -4l-4 -4m-12 -4l0 16" + } + ] + ], + "arrow-bar-to-down": [ + [ + "path", + { + "d": "M4 20l16 0m-8 -6l0 -10m0 10l4 -4m-4 4l-4 -4" + } + ] + ], + "arrow-bar-to-left": [ + [ + "path", + { + "d": "M10 12l10 0m-10 0l4 4m-4 -4l4 -4m-10 -4l0 16" + } + ] + ], + "arrow-bar-to-right": [ + [ + "path", + { + "d": "M14 12l-10 0m10 0l-4 4m4 -4l-4 -4m10 -4l0 16" + } + ] + ], + "arrow-bar-to-up": [ + [ + "path", + { + "d": "M12 10l0 10m0 -10l4 4m-4 -4l-4 4m-4 -10l16 0" + } + ] + ], + "arrow-bar-up": [ + [ + "path", + { + "d": "M12 4l0 10m0 -10l4 4m-4 -4l-4 4m-4 12l16 0" + } + ] + ], + "arrow-bear-left-2": [ + [ + "path", + { + "d": "M9 3h-5v5m0 -5l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93m7 -16l-4.5 4.5" + } + ] + ], + "arrow-bear-left": [ + [ + "path", + { + "d": "M13 3h-5v5m0 -5l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93" + } + ] + ], + "arrow-bear-right-2": [ + [ + "path", + { + "d": "M15 3h5v5m0 -5l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93m-7 -16l4.5 4.5" + } + ] + ], + "arrow-bear-right": [ + [ + "path", + { + "d": "M12 3h5v5m0 -5l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93" + } + ] + ], + "arrow-big-down-line": [ + [ + "path", + { + "d": "M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6zm0 -9h-6" + } + ] + ], + "arrow-big-down-lines": [ + [ + "path", + { + "d": "M15 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3zm0 -9h-6m6 3h-6" + } + ] + ], + "arrow-big-down": [ + [ + "path", + { + "d": "M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z" + } + ] + ], + "arrow-big-left-line": [ + [ + "path", + { + "d": "M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6zm9 0v-6" + } + ] + ], + "arrow-big-left-lines": [ + [ + "path", + { + "d": "M12 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3zm9 0v-6m-3 6v-6" + } + ] + ], + "arrow-big-left": [ + [ + "path", + { + "d": "M20 15h-8v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1z" + } + ] + ], + "arrow-big-right-line": [ + [ + "path", + { + "d": "M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6zm-9 0v6" + } + ] + ], + "arrow-big-right-lines": [ + [ + "path", + { + "d": "M12 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3zm-9 0v6m3 -6v6" + } + ] + ], + "arrow-big-right": [ + [ + "path", + { + "d": "M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z" + } + ] + ], + "arrow-big-top": [ + [ + "path", + { + "d": "M9 20v-8h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v8a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "arrow-big-up-line": [ + [ + "path", + { + "d": "M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6zm0 9h6" + } + ] + ], + "arrow-big-up-lines": [ + [ + "path", + { + "d": "M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3zm0 9h6m-6 -3h6" + } + ] + ], + "arrow-bounce": [ + [ + "path", + { + "d": "M10 18h4m-11 -10a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277m-5 -.5h5v5" + } + ] + ], + "arrow-curve-left": [ + [ + "path", + { + "d": "M14 7l-4 -4l-4 4m4 -4v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394" + } + ] + ], + "arrow-curve-right": [ + [ + "path", + { + "d": "M10 7l4 -4l4 4m-4 -4v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394" + } + ] + ], + "arrow-down-bar": [ + [ + "path", + { + "d": "M12 3v18m-3 -3l3 3l3 -3m-6 -15h6" + } + ] + ], + "arrow-down-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 0l4 4m0 -8l0 8m4 -4l-4 4" + } + ] + ], + "arrow-down-left-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -3l-6 6m6 0l-6 0l0 -6" + } + ] + ], + "arrow-down-left": [ + [ + "path", + { + "d": "M17 7l-10 10m9 0l-9 0l0 -9" + } + ] + ], + "arrow-down-rhombus": [ + [ + "path", + { + "d": "M12 8v13m3 -3l-3 3l-3 -3m5.5 -12.5l-2.5 -2.5l-2.5 2.5l2.5 2.5z" + } + ] + ], + "arrow-down-right-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 3l-6 0m6 -6l0 6l-6 -6" + } + ] + ], + "arrow-down-right": [ + [ + "path", + { + "d": "M7 7l10 10m0 -9l0 9l-9 0" + } + ] + ], + "arrow-down-square": [ + [ + "path", + { + "d": "M12 7v14m-3 -3l3 3l3 -3m-1 -15v4h-4v-4z" + } + ] + ], + "arrow-down-tail": [ + [ + "path", + { + "d": "M12 6v15m-3 -3l3 3l3 -3m-6 -15l3 3l3 -3" + } + ] + ], + "arrow-down": [ + [ + "path", + { + "d": "M12 5l0 14m6 -6l-6 6m-6 -6l6 6" + } + ] + ], + "arrow-fork": [ + [ + "path", + { + "d": "M16 3h5v5m-13 -5h-5v5m18 -5l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93m-9 -18l7.536 7.536a5 5 0 0 1 1.464 3.534v.93" + } + ] + ], + "arrow-forward-up": [ + [ + "path", + { + "d": "M15 13l4 -4l-4 -4m4 4h-11a4 4 0 0 0 0 8h1" + } + ] + ], + "arrow-forward": [ + [ + "path", + { + "d": "M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1" + } + ] + ], + "arrow-guide": [ + [ + "path", + { + "d": "M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7m-3 -3l3 3l-3 3" + } + ] + ], + "arrow-iteration": [ + [ + "path", + { + "d": "M8.5 16a5.5 5.5 0 1 0 -5.5 -5.5v.5m0 5h18m-3 -3l3 3l-3 3" + } + ] + ], + "arrow-left-bar": [ + [ + "path", + { + "d": "M21 12h-18m3 -3l-3 3l3 3m15 -6v6" + } + ] + ], + "arrow-left-circle": [ + [ + "path", + { + "d": "M17 12h-14m3 -3l-3 3l3 3m13 -3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "arrow-left-rhombus": [ + [ + "path", + { + "d": "M16 12h-13m3 -3l-3 3l3 3m12.5 -5.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z" + } + ] + ], + "arrow-left-right": [ + [ + "path", + { + "d": "M17 13l4 -4l-4 -4m-10 8l-4 -4l4 -4m5 9a5 5 0 0 1 5 -5h4m-9 10v-5a5 5 0 0 0 -5 -5h-4" + } + ] + ], + "arrow-left-square": [ + [ + "path", + { + "d": "M17 12h-14m3 -3l-3 3l3 3m15 -1h-4v-4h4z" + } + ] + ], + "arrow-left-tail": [ + [ + "path", + { + "d": "M18 12h-15m3 -3l-3 3l3 3m15 -6l-3 3l3 3" + } + ] + ], + "arrow-left": [ + [ + "path", + { + "d": "M5 12l14 0m-14 0l6 6m-6 -6l6 -6" + } + ] + ], + "arrow-loop-left-2": [ + [ + "path", + { + "d": "M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13m4 4l-4 -4l4 -4" + } + ] + ], + "arrow-loop-left": [ + [ + "path", + { + "d": "M13 21v-13a4 4 0 1 1 4 4h-13m4 4l-4 -4l4 -4" + } + ] + ], + "arrow-loop-right-2": [ + [ + "path", + { + "d": "M12 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13m-4 4l4 -4l-4 -4" + } + ] + ], + "arrow-loop-right": [ + [ + "path", + { + "d": "M12 21v-13a4 4 0 1 0 -4 4h13m-4 4l4 -4l-4 -4" + } + ] + ], + "arrow-merge-both": [ + [ + "path", + { + "d": "M16 8l-4 -4l-4 4m4 12v-16m6 14c-4 -1.333 -6 -4.667 -6 -10m-6 10c4 -1.333 6 -4.667 6 -10" + } + ] + ], + "arrow-merge-left": [ + [ + "path", + { + "d": "M8 8l4 -4l4 4m-4 12v-16m-6 14c4 -1.333 6 -4.667 6 -10" + } + ] + ], + "arrow-merge-right": [ + [ + "path", + { + "d": "M16 8l-4 -4l-4 4m4 12v-16m6 14c-4 -1.333 -6 -4.667 -6 -10" + } + ] + ], + "arrow-merge": [ + [ + "path", + { + "d": "M8 7l4 -4l4 4m-4 -4v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394m6 -18v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394" + } + ] + ], + "arrow-move-down": [ + [ + "path", + { + "d": "M12 11v10m-3 -3l3 3l3 -3m-3 -13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "arrow-move-left": [ + [ + "path", + { + "d": "M13 12h-10m3 3l-3 -3l3 -3m11 3a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z" + } + ] + ], + "arrow-move-right": [ + [ + "path", + { + "d": "M11 12h10m-3 -3l3 3l-3 3m-11 -3a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z" + } + ] + ], + "arrow-move-up": [ + [ + "path", + { + "d": "M12 13v-10m-3 3l3 -3l3 3m-3 11a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z" + } + ] + ], + "arrow-narrow-down": [ + [ + "path", + { + "d": "M12 5l0 14m4 -4l-4 4m-4 -4l4 4" + } + ] + ], + "arrow-narrow-left": [ + [ + "path", + { + "d": "M5 12l14 0m-14 0l4 4m-4 -4l4 -4" + } + ] + ], + "arrow-narrow-right": [ + [ + "path", + { + "d": "M5 12l14 0m-4 4l4 -4m-4 -4l4 4" + } + ] + ], + "arrow-narrow-up": [ + [ + "path", + { + "d": "M12 5l0 14m4 -10l-4 -4m-4 4l4 -4" + } + ] + ], + "arrow-ramp-left-2": [ + [ + "path", + { + "d": "M18 3v8.707m-10 2.293l-4 -4l4 -4m10 15c0 -6.075 -4.925 -11 -11 -11h-3" + } + ] + ], + "arrow-ramp-left-3": [ + [ + "path", + { + "d": "M18 3v6m-10 7l-4 -4l4 -4m10 13v-6a3 3 0 0 0 -3 -3h-11" + } + ] + ], + "arrow-ramp-left": [ + [ + "path", + { + "d": "M17 3l0 8.707m-4 -4.707l4 -4l4 4m-14 7l-4 -4l4 -4m10 15a11 11 0 0 0 -11 -11h-3" + } + ] + ], + "arrow-ramp-right-2": [ + [ + "path", + { + "d": "M6 3v8.707m10 2.293l4 -4l-4 -4m-10 15c0 -6.075 4.925 -11 11 -11h3" + } + ] + ], + "arrow-ramp-right-3": [ + [ + "path", + { + "d": "M6 3v6m10 7l4 -4l-4 -4m-10 13v-6a3 3 0 0 1 3 -3h11" + } + ] + ], + "arrow-ramp-right": [ + [ + "path", + { + "d": "M7 3l0 8.707m4 -4.707l-4 -4l-4 4m14 7l4 -4l-4 -4m-10 15a11 11 0 0 1 11 -11h3" + } + ] + ], + "arrow-right-bar": [ + [ + "path", + { + "d": "M18 15l3 -3l-3 -3m-15 3h18m-18 -3v6" + } + ] + ], + "arrow-right-circle": [ + [ + "path", + { + "d": "M18 15l3 -3l-3 -3m-13 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h14" + } + ] + ], + "arrow-right-rhombus": [ + [ + "path", + { + "d": "M8 12h13m-3 -3l3 3l-3 3m-12.5 -5.5l-2.5 2.5l2.5 2.5l2.5 -2.5z" + } + ] + ], + "arrow-right-square": [ + [ + "path", + { + "d": "M7 12l14 0m-3 3l3 -3l-3 -3m-15 1h4v4h-4z" + } + ] + ], + "arrow-right-tail": [ + [ + "path", + { + "d": "M18 15l3 -3l-3 -3m-15 6l3 -3l-3 -3m3 3l15 0" + } + ] + ], + "arrow-right": [ + [ + "path", + { + "d": "M5 12l14 0m-6 6l6 -6m-6 -6l6 6" + } + ] + ], + "arrow-rotary-first-left": [ + [ + "path", + { + "d": "M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6zv10m-2.5 -10.5l-8.5 8.5m5 0h-5v-5" + } + ] + ], + "arrow-rotary-first-right": [ + [ + "path", + { + "d": "M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 3v10m2.5 -10.5l8.5 8.5m-5 0h5v-5" + } + ] + ], + "arrow-rotary-last-left": [ + [ + "path", + { + "d": "M15 15a3 3 0 1 1 0 -6a3 3 0 0 1 0 6zv6m-2.5 -11.5l-6.5 -6.5m5 0h-5v5" + } + ] + ], + "arrow-rotary-last-right": [ + [ + "path", + { + "d": "M9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 3v6m2.5 -11.5l6.5 -6.5m-5 0h5v5" + } + ] + ], + "arrow-rotary-left": [ + [ + "path", + { + "d": "M16 10a3 3 0 1 1 0 -6a3 3 0 0 1 0 6zv10m-3 -13h-10m4 4l-4 -4l4 -4" + } + ] + ], + "arrow-rotary-right": [ + [ + "path", + { + "d": "M8 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 3v10m9 -9l4 -4l-4 -4m-6 4h10" + } + ] + ], + "arrow-rotary-straight": [ + [ + "path", + { + "d": "M13 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 3v5m0 -18v7m-4 -3l4 -4l4 4" + } + ] + ], + "arrow-roundabout-left": [ + [ + "path", + { + "d": "M3 9h8a5 5 0 1 1 5 5v7m-9 -16l-4 4l4 4" + } + ] + ], + "arrow-roundabout-right": [ + [ + "path", + { + "d": "M21 9h-8a5 5 0 1 0 -5 5v7m9 -16l4 4l-4 4" + } + ] + ], + "arrow-sharp-turn-left": [ + [ + "path", + { + "d": "M17 18v-11.31a0.7 .7 0 0 0 -1.195 -.495l-9.805 9.805m5 0h-5v-5" + } + ] + ], + "arrow-sharp-turn-right": [ + [ + "path", + { + "d": "M7 18v-11.31a0.7 .7 0 0 1 1.195 -.495l9.805 9.805m-5 0h5v-5" + } + ] + ], + "arrow-up-bar": [ + [ + "path", + { + "d": "M12 21l0 -18m3 3l-3 -3l-3 3m0 15l6 0" + } + ] + ], + "arrow-up-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4l-4 4m4 -4l0 8m4 -4l-4 -4" + } + ] + ], + "arrow-up-left-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3l6 6m0 -6l-6 0l0 6" + } + ] + ], + "arrow-up-left": [ + [ + "path", + { + "d": "M7 7l10 10m-1 -10l-9 0l0 9" + } + ] + ], + "arrow-up-rhombus": [ + [ + "path", + { + "d": "M12 16v-13m3 3l-3 -3l-3 3m5.5 12.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z" + } + ] + ], + "arrow-up-right-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -3l-6 6m6 0l0 -6l-6 0" + } + ] + ], + "arrow-up-right": [ + [ + "path", + { + "d": "M17 7l-10 10m1 -10l9 0l0 9" + } + ] + ], + "arrow-up-square": [ + [ + "path", + { + "d": "M12 17l0 -14m3 3l-3 -3l-3 3m1 15v-4h4v4z" + } + ] + ], + "arrow-up-tail": [ + [ + "path", + { + "d": "M12 18l0 -15m3 3l-3 -3l-3 3m6 15l-3 -3l-3 3" + } + ] + ], + "arrow-up": [ + [ + "path", + { + "d": "M12 5l0 14m6 -8l-6 -6m-6 6l6 -6" + } + ] + ], + "arrow-wave-left-down": [ + [ + "path", + { + "d": "M7 14h-4v-4m18 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3.113 -.716 -4 -2s-2.48 -2.033 -4 -2c-1.52 -.033 -3 1 -4 2l-2 2" + } + ] + ], + "arrow-wave-left-up": [ + [ + "path", + { + "d": "M7 10h-4v4m18 -2c-.887 -1.285 -2.48 -2.033 -4 -2c-1.52 -.033 -3.113 .715 -4 2c-.887 1.284 -2.48 2.033 -4 2c-1.52 .033 -3 -1 -4 -2l-2 -2" + } + ] + ], + "arrow-wave-right-down": [ + [ + "path", + { + "d": "M17 14h4v-4m-18 2c.887 1.284 2.48 2.033 4 2c1.52 .033 3.113 -.716 4 -2s2.48 -2.033 4 -2c1.52 -.033 3 1 4 2l2 2" + } + ] + ], + "arrow-wave-right-up": [ + [ + "path", + { + "d": "M17 10h4v4m-18 -2c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2" + } + ] + ], + "arrow-zig-zag": [ + [ + "path", + { + "d": "M6 20v-10l10 6v-12m-3 3l3 -3l3 3" + } + ] + ], + "arrows-cross": [ + [ + "path", + { + "d": "M16 4h4v4m-5 1l5 -5m-16 16l5 -5m7 5h4v-4m-16 -12l16 16" + } + ] + ], + "arrows-diagonal-2": [ + [ + "path", + { + "d": "M16 20l4 0l0 -4m-6 -2l6 6m-12 -16l-4 0l0 4m0 -4l6 6" + } + ] + ], + "arrows-diagonal-minimize-2": [ + [ + "path", + { + "d": "M18 10h-4v-4m6 -2l-6 6m-8 4h4v4m0 -4l-6 6" + } + ] + ], + "arrows-diagonal-minimize": [ + [ + "path", + { + "d": "M6 10h4v-4m-6 -2l6 6m8 4h-4v4m0 -4l6 6" + } + ] + ], + "arrows-diagonal": [ + [ + "path", + { + "d": "M16 4l4 0l0 4m-6 2l6 -6m-12 16l-4 0l0 -4m0 4l6 -6" + } + ] + ], + "arrows-diff": [ + [ + "path", + { + "d": "M11 16h10m-10 0l4 4m-4 -4l4 -4m-2 -4h-10m10 0l-4 4m4 -4l-4 -4" + } + ] + ], + "arrows-double-ne-sw": [ + [ + "path", + { + "d": "M3 14l11 -11m-4 0h4v4m-4 10v4h4m7 -11l-11 11" + } + ] + ], + "arrows-double-nw-se": [ + [ + "path", + { + "d": "M14 21l-11 -11m0 4v-4h4m10 4h4v-4m-11 -7l11 11" + } + ] + ], + "arrows-double-se-nw": [ + [ + "path", + { + "d": "M3 10l11 11m0 -4v4h-4m4 -18h-4v4m11 7l-11 -11" + } + ] + ], + "arrows-double-sw-ne": [ + [ + "path", + { + "d": "M14 3l-11 11m0 -4v4h4m10 -4h4v4m-11 7l11 -11" + } + ] + ], + "arrows-down-up": [ + [ + "path", + { + "d": "M17 3l0 18m-7 -3l-3 3l-3 -3m3 3l0 -18m13 3l-3 -3l-3 3" + } + ] + ], + "arrows-down": [ + [ + "path", + { + "d": "M7 21l0 -18m13 15l-3 3l-3 -3m-10 0l3 3l3 -3m7 3l0 -18" + } + ] + ], + "arrows-exchange-2": [ + [ + "path", + { + "d": "M17 10h-14l4 -4m0 8h14l-4 4" + } + ] + ], + "arrows-exchange": [ + [ + "path", + { + "d": "M7 10h14l-4 -4m0 8h-14l4 4" + } + ] + ], + "arrows-horizontal": [ + [ + "path", + { + "d": "M7 8l-4 4l4 4m10 -8l4 4l-4 4m-14 -4l18 0" + } + ] + ], + "arrows-join-2": [ + [ + "path", + { + "d": "M3 7h1.948c1.913 0 3.705 .933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5h6.448m-18 5h1.95a5.854 5.854 0 0 0 4.798 -2.5a5.854 5.854 0 0 1 4.798 -2.5h5.454m-2 3l3 -3l-3 -3" + } + ] + ], + "arrows-join": [ + [ + "path", + { + "d": "M3 7h5l3.5 5h9.5m-18 5h5l3.495 -5m6.505 3l3 -3l-3 -3" + } + ] + ], + "arrows-left-down": [ + [ + "path", + { + "d": "M7 3l-4 4l4 4m-4 -4h11a3 3 0 0 1 3 3v11m-4 -4l4 4l4 -4" + } + ] + ], + "arrows-left-right": [ + [ + "path", + { + "d": "M21 17l-18 0m3 -7l-3 -3l3 -3m-3 3l18 0m-3 13l3 -3l-3 -3" + } + ] + ], + "arrows-left": [ + [ + "path", + { + "d": "M3 7l18 0m-15 13l-3 -3l3 -3m0 -10l-3 3l3 3m-3 7l18 0" + } + ] + ], + "arrows-maximize": [ + [ + "path", + { + "d": "M16 4l4 0l0 4m-6 2l6 -6m-12 16l-4 0l0 -4m0 4l6 -6m6 6l4 0l0 -4m-6 -2l6 6m-12 -16l-4 0l0 4m0 -4l6 6" + } + ] + ], + "arrows-minimize": [ + [ + "path", + { + "d": "M5 9l4 0l0 -4m-6 -2l6 6m-4 6l4 0l0 4m-6 2l6 -6m10 -6l-4 0l0 -4m0 4l6 -6m-2 12l-4 0l0 4m0 -4l6 6" + } + ] + ], + "arrows-move-horizontal": [ + [ + "path", + { + "d": "M18 9l3 3l-3 3m-3 -3h6m-15 -3l-3 3l3 3m-3 -3h6" + } + ] + ], + "arrows-move-vertical": [ + [ + "path", + { + "d": "M9 18l3 3l3 -3m-3 -3v6m3 -15l-3 -3l-3 3m3 -3v6" + } + ] + ], + "arrows-move": [ + [ + "path", + { + "d": "M18 9l3 3l-3 3m-3 -3h6m-15 -3l-3 3l3 3m-3 -3h6m0 6l3 3l3 -3m-3 -3v6m3 -15l-3 -3l-3 3m3 -3v6" + } + ] + ], + "arrows-random": [ + [ + "path", + { + "d": "M20 21h-4v-4m0 4l5 -5m-14.5 -6.5l-3.5 -2l2 -3.504m-2 3.504l6.83 -1.87m-5.83 10.37l4 -1l1 4m-1 -4l-3.5 6m16.5 -16l-.5 4l-4 -.5m4 .5l-4.5 -5.5" + } + ] + ], + "arrows-right-down": [ + [ + "path", + { + "d": "M3 17l4 4l4 -4m-4 4v-11a3 3 0 0 1 3 -3h11m-4 4l4 -4l-4 -4" + } + ] + ], + "arrows-right-left": [ + [ + "path", + { + "d": "M21 7l-18 0m15 3l3 -3l-3 -3m-12 16l-3 -3l3 -3m-3 3l18 0" + } + ] + ], + "arrows-right": [ + [ + "path", + { + "d": "M21 17l-18 0m15 -13l3 3l-3 3m0 10l3 -3l-3 -3m3 -7l-18 0" + } + ] + ], + "arrows-shuffle-2": [ + [ + "path", + { + "d": "M18 4l3 3l-3 3m0 10l3 -3l-3 -3m-15 -7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5m-18 0h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5" + } + ] + ], + "arrows-shuffle": [ + [ + "path", + { + "d": "M18 4l3 3l-3 3m0 10l3 -3l-3 -3m-15 -7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5m0 -10h-5a4.978 4.978 0 0 0 -3 1m-4 8a4.984 4.984 0 0 1 -3 1h-3" + } + ] + ], + "arrows-sort": [ + [ + "path", + { + "d": "M3 9l4 -4l4 4m-4 -4v14m14 -4l-4 4l-4 -4m4 4v-14" + } + ] + ], + "arrows-split-2": [ + [ + "path", + { + "d": "M21 17h-5.397a5 5 0 0 1 -4.096 -2.133l-.514 -.734a5 5 0 0 0 -4.096 -2.133h-3.897m18 -5h-5.395a5 5 0 0 0 -4.098 2.135l-.51 .73a5 5 0 0 1 -4.097 2.135h-3.9m15 -2l3 -3l-3 -3m0 16l3 -3l-3 -3" + } + ] + ], + "arrows-split": [ + [ + "path", + { + "d": "M21 17h-8l-3.5 -5h-6.5m18 -5h-8l-3.495 5m8.495 -2l3 -3l-3 -3m0 16l3 -3l-3 -3" + } + ] + ], + "arrows-transfer-down": [ + [ + "path", + { + "d": "M17 3v6m-7 9l-3 3l-3 -3m3 3v-18m13 3l-3 -3l-3 3m3 15v-2m0 -4v-2" + } + ] + ], + "arrows-transfer-up": [ + [ + "path", + { + "d": "M7 21v-6m13 -9l-3 -3l-3 3m3 -3v18m-7 -3l-3 3l-3 -3m3 -15v2m0 4v2" + } + ] + ], + "arrows-up-down": [ + [ + "path", + { + "d": "M7 3l0 18m3 -15l-3 -3l-3 3m16 12l-3 3l-3 -3m3 3l0 -18" + } + ] + ], + "arrows-up-left": [ + [ + "path", + { + "d": "M21 7l-4 -4l-4 4m4 -4v11a3 3 0 0 1 -3 3h-11m4 -4l-4 4l4 4" + } + ] + ], + "arrows-up-right": [ + [ + "path", + { + "d": "M17 21l4 -4l-4 -4m4 4h-11a3 3 0 0 1 -3 -3v-11m4 4l-4 -4l-4 4" + } + ] + ], + "arrows-up": [ + [ + "path", + { + "d": "M17 3l0 18m-13 -15l3 -3l3 3m10 0l-3 -3l-3 3m-7 -3l0 18" + } + ] + ], + "arrows-vertical": [ + [ + "path", + { + "d": "M8 7l4 -4l4 4m-8 10l4 4l4 -4m-4 -14l0 18" + } + ] + ], + "artboard-off": [ + [ + "path", + { + "d": "M12 8h3a1 1 0 0 1 1 1v3m-.284 3.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7m-5.287 -.3h1m-1 8h1m4 -13v1m8 -1v1m4 4h1m-1 8h1m-13 4v1m8 -1v1m-13 -18l18 18" + } + ] + ], + "artboard": [ + [ + "path", + { + "d": "M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm-5 -1l1 0m-1 8l1 0m4 -13l0 1m8 -1l0 1m4 4l1 0m-1 8l1 0m-13 4l0 1m8 -1l0 1" + } + ] + ], + "article-off": [ + [ + "path", + { + "d": "M8 4h11a2 2 0 0 1 2 2v11m-1.172 2.821a1.993 1.993 0 0 1 -.828 .179h-14a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.156 -1.814m2.844 3.814h1m4 0h5m-10 4h5m4 0h1m-10 4h9m-13 -13l18 18" + } + ] + ], + "article": [ + [ + "path", + { + "d": "M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 2h10m-10 4h10m-10 4h10" + } + ] + ], + "aspect-ratio-off": [ + [ + "path", + { + "d": "M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m2 7v-3h2m8 3v1m-2 2h-1m-11 -12l18 18" + } + ] + ], + "aspect-ratio": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 5v-3h3m7 3v3h-3" + } + ] + ], + "assembly-off": [ + [ + "path", + { + "d": "M8.703 4.685l2.326 -1.385a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .248 -.046 .49 -.132 .715m-2.156 1.837l-4.741 3.029a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.157 -.689m5.407 1.408c.295 -.133 .637 -.12 .921 .04l3 1.79h-.014c.312 .181 .503 .516 .5 .877v1.702m-1.152 2.86l-2.363 1.514a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l.568 -.339m-6.082 -6.082l18 18" + } + ] + ], + "assembly": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-3.5 2.549c.312 .18 .503 .515 .5 .876v3.277c0 .364 -.197 .7 -.515 .877l-3 1.922a1 1 0 0 1 -.97 0l-3 -1.922a1 1 0 0 1 -.515 -.876v-3.278c0 -.364 .197 -.7 .514 -.877l3 -1.79c.311 -.174 .69 -.174 1 0l3 1.79h-.014z" + } + ] + ], + "asset": [ + [ + "path", + { + "d": "M9 15m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m6 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 -10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-2.782 12.975l6.619 -12.174m-14.758 3.955l12.217 -6.631m-9.296 11.875m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "asterisk-simple": [ + [ + "path", + { + "d": "M12 12v-9m0 9l-9 -2.5m9 2.5l9 -2.5m-9 2.5l6 8.5m-6 -8.5l-6 8.5" + } + ] + ], + "asterisk": [ + [ + "path", + { + "d": "M12 12l8 -4.5m-8 4.5v9m0 -9l-8 -4.5m8 4.5l8 4.5m-8 -13.5v9l-8 4.5" + } + ] + ], + "at-off": [ + [ + "path", + { + "d": "M9.174 9.17a4 4 0 0 0 5.646 5.668m1.18 -2.838a4 4 0 0 0 -4 -4m7.695 7.697a2.5 2.5 0 0 0 1.305 -2.197v-1.5a9 9 0 0 0 -13.055 -8.047m-2.322 1.683a9 9 0 0 0 9.877 14.644m-12.5 -17.28l18 18" + } + ] + ], + "at": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m8 0v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28" + } + ] + ], + "atom-2": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 9l0 .01m-9 -12.01l0 .01m18 -.01l0 .01m-13 11.09a9 9 0 0 1 -5 -7.1m13 7.1a9 9 0 0 0 5 -7.1m-14.8 -8a9 9 0 0 1 11.4 0" + } + ] + ], + "atom-off": [ + [ + "path", + { + "d": "M12 12v.01m-2.828 -2.838c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 6 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357m-6.358 -2.357c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172m-6 -2l18 18" + } + ] + ], + "atom": [ + [ + "path", + { + "d": "M12 12v.01m7.071 -7.081c-1.562 -1.562 -6 .337 -9.9 4.243c-3.905 3.905 -5.804 8.337 -4.242 9.9c1.562 1.561 6 -.338 9.9 -4.244c3.905 -3.905 5.804 -8.337 4.242 -9.9m-14.142 0c-1.562 1.562 .337 6 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242c1.561 -1.562 -.338 -6 -4.244 -9.9c-3.905 -3.905 -8.337 -5.804 -9.9 -4.242" + } + ] + ], + "augmented-reality-2": [ + [ + "path", + { + "d": "M10 21h-2a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v3.5m-1 8.5l-4 -2.5l4 -2.5l4 2.5v4.5l-4 2.5zm-4 -2.5v4.5l4 2.5m0 -4.5l4 -2.5m-10 -10.5h2" + } + ] + ], + "augmented-reality-off": [ + [ + "path", + { + "d": "M4 8v-2c0 -.557 .228 -1.061 .595 -1.424m-.595 11.424v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2c.558 0 1.062 -.228 1.425 -.596m-7.425 -6.904l.312 -.195m2.457 -1.536l1.231 -.769m-6.775 -.765l-1.225 .765l4 2.5v4.5l3.076 -1.923m.924 -3.077v-2l-4 -2.5l-.302 .189m-3.698 2.311v4.5l4 2.5m-9 -14l18 18" + } + ] + ], + "augmented-reality": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-8 -3.5l4 -2.5m-8 0l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5zv4.5l4 2.5" + } + ] + ], + "award-off": [ + [ + "path", + { + "d": "M16.72 12.704a6 6 0 0 0 -8.433 -8.418m-1.755 2.24a6 6 0 0 0 7.936 7.944m-2.466 .533l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8m-10.396 0l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889m-9 -12l18 18" + } + ] + ], + "award": [ + [ + "path", + { + "d": "M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m6 6l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889m-10.396 0l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889" + } + ] + ], + "axe": [ + [ + "path", + { + "d": "M13 9l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385m-3.34 3.66l-3.32 -3.32a1.25 1.25 0 0 1 .42 -2.044l3.24 -1.296l6 -6l3 3l-6 6l-1.296 3.24a1.25 1.25 0 0 1 -2.044 .42z" + } + ] + ], + "axis-x": [ + [ + "path", + { + "d": "M4 13v.01m0 -4.01v.01m0 -4.01v.01m13 14.99l3 -3l-3 -3m-13 3h16" + } + ] + ], + "axis-y": [ + [ + "path", + { + "d": "M11 20h-.01m4.01 0h-.01m4.01 0h-.01m-14.99 -13l3 -3l3 3m-3 13v-16" + } + ] + ], + "baby-bottle": [ + [ + "path", + { + "d": "M5 10h14m-7 -8v2a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z" + } + ] + ], + "baby-carriage": [ + [ + "path", + { + "d": "M8 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-14 -14h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6m-8 0h14m-11 8l1 -3m6 0l1 3" + } + ] + ], + "backhoe": [ + [ + "path", + { + "d": "M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m11 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2l-9 0m0 -4l9 0m-5 -3v-5h2a3 3 0 0 1 3 3v5m-8 0v-2a1 1 0 0 1 1 -1h7m8.12 -2.12l-3.12 -4.88l-5 5m8.12 -.12a3 3 0 0 1 -2.12 5.12a3 3 0 0 1 -2.12 -.88l4.24 -4.24z" + } + ] + ], + "backpack-off": [ + [ + "path", + { + "d": "M10 6h3a6 6 0 0 1 6 6v3m-.129 3.872a3 3 0 0 1 -2.871 2.128h-8a3 3 0 0 1 -3 -3v-6a5.99 5.99 0 0 1 2.285 -4.712m2.715 -1.288v-1a2 2 0 1 1 4 0v1m-5 15v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4m-12 -18l18 18" + } + ] + ], + "backpack": [ + [ + "path", + { + "d": "M5 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3zm5 -12v-1a2 2 0 1 1 4 0v1m-5 15v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4m-4 -11h2" + } + ] + ], + "backspace": [ + [ + "path", + { + "d": "M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-11l-5 -5a1.5 1.5 0 0 1 0 -2l5 -5zm-8 4l4 4m0 -4l-4 4" + } + ] + ], + "badge-3d": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 2.5a0.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a0.5 .5 0 0 1 -.5 -.5m7 -5.5v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z" + } + ] + ], + "badge-4k": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 2v2a1 1 0 0 0 1 1h1m1 -3v6m4 -6v6m3 -6l-2 3l2 3m-2 -3h-1" + } + ] + ], + "badge-8k": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm11 2v6m3 -6l-2 3l2 3m-2 -3h-1m-5.5 0h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1" + } + ] + ], + "badge-ad": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm11 2v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1zm-7 6v-4.5a1.5 1.5 0 0 1 3 0v4.5m-3 -2h3" + } + ] + ], + "badge-ar": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 8v-4.5a1.5 1.5 0 0 1 3 0v4.5m-3 -2h3m4 -1h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3" + } + ] + ], + "badge-cc": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm7 3.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0m7 -3a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" + } + ] + ], + "badge-filled": [ + [ + "path", + { + "d": "M17 17v-13l-5 3l-5 -3v13l5 3z", + "fill": "currentColor" + } + ] + ], + "badge-hd": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm11 2v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1zm-7 6v-6m3 6v-6m-3 3h3" + } + ] + ], + "badge-off": [ + [ + "path", + { + "d": "M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497m-6.504 -2.503l18 18" + } + ] + ], + "badge-sd": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm11 2v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1zm-7 5.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a0.75 .75 0 0 1 .75 .75" + } + ] + ], + "badge-tm": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm3 2h4m-2 0v6m5 0v-6l2 3l2 -3v6" + } + ] + ], + "badge-vo": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 2l2 6l2 -6m4.5 0a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z" + } + ] + ], + "badge-vr": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm11 5h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6m3 0l-2 -3m-8 -3l2 6l2 -6" + } + ] + ], + "badge-wc": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm3.5 2l.5 6l2 -4l2 4l.5 -6m5.5 1.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" + } + ] + ], + "badge": [ + [ + "path", + { + "d": "M17 17v-13l-5 3l-5 -3v13l5 3z" + } + ] + ], + "badges-off": [ + [ + "path", + { + "d": "M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3m-3.127 -7.124l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495m-6.492 -6.495l18 18" + } + ] + ], + "badges": [ + [ + "path", + { + "d": "M17 17v-4l-5 3l-5 -3v4l5 3zm0 -9v-4l-5 3l-5 -3v4l5 3z" + } + ] + ], + "baguette": [ + [ + "path", + { + "d": "M5.628 11.283l5.644 -5.637c2.665 -2.663 5.924 -3.747 8.663 -1.205l.188 .181a2.987 2.987 0 0 1 0 4.228l-11.287 11.274a3 3 0 0 1 -4.089 .135l-.143 -.135c-2.728 -2.724 -1.704 -6.117 1.024 -8.841zm3.872 -3.783l1.5 3.5m-4.5 -.5l1.5 3.5m4.5 -9.5l1.5 3.5" + } + ] + ], + "ball-american-football-off": [ + [ + "path", + { + "d": "M15 9l-1 1m-2 2l-3 3m1 -3l2 2m-4 7a5 5 0 0 0 -5 -5m3.813 -9.198a12.96 12.96 0 0 0 -3.813 9.198a5 5 0 0 0 5 5a12.96 12.96 0 0 0 9.186 -3.801m1.789 -2.227a12.94 12.94 0 0 0 2.025 -6.972a5 5 0 0 0 -5 -5a12.94 12.94 0 0 0 -6.967 2.022m6.967 -2.022a5 5 0 0 0 5 5m-18 -5l18 18" + } + ] + ], + "ball-american-football": [ + [ + "path", + { + "d": "M15 9l-6 6m1 -3l2 2m0 -4l2 2m-6 9a5 5 0 0 0 -5 -5m13 -13c-7.18 0 -13 5.82 -13 13a5 5 0 0 0 5 5c7.18 0 13 -5.82 13 -13a5 5 0 0 0 -5 -5a5 5 0 0 0 5 5" + } + ] + ], + "ball-baseball": [ + [ + "path", + { + "d": "M5.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728zm6.859 -15.344a9 9 0 0 1 -9.475 9.475m17.96 -.99a9 9 0 0 0 -9.475 9.475m-2.505 -11.98l2 2m2 2l2 2m-4 -8l2 1m-6 3l1 2m8 -2l1 2m-6 3l2 1" + } + ] + ], + "ball-basketball": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m2.65 -6.35l12.7 12.7m-12.7 0l12.7 -12.7m-6.35 -2.65a9 9 0 0 0 9 9m-18 0a9 9 0 0 1 9 9" + } + ] + ], + "ball-bowling": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8 -3l0 .01m4 -1.01l0 .01m-1 3.99l0 .01" + } + ] + ], + "ball-football-off": [ + [ + "path", + { + "d": "M20.041 16.046a9 9 0 0 0 -12.084 -12.09m-2.323 1.683a9 9 0 0 0 12.726 12.73m-6.36 -11.369l4.755 3.455l-.566 1.743l-.98 3.014l-.209 .788h-6l-1.755 -5.545l1.86 -1.351l2.313 -1.681zv-4m3 13l2.5 3m-.745 -8.545l3.745 -1.455m-11.439 7.045l-2.561 2.955m.745 -8.545l-3.745 -1.455m-.5 -6l18 18" + } + ] + ], + "ball-football": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -5l4.76 3.45l-1.76 5.55h-6l-1.76 -5.55zv-4m3 13l2.5 3m-.74 -8.55l3.74 -1.45m-11.44 7.05l-2.56 2.95m.74 -8.55l-3.74 -1.45" + } + ] + ], + "ball-tennis": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m3 -6.7a9 9 0 0 1 0 13.4m12 -13.4a9 9 0 0 0 0 13.4" + } + ] + ], + "ball-volleyball": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0a8 8 0 0 0 8 4m-12.5 -2.5a12 12 0 0 0 8.5 6.5m-4 -8a8 8 0 0 0 -7.464 4.928m8.415 -9.575a12 12 0 0 0 -9.88 4.111m8.929 .536a8 8 0 0 0 -.536 -8.928m4.085 12.075a12 12 0 0 0 1.38 -10.611" + } + ] + ], + "ballon-off": [ + [ + "path", + { + "d": "M14 8a2 2 0 0 0 -2 -2m-4.238 -2.247a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707m5.754 10.707v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2m-2 -19l18 18" + } + ] + ], + "ballon": [ + [ + "path", + { + "d": "M14 8a2 2 0 0 0 -2 -2m-6 2a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9m6 9v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2" + } + ] + ], + "ballpen-off": [ + [ + "path", + { + "d": "M14 6l7 7l-2 2m-9 -5l-4.172 4.172a2.828 2.828 0 1 0 4 4l4.172 -4.172m2 -2l4.414 -4.414a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-4.414 4.414m-8 12l1.768 -1.768m-2.768 -15.232l18 18" + } + ] + ], + "ballpen": [ + [ + "path", + { + "d": "M14 6l7 7l-4 4m-11.172 1.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4zm-1.828 1.828l1.768 -1.768" + } + ] + ], + "ban": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m2.7 -6.3l12.6 12.6" + } + ] + ], + "bandage-off": [ + [ + "path", + { + "d": "M10 12v.01m2 1.99v.01m-1.487 -7.523l1.987 -1.987a4.95 4.95 0 0 1 7 7l-2.018 2.018m-1.982 1.982l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4m-5.5 -5.5l18 18" + } + ] + ], + "bandage": [ + [ + "path", + { + "d": "M14 12l0 .01m-4 -.01l0 .01m2 -2.01l0 .01m0 3.99l0 .01m-7.5 -1.51l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7" + } + ] + ], + "barbell-off": [ + [ + "path", + { + "d": "M2 12h1m3 -4h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2m.298 -9.712a1 1 0 0 0 -.298 .712v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-8m0 3h3m3 3v2a1 1 0 0 0 1 1h1c.275 0 .523 -.11 .704 -.29m.296 -3.71v-7a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1v4m3 -3h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1m2 -4h-1m-18 -9l18 18" + } + ] + ], + "barbell": [ + [ + "path", + { + "d": "M2 12h1m3 -4h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2m0 -9v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1zm3 5h6m0 -5v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1zm3 1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2m4 -4h-1" + } + ] + ], + "barcode-off": [ + [ + "path", + { + "d": "M4 7v-1c0 -.552 .224 -1.052 .586 -1.414m-.586 12.414v1a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v1m-4 13h2c.551 0 1.05 -.223 1.412 -.584m-14.412 -8.416h1v2h-1zm5 0v2m5 -2v.01m4 -.01v2m-16 -10l18 18" + } + ] + ], + "barcode": [ + [ + "path", + { + "d": "M4 7v-1a2 2 0 0 1 2 -2h2m-4 13v1a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v1m-4 13h2a2 2 0 0 0 2 -2v-1m-15 -6h1v2h-1zm5 0l0 2m4 -2h1v2h-1zm5 0l0 2" + } + ] + ], + "barrel-off": [ + [ + "path", + { + "d": "M8 4h8.722a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78a16.35 16.35 0 0 1 -.407 3.609m-.964 3.013l-.066 .158a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.21 .458 -4.42 1.374 -6.63m8.626 -1.37c.585 2.337 .913 4.674 .985 7.01m-.114 3.86a33.415 33.415 0 0 1 -.871 5.13m-4 -16a34.42 34.42 0 0 0 -.366 1.632m-.506 3.501a32.126 32.126 0 0 0 -.128 2.867c0 2.667 .333 5.333 1 8m-5.5 -4h11.5m3.5 -8h-7.5m-4 0h-3.5m-1.5 -5l18 18" + } + ] + ], + "barrel": [ + [ + "path", + { + "d": "M7.278 4h9.444a2 2 0 0 1 1.841 1.22c.958 2.26 1.437 4.52 1.437 6.78c0 2.26 -.479 4.52 -1.437 6.78a2 2 0 0 1 -1.841 1.22h-9.444a2 2 0 0 1 -1.841 -1.22c-.958 -2.26 -1.437 -4.52 -1.437 -6.78c0 -2.26 .479 -4.52 1.437 -6.78a2 2 0 0 1 1.841 -1.22zm6.722 0c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8m-4 -16c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8m-5.5 -4h15m0 -8h-15" + } + ] + ], + "barrier-block-off": [ + [ + "path", + { + "d": "M11 7h8a1 1 0 0 1 1 1v7c0 .27 -.107 .516 -.282 .696m-3.718 .304h-11a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h2m0 9v4m.5 -4l4.244 -4.244m2 -2l2.755 -2.755m-3 9l1.249 -1.249m1.992 -1.992l3.259 -3.259m-16 4l4.752 -4.752m8.248 8.252v3m-12 0h4m6 0h4m-2 -13v-2m-14 -2l18 18" + } + ] + ], + "barrier-block": [ + [ + "path", + { + "d": "M4 7m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v7a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm3 8v4m.5 -4l9 -9m-3 9l6.5 -6.5m-16 4l6.5 -6.5m6.5 9v4m-12 0h4m6 0h4m-2 -13v-2m-10 2v-2" + } + ] + ], + "baseline": [ + [ + "path", + { + "d": "M4 20h16m-12 -4v-8a4 4 0 1 1 8 0v8m-8 -6h8" + } + ] + ], + "basket-off": [ + [ + "path", + { + "d": "M7 10l1.359 -1.63m1.817 -2.182l1.824 -2.188l5 6m1.77 8.757c-.358 .768 -1.027 1.262 -1.77 1.243h-10c-.966 .024 -1.807 -.817 -2 -2l-2 -8h7m4 0h7l-1.397 5.587m-7.603 -.587m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-7 -12l18 18" + } + ] + ], + "basket": [ + [ + "path", + { + "d": "M7 10l5 -6l5 6m4 0l-2 8a2 2.5 0 0 1 -2 2h-10a2 2.5 0 0 1 -2 -2l-2 -8zm-9 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "bat": [ + [ + "path", + { + "d": "M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4zm-8 -8a3 3 0 0 0 6 0" + } + ] + ], + "bath-off": [ + [ + "path", + { + "d": "M16 12h4a1 1 0 0 1 1 1v3c0 .311 -.036 .614 -.103 .904m-1.61 2.378a3.982 3.982 0 0 1 -2.287 .718h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1h8m-6 0v-6m1.178 -2.824c.252 -.113 .53 -.176 .822 -.176h3v2.25m-7 15.75l1 -1.5m15 1.5l-1 -1.5m-16 -16.5l18 18" + } + ] + ], + "bath": [ + [ + "path", + { + "d": "M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1zm2 0v-7a2 2 0 0 1 2 -2h3v2.25m-7 15.75l1 -1.5m15 1.5l-1 -1.5" + } + ] + ], + "battery-1": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2m1 3l0 4" + } + ] + ], + "battery-2": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2m1 3l0 4m3 -4l0 4" + } + ] + ], + "battery-3": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2m1 3l0 4m3 -4l0 4m3 -4l0 4" + } + ] + ], + "battery-4": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2m1 3l0 4m3 -4l0 4m3 -4l0 4m3 -4l0 4" + } + ] + ], + "battery-automotive": [ + [ + "path", + { + "d": "M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm3 -2v-2m13 0l0 2m-12.5 7l3 0m5 0l3 0m-1.5 -1.5l0 3" + } + ] + ], + "battery-charging-2": [ + [ + "path", + { + "d": "M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5m-9.5 -2h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2zm3 7v-3m-2 -4v-2.5m4 2.5v-2.5" + } + ] + ], + "battery-charging": [ + [ + "path", + { + "d": "M16 7h1a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2m-7 -10h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1m5 -9l-2 4h3l-2 4" + } + ] + ], + "battery-eco": [ + [ + "path", + { + "d": "M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5m-8.5 -.857c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857zm0 3.857v-3" + } + ] + ], + "battery-filled": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2", + "fill": "currentColor" + } + ] + ], + "battery-off": [ + [ + "path", + { + "d": "M3 3l18 18m-10 -14h6a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5m-2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h1" + } + ] + ], + "battery": [ + [ + "path", + { + "d": "M6 7h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-11a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2" + } + ] + ], + "beach-off": [ + [ + "path", + { + "d": "M15.071 15.102a7.502 7.502 0 0 0 -8.124 1.648m3.323 -10.481l9.926 5.731a6 6 0 0 0 -10.32 -6.123m6.856 4.123c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196m1.732 1l-.739 1.279m-1.467 2.541l-.794 1.376m-9 5.054a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.135 -.858m-16.135 -16.142l18 18" + } + ] + ], + "beach": [ + [ + "path", + { + "d": "M17.553 16.75a7.5 7.5 0 0 0 -10.606 0m11.053 -12.946a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196zm-1.268 6.196c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196m1.732 1l-3 5.196m-9 5.054a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25" + } + ] + ], + "bed-off": [ + [ + "path", + { + "d": "M3 7v11m0 -4h11m4 0h3m0 4v-8a2 2 0 0 0 -2 -2h-7m-1 3v3m-4 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -7l18 18" + } + ] + ], + "bed": [ + [ + "path", + { + "d": "M3 7v11m0 -4h18m0 4v-8a2 2 0 0 0 -2 -2h-8v6m-4 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "beer-off": [ + [ + "path", + { + "d": "M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a8 8 0 0 0 .845 -3.578v-4.111h-9m-1 4h1m4 0h5m-14 -5l18 18" + } + ] + ], + "beer": [ + [ + "path", + { + "d": "M9 20h6v-4.111a8 8 0 0 1 .845 -3.578l.31 -.622a8 8 0 0 0 .845 -3.578v-4.111h-10v4.111a8 8 0 0 0 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111zm-2 -12h10" + } + ] + ], + "bell-filled": [ + [ + "path", + { + "d": "M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M9 17v1a3 3 0 0 0 6 0v-1" + } + ] + ], + "bell-minus": [ + [ + "path", + { + "d": "M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1m-5 -6l4 0" + } + ] + ], + "bell-off": [ + [ + "path", + { + "d": "M3 3l18 18m-4 -4h-13a4 4 0 0 0 2 -3v-3a7 7 0 0 1 1.279 -3.716m2.072 -1.934c.209 -.127 .425 -.244 .649 -.35a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-9 3v1a3 3 0 0 0 6 0v-1" + } + ] + ], + "bell-plus": [ + [ + "path", + { + "d": "M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1m-5 -6l4 0m-2 -2l0 4" + } + ] + ], + "bell-ringing-2": [ + [ + "path", + { + "d": "M19.364 4.636a2 2 0 0 1 0 2.828a7 7 0 0 1 -1.414 7.072l-2.122 2.12a4 4 0 0 0 -.707 3.536l-11.313 -11.312a4 4 0 0 0 3.535 -.707l2.121 -2.123a7 7 0 0 1 7.072 -1.414a2 2 0 0 1 2.828 0zm-12.021 7.778l-.707 .707a3 3 0 0 0 4.243 4.243l.707 -.707" + } + ] + ], + "bell-ringing": [ + [ + "path", + { + "d": "M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1m6 -10.273a11.05 11.05 0 0 0 -2.794 -3.727m-15.206 3.727a11.05 11.05 0 0 1 2.792 -3.727" + } + ] + ], + "bell-school": [ + [ + "path", + { + "d": "M10 10m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m9.5 5h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5m9.5 2a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068m-10 2v.01m10 -2.01m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "bell-x": [ + [ + "path", + { + "d": "M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1m-4.5 -7.5l3 3m0 -3l-3 3" + } + ] + ], + "bell-z": [ + [ + "path", + { + "d": "M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1m-5 -8h4l-4 4h4" + } + ] + ], + "bell": [ + [ + "path", + { + "d": "M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6m-1 12v1a3 3 0 0 0 6 0v-1" + } + ] + ], + "beta": [ + [ + "path", + { + "d": "M8 22v-14a4 4 0 0 1 4 -4h.5a3.5 3.5 0 0 1 0 7h-.5h.5a4.5 4.5 0 1 1 -4.5 4.5v-.5" + } + ] + ], + "bible": [ + [ + "path", + { + "d": "M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12zm0 12h-12a2 2 0 0 0 -2 2m7 -11v6m-2 -4h4" + } + ] + ], + "bike-off": [ + [ + "path", + { + "d": "M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m14.437 -1.56a3 3 0 0 0 4.123 4.123m1.44 -2.563a3 3 0 0 0 -3 -3m-7 4v-4l-3 -3l1.665 -1.332m2.215 -1.772l1.12 -.896l2 3h3m-2 -6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-13 -2l18 18" + } + ] + ], + "bike": [ + [ + "path", + { + "d": "M5 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m17 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 1l0 -4l-3 -3l5 -4l2 3l3 0m-2 -6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "binary-off": [ + [ + "path", + { + "d": "M11 7v-2h-1m8 14v-1m-2.5 -13h2a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-2a0.5 .5 0 0 1 -.5 -.5v-4a0.5 .5 0 0 1 .5 -.5zm-5 9h2a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-2a0.5 .5 0 0 1 -.5 -.5v-4a0.5 .5 0 0 1 .5 -.5zm-4.5 -4v.01m0 8.99v.01m-3 -16.01l18 18" + } + ] + ], + "binary-tree-2": [ + [ + "path", + { + "d": "M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-7 8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm14 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-7 4a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-2 -10v8m-5.684 -3.504l4.368 -4.992m7 4.992l-4.366 -4.99" + } + ] + ], + "binary-tree": [ + [ + "path", + { + "d": "M6 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm10 -16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-5 -8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm10 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-15.942 6.306l2.88 -4.606m2.123 -3.397l2.877 -4.604m-2.873 8l2.876 4.6m2.122 -12.605l2.881 4.61" + } + ] + ], + "binary": [ + [ + "path", + { + "d": "M11 10v-5h-1m8 14v-5h-1m-2 -9m0 .5a0.5 .5 0 0 1 .5 -.5h2a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-2a0.5 .5 0 0 1 -.5 -.5zm-5 8.5m0 .5a0.5 .5 0 0 1 .5 -.5h2a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-2a0.5 .5 0 0 1 -.5 -.5zm-4 -4.5h.01m-.01 9h.01" + } + ] + ], + "biohazard-off": [ + [ + "path", + { + "d": "M10.586 10.586a2 2 0 1 0 2.836 2.82m-1.483 .594c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503h-.06m2.538 -3.454a4.75 4.75 0 0 1 6.957 3.987v.217m-11.195 -3.813a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172m6.718 0a4.75 4.75 0 0 1 -.836 7.385m-11.513 -7.518l18 18" + } + ] + ], + "biohazard": [ + [ + "path", + { + "d": "M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m1.939 2c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798" + } + ] + ], + "blade": [ + [ + "path", + { + "d": "M17.707 3.707l2.586 2.586a1 1 0 0 1 0 1.414l-.586 .586a1 1 0 0 0 0 1.414l.586 .586a1 1 0 0 1 0 1.414l-8.586 8.586a1 1 0 0 1 -1.414 0l-.586 -.586a1 1 0 0 0 -1.414 0l-.586 .586a1 1 0 0 1 -1.414 0l-2.586 -2.586a1 1 0 0 1 0 -1.414l.586 -.586a1 1 0 0 0 0 -1.414l-.586 -.586a1 1 0 0 1 0 -1.414l8.586 -8.586a1 1 0 0 1 1.414 0l.586 .586a1 1 0 0 0 1.414 0l.586 -.586a1 1 0 0 1 1.414 0zm-9.707 12.293l3.2 -3.2m1.6 -1.6l3.2 -3.2m-2 0l2 2m-8 4l2 2m2 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "bleach-chlorine": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75m6.11 -7h-1a2 2 0 1 0 0 4h1m3 -4v4h2" + } + ] + ], + "bleach-no-chlorine": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75m1.686 0l7.907 -13.733m-2.764 13.748l5.346 -9.284" + } + ] + ], + "bleach-off": [ + [ + "path", + { + "d": "M5 19h14m1.986 -1.977a2 2 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75m-1.89 -16l18 18" + } + ] + ], + "bleach": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" + } + ] + ], + "blockquote": [ + [ + "path", + { + "d": "M6 15h15m0 4h-15m9 -8h6m0 -4h-6m-6 2h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2m-8 3.5h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" + } + ] + ], + "bluetooth-connected": [ + [ + "path", + { + "d": "M7 8l10 8l-5 4l0 -16l5 4l-10 8m-3 -4l1 0m13 0l1 0" + } + ] + ], + "bluetooth-off": [ + [ + "path", + { + "d": "M3 3l18 18m-4.562 -4.55l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4" + } + ] + ], + "bluetooth-x": [ + [ + "path", + { + "d": "M7 8l10 8l-5 4v-16l1 .802m0 6.396l-6 4.802m9 -10l4 4m0 -4l-4 4" + } + ] + ], + "bluetooth": [ + [ + "path", + { + "d": "M7 8l10 8l-5 4l0 -16l5 4l-10 8" + } + ] + ], + "blur-off": [ + [ + "path", + { + "d": "M12 3v5m0 4v8m-6.359 -14.369a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m8.034 8.047h5m-8 -3h7m-8 -3h6m-6 12h6m-6 -3h3m4 0h1m-17 -12l18 18" + } + ] + ], + "blur": [ + [ + "path", + { + "d": "M12 21a9.01 9.01 0 0 0 2.32 -.302a9 9 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035zm0 -18v17m0 -8h9m-9 -3h8m-8 -3h6m-6 12h6m-6 -3h8" + } + ] + ], + "bmp": [ + [ + "path", + { + "d": "M18 16v-8h2a2 2 0 1 1 0 4h-2m-12 2a2 2 0 0 1 -2 2h-2v-8h2a2 2 0 1 1 0 4h-2h2a2 2 0 0 1 2 2zm3 2v-8l3 6l3 -6v8" + } + ] + ], + "bold-off": [ + [ + "path", + { + "d": "M9 5h4a3.5 3.5 0 0 1 2.222 6.204m-3.222 .796h-5v-5m10.107 10.112a3.5 3.5 0 0 1 -3.107 1.888h-7v-7m-4 -9l18 18" + } + ] + ], + "bold": [ + [ + "path", + { + "d": "M7 5h6a3.5 3.5 0 0 1 0 7h-6zm6 7h1a3.5 3.5 0 0 1 0 7h-7v-7" + } + ] + ], + "bolt-off": [ + [ + "path", + { + "d": "M3 3l18 18m-5.788 -5.79l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893" + } + ] + ], + "bolt": [ + [ + "path", + { + "d": "M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11" + } + ] + ], + "bomb": [ + [ + "path", + { + "d": "M15.349 5.349l3.301 3.301a1.2 1.2 0 0 1 0 1.698l-.972 .972a7.5 7.5 0 1 1 -5 -5l.972 -.972a1.2 1.2 0 0 1 1.698 0zm1.651 1.651l1.293 -1.293a2.414 2.414 0 0 0 .707 -1.707a1 1 0 0 1 1 -1h1m-14 10a3 3 0 0 1 3 -3" + } + ] + ], + "bone-off": [ + [ + "path", + { + "d": "M12.5 8.502l.38 -.38a3 3 0 1 1 5.12 -2.122a3 3 0 1 1 -2.12 5.122l-.372 .372m-2.008 2.008l-2.378 2.378a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l2.378 -2.378m-7.5 -7.502l18 18" + } + ] + ], + "bone": [ + [ + "path", + { + "d": "M15 3a3 3 0 0 1 3 3a3 3 0 1 1 -2.12 5.122l-4.758 4.758a3 3 0 1 1 -5.117 2.297l0 -.177l-.176 0a3 3 0 1 1 2.298 -5.115l4.758 -4.758a3 3 0 0 1 2.12 -5.122z" + } + ] + ], + "bong-off": [ + [ + "path", + { + "d": "M9 5v-2h4v6m1.5 1.5l2.5 -2.5l2 2l-2.5 2.5m-.5 3.505a5 5 0 1 1 -7 -4.589v-2.416m-1 -6h6m-7.9 14h9.8m-12.9 -14l18 18" + } + ] + ], + "bong": [ + [ + "path", + { + "d": "M13 3v8.416c.134 .059 .265 .123 .393 .193l3.607 -3.609l2 2l-3.608 3.608a5 5 0 1 1 -6.392 -2.192v-8.416h4zm-5 0h6m-7.9 14h9.8" + } + ] + ], + "book-2": [ + [ + "path", + { + "d": "M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12zm0 12h-12a2 2 0 0 0 -2 2m4 -10h6" + } + ] + ], + "book-download": [ + [ + "path", + { + "d": "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5m-5 7h-7a2 2 0 0 0 -2 2m11 1l3 3l3 -3m-3 3v-9" + } + ] + ], + "book-off": [ + [ + "path", + { + "d": "M3 19a9 9 0 0 1 9 0a9 9 0 0 1 5.899 -1.096m-14.899 -11.904a9 9 0 0 1 2.114 -.884m3.8 -.21c1.07 .17 2.116 .534 3.086 1.094a9 9 0 0 1 9 0m-18 0v13m9 -13v2m0 4v7m9 -13v11m-18 -14l18 18" + } + ] + ], + "book-upload": [ + [ + "path", + { + "d": "M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5m-7 7h-5a2 2 0 0 0 -2 2m11 -2l3 -3l3 3m-3 -3v9" + } + ] + ], + "book": [ + [ + "path", + { + "d": "M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0m-18 -13a9 9 0 0 1 9 0a9 9 0 0 1 9 0m-18 0l0 13m9 -13l0 13m9 -13l0 13" + } + ] + ], + "bookmark-off": [ + [ + "path", + { + "d": "M3 3l18 18m-4 -4v3l-5 -3l-5 3v-13m1.178 -2.818c.252 -.113 .53 -.176 .822 -.176h6a2 2 0 0 1 2 2v7" + } + ] + ], + "bookmark": [ + [ + "path", + { + "d": "M9 4h6a2 2 0 0 1 2 2v14l-5 -3l-5 3v-14a2 2 0 0 1 2 -2" + } + ] + ], + "bookmarks-off": [ + [ + "path", + { + "d": "M11 7h2a2 2 0 0 1 2 2v2m0 4v6l-5 -3l-5 3v-12a2 2 0 0 1 2 -2m2.265 -3a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v10m-16 -12l18 18" + } + ] + ], + "bookmarks": [ + [ + "path", + { + "d": "M13 7a2 2 0 0 1 2 2v12l-5 -3l-5 3v-12a2 2 0 0 1 2 -2h6zm-3.735 -3a2 2 0 0 1 1.735 -1h6a2 2 0 0 1 2 2v12l-1 -.6" + } + ] + ], + "books-off": [ + [ + "path", + { + "d": "M9 9v10a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-14m3 -1a1 1 0 0 1 1 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4m0 4v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-10m-4 -1h3m1 8h4m1.254 -5.756l-1.218 -4.424a1.02 1.02 0 0 1 .634 -1.219l.133 -.041l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.236 11.75m-.92 3.077l-1.572 .38c-.562 .136 -1.133 -.19 -1.282 -.731l-.952 -3.458m-1.779 -6.78l4 -1m1.207 7.199l.716 -.18m-16.923 -12.019l18 18" + } + ] + ], + "books": [ + [ + "path", + { + "d": "M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm4 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-4 3h4m0 8h4m.803 -11.44l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041zm.197 4.44l4 -1m-2 8l3.923 -.98" + } + ] + ], + "border-all": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 6l16 0m-8 -8l0 16" + } + ] + ], + "border-bottom": [ + [ + "path", + { + "d": "M20 20l-16 0m0 -16l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01" + } + ] + ], + "border-horizontal": [ + [ + "path", + { + "d": "M4 12l16 0m-16 -8l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 7.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-inner": [ + [ + "path", + { + "d": "M4 12l16 0m-8 -8l0 16m-8 -16l0 .01m4 -.01l0 .01m8 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m16 -.01l0 .01m-16 7.99l0 .01m16 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m8 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-left": [ + [ + "path", + { + "d": "M4 20l0 -16m4 0l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-8 3.99l0 .01m8 -.01l0 .01m-12 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-8 3.99l0 .01m8 -.01l0 .01m-12 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-none": [ + [ + "path", + { + "d": "M4 4l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-outer": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 2l0 .01m-4 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m-4 3.99l0 .01" + } + ] + ], + "border-radius": [ + [ + "path", + { + "d": "M4 12v-4a4 4 0 0 1 4 -4h4m4 0l0 .01m4 -.01l0 .01m0 3.99l0 .01m0 3.99l0 .01m-16 3.99l0 .01m16 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-right": [ + [ + "path", + { + "d": "M20 4l0 16m-16 -16l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-12 3.99l0 .01m8 -.01l0 .01m-8 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-12 3.99l0 .01m8 -.01l0 .01m-8 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-style-2": [ + [ + "path", + { + "d": "M4 18v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m-2 -6.01h2m-9 0h2m-9 0h2m-2 -6h16" + } + ] + ], + "border-style": [ + [ + "path", + { + "d": "M4 20v-14a2 2 0 0 1 2 -2h14m0 4v.01m0 3.99v.01m0 3.99v.01m-12 3.99v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01" + } + ] + ], + "border-top": [ + [ + "path", + { + "d": "M4 4l16 0m-16 4l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m8 -.01l0 .01m8 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "border-vertical": [ + [ + "path", + { + "d": "M12 4l0 16m-8 -16l0 .01m4 -.01l0 .01m8 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m16 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m8 -.01l0 .01m4 -.01l0 .01m-16 3.99l0 .01m16 -.01l0 .01m-16 3.99l0 .01m4 -.01l0 .01m8 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "bottle-off": [ + [ + "path", + { + "d": "M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2zm4 -1.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v.199m0 4v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2a8.09 8.09 0 0 1 1.35 -4.474m1.336 -2.63a7.822 7.822 0 0 0 .314 -2.196m-3 11.303a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 .866 -.142m-11.866 -11.858l18 18" + } + ] + ], + "bottle": [ + [ + "path", + { + "d": "M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2zm4 -1.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537m-3 11.303a2.4 2.4 0 0 0 1 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805" + } + ] + ], + "bounce-left": [ + [ + "path", + { + "d": "M20 15.5c-3 -1 -5.5 -.5 -8 4.5c-.5 -3 -1.5 -5.5 -3 -8m-3 -3a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z" + } + ] + ], + "bounce-right": [ + [ + "path", + { + "d": "M4 15.5c3 -1 5.5 -.5 8 4.5c.5 -3 1.5 -5.5 3 -8m3 -3a2 2 0 1 1 0 -4a2 2 0 0 1 0 4z" + } + ] + ], + "bow": [ + [ + "path", + { + "d": "M17 3h4v4m0 -4l-15 15m-3 0h3v3m10.5 -1c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z" + } + ] + ], + "bowl": [ + [ + "path", + { + "d": "M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z" + } + ] + ], + "box-align-bottom-left": [ + [ + "path", + { + "d": "M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1zm-1 -4v.01m0 -5.01v.01m5 -.01v.01m6 -.01v.01m0 15.99v.01m5 -16.01v.01m0 4.99v.01m0 5.99v.01m0 4.99v.01" + } + ] + ], + "box-align-bottom-right": [ + [ + "path", + { + "d": "M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1zm1 -4v.01m0 -5.01v.01m-5 -.01v.01m-6 -.01v.01m0 15.99v.01m-5 -16.01v.01m0 4.99v.01m0 5.99v.01m0 4.99v.01" + } + ] + ], + "box-align-bottom": [ + [ + "path", + { + "d": "M4 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5zm0 -5v.01m0 -5.01v.01m5 -.01v.01m6 -.01v.01m5 -.01v.01m0 4.99v.01" + } + ] + ], + "box-align-left": [ + [ + "path", + { + "d": "M9.752 19.753v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5zm5 0h-.01m5.011 0h-.011m.011 -5h-.011m.011 -6h-.011m.011 -5h-.011m-4.99 0h-.01" + } + ] + ], + "box-align-right": [ + [ + "path", + { + "d": "M14.248 19.753v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5zm-5 0h.01m-5.011 0h.011m-.011 -5h.011m-.011 -6h.011m-.011 -5h.011m4.99 0h.01" + } + ] + ], + "box-align-top-left": [ + [ + "path", + { + "d": "M11 5v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1zm4 -1h-.01m5.01 0h-.01m.01 5h-.01m.01 6h-.01m-15.99 0h-.01m16.01 5h-.01m-4.99 0h-.01m-5.99 0h-.01m-4.99 0h-.01" + } + ] + ], + "box-align-top-right": [ + [ + "path", + { + "d": "M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1zm1 4v-.01m0 5.01v-.01m-5 .01v-.01m-6 .01v-.01m0 -15.99v-.01m-5 16.01v-.01m0 -4.99v-.01m0 -5.99v-.01m0 -4.99v-.01" + } + ] + ], + "box-align-top": [ + [ + "path", + { + "d": "M4 9.505h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5zm0 5v-.01m0 5.01v-.01m5 .01v-.01m6 .01v-.01m5 .01v-.01m0 -4.99v-.01" + } + ] + ], + "box-margin": [ + [ + "path", + { + "d": "M8 8h8v8h-8zm-4 -4v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m-16 15.99v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m0 -4.01v.01m0 -4.01v.01m0 -4.01v.01m-16 7.99v.01m0 -4.01v.01m0 -4.01v.01" + } + ] + ], + "box-model-2-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m7.424 3.405h4v4m0 4h-8v-8m-5 -5l18 18" + } + ] + ], + "box-model-2": [ + [ + "path", + { + "d": "M8 8h8v8h-8zm-4 -4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" + } + ] + ], + "box-model-off": [ + [ + "path", + { + "d": "M12 8h4v4m0 4h-8v-8m0 -4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m11.424 11.405l3.3 3.3m-3.3 -11.3l3.3 -3.3m-11.3 3.3l-3.3 -3.3m3.3 11.3l-3.3 3.3m-1.7 -16.3l18 18" + } + ] + ], + "box-model": [ + [ + "path", + { + "d": "M8 8h8v8h-8zm-4 -4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 10l3.3 3.3m-3.3 -11.3l3.3 -3.3m-11.3 3.3l-3.3 -3.3m3.3 11.3l-3.3 3.3" + } + ] + ], + "box-multiple-0": [ + [ + "path", + { + "d": "M14 6a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm-7 -3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple-1": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2m7 7v-8l-2 2" + } + ] + ], + "box-multiple-2": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2m5 1a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" + } + ] + ], + "box-multiple-3": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2m7 3a2 2 0 1 0 -2 -2m0 4a2 2 0 1 0 2 -2" + } + ] + ], + "box-multiple-4": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2m8 7v-8l-4 6h5" + } + ] + ], + "box-multiple-5": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm5 9h2a2 2 0 1 0 0 -4h-2v-4h4m1 11v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple-6": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 -4a2 2 0 1 0 -4 0v4m5 5v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple-7": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm5 1h4l-2 8m3 3v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple-8": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m5 5v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple-9": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 4a2 2 0 1 0 4 0v-4m1 9v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-multiple": [ + [ + "path", + { + "d": "M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm10 12v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "box-off": [ + [ + "path", + { + "d": "M17.765 17.757l-5.765 3.243l-8 -4.5v-9l2.236 -1.258m2.57 -1.445l3.194 -1.797l8 4.5v8.5m-5.439 -5.441l5.439 -3.059m-8 4.5v9m0 -9l-8 -4.5m-1 -4.5l18 18" + } + ] + ], + "box-padding": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 10v.01m0 -4.01v.01m0 -4.01v.01m8 7.99v.01m0 -4.01v.01m0 -4.01v.01m-4 -.01v.01m0 7.99v.01" + } + ] + ], + "box-seam": [ + [ + "path", + { + "d": "M12 3l8 4.5v9l-8 4.5l-8 -4.5v-9l8 -4.5m0 9l8 -4.5m-11.8 2.3l7.6 -4.6m-3.8 6.8v9m0 -9l-8 -4.5" + } + ] + ], + "box": [ + [ + "path", + { + "d": "M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5m0 9l8 -4.5m-8 4.5l0 9m0 -9l-8 -4.5" + } + ] + ], + "braces-off": [ + [ + "path", + { + "d": "M5.176 5.177c-.113 .251 -.176 .53 -.176 .823v3c0 1.657 -.895 3 -2 3c1.105 0 2 1.343 2 3v3a2 2 0 0 0 2 2m10 -16a2 2 0 0 1 2 2v3c0 1.657 .895 3 2 3c-1.105 0 -2 1.343 -2 3m-.176 3.821a2 2 0 0 1 -1.824 1.179m-14 -17l18 18" + } + ] + ], + "braces": [ + [ + "path", + { + "d": "M7 4a2 2 0 0 0 -2 2v3a2 3 0 0 1 -2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2m10 -16a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0 -2 3v3a2 2 0 0 1 -2 2" + } + ] + ], + "brackets-contain-end": [ + [ + "path", + { + "d": "M14 4h4v16h-4m-9 -4h.01m3.99 0h.01m3.99 0h.01" + } + ] + ], + "brackets-contain-start": [ + [ + "path", + { + "d": "M9 4h-4v16h4m9 -4h-.01m-3.99 0h-.01m-3.99 0h-.01" + } + ] + ], + "brackets-contain": [ + [ + "path", + { + "d": "M7 4h-4v16h4m10 -16h4v16h-4m-9 -4h.01m3.99 0h.01m3.99 0h.01" + } + ] + ], + "brackets-off": [ + [ + "path", + { + "d": "M5 5v15h3m8 -16h3v11m0 4v1h-3m-13 -17l18 18" + } + ] + ], + "brackets": [ + [ + "path", + { + "d": "M8 4h-3v16h3m8 -16h3v16h-3" + } + ] + ], + "braile": [ + [ + "path", + { + "d": "M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0zm-8 0a1 1 0 1 0 2 0a1 1 0 0 0 -2 0zm0 14a1 1 0 1 0 2 0a1 1 0 0 0 -2 0zm9 -7h.01m-8.01 0h.01m7.99 7h.01" + } + ] + ], + "brain": [ + [ + "path", + { + "d": "M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8m-10.5 -2.7a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8m12.5 .3a3.5 3.5 0 0 0 0 -7h-.5m2 .3v-2.8a3.5 3.5 0 0 0 -7 0m-5.5 9.5a3.5 3.5 0 0 1 0 -7h.5m-2 .3v-2.8a3.5 3.5 0 0 1 7 0v10" + } + ] + ], + "brand-4chan": [ + [ + "path", + { + "d": "M14 11s6.054 -1.05 6 -4.5c-.038 -2.324 -2.485 -3.19 -3.016 -1.5c0 0 -.502 -2 -2.01 -2c-1.508 0 -2.984 3 -.974 8zm-.02 0s6.075 -1.05 6.02 -4.5c-.038 -2.324 -2.493 -3.19 -3.025 -1.5c0 0 -.505 -2 -2.017 -2c-1.513 0 -3 3 -.977 8zm-.98 2.98l.062 .309l.081 .35l.075 .29l.092 .328l.11 .358l.061 .188l.139 .392c.64 1.73 1.841 3.837 3.88 3.805c2.324 -.038 3.19 -2.493 1.5 -3.025l.148 -.045l.165 -.058a4.13 4.13 0 0 0 .098 -.039l.222 -.098c.586 -.28 1.367 -.832 1.367 -1.777c0 -1.513 -3 -3 -8 -.977zm-2.98 -.98l-.309 .062l-.35 .081l-.29 .075l-.328 .092l-.358 .11l-.188 .061l-.392 .139c-1.73 .64 -3.837 1.84 -3.805 3.88c.038 2.324 2.493 3.19 3.025 1.5l.045 .148l.058 .165l.039 .098l.098 .222c.28 .586 .832 1.367 1.777 1.367c1.513 0 3 -3 .977 -8zm.98 -2.98l-.062 -.309l-.081 -.35l-.075 -.29l-.092 -.328l-.11 -.358l-.128 -.382l-.148 -.399c-.658 -1.687 -1.844 -3.634 -3.804 -3.604c-2.324 .038 -3.19 2.493 -1.5 3.025l-.148 .045l-.164 .058a4.13 4.13 0 0 0 -.1 .039l-.22 .098c-.588 .28 -1.368 .832 -1.368 1.777c0 1.513 3 3 8 .977z" + } + ] + ], + "brand-abstract": [ + [ + "path", + { + "d": "M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9zm-1.5 10.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m0 -5.5h8v8" + } + ] + ], + "brand-adobe": [ + [ + "path", + { + "d": "M12.893 4.514l7.977 14a0.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z" + } + ] + ], + "brand-adonis-js": [ + [ + "path", + { + "d": "M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9zm-3.137 13.922c1.137 -.422 1.637 -.922 3.137 -.922s2 .5 3.138 .922c.713 .264 1.516 -.102 1.778 -.772c.126 -.32 .11 -.673 -.044 -.983l-3.708 -7.474c-.297 -.598 -1.058 -.859 -1.7 -.583a1.24 1.24 0 0 0 -.627 .583l-3.709 7.474c-.321 .648 -.017 1.415 .679 1.714c.332 .143 .715 .167 1.056 .04z" + } + ] + ], + "brand-airbnb": [ + [ + "path", + { + "d": "M12 10c-2 0 -3 1 -3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5 -.5s1.5 -3.5 .5 -6s-2.333 -5.5 -5 -9.5c-.834 -1 -1.5 -1.5 -2.503 -1.5c-1 0 -1.623 .45 -2.497 1.5c-2.667 4 -4 7 -5 9.5s-1.5 4.5 .5 6s3.5 1 4.5 .5s1.5 -1 2.5 -2c1.506 -1.965 3 -4 3 -5.5c0 -2 -1 -3 -3 -3z" + } + ] + ], + "brand-airtable": [ + [ + "path", + { + "d": "M3 10v8l7 -3v-2.6zm0 -4l9 3l9 -3l-9 -3zm11 6.3v8.7l7 -3v-8z" + } + ] + ], + "brand-algolia": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm7.5 1h1m-5.097 2.11l.707 -.706m3.89 4.596m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m3.5 -1v1l.9 -.5z" + } + ] + ], + "brand-alpine-js": [ + [ + "path", + { + "d": "M3 11.5l4.5 4.5h9l-9 -9zm13.5 4.5l4.5 -4.5l-4.5 -4.5l-4.5 4.5" + } + ] + ], + "brand-amazon": [ + [ + "path", + { + "d": "M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94m16.5 4c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1" + } + ] + ], + "brand-amd": [ + [ + "path", + { + "d": "M16 16v-7c0 -.566 -.434 -1 -1 -1h-7l-5 -5h17c.566 0 1 .434 1 1v17l-5 -5zm-4.707 4.707l4.707 -4.707h-7a1 1 0 0 1 -1 -1v-7l-4.707 4.707a1 1 0 0 0 -.293 .707v6.586a1 1 0 0 0 1 1h6.586a1 1 0 0 0 .707 -.293z" + } + ] + ], + "brand-amigo": [ + [ + "path", + { + "d": "M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-.409 -8.365l-7.13 14.082c-1.712 3.38 1.759 5.45 3.69 3.573l1.86 -1.81c3.142 -3.054 4.959 -2.99 8.039 .11l1.329 1.337c2.372 2.387 5.865 .078 4.176 -3.225l-7.195 -14.067c-1.114 -2.18 -3.666 -2.18 -4.77 0z" + } + ] + ], + "brand-amongus": [ + [ + "path", + { + "d": "M10.646 12.774c-1.939 .396 -4.467 .317 -6.234 -.601c-2.454 -1.263 -1.537 -4.66 1.423 -4.982c2.254 -.224 3.814 -.354 5.65 .214c.835 .256 1.93 .569 1.355 3.281c-.191 1.067 -1.07 1.904 -2.194 2.088zm-4.806 -5.642c.083 -.564 .214 -1.12 .392 -1.661c.456 -.936 1.095 -2.068 3.985 -2.456a22.464 22.464 0 0 1 2.867 .08c1.776 .14 2.643 1.234 3.287 3.368c.339 1.157 .46 2.342 .629 3.537v11l-12.704 -.019c-.552 -2.386 -.262 -5.894 .204 -8.481m12.5 -2.5c.991 .163 2.105 .383 3.069 .67c.255 .13 .52 .275 .534 .505c.264 3.434 .57 7.448 .278 9.825h-3.881" + } + ] + ], + "brand-android": [ + [ + "path", + { + "d": "M4 10l0 6m16 -6l0 6m-13 -7h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0m-9 -6l1 2m7 -2l-1 2m-6 13l0 3m6 -3l0 3" + } + ] + ], + "brand-angular": [ + [ + "path", + { + "d": "M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734zm3.572 -2.245l3 -8l3 8m-5 -2h4" + } + ] + ], + "brand-ao3": [ + [ + "path", + { + "d": "M2 5c7.109 4.1 10.956 10.131 12 14c1.074 -4.67 4.49 -8.94 8 -11m-8 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 1c-.278 5.494 -2.337 7.33 -4 10c4.013 -2 6.02 -5 15.05 -5c4.012 0 3.51 2.5 1 3c2 .5 2.508 5 -2.007 2" + } + ] + ], + "brand-appgallery": [ + [ + "path", + { + "d": "M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4zm5 0a3 3 0 0 0 6 0" + } + ] + ], + "brand-apple-arcade": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 7.5v4.75a0.734 .734 0 0 1 -.055 .325a0.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a0.705 .705 0 0 1 -.401 -.691l0 -4.75m.431 -.284l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a0.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a0.691 .691 0 0 1 .028 -1.27zm7.569 -5.216l0 6" + } + ] + ], + "brand-apple-podcast": [ + [ + "path", + { + "d": "M18.364 18.364a9 9 0 1 0 -12.728 0m6.13 3.636h.468a2 2 0 0 0 1.985 -1.752l.5 -4a2 2 0 0 0 -1.985 -2.248h-1.468a2 2 0 0 0 -1.985 2.248l.5 4a2 2 0 0 0 1.985 1.752zm.234 -13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "brand-apple": [ + [ + "path", + { + "d": "M9 7c-3 0 -4 3 -4 5.5c0 3 2 7.5 4 7.5c1.088 -.046 1.679 -.5 3 -.5c1.312 0 1.5 .5 3 .5s4 -3 4 -5c-.028 -.01 -2.472 -.403 -2.5 -3c-.019 -2.17 2.416 -2.954 2.5 -3c-1.023 -1.492 -2.951 -1.963 -3.5 -2c-1.433 -.111 -2.83 1 -3.5 1c-.68 0 -1.9 -1 -3 -1zm3 -3a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2" + } + ] + ], + "brand-appstore": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 4l1.106 -1.99m1.4 -2.522l2.494 -4.488m-6 7h5m2.9 0h2.1m-1 2l-2.51 -4.518m-1.487 -2.677l-1 -1.805" + } + ] + ], + "brand-asana": [ + [ + "path", + { + "d": "M12 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m8 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-7 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "brand-backbone": [ + [ + "path", + { + "d": "M5 20l14 -8l-14 -8zm14 0l-14 -8l14 -8z" + } + ] + ], + "brand-badoo": [ + [ + "path", + { + "d": "M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c0 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36zm-14.5 .57c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5" + } + ] + ], + "brand-baidu": [ + [ + "path", + { + "d": "M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0m10.463 2.096c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221zm-5.463 -7.096m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0m7 0m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0m5 5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0" + } + ] + ], + "brand-bandcamp": [ + [ + "path", + { + "d": "M8.5 6h13.5l-7 12h-13z" + } + ] + ], + "brand-bandlab": [ + [ + "path", + { + "d": "M6.885 7l-2.536 4.907c-2.021 3.845 -2.499 8.775 3.821 9.093h6.808c4.86 -.207 7.989 -2.975 4.607 -9.093l-2.988 -4.907m-1.519 -3h-5.136l3.678 8.768c.547 1.14 .847 1.822 .162 2.676c-.053 .093 -1.332 1.907 -3.053 1.495c-.825 -.187 -1.384 -.926 -1.32 -1.74c.04 -.91 .62 -1.717 1.488 -2.074a4.463 4.463 0 0 1 2.723 -.358" + } + ] + ], + "brand-beats": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9.5 .5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m0 -.5v-8" + } + ] + ], + "brand-behance": [ + [ + "path", + { + "d": "M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5m0 -6l4.5 0m6.5 1h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1m-4.64 -10l3 0" + } + ] + ], + "brand-binance": [ + [ + "path", + { + "d": "M6 8l2 2l4 -4l4 4l2 -2l-6 -6zm0 8l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5zm14 -6l2 2l-2 2l-2 -2zm-16 0l2 2l-2 2l-2 -2zm8 0l2 2l-2 2l-2 -2z" + } + ] + ], + "brand-bing": [ + [ + "path", + { + "d": "M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z" + } + ] + ], + "brand-bitbucket": [ + [ + "path", + { + "d": "M3.648 4a0.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a0.644 .644 0 0 0 .642 -.539l3.35 -14.71a0.641 .641 0 0 0 -.64 -.744l-16.704 -.007zm10.352 11h-4l-1 -6h6z" + } + ] + ], + "brand-blackbery": [ + [ + "path", + { + "d": "M7 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm-1 6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm7 0a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm1 -6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm-2 12a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm8 -3a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1zm1 -6a1 1 0 0 0 -1 -1h-2l-.5 2h2.5a1 1 0 0 0 1 -1z" + } + ] + ], + "brand-blender": [ + [ + "path", + { + "d": "M15 14m-6 0a6 5 0 1 0 12 0a6 5 0 1 0 -12 0m6 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-11 2l9 -6.5m-6 -.5h9m-2 -4l5.65 5" + } + ] + ], + "brand-blogger": [ + [ + "path", + { + "d": "M8 21h8a5 5 0 0 0 5 -5v-3a3 3 0 0 0 -3 -3h-1v-2a5 5 0 0 0 -5 -5h-4a5 5 0 0 0 -5 5v8a5 5 0 0 0 5 5zm-1 -14m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h3a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-3a1.5 1.5 0 0 1 -1.5 -1.5zm0 5.5m0 1.5a1.5 1.5 0 0 1 1.5 -1.5h7a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1 -1.5 1.5h-7a1.5 1.5 0 0 1 -1.5 -1.5z" + } + ] + ], + "brand-booking": [ + [ + "path", + { + "d": "M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2zm4 -6h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5m7 4l.01 0" + } + ] + ], + "brand-bootstrap": [ + [ + "path", + { + "d": "M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2m-20 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2m-13 4v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z" + } + ] + ], + "brand-bulma": [ + [ + "path", + { + "d": "M5 16l1 -9l5 -5l6.5 6l-3.5 4l5 5l-8 5z" + } + ] + ], + "brand-bumble": [ + [ + "path", + { + "d": "M7 12h10m-8 -4h6m-5 8h4m2.268 -13h-8.536a1.46 1.46 0 0 0 -1.268 .748l-4.268 7.509a1.507 1.507 0 0 0 0 1.486l4.268 7.509c.26 .462 .744 .747 1.268 .748h8.536a1.46 1.46 0 0 0 1.268 -.748l4.268 -7.509a1.507 1.507 0 0 0 0 -1.486l-4.268 -7.509a1.46 1.46 0 0 0 -1.268 -.748z" + } + ] + ], + "brand-bunpo": [ + [ + "path", + { + "d": "M3.9 7.205a17.764 17.764 0 0 0 4.008 2.753a7.917 7.917 0 0 0 4.57 .567c1.5 -.33 2.907 -1 4.121 -1.956a12.107 12.107 0 0 0 2.892 -2.903c.603 -.94 .745 -1.766 .484 -2.231c-.261 -.465 -.927 -.568 -1.72 -.257a7.564 7.564 0 0 0 -2.608 2.034a18.425 18.425 0 0 0 -2.588 3.884a34.927 34.927 0 0 0 -2.093 5.073a12.908 12.908 0 0 0 -.677 3.515c-.07 .752 .07 1.51 .405 2.184c.323 .562 1.06 1.132 2.343 1.132c3.474 0 5.093 -3.53 5.463 -5.62c.24 -1.365 -.085 -3.197 -1.182 -4.01" + } + ] + ], + "brand-campaignmonitor": [ + [ + "path", + { + "d": "M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538" + } + ] + ], + "brand-carbon": [ + [ + "path", + { + "d": "M14 10v-.2a1.8 1.8 0 0 0 -1.8 -1.8h-.4a1.8 1.8 0 0 0 -1.8 1.8v4.4a1.8 1.8 0 0 0 1.8 1.8h.4a1.8 1.8 0 0 0 1.8 -1.8v-.2m-11 -11m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z" + } + ] + ], + "brand-cashapp": [ + [ + "path", + { + "d": "M17.1 8.648a0.568 .568 0 0 1 -.761 .011a5.682 5.682 0 0 0 -3.659 -1.34c-1.102 0 -2.205 .363 -2.205 1.374c0 1.023 1.182 1.364 2.546 1.875c2.386 .796 4.363 1.796 4.363 4.137c0 2.545 -1.977 4.295 -5.204 4.488l-.295 1.364a0.557 .557 0 0 1 -.546 .443h-2.034l-.102 -.011a0.568 .568 0 0 1 -.432 -.67l.318 -1.444a7.432 7.432 0 0 1 -3.273 -1.784v-.011a0.545 .545 0 0 1 0 -.773l1.137 -1.102c.214 -.2 .547 -.2 .761 0a5.495 5.495 0 0 0 3.852 1.5c1.478 0 2.466 -.625 2.466 -1.614c0 -.989 -1 -1.25 -2.886 -1.954c-2 -.716 -3.898 -1.728 -3.898 -4.091c0 -2.75 2.284 -4.091 4.989 -4.216l.284 -1.398a0.545 .545 0 0 1 .545 -.432h2.023l.114 .012a0.544 .544 0 0 1 .42 .647l-.307 1.557a8.528 8.528 0 0 1 2.818 1.58l.023 .022c.216 .228 .216 .569 0 .773l-1.057 1.057z" + } + ] + ], + "brand-chrome": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -3h8.4m-5.802 4.5l-4.2 7.275m-1 -7.275l-4.2 -7.275" + } + ] + ], + "brand-citymapper": [ + [ + "path", + { + "d": "M3 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013zm18 0a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013zm-13 1h8m-3 -3l3 3l-3 3" + } + ] + ], + "brand-codecov": [ + [ + "path", + { + "d": "M9.695 12.985a5.972 5.972 0 0 0 -3.295 -.985c-1.257 0 -2.436 .339 -3.4 1a9 9 0 1 1 18 0c-.966 -.664 -2.14 -1 -3.4 -1a6 6 0 0 0 -5.605 8.144" + } + ] + ], + "brand-codepen": [ + [ + "path", + { + "d": "M3 15l9 6l9 -6l-9 -6l-9 6m0 -6l9 6l9 -6l-9 -6l-9 6l0 6m18 -6l0 6m-9 -12l0 6m0 6l0 6" + } + ] + ], + "brand-codesandbox": [ + [ + "path", + { + "d": "M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25zm-8 4.5l4 -2.25l4 -2.25m-8 4.5l0 9m0 -9l-4 -2.25l-4 -2.25m16 4.5l-4 2v4.75m-12 -6.75l4 2l0 4.75m0 -13.5l4 2.25l4 -2.25" + } + ] + ], + "brand-cohost": [ + [ + "path", + { + "d": "M17 14m-3 0a3 2 0 1 0 6 0a3 2 0 1 0 -6 0m-9.474 3.666c-1.133 -.772 -1.897 -1.924 -2.291 -3.456c-.398 -1.54 -.29 -2.937 .32 -4.19c.61 -1.255 1.59 -2.34 2.938 -3.254c1.348 -.914 2.93 -1.625 4.749 -2.132c1.81 -.504 3.516 -.708 5.12 -.61c1.608 .1 2.979 .537 4.112 1.31s1.897 1.924 2.291 3.456c.398 1.541 .29 2.938 -.32 4.192c-.61 1.253 -1.59 2.337 -2.938 3.252c-1.348 .915 -2.93 1.626 -4.749 2.133c-1.81 .503 -3.516 .707 -5.12 .61c-1.608 -.102 -2.979 -.538 -4.112 -1.31zm6.472 -5.158c-.53 -.316 -1.23 -.508 -2 -.508c-1.657 0 -3 .895 -3 2s1.343 2 3 2c.767 0 1.467 -.192 2 -.508" + } + ] + ], + "brand-coinbase": [ + [ + "path", + { + "d": "M12.95 22c-4.503 0 -8.445 -3.04 -9.61 -7.413c-1.165 -4.373 .737 -8.988 4.638 -11.25a9.906 9.906 0 0 1 12.008 1.598l-3.335 3.367a5.185 5.185 0 0 0 -7.354 .013a5.252 5.252 0 0 0 0 7.393a5.185 5.185 0 0 0 7.354 .013l3.349 3.367a9.887 9.887 0 0 1 -7.05 2.912z" + } + ] + ], + "brand-comedy-central": [ + [ + "path", + { + "d": "M5.343 17.657a8 8 0 1 0 0 -11.314m8.485 2.829a4 4 0 1 0 0 5.656" + } + ] + ], + "brand-coreos": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-9 -9c-3.263 3.212 -3 7.654 -3 12c4.59 .244 8.814 -.282 12 -3m-11.5 -3a4.494 4.494 0 0 1 5.5 5.5" + } + ] + ], + "brand-couchdb": [ + [ + "path", + { + "d": "M6 12h12v-2a2 2 0 0 1 2 -2a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2a2 2 0 0 1 2 2v2zm0 3h12m-12 3h12m3 -7v7m-18 -7v7" + } + ] + ], + "brand-couchsurfing": [ + [ + "path", + { + "d": "M3.1 13c3.267 0 5.9 -.167 7.9 -.5c3 -.5 4 -2 4 -3.5a3 3 0 1 0 -6 0c0 1.554 1.807 3 3 4c1.193 1 2 2.5 2 3.5a1.5 1.5 0 1 1 -3 0c0 -2 4 -3.5 7 -3.5h2.9m-8.9 -1m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-cpp": [ + [ + "path", + { + "d": "M18 12h4m-2 -2v4m-9 -2h4m-2 -2v4m-4 -5a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3" + } + ] + ], + "brand-css3": [ + [ + "path", + { + "d": "M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5zm-11.5 4h7l-4.5 4h4l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5" + } + ] + ], + "brand-ctemplar": [ + [ + "path", + { + "d": "M6.04 14.831l4.46 -4.331m2.055 10.32c4.55 -3.456 7.582 -8.639 8.426 -14.405a1.668 1.668 0 0 0 -.934 -1.767a19.647 19.647 0 0 0 -8.047 -1.648a19.647 19.647 0 0 0 -8.047 1.647a1.668 1.668 0 0 0 -.934 1.767c.844 5.766 3.875 10.95 8.426 14.406a0.948 .948 0 0 0 1.11 0zm7.445 -15.82c-2 0 -4.37 3.304 -8 6.644c-3.63 -3.34 -6 -6.644 -8 -6.644m13.738 10l-4.238 -4.5" + } + ] + ], + "brand-cucumber": [ + [ + "path", + { + "d": "M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8 8 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01zm-9.5 -2.99l-.5 -1m3.5 7l.5 1m-5 -2.5l-1 .5m3 1l-.5 1m2.5 -7l.5 -1m2.5 5.5l-1 -.5m-6 -2l-1 -.5" + } + ] + ], + "brand-cupra": [ + [ + "path", + { + "d": "M4.5 10l-2.5 -4l15.298 6.909a0.2 .2 0 0 1 .09 .283l-3.388 5.808m-4 0l-3.388 -5.808a0.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4" + } + ] + ], + "brand-cypress": [ + [ + "path", + { + "d": "M19.48 17.007a9 9 0 1 0 -7.48 3.993c.896 0 1.691 -.573 1.974 -1.423l3.526 -10.577m-4 0l2 6m-4.736 -5.589a3 3 0 1 0 -.023 5.19" + } + ] + ], + "brand-d3": [ + [ + "path", + { + "d": "M3 4h1.8c3.976 0 7.2 3.582 7.2 8s-3.224 8 -7.2 8h-1.8m9 -16h5.472c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-2.472m2.472 0h-2.352m2.352 0c1.948 0 3.528 1.79 3.528 4s-1.58 4 -3.528 4h-5.472" + } + ] + ], + "brand-days-counter": [ + [ + "path", + { + "d": "M20.779 10.007a9 9 0 1 0 -10.77 10.772m2.991 .221h8v-7m-9 -6v4l3 3" + } + ] + ], + "brand-dcos": [ + [ + "path", + { + "d": "M3 18l18 -12h-18l9 14l9 -14v10l-18 -10z" + } + ] + ], + "brand-debian": [ + [ + "path", + { + "d": "M12 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5m0 2m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-deliveroo": [ + [ + "path", + { + "d": "M15 11l1 -9l5 .5l-1 13.5l-3 6l-12.5 -2.5l-1.5 -6l7 -1.5l-1.5 -7.5l4.5 -1zm.5 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -1m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-deno": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10.47 8.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5m-7 -6.5h.01" + } + ] + ], + "brand-denodo": [ + [ + "path", + { + "d": "M11 11h2v2h-2zm-7.366 4.634l1.732 -1l1 1.732l-1.732 1zm7.366 3.366h2v2h-2zm7.634 -4.366l1.732 1l-1 1.732l-1.732 -1zm-1 -7l1.732 -1l1 1.732l-1.732 1zm-6.634 -4.634h2v2h-2zm-7.366 5.366l1 -1.732l1.732 1l-1 1.732z" + } + ] + ], + "brand-deviantart": [ + [ + "path", + { + "d": "M18 3v4l-3.857 6h3.857v4h-6.429l-2.571 4h-3v-4l3.857 -6h-3.857v-4h6.429l2.571 -4z" + } + ] + ], + "brand-dingtalk": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-13 -4.5l7.02 2.632a1 1 0 0 1 .567 1.33l-1.087 2.538h1.5l-5 4l1 -4c-3.1 .03 -3.114 -3.139 -4 -6.5z" + } + ] + ], + "brand-discord": [ + [ + "path", + { + "d": "M9 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-6.5 -4.5c3.5 -1 5.5 -1 9 0m-9.5 9c3.5 1 6.5 1 10 0m-1.5 .5c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-1 2.5m-5.5 10.5c0 1 -1.356 3 -1.832 3c-1.429 0 -2.698 -1.667 -3.333 -3c-.635 -1.667 -.476 -5.833 1.428 -11.5c1.388 -1.015 2.782 -1.34 4.237 -1.5l1 2.5" + } + ] + ], + "brand-disney": [ + [ + "path", + { + "d": "M3.22 5.838c-1.307 -.15 -1.22 -.578 -1.22 -.794c0 -.216 .424 -1.044 4.34 -1.044c4.694 0 14.66 3.645 14.66 10.042s-8.71 4.931 -10.435 4.52c-1.724 -.412 -5.565 -2.256 -5.565 -4.174c0 -1.395 3.08 -2.388 6.715 -2.388c3.634 0 5.285 1.041 5.285 2c0 .5 -.074 1.229 -1 1.5m-5.98 -7.5a505.153 505.153 0 0 0 0 13" + } + ] + ], + "brand-disqus": [ + [ + "path", + { + "d": "M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9zm-.362 -6h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z" + } + ] + ], + "brand-django": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 1v8.5l-2.015 .201a2.715 2.715 0 1 1 0 -5.402l2.015 .201m4 -3.5v.01m0 2.99v5.586c0 .905 -.36 1.774 -1 2.414" + } + ] + ], + "brand-docker": [ + [ + "path", + { + "d": "M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46zm-17 -2.54h3v3h-3zm3 0h3v3h-3zm3 0h3v3h-3zm-3 -3h3v3h-3zm3 0h3v3h-3zm0 -3h3v3h-3zm-6.429 14c1.5 0 2.047 -.074 2.958 -.78m2.471 -1.22l0 .01" + } + ] + ], + "brand-doctrine": [ + [ + "path", + { + "d": "M12 14m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m4 0h6m-3 -3l3 3l-3 3m-2 -14l6.9 6" + } + ] + ], + "brand-dolby-digital": [ + [ + "path", + { + "d": "M21 6v12h-.89c-3.34 0 -6.047 -2.686 -6.047 -6s2.707 -6 6.046 -6h.891zm-17.937 0v12h.891c3.34 0 6.046 -2.686 6.046 -6s-2.707 -6 -6.046 -6h-.89z" + } + ] + ], + "brand-douban": [ + [ + "path", + { + "d": "M4 20h16m-15 -16h14m-11 4h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-2a2 2 0 0 1 2 -2zm8 6l-2 6m-6 -3l1 3" + } + ] + ], + "brand-dribbble": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -8.4c5 6 7 10.5 7.5 16.2m-10.1 -.8c3.5 -3.5 6 -6.5 14.5 -6.4m-17.8 -1.85c5 0 9.814 -.38 15.314 -5" + } + ] + ], + "brand-drops": [ + [ + "path", + { + "d": "M17.637 7.416a7.907 7.907 0 0 1 1.76 8.666a8 8 0 0 1 -7.397 4.918a8 8 0 0 1 -7.396 -4.918a7.907 7.907 0 0 1 1.759 -8.666l5.637 -5.416l5.637 5.416zm-3.171 3.507a3.595 3.595 0 0 1 .77 3.877a3.5 3.5 0 0 1 -3.236 2.2a3.5 3.5 0 0 1 -3.236 -2.2a3.595 3.595 0 0 1 .77 -3.877l2.466 -2.423l2.466 2.423z" + } + ] + ], + "brand-drupal": [ + [ + "path", + { + "d": "M12 2c0 4.308 -7 6 -7 12a7 7 0 0 0 14 0c0 -6 -7 -7.697 -7 -12zm0 9.33a65.753 65.753 0 0 1 -2.012 2.023c-1 .957 -1.988 1.967 -1.988 3.647c0 2.17 1.79 4 4 4s4 -1.827 4 -4c0 -1.676 -.989 -2.685 -1.983 -3.642c-.42 -.404 -2.259 -2.357 -5.517 -5.858l3.5 3.83z" + } + ] + ], + "brand-edge": [ + [ + "path", + { + "d": "M20.978 11.372a9 9 0 1 0 -1.593 5.773m1.593 -5.773c.21 2.993 -5.034 2.413 -6.913 1.486c1.392 -1.6 .402 -4.038 -2.274 -3.851c-1.745 .122 -2.927 1.157 -2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79m-16.345 -4.371c-.283 -4.043 8.717 -7.228 11.248 -2.688m-1.642 11.038c-2.993 .21 -5.162 -4.725 -3.567 -9.748" + } + ] + ], + "brand-elastic": [ + [ + "path", + { + "d": "M14 2a5 5 0 0 1 5 5c0 .712 -.232 1.387 -.5 2c1.894 .042 3.5 1.595 3.5 3.5c0 1.869 -1.656 3.4 -3.5 3.5c.333 .625 .5 1.125 .5 1.5a2.5 2.5 0 0 1 -2.5 2.5c-.787 0 -1.542 -.432 -2 -1c-.786 1.73 -2.476 3 -4.5 3a5 5 0 0 1 -4.583 -7a3.5 3.5 0 0 1 -.11 -6.992l.195 0a2.5 2.5 0 0 1 2 -4c.787 0 1.542 .432 2 1c.786 -1.73 2.476 -3 4.5 -3zm-5.5 7l-3 -1m4 -3l-1 4l1 2l5 2l4 -4m0 7l-3 -.5l-1 -2.5m0 6l1 -3.5m-10.083 -.5l4.083 -4" + } + ] + ], + "brand-ember": [ + [ + "path", + { + "d": "M3 12.958c8.466 1.647 11.112 -1.196 12.17 -2.294c2.116 -2.196 0 -6.589 -2.646 -5.49c-2.644 1.096 -6.35 7.686 -3.174 12.078c2.116 2.928 6 2.178 11.65 -2.252" + } + ] + ], + "brand-envato": [ + [ + "path", + { + "d": "M4.711 17.875c-.534 -1.339 -1.35 -4.178 .129 -6.47c1.415 -2.193 3.769 -3.608 5.099 -4.278l-5.229 10.748zm15 -5.367c-.54 3.409 -2.094 6.156 -4.155 7.348c-4.069 2.353 -8.144 .45 -9.297 -.188c.877 -1.436 4.433 -7.22 6.882 -10.591c2.714 -3.737 5.864 -5.978 6.565 -6.077c0 .201 .03 .55 .071 1.03c.144 1.709 .443 5.264 -.066 8.478z" + } + ] + ], + "brand-etsy": [ + [ + "path", + { + "d": "M14 12h-5m-6 -9m0 5a5 5 0 0 1 5 -5h8a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5zm12 8h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5" + } + ] + ], + "brand-evernote": [ + [ + "path", + { + "d": "M4 8h5v-5m8.9 16c.6 -2.5 1.1 -5.471 1.1 -9c0 -4.5 -2 -5 -3 -5c-1.906 0 -3 -.5 -3.5 -1c-.354 -.354 -.5 -1 -1.5 -1h-2l-5 5c0 6 2.5 8 5 8c1 0 1.5 -.5 2 -1.5s1.414 -.326 2.5 0c1.044 .313 2.01 .255 2.5 .5c1 .5 2 1.5 2 3c0 .5 0 3 -3 3s-3 -3 -1 -3m1 -8h1" + } + ] + ], + "brand-facebook": [ + [ + "path", + { + "d": "M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3" + } + ] + ], + "brand-figma": [ + [ + "path", + { + "d": "M15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6 -9m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3zm3 3a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15" + } + ] + ], + "brand-finder": [ + [ + "path", + { + "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm4 3v1m10 -1v1m-4.5 -5c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7m-7 -4.5c3.667 2 6.333 2 10 0" + } + ] + ], + "brand-firebase": [ + [ + "path", + { + "d": "M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01m1.12 -.88c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76m-5.85 11.6l10.93 -10.68" + } + ] + ], + "brand-firefox": [ + [ + "path", + { + "d": "M4.028 7.82a9 9 0 1 0 12.823 -3.4c-1.636 -1.02 -3.064 -1.02 -4.851 -1.02h-1.647m-5.439 6.085c-1.756 -1.569 -.805 -5.38 .109 -6.17c.086 .896 .585 1.208 1.111 1.685c.88 -.275 1.313 -.282 1.867 0c.82 -.91 1.694 -2.354 2.628 -2.093c-1.082 1.741 -.07 3.733 1.371 4.173c-.17 .975 -1.484 1.913 -2.76 2.686c-1.296 .938 -.722 1.85 0 2.234c.949 .506 3.611 -1 4.545 .354c-1.698 .102 -1.536 3.107 -3.983 2.727c2.523 .957 4.345 .462 5.458 -.34c1.965 -1.52 2.879 -3.542 2.879 -5.557c-.014 -1.398 .194 -2.695 -1.26 -4.75" + } + ] + ], + "brand-flickr": [ + [ + "path", + { + "d": "M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "brand-flightradar24": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m1.5 8l3.5 -8l-6.5 6m6.5 -6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-flipboard": [ + [ + "path", + { + "d": "M3.973 3h16.054c.537 0 .973 .436 .973 .973v4.052a0.973 .973 0 0 1 -.973 .973h-5.025v4.831c0 .648 -.525 1.173 -1.173 1.173h-4.829v5.025a0.973 .973 0 0 1 -.974 .973h-4.053a0.973 .973 0 0 1 -.973 -.973v-16.054c0 -.537 .436 -.973 .973 -.973z" + } + ] + ], + "brand-flutter": [ + [ + "path", + { + "d": "M7 14l-3 -3l8 -8h6zm7 7l-5 -5l5 -5h5l-5 5l5 5z" + } + ] + ], + "brand-fortnite": [ + [ + "path", + { + "d": "M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z" + } + ] + ], + "brand-foursquare": [ + [ + "path", + { + "d": "M7 3h10c.644 0 1.11 .696 .978 1.33l-1.984 9.859a1.014 1.014 0 0 1 -1 .811h-2.254c-.308 0 -.6 .141 -.793 .382l-4.144 5.25c-.599 .752 -1.809 .331 -1.809 -.632v-16c0 -.564 .44 -1 1 -1zm5 6l5 0" + } + ] + ], + "brand-framer": [ + [ + "path", + { + "d": "M6 15h12l-12 -12h12v6h-12v6l6 6v-6" + } + ] + ], + "brand-funimation": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 1h8a4 4 0 1 1 -8 0z" + } + ] + ], + "brand-gatsby": [ + [ + "path", + { + "d": "M3.296 14.297l6.407 6.407a9.018 9.018 0 0 1 -6.325 -6.116l-.082 -.291zm12.704 -1.297h5c-.41 3.603 -3.007 6.59 -6.386 7.614l-11.228 -11.229a9 9 0 0 1 15.66 -2.985" + } + ] + ], + "brand-git": [ + [ + "path", + { + "d": "M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 -1v-6m3 2l-2 -2m-2 -2l-1.9 -1.9m1.4 15.3l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z" + } + ] + ], + "brand-github-copilot": [ + [ + "path", + { + "d": "M4 18v-5.5c0 -.667 .167 -1.333 .5 -2m7.5 -3c0 -1 -.01 -4.07 -4 -3.5c-3.5 .5 -4 2.5 -4 3.5c0 1.5 0 4 3 4c4 0 5 -2.5 5 -4zm-8 4.5c-1.333 .667 -2 1.333 -2 2c0 1 0 3 1.5 4c3 2 6.5 3 8.5 3s5.499 -1 8.5 -3c1.5 -1 1.5 -3 1.5 -4c0 -.667 -.667 -1.333 -2 -2m0 6v-5.5c0 -.667 -.167 -1.333 -.5 -2m-7.5 -3l0 -.297l.01 -.269l.027 -.298l.013 -.105l.033 -.215c.014 -.073 .029 -.146 .046 -.22l.06 -.223c.336 -1.118 1.262 -2.237 3.808 -1.873c2.838 .405 3.703 1.797 3.93 2.842l.036 .204c0 .033 .01 .066 .013 .098l.016 .185l0 .171l0 .49l-.015 .394l-.02 .271c-.122 1.366 -.655 2.845 -2.962 2.845c-3.256 0 -4.524 -1.656 -4.883 -3.081l-.053 -.242a3.865 3.865 0 0 1 -.036 -.235l-.021 -.227a3.518 3.518 0 0 1 -.007 -.215zm-2 7.5v2m4 -2v2" + } + ] + ], + "brand-github": [ + [ + "path", + { + "d": "M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" + } + ] + ], + "brand-gitlab": [ + [ + "path", + { + "d": "M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z" + } + ] + ], + "brand-gmail": [ + [ + "path", + { + "d": "M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16zm-11 0h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1zm11 -16l-4 4l-4 -4m-4 2.5l8 7.5l8 -7.5" + } + ] + ], + "brand-google-analytics": [ + [ + "path", + { + "d": "M10 9m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v9.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105zm7 -7.105m0 1.105a1.105 1.105 0 0 1 1.105 -1.105h1.79a1.105 1.105 0 0 1 1.105 1.105v15.79a1.105 1.105 0 0 1 -1.105 1.105h-1.79a1.105 1.105 0 0 1 -1.105 -1.105zm-12 14.895m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "brand-google-big-query": [ + [ + "path", + { + "d": "M17.73 19.875a2.225 2.225 0 0 1 -1.948 1.125h-7.283a2.222 2.222 0 0 1 -1.947 -1.158l-4.272 -6.75a2.269 2.269 0 0 1 0 -2.184l4.272 -6.75a2.225 2.225 0 0 1 1.946 -1.158h7.285c.809 0 1.554 .443 1.947 1.158l3.98 6.75a2.33 2.33 0 0 1 0 2.25l-3.98 6.75v-.033zm-6.23 -8.375m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m6 2.5l2 2" + } + ] + ], + "brand-google-drive": [ + [ + "path", + { + "d": "M12 10l-6 10l-3 -5l6 -10zm-3 5h12l-3 5h-12m9 -5l-6 -10h6l6 10z" + } + ] + ], + "brand-google-fit": [ + [ + "path", + { + "d": "M12 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029" + } + ] + ], + "brand-google-home": [ + [ + "path", + { + "d": "M19.072 21h-14.144a1.928 1.928 0 0 1 -1.928 -1.928v-6.857c0 -.512 .203 -1 .566 -1.365l7.07 -7.063a1.928 1.928 0 0 1 2.727 0l7.071 7.063c.363 .362 .566 .853 .566 1.365v6.857a1.928 1.928 0 0 1 -1.928 1.928zm-12.072 -8v4h10v-4l-5 -5m2.8 -2.8l-11.8 11.8m4 0v4m10 -4v4" + } + ] + ], + "brand-google-one": [ + [ + "path", + { + "d": "M11 5v13.982a2 2 0 0 0 4 0v-13.982a2 2 0 1 0 -4 0zm-4.37 3.409a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z" + } + ] + ], + "brand-google-photos": [ + [ + "path", + { + "d": "M7.5 7c2.485 0 4.5 1.974 4.5 4.409v.591h-8.397a0.61 .61 0 0 1 -.426 -.173a0.585 .585 0 0 1 -.177 -.418c0 -2.435 2.015 -4.409 4.5 -4.409zm9 10c-2.485 0 -4.5 -1.974 -4.5 -4.409v-.591h8.397c.333 0 .603 .265 .603 .591c0 2.435 -2.015 4.409 -4.5 4.409zm-9.5 -.5c0 -2.485 1.972 -4.5 4.405 -4.5h.595v8.392a0.61 .61 0 0 1 -.173 .431a0.584 .584 0 0 1 -.422 .177c-2.433 0 -4.405 -2.015 -4.405 -4.5zm10 -9c0 2.485 -1.972 4.5 -4.405 4.5h-.595v-8.397a0.61 .61 0 0 1 .175 -.428a0.584 .584 0 0 1 .42 -.175c2.433 0 4.405 2.015 4.405 4.5z" + } + ] + ], + "brand-google-play": [ + [ + "path", + { + "d": "M4 3.71v16.58a0.7 .7 0 0 0 1.05 .606l14.622 -8.42a0.55 .55 0 0 0 0 -.953l-14.622 -8.419a0.7 .7 0 0 0 -1.05 .607zm11 5.29l-10.5 11.5m0 -17l10.5 11.5" + } + ] + ], + "brand-google-podcasts": [ + [ + "path", + { + "d": "M12 3v2m0 14v2m0 -13v8m-4 1v2m-4 -8v2m16 -2v2m-12 -8v8m8 -6v-2m0 14v-8" + } + ] + ], + "brand-google": [ + [ + "path", + { + "d": "M17.788 5.108a9 9 0 1 0 3.212 6.892h-8" + } + ] + ], + "brand-grammarly": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12.697 -2.566a4.5 4.5 0 1 0 .217 4.788m-2.414 -.222h2.5v2.5" + } + ] + ], + "brand-graphql": [ + [ + "path", + { + "d": "M5.308 7.265l5.385 -3.029m2.615 0l5.384 3.03m1.308 2.235v5m-1.307 2.236l-5.385 3.029m-2.616 0l-5.384 -3.03m-1.308 -2.235v-5m8.772 -4.714l6.121 10.202m-.393 1.012h-13m-.393 -1.012l6.122 -10.201m.771 -1.287m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 17m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-6.5 -12.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m17.5 0m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 -8m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0" + } + ] + ], + "brand-gravatar": [ + [ + "path", + { + "d": "M5.64 5.632a9 9 0 1 0 6.36 -2.632v7.714" + } + ] + ], + "brand-grindr": [ + [ + "path", + { + "d": "M13 13.282c0 .492 .784 1.718 2.102 1.718c1.318 0 2.898 -.966 2.898 -2.062c0 -.817 -.932 -.938 -1.409 -.938c-.228 0 -3.591 .111 -3.591 1.282zm-1 7.718c-2.984 0 -6.471 -2.721 -6.63 -2.982c-2.13 -3.49 -2.37 -13.703 -2.37 -13.703l1.446 -1.315c2.499 .39 5.023 .617 7.554 .68a58.626 58.626 0 0 0 7.554 -.68l1.446 1.315s-.24 10.213 -2.37 13.704c-.16 .26 -3.646 2.981 -6.63 2.981zm-1 -7.718c0 .492 -.784 1.718 -2.102 1.718c-1.318 0 -2.898 -.966 -2.898 -2.062c0 -.817 .932 -.938 1.409 -.938c.228 0 3.591 .111 3.591 1.282z" + } + ] + ], + "brand-guardian": [ + [ + "path", + { + "d": "M14 13h6m-16 -1c0 -9.296 9.5 -9 9.5 -9c-2.808 0 -4.5 4.373 -4.5 9s1.763 8.976 4.572 8.976c0 .023 -9.572 1.092 -9.572 -8.976zm10.5 -9c1.416 0 3.853 1.16 4.5 2v3.5m-4 4.5v8s2.77 -.37 4 -2v-6m-5.5 8h1.5m-1.5 -18h1" + } + ] + ], + "brand-gumroad": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-7.5 1h2.5v3m-.976 -6.618a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3" + } + ] + ], + "brand-hbo": [ + [ + "path", + { + "d": "M2 16v-8m4 0v8m-4 -4h4m3 4h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8zm10 -8a4 4 0 1 1 0 8a4 4 0 0 1 0 -8zm0 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-headlessui": [ + [ + "path", + { + "d": "M6.744 4.325l7.82 -1.267a4.456 4.456 0 0 1 5.111 3.686l1.267 7.82a4.456 4.456 0 0 1 -3.686 5.111l-7.82 1.267a4.456 4.456 0 0 1 -5.111 -3.686l-1.267 -7.82a4.456 4.456 0 0 1 3.686 -5.111zm.508 3.379l7.897 -1.28a1 1 0 0 1 1.147 .828l.36 2.223l-9.562 3.51l-.67 -4.134a1 1 0 0 1 .828 -1.147z" + } + ] + ], + "brand-hipchat": [ + [ + "path", + { + "d": "M17.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 3 -3.49 3 -5.789c0 -4.286 -4.03 -7.764 -9 -7.764c-4.97 0 -9 3.478 -9 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29zm-10.302 -3.792c2.5 2.5 6.5 2.5 9 0" + } + ] + ], + "brand-html5": [ + [ + "path", + { + "d": "M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5zm-4.5 4h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5" + } + ] + ], + "brand-inertia": [ + [ + "path", + { + "d": "M12.5 8l4 4l-4 4h4.5l4 -4l-4 -4zm-9 0l4 4l-4 4h4.5l4 -4l-4 -4z" + } + ] + ], + "brand-instagram": [ + [ + "path", + { + "d": "M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4zm8 4m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m7.5 -4.5l0 0" + } + ] + ], + "brand-intercom": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 2v3m3 -4v6m4 -6v6m3 -5v3m-10 4c4 2.667 6 2.667 10 0" + } + ] + ], + "brand-javascript": [ + [ + "path", + { + "d": "M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5zm-12.5 4h3v8l-2 -1m8 -7h-2.5a0.5 .5 0 0 0 -.5 .5v3a0.5 .5 0 0 0 .5 .5h1.423a0.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5" + } + ] + ], + "brand-kickstarter": [ + [ + "path", + { + "d": "M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 1 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z" + } + ] + ], + "brand-kotlin": [ + [ + "path", + { + "d": "M20 20h-16v-16h16m-16 16l16 -16m-16 8l8 -8m0 8l8 8" + } + ] + ], + "brand-laravel": [ + [ + "path", + { + "d": "M3 17l8 5l7 -4v-8l-4 -2.5l4 -2.5l4 2.5v4l-11 6.5l-4 -2.5v-7.5l-4 -2.5zm8 1v4m-4 -6.5l7 -4m0 -4v4l4 2.5m-7 -1v-7.5l-4 -2.5l-4 2.5m4 2.5l4 -2.5m7 4.5l4 -2.5" + } + ] + ], + "brand-lastfm": [ + [ + "path", + { + "d": "M20 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -6a5 5 0 1 0 -1 7" + } + ] + ], + "brand-linkedin": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 5l0 5m0 -8l0 .01m4 7.99l0 -5m4 5v-3a2 2 0 0 0 -4 0" + } + ] + ], + "brand-linktree": [ + [ + "path", + { + "d": "M9 3l-7 12h3v5h5v-5h-2l4 -7zm6 0l7 12h-3v5h-5v-5h2l-4 -7z" + } + ] + ], + "brand-linqpad": [ + [ + "path", + { + "d": "M5 21h3.5l2.5 -6l2.5 -1l2.5 7h4l1 -4.5l-2 -1l-7 -12l-6 -.5l1.5 4l2.5 .5l1 2.5l-7 8z" + } + ] + ], + "brand-loom": [ + [ + "path", + { + "d": "M17.464 6.518a6 6 0 1 0 -3.023 7.965m3.041 2.981a6 6 0 1 0 -7.965 -3.023m-2.977 3.041a6 6 0 1 0 3.024 -7.965m-3.046 -2.977a6 6 0 1 0 7.965 3.024" + } + ] + ], + "brand-mailgun": [ + [ + "path", + { + "d": "M17 12a2 2 0 1 0 4 0a9 9 0 1 0 -2.987 6.697m-6.013 -6.697m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-mantine": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8 4c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4m3 1h-2m2 6h-2m-2 -3h.01" + } + ] + ], + "brand-mastercard": [ + [ + "path", + { + "d": "M14 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 -2.235a3 3 0 1 0 0 4.47m-9 -9.235m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" + } + ] + ], + "brand-mastodon": [ + [ + "path", + { + "d": "M18.648 15.254c-1.816 1.763 -6.648 1.626 -6.648 1.626a18.262 18.262 0 0 1 -3.288 -.256c1.127 1.985 4.12 2.81 8.982 2.475c-1.945 2.013 -13.598 5.257 -13.668 -7.636l-.026 -1.154c0 -3.036 .023 -4.115 1.352 -5.633c1.671 -1.91 6.648 -1.666 6.648 -1.666s4.977 -.243 6.648 1.667c1.329 1.518 1.352 2.597 1.352 5.633s-.456 4.074 -1.352 4.944zm-6.648 -4.05v-2.926c0 -1.258 -.895 -2.278 -2 -2.278s-2 1.02 -2 2.278v4.722m4 -4.722c0 -1.258 .895 -2.278 2 -2.278s2 1.02 2 2.278v4.722" + } + ] + ], + "brand-matrix": [ + [ + "path", + { + "d": "M4 3h-1v18h1m16 0h1v-18h-1m-13 6v6m5 0v-3.5a2.5 2.5 0 1 0 -5 0v.5m10 3v-3.5a2.5 2.5 0 1 0 -5 0v.5" + } + ] + ], + "brand-mcdonalds": [ + [ + "path", + { + "d": "M20 20c0 -3.952 -.966 -16 -4.038 -16s-3.962 9.087 -3.962 14.756c0 -5.669 -.896 -14.756 -3.962 -14.756c-3.065 0 -4.038 12.048 -4.038 16" + } + ] + ], + "brand-medium": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 3h1l3 3l3 -3h1m-8 6l2 0m4 0l2 0m-7 -6l0 6m6 -6l0 6" + } + ] + ], + "brand-mercedes": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9v9l7 5m-7 -5l-7 5" + } + ] + ], + "brand-messenger": [ + [ + "path", + { + "d": "M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1m5 -7l3 -2l2 2l3 -2" + } + ] + ], + "brand-meta": [ + [ + "path", + { + "d": "M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174zc-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z" + } + ] + ], + "brand-miniprogram": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-13 -.497a2.5 2.5 0 1 0 4 2v-3a2.5 2.5 0 1 1 4 2" + } + ] + ], + "brand-mixpanel": [ + [ + "path", + { + "d": "M4.5 12m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m18.5 0m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-6 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "brand-monday": [ + [ + "path", + { + "d": "M19.5 15.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-8.5 -8.5a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876zm7 0a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z" + } + ] + ], + "brand-mongodb": [ + [ + "path", + { + "d": "M12 3v19m6 -10.773c0 3.273 -1.812 4.77 -6 9.273c-4.188 -4.503 -6 -6 -6 -9.273c0 -4.454 3.071 -6.927 6 -9.227c2.929 2.3 6 4.773 6 9.227z" + } + ] + ], + "brand-my-oppo": [ + [ + "path", + { + "d": "M18.316 5h-12.632l-3.418 4.019a1.089 1.089 0 0 0 .019 1.447l9.714 10.534l9.715 -10.49a1.09 1.09 0 0 0 .024 -1.444l-3.422 -4.066zm-9.316 6l3 3l3 -3" + } + ] + ], + "brand-mysql": [ + [ + "path", + { + "d": "M13 21c-1.427 -1.026 -3.59 -3.854 -4 -6c-.486 .77 -1.501 2 -2 2c-1.499 -.888 -.574 -3.973 0 -6c-1.596 -1.433 -2.468 -2.458 -2.5 -4c-3.35 -3.44 -.444 -5.27 2.5 -3h1c8.482 .5 6.421 8.07 9 11.5c2.295 .522 3.665 2.254 5 3.5c-2.086 -.2 -2.784 -.344 -3.5 0c.478 1.64 2.123 2.2 3.5 3m-13 -15h.01" + } + ] + ], + "brand-national-geographic": [ + [ + "path", + { + "d": "M7 3h10v18h-10z" + } + ] + ], + "brand-nem": [ + [ + "path", + { + "d": "M12.182 2c1.94 .022 3.879 .382 5.818 1.08l.364 .135a23.075 23.075 0 0 1 3.636 1.785c0 5.618 -1.957 10.258 -5.87 13.92c-1.24 1.239 -2.5 2.204 -3.78 2.898l-.35 .182c-1.4 -.703 -2.777 -1.729 -4.13 -3.079c-3.912 -3.663 -5.87 -8.303 -5.87 -13.921c2.545 -1.527 5.09 -2.471 7.636 -2.832l.364 -.048a16.786 16.786 0 0 1 1.818 -.12h.364zm-10.082 5.07c2.073 6.72 5.373 7.697 9.9 2.93c0 -4 1.357 -6.353 4.07 -7.06l.59 -.11m-.31 15.68s2.65 -5.51 -4.35 -8.51" + } + ] + ], + "brand-netbeans": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-3.5 2.557a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014zm-3.5 11.57v-9l-7.5 -4.5m7.5 4.5l7.5 -4.5m-7.5 -4.5v4.5m7.5 8.5l-3.5 -2m-8 0l-3.5 2" + } + ] + ], + "brand-netease-music": [ + [ + "path", + { + "d": "M9 4c-2.93 1.346 -5 5.046 -5 8.492c0 4.508 4 7.508 8 7.508s8 -3 8 -7c0 -3.513 -3.5 -5.513 -6 -5.513s-5 1.513 -5 4.513c0 2 1.5 3 3 3s3 -1 3 -3c0 -3.513 -2 -4.508 -2 -6.515c0 -3.504 3.5 -2.603 4 -1.502" + } + ] + ], + "brand-netflix": [ + [ + "path", + { + "d": "M9 3l10 18h-4l-10 -18zm-4 0v18h4v-10.5m10 10.5v-18h-4v10.5" + } + ] + ], + "brand-nexo": [ + [ + "path", + { + "d": "M17 3l5 3v12l-5 3l-10 -6v-6l10 6v-6l-5 -3zm-5 3l-5 -3l-5 3v12l5 3l4.7 -3.13" + } + ] + ], + "brand-nextcloud": [ + [ + "path", + { + "d": "M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m-2.5 .5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m17.5 0m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0" + } + ] + ], + "brand-nextjs": [ + [ + "path", + { + "d": "M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993m-4 -5.657v-3" + } + ] + ], + "brand-nord-vpn": [ + [ + "path", + { + "d": "M9.992 15l-2.007 -3l-4.015 8c-2.212 -3.061 -2.625 -7.098 -.915 -10.463a10.14 10.14 0 0 1 8.945 -5.537a10.14 10.14 0 0 1 8.945 5.537c1.71 3.365 1.297 7.402 -.915 10.463l-4.517 -8l-1.505 1.5m.492 1.5l-3 -6l-2.5 4.5" + } + ] + ], + "brand-notion": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 1h3l6 6m-8 -6v10m-1 0h2m6 -10h2m-1 0v10h-1l-7 -7" + } + ] + ], + "brand-npm": [ + [ + "path", + { + "d": "M1 8h22v7h-12v2h-4v-2h-6zm6 0v7m7 -7v7m3 -4v4m-13 -4v4m7 -4v1m9 -1v4" + } + ] + ], + "brand-nuxt": [ + [ + "path", + { + "d": "M12.146 8.583l-1.3 -2.09a1.046 1.046 0 0 0 -1.786 .017l-5.91 9.908a1.046 1.046 0 0 0 .897 1.582h3.913m12.083 0c.743 0 1.201 -.843 .82 -1.505l-4.044 -7.013a0.936 .936 0 0 0 -1.638 0l-4.043 7.013c-.382 .662 .076 1.505 .819 1.505h8.086z" + } + ] + ], + "brand-nytimes": [ + [ + "path", + { + "d": "M11.036 5.058a8 8 0 1 0 8.706 9.965m-7.742 5.977v-11l-7.5 4m13 -11a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91m3.17 4.09v8m7 -7h-.01" + } + ] + ], + "brand-office": [ + [ + "path", + { + "d": "M4 18h9v-12l-5 2v5l-4 2v-8l9 -4l7 2v13l-7 3z" + } + ] + ], + "brand-ok-ru": [ + [ + "path", + { + "d": "M12 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 3c0 8 0 8 -8 8s-8 0 -8 -8s0 -8 8 -8s8 0 8 8zm-10.5 1c1.333 .667 3.667 .667 5 0m-5 4l2.5 -3l2.5 3m-2.5 -3.5v.5" + } + ] + ], + "brand-onedrive": [ + [ + "path", + { + "d": "M18.456 10.45a6.45 6.45 0 0 0 -12 -2.151a4.857 4.857 0 0 0 -4.44 5.241a4.856 4.856 0 0 0 5.236 4.444h10.751a3.771 3.771 0 0 0 3.99 -3.54a3.772 3.772 0 0 0 -3.538 -3.992z" + } + ] + ], + "brand-onlyfans": [ + [ + "path", + { + "d": "M8.5 6a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0 -13zm0 9a2.5 2.5 0 1 1 0 -5a2.5 2.5 0 0 1 0 5zm5.5 1c2.5 0 6.42 -1.467 7 -4h-6c3 -1 6.44 -3.533 7 -6h-4c-3.03 0 -3.764 -.196 -5 1.5" + } + ] + ], + "brand-open-source": [ + [ + "path", + { + "d": "M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z" + } + ] + ], + "brand-openvpn": [ + [ + "path", + { + "d": "M15.618 20.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603m3.617 -8.244m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-opera": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-3 0a3 5 0 1 0 6 0a3 5 0 1 0 -6 0" + } + ] + ], + "brand-pagekit": [ + [ + "path", + { + "d": "M12.077 20h-5.077v-16h11v14h-5.077" + } + ] + ], + "brand-patreon": [ + [ + "path", + { + "d": "M3 3h3v18h-3zm12 6.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0" + } + ] + ], + "brand-paypal": [ + [ + "path", + { + "d": "M10 13l2.5 0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 0a0.5 .5 0 0 1 -.5 -.6l.2 -1.4" + } + ] + ], + "brand-paypay": [ + [ + "path", + { + "d": "M6.375 21l3.938 -13.838m-7.313 -1.162c16.731 0 21.231 9.881 4.5 11m13.5 2v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z" + } + ] + ], + "brand-peanut": [ + [ + "path", + { + "d": "M15 16.25l-.816 -.36l-.462 -.196c-1.444 -.592 -2 -.593 -3.447 0l-.462 .195l-.817 .359a4.5 4.5 0 1 1 0 -8.49v0l1.054 .462l.434 .178c1.292 .507 1.863 .48 3.237 -.082l.462 -.195l.817 -.359a4.5 4.5 0 1 1 0 8.49" + } + ] + ], + "brand-pepsi": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m1 4c5.713 -2.973 11 -3.5 13.449 -11.162m-12.449 12.662c5.118 -2.859 15 0 14 -11" + } + ] + ], + "brand-php": [ + [ + "path", + { + "d": "M12 12m-10 0a10 9 0 1 0 20 0a10 9 0 1 0 -20 0m3.5 3l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653m9.5 2l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653m-4 -5.5l-1 5.5m.6 -3h2.4l-.5 3" + } + ] + ], + "brand-picsart": [ + [ + "path", + { + "d": "M12 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m7 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 0v11a2 2 0 1 0 4 0v-4.5" + } + ] + ], + "brand-pinterest": [ + [ + "path", + { + "d": "M8 20l4 -9m-1.3 3c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7m4.7 -1.7m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-pocket": [ + [ + "path", + { + "d": "M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2m3 7l4 4l4 -4" + } + ] + ], + "brand-polymer": [ + [ + "path", + { + "d": "M6.706 6l-3.706 6l3.706 6h1.059l8.47 -12h1.06l3.705 6l-3.706 6" + } + ] + ], + "brand-powershell": [ + [ + "path", + { + "d": "M4.887 20h11.868c.893 0 1.664 -.665 1.847 -1.592l2.358 -12c.212 -1.081 -.442 -2.14 -1.462 -2.366a1.784 1.784 0 0 0 -.385 -.042h-11.868c-.893 0 -1.664 .665 -1.847 1.592l-2.358 12c-.212 1.081 .442 2.14 1.462 2.366c.127 .028 .256 .042 .385 .042zm4.113 -12l4 4l-6 4m5 0h3" + } + ] + ], + "brand-prisma": [ + [ + "path", + { + "d": "M4.186 16.202l3.615 5.313c.265 .39 .754 .57 1.215 .447l10.166 -2.718a1.086 1.086 0 0 0 .713 -1.511l-7.505 -15.483a0.448 .448 0 0 0 -.787 -.033l-7.453 12.838a1.07 1.07 0 0 0 .037 1.147zm4.314 5.798l3.5 -20" + } + ] + ], + "brand-producthunt": [ + [ + "path", + { + "d": "M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5m2 -1m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-pushbullet": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8 -4v8h2a4 4 0 1 0 0 -8h-2zm-3 0v8" + } + ] + ], + "brand-pushover": [ + [ + "path", + { + "d": "M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1m2.5 -7l-5.5 15" + } + ] + ], + "brand-python": [ + [ + "path", + { + "d": "M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3m4 -2h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3m-8 2v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4m-5 -9l0 .01m2 11.99l0 .01" + } + ] + ], + "brand-qq": [ + [ + "path", + { + "d": "M14 7h.01m-4.01 0h.01m-4.01 4c4 4 8 4 12 0m-9 2.5v2.5m1.5 -6c.667 1.333 2.333 1.333 3 0h-3zm5.5 11c1.5 0 3.065 -1 1 -3c4.442 2 1.987 -4.5 1 -7c0 -4 -1.558 -8 -6 -8s-6 4 -6 8c-.987 2.5 -3.442 9 1 7c-2.065 2 -.5 3 1 3h8z" + } + ] + ], + "brand-react-native": [ + [ + "path", + { + "d": "M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097m-3.963 0c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254m-5.572 9.906c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978m-4 6.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8m3.495 6.9c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087m-2.2 3.913c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393m-5.314 3.401h-.01c-.01 .13 -.12 .24 -.26 .24a0.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24" + } + ] + ], + "brand-react": [ + [ + "path", + { + "d": "M6.306 8.711c-2.602 .723 -4.306 1.926 -4.306 3.289c0 2.21 4.477 4 10 4c.773 0 1.526 -.035 2.248 -.102m3.444 -.609c2.603 -.722 4.308 -1.926 4.308 -3.289c0 -2.21 -4.477 -4 -10 -4c-.773 0 -1.526 .035 -2.25 .102m-3.445 7.185c-.676 2.615 -.485 4.693 .695 5.373c1.913 1.105 5.703 -1.877 8.464 -6.66c.387 -.67 .733 -1.339 1.036 -2m1.194 -3.286c.677 -2.616 .487 -4.696 -.694 -5.376c-1.913 -1.105 -5.703 1.877 -8.464 6.66c-.387 .67 -.733 1.34 -1.037 2m4.501 -6.575c-1.925 -1.892 -3.82 -2.766 -5 -2.084c-1.913 1.104 -1.226 5.877 1.536 10.66c.386 .67 .793 1.304 1.212 1.896m2.25 2.678c1.926 1.893 3.821 2.768 5 2.086c1.913 -1.104 1.226 -5.877 -1.536 -10.66c-.375 -.65 -.78 -1.283 -1.212 -1.897m-2.752 4.763a1 1 0 1 0 1 -1.732a1 1 0 0 0 -1 1.732z" + } + ] + ], + "brand-reason": [ + [ + "path", + { + "d": "M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm15 13h-3v-6h3m0 3h-3m-7 3v-6h2.5a1.5 1.5 0 0 1 0 3h-2.5m4 3l-2 -3" + } + ] + ], + "brand-reddit": [ + [ + "path", + { + "d": "M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59 -4.03 6.5 -9 6.5c-4.875 0 -8.845 -2.8 -9 -6.294l-1 -.206a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14zl1 -5l6 1m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-9 9m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-4.5 4c.667 .333 1.333 .5 2 .5s1.333 -.167 2 -.5" + } + ] + ], + "brand-redhat": [ + [ + "path", + { + "d": "M6 10.5l1.436 -4c.318 -.876 .728 -1.302 1.359 -1.302c.219 0 1.054 .365 1.88 .583c.825 .219 .733 -.329 .908 -.487c.176 -.158 .355 -.294 .61 -.294c.242 0 .553 .048 1.692 .448c.759 .267 1.493 .574 2.204 .922c1.175 .582 1.426 .913 1.595 1.507l.816 4.623c2.086 .898 3.5 2.357 3.5 3.682c0 1.685 -1.2 3.818 -5.957 3.818c-6.206 0 -14.043 -4.042 -14.043 -7.32c0 -1.044 1.333 -1.77 4 -2.18zc0 .969 4.39 3.5 9.5 3.5c1.314 0 3 .063 3 -1.5" + } + ] + ], + "brand-redux": [ + [ + "path", + { + "d": "M16.54 7c-.805 -2.365 -2.536 -4 -4.54 -4c-2.774 0 -5.023 2.632 -5.023 6.496c0 1.956 1.582 4.727 2.512 6m-4.778 -3.513c-1.656 1.877 -2.214 4.185 -1.211 5.911c1.387 2.39 5.138 2.831 8.501 .9c1.703 -.979 2.875 -3.362 3.516 -4.798m-.503 6c2.511 0 4.523 -.438 5.487 -2.1c1.387 -2.39 -.215 -5.893 -3.579 -7.824c-1.702 -.979 -4.357 -1.235 -5.927 -1.07m-.502 .866c.48 .276 1.095 .112 1.372 -.366a1 1 0 0 0 -.367 -1.365a1.007 1.007 0 0 0 -1.373 .366a1 1 0 0 0 .368 1.365zm-.993 5.638m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 -1.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-revolut": [ + [ + "path", + { + "d": "M10.908 6c-.091 .363 -.908 5 -.908 5h1.228c1.59 0 2.772 -1.168 2.772 -2.943c0 -1.249 -.818 -2.057 -2.087 -2.057h-1zm4.592 7.5l1.791 4.558c.535 1.352 1.13 2.008 1.709 2.442c-1 .5 -2.616 .522 -3.605 .497c-.973 0 -2.28 -.24 -3.106 -2.6l-1.289 -3.397h-1.5s-.465 2.243 -.65 3.202c-.092 .704 .059 1.594 .15 2.298c-1 .5 -2.5 .5 -3.5 .5c-.727 0 -1.45 -.248 -1.5 -1.5l0 -.311a7 7 0 0 1 .149 -1.409c.75 -3.577 1.366 -7.17 1.847 -10.78c.23 -1.722 0 -3.5 0 -3.5c.585 -.144 2.709 -.602 6.787 -.471a10.26 10.26 0 0 1 3.641 .722c.308 .148 .601 .326 .875 .531c.254 .212 .497 .437 .727 .674c.3 .382 .545 .804 .727 1.253c.155 .483 .237 .987 .243 1.493c0 2.462 -1.412 4.676 -3.5 5.798z" + } + ] + ], + "brand-safari": [ + [ + "path", + { + "d": "M8 16l2 -6l6 -2l-2 6l-6 2m4 -4m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-samsungpass": [ + [ + "path", + { + "d": "M4 10m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 -2v-1.862c0 -2.838 2.239 -5.138 5 -5.138s5 2.3 5 5.138v1.862m-6.515 7.577c.337 .29 .7 .423 1.515 .423h.413c.323 0 .633 -.133 .862 -.368a1.27 1.27 0 0 0 .356 -.886c0 -.332 -.128 -.65 -.356 -.886a1.203 1.203 0 0 0 -.862 -.368h-.826a1.2 1.2 0 0 1 -.861 -.367a1.27 1.27 0 0 1 -.356 -.886c0 -.332 .128 -.651 .356 -.886a1.2 1.2 0 0 1 .861 -.368h.413c.816 0 1.178 .133 1.515 .423" + } + ] + ], + "brand-sass": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -1.477c2.46 -.826 4 -.826 4 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193" + } + ] + ], + "brand-sentry": [ + [ + "path", + { + "d": "M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a9 9 0 0 1 5.62 8.341h4c.663 0 2.337 0 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824" + } + ] + ], + "brand-sharik": [ + [ + "path", + { + "d": "M4.281 16.606a8.968 8.968 0 0 1 1.363 -10.977a9.033 9.033 0 0 1 11.011 -1.346c-1.584 4.692 -2.415 6.96 -4.655 8.717c-1.584 1.242 -3.836 2.24 -7.719 3.606zm16.335 -7.306c2.113 7.59 -4.892 13.361 -11.302 11.264c1.931 -3.1 3.235 -4.606 4.686 -6.065c1.705 -1.715 3.591 -3.23 6.616 -5.199z" + } + ] + ], + "brand-shazam": [ + [ + "path", + { + "d": "M10 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3m1 -5l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3m1 5m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-shopee": [ + [ + "path", + { + "d": "M4 7l.867 12.143a2 2 0 0 0 2 1.857h10.276a2 2 0 0 0 2 -1.857l.867 -12.143h-16zm4.5 0c0 -1.653 1.5 -4 3.5 -4s3.5 2.347 3.5 4m-6 10c.413 .462 1 1 2.5 1s2.5 -.897 2.5 -2s-1 -1.5 -2.5 -2s-2 -1.47 -2 -2c0 -1.104 1 -2 2 -2s1.5 0 2.5 1" + } + ] + ], + "brand-sketch": [ + [ + "path", + { + "d": "M3.262 10.878l8 8.789c.4 .44 1.091 .44 1.491 0l8 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z" + } + ] + ], + "brand-skype": [ + [ + "path", + { + "d": "M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1 -5.953 5.953a9 9 0 0 1 -11.253 -11.253a4.5 4.5 0 0 1 5.953 -5.954a8.987 8.987 0 0 1 2.65 -.396zm-4 11.5c.5 2 2.358 2.5 4 2.5c2.905 0 4 -1.187 4 -2.5c0 -1.503 -1.927 -2.5 -4 -2.5s-4 -1 -4 -2.5c0 -1.313 1.095 -2.5 4 -2.5c1.642 0 3.5 .5 4 2.5" + } + ] + ], + "brand-slack": [ + [ + "path", + { + "d": "M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6" + } + ] + ], + "brand-snapchat": [ + [ + "path", + { + "d": "M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118" + } + ] + ], + "brand-snapseed": [ + [ + "path", + { + "d": "M8.152 3.115a0.46 .46 0 0 0 -.609 0c-2.943 2.58 -4.529 5.441 -4.543 8.378c0 2.928 1.586 5.803 4.543 8.392a0.46 .46 0 0 0 .61 0c2.957 -2.589 4.547 -5.464 4.547 -8.392c0 -2.928 -1.6 -5.799 -4.548 -8.378zm-.152 16.885l12.09 -.011c.503 0 .91 -.434 .91 -.969v-6.063c0 -.535 -.407 -.968 -.91 -.968h-7.382" + } + ] + ], + "brand-snowflake": [ + [ + "path", + { + "d": "M14 21v-5.5l4.5 2.5m-8.5 3v-5.5l-4.5 2.5m-2 -3.5l4.5 -2.5l-4.5 -2.5m17 0l-4.5 2.5l4.5 2.5m-10.5 -11.5v5.5l-4.5 -2.5m8.5 -3v5.5l4.5 -2.5m-6.5 5l1 1l-1 1l-1 -1z" + } + ] + ], + "brand-socket-io": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8 -1h1l3 -4zm1 2h1l-4 4z" + } + ] + ], + "brand-solidjs": [ + [ + "path", + { + "d": "M2 17.5c4.667 3 8 4.5 10 4.5c2.5 0 4 -1.5 4 -3.5s-1.5 -3.5 -4 -3.5c-2 0 -5.333 .833 -10 2.5zm3 -4c4.667 -1.667 8 -2.5 10 -2.5c2.5 0 4 1.5 4 3.5c0 .738 -.204 1.408 -.588 1.96l-2.883 3.825m6.471 -13.785c-4 -3 -8 -4.5 -10 -4.5c-2.04 0 -2.618 .463 -3.419 1.545m-6.581 13.955l3 -4m17 -7l-3 4m-10.419 -6.955l-2.953 3.711m1.788 5.406c-1.51 -.476 -2.416 -1.479 -2.416 -3.162c0 -2.5 1.5 -3.5 4 -3.5c1.688 0 5.087 1.068 8.198 3.204a114.76 114.76 0 0 1 1.802 1.296l-2.302 .785" + } + ] + ], + "brand-soundcloud": [ + [ + "path", + { + "d": "M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4zm-8 -3l0 9m-3 0l0 -7m-3 6l0 -2" + } + ] + ], + "brand-spacehey": [ + [ + "path", + { + "d": "M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1 14h6v-6a3 3 0 0 0 -6 0v6zm-3 -12v2.5a3.5 3.5 0 0 1 -3.5 3.5h-.5a3 3 0 0 1 0 -6h4z" + } + ] + ], + "brand-spotify": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 -.027c2.5 -1.473 5.5 -.973 7.5 .527m-6.5 2.5c1.5 -1 4 -1 5 .5m-7 -6.5c2 -1 6 -2 10 .5" + } + ] + ], + "brand-stackoverflow": [ + [ + "path", + { + "d": "M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1m-12 -1h8m-7.678 -3.418l7.956 .836m-7.491 -4.25l7.826 1.664m-6.517 -5.068l7.608 2.472" + } + ] + ], + "brand-stackshare": [ + [ + "path", + { + "d": "M19 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 -6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h3l3.5 6h3.5m0 -12h-3.5l-3.5 6" + } + ] + ], + "brand-steam": [ + [ + "path", + { + "d": "M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302zm0 4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-storybook": [ + [ + "path", + { + "d": "M5 4l.5 16.5l13.5 .5v-18zm4 11c.6 1.5 1.639 2 3.283 2h-.283c1.8 0 3 -.974 3 -2.435c0 -1.194 -.831 -1.799 -2.147 -2.333l-1.975 -.802c-1.15 -.467 -1.878 -1.422 -1.878 -2.467c0 -.97 .899 -1.786 2.087 -1.893l.613 -.055c1.528 -.138 3 .762 3.3 1.985m1 -5.5v1" + } + ] + ], + "brand-storytel": [ + [ + "path", + { + "d": "M4.103 22c2.292 -2.933 16.825 -2.43 16.825 -11.538c0 -6.298 -4.974 -8.462 -8.451 -8.462c-3.477 0 -9.477 3.036 -9.477 11.241c0 6.374 1.103 8.759 1.103 8.759z" + } + ] + ], + "brand-strava": [ + [ + "path", + { + "d": "M15 13l-5 -10l-5 10m6 0l4 8l4 -8" + } + ] + ], + "brand-stripe": [ + [ + "path", + { + "d": "M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z" + } + ] + ], + "brand-sublime-text": [ + [ + "path", + { + "d": "M19 8l-14 4.5v-5.5l14 -4.5zm0 9l-14 4.5v-5.5l14 -4.5zm0 -5.5l-14 -4.5m0 5.5l14 4.5" + } + ] + ], + "brand-superhuman": [ + [ + "path", + { + "d": "M16 12l4 3l-8 7l-8 -7l4 -3m4 -9l-8 6l8 6l8 -6zm0 12h8" + } + ] + ], + "brand-supernova": [ + [ + "path", + { + "d": "M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m5 3h.5c3.038 0 5.5 -1.343 5.5 -3s-2.462 -3 -5.5 -3c-1.836 0 -3.462 .49 -4.46 1.245m-2.04 -1.245h-.5c-3.038 0 -5.5 1.343 -5.5 3s2.462 3 5.5 3c1.844 0 3.476 -.495 4.474 -1.255m2.026 -4.745v-.5c0 -3.038 -1.343 -5.5 -3 -5.5s-3 2.462 -3 5.5c0 1.833 .49 3.457 1.241 4.456m-1.241 2.044v.5c0 3.038 1.343 5.5 3 5.5s3 -2.462 3 -5.5c0 -1.842 -.494 -3.472 -1.252 -4.47" + } + ] + ], + "brand-surfshark": [ + [ + "path", + { + "d": "M19.954 9.447c-.237 -6.217 0 -6.217 -6 -6.425c-5.774 -.208 -6.824 1 -7.91 5.382c-2.884 11.816 -3.845 14.716 4.792 11.198c9.392 -3.831 9.297 -5.382 9.114 -10.155zm-11.954 6.553h.452c1.943 .007 3.526 -1.461 3.543 -3.286v-2.428c.018 -1.828 1.607 -3.298 3.553 -3.286h.452" + } + ] + ], + "brand-svelte": [ + [ + "path", + { + "d": "M15 8l-5 3l.821 -.495c1.86 -1.15 4.412 -.49 5.574 1.352a3.91 3.91 0 0 1 -1.264 5.42l-5.053 3.126c-1.86 1.151 -4.312 .591 -5.474 -1.251a3.91 3.91 0 0 1 1.263 -5.42l.26 -.16m1.873 3.428l5 -3l-.822 .496c-1.86 1.151 -4.411 .491 -5.574 -1.351a3.91 3.91 0 0 1 1.264 -5.42l5.054 -3.127c1.86 -1.15 4.311 -.59 5.474 1.252a3.91 3.91 0 0 1 -1.264 5.42l-.26 .16" + } + ] + ], + "brand-symfony": [ + [ + "path", + { + "d": "M6 13c.458 .667 1.125 1 2 1c1.313 0 2 -.875 2 -1.5c0 -1.5 -2 -1 -2 -2c0 -.625 .516 -1.5 1.5 -1.5c2.5 0 1.563 2 5.5 2c.667 0 1 -.333 1 -1m-7 7c-.095 .667 .238 1 1 1c1.714 0 2.714 -2 3 -6c.286 -4 1.571 -6 3 -6c.571 0 .905 .333 1 1m5 5c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10a10 10 0 0 1 10 10z" + } + ] + ], + "brand-tabler": [ + [ + "path", + { + "d": "M8 9l3 3l-3 3m5 0l3 0m-12 -11m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z" + } + ] + ], + "brand-tailwind": [ + [ + "path", + { + "d": "M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 2 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z" + } + ] + ], + "brand-taobao": [ + [ + "path", + { + "d": "M17 10h-6.5m.5 -1c-.44 .843 -1 1.5 -2 2m4 -1v6.8m-4 -1.8c.71 3.675 6 1.366 8.5 .5m-.5 -1l1 2m-8 -3.5h5m-12 -3c4.5 1 2.902 4.85 0 8m4 -9c1.43 -1.652 2.06 -2.876 2.5 -4m-1 2c4.333 -.667 7 -1 8 -1c1.5 0 3.5 -.5 4 1.5c.333 1.333 .5 2.833 .5 4.5v4c0 2 -1 3 -5 3m-11 -13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-ted": [ + [ + "path", + { + "d": "M2 8h4m-2 0v8m9 -8h-4v8h4m-4 -4h2.5m4.5 -4v8h2a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3h-2z" + } + ] + ], + "brand-telegram": [ + [ + "path", + { + "d": "M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4" + } + ] + ], + "brand-tether": [ + [ + "path", + { + "d": "M14.08 20.188c-1.15 1.083 -3.02 1.083 -4.17 0l-6.93 -6.548c-.96 -.906 -1.27 -2.624 -.69 -3.831l2.4 -5.018c.47 -.991 1.72 -1.791 2.78 -1.791h9.06c1.06 0 2.31 .802 2.78 1.79l2.4 5.019c.58 1.207 .26 2.925 -.69 3.83c-3.453 3.293 -3.466 3.279 -6.94 6.549zm-2.08 -5.188v-7m-4 0h8" + } + ] + ], + "brand-threejs": [ + [ + "path", + { + "d": "M8 22l-5 -19l19 5.5zm4.573 -4.42l-6.152 -1.576l8.796 -9.466l1.914 6.64m-4.558 4.402l-1.573 -6.58l6.13 2.179m-7.603 -8.286l1.473 6.107l-6.31 -1.564z" + } + ] + ], + "brand-tidal": [ + [ + "path", + { + "d": "M5.333 6l3.334 3.25l3.333 -3.25l3.333 3.25l3.334 -3.25l3.333 3.25l-3.333 3.25l-3.334 -3.25l-3.333 3.25l3.333 3.25l-3.333 3.25l-3.333 -3.25l3.333 -3.25l-3.333 -3.25l-3.334 3.25l-3.333 -3.25z" + } + ] + ], + "brand-tiktok": [ + [ + "path", + { + "d": "M9 12a4 4 0 1 0 4 4v-12a5 5 0 0 0 5 5" + } + ] + ], + "brand-tinder": [ + [ + "path", + { + "d": "M18.918 8.174c2.56 4.982 .501 11.656 -5.38 12.626c-7.702 1.687 -12.84 -7.716 -7.054 -13.229c.309 -.305 1.161 -1.095 1.516 -1.349c0 .528 .27 3.475 1 3.167c3 0 4 -4.222 3.587 -7.389c2.7 1.411 4.987 3.376 6.331 6.174z" + } + ] + ], + "brand-topbuzz": [ + [ + "path", + { + "d": "M4.417 8.655a0.524 .524 0 0 1 -.405 -.622l.986 -4.617a0.524 .524 0 0 1 .626 -.404l14.958 3.162c.285 .06 .467 .339 .406 .622l-.987 4.618a0.524 .524 0 0 1 -.625 .404l-4.345 -.92c-.198 -.04 -.315 .024 -.353 .197l-2.028 9.49a0.527 .527 0 0 1 -.625 .404l-4.642 -.982a0.527 .527 0 0 1 -.406 -.622l2.028 -9.493c.037 -.17 -.031 -.274 -.204 -.31l-4.384 -.927z" + } + ] + ], + "brand-torchain": [ + [ + "path", + { + "d": "M15.588 15.537l-3.553 -3.537l-7.742 8.18c-.791 .85 .153 2.18 1.238 1.73l9.616 -4.096a1.398 1.398 0 0 0 .44 -2.277zm-7.176 -7.073l3.553 3.536l7.742 -8.18c.791 -.85 -.153 -2.18 -1.238 -1.73l-9.616 4.098a1.398 1.398 0 0 0 -.44 2.277z" + } + ] + ], + "brand-toyota": [ + [ + "path", + { + "d": "M12 12m-10 0a10 7 0 1 0 20 0a10 7 0 1 0 -20 0m7 0c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7zm-2.585 -5.809c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806" + } + ] + ], + "brand-trello": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 1h3v10h-3zm7 0h3v6h-3z" + } + ] + ], + "brand-tripadvisor": [ + [ + "path", + { + "d": "M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m12.5 0m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 -4.5a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5zm-11 0a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5zm4 6.5l1.5 2l1.5 -2m-4.5 -8.75c2 -.667 4 -.667 6 0" + } + ] + ], + "brand-tumblr": [ + [ + "path", + { + "d": "M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4" + } + ] + ], + "brand-twilio": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-12 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "brand-twitch": [ + [ + "path", + { + "d": "M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1zm12 3l0 4m-4 -4l0 4" + } + ] + ], + "brand-twitter": [ + [ + "path", + { + "d": "M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z" + } + ] + ], + "brand-typescript": [ + [ + "path", + { + "d": "M15 17.5c.32 .32 .754 .5 1.207 .5h.543c.69 0 1.25 -.56 1.25 -1.25v-.25a1.5 1.5 0 0 0 -1.5 -1.5a1.5 1.5 0 0 1 -1.5 -1.5v-.25c0 -.69 .56 -1.25 1.25 -1.25h.543c.453 0 .887 .18 1.207 .5m-9 -.5h4m-2 0v6m10 1v-14a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2z" + } + ] + ], + "brand-uber": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-6 2h6" + } + ] + ], + "brand-ubuntu": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m7.723 2.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m4 0a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203m-14.693 6.204m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "brand-unity": [ + [ + "path", + { + "d": "M14 3l6 4v7m-2 3l-6 4l-6 -4m-2 -3v-7l6 -4m-6 4l8 5v9m8 -14l-8 5" + } + ] + ], + "brand-unsplash": [ + [ + "path", + { + "d": "M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z" + } + ] + ], + "brand-upwork": [ + [ + "path", + { + "d": "M3 7v5a3 3 0 0 0 6 0v-5h1l4 6c.824 1.319 1.945 2 3.5 2a3.5 3.5 0 0 0 0 -7c-2.027 0 -3.137 1 -3.5 3c-.242 1.33 -.908 4 -2 8" + } + ] + ], + "brand-valorant": [ + [ + "path", + { + "d": "M14.5 14h4.5l2 -2v-6zm-5.5 5h5l-11 -13v6z" + } + ] + ], + "brand-vercel": [ + [ + "path", + { + "d": "M3 19h18l-9 -15z" + } + ] + ], + "brand-vimeo": [ + [ + "path", + { + "d": "M3 8.5l1 1s1.5 -1.102 2 -.5c.509 .609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5c2 -1.5 7.5 -5.5 8.5 -11.5c.444 -2.661 -1 -4 -2.5 -4c-2 0 -4.047 1.202 -4.5 4c2.05 -1.254 2.551 1 1.5 3c-1.052 2 -2 3 -2.5 3c-.49 0 -.924 -1.165 -1.5 -3.5c-.59 -2.42 -.5 -6.5 -3 -6.5s-5.5 4.5 -5.5 4.5z" + } + ] + ], + "brand-vinted": [ + [ + "path", + { + "d": "M11.028 6c0 7.695 -.292 11.728 0 12c2.046 -5 4.246 -12.642 5.252 -14.099c.343 -.497 .768 -.93 1.257 -1.277c.603 -.39 1.292 -.76 1.463 -.575c-.07 2.319 -4.023 15.822 -4.209 16.314a6.135 6.135 0 0 1 -3.465 3.386c-3.213 .78 -3.429 -.446 -3.836 -1.134c-.95 -2.103 -1.682 -14.26 -1.445 -15.615c.05 -.523 .143 -1.851 2.491 -2c2.359 -.354 2.547 1.404 2.492 3z" + } + ] + ], + "brand-visa": [ + [ + "path", + { + "d": "M21 15l-1 -6l-2.5 6m-8.5 0l1 -6m-7 0h1v6h.5l2.5 -6m9 .5a0.5 .5 0 0 0 -.5 -.5h-.75c-.721 0 -1.337 .521 -1.455 1.233l-.09 .534a1.059 1.059 0 0 0 1.045 1.233a1.059 1.059 0 0 1 1.045 1.233l-.09 .534a1.476 1.476 0 0 1 -1.455 1.233h-.75a0.5 .5 0 0 1 -.5 -.5m5.5 -.5h2.7" + } + ] + ], + "brand-visual-studio": [ + [ + "path", + { + "d": "M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z" + } + ] + ], + "brand-vite": [ + [ + "path", + { + "d": "M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1zm5 2l7 -1.5l-10 17l-10 -17l7.741 1.5" + } + ] + ], + "brand-vivaldi": [ + [ + "path", + { + "d": "M21.648 6.808c-2.468 4.28 -4.937 8.56 -7.408 12.836c-.397 .777 -1.366 1.301 -2.24 1.356c-.962 .102 -1.7 -.402 -2.154 -1.254c-1.563 -2.684 -3.106 -5.374 -4.66 -8.064c-.943 -1.633 -1.891 -3.266 -2.83 -4.905a2.47 2.47 0 0 1 -.06 -2.45a2.493 2.493 0 0 1 2.085 -1.307c.951 -.065 1.85 .438 2.287 1.281c.697 1.19 2.043 3.83 2.55 4.682a3.919 3.919 0 0 0 3.282 2.017c2.126 .133 3.974 -.95 4.21 -3.058c0 -.164 .228 -3.178 .846 -3.962c.619 -.784 1.64 -1.155 2.606 -.893a2.484 2.484 0 0 1 1.814 2.062c.08 .581 -.041 1.171 -.343 1.674" + } + ] + ], + "brand-vk": [ + [ + "path", + { + "d": "M14 19h-4a8 8 0 0 1 -8 -8v-5h4v5a4 4 0 0 0 4 4h0v-9h4v4.5l.03 0a4.531 4.531 0 0 0 3.97 -4.496h4l-.342 1.711a6.858 6.858 0 0 1 -3.658 4.789h0a5.34 5.34 0 0 1 3.566 4.111l.434 2.389h0h-4a4.531 4.531 0 0 0 -3.97 -4.496v4.5z" + } + ] + ], + "brand-volkswagen": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-7 -14l4.5 11l1.5 -5h2l1.5 5l4.5 -11m-10 -3l2 6h2l2 -6" + } + ] + ], + "brand-vsco": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-4 0a5 5 0 1 0 -10 0a5 5 0 0 0 10 0zm-5 -9v4m9 5h-4m-5 9v-4m-9 -5h4m11.364 -6.364l-2.828 2.828m2.828 9.9l-2.828 -2.828m-9.9 2.828l2.828 -2.828m-2.828 -9.9l2.828 2.828" + } + ] + ], + "brand-vscode": [ + [ + "path", + { + "d": "M16 3v18l4 -2.5v-13zm-6.835 10.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141m4.795 4.359l-11 -10l-2 1l13 13.5" + } + ] + ], + "brand-vue": [ + [ + "path", + { + "d": "M16.5 4l-4.5 8l-4.5 -8m-4.5 0l9 16l9 -16" + } + ] + ], + "brand-walmart": [ + [ + "path", + { + "d": "M12 8.04v-5.04m3.5 7l4.5 -2.5m-4.5 6.5l4.5 2.5m-8 -.54v5.04m-3.5 -7l-4.5 2.5m4.5 -6.5l-4.5 -2.505" + } + ] + ], + "brand-waze": [ + [ + "path", + { + "d": "M6.66 17.52a7 7 0 0 1 -3.66 -4.52c2 0 3 -1 3 -2.51c0 -3.92 2.25 -7.49 7.38 -7.49c4.62 0 7.62 3.51 7.62 8a8.08 8.08 0 0 1 -3.39 6.62m-7.61 1.07a17.29 17.29 0 0 0 3.33 .3h.54m2.13 .01m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 -10h.01m-5.01 0h.01" + } + ] + ], + "brand-webflow": [ + [ + "path", + { + "d": "M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 0 -4.253 2.055 -5 4z" + } + ] + ], + "brand-wechat": [ + [ + "path", + { + "d": "M16.5 10c3.038 0 5.5 2.015 5.5 4.5c0 1.397 -.778 2.645 -2 3.47l0 2.03l-1.964 -1.178a6.649 6.649 0 0 1 -1.536 .178c-3.038 0 -5.5 -2.015 -5.5 -4.5s2.462 -4.5 5.5 -4.5zm-5.303 5.698c-.69 .196 -1.43 .302 -2.197 .302a8.008 8.008 0 0 1 -2.612 -.432l-2.388 1.432v-2.801c-1.237 -1.082 -2 -2.564 -2 -4.199c0 -3.314 3.134 -6 7 -6c3.782 0 6.863 2.57 7 5.785l0 .233m-6 -2.018h.01m-3.01 0h.01m7.99 6h.01m2.99 0h.01" + } + ] + ], + "brand-weibo": [ + [ + "path", + { + "d": "M19 14.127c0 3.073 -3.502 5.873 -8 5.873c-4.126 0 -8 -2.224 -8 -5.565c0 -1.78 .984 -3.737 2.7 -5.567c2.362 -2.51 5.193 -3.687 6.551 -2.238c.415 .44 .752 1.39 .749 2.062c2 -1.615 4.308 .387 3.5 2.693c1.26 .557 2.5 .538 2.5 2.742zm-4 -10.127h1a5 5 0 0 1 5 5v1" + } + ] + ], + "brand-whatsapp": [ + [ + "path", + { + "d": "M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9m6 -11a0.5 .5 0 0 0 1 0v-1a0.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a0.5 .5 0 0 0 0 -1h-1a0.5 .5 0 0 0 0 1" + } + ] + ], + "brand-windows": [ + [ + "path", + { + "d": "M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9zm-5.8 -15l0 14m-8 -7l16 0" + } + ] + ], + "brand-windy": [ + [ + "path", + { + "d": "M9 4c0 5.5 -.33 16 4 16s7.546 -11.27 8 -13m-18 -3c.253 5.44 1.449 16 5.894 16c4.444 0 8.42 -10.036 9.106 -14" + } + ] + ], + "brand-wish": [ + [ + "path", + { + "d": "M2 6l5.981 2.392l-.639 6.037c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.381 1.057a4.328 4.328 0 0 0 4.132 -3.57c-.18 .893 .06 1.819 .65 2.514a3 3 0 0 0 2.38 1.056a4.328 4.328 0 0 0 4.132 -3.57l.333 -4.633m-7.496 4.632l.334 -3" + } + ] + ], + "brand-wix": [ + [ + "path", + { + "d": "M3 9l1.5 6l1.379 -5.515a0.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6m3 2.5v3.5m3 -6l5 6m0 -6l-5 6m-3 -6h.01" + } + ] + ], + "brand-wordpress": [ + [ + "path", + { + "d": "M9.5 9h3m-8.5 0h2.5m4.5 0l3 11l4 -9m-12.5 -2l3.5 11l3 -7m6 -2c.177 -.528 1 -1.364 1 -2.5c0 -1.78 -.776 -2.5 -1.875 -2.5c-.898 0 -1.125 .812 -1.125 1.429c0 1.83 2 2.058 2 3.571zm-6 1m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "brand-xbox": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m3.5 -7c7.72 2.266 10.037 7.597 12.5 12.5m-1.5 -12.5c-7.72 2.266 -10.037 7.597 -12.5 12.5" + } + ] + ], + "brand-xing": [ + [ + "path", + { + "d": "M16 21l-4 -7l6.5 -11m-11.5 4l2 3.5l-3 4.5" + } + ] + ], + "brand-yahoo": [ + [ + "path", + { + "d": "M3 6l5 0m-1 12l7 0m-9.5 -12l5.5 7v5m0 -5l6 -5m-3.5 0l5 0m2.5 3l0 4m0 3l0 .01" + } + ] + ], + "brand-yatse": [ + [ + "path", + { + "d": "M7 3l5 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3 1.77v-5.565l3 -1.771z" + } + ] + ], + "brand-ycombinator": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 1l4 6l4 -6m-4 10l0 -4" + } + ] + ], + "brand-youtube-kids": [ + [ + "path", + { + "d": "M17.782 17.03l-3.413 .235l-.023 0c-1.117 .09 -2.214 .335 -3.257 .725l-2.197 .794a3.597 3.597 0 0 1 -2.876 -.189a3.342 3.342 0 0 1 -1.732 -2.211l-1.204 -5.293a3.21 3.21 0 0 1 .469 -2.503a3.468 3.468 0 0 1 2.177 -1.452l9.843 -2.06c1.87 -.392 3.716 .744 4.124 2.537l1.227 5.392a3.217 3.217 0 0 1 -.61 2.7a3.506 3.506 0 0 1 -2.528 1.323zm-7.782 -7.03l.972 4l4.028 -3z" + } + ] + ], + "brand-youtube": [ + [ + "path", + { + "d": "M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4zm7 0l5 3l-5 3z" + } + ] + ], + "brand-zalando": [ + [ + "path", + { + "d": "M7.531 21c-.65 0 -1 -.15 -1.196 -.27c-.266 -.157 -.753 -.563 -1.197 -1.747a20.583 20.583 0 0 1 -1.137 -6.983c.015 -2.745 .436 -5.07 1.137 -6.975c.444 -1.2 .93 -1.605 1.197 -1.763c.192 -.103 .545 -.262 1.195 -.262c.244 0 .532 .022 .871 .075a19.093 19.093 0 0 1 6.425 2.475h.007a19.572 19.572 0 0 1 5.287 4.508c.783 .99 .879 1.627 .879 1.942c0 .315 -.096 .953 -.879 1.943a19.571 19.571 0 0 1 -5.287 4.5h-.007a19.041 19.041 0 0 1 -6.425 2.474a5.01 5.01 0 0 1 -.871 .083z" + } + ] + ], + "brand-zapier": [ + [ + "path", + { + "d": "M3 12h6m12 0h-6m-3 -9v6m0 6v6m-6.364 -15.364l4.243 4.243m8.485 8.485l-4.243 -4.243m4.243 -8.485l-4.243 4.243m-4.242 4.242l-4.243 4.243" + } + ] + ], + "brand-zeit": [ + [ + "path", + { + "d": "M3 20h18l-9 -16z" + } + ] + ], + "brand-zhihu": [ + [ + "path", + { + "d": "M14 6h6v12h-2l-2 2l-1 -2h-1zm-10 6h6.5m0 -6h-5m.5 -2c-.5 2.5 -1.5 3.5 -2.5 4.5m4.5 -2.5v7c0 4.5 -2 5.5 -4 7m7 -2l-3 -5" + } + ] + ], + "brand-zoom": [ + [ + "path", + { + "d": "M17.011 9.385v5.128l3.989 3.487v-12zm-13.124 -3.385h10.08c1.468 0 3.033 1.203 3.033 2.803v8.196a0.991 .991 0 0 1 -.975 1h-10.373c-1.667 0 -2.652 -1.5 -2.652 -3l.01 -8a0.882 .882 0 0 1 .208 -.71a0.841 .841 0 0 1 .67 -.287z" + } + ] + ], + "brand-zulip": [ + [ + "path", + { + "d": "M6.5 3h11c1.325 0 2.5 1 2.5 2.5c0 2 -1.705 3.264 -2 3.5l-4.5 4l2 -5h-9a2.5 2.5 0 0 1 0 -5zm11 18h-11c-1.325 0 -2.5 -1 -2.5 -2.5c0 -2 1.705 -3.264 2 -3.5l4.5 -4l-2 5h9a2.5 2.5 0 1 1 0 5z" + } + ] + ], + "brand-zwift": [ + [ + "path", + { + "d": "M5.5 4c-1.465 0 -2.5 1.101 -2.5 2.5s1.035 2.5 2.5 2.5h2.5l-4.637 7.19a2.434 2.434 0 0 0 -.011 2.538c.473 .787 1.35 1.272 2.3 1.272h10.848c1.465 0 2.5 -1.101 2.5 -2.5s-1.035 -2.5 -2.5 -2.5h-2.5l7 -11h-15.5z" + } + ] + ], + "bread-off": [ + [ + "path", + { + "d": "M18.415 18.414a2 2 0 0 1 -1.415 .586h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 .435 -4.795m3.565 -.441h8a3 3 0 0 1 2 5.235v4.765m-16 -12l18 18" + } + ] + ], + "bread": [ + [ + "path", + { + "d": "M17 5a3 3 0 0 1 2 5.235v6.765a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6.764a3 3 0 0 1 1.824 -5.231l.176 0h10z" + } + ] + ], + "briefcase-off": [ + [ + "path", + { + "d": "M11 7h8a2 2 0 0 1 2 2v8m-1.166 2.818a1.993 1.993 0 0 1 -.834 .182h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2m1.185 -2.842a2 2 0 0 1 1.815 -1.158h4a2 2 0 0 1 2 2v2m-4 5v.01m-9 .99a20 20 0 0 0 11.905 1.928m3.263 -.763a20 20 0 0 0 2.832 -1.165m-18 -10l18 18" + } + ] + ], + "briefcase": [ + [ + "path", + { + "d": "M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm5 -2v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2m-4 5l0 .01m-9 .99a20 20 0 0 0 18 0" + } + ] + ], + "brightness-2": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-3 -6h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z" + } + ] + ], + "brightness-down": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -7l0 .01m5 1.99l0 .01m2 4.99l0 .01m-2 4.99l0 .01m-5 1.99l0 .01m-5 -2.01l0 .01m-2 -5.01l0 .01m2 -5.01l0 .01" + } + ] + ], + "brightness-half": [ + [ + "path", + { + "d": "M12 9a3 3 0 0 0 0 6v-6zm-6 -3h3.5l2.5 -2.5l2.5 2.5h3.5v3.5l2.5 2.5l-2.5 2.5v3.5h-3.5l-2.5 2.5l-2.5 -2.5h-3.5v-3.5l-2.5 -2.5l2.5 -2.5z" + } + ] + ], + "brightness-off": [ + [ + "path", + { + "d": "M12 3v5m0 4v9m-6.359 -15.369a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m4.534 4.547l4.15 -4.15m-4.65 9.65l1.025 -.983m2.065 -1.981l4.28 -4.106m-7.37 12.67l3.79 -3.79m2 -2l3.054 -3.054m-17.85 -7.75l18 18" + } + ] + ], + "brightness-up": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -7l0 -2m5 4l1.4 -1.4m.6 6.4l2 0m-4 5l1.4 1.4m-6.4 .6l0 2m-5 -4l-1.4 1.4m.4 -6.4l-2 0m3 -5l-1.4 -1.4" + } + ] + ], + "brightness": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9l0 18m0 -12l4.65 -4.65m-4.65 9.95l7.37 -7.37m-7.37 12.67l8.85 -8.85" + } + ] + ], + "broadcast-off": [ + [ + "path", + { + "d": "M18.364 19.364a9 9 0 0 0 -9.721 -14.717m-2.488 1.509a9 9 0 0 0 -.519 13.208m9.9 -2.828a5 5 0 0 0 -3.536 -8.536m-3 1a5 5 0 0 0 -.535 7.536m3.536 -4.536a1 1 0 1 0 1 1m-10 -10l18 18" + } + ] + ], + "broadcast": [ + [ + "path", + { + "d": "M18.364 19.364a9 9 0 1 0 -12.728 0m9.9 -2.828a5 5 0 1 0 -7.072 0m3.536 -3.536m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "browser-check": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm0 3h16m-12 -4v4m1.5 6.5l1.5 1.5l3 -3" + } + ] + ], + "browser-off": [ + [ + "path", + { + "d": "M8 4h11a1 1 0 0 1 1 1v11m-.288 3.702a1 1 0 0 1 -.712 .298h-14a1 1 0 0 1 -1 -1v-14c0 -.276 .112 -.526 .293 -.707m-.293 3.707h4m4 0h8m-17 -5l18 18" + } + ] + ], + "browser-plus": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm0 3h16m-12 -4v4m2 6h4m-2 -2v4" + } + ] + ], + "browser-x": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm0 3h16m-12 -4v4m2 8l4 -4m0 4l-4 -4" + } + ] + ], + "browser": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm0 3l16 0m-12 -4l0 4" + } + ] + ], + "brush-off": [ + [ + "path", + { + "d": "M3 17a4 4 0 1 1 4 4h-4v-4zm18 -14a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284m12.8 -10.2a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712m-7.8 -12.8l18 18" + } + ] + ], + "brush": [ + [ + "path", + { + "d": "M3 21v-4a4 4 0 1 1 4 4h-4m18 -18a16 16 0 0 0 -12.8 10.2m12.8 -10.2a16 16 0 0 1 -10.2 12.8m-.2 -6.8a9 9 0 0 1 4.4 4.4" + } + ] + ], + "bucket-droplet": [ + [ + "path", + { + "d": "M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737zm8.737 -6.263c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081zm-6.245 2.081c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208" + } + ] + ], + "bucket-off": [ + [ + "path", + { + "d": "M5.029 5.036c-.655 .58 -1.029 1.25 -1.029 1.964c0 2.033 3.033 3.712 6.96 3.967m3.788 -.21c3.064 -.559 5.252 -2.029 5.252 -3.757c0 -2.21 -3.582 -4 -8 -4c-1.605 0 -3.1 .236 -4.352 .643m-3.648 3.357c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.1 -.3 .252 -.812 .457 -1.535m.862 -3.146c.262 -.975 .735 -2.76 1.418 -5.354a7.45 7.45 0 0 0 .263 -1.965m-17 -4l18 18" + } + ] + ], + "bucket": [ + [ + "path", + { + "d": "M12 7m-8 0a8 4 0 1 0 16 0a8 4 0 1 0 -16 0c0 .664 .088 1.324 .263 1.965l2.737 10.035c.5 1.5 2.239 2 5 2s4.5 -.5 5 -2c.333 -1 1.246 -4.345 2.737 -10.035a7.45 7.45 0 0 0 .263 -1.965" + } + ] + ], + "bug-off": [ + [ + "path", + { + "d": "M9.884 5.873a3 3 0 0 1 5.116 2.127v1m-2 0h3a6 6 0 0 1 1 3v1m-.298 3.705a5 5 0 0 1 -9.702 -1.705v-3a6 6 0 0 1 1 -3h1m-6 4h4m10 0h4m-9 7v-6m-8 5l3.35 -2m-3.35 -10l3.75 2.4m12.25 -2.4l-3.75 2.4m-13.25 -6.4l18 18" + } + ] + ], + "bug": [ + [ + "path", + { + "d": "M9 9v-1a3 3 0 0 1 6 0v1m-7 0h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3m-5 4l4 0m10 0l4 0m-9 7l0 -6m-8 5l3.35 -2m12.65 2l-3.35 -2m-12.65 -10l3.75 2.4m12.25 -2.4l-3.75 2.4" + } + ] + ], + "building-arch": [ + [ + "path", + { + "d": "M3 21l18 0m-17 0v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15m-11 0v-8a3 3 0 0 1 6 0v8" + } + ] + ], + "building-bank": [ + [ + "path", + { + "d": "M3 21l18 0m-18 -11l18 0m-16 -4l7 -3l7 3m-15 4l0 11m16 -11l0 11m-12 -7l0 3m4 -3l0 3m4 -3l0 3" + } + ] + ], + "building-bridge-2": [ + [ + "path", + { + "d": "M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a4 4 0 0 0 -8 0v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2" + } + ] + ], + "building-bridge": [ + [ + "path", + { + "d": "M6 5l0 14m12 -14l0 14m-16 -4l20 0m-19 -7a7.5 7.5 0 0 0 3 -2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2m-9 2l0 5" + } + ] + ], + "building-broadcast-tower": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5.616 1.924a5 5 0 1 0 -9.23 0m12.921 1.541a9 9 0 1 0 -16.615 0m5.308 5.531l3 -9l3 9m-5 -2h4" + } + ] + ], + "building-carousel": [ + [ + "path", + { + "d": "M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m-1 -4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 -4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-9 6l4 -10l4 10" + } + ] + ], + "building-castle": [ + [ + "path", + { + "d": "M15 19v-2a3 3 0 0 0 -6 0v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14h4v3h3v-3h4v3h3v-3h4v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-12 -8l18 0" + } + ] + ], + "building-church": [ + [ + "path", + { + "d": "M3 21l18 0m-11 0v-4a2 2 0 0 1 4 0v4m-4 -16l4 0m-2 -2l0 5m-6 13v-7m-2 2l8 -8l8 8m-2 -2v7" + } + ] + ], + "building-circus": [ + [ + "path", + { + "d": "M4 11h16m-8 -4.5c0 1 -5 4.5 -8 4.5m8 -4.5c0 1 5 4.5 8 4.5m-14 0c-.333 5.333 -1 8.667 -2 10h4c1 0 4 -4 4 -9v-1m6 0c.333 5.333 1 8.667 2 10h-4c-1 0 -4 -4 -4 -9v-1m0 -4v-4l2 1h-2" + } + ] + ], + "building-community": [ + [ + "path", + { + "d": "M8 9l5 5v7h-5v-4m0 4h-5v-7l5 -5m1 1v-6a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v17h-8m0 -14l0 .01m4 -.01l0 .01m0 3.99l0 .01m0 3.99l0 .01" + } + ] + ], + "building-cottage": [ + [ + "path", + { + "d": "M3 21l18 0m-17 0v-11l2.5 -4.5l5.5 -2.5l5.5 2.5l2.5 4.5v11m-8 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1 12v-5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v5" + } + ] + ], + "building-estate": [ + [ + "path", + { + "d": "M3 21h18m-2 0v-4a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2zm-5 4v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14m5 -4v4m-1 -8h2m-2 -4h2" + } + ] + ], + "building-factory-2": [ + [ + "path", + { + "d": "M3 21h18m-16 0v-12l5 4v-4l5 4h4m0 8v-8l-1.436 -9.574a0.5 .5 0 0 0 -.495 -.426h-1.145a0.5 .5 0 0 0 -.494 .418l-1.43 8.582m-5 5h1m4 0h1" + } + ] + ], + "building-factory": [ + [ + "path", + { + "d": "M4 21c1.147 -4.02 1.983 -8.027 2 -12h6c.017 3.973 .853 7.98 2 12m-1.5 -8h4.5c.025 2.612 .894 5.296 2 8m-10 -16a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1m-18 16l19 0" + } + ] + ], + "building-fortress": [ + [ + "path", + { + "d": "M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2m-11 -14h0v.01m0 2.99h0v.01m0 2.99h0v.01m10 -6.01h0v.01m0 2.99h0v.01m0 2.99h0v.01" + } + ] + ], + "building-hospital": [ + [ + "path", + { + "d": "M3 21l18 0m-16 0v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16m-10 0v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4m-5 -12l4 0m-2 -2l0 4" + } + ] + ], + "building-lighthouse": [ + [ + "path", + { + "d": "M12 3l2 3l2 15h-8l2 -15zm-4 6l8 0m-13 2l2 -2l-2 -2m18 4l-2 -2l2 -2" + } + ] + ], + "building-monument": [ + [ + "path", + { + "d": "M8 18l2 -13l2 -2l2 2l2 13m-11 3v-3h14v3m-16 0l18 0" + } + ] + ], + "building-pavilion": [ + [ + "path", + { + "d": "M3 21h7v-3a2 2 0 0 1 4 0v3h7m-15 0l0 -9m12 9l0 -9m-12 0h12a3 3 0 0 0 3 -3a9 8 0 0 1 -9 -6a9 8 0 0 1 -9 6a3 3 0 0 0 3 3" + } + ] + ], + "building-skyscraper": [ + [ + "path", + { + "d": "M3 21l18 0m-16 0v-14l8 -4v18m6 0v-10l-6 -4m-4 2l0 .01m0 2.99l0 .01m0 2.99l0 .01m0 2.99l0 .01" + } + ] + ], + "building-stadium": [ + [ + "path", + { + "d": "M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7m-5 -6h4v-3h-4v7m-8 -4h4v-3h-4v7" + } + ] + ], + "building-store": [ + [ + "path", + { + "d": "M3 21l18 0m-18 -14v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4m-16 14l0 -10.15m14 10.15l0 -10.15m-10 10.15v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4" + } + ] + ], + "building-tunnel": [ + [ + "path", + { + "d": "M5 21h14a2 2 0 0 0 2 -2v-7a9 9 0 0 0 -18 0v7a2 2 0 0 0 2 2zm3 0v-9a4 4 0 1 1 8 0v9m-13 -4h4m10 0h4m0 -5h-4m-10 0h-4m9 -9v5m-6 -2l3 3m6 0l3 -3l-3 3z" + } + ] + ], + "building-warehouse": [ + [ + "path", + { + "d": "M3 21v-13l9 -4l9 4v13m-8 -8h4v8h-10v-6h6m0 6v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3" + } + ] + ], + "building-wind-turbine": [ + [ + "path", + { + "d": "M12 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0v-2.573c0 -.18 .013 -.358 .04 -.536l.716 -4.828c.064 -.597 .597 -1.063 1.244 -1.063s1.18 .466 1.244 1.063l.716 4.828c.027 .178 .04 .357 .04 .536v2.573m-.99 -1.72l2.235 1.276c.156 .09 .305 .19 .446 .3l3.836 2.911c.487 .352 .624 1.04 .3 1.596c-.325 .556 -1 .782 -1.548 .541l-4.555 -1.68a3.624 3.624 0 0 1 -.486 -.231l-2.235 -1.277m2 0l-2.236 1.277a3.624 3.624 0 0 1 -.485 .23l-4.555 1.681c-.551 .241 -1.223 .015 -1.548 -.54c-.324 -.557 -.187 -1.245 .3 -1.597l3.836 -2.91a3.41 3.41 0 0 1 .446 -.3l2.235 -1.277m-3.993 11.72h10m-7 0l1 -7m2 0l1 7" + } + ] + ], + "building": [ + [ + "path", + { + "d": "M3 21l18 0m-12 -13l1 0m-1 4l1 0m-1 4l1 0m4 -8l1 0m-1 4l1 0m-1 4l1 0m-10 5v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16" + } + ] + ], + "bulb-filled": [ + [ + "path", + { + "d": "M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-3.405 10.7a3.5 3.5 0 0 0 -.295 2a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -.295 -2m2.295 -10a5 5 0 0 1 3 9a3.498 3.498 0 0 0 -.706 1h-4.588a3.498 3.498 0 0 0 -.706 -1a5 5 0 0 1 3 -9z", + "fill": "currentColor" + } + ] + ], + "bulb-off": [ + [ + "path", + { + "d": "M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-6.611 .783a5 5 0 0 1 5.826 5.84m-1.378 2.611a5.012 5.012 0 0 1 -.537 .466a3.5 3.5 0 0 0 -1 3a2 2 0 1 1 -4 0a3.5 3.5 0 0 0 -1 -3a5 5 0 0 1 -.528 -7.544m1.228 8.544h4.6m-11.3 -14l18 18" + } + ] + ], + "bulb": [ + [ + "path", + { + "d": "M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-8.7 9.7a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3m.7 1l4.6 0" + } + ] + ], + "bulldozer": [ + [ + "path", + { + "d": "M4 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m11 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m7 -4v6h3m-8 0l-9 0m0 -4l9 0m-5 -3v-5h2a3 3 0 0 1 3 3v5m-8 0v-2a1 1 0 0 1 1 -1h7m5 5l-3 0" + } + ] + ], + "bus-off": [ + [ + "path", + { + "d": "M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12.18 -.828a2 2 0 0 0 2.652 2.648m-14.832 -1.82h-2v-11a1 1 0 0 1 1 -1h2m4 0h8c2.761 0 5 3.134 5 7v5h-1m-5 0h-8m8 -12l1.5 7h4.5m-20 -2h8m4 0h3m-10 -3v3m5 -5v3m-9 -5l18 18" + } + ] + ], + "bus-stop": [ + [ + "path", + { + "d": "M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 -12h7c2.761 0 5 3.134 5 7v5h-2m-4 0h-8m8 -12l1.5 7h4.5m-12.5 -2h7.5m-5 -5v5m-7 -1v11" + } + ] + ], + "bus": [ + [ + "path", + { + "d": "M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 0h-2v-11a1 1 0 0 1 1 -1h14a5 7 0 0 1 5 7v5h-2m-4 0h-8m8 -12l1.5 7l4.5 0m-20 -2l15 0m-10 -5l0 5m5 -5l0 5" + } + ] + ], + "businessplan": [ + [ + "path", + { + "d": "M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4m-10 4v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4m-10 4v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4m-14 -5h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1m0 -8v1" + } + ] + ], + "butterfly": [ + [ + "path", + { + "d": "M12 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25zm0 .824v-10m-3 -6l3 2l3 -2" + } + ] + ], + "c-sharp": [ + [ + "path", + { + "d": "M10 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3m6 -8l-1 10m5 -10l-1 10m-5 -7h7.5m-.5 4h-7.5" + } + ] + ], + "cactus-off": [ + [ + "path", + { + "d": "M6 9v1a3 3 0 0 0 3 3h1m8 -5v5a3 3 0 0 1 -.129 .872m-2.014 2a3 3 0 0 1 -.857 .124h-1m-4 5v-11m0 -4v-1a2 2 0 1 1 4 0v5m0 4v7m-7 0h10m-14 -18l18 18" + } + ] + ], + "cactus": [ + [ + "path", + { + "d": "M6 9v1a3 3 0 0 0 3 3h1m8 -5v5a3 3 0 0 1 -3 3h-1m-4 5v-16a2 2 0 1 1 4 0v16m-7 0h10" + } + ] + ], + "cake-off": [ + [ + "path", + { + "d": "M21 17v-5a3 3 0 0 0 -3 -3h-5m-4 0h-3a3 3 0 0 0 -3 3v8h17m-17 -5.197c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197m-10.832 -8.615c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19m-9.815 -5.828l18 18" + } + ] + ], + "cake": [ + [ + "path", + { + "d": "M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8zm0 -5.197c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197m-9 -10.803l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z" + } + ] + ], + "calculator-off": [ + [ + "path", + { + "d": "M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-14c0 -.295 .064 -.575 .178 -.827m2.822 -1.173h11a2 2 0 0 1 2 2v11m-10 -6h-1a1 1 0 0 1 -1 -1v-1m3 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1m-6 4v.01m4 -.01v.01m-4 2.99v.01m4 -.01v.01m4 -.01v.01m-13 -14.01l18 18" + } + ] + ], + "calculator": [ + [ + "path", + { + "d": "M4 3m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 2m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm0 6l0 .01m4 -.01l0 .01m4 -.01l0 .01m-8 2.99l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "calendar-due": [ + [ + "path", + { + "d": "M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 -4v4m-8 -4v4m-4 4h16m-8 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "calendar-event": [ + [ + "path", + { + "d": "M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 -4l0 4m-8 -4l0 4m-4 4l16 0m-12 4h2v2h-2z" + } + ] + ], + "calendar-minus": [ + [ + "path", + { + "d": "M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 -4l0 4m-8 -4l0 4m-4 4l16 0m-10 5l4 0" + } + ] + ], + "calendar-off": [ + [ + "path", + { + "d": "M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.175 -1.823m3.825 -.177h9a2 2 0 0 1 2 2v9m-4 -13l0 4m-8 -4l0 1m-4 7h7m4 0h5m-9 4l1 0l0 3m-9 -15l18 18" + } + ] + ], + "calendar-plus": [ + [ + "path", + { + "d": "M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 -4l0 4m-8 -4l0 4m-4 4l16 0m-10 5l4 0m-2 -2l0 4" + } + ] + ], + "calendar-stats": [ + [ + "path", + { + "d": "M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4m-1 3v4h4m-4 0m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m1 -15v4m-8 -4v4m-4 4h16" + } + ] + ], + "calendar-time": [ + [ + "path", + { + "d": "M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4m-1 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m1 -15v4m-8 -4v4m-4 4h16m-1 5.496v1.504l1 1" + } + ] + ], + "calendar": [ + [ + "path", + { + "d": "M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm12 -4l0 4m-8 -4l0 4m-4 4l16 0m-9 4l1 0l0 3" + } + ] + ], + "camera-minus": [ + [ + "path", + { + "d": "M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 -6h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h3m9 6v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m10 -1l6 0" + } + ] + ], + "camera-off": [ + [ + "path", + { + "d": "M8.29 4.296a1 1 0 0 1 .71 -.296h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.179 2.824c-.25 .113 -.528 .176 -.821 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h1c.292 0 .568 -.062 .818 -.175m3.618 3.615a3 3 0 1 0 4.126 4.122m-11.562 -11.562l18 18" + } + ] + ], + "camera-plus": [ + [ + "path", + { + "d": "M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 -6h2a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h2m9 7v7a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m10 -1l6 0m-3 -3l0 6" + } + ] + ], + "camera-rotate": [ + [ + "path", + { + "d": "M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m6.245 8.904a3 3 0 0 0 3.755 -2.904m-2.25 -2.905a3 3 0 0 0 -3.75 2.905m5 0h2v2m-6 -2h-2v-2" + } + ] + ], + "camera-selfie": [ + [ + "path", + { + "d": "M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m4.5 8a3.5 3.5 0 0 0 5 0m.5 -4l.01 0m-6.01 0l.01 0" + } + ] + ], + "camera": [ + [ + "path", + { + "d": "M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m7 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "campfire": [ + [ + "path", + { + "d": "M4 21l16 -4m0 4l-16 -4m8 -2a4 4 0 0 0 4 -4c0 -3 -2 -3 -2 -8c-4 2 -6 5 -6 8a4 4 0 0 0 4 4z" + } + ] + ], + "candle": [ + [ + "path", + { + "d": "M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9zm3 -18l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z" + } + ] + ], + "candy-off": [ + [ + "path", + { + "d": "M11.174 7.17l.119 -.12a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-.124 .124m-2 2l-2.123 2.123a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828l2.113 -2.112m7.08 -.008l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913m-4.95 9.193l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248m-4.05 -11.122l18 18" + } + ] + ], + "candy": [ + [ + "path", + { + "d": "M7.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828zm9.193 -2.121l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913m-4.95 9.193l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248" + } + ] + ], + "cane": [ + [ + "path", + { + "d": "M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032" + } + ] + ], + "cannabis": [ + [ + "path", + { + "d": "M7 20s0 -2 1 -3.5c-1.5 0 -2 -.5 -4 -1.5c0 0 1.839 -1.38 5 -1c-1.789 -.97 -3.279 -2.03 -5 -6c0 0 3.98 -.3 6.5 3.5c-2.284 -4.9 1.5 -9.5 1.5 -9.5c2.734 5.47 2.389 7.5 1.5 9.5c2.531 -3.77 6.5 -3.5 6.5 -3.5c-1.721 3.97 -3.211 5.03 -5 6c3.161 -.38 5 1 5 1c-2 1 -2.5 1.5 -4 1.5c1 1.5 1 3.5 1 3.5c-2 0 -4.438 -2.22 -5 -3c-.563 .78 -3 3 -5 3zm5 2v-5" + } + ] + ], + "capture-off": [ + [ + "path", + { + "d": "M4 16v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2c.554 0 1.055 -.225 1.417 -.589m-9.547 -9.524a3 3 0 0 0 4.255 4.23m.58 -3.416a3.012 3.012 0 0 0 -1.4 -1.403m-9.305 -1.298v-2c0 -.548 .22 -1.044 .577 -1.405m-1.577 -1.595l18 18" + } + ] + ], + "capture": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-8 -4m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "car-crane": [ + [ + "path", + { + "d": "M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 1h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5m-9 6v-11h3m-12 10v-5h9m-8 0v-6l18 -3v2m-14 7v-4l-4 -2" + } + ] + ], + "car-crash": [ + [ + "path", + { + "d": "M10 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1 -11l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-5m0 -6h8m-6 0v-5m2 0h-4m11 2v-2m5 6h2m-3.5 3.5l1.5 1.5m-1.5 -8.5l1.5 -1.5" + } + ] + ], + "car-off": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10.584 -1.412a2 2 0 0 0 2.828 2.83m-13.412 -1.418h-2v-6l2 -5h1m4 0h4l4 5h1a2 2 0 0 1 2 2v4m-6 0h-6m-6 -6h8m4 0h3m-6 -3v-2m-9 -3l18 18" + } + ] + ], + "car-turbine": [ + [ + "path", + { + "d": "M11 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m11.86 -2c.088 .66 .14 1.512 .14 2a8 8 0 1 1 -8 -8h6m-6 4c2.489 .108 4.489 .108 6 0m0 -6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-6 9l-3.5 -1.5m3.5 1.5l2.5 3m-5 0l2.5 -3l3.5 -1.5m-3.5 -2.5v4" + } + ] + ], + "car": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0h-2v-6l2 -5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0h-6m-6 -6h15m-6 0v-5" + } + ] + ], + "caravan": [ + [ + "path", + { + "d": "M11 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0l-8 0m-4 0h-5a1 1 0 0 1 -1 -1v-9a2 2 0 0 1 2 -2h10l4 4v8m-13 -9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "cardboards-off": [ + [ + "path", + { + "d": "M20.96 16.953c.026 -.147 .04 -.298 .04 -.453v-8.5a2 2 0 0 0 -2 -2h-9m-4 0h-1a2 2 0 0 0 -2 2v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06c.155 0 .307 -.014 .454 -.041m-10.954 -6.959m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m9.714 .7a1 1 0 0 0 -1.417 -1.411l1.417 1.41zm-13.714 -9.7l18 18" + } + ] + ], + "cardboards": [ + [ + "path", + { + "d": "M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2zm5 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m9 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "cards": [ + [ + "path", + { + "d": "M3.604 7.197l7.138 -3.109a0.96 .96 0 0 1 1.27 .527l4.924 11.902a1 1 0 0 1 -.514 1.304l-7.137 3.109a0.96 .96 0 0 1 -1.271 -.527l-4.924 -11.903a1 1 0 0 1 .514 -1.304zm11.396 -3.197h1a1 1 0 0 1 1 1v3.5m3 -2.5c.264 .112 .52 .217 .768 .315a1 1 0 0 1 .53 1.311l-2.298 5.374" + } + ] + ], + "caret-down": [ + [ + "path", + { + "d": "M6 10l6 6l6 -6h-12" + } + ] + ], + "caret-left": [ + [ + "path", + { + "d": "M14 6l-6 6l6 6v-12" + } + ] + ], + "caret-right": [ + [ + "path", + { + "d": "M10 18l6 -6l-6 -6v12" + } + ] + ], + "caret-up": [ + [ + "path", + { + "d": "M18 14l-6 -6l-6 6h12" + } + ] + ], + "carousel-horizontal": [ + [ + "path", + { + "d": "M7 5m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1zm15 11h-1a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h1m-20 10h1a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-1" + } + ] + ], + "carousel-vertical": [ + [ + "path", + { + "d": "M19 8v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1zm-12 14v-1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v1m0 -20v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1" + } + ] + ], + "carrot-off": [ + [ + "path", + { + "d": "M8.868 8.846c-2.756 3.382 -5.868 12.154 -5.868 12.154s8.75 -3.104 12.134 -5.85m1.667 -2.342a4.486 4.486 0 0 0 -5.589 -5.615m-2.212 5.807l-1.5 -1.5m14.5 -3.5s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2zm-6 -6s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3zm-13 1l18 18" + } + ] + ], + "carrot": [ + [ + "path", + { + "d": "M3 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 0 -6.344a4.483 4.483 0 0 0 -6.342 0c-2.86 2.861 -6.347 12.689 -6.347 12.689zm6 -8l-1.5 -1.5m8.5 2.5l-2 -2m8 -4s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2zm-6 -6s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z" + } + ] + ], + "cash-banknote-off": [ + [ + "path", + { + "d": "M9.88 9.878a3 3 0 1 0 4.242 4.243m.58 -3.425a3.012 3.012 0 0 0 -1.412 -1.405m-3.29 -3.291h9a2 2 0 0 1 2 2v8c0 .294 -.064 .574 -.178 .825m-2.822 1.175h-13a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1m12 6l.01 0m-12.01 0l.01 0m-3.01 -9l18 18" + } + ] + ], + "cash-banknote": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6 -6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm15 4l.01 0m-12.01 0l.01 0" + } + ] + ], + "cash-off": [ + [ + "path", + { + "d": "M13 9h6a2 2 0 0 1 2 2v6m-2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2m3.582 3.59a2 2 0 0 0 2.83 2.826m1.588 -6.416v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2m-4 -12l18 18" + } + ] + ], + "cash": [ + [ + "path", + { + "d": "M7 9m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m5 -5v-2a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2" + } + ] + ], + "cast-off": [ + [ + "path", + { + "d": "M3 19h.01m3.99 0a4 4 0 0 0 -4 -4m8 4a8 8 0 0 0 -8 -8m12 8h3a3 3 0 0 0 .875 -.13m2 -2a3 3 0 0 0 .128 -.868v-8a3 3 0 0 0 -3 -3h-9m-3.865 .136a3 3 0 0 0 -1.935 1.864m-.2 -4l18 18" + } + ] + ], + "cast": [ + [ + "path", + { + "d": "M3 19l.01 0m3.99 0a4 4 0 0 0 -4 -4m8 4a8 8 0 0 0 -8 -8m12 8h3a3 3 0 0 0 3 -3v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -2.8 2" + } + ] + ], + "cat": [ + [ + "path", + { + "d": "M20 3v10a8 8 0 1 1 -16 0v-10l3.432 3.432a7.963 7.963 0 0 1 4.568 -1.432c1.769 0 3.403 .574 4.728 1.546l3.272 -3.546zm-18 13h5l-4 4m19 -4h-5l4 4m-9 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-2 -5v.01m6 -.01v.01" + } + ] + ], + "category-2": [ + [ + "path", + { + "d": "M14 4h6v6h-6zm-10 10h6v6h-6zm13 3m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-7 -10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "category": [ + [ + "path", + { + "d": "M4 4h6v6h-6zm10 0h6v6h-6zm-10 10h6v6h-6zm13 3m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "ce-off": [ + [ + "path", + { + "d": "M11 4a7.99 7.99 0 0 0 -2.581 .426m-2.552 1.438a8 8 0 0 0 5.133 14.136m9 -16a8 8 0 0 0 -7.29 4.7m-.71 3.3a8 8 0 0 0 8 8m-4 -8h4m-17 -9l18 18" + } + ] + ], + "ce": [ + [ + "path", + { + "d": "M11 4a8 8 0 1 0 0 16m9 -16a8 8 0 1 0 0 16m-8 -8l8 0" + } + ] + ], + "cell-signal-1": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" + } + ] + ], + "cell-signal-2": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269zm-12 0v-5" + } + ] + ], + "cell-signal-3": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269zm-8 0v-9" + } + ] + ], + "cell-signal-4": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269zm-4 -13v13" + } + ] + ], + "cell-signal-5": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269zm-4 -13v13m-4 0v-9m-4 9v-5" + } + ] + ], + "cell-signal-off": [ + [ + "path", + { + "d": "M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a0.731 .731 0 0 1 1.249 .517v11.269m-17 -13l18 18" + } + ] + ], + "cell": [ + [ + "path", + { + "d": "M8 4l-4 2v5l4 2l4 -2v-5zm4 7l4 2l4 -2v-5l-4 -2l-4 2m-4 7v5l4 2l4 -2v-5" + } + ] + ], + "certificate-2-off": [ + [ + "path", + { + "d": "M12 12a3 3 0 1 0 3 3m-4 -8h3m-4 11v4l2 -1l2 1v-4m-4 1h-2a2 2 0 0 1 -2 -2v-11m1.18 -2.825c.25 -.112 .529 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m-.175 3.82a2 2 0 0 1 -1.825 1.18h-2m-11 -16l18 18" + } + ] + ], + "certificate-2": [ + [ + "path", + { + "d": "M12 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 -8h4m-4 11v4l2 -1l2 1v-4m-4 1h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2" + } + ] + ], + "certificate-off": [ + [ + "path", + { + "d": "M12.876 12.881a3 3 0 0 0 4.243 4.243m.588 -3.42a3.012 3.012 0 0 0 -1.437 -1.423m-3.27 5.219v4.5l2 -1.5l2 1.5v-4.5m-7 1.5h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2m4 0h10a2 2 0 0 1 2 2v10m-15 -8h3m4 0h5m-12 3h3m-3 3h2m-5 -12l18 18" + } + ] + ], + "certificate": [ + [ + "path", + { + "d": "M15 15m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 2.5v4.5l2 -1.5l2 1.5v-4.5m-7 1.5h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73m-14 -9.73l12 0m-12 3l3 0m-3 3l2 0" + } + ] + ], + "chair-director": [ + [ + "path", + { + "d": "M6 21l12 -9m-12 0l12 9m-13 -9h14m-13 -9v9m12 -9v9m-12 -4h12m-12 -3h12" + } + ] + ], + "chalkboard-off": [ + [ + "path", + { + "d": "M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m4 0h10a2 2 0 0 1 2 2v10m-4 0v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h4m-13 -13l18 18" + } + ] + ], + "chalkboard": [ + [ + "path", + { + "d": "M8 19h-3a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v11a1 1 0 0 1 -1 1m-9 -3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "charging-pile": [ + [ + "path", + { + "d": "M18 7l-1 1m-3 3h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3m-13 14v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14m-5 -8.5l-1.5 2.5h3l-1.5 2.5m-6 3.5l12 0m-11 -12l10 0" + } + ] + ], + "chart-arcs-3": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 0a5 5 0 1 0 5 -5m-5.71 11.957a9 9 0 1 0 5.71 -15.957" + } + ] + ], + "chart-arcs": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5.924 -.868a5 5 0 1 0 -4.056 5.792m-9.868 -4.924a9 9 0 1 0 9 -9" + } + ] + ], + "chart-area-filled": [ + [ + "path", + { + "d": "M4 19l16 0" + } + ], + [ + "polyline", + { + "points": "4 15 8 9 12 11 16 6 20 10 20 15 4 15", + "fill": "currentColor" + } + ] + ], + "chart-area-line-filled": [ + [ + "polyline", + { + "points": "4 19 8 13 12 15 16 10 20 14 20 19 4 19", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M4 12l3 -4l4 2l5 -6l4 4" + } + ] + ], + "chart-area-line": [ + [ + "path", + { + "d": "M4 19l4 -6l4 2l4 -5l4 4l0 5l-16 0m0 -7l3 -4l4 2l5 -6l4 4" + } + ] + ], + "chart-area": [ + [ + "path", + { + "d": "M4 19l16 0m-16 -4l4 -6l4 2l4 -5l4 4l0 5l-16 0" + } + ] + ], + "chart-arrows-vertical": [ + [ + "path", + { + "d": "M18 21v-14m-9 8l3 -3l3 3m0 -5l3 -3l3 3m-18 11l18 0m-9 0l0 -9m-9 -6l3 -3l3 3m-3 15v-18" + } + ] + ], + "chart-arrows": [ + [ + "path", + { + "d": "M3 18l14 0m-8 -9l3 3l-3 3m5 0l3 3l-3 3m-11 -18l0 18m0 -9l9 0m6 -9l3 3l-3 3m-15 -3l18 0" + } + ] + ], + "chart-bar-off": [ + [ + "path", + { + "d": "M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm9 -5h2a1 1 0 0 1 1 1v2m0 4v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-10m6 2v-6a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v12m-1 3h-4a1 1 0 0 1 -1 -1v-4m-11 5h14m-15 -17l18 18" + } + ] + ], + "chart-bar": [ + [ + "path", + { + "d": "M3 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm6 -5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm6 -5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-11 15l14 0" + } + ] + ], + "chart-bubble-filled": [ + [ + "path", + { + "d": "M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m.5 -11.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0", + "fill": "currentColor" + } + ] + ], + "chart-bubble": [ + [ + "path", + { + "d": "M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m.5 -11.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0" + } + ] + ], + "chart-candle-filled": [ + [ + "rect", + { + "x": "4", + "y": "6", + "width": "4", + "height": "5", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M6 4l0 2m0 5l0 9" + } + ], + [ + "rect", + { + "x": "10", + "y": "14", + "width": "4", + "height": "5", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M12 4l0 10m0 5l0 1" + } + ], + [ + "rect", + { + "x": "16", + "y": "5", + "width": "4", + "height": "6", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M18 4l0 1m0 6l0 9" + } + ] + ], + "chart-candle": [ + [ + "path", + { + "d": "M4 6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -3l0 2m0 5l0 9m4 -6m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -11l0 10m0 5l0 1m4 -15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -2l0 1m0 6l0 9" + } + ] + ], + "chart-circles": [ + [ + "path", + { + "d": "M9.5 9.5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0m10.5 5m-5.5 0a5.5 5.5 0 1 0 11 0a5.5 5.5 0 1 0 -11 0" + } + ] + ], + "chart-donut-2": [ + [ + "path", + { + "d": "M12 3v5m4 4h5m-9 0m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "chart-donut-3": [ + [ + "path", + { + "d": "M12 3v5m4 4h5m-12.071 2.582l-3.429 2.918m6.5 -5.5m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "chart-donut-4": [ + [ + "path", + { + "d": "M8.848 14.667l-3.348 2.833m6.5 -14.5v5m4 4h5m-9 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.219 3.328l2.781 4.172m-5 -7.5m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" + } + ] + ], + "chart-donut-filled": [ + [ + "path", + { + "d": "M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a0.9 .9 0 0 0 -1 -.8", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5", + "fill": "currentColor" + } + ] + ], + "chart-donut": [ + [ + "path", + { + "d": "M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-3.8a4.1 4.1 0 1 1 -5 -5v-4a0.9 .9 0 0 0 -1 -.8m5 .3a9 9 0 0 1 5.5 5.5h-4.5a9 9 0 0 0 -1 -1v-4.5" + } + ] + ], + "chart-dots-2": [ + [ + "path", + { + "d": "M3 3v18h18m-12 -6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m6 -10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m7 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m5 -9l-6 1.5m-.887 2.15l2.771 3.695m-.884 2.155l-5 2" + } + ] + ], + "chart-dots-3": [ + [ + "path", + { + "d": "M5 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 -9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-9 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m6 -1l5 -1.5m-7.5 -7l7.81 5.37m-7.31 -6.87l8 -1" + } + ] + ], + "chart-dots": [ + [ + "path", + { + "d": "M3 3v18h18m-12 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 -2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-3 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1.84 -4.38l2.34 2.88m2.588 -.172l2.837 -4.586" + } + ] + ], + "chart-grid-dots": [ + [ + "path", + { + "d": "M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 0h8m2 2v1m0 -18v1m-12 16v1m0 -11v-7m6 0v18m6 -13v8m-10 -4h13m0 -6h-1m-4 0h-13m0 6h1m16 6h1m-18 0h1m2 -4v2" + } + ] + ], + "chart-histogram": [ + [ + "path", + { + "d": "M3 3v18h18m-1 -3v3m-4 -5v5m-4 -8v8m-4 -5v5m-5 -10c6 0 5 -5 9 -5s3 5 9 5" + } + ] + ], + "chart-infographic": [ + [ + "path", + { + "d": "M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 -4v4h4m-2 10l0 4m8 -7l0 7m-4 -8l0 8m8 -9l0 9" + } + ] + ], + "chart-line": [ + [ + "path", + { + "d": "M4 19l16 0m-16 -4l4 -6l4 2l4 -5l4 4" + } + ] + ], + "chart-pie-2": [ + [ + "path", + { + "d": "M12 3v9h9m-9 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "chart-pie-3": [ + [ + "path", + { + "d": "M12 12l-6.5 5.5m6.5 -14.5v9h9m-9 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "chart-pie-4": [ + [ + "path", + { + "d": "M12 12l-6.5 5.5m6.5 -14.5v9h9m-9 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l5 7.5" + } + ] + ], + "chart-pie-filled": [ + [ + "path", + { + "d": "M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a0.9 .9 0 0 0 -1 -.8", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M15 3.5a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5", + "fill": "currentColor" + } + ] + ], + "chart-pie-off": [ + [ + "path", + { + "d": "M5.63 5.643a9 9 0 0 0 12.742 12.715m1.674 -2.29a9.03 9.03 0 0 0 .754 -2.068a1 1 0 0 0 -1 -1h-2.8m-4 0a2 2 0 0 1 -2 -2m0 -4v-3a0.9 .9 0 0 0 -1 -.8a9 9 0 0 0 -2.057 .749m7.057 -.449a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5m-12 -.5l18 18" + } + ] + ], + "chart-pie": [ + [ + "path", + { + "d": "M10 3.2a9 9 0 1 0 10.8 10.8a1 1 0 0 0 -1 -1h-6.8a2 2 0 0 1 -2 -2v-7a0.9 .9 0 0 0 -1 -.8m5 .3a9 9 0 0 1 5.5 5.5h-4.5a1 1 0 0 1 -1 -1v-4.5" + } + ] + ], + "chart-ppf": [ + [ + "path", + { + "d": "M19 17c0 -6.075 -5.373 -11 -12 -11m-4 -3v18h18" + } + ] + ], + "chart-radar": [ + [ + "path", + { + "d": "M12 3l9.5 7l-3.5 11h-12l-3.5 -11zm0 4.5l5.5 4l-2.5 5.5h-6.5l-2 -5.5zm-9.5 2.5l9.5 3l9.5 -3m-9.5 -7v10l6 8m-12 0l6 -8" + } + ] + ], + "chart-sankey": [ + [ + "path", + { + "d": "M3 3v18h18m-18 -15h18m-18 2c10 0 8 9 18 9" + } + ] + ], + "chart-treemap": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 -2v16m-8 -5h8m0 -3h8m-4 0v8m0 -4h4" + } + ] + ], + "check": [ + [ + "path", + { + "d": "M5 12l5 5l10 -10" + } + ] + ], + "checkbox": [ + [ + "path", + { + "d": "M9 11l3 3l8 -8m0 6v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" + } + ] + ], + "checklist": [ + [ + "path", + { + "d": "M9.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8m-3 5l2 2l4 -4m-11 -9h4m-4 4h2" + } + ] + ], + "checks": [ + [ + "path", + { + "d": "M7 12l5 5l10 -10m-20 5l5 5m5 -5l5 -5" + } + ] + ], + "checkup-list": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 9h.01m-.01 3h.01m2.99 -1l1 1l3 -3" + } + ] + ], + "cheese": [ + [ + "path", + { + "d": "M4.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722m16.722 0l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721m10.481 -7.008v.01m-7 -.01v.01m3 2.99v.01" + } + ] + ], + "chef-hat-off": [ + [ + "path", + { + "d": "M8.72 4.712a4 4 0 0 1 7.19 1.439a4 4 0 0 1 2.09 7.723v.126m0 4v3h-12v-7.126a4 4 0 0 1 .081 -7.796m.08 10.931l10.839 -.009m-14 -14l18 18" + } + ] + ], + "chef-hat": [ + [ + "path", + { + "d": "M12 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4 4 0 1 1 2.092 -7.723a4 4 0 0 1 3.908 -3.151zm-5.839 14.009l11.839 -.009" + } + ] + ], + "cherry": [ + [ + "path", + { + "d": "M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m13 1.5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-5 -5c.366 -2 1.866 -3.873 4.5 -5.6m3.5 7.6c-1.333 -2.333 -2.333 -5.333 -1 -9m-11 0c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0" + } + ] + ], + "chess-bishop": [ + [ + "path", + { + "d": "M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8zm4 -12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-1.5 12c-1.667 0 -2.5 -1.669 -2.5 -3c0 -3.667 1.667 -6 5 -7c3.333 1 5 3.427 5 7c0 1.284 -.775 2.881 -2.325 3l-.175 0h-5zm5.5 -8l-3 3m0 -6v1" + } + ] + ], + "chess-king": [ + [ + "path", + { + "d": "M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8zm.5 0a3.5 3.5 0 1 1 3.163 -5h.674a3.5 3.5 0 1 1 3.163 5zm.5 -10h6m-3 -3v8" + } + ] + ], + "chess-knight": [ + [ + "path", + { + "d": "M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8zm1 -13l1 3l-3.491 2.148a1 1 0 0 0 .524 1.852h2.967l-2.073 6h7.961l.112 -5c0 -3 -1.09 -5.983 -4 -7c-1.94 -.678 -2.94 -1.011 -3 -1z" + } + ] + ], + "chess-queen": [ + [ + "path", + { + "d": "M16 16l2 -11l-4 4l-2 -5l-2 5l-4 -4l2 11l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8zm4 -12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5 1m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m13 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "chess-rook": [ + [ + "path", + { + "d": "M8 16l-1.447 .724a1 1 0 0 0 -.553 .894v2.382h12v-2.382a1 1 0 0 0 -.553 -.894l-1.447 -.724h-8zl1 -9h6l1 9m-10 -12l.5 3h11l.5 -3m-8 0v3m4 -3v3" + } + ] + ], + "chess": [ + [ + "path", + { + "d": "M12 3a3 3 0 0 1 3 3c0 1.113 -.6 2.482 -1.5 3l1.5 7h-6l1.5 -7c-.9 -.518 -1.5 -1.887 -1.5 -3a3 3 0 0 1 3 -3zm-4 6h8m-9.316 7.772a1 1 0 0 0 -.684 .949v1.279a1 1 0 0 0 1 1h10a1 1 0 0 0 1 -1v-1.28a1 1 0 0 0 -.684 -.948l-2.316 -.772h-6l-2.316 .772z" + } + ] + ], + "chevron-down-left": [ + [ + "path", + { + "d": "M8 8v8h8" + } + ] + ], + "chevron-down-right": [ + [ + "path", + { + "d": "M16 8v8h-8" + } + ] + ], + "chevron-down": [ + [ + "path", + { + "d": "M6 9l6 6l6 -6" + } + ] + ], + "chevron-left": [ + [ + "path", + { + "d": "M15 6l-6 6l6 6" + } + ] + ], + "chevron-right": [ + [ + "path", + { + "d": "M9 6l6 6l-6 6" + } + ] + ], + "chevron-up-left": [ + [ + "path", + { + "d": "M8 16v-8h8" + } + ] + ], + "chevron-up-right": [ + [ + "path", + { + "d": "M8 8h8v8" + } + ] + ], + "chevron-up": [ + [ + "path", + { + "d": "M6 15l6 -6l6 6" + } + ] + ], + "chevrons-down-left": [ + [ + "path", + { + "d": "M11 5v8h8m-12 -4v8h8" + } + ] + ], + "chevrons-down-right": [ + [ + "path", + { + "d": "M13 5v8h-8m12 -4v8h-8" + } + ] + ], + "chevrons-down": [ + [ + "path", + { + "d": "M7 7l5 5l5 -5m-10 6l5 5l5 -5" + } + ] + ], + "chevrons-left": [ + [ + "path", + { + "d": "M11 7l-5 5l5 5m6 -10l-5 5l5 5" + } + ] + ], + "chevrons-right": [ + [ + "path", + { + "d": "M7 7l5 5l-5 5m6 -10l5 5l-5 5" + } + ] + ], + "chevrons-up-left": [ + [ + "path", + { + "d": "M7 15v-8h8m-4 12v-8h8" + } + ] + ], + "chevrons-up-right": [ + [ + "path", + { + "d": "M9 7h8v8m-12 -4h8v8" + } + ] + ], + "chevrons-up": [ + [ + "path", + { + "d": "M7 11l5 -5l5 5m-10 6l5 -5l5 5" + } + ] + ], + "chisel": [ + [ + "path", + { + "d": "M14 14l1.5 1.5m2.847 .075l2.08 2.079a1.96 1.96 0 0 1 -2.773 2.772l-2.08 -2.079a1.96 1.96 0 0 1 2.773 -2.772zm-15.347 -9.575l3 -3l7.414 7.414a2 2 0 0 1 .586 1.414v2.172h-2.172a2 2 0 0 1 -1.414 -.586l-7.414 -7.414z" + } + ] + ], + "christmas-tree-off": [ + [ + "path", + { + "d": "M9.5 5.5l2.5 -2.5l4 4l-2 1l4 4l-1.5 .5m.5 4.5h-12l4 -4l-3 -1l3 -3m5 8v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3m-7 -14l18 18" + } + ] + ], + "christmas-tree": [ + [ + "path", + { + "d": "M12 3l4 4l-2 1l4 4l-3 1l4 4h-14l4 -4l-3 -1l4 -4l-2 -1zm2 14v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-3" + } + ] + ], + "circle-caret-down": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 3l-4 -4h8z" + } + ] + ], + "circle-caret-left": [ + [ + "path", + { + "d": "M9 12l4 -4v8zm3 9a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" + } + ] + ], + "circle-caret-right": [ + [ + "path", + { + "d": "M15 12l-4 -4v8zm-3 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "circle-caret-up": [ + [ + "path", + { + "d": "M12 9l4 4h-8zm0 3m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "circle-check": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 0l2 2l4 -4" + } + ] + ], + "circle-chevron-down": [ + [ + "path", + { + "d": "M15 11l-3 3l-3 -3m3 -8a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z" + } + ] + ], + "circle-chevron-left": [ + [ + "path", + { + "d": "M13 15l-3 -3l3 -3m8 3a9 9 0 1 0 -18 0a9 9 0 0 0 18 0z" + } + ] + ], + "circle-chevron-right": [ + [ + "path", + { + "d": "M11 9l3 3l-3 3m-8 -3a9 9 0 1 0 18 0a9 9 0 0 0 -18 0z" + } + ] + ], + "circle-chevron-up": [ + [ + "path", + { + "d": "M9 13l3 -3l3 3m-3 -1m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "circle-chevrons-down": [ + [ + "path", + { + "d": "M15 9l-3 3l-3 -3m6 4l-3 3l-3 -3m3 -10a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z" + } + ] + ], + "circle-chevrons-left": [ + [ + "path", + { + "d": "M15 15l-3 -3l3 -3m-4 6l-3 -3l3 -3m10 3a9 9 0 1 0 0 .265l0 -.265z" + } + ] + ], + "circle-chevrons-right": [ + [ + "path", + { + "d": "M9 9l3 3l-3 3m4 -6l3 3l-3 3m-10 -3a9 9 0 1 0 0 -.265l0 .265z" + } + ] + ], + "circle-chevrons-up": [ + [ + "path", + { + "d": "M9 15l3 -3l3 3m-6 -4l3 -3l3 3m-3 10a9 9 0 1 0 -.265 0l.265 0z" + } + ] + ], + "circle-dashed": [ + [ + "path", + { + "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95m-1.95 2.92a9 9 0 0 0 -.69 3.44m.69 3.44a9 9 0 0 0 1.95 2.92m2.92 1.95a9 9 0 0 0 3.44 .69m3.44 -.69a9 9 0 0 0 2.92 -1.95m1.95 -2.92a9 9 0 0 0 .69 -3.44m-.69 -3.44a9 9 0 0 0 -1.95 -2.92m-2.92 -1.95a9 9 0 0 0 -3.44 -.69" + } + ] + ], + "circle-dot": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "circle-dotted": [ + [ + "path", + { + "d": "M7.5 4.21l0 .01m-3.29 3.28l0 .01m-1.21 4.49l0 .01m1.21 4.49l0 .01m3.29 3.28l0 .01m4.5 1.2l0 .01m4.5 -1.22l0 .01m3.29 -3.3l0 .01m1.21 -4.51l0 .01m-1.21 -4.51l0 .01m-3.29 -3.3l0 .01m-4.5 -1.22l0 .01" + } + ] + ], + "circle-filled": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", + "fill": "currentColor" + } + ] + ], + "circle-half-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9v18m0 -7l7 -7m-7 12l8.5 -8.5m-8.5 -1.5l4.5 -4.5" + } + ] + ], + "circle-half-vertical": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0h18" + } + ] + ], + "circle-half": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9v18" + } + ] + ], + "circle-key": [ + [ + "path", + { + "d": "M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 2a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-8.5 -.5l-4 4l1.5 1.5m2 -2l-1.5 -1.5" + } + ] + ], + "circle-letter-a": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4v-6a2 2 0 1 1 4 0v6m-4 -3h4" + } + ] + ], + "circle-letter-b": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z" + } + ] + ], + "circle-letter-c": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -2a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" + } + ] + ], + "circle-letter-d": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z" + } + ] + ], + "circle-letter-e": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -4h-4v8h4m-4 -4h2.5" + } + ] + ], + "circle-letter-f": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 0h3m1 -4h-4v8" + } + ] + ], + "circle-letter-g": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -4h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1" + } + ] + ], + "circle-letter-h": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4v-8m4 0v8m-4 -4h4" + } + ] + ], + "circle-letter-i": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4v8" + } + ] + ], + "circle-letter-j": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4h4v6a2 2 0 1 1 -4 0" + } + ] + ], + "circle-letter-k": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4v8m4 -8l-2.5 4l2.5 4m-4 -4h1.5" + } + ] + ], + "circle-letter-l": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4v8h4" + } + ] + ], + "circle-letter-m": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 4v-8l3 5l3 -5v8" + } + ] + ], + "circle-letter-n": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4v-8l4 8v-8" + } + ] + ], + "circle-letter-o": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z" + } + ] + ], + "circle-letter-p": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 0h2a2 2 0 1 0 0 -4h-2v8" + } + ] + ], + "circle-letter-q": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm1 7l1 1" + } + ] + ], + "circle-letter-r": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 0h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4" + } + ] + ], + "circle-letter-s": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 3a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1" + } + ] + ], + "circle-letter-t": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4h4m-2 0v8" + } + ] + ], + "circle-letter-u": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4v6a2 2 0 1 0 4 0v-6" + } + ] + ], + "circle-letter-v": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4l2 8l2 -8" + } + ] + ], + "circle-letter-w": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -4l1 8l2 -5l2 5l1 -8" + } + ] + ], + "circle-letter-x": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4l4 8m-4 0l4 -8" + } + ] + ], + "circle-letter-y": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4l2 5l2 -5m-2 8v-3" + } + ] + ], + "circle-letter-z": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4h4l-4 8h4" + } + ] + ], + "circle-minus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 0l6 0" + } + ] + ], + "circle-number-0": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -2v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z" + } + ] + ], + "circle-number-1": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -2l2 -2v8" + } + ] + ], + "circle-number-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "circle-number-3": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1" + } + ] + ], + "circle-number-4": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4v3a1 1 0 0 0 1 1h3m0 -4v8" + } + ] + ], + "circle-number-5": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 3a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4" + } + ] + ], + "circle-number-6": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -3a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3" + } + ] + ], + "circle-number-7": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -4h4l-2 8" + } + ] + ], + "circle-number-8": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1" + } + ] + ], + "circle-number-9": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 3a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "circle-off": [ + [ + "path", + { + "d": "M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-15.362 -15.365l18 18" + } + ] + ], + "circle-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 0l6 0m-3 -3l0 6" + } + ] + ], + "circle-rectangle-off": [ + [ + "path", + { + "d": "M14 10h3v3m-3 1h-7v-4h3m10.042 6.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-15.362 -15.365l18 18" + } + ] + ], + "circle-rectangle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m4 -2h10v4h-10z" + } + ] + ], + "circle-square": [ + [ + "path", + { + "d": "M9.5 9.5m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0 -13 0m7 .5m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z" + } + ] + ], + "circle-triangle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 8l7 -12h-14z" + } + ] + ], + "circle-x": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -2l4 4m0 -4l-4 4" + } + ] + ], + "circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "circles-filled": [ + [ + "path", + { + "d": "M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-1.5 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m15 0m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", + "fill": "currentColor" + } + ] + ], + "circles-relation": [ + [ + "path", + { + "d": "M9.183 6.117a6 6 0 1 0 4.511 3.986m1.119 7.78a6 6 0 1 0 -4.496 -3.954" + } + ] + ], + "circles": [ + [ + "path", + { + "d": "M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-1.5 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m15 0m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" + } + ] + ], + "circuit-ammeter": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0h-3m17 0h3m-12 2v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3m0 -2h-4" + } + ] + ], + "circuit-battery": [ + [ + "path", + { + "d": "M2 12h4m12 0h4m-4 -7v14m-4 -10v6m-4 -10v14m-4 -10v6" + } + ] + ], + "circuit-bulb": [ + [ + "path", + { + "d": "M2 12h5m10 0h5m-10 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m1.5 -3.5l7 7m0 -7l-7 7" + } + ] + ], + "circuit-capacitor-polarized": [ + [ + "path", + { + "d": "M22 12h-8m-12 0h8m0 -5v10m4 -10v10m3 -12h4m-2 -2v4" + } + ] + ], + "circuit-capacitor": [ + [ + "path", + { + "d": "M22 12h-8m-12 0h8m0 -5v10m4 -10v10" + } + ] + ], + "circuit-cell-plus": [ + [ + "path", + { + "d": "M2 12h9m4 0h7m-11 -7v14m4 -10v6m-12 -10h4m-2 -2v4" + } + ] + ], + "circuit-cell": [ + [ + "path", + { + "d": "M2 12h8m4 0h8m-12 -7v14m4 -10v6" + } + ] + ], + "circuit-changeover": [ + [ + "path", + { + "d": "M2 12h2m16 -5h2m-16 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 -5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 10h2m-4 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8.5 -6.5l8.5 -3.5" + } + ] + ], + "circuit-diode-zener": [ + [ + "path", + { + "d": "M22 12h-6m-14 0h6m0 -5l8 5l-8 5zm6 0h2v10h2" + } + ] + ], + "circuit-diode": [ + [ + "path", + { + "d": "M22 12h-6m-14 0h6m0 -5l8 5l-8 5zm8 0v10" + } + ] + ], + "circuit-ground-digital": [ + [ + "path", + { + "d": "M12 13v-10m0 18l-6 -8h12z" + } + ] + ], + "circuit-ground": [ + [ + "path", + { + "d": "M12 13v-8m-8 8h16m-13 3h10m-7 3h4" + } + ] + ], + "circuit-inductor": [ + [ + "path", + { + "d": "M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3" + } + ] + ], + "circuit-motor": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0h-3m17 0h3m-12 2v-4l2 2l2 -2v4" + } + ] + ], + "circuit-pushbutton": [ + [ + "path", + { + "d": "M2 17h2m16 0h2m-16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 -6h12m-6 0v-6" + } + ] + ], + "circuit-resistor": [ + [ + "path", + { + "d": "M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5" + } + ] + ], + "circuit-switch-closed": [ + [ + "path", + { + "d": "M2 12h2m16 0h2m-16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 0h8" + } + ] + ], + "circuit-switch-open": [ + [ + "path", + { + "d": "M2 12h2m16 0h2m-16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8.5 -1.5l7.5 -5.5" + } + ] + ], + "circuit-voltmeter": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0h-3m17 0h3m-12 -2l2 4l2 -4" + } + ] + ], + "clear-all": [ + [ + "path", + { + "d": "M8 6h12m-14 6h12m-14 6h12" + } + ] + ], + "clear-formatting": [ + [ + "path", + { + "d": "M17 15l4 4m0 -4l-4 4m-10 -13v-1h11v1m-11 13l4 0m2 -14l-4 14" + } + ] + ], + "click": [ + [ + "path", + { + "d": "M3 12l3 0m6 -9l0 3m-4.2 1.8l-2.2 -2.2m10.6 2.2l2.2 -2.2m-10.6 10.6l-2.2 2.2m6.4 -6.4l9 3l-4 2l-2 4l-3 -9" + } + ] + ], + "clipboard-check": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 9l2 2l4 -4" + } + ] + ], + "clipboard-copy": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2m-2 12v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1m-4 -17m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "clipboard-data": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 12v-4m3 4v-1m3 1v-2m-3 2v-1" + } + ] + ], + "clipboard-heart": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm2.993 11.75l2.747 -2.815a1.9 1.9 0 0 0 0 -2.632a1.775 1.775 0 0 0 -2.56 0l-.183 .188l-.183 -.189a1.775 1.775 0 0 0 -2.56 0a1.899 1.899 0 0 0 0 2.632l2.738 2.825z" + } + ] + ], + "clipboard-list": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 7l.01 0m3.99 0l2 0m-6 4l.01 0m3.99 0l2 0" + } + ] + ], + "clipboard-off": [ + [ + "path", + { + "d": "M5.575 5.597a2 2 0 0 0 -.575 1.403v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2m-6 0a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2m-8 -4l18 18" + } + ] + ], + "clipboard-plus": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm1 9h4m-2 -2v4" + } + ] + ], + "clipboard-text": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 7h6m-6 4h6" + } + ] + ], + "clipboard-typography": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 7v-1h6v1m-3 -1v6m-1 0h2" + } + ] + ], + "clipboard-x": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm1 7l4 4m0 -4l-4 4" + } + ] + ], + "clipboard": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "clock-2": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm8 2v5l3 3m-11 -3h1m14 0h1m-8 7v1" + } + ] + ], + "clock-cancel": [ + [ + "path", + { + "d": "M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 2l4 -4m0 -4.7a9 9 0 1 0 -8.683 8.694m-.312 -14v5l2 2" + } + ] + ], + "clock-edit": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 0 -9.972 8.948c.32 .034 .644 .052 .972 .052m0 -14v5l2 2m4.42 1.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z" + } + ] + ], + "clock-hour-1": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -5v5l2 -3" + } + ] + ], + "clock-hour-10": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l-3 -2m3 -3v5" + } + ] + ], + "clock-hour-11": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l-2 -3m2 -2v5" + } + ] + ], + "clock-hour-12": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -5v5" + } + ] + ], + "clock-hour-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l3 -2m-3 -3v5" + } + ] + ], + "clock-hour-3": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0h3.5m-3.5 -5v5" + } + ] + ], + "clock-hour-4": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l3 2m-3 -7v5" + } + ] + ], + "clock-hour-5": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l2 3m-2 -8v5" + } + ] + ], + "clock-hour-6": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0v3.5m0 -8.5v5" + } + ] + ], + "clock-hour-7": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l-2 3m2 -8v5" + } + ] + ], + "clock-hour-8": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0l-3 2m3 -7v5" + } + ] + ], + "clock-hour-9": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0h-3.5m3.5 -5v5" + } + ] + ], + "clock-off": [ + [ + "path", + { + "d": "M12 7v1m8.042 8.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-15.362 -15.365l18 18" + } + ] + ], + "clock-pause": [ + [ + "path", + { + "d": "M13 20.94a8.916 8.916 0 0 1 -7.364 -2.576a9 9 0 1 1 15.306 -5.342m-8.942 -6.022v5l2 2m3 3v5m4 -5v5" + } + ] + ], + "clock-play": [ + [ + "path", + { + "d": "M12 7v5l2 2m3 8l5 -3l-5 -3zm-3.983 -1.057a9 9 0 1 1 7.831 -7.292" + } + ] + ], + "clock-record": [ + [ + "path", + { + "d": "M21 12.3a9 9 0 1 0 -8.683 8.694m-.312 -14v5l2 2m5 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "clock-stop": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 0 -9 9m0 -14v5l1 1m3 3h6v6h-6z" + } + ] + ], + "clock": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -5l0 5l3 3" + } + ] + ], + "clothes-rack-off": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2v1m0 4v9m-3 0h6m-7.243 -11.757a6 6 0 0 0 3.129 1.653m3.578 -.424a6 6 0 0 0 1.779 -1.229m-13.243 -6.243l18 18" + } + ] + ], + "clothes-rack": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2v14m-3 0h6m-7.243 -11.757a6 6 0 0 0 8.486 0" + } + ] + ], + "cloud-computing": [ + [ + "path", + { + "d": "M6.657 16c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878m5.343 0v5m4 -5v4a1 1 0 0 0 1 1h4m-13 -5v4a1 1 0 0 1 -1 1h-4" + } + ] + ], + "cloud-data-connection": [ + [ + "path", + { + "d": "M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103zm7 3.103v3m0 2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h7m-18 0h7" + } + ] + ], + "cloud-download": [ + [ + "path", + { + "d": "M19 18a3.5 3.5 0 0 0 0 -7h-1a5 4.5 0 0 0 -11 -2a4.6 4.4 0 0 0 -2.1 8.4m7.1 -4.4l0 9m-3 -3l3 3l3 -3" + } + ] + ], + "cloud-filled": [ + [ + "path", + { + "d": "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878", + "fill": "currentColor" + } + ] + ], + "cloud-fog": [ + [ + "path", + { + "d": "M7 16a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-12m-2 4l14 0" + } + ] + ], + "cloud-lock-open": [ + [ + "path", + { + "d": "M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027m3.1 -2.4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm2 -1v-2a2 2 0 0 1 3.736 -1" + } + ] + ], + "cloud-lock": [ + [ + "path", + { + "d": "M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027m3.1 -2.4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm2 -1v-2a2 2 0 1 1 4 0v2" + } + ] + ], + "cloud-off": [ + [ + "path", + { + "d": "M3 3l18 18m-3 -3h-11c-2.598 0 -4.705 -2.015 -4.705 -4.5s2.107 -4.5 4.705 -4.5c.112 -.5 .305 -.973 .568 -1.408m2.094 -1.948c.329 -.174 .68 -.319 1.05 -.43c1.9 -.576 4 -.194 5.5 1c1.503 1.192 2.185 3.017 1.788 4.786h1a3.5 3.5 0 0 1 2.212 6.212" + } + ] + ], + "cloud-rain": [ + [ + "path", + { + "d": "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7m-8 -5v2m0 3v2m4 -5v2m0 3v2" + } + ] + ], + "cloud-snow": [ + [ + "path", + { + "d": "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7m-8 -3v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01" + } + ] + ], + "cloud-storm": [ + [ + "path", + { + "d": "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1m-5 -4l-2 4l3 0l-2 4" + } + ] + ], + "cloud-upload": [ + [ + "path", + { + "d": "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1m-9 -3l3 -3l3 3m-3 -3l0 9" + } + ] + ], + "cloud": [ + [ + "path", + { + "d": "M6.657 18c-2.572 0 -4.657 -2.007 -4.657 -4.483c0 -2.475 2.085 -4.482 4.657 -4.482c.393 -1.762 1.794 -3.2 3.675 -3.773c1.88 -.572 3.956 -.193 5.444 1c1.488 1.19 2.162 3.007 1.77 4.769h.99c1.913 0 3.464 1.56 3.464 3.486c0 1.927 -1.551 3.487 -3.465 3.487h-11.878" + } + ] + ], + "clover-2": [ + [ + "path", + { + "d": "M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44zl-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44zm3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0m-6.88 -6.794a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0m7.44 .603l6 6" + } + ] + ], + "clover": [ + [ + "path", + { + "d": "M12 10l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44zm0 4l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44zm2 -2l3.44 -3.397a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0l-3.44 -3.397zm-4 0l-3.44 -3.397a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0l3.44 -3.397z" + } + ] + ], + "clubs-filled": [ + [ + "path", + { + "d": "M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z", + "fill": "currentColor" + } + ] + ], + "clubs": [ + [ + "path", + { + "d": "M12 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l0 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z" + } + ] + ], + "code-asterix": [ + [ + "path", + { + "d": "M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2m6 6.875l3 -1.687m-3 1.687v3.375m0 -3.375l-3 -1.687m3 1.687l3 1.688m-3 -5.063v3.375l-3 1.688m9 5.437a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2" + } + ] + ], + "code-circle-2": [ + [ + "path", + { + "d": "M8.5 13.5l-1.5 -1.5l1.5 -1.5m7 0l1.5 1.5l-1.5 1.5m-3.5 -1.5m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10 -2.5l-2 5.5" + } + ] + ], + "code-circle": [ + [ + "path", + { + "d": "M10 14l-2 -2l2 -2m4 0l2 2l-2 2m-2 -2m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "code-dots": [ + [ + "path", + { + "d": "M15 12h.01m-3.01 0h.01m-3.01 0h.01m-3.01 7a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2m12 14a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2" + } + ] + ], + "code-minus": [ + [ + "path", + { + "d": "M9 12h6m-9 7a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2m12 14a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2" + } + ] + ], + "code-off": [ + [ + "path", + { + "d": "M7 8l-4 4l4 4m10 -8l4 4l-2.5 2.5m-4.5 -10.5l-1.201 4.805m-.802 3.207l-2 7.988m-7 -17l18 18" + } + ] + ], + "code-plus": [ + [ + "path", + { + "d": "M9 12h6m-3 -3v6m-6 4a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2m12 14a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2" + } + ] + ], + "code": [ + [ + "path", + { + "d": "M7 8l-4 4l4 4m10 -8l4 4l-4 4m-3 -12l-4 16" + } + ] + ], + "coffee-off": [ + [ + "path", + { + "d": "M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.73 -.565 1.783 -.923 3 -.99m-5 -10.01c-.194 .14 -.364 .305 -.506 .49m4.506 -.49a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2m2 3h3v3m-.257 3.743a6 6 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7m10.116 6.124a3 3 0 0 0 -3.118 -4.953m-14 -8.171l18 18" + } + ] + ], + "coffee": [ + [ + "path", + { + "d": "M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1m-9 -11a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2m4 -4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2m-9 3h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5zm13.746 6.726a3 3 0 1 0 .252 -5.555" + } + ] + ], + "coffin": [ + [ + "path", + { + "d": "M7 3l-2 6l2 12h6l2 -12l-2 -6zm3 4v5m-2 -3h4m1 12h4l2 -12l-2 -6h-4" + } + ] + ], + "coin-bitcoin": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -4h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09m1 -4h4m-4 -5v10v-9m3 -1v1m0 8v1" + } + ] + ], + "coin-euro": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.401 -4c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1m-7.4 -5.5h4m-4 3h4" + } + ] + ], + "coin-monero": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m1 4h4v-7l4 4l4 -4v7h4" + } + ] + ], + "coin-off": [ + [ + "path", + { + "d": "M14.8 9a2 2 0 0 0 -1.8 -1h-1m-2.82 1.171a2 2 0 0 0 1.82 2.829h1m2.824 2.822a2 2 0 0 1 -1.824 1.178h-2a2 2 0 0 1 -1.8 -1m10.842 1.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-6.362 -12.365v2m0 8v2m-9 -15l18 18" + } + ] + ], + "coin-pound": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -3a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6m-6 -4h4" + } + ] + ], + "coin-rupee": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -4h-6h1a3 3 0 0 1 0 6h-1l3 3m-3 -6h6" + } + ] + ], + "coin-yen": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 0h6m-6 3h6m-6 -7l3 4.5m3 -4.5l-3 4.5v4.5" + } + ] + ], + "coin-yuan": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 1h6m-6 -5l3 4.5m3 -4.5l-3 4.5v4.5" + } + ] + ], + "coin": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.8 -3a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1m2.8 -8v10" + } + ] + ], + "coins": [ + [ + "path", + { + "d": "M9 14c0 1.657 2.686 3 6 3s6 -1.343 6 -3s-2.686 -3 -6 -3s-6 1.343 -6 3zv4c0 1.656 2.686 3 6 3s6 -1.344 6 -3v-4m-18 -8c0 1.072 1.144 2.062 3 2.598s4.144 .536 6 0c1.856 -.536 3 -1.526 3 -2.598c0 -1.072 -1.144 -2.062 -3 -2.598s-4.144 -.536 -6 0c-1.856 .536 -3 1.526 -3 2.598zv10c0 .888 .772 1.45 2 2m-2 -7c0 .888 .772 1.45 2 2" + } + ] + ], + "color-filter": [ + [ + "path", + { + "d": "M13.58 13.79c.27 .68 .42 1.43 .42 2.21c0 1.77 -.77 3.37 -2 4.46a5.93 5.93 0 0 1 -4 1.54c-3.31 0 -6 -2.69 -6 -6c0 -2.76 1.88 -5.1 4.42 -5.79m11.16 0c2.54 .69 4.42 3.03 4.42 5.79c0 3.31 -2.69 6 -6 6a5.93 5.93 0 0 1 -4 -1.54m0 -12.46m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0" + } + ] + ], + "color-picker-off": [ + [ + "path", + { + "d": "M11 7l6 6m-5 -5l3.699 -3.699a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-3.702 3.702m-2 2l-6 6h-4v-4l6 -6m-7 -7l18 18" + } + ] + ], + "color-picker": [ + [ + "path", + { + "d": "M11 7l6 6m-13 3l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z" + } + ] + ], + "color-swatch-off": [ + [ + "path", + { + "d": "M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4m0 -1.65l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9m-7.044 -7h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12m0 -4v.01m-14 -14.01l18 18" + } + ] + ], + "color-swatch": [ + [ + "path", + { + "d": "M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2m-6 4.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9m-7.044 -7h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12m0 -4l0 .01" + } + ] + ], + "column-insert-left": [ + [ + "path", + { + "d": "M14 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1zm-9 8l4 0m-2 -2l0 4" + } + ] + ], + "column-insert-right": [ + [ + "path", + { + "d": "M6 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1zm9 8l4 0m-2 -2l0 4" + } + ] + ], + "columns-off": [ + [ + "path", + { + "d": "M4 6h2m-2 4h5.5m-5.5 4h5.5m-5.5 4h5.5m5 -12h5.5m-5.5 4h5.5m-2 4h2m-5.5 4h3.5m-15 -15l18 18" + } + ] + ], + "columns": [ + [ + "path", + { + "d": "M4 6l5.5 0m-5.5 4l5.5 0m-5.5 4l5.5 0m-5.5 4l5.5 0m5 -12l5.5 0m-5.5 4l5.5 0m-5.5 4l5.5 0m-5.5 4l5.5 0" + } + ] + ], + "comet": [ + [ + "path", + { + "d": "M15.5 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5zm-11.5 -14.5l7 7m-2 -7l3.5 3.5m-8.5 1.5l3.5 3.5" + } + ] + ], + "command-off": [ + [ + "path", + { + "d": "M9 9v8a2 2 0 1 1 -2 -2h8m3.411 3.417a2 2 0 0 1 -3.411 -1.417v-2m0 -4v-4a2 2 0 1 1 2 2h-4m-4 0h-2a2 2 0 0 1 -1.417 -3.411m-2.583 -2.589l18 18" + } + ] + ], + "command": [ + [ + "path", + { + "d": "M7 9a2 2 0 1 1 2 -2v10a2 2 0 1 1 -2 -2h10a2 2 0 1 1 -2 2v-10a2 2 0 1 1 2 2h-10" + } + ] + ], + "compass-off": [ + [ + "path", + { + "d": "M13 9l3 -1l-1 3m-1 3l-6 2l2 -6m10.042 6.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-6.362 -15.365v2m0 14v2m-9 -9h2m14 0h2m-18 -9l18 18" + } + ] + ], + "compass": [ + [ + "path", + { + "d": "M8 16l2 -6l6 -2l-2 6l-6 2m4 -4m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9l0 2m0 14l0 2m-9 -9l2 0m14 0l2 0" + } + ] + ], + "components-off": [ + [ + "path", + { + "d": "M3 12l3 3l3 -3l-3 -3zm15.5 2.5l2.5 -2.5l-3 -3l-2.5 2.5m-3 -3l2.501 -2.501l-3 -3l-2.5 2.5m-.5 12.5l3 3l3 -3l-3 -3zm-6 -15l18 18" + } + ] + ], + "components": [ + [ + "path", + { + "d": "M3 12l3 3l3 -3l-3 -3zm12 0l3 3l3 -3l-3 -3zm-6 -6l3 3l3 -3l-3 -3zm0 12l3 3l3 -3l-3 -3z" + } + ] + ], + "cone-2": [ + [ + "path", + { + "d": "M12 7m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0m14 0v.5l-7 12.5l-7 -12.5v-.5" + } + ] + ], + "cone-off": [ + [ + "path", + { + "d": "M18.305 18.305c-1.132 1 -3.53 1.695 -6.305 1.695c-3.866 0 -7 -1.343 -7 -3s3.134 -3 7 -3c.747 0 1.467 .05 2.142 .143m2.928 -1.089l-5.07 -9.054l-1.432 2.558m-1.439 2.569l-4.129 7.373v.5m-2 -14l18 18" + } + ] + ], + "cone": [ + [ + "path", + { + "d": "M12 14c3.866 0 7 1.343 7 3s-3.134 3 -7 3s-7 -1.343 -7 -3s3.134 -3 7 -3zm7 3v-.5l-7 -12.5l-7 12.5v.5" + } + ] + ], + "confetti-off": [ + [ + "path", + { + "d": "M4 5h1v1m6.5 -2l-.5 2m7 -1h2m-1 -1v2m-4 3l-1 1m4 3l2 -.5m-2 6.5h1v1m-5 -3.482l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39v0zm-11 -13.518l18 18" + } + ] + ], + "confetti": [ + [ + "path", + { + "d": "M4 5h2m-1 -1v2m6.5 -2l-.5 2m7 -1h2m-1 -1v2m-4 3l-1 1m4 3l2 -.5m-2 6.5h2m-1 -1v2m-5 -3.482l-6.518 -6.518l-4.39 9.58a1 1 0 0 0 1.329 1.329l9.579 -4.39z" + } + ] + ], + "confucius": [ + [ + "path", + { + "d": "M9 19l3 2v-18m-8 7l8 -2m-8 10l8 -10m8 10l-8 -8l8 -4" + } + ] + ], + "container-off": [ + [ + "path", + { + "d": "M20 4v.01m0 15.99v.01m0 -4.01v.01m0 -4.01v.01m0 -4.01v.01m-11.703 -3.721a1 1 0 0 1 .703 -.289h6a1 1 0 0 1 1 1v7m0 4v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-11m-4 -4v.01m0 15.99v.01m0 -4.01v.01m0 -4.01v.01m0 -4.01v.01m-1 -5.01l18 18" + } + ] + ], + "container": [ + [ + "path", + { + "d": "M20 4v.01m0 15.99v.01m0 -4.01v.01m0 -4.01v.01m0 -4.01v.01m-12 -4.01m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm-4 -1v.01m0 15.99v.01m0 -4.01v.01m0 -4.01v.01m0 -4.01v.01" + } + ] + ], + "contrast-2-off": [ + [ + "path", + { + "d": "M4 18h2a6 6 0 0 0 6 -6m.878 -3.126a6 6 0 0 1 5.122 -2.874h2m-12 -2h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m-1.576 -1.595l18 18" + } + ] + ], + "contrast-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 12h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2" + } + ] + ], + "contrast-off": [ + [ + "path", + { + "d": "M12 12v5a4.984 4.984 0 0 0 3.522 -1.45m1.392 -2.623a5 5 0 0 0 -4.914 -5.927v1m-6.359 -2.369a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m-4.966 -.953l18 18" + } + ] + ], + "contrast": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 5a5 5 0 0 0 0 -10v10" + } + ] + ], + "cooker": [ + [ + "path", + { + "d": "M12 7h.01m2.99 0h.01m-6.01 0h.01m-4.01 -4m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm4 10h6m-10 -4h14" + } + ] + ], + "cookie-man": [ + [ + "path", + { + "d": "M12 2a5 5 0 0 1 2.845 9.112l.147 .369l1.755 -.803c.969 -.443 2.12 -.032 2.571 .918a1.88 1.88 0 0 1 -.787 2.447l-.148 .076l-2.383 1.089v2.02l1.426 1.425l.114 .125a1.96 1.96 0 0 1 -2.762 2.762l-.125 -.114l-2.079 -2.08l-.114 -.124a1.957 1.957 0 0 1 -.161 -.22h-.599c-.047 .075 -.101 .15 -.16 .22l-.115 .125l-2.08 2.079a1.96 1.96 0 0 1 -2.886 -2.648l.114 -.125l1.427 -1.426v-2.019l-2.383 -1.09l-.148 -.075a1.88 1.88 0 0 1 -.787 -2.447c.429 -.902 1.489 -1.318 2.424 -.978l.147 .06l1.755 .803l.147 -.369a5 5 0 0 1 -2.15 -3.895l0 -.217a5 5 0 0 1 5 -5zm0 14h.01m-.01 -3h.01m-2.01 -6h.01m3.99 0h.01m-2.01 2h.01" + } + ] + ], + "cookie-off": [ + [ + "path", + { + "d": "M8 13v.01m4 3.99v.01m0 -5.01v.01m6.192 6.177a3 3 0 0 1 -.976 .652c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 .649 -.971m2.821 -1.174c.14 -.049 .263 -.095 .37 -.139c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852a6.579 6.579 0 0 0 -.135 .36m-16.365 -12.36l18 18" + } + ] + ], + "cookie": [ + [ + "path", + { + "d": "M8 13v.01m4 3.99v.01m0 -5.01v.01m4 1.99v.01m-5 -6.01v.01m2.148 -4.534l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z" + } + ] + ], + "copy-off": [ + [ + "path", + { + "d": "M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6m-4 -8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2m-5 -13l18 18" + } + ] + ], + "copy": [ + [ + "path", + { + "d": "M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm8 -2v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2" + } + ] + ], + "copyleft-off": [ + [ + "path", + { + "d": "M13.303 9.3a3.01 3.01 0 0 1 1.405 1.406m-.586 3.413a3.016 3.016 0 0 1 -4.122 .131m10.042 1.795a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-15.362 -15.365l18 18" + } + ] + ], + "copyleft": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 -2.25a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173" + } + ] + ], + "copyright-off": [ + [ + "path", + { + "d": "M14 9.75a3.016 3.016 0 0 0 -.711 -.466m-3.41 .596a2.993 2.993 0 0 0 -.042 4.197a3.016 3.016 0 0 0 4.163 .173m6.042 1.795a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73m-15.362 -15.365l18 18" + } + ] + ], + "copyright": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -2.25a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173" + } + ] + ], + "corner-down-left-double": [ + [ + "path", + { + "d": "M19 5v6a3 3 0 0 1 -3 3h-7m4 -4l-4 4l4 4m-5 -8l-4 4l4 4" + } + ] + ], + "corner-down-left": [ + [ + "path", + { + "d": "M18 6v6a3 3 0 0 1 -3 3h-10l4 -4m0 8l-4 -4" + } + ] + ], + "corner-down-right-double": [ + [ + "path", + { + "d": "M4 5v6a3 3 0 0 0 3 3h7m-4 -4l4 4l-4 4m5 -8l4 4l-4 4" + } + ] + ], + "corner-down-right": [ + [ + "path", + { + "d": "M6 6v6a3 3 0 0 0 3 3h10l-4 -4m0 8l4 -4" + } + ] + ], + "corner-left-down-double": [ + [ + "path", + { + "d": "M18 4h-6a3 3 0 0 0 -3 3v7m4 -4l-4 4l-4 -4m8 5l-4 4l-4 -4" + } + ] + ], + "corner-left-down": [ + [ + "path", + { + "d": "M18 6h-6a3 3 0 0 0 -3 3v10l-4 -4m8 0l-4 4" + } + ] + ], + "corner-left-up-double": [ + [ + "path", + { + "d": "M18 19h-6a3 3 0 0 1 -3 -3v-7m4 4l-4 -4l-4 4m8 -5l-4 -4l-4 4" + } + ] + ], + "corner-left-up": [ + [ + "path", + { + "d": "M18 18h-6a3 3 0 0 1 -3 -3v-10l-4 4m8 0l-4 -4" + } + ] + ], + "corner-right-down-double": [ + [ + "path", + { + "d": "M5 4h6a3 3 0 0 1 3 3v7m-4 -4l4 4l4 -4m-8 5l4 4l4 -4" + } + ] + ], + "corner-right-down": [ + [ + "path", + { + "d": "M6 6h6a3 3 0 0 1 3 3v10l-4 -4m8 0l-4 4" + } + ] + ], + "corner-right-up-double": [ + [ + "path", + { + "d": "M5 19h6a3 3 0 0 0 3 -3v-7m-4 4l4 -4l4 4m-8 -5l4 -4l4 4" + } + ] + ], + "corner-right-up": [ + [ + "path", + { + "d": "M6 18h6a3 3 0 0 0 3 -3v-10l-4 4m8 0l-4 -4" + } + ] + ], + "corner-up-left-double": [ + [ + "path", + { + "d": "M19 18v-6a3 3 0 0 0 -3 -3h-7m4 4l-4 -4l4 -4m-5 8l-4 -4l4 -4" + } + ] + ], + "corner-up-left": [ + [ + "path", + { + "d": "M18 18v-6a3 3 0 0 0 -3 -3h-10l4 -4m0 8l-4 -4" + } + ] + ], + "corner-up-right-double": [ + [ + "path", + { + "d": "M4 18v-6a3 3 0 0 1 3 -3h7m-4 4l4 -4l-4 -4m5 8l4 -4l-4 -4" + } + ] + ], + "corner-up-right": [ + [ + "path", + { + "d": "M6 18v-6a3 3 0 0 1 3 -3h10l-4 -4m0 8l4 -4" + } + ] + ], + "cpu-2": [ + [ + "path", + { + "d": "M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1zm3 4v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2m-11 2h2m-2 4h2m5 -11v2m4 -2v2m7 5h-2m2 4h-2m-5 7v-2m-4 2v-2" + } + ] + ], + "cpu-off": [ + [ + "path", + { + "d": "M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a1 1 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698m7.716 3.698h2v2m0 4h-6v-6m-6 1h2m-2 4h2m5 -11v2m4 -2v2m7 5h-2m2 4h-2m-5 7v-2m-4 2v-2m-7 -16l18 18" + } + ] + ], + "cpu": [ + [ + "path", + { + "d": "M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1zm4 3h6v6h-6zm-6 1h2m-2 4h2m5 -11v2m4 -2v2m7 5h-2m2 4h-2m-5 7v-2m-4 2v-2" + } + ] + ], + "crane-off": [ + [ + "path", + { + "d": "M6 21h6m-3 0v-12m0 -4v-2l-1 1m-2 2l-3 3h6m4 0h8m-12 -6l10 6m-2 0v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2m-12 -12l18 18" + } + ] + ], + "crane": [ + [ + "path", + { + "d": "M6 21h6m-3 0v-18l-6 6h18m-12 -6l10 6m-2 0v4a2 2 0 1 1 -2 2" + } + ] + ], + "creative-commons-by": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-2 6v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z" + } + ] + ], + "creative-commons-nc": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -3h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5m3 -8v2m0 6v2m-6 -11l3 3m6 6l3 3" + } + ] + ], + "creative-commons-nd": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2h6m-6 4h6" + } + ] + ], + "creative-commons-off": [ + [ + "path", + { + "d": "M5.638 5.634a9 9 0 1 0 12.723 12.733m1.686 -2.332a9 9 0 0 0 -12.093 -12.077m2.546 6.542a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116m6 -3a2.194 2.194 0 0 0 -2.309 -.302m-11.191 -7.198l18 18" + } + ] + ], + "creative-commons-sa": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 4a4 4 0 1 0 -4 -4v1m-2 -1l2 2l2 -2" + } + ] + ], + "creative-commons-zero": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-3 0a3 4 0 1 0 6 0a3 4 0 1 0 -6 0m5 -3l-4 6" + } + ] + ], + "creative-commons": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7.5 -1.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116m6 -3c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116" + } + ] + ], + "credit-card-off": [ + [ + "path", + { + "d": "M3 3l18 18m-12 -16h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87m-2 2a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87m-2.124 5.87l8 0m4 0l6 0m-14 4l.01 0m3.99 0l2 0" + } + ] + ], + "credit-card": [ + [ + "path", + { + "d": "M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm0 2l18 0m-14 5l.01 0m3.99 0l2 0" + } + ] + ], + "cricket": [ + [ + "path", + { + "d": "M11.105 18.79l-1 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617m-4.332 -7.617l6 6m-2.5 4.5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "crop": [ + [ + "path", + { + "d": "M8 5v10a1 1 0 0 0 1 1h10m-14 -8h10a1 1 0 0 1 1 1v10" + } + ] + ], + "cross-filled": [ + [ + "path", + { + "d": "M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z", + "fill": "currentColor" + } + ] + ], + "cross-off": [ + [ + "path", + { + "d": "M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7m-11 -11l18 18" + } + ] + ], + "cross": [ + [ + "path", + { + "d": "M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z" + } + ] + ], + "crosshair": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-11 -4l6 0m-3 -3l0 6" + } + ] + ], + "crown-off": [ + [ + "path", + { + "d": "M18 18h-13l-1.865 -9.327a0.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a0.25 .25 0 0 1 .401 .244l-1.363 6.818m-16.502 -12.491l18 18" + } + ] + ], + "crown": [ + [ + "path", + { + "d": "M12 6l4 6l5 -4l-2 10h-14l-2 -10l5 4z" + } + ] + ], + "crutches-off": [ + [ + "path", + { + "d": "M8.178 4.174a2 2 0 0 1 1.822 -1.174h4a2 2 0 1 1 0 4h-3m0 14h2m-1 0v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .097 -.155m.407 -3.601v-3m-2 14v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092m0 1h1m-8 -8l18 18" + } + ] + ], + "crutches": [ + [ + "path", + { + "d": "M8 3m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2zm3 16h2m-1 0v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092m-2 14v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092m0 4h4" + } + ] + ], + "crystal-ball": [ + [ + "path", + { + "d": "M6.73 17.018a8 8 0 1 1 10.54 0m-12.27 1.982a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2zm6 -12a3 3 0 0 0 -3 3" + } + ] + ], + "cube-send": [ + [ + "path", + { + "d": "M16 12.5l-5 -3l5 -3l5 3v5.5l-5 3zm-5 -3v5.5l5 3m0 -5.455l5 -3.03m-14 -.515h-5m5 3h-3m3 3h-1" + } + ] + ], + "cube-unfolded": [ + [ + "path", + { + "d": "M2 15h10v5h5v-5h5v-5h-10v-5h-5v5h-5zm5 0v-5h5v5h5v-5" + } + ] + ], + "cup-off": [ + [ + "path", + { + "d": "M8 8h-3v3h6m4 0h4v-3h-7m5.5 3l-.323 2.154m-.525 3.497l-.652 4.349h-8l-1.5 -10m-.5 -3v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1m-3 -3v-2m-12 0l18 18" + } + ] + ], + "cup": [ + [ + "path", + { + "d": "M5 11h14v-3h-14zm12.5 0l-1.5 10h-8l-1.5 -10m-.5 -3v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1m-3 -3v-2" + } + ] + ], + "curling": [ + [ + "path", + { + "d": "M4 9m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v2a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4zm0 1h16m-12 -9h6a2 2 0 0 1 2 2v2" + } + ] + ], + "curly-loop": [ + [ + "path", + { + "d": "M21 8c-4 0 -7 2 -7 5a3 3 0 0 0 6 0c0 -3 -2.5 -5 -8 -5s-8 2 -8 5a3 3 0 0 0 6 0c0 -3 -3 -5 -7 -5" + } + ] + ], + "currency-afghani": [ + [ + "path", + { + "d": "M15 13h-3.5a3.5 3.5 0 1 1 3.5 -3.5v6.5h-7m4 -13v.01m0 15.99v2" + } + ] + ], + "currency-bahraini": [ + [ + "path", + { + "d": "M3 10v1a4 4 0 0 0 4 4h2a2 2 0 0 0 2 -2v-3m-4 9.01v-.01m7 -3.99v-.01m3 0h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869" + } + ] + ], + "currency-baht": [ + [ + "path", + { + "d": "M8 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143m0 -12v12m3 -14v2m0 12v2" + } + ] + ], + "currency-bitcoin": [ + [ + "path", + { + "d": "M6 6h8a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-8m2 -12l0 12m0 -6l6 0m-5 -9l0 3m4 -3l0 3m-4 12l0 3m4 -3l0 3" + } + ] + ], + "currency-cent": [ + [ + "path", + { + "d": "M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536m-4 3.536v-2m0 -12v-2" + } + ] + ], + "currency-dinar": [ + [ + "path", + { + "d": "M14 20.01v-.01m-8 -7l2.386 -.9a1 1 0 0 0 -.095 -1.902l-1.514 -.404a1 1 0 0 1 -.102 -1.9l2.325 -.894m-6 7v1a3 3 0 0 0 3 3h4.161a3 3 0 0 0 2.983 -3.32l-1.144 -10.68m4 13l1 1h2a2 2 0 0 0 1.649 -3.131l-2.653 -3.869" + } + ] + ], + "currency-dirham": [ + [ + "path", + { + "d": "M8.5 19h-3.5m3.599 -2.521a1.5 1.5 0 1 0 -1.099 2.521m-.5 -15v9m8 0h1.888a1.5 1.5 0 0 0 1.296 -2.256l-2.184 -3.744m-5 6.01v-.01" + } + ] + ], + "currency-dogecoin": [ + [ + "path", + { + "d": "M6 12h6m-3 -6v12m-3 0h6a6 6 0 1 0 0 -12h-6" + } + ] + ], + "currency-dollar-australian": [ + [ + "path", + { + "d": "M3 18l3.279 -11.476a0.75 .75 0 0 1 1.442 0l3.279 11.476m10 -12h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m3 2v-2m1 -12v-2m-13.5 10h5" + } + ] + ], + "currency-dollar-brunei": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m3 2v-2m1 -12v-2m-15 2v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z" + } + ] + ], + "currency-dollar-canadian": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m-4 0h-1a6 6 0 1 1 0 -12h1m7 14v-2m1 -12v-2" + } + ] + ], + "currency-dollar-guyanese": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m-4 -12h-3a4 4 0 0 0 -4 4v4a4 4 0 0 0 4 4h3v-6h-2m9 8v-2m1 -12v-2" + } + ] + ], + "currency-dollar-off": [ + [ + "path", + { + "d": "M16.7 8a3 3 0 0 0 -2.7 -2h-4m-2.557 1.431a3 3 0 0 0 2.557 4.569h2m4.564 4.558a3 3 0 0 1 -2.564 1.442h-4a3 3 0 0 1 -2.7 -2m4.7 -13v3m0 12v3m-9 -18l18 18" + } + ] + ], + "currency-dollar-singapore": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m-4 -12h-4a3 3 0 1 0 0 6h1a3 3 0 0 1 0 6h-4m14 2v-2m1 -12v-2" + } + ] + ], + "currency-dollar-zimbabwean": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m3 2v-2m1 -12v-2m-15 2h7l-7 12h7" + } + ] + ], + "currency-dollar": [ + [ + "path", + { + "d": "M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2m4.7 -13v3m0 12v3" + } + ] + ], + "currency-dong": [ + [ + "path", + { + "d": "M6 19h12m-6 -7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m8 4v-12m1 1h-4" + } + ] + ], + "currency-dram": [ + [ + "path", + { + "d": "M4 10a6 6 0 1 1 12 0v10m-4 -4h8m-8 -4h8" + } + ] + ], + "currency-ethereum": [ + [ + "path", + { + "d": "M6 12l6 -9l6 9l-6 9zl6 -3l6 3l-6 2z" + } + ] + ], + "currency-euro-off": [ + [ + "path", + { + "d": "M17.2 7c-1.977 -2.26 -4.954 -2.602 -7.234 -1.04m-1.913 2.079c-1.604 2.72 -1.374 6.469 .69 8.894c2.292 2.691 6 2.758 8.356 .18m-7.099 -7.113h-5m0 4h8m-10 -11l18 18" + } + ] + ], + "currency-euro": [ + [ + "path", + { + "d": "M17.2 7a6 7 0 1 0 0 10m-4.2 -7h-8m0 4h8" + } + ] + ], + "currency-forint": [ + [ + "path", + { + "d": "M11 4h-4a3 3 0 0 0 -3 3v12m6 -8h-6m12 -7v13a2 2 0 0 0 2 2h2m-1 -10h-5" + } + ] + ], + "currency-frank": [ + [ + "path", + { + "d": "M17 5h-6a2 2 0 0 0 -2 2v12m-2 -4h4m-2 -4h7" + } + ] + ], + "currency-guarani": [ + [ + "path", + { + "d": "M16.007 7.54a5.965 5.965 0 0 0 -4.008 -1.54a6 6 0 0 0 -5.992 6c0 3.314 2.682 6 5.992 6a5.965 5.965 0 0 0 4 -1.536c.732 -.66 1.064 -2.148 1 -4.464h-5m0 8v-16" + } + ] + ], + "currency-hryvnia": [ + [ + "path", + { + "d": "M8 7a2.64 2.64 0 0 1 2.562 -2h3.376a2.64 2.64 0 0 1 2.562 2a2.57 2.57 0 0 1 -1.344 2.922l-5.876 2.938a3.338 3.338 0 0 0 -1.78 3.64a3.11 3.11 0 0 0 3.05 2.5h2.888a2.64 2.64 0 0 0 2.562 -2m-10 -7h12m-12 4h12" + } + ] + ], + "currency-kip": [ + [ + "path", + { + "d": "M6 12h12m-9 -7v14m7 0a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7" + } + ] + ], + "currency-krone-czech": [ + [ + "path", + { + "d": "M5 6v12m0 -6c3.5 0 6 -3 6 -6m-6 6c3.5 0 6 3 6 6m8 -12l-2 2l-2 -2m4 6h-2a3 3 0 0 0 0 6h2" + } + ] + ], + "currency-krone-danish": [ + [ + "path", + { + "d": "M5 6v12m0 -6c3.5 0 6 -3 6 -6m-6 6c3.5 0 6 3 6 6m4 -8v8m4 -8a4 4 0 0 0 -4 4m5 4.01v-.01" + } + ] + ], + "currency-krone-swedish": [ + [ + "path", + { + "d": "M5 6v12m0 -6c3.5 0 6 -3 6 -6m-6 6c3.5 0 6 3 6 6m4 -8v8m4 -8a4 4 0 0 0 -4 4" + } + ] + ], + "currency-lari": [ + [ + "path", + { + "d": "M18 13a6 6 0 1 0 -6 6m-6 0h12m-8 -14v7m4 0v-7" + } + ] + ], + "currency-leu": [ + [ + "path", + { + "d": "M17 18h-7a3 3 0 0 1 -3 -3v-10" + } + ] + ], + "currency-lira": [ + [ + "path", + { + "d": "M10 5v15a7 7 0 0 0 7 -7m-11 2l8 -4m0 -4l-8 4" + } + ] + ], + "currency-litecoin": [ + [ + "path", + { + "d": "M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717m4.5 4l-9 4" + } + ] + ], + "currency-lyd": [ + [ + "path", + { + "d": "M11 15h.01m9.99 -10v10a2 2 0 0 1 -2 2h-2.764a2 2 0 0 1 -1.789 -1.106l-.447 -.894m-9 -7l2.773 4.687c.427 .697 .234 1.626 -.43 2.075a1.38 1.38 0 0 1 -.773 .238h-2.224a0.93 .93 0 0 1 -.673 -.293l-.673 -.707" + } + ] + ], + "currency-manat": [ + [ + "path", + { + "d": "M7 19v-7a5 5 0 1 1 10 0v7m-5 -14v14" + } + ] + ], + "currency-monero": [ + [ + "path", + { + "d": "M3 18h3v-11l6 7l6 -7v11h3" + } + ] + ], + "currency-naira": [ + [ + "path", + { + "d": "M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948m-12 4h14m-14 4h14" + } + ] + ], + "currency-off": [ + [ + "path", + { + "d": "M18.531 14.524a7 7 0 0 0 -9.06 -9.053m-2.422 1.582a7 7 0 0 0 9.903 9.896m-12.952 -12.949l3 3m13 -3l-3 3m-13 13l3 -3m13 3l-3 -3m-14 -14l18 18" + } + ] + ], + "currency-paanga": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m3 2v-2m1 -12v-2m-15 2h8m-4 0v12" + } + ] + ], + "currency-peso": [ + [ + "path", + { + "d": "M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5m10 -6h-12m12 3h-12" + } + ] + ], + "currency-pound-off": [ + [ + "path", + { + "d": "M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5m1.192 -2.825a4 4 0 0 1 6.258 .825m-3.45 6h-6m-4 -10l18 18" + } + ] + ], + "currency-pound": [ + [ + "path", + { + "d": "M17 18.5a6 6 0 0 1 -5 0a6 6 0 0 0 -5 .5a3 3 0 0 0 2 -2.5v-7.5a4 4 0 0 1 7.45 -2m-2.55 6h-7" + } + ] + ], + "currency-quetzal": [ + [ + "path", + { + "d": "M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m7 1l5 5" + } + ] + ], + "currency-real": [ + [ + "path", + { + "d": "M21 6h-4a3 3 0 0 0 0 6h1a3 3 0 0 1 0 6h-4m-10 0v-12h3a3 3 0 1 1 0 6h-3c5.5 0 5 4 6 6m8 -12v-2m-1 16v-2" + } + ] + ], + "currency-renminbi": [ + [ + "path", + { + "d": "M15 9v8a2 2 0 1 0 4 0m0 -8h-14m14 -4h-14m4 4v4c0 2.5 -.667 4 -2 6" + } + ] + ], + "currency-ripple": [ + [ + "path", + { + "d": "M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 -5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 -5h3l2 -2.5m0 5l-2 -2.5" + } + ] + ], + "currency-riyal": [ + [ + "path", + { + "d": "M15 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2m15 .01v-.01m4 -2v1a5 5 0 0 1 -5 5" + } + ] + ], + "currency-rubel": [ + [ + "path", + { + "d": "M8 19v-14h6a3 3 0 0 1 0 6h-8m8 4h-8" + } + ] + ], + "currency-rufiyaa": [ + [ + "path", + { + "d": "M20 16h.01m-16.01 0c9.5 -4 11.5 -8 14 -9m-6 1l5 3" + } + ] + ], + "currency-rupee-nepalese": [ + [ + "path", + { + "d": "M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6m11 -2l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707" + } + ] + ], + "currency-rupee": [ + [ + "path", + { + "d": "M18 5h-11h3a4 4 0 0 1 0 8h-3l6 6m-6 -10l11 0" + } + ] + ], + "currency-shekel": [ + [ + "path", + { + "d": "M6 18v-12h4a4 4 0 0 1 4 4v4m4 -8v12h-4a4 4 0 0 1 -4 -4v-4" + } + ] + ], + "currency-solana": [ + [ + "path", + { + "d": "M4 18h12l4 -4h-12zm4 -4l-4 -4h12l4 4m-4 -4l4 -4h-12l-4 4" + } + ] + ], + "currency-som": [ + [ + "path", + { + "d": "M10 18v-12h-5v10a2 2 0 0 1 -2 2m11 -12v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z" + } + ] + ], + "currency-taka": [ + [ + "path", + { + "d": "M16.5 15.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8.5 -8.5a2 2 0 1 1 4 0v9a3 3 0 0 0 6 0v-.5m-9 -4.5h6" + } + ] + ], + "currency-tenge": [ + [ + "path", + { + "d": "M6 5h12m-12 4h12m-6 0v10" + } + ] + ], + "currency-tugrik": [ + [ + "path", + { + "d": "M7 6h10m-5 0v13m-4 -2l8 -3m0 -4l-8 3" + } + ] + ], + "currency-won": [ + [ + "path", + { + "d": "M4 6l3.245 11.358a0.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a0.85 .85 0 0 0 1.624 -.035l3.245 -11.358m1 4h-18m18 4h-18" + } + ] + ], + "currency-yen-off": [ + [ + "path", + { + "d": "M12 19v-7m5 -7l-3.328 4.66m-5.672 7.34h8m-8 -4h5m-10 -10l18 18" + } + ] + ], + "currency-yen": [ + [ + "path", + { + "d": "M12 19v-7l-5 -7m10 0l-5 7m-4 5l8 0m-8 -4l8 0" + } + ] + ], + "currency-yuan": [ + [ + "path", + { + "d": "M12 19v-7l-5 -7m10 0l-5 7m-4 1h8" + } + ] + ], + "currency-zloty": [ + [ + "path", + { + "d": "M12 18h-7l7 -7h-7m12 7v-13m-3 9.5l6 -3.5" + } + ] + ], + "currency": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m-1 -8l3 3m13 -3l-3 3m-13 13l3 -3m13 3l-3 -3" + } + ] + ], + "current-location-off": [ + [ + "path", + { + "d": "M14.685 10.661c-.3 -.6 -.795 -1.086 -1.402 -1.374m-3.397 .584a3 3 0 1 0 4.24 4.245m-7.769 -7.786a8 8 0 1 0 11.301 11.326m1.642 -2.378a8 8 0 0 0 -10.597 -10.569m3.297 -2.709v2m0 16v2m8 -10h2m-20 0h2m-1 -9l18 18" + } + ] + ], + "current-location": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 0m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0m8 -10l0 2m0 16l0 2m8 -10l2 0m-20 0l2 0" + } + ] + ], + "cursor-off": [ + [ + "path", + { + "d": "M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3m6 -16a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3m-12 -17l18 18" + } + ] + ], + "cursor-text": [ + [ + "path", + { + "d": "M10 12h4m-5 -8a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3m6 -16a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3" + } + ] + ], + "cut": [ + [ + "path", + { + "d": "M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4.85 -2.15l8.85 -10.85m-12 0l8.85 10.85" + } + ] + ], + "cylinder": [ + [ + "path", + { + "d": "M12 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0v12c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-12" + } + ] + ], + "dashboard-off": [ + [ + "path", + { + "d": "M11.175 11.178a2 2 0 1 0 2.653 2.634m.672 -3.312l1 -1m-6.879 -4.888a9 9 0 0 1 11.721 11.72m-1.516 2.488a9.008 9.008 0 0 1 -1.226 1.18h-11.2a9 9 0 0 1 -.268 -13.87m-3.132 -3.13l18 18" + } + ] + ], + "dashboard": [ + [ + "path", + { + "d": "M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m3.45 -1.45l2.05 -2.05m-9.1 10.5a9 9 0 1 1 11.2 0z" + } + ] + ], + "database-export": [ + [ + "path", + { + "d": "M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0v6c0 1.657 3.582 3 8 3a19.84 19.84 0 0 0 3.302 -.267m4.698 -2.733v-6m-16 6v6c0 1.599 3.335 2.905 7.538 3m8.462 -7v-2m-6 7h7m-3 -3l3 3l-3 3" + } + ] + ], + "database-import": [ + [ + "path", + { + "d": "M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0v8m5.009 .783c.924 .14 1.933 .217 2.991 .217c4.418 0 8 -1.343 8 -3v-6m-8.748 14.987c.246 .009 .496 .013 .748 .013c4.418 0 8 -1.343 8 -3v-6m-18 7h7m-3 -3l3 3l-3 3" + } + ] + ], + "database-off": [ + [ + "path", + { + "d": "M12.983 8.978c3.955 -.182 7.017 -1.446 7.017 -2.978c0 -1.657 -3.582 -3 -8 -3c-1.661 0 -3.204 .19 -4.483 .515m-2.783 1.228c-.471 .382 -.734 .808 -.734 1.257c0 1.22 1.944 2.271 4.734 2.74m-4.734 -2.74v6c0 1.657 3.582 3 8 3c.986 0 1.93 -.067 2.802 -.19m3.187 -.82c1.251 -.53 2.011 -1.228 2.011 -1.99v-6m-16 6v6c0 1.657 3.582 3 8 3c3.217 0 5.991 -.712 7.261 -1.74m.739 -3.26v-4m-17 -9l18 18" + } + ] + ], + "database": [ + [ + "path", + { + "d": "M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0v6a8 3 0 0 0 16 0v-6m-16 6v6a8 3 0 0 0 16 0v-6" + } + ] + ], + "deer": [ + [ + "path", + { + "d": "M3 3c0 2 1 3 4 3c2 0 3 1 3 3m11 -6c0 2 -1 3 -4 3c-2 0 -3 .333 -3 3m-2 9c-1 0 -4 -3 -4 -6c0 -2 1.333 -3 4 -3s4 1 4 3c0 3 -3 6 -4 6m3.185 -3.111l.095 -.18a4 4 0 1 1 -6.56 0m8.28 -11.709c0 1.333 -.333 2.333 -1 3m-9 -3c0 1.333 .333 2.333 1 3m-1 0c-2.667 .667 -4.333 1.667 -5 3m15 -3c2.667 .667 4.333 1.667 5 3m-13.5 1l-1.5 -1m8.5 1l1.5 -1m-5 6h.01" + } + ] + ], + "delta": [ + [ + "path", + { + "d": "M4 20h16l-8 -16z" + } + ] + ], + "dental-broken": [ + [ + "path", + { + "d": "M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5zl1 2.5l-2 2l2 2" + } + ] + ], + "dental-off": [ + [ + "path", + { + "d": "M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353m-6.181 -12.684l3 1.5m-12 -4l18 18" + } + ] + ], + "dental": [ + [ + "path", + { + "d": "M12 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 0 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 0 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 2 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -5 -4 -5c-1.423 0 -2.92 .911 -4 1.5zl3 1.5" + } + ] + ], + "details-off": [ + [ + "path", + { + "d": "M5 19h14m1.986 -2.016a2 2 0 0 0 -.146 -.734l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.821 1.417m-1.469 2.534l-4.81 8.299a2 2 0 0 0 1.75 2.75m7.11 -16v5m0 4v7m-9 -16l18 18" + } + ] + ], + "details": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75m7.11 -16v16" + } + ] + ], + "device-airpods-case": [ + [ + "path", + { + "d": "M21 10h-18m0 -6m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4zm4 2v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5" + } + ] + ], + "device-airpods": [ + [ + "path", + { + "d": "M6 4a4 4 0 0 1 4 3.8l0 .2v10.5a1.5 1.5 0 0 1 -3 0v-6.5h-1a4 4 0 0 1 -4 -3.8l0 -.2a4 4 0 0 1 4 -4zm12 0a4 4 0 0 0 -4 3.8l0 .2v10.5a1.5 1.5 0 0 0 3 0v-6.5h1a4 4 0 0 0 4 -3.8l0 -.2a4 4 0 0 0 -4 -4z" + } + ] + ], + "device-analytics": [ + [ + "path", + { + "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm4 15l10 0m-8 -4l0 4m6 -4l0 4m-7 -8l3 -3l2 2l3 -3" + } + ] + ], + "device-audio-tape": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm0 10l4 -3h10l4 3m-13.5 -7.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m9.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "device-camera-phone": [ + [ + "path", + { + "d": "M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m-3 -1.5h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2m-3 1v-1" + } + ] + ], + "device-cctv-off": [ + [ + "path", + { + "d": "M7 7h-3a1 1 0 0 1 -1 -1v-2c0 -.275 .11 -.523 .29 -.704m3.71 -.296h13a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-9m-.64 3.35a4 4 0 1 0 5.285 5.3m3.355 -8.65v7c0 .321 -.022 .637 -.064 .947m-1.095 2.913a7 7 0 0 1 -12.841 -3.86l0 -7m7 7h.01m-9.01 -11l18 18" + } + ] + ], + "device-cctv": [ + [ + "path", + { + "d": "M3 3m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m11 -7v7a7 7 0 0 1 -14 0v-7m7 7l.01 0" + } + ] + ], + "device-computer-camera-off": [ + [ + "path", + { + "d": "M6.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695m.983 4.968a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736m-3.136 8.865l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486m-13 -13l18 18" + } + ] + ], + "device-computer-camera": [ + [ + "path", + { + "d": "M12 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m7 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-1 6l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486" + } + ] + ], + "device-desktop-analytics": [ + [ + "path", + { + "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm4 15h10m-8 -4v4m6 -4v4m-6 -8v-4m3 4v-1m3 1v-2m-3 2v-1" + } + ] + ], + "device-desktop-off": [ + [ + "path", + { + "d": "M8 4h12a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1m-4 0h-12a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1m3 16l10 0m-8 -4l0 4m6 -4l0 4m-12 -17l18 18" + } + ] + ], + "device-desktop": [ + [ + "path", + { + "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm4 15l10 0m-8 -4l0 4m6 -4l0 4" + } + ] + ], + "device-floppy": [ + [ + "path", + { + "d": "M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2m6 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 -10l0 4l-6 0l0 -4" + } + ] + ], + "device-gamepad-2": [ + [ + "path", + { + "d": "M12 5h3.5a5 5 0 0 1 0 10h-5.5l-4.015 4.227a2.3 2.3 0 0 1 -3.923 -2.035l1.634 -8.173a5 5 0 0 1 4.904 -4.019h3.4zm2 10l4.07 4.284a2.3 2.3 0 0 0 3.925 -2.023l-1.6 -8.232m-12.395 -.029v2m-1 -1h2m5 0h2" + } + ] + ], + "device-gamepad": [ + [ + "path", + { + "d": "M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm4 4h4m-2 -2v4m7 -3l0 .01m3 1.99l0 .01" + } + ] + ], + "device-heart-monitor": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 3h6l1 -2l2 4l1 -2h6m-16 5h16m-6 3v.01m3 -.01v.01" + } + ] + ], + "device-ipad-horizontal": [ + [ + "path", + { + "d": "M2 4m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm7 11h6" + } + ] + ], + "device-ipad": [ + [ + "path", + { + "d": "M20 4v16a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-16a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2zm-11 15h6" + } + ] + ], + "device-landline-phone": [ + [ + "path", + { + "d": "M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2zm-4 1h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11m-4 -12h-6v3h6zm0 6v.01m-3 -.01v.01m-3 -.01v.01m6 2.99v.01m-3 -.01v.01m-3 -.01v.01" + } + ] + ], + "device-laptop-off": [ + [ + "path", + { + "d": "M3 19h16m-9 -13h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1m-3 -3l18 18" + } + ] + ], + "device-laptop": [ + [ + "path", + { + "d": "M3 19l18 0m-16 -13m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z" + } + ] + ], + "device-mobile-charging": [ + [ + "path", + { + "d": "M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm5 -1h2m-1 5.5l-1 2.5h2l-1 2.5" + } + ] + ], + "device-mobile-message": [ + [ + "path", + { + "d": "M11 3h10v8h-3l-4 2v-2h-3zm4 13v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h2m2 13v.01" + } + ] + ], + "device-mobile-off": [ + [ + "path", + { + "d": "M7.174 3.178c.252 -.114 .531 -.178 .826 -.178h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13m5 -2h2m-1 13v.01m-9 -14.01l18 18" + } + ] + ], + "device-mobile-rotated": [ + [ + "path", + { + "d": "M3 6m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm17 3v2m-13 -1h-.01" + } + ] + ], + "device-mobile-vibration": [ + [ + "path", + { + "d": "M3 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm5 -1l2 0m-1 13l0 .01m12 -11.01l-2 3l2 3l-2 3l2 3" + } + ] + ], + "device-mobile": [ + [ + "path", + { + "d": "M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm5 -1l2 0m-1 13l0 .01" + } + ] + ], + "device-nintendo-off": [ + [ + "path", + { + "d": "M4.713 4.718a4 4 0 0 0 -1.713 3.282v8a4 4 0 0 0 4 4h3v-10m0 -4v-2h-2m6 6v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6m-7.5 -5.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-2.5 -5.5l18 18" + } + ] + ], + "device-nintendo": [ + [ + "path", + { + "d": "M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3zm4 0v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3zm3.5 -4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-10 -7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "device-sd-card": [ + [ + "path", + { + "d": "M7 21h10a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2h-6.172a2 2 0 0 0 -1.414 .586l-3.828 3.828a2 2 0 0 0 -.586 1.414v10.172a2 2 0 0 0 2 2zm6 -15v2m3 -2v2m-6 -1v1" + } + ] + ], + "device-sim-1": [ + [ + "path", + { + "d": "M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1zm4 8l2 -2v8" + } + ] + ], + "device-sim-2": [ + [ + "path", + { + "d": "M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1zm4 6h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "device-sim-3": [ + [ + "path", + { + "d": "M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1zm4 6h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5" + } + ] + ], + "device-sim": [ + [ + "path", + { + "d": "M6 3h8.5l4.5 4.5v12.5a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1zm3 8h3v6m3 0v.01m0 -3.01v.01m0 -3.01v.01m-6 2.99v.01m0 2.99v.01" + } + ] + ], + "device-speaker-off": [ + [ + "path", + { + "d": "M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14m6.114 6.133a3 3 0 1 0 3.754 3.751m-2.868 -7.884v.01m-9 -4.01l18 18" + } + ] + ], + "device-speaker": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -7l0 .01" + } + ] + ], + "device-tablet-off": [ + [ + "path", + { + "d": "M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15m7 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8 -14l18 18" + } + ] + ], + "device-tablet": [ + [ + "path", + { + "d": "M5 3m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v16a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1zm7 13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "device-tv-off": [ + [ + "path", + { + "d": "M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2m9 -4l-4 4l-4 -4m-5 0l18 18" + } + ] + ], + "device-tv-old": [ + [ + "path", + { + "d": "M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm13 -6l-4 4l-4 -4m7 4v13m3 -5v.01m0 -3.01v.01" + } + ] + ], + "device-tv": [ + [ + "path", + { + "d": "M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm13 -6l-4 4l-4 -4" + } + ] + ], + "device-watch-off": [ + [ + "path", + { + "d": "M10 6h5a3 3 0 0 1 3 3v5m-.882 3.125a2.99 2.99 0 0 1 -2.118 .875h-6a3 3 0 0 1 -3 -3v-6c0 -.828 .336 -1.578 .878 -2.121m2.122 11.121v3h6v-3m-6 -13v-2h6v3m-12 -3l18 18" + } + ] + ], + "device-watch-stats-2": [ + [ + "path", + { + "d": "M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3zm3 9v3h6v-3m-6 -12v-3h6v3m-3 4a2 2 0 1 0 2 2" + } + ] + ], + "device-watch-stats": [ + [ + "path", + { + "d": "M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3zm3 9v3h6v-3m-6 -12v-3h6v3m-6 8v-4m3 4v-1m3 1v-3" + } + ] + ], + "device-watch": [ + [ + "path", + { + "d": "M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3zm3 9v3h6v-3m-6 -12v-3h6v3" + } + ] + ], + "devices-2": [ + [ + "path", + { + "d": "M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6m3 -1m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm-6 14l3 0m7 -11l0 .01m0 7.99m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 -1l0 4" + } + ] + ], + "devices-off": [ + [ + "path", + { + "d": "M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6m5 -5v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9m3 -9h2m-15 -6l18 18" + } + ] + ], + "devices-pc-off": [ + [ + "path", + { + "d": "M9 9v10h-6v-14h2m8 4h9v7h-2m-4 0h-4v-4m2 7h5m-2 -2v2m-11 -6v.01m0 2.99v.01m-3 -13.01l18 18" + } + ] + ], + "devices-pc": [ + [ + "path", + { + "d": "M3 5h6v14h-6zm9 4h10v7h-10zm2 10h6m-3 -3v3m-11 -6v.01m0 2.99v.01" + } + ] + ], + "devices": [ + [ + "path", + { + "d": "M13 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm5 -1v-3a1 1 0 0 0 -1 -1h-13a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9m3 -9l2 0" + } + ] + ], + "dialpad-off": [ + [ + "path", + { + "d": "M7 7h-4v-4m14 0h4v4h-4zm-7 3v-3h4v4h-3m-8 3h4v4h-4zm14 3v-3h4v4h-3m-4 0h-4v-4m0 7h4v4h-4zm-7 -14l18 18" + } + ] + ], + "dialpad": [ + [ + "path", + { + "d": "M3 3h4v4h-4zm14 0h4v4h-4zm-7 0h4v4h-4zm-7 7h4v4h-4zm14 0h4v4h-4zm-7 0h4v4h-4zm0 7h4v4h-4z" + } + ] + ], + "diamond-off": [ + [ + "path", + { + "d": "M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a0.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368m4.38 6.368l-2 -2.2l.6 -1m-5.6 -5.8l18 18" + } + ] + ], + "diamond": [ + [ + "path", + { + "d": "M6 5h12l3 5l-8.5 9.5a0.7 .7 0 0 1 -1 0l-8.5 -9.5l3 -5m4 7l-2 -2.2l.6 -1" + } + ] + ], + "diamonds-filled": [ + [ + "path", + { + "d": "M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z", + "fill": "currentColor" + } + ] + ], + "diamonds": [ + [ + "path", + { + "d": "M10.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z" + } + ] + ], + "dice-1": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 6m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5.5 3.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m5.5 5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice-3": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4.5 2.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 7m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-3 -3.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice-4": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4.5 2.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 7m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice-5": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4.5 2.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 7m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m4 -3.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice-6": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4.5 1.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6.5 4.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 4.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dice": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4.5 2.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 7m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "dimensions": [ + [ + "path", + { + "d": "M3 5h11m-2 2l2 -2l-2 -2m-7 0l-2 2l2 2m14 3v11m-2 -2l2 2l2 -2m0 -7l-2 -2l-2 2m-14 -2m0 2a2 2 0 0 1 2 -2h7a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2z" + } + ] + ], + "direction-horizontal": [ + [ + "path", + { + "d": "M10 9l-3 3l3 3m4 -6l3 3l-3 3" + } + ] + ], + "direction-sign-off": [ + [ + "path", + { + "d": "M18.73 14.724l1.949 -1.95a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-1.95 1.95m-2.01 2.01l-3.945 3.945a1.095 1.095 0 0 0 0 1.548l7.905 7.905c.427 .428 1.12 .428 1.548 0l3.95 -3.95m-8.724 -4.729h4m1.748 1.752l-1.748 1.748m-9 -12.5l18 18" + } + ] + ], + "direction-sign": [ + [ + "path", + { + "d": "M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548zm4.68 -.774h7.5m-3.5 -3.5l3.5 3.5l-3.5 3.5" + } + ] + ], + "direction": [ + [ + "path", + { + "d": "M9 10l3 -3l3 3m-6 4l3 3l3 -3" + } + ] + ], + "directions-off": [ + [ + "path", + { + "d": "M12 21v-4m0 -4v-1m0 -7v-2m-2 18h4m-6 -13v1h1m4 0h6l2 -2l-2 -2h-10m5 9v3h-8l-2 -2l2 -2h7m-10 -10l18 18" + } + ] + ], + "directions": [ + [ + "path", + { + "d": "M12 21v-4m0 -4v-4m0 -4v-2m-2 18h4m-6 -16v4h11l2 -2l-2 -2zm6 8v4h-8l-2 -2l2 -2z" + } + ] + ], + "disabled-2": [ + [ + "path", + { + "d": "M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 5a5 5 0 1 0 3.95 7.95m6.05 1.05l-4 -5h-4l3 -5l-4 -3l-4 1" + } + ] + ], + "disabled-off": [ + [ + "path", + { + "d": "M11 7a2 2 0 1 0 -2 -2m2 6v4h4l4 5m-4 -9h1m-9 .5a5 5 0 1 0 6 7.5m-10 -16l18 18" + } + ] + ], + "disabled": [ + [ + "path", + { + "d": "M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2l0 8l4 0l4 5m-8 -9l5 0m-9 .5a5 5 0 1 0 6 7.5" + } + ] + ], + "disc-golf": [ + [ + "path", + { + "d": "M5 5h14m-13 0c.32 6.744 2.74 9.246 6 10m6 -10c-.32 6.744 -2.74 9.246 -6 10m-2 -10c0 4.915 .552 7.082 2 10m2 -10c0 4.915 -.552 7.082 -2 10v6m0 -18v2m-5 11c.64 .64 1.509 1 2.414 1h5.172c.905 0 1.774 -.36 2.414 -1m-6 5h2" + } + ] + ], + "disc-off": [ + [ + "path", + { + "d": "M20.044 16.04a9 9 0 0 0 -12.082 -12.085m-2.333 1.688a9 9 0 0 0 6.371 15.357c2.491 0 4.73 -1 6.36 -2.631m-7.062 -7.081a1 1 0 1 0 1.402 1.427m-5.7 -.715c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086m0 10a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933m-14 -9l18 18" + } + ] + ], + "disc": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 0a5 5 0 0 1 5 -5m0 10a5 5 0 0 0 5 -5" + } + ] + ], + "discount-2-off": [ + [ + "path", + { + "d": "M9 15l3 -3m2 -2l1 -1m-5.852 .145a0.498 .498 0 0 0 .352 .855a0.5 .5 0 0 0 .35 -.142m4.298 4.287a0.498 .498 0 0 0 .352 .855a0.5 .5 0 0 0 .35 -.142m-5.963 -9.968a2.2 2.2 0 0 0 .863 -.53l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.528 .858m-.757 3.248a2.193 2.193 0 0 1 -1.555 .644h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1c0 -.604 .244 -1.152 .638 -1.55m-2.638 -2.65l18 18" + } + ] + ], + "discount-2": [ + [ + "path", + { + "d": "M9 15l6 -6m-5.5 .5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m5.5 5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-9 -7.3a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "discount-check": [ + [ + "path", + { + "d": "M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1m4 4.8l2 2l4 -4" + } + ] + ], + "discount-off": [ + [ + "path", + { + "d": "M9 15l3 -3m2 -2l1 -1m-5.852 .145a0.498 .498 0 0 0 .352 .855a0.5 .5 0 0 0 .35 -.142m4.298 4.287a0.498 .498 0 0 0 .352 .855a0.5 .5 0 0 0 .35 -.142m-9.209 -9.227a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m-4.966 -.953l18 18" + } + ] + ], + "discount": [ + [ + "path", + { + "d": "M9 15l6 -6m-5.5 .5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m5.5 5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-2 -2.5m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "divide": [ + [ + "path", + { + "d": "M12 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-6 -6l14 0" + } + ] + ], + "dna-2-off": [ + [ + "path", + { + "d": "M17 3v1c-.007 2.46 -.91 4.554 -2.705 6.281m-2.295 1.719c-3.328 1.99 -5 4.662 -5.008 8.014v1m10.008 0v-1c0 -1.44 -.315 -2.755 -.932 -3.944m-4.068 -4.07c-1.903 -1.138 -3.263 -2.485 -4.082 -4.068m.082 -3.932h9m-10 16h10m-5 -12h4m-8 8h8m-13 -13l18 18" + } + ] + ], + "dna-2": [ + [ + "path", + { + "d": "M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2 .008 -.014c-3.328 1.99 -5 4.662 -5.008 8.014v1m10.008 0v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2 .008 .014c-3.328 -1.991 -5 -4.662 -5.008 -8.014v-1m.008 1h10m-10 16h10m-9 -12h8m-8 8h8" + } + ] + ], + "dna-off": [ + [ + "path", + { + "d": "M16 12a3.898 3.898 0 0 0 -1.172 -2.828a4.027 4.027 0 0 0 -2.828 -1.172m-2.828 1.172a4 4 0 1 0 5.656 5.656m-5.656 5.657a4 4 0 1 0 -5.657 -5.657m11.313 -11.313a4 4 0 1 0 5.657 5.657m-17.485 -6.172l18 18" + } + ] + ], + "dna": [ + [ + "path", + { + "d": "M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656zm-5.656 5.657a4 4 0 1 0 -5.657 -5.657m11.313 -11.313a4 4 0 0 0 5.657 5.657" + } + ] + ], + "dog-bowl": [ + [ + "path", + { + "d": "M10 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586m-2 -2l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586m-7 5h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z" + } + ] + ], + "dog": [ + [ + "path", + { + "d": "M11 5h2m6 7c-.667 5.333 -2.333 8 -5 8h-4c-2.667 0 -4.333 -2.667 -5 -8m6 4c0 .667 .333 1 1 1s1 -.333 1 -1h-2zm1 2v2m-2 -9v.01m4 -.01v.01m-9 -7.01l6 .97l-6.238 6.688a1.021 1.021 0 0 1 -1.41 .111a0.953 .953 0 0 1 -.327 -.954l1.975 -6.815zm14 0l-6 .97l6.238 6.688c.358 .408 .989 .458 1.41 .111a0.953 .953 0 0 0 .327 -.954l-1.975 -6.815z" + } + ] + ], + "door-enter": [ + [ + "path", + { + "d": "M13 12v.01m-10 8.99h18m-16 0v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5m4 -14h-7m3 -3l-3 3l3 3" + } + ] + ], + "door-exit": [ + [ + "path", + { + "d": "M13 12v.01m-10 8.99h18m-16 0v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5m-3 -14h7m-3 -3l3 3l-3 3" + } + ] + ], + "door-off": [ + [ + "path", + { + "d": "M3 21h18m-15 0v-15m1.18 -2.825c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9m0 4v3m-15 -18l18 18" + } + ] + ], + "door": [ + [ + "path", + { + "d": "M14 12v.01m-11 8.99h18m-15 0v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16" + } + ] + ], + "dots-circle-horizontal": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 0l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "dots-diagonal-2": [ + [ + "path", + { + "d": "M7 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "dots-diagonal": [ + [ + "path", + { + "d": "M7 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "dots-vertical": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 -14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "dots": [ + [ + "path", + { + "d": "M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "download-off": [ + [ + "path", + { + "d": "M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 1.83 -1.19m-12.83 -8.81l5 5l2 -2m2 -2l1 -1m-5 -7v4m0 4v4m-9 -13l18 18" + } + ] + ], + "download": [ + [ + "path", + { + "d": "M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2m-13 -6l5 5l5 -5m-5 -7l0 12" + } + ] + ], + "drag-drop-2": [ + [ + "path", + { + "d": "M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm-4 -6l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-12 3.99l0 .01m0 3.99l0 .01m0 3.99l0 .01" + } + ] + ], + "drag-drop": [ + [ + "path", + { + "d": "M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2m2 -6l9 3l-4 2l-2 4l-3 -9m-10 -10l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-12 3.99l0 .01m0 3.99l0 .01m0 3.99l0 .01" + } + ] + ], + "drone-off": [ + [ + "path", + { + "d": "M14 14h-4v-4l-3.5 -3.5m3.457 -.55a3.503 3.503 0 0 0 -2.917 -2.91m-3.02 .989a3.5 3.5 0 0 0 1.98 5.936m8 .035l3.5 -3.5m.5 3.465a3.5 3.5 0 1 0 -3.966 -3.965m-.034 8l3.5 3.5m-3.465 .5a3.5 3.5 0 0 0 5.936 1.98m.987 -3.026a3.503 3.503 0 0 0 -2.918 -2.913m-8.04 -.041l-3.5 3.5m-.5 -3.465a3.5 3.5 0 1 0 3.966 3.965m-6.966 -15l18 18" + } + ] + ], + "drone": [ + [ + "path", + { + "d": "M10 10h4v4h-4zl-3.5 -3.5m3.46 -.5a3.5 3.5 0 1 0 -3.96 3.96m8 .04l3.5 -3.5m.5 3.46a3.5 3.5 0 1 0 -3.96 -3.96m-.04 8l3.5 3.5m-3.46 .5a3.5 3.5 0 1 0 3.96 -3.96m-8 -.04l-3.5 3.5m-.5 -3.46a3.5 3.5 0 1 0 3.96 3.96" + } + ] + ], + "drop-circle": [ + [ + "path", + { + "d": "M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575zm1.93 -3.34m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "droplet-filled-2": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm-.8 3h12m-10.695 3.695l3.695 -3.695m-.74 5.74l5.74 -5.74l-5.74 5.74z" + } + ] + ], + "droplet-filled": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z", + "fill": "currentColor" + } + ] + ], + "droplet-half-2": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm-.8 3h12" + } + ] + ], + "droplet-half-filled": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17m0 -8l3.544 -3.544m-3.544 8.844l5.558 -5.558" + } + ] + ], + "droplet-half": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8zm5.2 -8v17" + } + ] + ], + "droplet-off": [ + [ + "path", + { + "d": "M8.454 8.458l-1.653 2.545a6 6 0 0 0 10.32 6.123m.879 -3.126a5.971 5.971 0 0 0 -.803 -3l-5.197 -8l-1.968 3.03m-7.032 -3.03l18 18" + } + ] + ], + "droplet": [ + [ + "path", + { + "d": "M6.8 11a6 6 0 1 0 10.396 0l-5.197 -8l-5.2 8z" + } + ] + ], + "e-passport": [ + [ + "path", + { + "d": "M2 5m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm10 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0h-7m13 0h7" + } + ] + ], + "ear-off": [ + [ + "path", + { + "d": "M6 10c0 -1.146 .277 -2.245 .78 -3.219m1.792 -2.208a7 7 0 0 1 10.428 9.027a10 10 0 0 1 -.633 .762m-2.045 1.96a8 8 0 0 0 -1.322 2.278a4.5 4.5 0 0 1 -6.8 1.4m3.22 -12.586a3 3 0 0 1 4.131 4.13m-12.551 -8.544l18 18" + } + ] + ], + "ear": [ + [ + "path", + { + "d": "M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4m1.8 -10a3 3 0 1 1 5 2.2" + } + ] + ], + "ease-in-control-point": [ + [ + "path", + { + "d": "M3 19c8 0 18 -16 18 -16m-4 16a2 2 0 1 0 4 0a2 2 0 0 0 -4 0zh-2m-3 0h-2" + } + ] + ], + "ease-in-out-control-points": [ + [ + "path", + { + "d": "M17 20a2 2 0 1 0 4 0a2 2 0 0 0 -4 0zh-2m-8 -16a2 2 0 1 1 -4 0a2 2 0 0 1 4 0zh2m5 0h-2m0 16h-2m-7 0c8 0 10 -16 18 -16" + } + ] + ], + "ease-in-out": [ + [ + "path", + { + "d": "M3 20c8 0 10 -16 18 -16" + } + ] + ], + "ease-in": [ + [ + "path", + { + "d": "M3 20c8 0 18 -16 18 -16" + } + ] + ], + "ease-out-control-point": [ + [ + "path", + { + "d": "M3 21s10 -16 18 -16m-14 0a2 2 0 1 1 -4 0a2 2 0 0 1 4 0zh2m5 0h-2" + } + ] + ], + "ease-out": [ + [ + "path", + { + "d": "M3 20s10 -16 18 -16" + } + ] + ], + "edit-circle-off": [ + [ + "path", + { + "d": "M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896m3.498 -3.511l3 3m-11.524 -.529a7 7 0 0 0 2.524 13.529a7 7 0 0 0 6.53 -4.474m-13.53 -13.526l18 18" + } + ] + ], + "edit-circle": [ + [ + "path", + { + "d": "M12 15l8.385 -8.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3zm4 -10l3 3m-10 -.93a7 7 0 0 0 1 13.93a7 7 0 0 0 6.929 -6" + } + ] + ], + "edit-off": [ + [ + "path", + { + "d": "M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1m-6.493 -6.502l-1.507 1.502v3h3l1.493 -1.498m2 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896m3.498 -3.511l3 3m-16 -5l18 18" + } + ] + ], + "edit": [ + [ + "path", + { + "d": "M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1m3.385 -10.415a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415zm-4.385 -1.585l3 3" + } + ] + ], + "egg-cracked": [ + [ + "path", + { + "d": "M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083zm-7 -11.083l-1.5 5l3.5 2.5l-2 3.5" + } + ] + ], + "egg-filled": [ + [ + "path", + { + "d": "M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z", + "fill": "currentColor" + } + ] + ], + "egg-fried": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5 -9a5 5 0 0 1 4.872 6.13a3 3 0 0 1 .178 5.681a3 3 0 1 1 -4.684 3.626a5 5 0 1 1 -8.662 -5a5 5 0 1 1 4.645 -8.856a4.982 4.982 0 0 1 3.651 -1.585z" + } + ] + ], + "egg-off": [ + [ + "path", + { + "d": "M17.927 17.934c-1.211 1.858 -3.351 2.953 -5.927 3.066c-4.2 0 -7 -2.763 -7 -6.917c0 -2.568 .753 -5.14 1.91 -7.158m1.732 -2.297c1.034 -1.02 2.196 -1.63 3.358 -1.628c3.5 .007 7 5.545 7 11.083c0 .298 -.015 .587 -.045 .868m-15.955 -11.951l18 18" + } + ] + ], + "egg": [ + [ + "path", + { + "d": "M19 14.083c0 4.154 -2.966 6.74 -7 6.917c-4.2 0 -7 -2.763 -7 -6.917c0 -5.538 3.5 -11.09 7 -11.083c3.5 .007 7 5.545 7 11.083z" + } + ] + ], + "eggs": [ + [ + "path", + { + "d": "M13 22c-3 0 -4.868 -2.118 -5 -5c0 -3 2 -5 5 -5c4 0 8.01 2.5 8 5c0 2.5 -4 5 -8 5zm-5 -4c-3.03 -.196 -5 -2.309 -5 -5.38c0 -4.307 2.75 -8.625 5.5 -8.62c2.614 0 5.248 3.915 5.5 8" + } + ] + ], + "elevator-off": [ + [ + "path", + { + "d": "M8 4h10a1 1 0 0 1 1 1v10m0 4a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-14m7 3l2 2m-4 4l2 2l2 -2m-11 -11l18 18" + } + ] + ], + "elevator": [ + [ + "path", + { + "d": "M5 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1zm5 5l2 -2l2 2m-4 4l2 2l2 -2" + } + ] + ], + "emergency-bed": [ + [ + "path", + { + "d": "M16 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-2 -10l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5m-10 -6h4m-2 -2v4m0 4v2l-2.5 2.5m5 0l-2.5 -2.5" + } + ] + ], + "empathize-off": [ + [ + "path", + { + "d": "M12 8a2.5 2.5 0 1 0 -2.5 -2.5m2.817 6.815l-.317 .317l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096l4.689 -4.69m1.324 -2.673a3.087 3.087 0 0 0 -3.021 -3.018m-11.992 -7.987l18 18" + } + ] + ], + "empathize": [ + [ + "path", + { + "d": "M12 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m2.5 15.868l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z" + } + ] + ], + "emphasis": [ + [ + "path", + { + "d": "M16 5h-8v10h8m-1 -5h-7m-2 10l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01" + } + ] + ], + "engine-off": [ + [ + "path", + { + "d": "M3 10v6m9 -11v3m-2 -3h4m-9 8h-2m13 3h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6m-18 -14l18 18" + } + ] + ], + "engine": [ + [ + "path", + { + "d": "M3 10v6m9 -11v3m-2 -3h4m-9 8h-2m3 -3h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z" + } + ] + ], + "equal-double": [ + [ + "path", + { + "d": "M3 10h7m-7 4h7m4 -4h7m-7 4h7" + } + ] + ], + "equal-not": [ + [ + "path", + { + "d": "M5 10h14m-14 4h14m-14 5l14 -14" + } + ] + ], + "equal": [ + [ + "path", + { + "d": "M5 10h14m-14 4h14" + } + ] + ], + "eraser-off": [ + [ + "path", + { + "d": "M3 3l18 18m-2 -1h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l5 -4.993m2.009 -2.01l3 -3a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41c-1.417 1.431 -2.406 2.432 -2.97 3m-2.02 2.043l-4.211 4.256m6.5 -6.7l-6.3 -6.3" + } + ] + ], + "eraser": [ + [ + "path", + { + "d": "M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3m6.5 -6.7l-6.3 -6.3" + } + ] + ], + "error-404-off": [ + [ + "path", + { + "d": "M3 7v4a1 1 0 0 0 1 1h3m0 -5v10m3 -7v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2m0 -4v-2a1 1 0 0 0 -1 -1h-2m6 0v4a1 1 0 0 0 1 1h3m0 -5v10m-18 -14l18 18" + } + ] + ], + "error-404": [ + [ + "path", + { + "d": "M3 7v4a1 1 0 0 0 1 1h3m0 -5v10m3 -9v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1zm7 -1v4a1 1 0 0 0 1 1h3m0 -5v10" + } + ] + ], + "exchange-off": [ + [ + "path", + { + "d": "M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2v5c0 .594 -.104 1.164 -.294 1.692m-1.692 2.298a4.978 4.978 0 0 1 -3.014 1.01h-3l3 -3m0 6l-3 -3m-6 -2v-5c0 -1.632 .782 -3.082 1.992 -4m3.008 -1h3l-3 -3m1.501 4.499l1.499 -1.499m-10 -3l18 18" + } + ] + ], + "exchange": [ + [ + "path", + { + "d": "M5 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2v5a5 5 0 0 1 -5 5h-3l3 -3m0 6l-3 -3m-6 -2v-5a5 5 0 0 1 5 -5h3l-3 -3m0 6l3 -3" + } + ] + ], + "exclamation-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -3v4m0 3v.01" + } + ] + ], + "exclamation-mark-off": [ + [ + "path", + { + "d": "M12 19v.01m0 -4.01v-3m0 -4v-3m-9 -2l18 18" + } + ] + ], + "exclamation-mark": [ + [ + "path", + { + "d": "M12 19v.01m0 -4.01v-10" + } + ] + ], + "explicit-off": [ + [ + "path", + { + "d": "M14 8h-2m-2 2v6h4m-6 -12h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m7.424 7.405h-2m-7 -9l18 18" + } + ] + ], + "explicit": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm10 3h-4v8h4m0 -4h-4" + } + ] + ], + "exposure-0": [ + [ + "path", + { + "d": "M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z" + } + ] + ], + "exposure-minus-1": [ + [ + "path", + { + "d": "M3 12h6m9 7v-14l-4 4" + } + ] + ], + "exposure-minus-2": [ + [ + "path", + { + "d": "M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8m-17 -7h6" + } + ] + ], + "exposure-off": [ + [ + "path", + { + "d": "M4.6 19.4l7.4 -7.4m2 -2l5.4 -5.4m-11.4 -.6h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m2.424 4.405h2v2m4 5h3m-13 -13l18 18" + } + ] + ], + "exposure-plus-1": [ + [ + "path", + { + "d": "M3 12h6m-3 -3v6m12 4v-14l-4 4" + } + ] + ], + "exposure-plus-2": [ + [ + "path", + { + "d": "M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8m-17 -7h6m-3 -3v6" + } + ] + ], + "exposure": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm.6 13.4l14.8 -14.8m-12.4 4.4h4m-2 -2v4m4 5l4 0" + } + ] + ], + "external-link-off": [ + [ + "path", + { + "d": "M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1m-7 -3l2 -2m2.007 -2.007l6 -6m-5 0h5v5m-17 -6l18 18" + } + ] + ], + "external-link": [ + [ + "path", + { + "d": "M11 7h-5a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-5m-7 1l10 -10m-5 0l5 0l0 5" + } + ] + ], + "eye-check": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 7c-4 0 -7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7c-.42 .736 -.858 1.414 -1.311 2.033m-5.689 4.967l2 2l4 -4" + } + ] + ], + "eye-filled": [ + [ + "path", + { + "d": "M22 12c-2.667 4.667 -6 7 -10 7s-7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7m-13 0a3 3 0 0 0 6 0a3 3 0 0 0 -6 0", + "fill": "currentColor" + } + ] + ], + "eye-off": [ + [ + "path", + { + "d": "M9.88 9.878a3 3 0 1 0 4.243 4.242m.581 -3.42a3.012 3.012 0 0 0 -1.45 -1.426m-3.877 -3.913a9.469 9.469 0 0 1 2.623 -.361c4 0 7.333 2.333 10 7c-.778 1.362 -1.613 2.524 -2.504 3.489m-2.138 1.859c-1.629 1.101 -3.415 1.652 -5.358 1.652c-4 0 -7.333 -2.333 -10 -7c1.374 -2.404 2.924 -4.189 4.652 -5.354m-3.652 -3.646l18 18" + } + ] + ], + "eye-table": [ + [ + "path", + { + "d": "M8 18h-.011m4.011 0h-.011m4.011 0h-.011m-11.992 -15h16m-15 0v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17m-5 4h-4m-1 8h1m4 0h1m-3 -4v-4" + } + ] + ], + "eye": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0c-2.667 4.667 -6 7 -10 7s-7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7" + } + ] + ], + "eyeglass-2": [ + [ + "path", + { + "d": "M8 4h-2l-3 10v2.5m13 -12.5h2l3 10v2.5m-11 -.5l4 0m3.5 .5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m-7.5 0m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0" + } + ] + ], + "eyeglass-off": [ + [ + "path", + { + "d": "M5.536 5.546l-2.536 8.454m13 -10h2l3 10m-11 2h4m5.426 3.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463m-10.97 -.463a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5m-7 -13.5l18 18" + } + ] + ], + "eyeglass": [ + [ + "path", + { + "d": "M8 4h-2l-3 10m13 -10h2l3 10m-11 2l4 0m7 .5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5m-11 0a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5" + } + ] + ], + "face-id-error": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-11 -6h.01m5.99 0h.01m-5.51 5.05a3.5 3.5 0 0 1 5 0" + } + ] + ], + "face-id": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-11 -6l.01 0m5.99 0l.01 0m-5.51 5a3.5 3.5 0 0 0 5 0" + } + ] + ], + "face-mask-off": [ + [ + "path", + { + "d": "M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222m14 5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222m-10 .5h1m4 0h1m-6 4h5m5 1v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4m-14.449 -14.443l18 18" + } + ] + ], + "face-mask": [ + [ + "path", + { + "d": "M5 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222m14 5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222m-10 .5h6m-6 4h6m-2.45 4.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z" + } + ] + ], + "fall": [ + [ + "path", + { + "d": "M11 21l1 -5l-1 -4l-3 -4h4l3 -3m-9 11l-1 -4l3 -4m-2 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8.5 7h2.5l4 2" + } + ] + ], + "feather-off": [ + [ + "path", + { + "d": "M4 20l8 -8m2 -7v5h5m-10 1v4h4m-7 -2v5h5m-5 -5l3.502 -3.502m2.023 -2.023l2.475 -2.475m5 5c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l3.499 -3.499m2.008 -2.008l2.493 -2.493m-16 -7l18 18" + } + ] + ], + "feather": [ + [ + "path", + { + "d": "M4 20l10 -10m0 -5v5h5m-9 -1v5h5m-9 -1v5h5m-5 -5l4 -4l4 -4m5 5c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1m-3 13l4 -4l4 -4" + } + ] + ], + "fence-off": [ + [ + "path", + { + "d": "M12 12h-8v4h12m4 0v-4h-4m-10 4v4h4v-4m0 -4v-2m0 -4l-2 -2m-2 2v6m8 4v4h4v-2m0 -6v-6l-2 -2l-2 2v4m-11 -7l18 18" + } + ] + ], + "fence": [ + [ + "path", + { + "d": "M4 12v4h16v-4zm2 4v4h4v-4m0 -4v-6l-2 -2l-2 2v6m8 4v4h4v-4m0 -4v-6l-2 -2l-2 2v6" + } + ] + ], + "fidget-spinner": [ + [ + "path", + { + "d": "M10 17a3 3 0 1 1 -1.543 -2.623l2.087 -3.754a3 3 0 0 1 1.456 -5.623a3 3 0 0 1 1.457 5.623l2.087 3.754a3 3 0 1 1 -1.538 2.8l0 -.177h-4zm7 0v.01m-10 -.01v.01m5 -9.01v.01" + } + ] + ], + "file-3d": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -7.5l4 -1.5m-8 -.154l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846zm0 .154v4.2l4 1.8" + } + ] + ], + "file-alert": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -4l.01 0m-.01 -6l0 3" + } + ] + ], + "file-analytics": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -4l0 -5m3 5l0 -1m3 1l0 -3" + } + ] + ], + "file-arrow-left": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-2 -6h-6m2.5 2.5l-2.5 -2.5l2.5 -2.5" + } + ] + ], + "file-arrow-right": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -6h6m-2.5 2.5l2.5 -2.5l-2.5 -2.5" + } + ] + ], + "file-barcode": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-9 -8h1v3h-1zm4 0v3m3 -3h1v3h-1z" + } + ] + ], + "file-broken": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-14 -1v-2a2 2 0 0 1 2 -2h7l5 5v2m0 9a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2m0 -3h.01m-.01 -3h.01m-.01 -3h.01m13.99 3h.01m-.01 3h.01" + } + ] + ], + "file-certificate": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-14 0v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5m-6 -7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1.5 3l-1.5 5l3 -1.5l3 1.5l-1.5 -5" + } + ] + ], + "file-chart": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -11v4h4m-4 0m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" + } + ] + ], + "file-check": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -6l2 2l4 -4" + } + ] + ], + "file-code-2": [ + [ + "path", + { + "d": "M10 12h-1v5h1m4 -5h1v5h-1m0 -14v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" + } + ] + ], + "file-code": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7 -8l-1 2l1 2m4 -4l1 2l-1 2" + } + ] + ], + "file-database": [ + [ + "path", + { + "d": "M12 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0m0 -.25v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75m-2 -9.5v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" + } + ] + ], + "file-delta": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -4h6l-3 -6z" + } + ] + ], + "file-description": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -4h6m-6 -4h6" + } + ] + ], + "file-diff": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -11l0 4m-2 -2l4 0m-4 5l4 0" + } + ] + ], + "file-digit": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-10 4m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1zm8 8h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-2 -9v5" + } + ] + ], + "file-dislike": [ + [ + "path", + { + "d": "M3 14m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1zm3 0a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4zm8 -12v4a1 1 0 0 0 1 1h4m-14 3v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5" + } + ] + ], + "file-dollar": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-3 -10h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1m0 -8v1" + } + ] + ], + "file-dots": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -7v.01m3 -.01v.01m3 -.01v.01" + } + ] + ], + "file-download": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -4v-6m-2.5 3.5l2.5 2.5l2.5 -2.5" + } + ] + ], + "file-euro": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -7h-3m5 -2.828a3 3 0 1 0 0 5.656" + } + ] + ], + "file-export": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-7.5 13h-4.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v5m-5 6h7m-3 -3l3 3l-3 3" + } + ] + ], + "file-function": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-6.5 -4h.333c.474 0 .87 -.323 .916 -.746l.502 -4.508c.047 -.423 .443 -.746 .916 -.746h.333m-3 3h3" + } + ] + ], + "file-horizontal": [ + [ + "path", + { + "d": "M16 5v4a1 1 0 0 0 1 1h4m-18 -3v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-7l-5 -5h-11a2 2 0 0 0 -2 2z" + } + ] + ], + "file-import": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-14 5v-8a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5.5m-9.5 -2h7m-3 -3l3 3l-3 3" + } + ] + ], + "file-infinity": [ + [ + "path", + { + "d": "M15.536 17.586a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419m-2.92 0l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0m-4.464 -14.586v4a1 1 0 0 0 1 1h4m-9.5 13h-2.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v6" + } + ] + ], + "file-info": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-6 -7h1v4h1m-1 -7h.01" + } + ] + ], + "file-invoice": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -14l1 0m-1 6l6 0m-2 4l2 0" + } + ] + ], + "file-lambda": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7 -4l2 -3m3 3c-2.5 0 -2.5 -6 -5 -6" + } + ] + ], + "file-like": [ + [ + "path", + { + "d": "M3 16m0 1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1zm3 3a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4zm8 -17v4a1 1 0 0 0 1 1h4m-14 4.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3" + } + ] + ], + "file-minus": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -7l6 0" + } + ] + ], + "file-music": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m2 0l0 -5l2 1" + } + ] + ], + "file-off": [ + [ + "path", + { + "d": "M3 3l18 18m-14 -18h7l5 5v7m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14" + } + ] + ], + "file-orientation": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-9 13h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m-6 10h5a2 2 0 0 0 2 -2v-5m-5 9l-2 -2l2 -2m3 -3l2 -2l2 2" + } + ] + ], + "file-pencil": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7 -3l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z" + } + ] + ], + "file-percent": [ + [ + "path", + { + "d": "M10 17l4 -4m0 -10v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7 -8h.01m3.99 4h.01" + } + ] + ], + "file-phone": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -9a0.5 .5 0 0 0 1 0v-1a0.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a0.5 .5 0 0 0 0 -1h-1a0.5 .5 0 0 0 0 1" + } + ] + ], + "file-plus": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -10l0 6m-3 -3l6 0" + } + ] + ], + "file-power": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -10l-2 3h4l-2 3" + } + ] + ], + "file-report": [ + [ + "path", + { + "d": "M17 17m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 -4v4h4m-9 -14v4a1 1 0 0 0 1 1h4m-5.5 13h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4" + } + ] + ], + "file-rss": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -4a3 3 0 0 0 -3 -3m6 3a6 6 0 0 0 -6 -6m0 6h.01" + } + ] + ], + "file-scissors": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-2 -4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0l6 -6m0 6l-6 -6" + } + ] + ], + "file-search": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-7 13h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5m-2.5 5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "file-settings": [ + [ + "path", + { + "d": "M12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3.5v1.5m0 4v1.5m3.031 -5.25l-1.299 .75m-3.464 2l-1.3 .75m6.032 .053l-1.285 -.773m-3.43 -2.06l-1.285 -.773m5 -9.197v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" + } + ] + ], + "file-shredder": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-14 4v-7a2 2 0 0 1 2 -2h7l5 5v4m-16 0l18 0m-15 4l0 2m4 -2l0 6m4 -6l0 2m4 -2l0 4" + } + ] + ], + "file-signal": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -7v.01m-2.475 -2.485a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95" + } + ] + ], + "file-spreadsheet": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-9 -10h8v7h-8zm0 4h8m-5 -4v7" + } + ] + ], + "file-stack": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-14 4v-7a2 2 0 0 1 2 -2h7l5 5v4m-14 9h14m-14 -3h14m-14 -3h14" + } + ] + ], + "file-star": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5.2 -4.183l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" + } + ] + ], + "file-symlink": [ + [ + "path", + { + "d": "M4 21v-4a3 3 0 0 1 3 -3h5m-3 3l3 -3l-3 -3m5 -8v4a1 1 0 0 0 1 1h4m-14 3v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5" + } + ] + ], + "file-text": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-8 -12l1 0m-1 4l6 0m-6 4l6 0" + } + ] + ], + "file-time": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 -1.504v1.504l1 1" + } + ] + ], + "file-typography": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-6 -3h2m-1 0v-7m-3 1v-1h6v1" + } + ] + ], + "file-unknown": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -4v.01m0 -3.01a1.5 1.5 0 1 0 -1.14 -2.474" + } + ] + ], + "file-upload": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-5 -10v6m-2.5 -3.5l2.5 -2.5l2.5 2.5" + } + ] + ], + "file-vector": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-9.5 8.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m6.5 -4m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m4 8.5h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7.5 -6a2.5 2.5 0 0 1 2.5 -2.5h1" + } + ] + ], + "file-x": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2zm-7 -9l4 4m0 -4l-4 4" + } + ] + ], + "file-zip": [ + [ + "path", + { + "d": "M6 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1m-5 -4a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2zm0 -12l-1 0m3 2l-1 0m-1 2l-1 0m3 2l-1 0m-1 2l-1 0m3 2l-1 0" + } + ] + ], + "file": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m-2 13h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" + } + ] + ], + "files-off": [ + [ + "path", + { + "d": "M15 3v4a1 1 0 0 0 1 1h4m-3 9h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823m-3.823 1.177v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m-4 -4l18 18" + } + ] + ], + "files": [ + [ + "path", + { + "d": "M15 3v4a1 1 0 0 0 1 1h4m-2 9h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2zm-2 0v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" + } + ] + ], + "filter-off": [ + [ + "path", + { + "d": "M3 3l18 18m-12 -16h9.5a1 1 0 0 1 .5 1.5l-4.049 4.454m-.951 3.046v5l-4 -3v-4l-5 -5.5a1 1 0 0 1 .18 -1.316" + } + ] + ], + "filter": [ + [ + "path", + { + "d": "M5.5 5h13a1 1 0 0 1 .5 1.5l-5 5.5l0 7l-4 -3l0 -4l-5 -5.5a1 1 0 0 1 .5 -1.5" + } + ] + ], + "fingerprint-off": [ + [ + "path", + { + "d": "M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3m-12.8 -5c0 -.848 .264 -1.634 .713 -2.28m2.4 -1.621a4 4 0 0 1 4.887 3.901l0 1m-4 0v1a14 14 0 0 0 2.5 8m-6.5 -6a18 18 0 0 0 1.8 6m-4.9 -2a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018m-13 -1.05l18 18" + } + ] + ], + "fingerprint": [ + [ + "path", + { + "d": "M18.9 7a8 8 0 0 1 1.1 5v1a6 6 0 0 0 .8 3m-12.8 -5a4 4 0 0 1 8 0v1a10 10 0 0 0 2 6m-6 -7v2a14 14 0 0 0 2.5 8m-6.5 -6a18 18 0 0 0 1.8 6m-4.9 -2a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 12 -6.95" + } + ] + ], + "fire-hydrant-off": [ + [ + "path", + { + "d": "M5 21h14m-2 0v-4m2 -2v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -8.533 -3.538m-1.387 2.638a5.03 5.03 0 0 0 -.08 .9v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5m5 -9a2 2 0 1 0 2 2m-8 -6h2m4 0h6m-15 -5l18 18" + } + ] + ], + "fire-hydrant": [ + [ + "path", + { + "d": "M5 21h14m-2 0v-5h1a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-1v-4a5 5 0 0 0 -10 0v4h-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h1v5m5 -7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4 -6h12" + } + ] + ], + "firetruck": [ + [ + "path", + { + "d": "M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 1h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5m-9 6v-11h3m-12 10l0 -5l9 0m-9 -3l18 -6m-15 9l0 -4" + } + ] + ], + "first-aid-kit-off": [ + [ + "path", + { + "d": "M8.595 4.577a2 2 0 0 1 1.405 -.577h4a2 2 0 0 1 2 2v2m-4 0h6a2 2 0 0 1 2 2v6m-.576 3.405a2 2 0 0 1 -1.424 .595h-12a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m2 6h4m-2 -2v4m-9 -13l18 18" + } + ] + ], + "first-aid-kit": [ + [ + "path", + { + "d": "M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2m-12 0m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 4h4m-2 -2v4" + } + ] + ], + "fish-bone": [ + [ + "path", + { + "d": "M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565m-14.688 2.067a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498m16 -3.506v.01m-13.578 1h10.578m-8 -2v4m4 -6v8" + } + ] + ], + "fish-christianity": [ + [ + "path", + { + "d": "M22 7s-5.646 10 -12.308 10c-3.226 .025 -6.194 -1.905 -7.692 -5c1.498 -3.095 4.466 -5.025 7.692 -5c6.662 0 12.308 10 12.308 10" + } + ] + ], + "fish-hook-off": [ + [ + "path", + { + "d": "M16 9v3m-.085 3.924a5 5 0 0 1 -9.915 -.924v-4l3 3m7 -7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2v-2m-13 0l18 18" + } + ] + ], + "fish-hook": [ + [ + "path", + { + "d": "M16 9v6a5 5 0 0 1 -10 0v-4l3 3m7 -7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2v-2" + } + ] + ], + "fish-off": [ + [ + "path", + { + "d": "M16.69 7.44a6.973 6.973 0 0 0 -1.63 3.635m-13.06 -1.571c5.307 5.948 10.293 8.57 14.597 7.1m2.583 -1.449c.988 -.788 1.93 -1.836 2.82 -3.153c-3 -4.443 -6.596 -5.812 -10.564 -4.548m-2.764 1.266c-2.145 1.266 -4.378 3.215 -6.672 5.786m16 -3.506v.01m-6.847 .159c-.287 .777 -.171 1.554 .347 2.331m-8.5 -10.5l18 18" + } + ] + ], + "fish": [ + [ + "path", + { + "d": "M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56c0 1.747 .64 3.345 1.699 4.571m-14.699 -7.067c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504m16 -3.506v.01m-6.5 -.51c-.667 1 -.667 2 0 3" + } + ] + ], + "flag-2-off": [ + [ + "path", + { + "d": "M5 14h9m4 0h1v-9h-10m-4 0v16m-2 -18l18 18" + } + ] + ], + "flag-2": [ + [ + "path", + { + "d": "M5 14h14v-9h-14v16" + } + ] + ], + "flag-3": [ + [ + "path", + { + "d": "M5 14h14l-4.5 -4.5l4.5 -4.5h-14v16" + } + ] + ], + "flag-filled": [ + [ + "path", + { + "d": "M5 21v-16a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1 -7 0a5 5 0 0 0 -7 0", + "fill": "currentColor" + } + ] + ], + "flag-off": [ + [ + "path", + { + "d": "M5 5v16m14 -16v9m-11.359 -10.355a5 5 0 0 1 4.359 1.355a5 5 0 0 0 7 0m-14 9a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463m-16 -11l18 18" + } + ] + ], + "flag": [ + [ + "path", + { + "d": "M5 5l0 16m14 -16l0 9m-14 -9a5 5 0 0 1 7 0a5 5 0 0 0 7 0m-14 9a5 5 0 0 1 7 0a5 5 0 0 0 7 0" + } + ] + ], + "flame-off": [ + [ + "path", + { + "d": "M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527m-7.535 -3.527l18 18" + } + ] + ], + "flame": [ + [ + "path", + { + "d": "M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z" + } + ] + ], + "flare": [ + [ + "path", + { + "d": "M12 3l3 6l6 3l-6 3l-3 6l-3 -6l-6 -3l6 -3z" + } + ] + ], + "flask-2-off": [ + [ + "path", + { + "d": "M6.1 15h8.9m2.742 2.741a6 6 0 0 1 -2.424 3.259h-6.635a6 6 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6 6 0 0 1 2.801 2.817m-8.414 -10.415h6m-12 0l18 18" + } + ] + ], + "flask-2": [ + [ + "path", + { + "d": "M6.1 15h11.8m-3.9 -12v7.342a6 6 0 0 1 1.318 10.658h-6.635a6 6 0 0 1 1.317 -10.66v-7.34h4zm-5 0h6" + } + ] + ], + "flask-off": [ + [ + "path", + { + "d": "M9 3h6m-2 6h1m-4 -6v3m-.268 3.736l-3.732 10.264a0.7 .7 0 0 0 .5 1h11a0.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6m-11 0l18 18" + } + ] + ], + "flask": [ + [ + "path", + { + "d": "M9 3l6 0m-5 6l4 0m-4 -6v6l-4 11a0.7 .7 0 0 0 .5 1h11a0.7 .7 0 0 0 .5 -1l-4 -11v-6" + } + ] + ], + "flip-flops": [ + [ + "path", + { + "d": "M18 4c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.743 -3.985a4.15 4.15 0 0 1 .25 -.007zm-3.5 10c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5m-3.5 2v1m-12 -13c2.21 0 4 1.682 4 3.758c0 .078 0 .156 -.008 .234l-.6 9.014c-.11 1.683 -1.596 3 -3.392 3s-3.28 -1.311 -3.392 -3l-.6 -9.014c-.138 -2.071 1.538 -3.855 3.742 -3.985c.084 0 .167 -.007 .25 -.007zm-3.5 10c1 -3.333 2.167 -5 3.5 -5c1.333 0 2.5 1.667 3.5 5m-3.5 2v1" + } + ] + ], + "flip-horizontal": [ + [ + "path", + { + "d": "M3 12l18 0m-14 4l10 0l-10 5l0 -5m0 -8l10 0l-10 -5l0 5" + } + ] + ], + "flip-vertical": [ + [ + "path", + { + "d": "M12 3l0 18m4 -14l0 10l5 0l-5 -10m-8 0l0 10l-5 0l5 -10" + } + ] + ], + "float-center": [ + [ + "path", + { + "d": "M9 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-5 1l1 0m-1 4l1 0m14 -4l1 0m-1 4l1 0m-16 4l16 0m-16 4l16 0" + } + ] + ], + "float-left": [ + [ + "path", + { + "d": "M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 1l6 0m-6 4l6 0m-16 4l16 0m-16 4l16 0" + } + ] + ], + "float-none": [ + [ + "path", + { + "d": "M4 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm0 9l16 0m-16 4l16 0" + } + ] + ], + "float-right": [ + [ + "path", + { + "d": "M14 5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-10 1l6 0m-6 4l6 0m-6 4l16 0m-16 4l16 0" + } + ] + ], + "flower-off": [ + [ + "path", + { + "d": "M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409m-4.285 -4.288a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467m-2.534 -2.533l18 18" + } + ] + ], + "flower": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -10a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z" + } + ] + ], + "focus-2": [ + [ + "path", + { + "d": "M12 12m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 0m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m7 -9l0 2m-9 7l2 0m7 7l0 2m7 -9l2 0" + } + ] + ], + "focus-centered": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 -4v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2" + } + ] + ], + "focus": [ + [ + "path", + { + "d": "M12 12m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "fold-down": [ + [ + "path", + { + "d": "M12 11v8l3 -3m-6 0l3 3m-3 -12l1 0m4 0l1 0m4 0l1 0m-16 0l1 0" + } + ] + ], + "fold-up": [ + [ + "path", + { + "d": "M12 13v-8l-3 3m6 0l-3 -3m-3 12l1 0m4 0l1 0m4 0l1 0m-16 0l1 0" + } + ] + ], + "fold": [ + [ + "path", + { + "d": "M12 3v6l3 -3m-6 0l3 3m0 12v-6l3 3m-6 0l3 -3m-8 -3l1 0m4 0l1 0m4 0l1 0m4 0l1 0" + } + ] + ], + "folder-minus": [ + [ + "path", + { + "d": "M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2m4 9l6 0" + } + ] + ], + "folder-off": [ + [ + "path", + { + "d": "M3 3l18 18m-2 -2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 1.172 -1.821m3.828 -.179h1l3 3h7a2 2 0 0 1 2 2v8" + } + ] + ], + "folder-plus": [ + [ + "path", + { + "d": "M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2m7 6l0 6m-3 -3l6 0" + } + ] + ], + "folder-x": [ + [ + "path", + { + "d": "M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2m5 7l4 4m0 -4l-4 4" + } + ] + ], + "folder": [ + [ + "path", + { + "d": "M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2" + } + ] + ], + "folders-off": [ + [ + "path", + { + "d": "M17 17h-8a2 2 0 0 1 -2 -2v-8m1.177 -2.823c.251 -.114 .53 -.177 .823 -.177h3l2 2h5a2 2 0 0 1 2 2v7c0 .55 -.223 1.05 -.583 1.411m-3.417 .589v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2m-4 -5l18 18" + } + ] + ], + "folders": [ + [ + "path", + { + "d": "M9 4h3l2 2h5a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2m8 13v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2" + } + ] + ], + "forbid-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 3l6 -6" + } + ] + ], + "forbid": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3l6 6" + } + ] + ], + "forklift": [ + [ + "path", + { + "d": "M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m11 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 0l5 0m-9 0v-6h13v6m-11 -6v-4h4m0 4v-6h4l3 6m6 4h-3v-10m-3 8l3 0" + } + ] + ], + "forms": [ + [ + "path", + { + "d": "M12 3a3 3 0 0 0 -3 3v12a3 3 0 0 0 3 3m-6 -18a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3m7 -14h7a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-7m-8 -10h-1a1 1 0 0 0 -1 1v8a1 1 0 0 0 1 1h1m12 -5h.01m-4.01 0h.01" + } + ] + ], + "fountain-off": [ + [ + "path", + { + "d": "M9 16v-5a2 2 0 1 0 -4 0m10 5v-1m0 -4a2 2 0 1 1 4 0m-7 5v-4m0 -4v-2a3 3 0 0 1 6 0m-10.549 -2.57a3 3 0 0 1 4.549 2.57m8 10h1v1m-.871 3.114a2.99 2.99 0 0 1 -2.129 .886h-12a3 3 0 0 1 -3 -3v-2h13m-13 -13l18 18" + } + ] + ], + "fountain": [ + [ + "path", + { + "d": "M9 16v-5a2 2 0 1 0 -4 0m10 5v-5a2 2 0 1 1 4 0m-7 5v-10a3 3 0 0 1 6 0m-12 0a3 3 0 0 1 6 0m-9 10h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z" + } + ] + ], + "frame-off": [ + [ + "path", + { + "d": "M4 7h3m4 0h9m-16 10h13m-10 -10v13m10 -16v9m0 4v3m-14 -17l18 18" + } + ] + ], + "frame": [ + [ + "path", + { + "d": "M4 7l16 0m-16 10l16 0m-13 -13l0 16m10 -16l0 16" + } + ] + ], + "free-rights": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10.867 -2.25c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75m1.867 -7.248v2m0 6v2m-6 -11l1.5 1.5m9 9l1.5 1.5" + } + ] + ], + "fridge-off": [ + [ + "path", + { + "d": "M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14m0 5h5m4 0h5m-10 3v3m-6 -13l18 18" + } + ] + ], + "fridge": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm0 5h14m-10 3v3m0 -10v1" + } + ] + ], + "friends-off": [ + [ + "path", + { + "d": "M5 5a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2m-2 19v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5m8 -17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 17v-4h-2l1.254 -3.763m1.036 -2.942a1 1 0 0 1 .71 -.295h2a1 1 0 0 1 1 1l1.503 4.508m-1.503 2.492v3m-16 -19l18 18" + } + ] + ], + "friends": [ + [ + "path", + { + "d": "M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 17v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5m8 -17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 17v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4" + } + ] + ], + "function-off": [ + [ + "path", + { + "d": "M9 15.5v.25c0 .69 .56 1.25 1.25 1.25a1.38 1.38 0 0 0 1.374 -1.244l.376 -3.756m.363 -3.63l.013 -.126a1.38 1.38 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25m-7 -4.5h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m4.424 7.405h3m-9 -9l18 18" + } + ] + ], + "function": [ + [ + "path", + { + "d": "M4 4m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667zm5 8.833v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25m-6 3.5h6" + } + ] + ], + "garden-cart-off": [ + [ + "path", + { + "d": "M15.733 15.732a2.5 2.5 0 1 0 3.544 3.527m-13.277 -11.259v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055m-5.5 -6.555h2m4 0h9l-3 6.01m-3.319 .693l-4.276 -.45a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323m1 -1l18 18" + } + ] + ], + "garden-cart": [ + [ + "path", + { + "d": "M17.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m-9 -9.5v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055m-5.5 -6.555h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323" + } + ] + ], + "gas-station-off": [ + [ + "path", + { + "d": "M15 11a2 2 0 0 1 2 2m3 3v-7l-3 -3m-13 14v-14c0 -.548 .22 -1.044 .577 -1.405m3.423 -.595h4a2 2 0 0 1 2 2v4m0 4v6m-11 0h12m3 -13v1a1 1 0 0 0 1 1h1m-16 2h7m-8 -8l18 18" + } + ] + ], + "gas-station": [ + [ + "path", + { + "d": "M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0v-7l-3 -3m-13 14v-14a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v14m-11 0l12 0m3 -13v1a1 1 0 0 0 1 1h1m-16 2l10 0" + } + ] + ], + "gauge-off": [ + [ + "path", + { + "d": "M20.038 16.052a9 9 0 0 0 -12.067 -12.102m-2.333 1.686a9 9 0 1 0 12.73 12.726m-7.085 -7.059a1 1 0 0 0 1.419 1.41m1.298 -2.713l2 -2m-9 4c0 -1.386 .564 -2.64 1.475 -3.546m2.619 -1.372c.294 -.054 .597 -.082 .906 -.082m-9 -4l18 18" + } + ] + ], + "gauge": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m2.41 -1.41l2.59 -2.59m-9 4a5 5 0 0 1 5 -5" + } + ] + ], + "gavel": [ + [ + "path", + { + "d": "M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385m-4 -4l4 4m3 -3l-4 -4m-6 15h7m-3.207 -5.207l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z" + } + ] + ], + "gender-agender": [ + [ + "path", + { + "d": "M12 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m1 0h11" + } + ] + ], + "gender-androgyne": [ + [ + "path", + { + "d": "M13 11l6 -6m-10 10m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m15 -6v-4h-4m1.5 5.5l-3 -3" + } + ] + ], + "gender-bigender": [ + [ + "path", + { + "d": "M11 11m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m12 -8l-5 5m1 -5h4v4m-8 9v6m-3 -3h6" + } + ] + ], + "gender-demiboy": [ + [ + "path", + { + "d": "M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m14 -9l-5.4 5.4m5.4 -5.4h-5" + } + ] + ], + "gender-demigirl": [ + [ + "path", + { + "d": "M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 5v7m-3 -3h3" + } + ] + ], + "gender-epicene": [ + [ + "path", + { + "d": "M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072zl5.464 -5.535m-18 4l5.464 -5.535m3.536 3.535h.01" + } + ] + ], + "gender-female": [ + [ + "path", + { + "d": "M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 5v7m-3 -3h6" + } + ] + ], + "gender-femme": [ + [ + "path", + { + "d": "M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 5v7m-5 -3h10" + } + ] + ], + "gender-genderfluid": [ + [ + "path", + { + "d": "M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928zm5.464 -1.465l3 -5.196m-12.928 6.392l3 -5.196m3.464 2h.01m-3.01 -3l-6 -6m2.5 5.5l3 -3m12.5 15.5l-6 -6m2 5l3 -3m-17 -10v-4h4" + } + ] + ], + "gender-genderless": [ + [ + "path", + { + "d": "M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10zv-7m-5 12h10" + } + ] + ], + "gender-genderqueer": [ + [ + "path", + { + "d": "M12 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10zv-8m2.5 1.5l-5 3m0 -3l5 3" + } + ] + ], + "gender-hermaphrodite": [ + [ + "path", + { + "d": "M12 14v7m-3 -3h6m-3 -12a4 4 0 1 1 0 8a4 4 0 0 1 0 -8zm3 -3a3 3 0 1 1 -6 0" + } + ] + ], + "gender-intergender": [ + [ + "path", + { + "d": "M13.5 11.5l6.5 6.5v-4m-8.5 -.5l6.5 6.5m-9 -16a5 5 0 1 1 0 10a5 5 0 0 1 0 -10zm5 16l2 -2" + } + ] + ], + "gender-male": [ + [ + "path", + { + "d": "M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m14 -9l-5.4 5.4m5.4 -5.4h-5m5 0v5" + } + ] + ], + "gender-neutrois": [ + [ + "path", + { + "d": "M12 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10zv-7" + } + ] + ], + "gender-third": [ + [ + "path", + { + "d": "M11 12a5 5 0 1 0 10 0a5 5 0 0 0 -10 0zh-3l-5 -4v8z" + } + ] + ], + "gender-transgender": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m7 -3l6 -6m0 4v-4h-4m-8 6l-6 -6m0 4v-4h4m-1.5 5.5l3 -3m3.5 10.5v5m-2.5 -2h5" + } + ] + ], + "gender-trasvesti": [ + [ + "path", + { + "d": "M15 20a5 5 0 1 1 0 -10a5 5 0 0 1 0 10zm-9 -14l5.4 5.4m-7.4 -3.4l4 -4" + } + ] + ], + "geometry": [ + [ + "path", + { + "d": "M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714m-5 -14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 5c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5m-8 -7v-2" + } + ] + ], + "ghost-2": [ + [ + "path", + { + "d": "M10 9h.01m3.99 0h.01m-2.01 -6a7 7 0 0 1 7 7v1l1 0a2 2 0 1 1 0 4l-1 0v3l2 3h-10a6 6 0 0 1 -6 -5.775l0 -.226l-1 0a2 2 0 0 1 0 -4l1 0v-1a7 7 0 0 1 7 -7zm-1 11h2a1 1 0 0 0 -2 0z" + } + ] + ], + "ghost-off": [ + [ + "path", + { + "d": "M8.794 4.776a7 7 0 0 1 10.206 6.224v4m-.12 3.898a1.779 1.779 0 0 1 -2.98 .502a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7c0 -1.683 .594 -3.227 1.583 -4.434m7.417 3.434h.01m-4.01 4a3.5 3.5 0 0 0 4 0m-11 -11l18 18" + } + ] + ], + "ghost": [ + [ + "path", + { + "d": "M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7m5 -1l.01 0m3.99 0l.01 0m-4.01 4a3.5 3.5 0 0 0 4 0" + } + ] + ], + "gif": [ + [ + "path", + { + "d": "M8 8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1m5 -4v8m4 0v-8h5m-1 4h-4" + } + ] + ], + "gift-card": [ + [ + "path", + { + "d": "M3 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm4 8l3 -3l3 3m-5 -3c-.789 0 -2 -.672 -2 -1.5s.711 -1.5 1.5 -1.5c1.128 -.02 2.077 1.17 2.5 3c.423 -1.83 1.372 -3.02 2.5 -3c.789 0 1.5 .672 1.5 1.5s-1.211 1.5 -2 1.5h-4z" + } + ] + ], + "gift-off": [ + [ + "path", + { + "d": "M12 8h8a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4m-4 0h-8a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h4m4 4v9m7 -9v3m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7m2.5 -4a2.5 2.5 0 0 1 -2.457 -2.963m2.023 -2c.14 -.023 .286 -.037 .434 -.037c1.974 -.034 3.76 1.95 4.5 5c.74 -3.05 2.526 -5.034 4.5 -5a2.5 2.5 0 1 1 0 5m-13.5 -5l18 18" + } + ] + ], + "gift": [ + [ + "path", + { + "d": "M3 8m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm9 -1l0 13m7 -9v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7m2.5 -4a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5" + } + ] + ], + "git-branch-deleted": [ + [ + "path", + { + "d": "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2v8m2 2h6a2 2 0 0 0 2 -2v-5m-3 3l3 -3l3 3m-5 -10l4 4m-4 0l4 -4" + } + ] + ], + "git-branch": [ + [ + "path", + { + "d": "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 2l0 8m2 2h6a2 2 0 0 0 2 -2v-5m-3 3l3 -3l3 3" + } + ] + ], + "git-cherry-pick": [ + [ + "path", + { + "d": "M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -9v6m0 6v6m6 -14h2.5l1.5 5l-1.5 5h-2.5m4 -5h3" + } + ] + ], + "git-commit": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -9l0 6m0 6l0 6" + } + ] + ], + "git-compare": [ + [ + "path", + { + "d": "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 -12h5a2 2 0 0 1 2 2v8m-4 -7l-3 -3l3 -3m-1 15h-5a2 2 0 0 1 -2 -2v-8m4 7l3 3l-3 3" + } + ] + ], + "git-fork": [ + [ + "path", + { + "d": "M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-3 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 2v2a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m-5 4l0 4" + } + ] + ], + "git-merge": [ + [ + "path", + { + "d": "M7 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 -4l0 8m0 -8a4 4 0 0 0 4 4h4" + } + ] + ], + "git-pull-request-closed": [ + [ + "path", + { + "d": "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 -10v8m12 -5v5m-2 -12l4 4m0 -4l-4 4" + } + ] + ], + "git-pull-request-draft": [ + [ + "path", + { + "d": "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 -10v8m12 -5h.01m-.01 -5h.01" + } + ] + ], + "git-pull-request": [ + [ + "path", + { + "d": "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 -10l0 8m5 -10h5a2 2 0 0 1 2 2v8m-4 -7l-3 -3l3 -3" + } + ] + ], + "gizmo": [ + [ + "path", + { + "d": "M20 19l-8 -5.5l-8 5.5m8 -15v9.5m0 -9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m17 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "glass-full": [ + [ + "path", + { + "d": "M8 21l8 0m-4 -6l0 6m5 -18l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10zm-11 7a5 5 0 0 1 6 0a5 5 0 0 0 6 0" + } + ] + ], + "glass-off": [ + [ + "path", + { + "d": "M8 21l8 0m-4 -6l0 6m-5 -18h10l1 7a4.511 4.511 0 0 1 -1.053 2.94m-2.386 1.625a7.48 7.48 0 0 1 -2.561 .435c-3.314 0 -6 -1.988 -6 -5l.5 -3.495m-3.5 -3.505l18 18" + } + ] + ], + "glass": [ + [ + "path", + { + "d": "M8 21l8 0m-4 -6l0 6m5 -18l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z" + } + ] + ], + "globe-off": [ + [ + "path", + { + "d": "M8.36 8.339a4 4 0 0 0 5.281 5.31m2 -1.98a4 4 0 0 0 -5.262 -5.325m-3.624 9.656a8.015 8.015 0 0 0 9.799 .553m2.016 -2a8.015 8.015 0 0 0 -2.565 -11.555m-4 15v4m-4 0h8m-13 -19l18 18" + } + ] + ], + "globe": [ + [ + "path", + { + "d": "M12 10m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-1.25 6a8.015 8.015 0 1 0 9.25 -13m-4 15l0 4m-4 0l8 0" + } + ] + ], + "go-game": [ + [ + "path", + { + "d": "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m8 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-13 -6h7m4 0h7m-18 -6h1m4 0h13m-18 12h1m4 0h8m4 0h1m-15 -15v1m0 4v8m0 4v1m6 -18v7m0 4v7m6 -18v13m0 4v1" + } + ] + ], + "golf-off": [ + [ + "path", + { + "d": "M12 18v-6m0 -4v-5l7 4l-5.07 2.897m-4.93 7.773c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33m-12 -14.67l18 18" + } + ] + ], + "golf": [ + [ + "path", + { + "d": "M12 18v-15l7 4l-7 4m-3 6.67c-.62 .36 -1 .82 -1 1.33c0 1.1 1.8 2 4 2s4 -.9 4 -2c0 -.5 -.38 -.97 -1 -1.33" + } + ] + ], + "gps": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 5l-1 -4l-4 -1l9 -4z" + } + ] + ], + "gradienter": [ + [ + "path", + { + "d": "M3.227 14c.917 4 4.497 7 8.773 7c4.277 0 7.858 -3 8.773 -7m.007 -4a9 9 0 0 0 -8.78 -7a8.985 8.985 0 0 0 -8.782 7m8.782 2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "grain": [ + [ + "path", + { + "d": "M4.5 9.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m11 -10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "graph-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405m2.424 9.405l3 -3l2 2l.5 -.5m2 -2l.5 -.5l2 2m-14 -9l18 18" + } + ] + ], + "graph": [ + [ + "path", + { + "d": "M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm3 -4l3 -3l2 2l3 -3l2 2" + } + ] + ], + "grave-2": [ + [ + "path", + { + "d": "M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171m-5 -9.171v5m-2 -3h4m-9 12v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z" + } + ] + ], + "grave": [ + [ + "path", + { + "d": "M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14zm5 -5v-5h-4v-4h4v-4h4v4h4v4h-4v5" + } + ] + ], + "grid-dots": [ + [ + "path", + { + "d": "M5 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-13 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-13 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "grid-pattern": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v8m4 -8v8m-6 -6h8m-8 4h8" + } + ] + ], + "grill-fork": [ + [ + "path", + { + "d": "M5 5l11.5 11.5m2.847 .075l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772zm-16.347 -9.575l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05" + } + ] + ], + "grill-off": [ + [ + "path", + { + "d": "M8 8h-3a6 6 0 0 0 6 6h2c.315 0 .624 -.024 .926 -.071m2.786 -1.214a5.99 5.99 0 0 0 2.284 -4.49l0 -.225h-7m6.827 10.815a2 2 0 1 1 -2.663 -2.633m-7.164 -2.182l-3 6m9 -2h-8m8 -13v-1m-3 1v-1m-3 1v-1m-6 -1l18 18" + } + ] + ], + "grill-spatula": [ + [ + "path", + { + "d": "M10.2 10.2l6.3 6.3m2.847 .075l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772zm-16.347 -9.575l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05l-4 4z" + } + ] + ], + "grill": [ + [ + "path", + { + "d": "M19 8h-14a6 6 0 0 0 6 6h2a6 6 0 0 0 6 -5.775l0 -.225zm-2 12a2 2 0 1 1 0 -4a2 2 0 0 1 0 4zm-2 -6l1 2m-7 -2l-3 6m9 -2h-8m8 -13v-1m-3 1v-1m-3 1v-1" + } + ] + ], + "grip-horizontal": [ + [ + "path", + { + "d": "M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 -6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8 -6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "grip-vertical": [ + [ + "path", + { + "d": "M9 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 -14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "growth": [ + [ + "path", + { + "d": "M16.5 15a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m4.5 -8.5a4.5 4.5 0 0 0 -4.5 4.5m-4 3.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m-4 -8.5c2.21 0 4 2.015 4 4.5m0 -7.5v6" + } + ] + ], + "guitar-pick-filled": [ + [ + "path", + { + "d": "M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z", + "fill": "currentColor" + } + ] + ], + "guitar-pick": [ + [ + "path", + { + "d": "M16 18.5c2 -2.5 4 -6.5 4 -10.5c0 -2.946 -2.084 -4.157 -4.204 -4.654c-.864 -.23 -2.13 -.346 -3.796 -.346c-1.667 0 -2.932 .115 -3.796 .346c-2.12 .497 -4.204 1.708 -4.204 4.654c0 3.312 2 8 4 10.5c.297 .37 .618 .731 .963 1.081l.354 .347a3.9 3.9 0 0 0 5.364 0a14.05 14.05 0 0 0 1.319 -1.428z" + } + ] + ], + "h-1": [ + [ + "path", + { + "d": "M19 18v-8l-2 2m-13 -6v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "h-2": [ + [ + "path", + { + "d": "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0m-17 -12v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "h-3": [ + [ + "path", + { + "d": "M19 14a2 2 0 1 0 -2 -2m0 4a2 2 0 1 0 2 -2m-15 -8v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "h-4": [ + [ + "path", + { + "d": "M20 18v-8l-4 6h5m-17 -10v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "h-5": [ + [ + "path", + { + "d": "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4m-17 -4v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "h-6": [ + [ + "path", + { + "d": "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4zm2 -2a2 2 0 1 0 -4 0v4m-13 -10v12m8 -12v12m-1 0h2m-10 0h2m-1 -6h8m-9 -6h2m6 0h2" + } + ] + ], + "hammer-off": [ + [ + "path", + { + "d": "M10.698 10.72l-6.668 6.698a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l6.696 -6.676m5.011 .993l2 -2a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2 2m-6.708 -2.706l18 18" + } + ] + ], + "hammer": [ + [ + "path", + { + "d": "M11.414 10l-7.383 7.418a2.091 2.091 0 0 0 0 2.967a2.11 2.11 0 0 0 2.976 0l7.407 -7.385m3.707 2.293l2.586 -2.586a1 1 0 0 0 0 -1.414l-7.586 -7.586a1 1 0 0 0 -1.414 0l-2.586 2.586a1 1 0 0 0 0 1.414l7.586 7.586a1 1 0 0 0 1.414 0z" + } + ] + ], + "hand-click": [ + [ + "path", + { + "d": "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5m0 -.5v-2a1.5 1.5 0 0 1 3 0v2.5m0 -1.5a1.5 1.5 0 0 1 3 0v1.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m-3 -10l-1 -1m0 5h-1m11 -4l1 -1m0 4h1" + } + ] + ], + "hand-finger-off": [ + [ + "path", + { + "d": "M8 13v-5m.06 -3.923a1.5 1.5 0 0 1 2.94 .423v2.5m0 4v1m1.063 -3.935a1.5 1.5 0 0 1 1.937 1.435v.5m.06 .082a1.5 1.5 0 0 1 2.94 .418v1.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5m-.88 3.129a6 6 0 0 1 -5.12 2.871h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m-5 -10l18 18" + } + ] + ], + "hand-finger": [ + [ + "path", + { + "d": "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5m0 -.5v-2a1.5 1.5 0 1 1 3 0v2.5m0 -1.5a1.5 1.5 0 0 1 3 0v1.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" + } + ] + ], + "hand-grab": [ + [ + "path", + { + "d": "M8 11v-3.5a1.5 1.5 0 0 1 3 0v2.5m0 -.5v-3a1.5 1.5 0 0 1 3 0v3.5m0 -2.5a1.5 1.5 0 0 1 3 0v2.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" + } + ] + ], + "hand-little-finger": [ + [ + "path", + { + "d": "M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5m0 -.5v-1a1.5 1.5 0 0 1 3 0v1.5m3 0v-5.5a1.5 1.5 0 0 1 3 0v9.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m6 -2.5a1.5 1.5 0 0 1 3 0v1.5" + } + ] + ], + "hand-middle-finger": [ + [ + "path", + { + "d": "M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5m3 -1.5a1.5 1.5 0 0 1 3 0v1.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m3 -1.5v-8a1.5 1.5 0 1 1 3 0v8.5" + } + ] + ], + "hand-move": [ + [ + "path", + { + "d": "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5m0 -.5v-2a1.5 1.5 0 0 1 3 0v2.5m0 -1.5a1.5 1.5 0 0 1 3 0v1.5m0 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m-5.459 -7.406a13.487 13.487 0 0 1 2.46 -1.427m9 -.709c1.32 .354 2.558 .902 3.685 1.612" + } + ] + ], + "hand-off": [ + [ + "path", + { + "d": "M3 3l18 18m-13 -7.5v-5.5m.44 -3.562a1.5 1.5 0 0 1 2.56 1.062v1.5m0 4.008v.992m0 -6.5v-2a1.5 1.5 0 1 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2c-2.114 -.292 -3.956 -1.397 -5 -3l-2.7 -5.25a1.7 1.7 0 0 1 2.75 -2l.9 1.75" + } + ] + ], + "hand-ring-finger": [ + [ + "path", + { + "d": "M8 13v-2.5a1.5 1.5 0 0 1 3 0v1.5m6 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m3 -1.5v-2a1.5 1.5 0 1 1 3 0v2.5v-6.5a1.5 1.5 0 0 1 3 0v6.5" + } + ] + ], + "hand-rock": [ + [ + "path", + { + "d": "M11 11.5v-1a1.5 1.5 0 0 1 3 0v1.5m3 0v-6.5a1.5 1.5 0 0 1 3 0v10.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m6 -2.5a1.5 1.5 0 0 1 3 0v1.5m-9 1v-8.5a1.5 1.5 0 0 1 3 0v7.5" + } + ] + ], + "hand-sanitizer": [ + [ + "path", + { + "d": "M7 21h10v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10zm8 -18h-6a2 2 0 0 0 -2 2m5 -2v5m0 3v4m-2 -2h4" + } + ] + ], + "hand-stop": [ + [ + "path", + { + "d": "M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5m0 -6.5v-2a1.5 1.5 0 1 1 3 0v8.5m0 -6.5a1.5 1.5 0 0 1 3 0v6.5m0 -4.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" + } + ] + ], + "hand-three-fingers": [ + [ + "path", + { + "d": "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5m6 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m3 -7.5v-2a1.5 1.5 0 1 1 3 0v8.5m0 -6.5a1.5 1.5 0 0 1 3 0v6.5" + } + ] + ], + "hand-two-fingers": [ + [ + "path", + { + "d": "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5m6 -.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47m6 -2.5a1.5 1.5 0 0 1 3 0v1.5m-6 -6.5v-2a1.5 1.5 0 1 1 3 0v8.5" + } + ] + ], + "hanger-2": [ + [ + "path", + { + "d": "M12 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1m12 0h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -2 -4a2 2 0 1 1 4 0m-8 11m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "hanger-off": [ + [ + "path", + { + "d": "M14 6a2 2 0 1 0 -4 0m6.506 6.506l3.461 1.922a2 2 0 0 1 1.029 1.749v.823m-2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l6.673 -3.707m-7.702 -7.721l18 18" + } + ] + ], + "hanger": [ + [ + "path", + { + "d": "M14 6a2 2 0 1 0 -4 0c0 1.667 .67 3 2 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428" + } + ] + ], + "hash": [ + [ + "path", + { + "d": "M5 9l14 0m-14 6l14 0m-8 -11l-4 16m10 -16l-4 16" + } + ] + ], + "haze": [ + [ + "path", + { + "d": "M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0m-13 4h18m-18 4h18" + } + ] + ], + "heading-off": [ + [ + "path", + { + "d": "M7 12h5m4 0h1m-10 -5v12m10 -14v8m0 4v2m-2 0h4m-4 -14h4m-14 14h4m-6 -16l18 18" + } + ] + ], + "heading": [ + [ + "path", + { + "d": "M7 12h10m-10 -7v14m10 -14v14m-2 0h4m-4 -14h4m-14 14h4m-4 -14h4" + } + ] + ], + "headphones-off": [ + [ + "path", + { + "d": "M3 3l18 18m-17 -8m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2zm13 -2h1a2 2 0 0 1 2 2v1m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-1a2 2 0 0 1 -2 -2v-3m-11 0v-3c0 -2.21 .896 -4.21 2.344 -5.658m2.369 -1.638a8 8 0 0 1 11.287 7.296v3" + } + ] + ], + "headphones": [ + [ + "path", + { + "d": "M4 13m0 2a2 2 0 0 1 2 -2h3a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-3a2 2 0 0 1 -2 -2zm11 -2m0 2a2 2 0 0 1 2 -2h3a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-3a2 2 0 0 1 -2 -2zm-11 0v-3a8 8 0 0 1 16 0v3" + } + ] + ], + "headset-off": [ + [ + "path", + { + "d": "M4 13m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2zm13.185 -1.827a2 2 0 0 1 2.815 1.827v1m-1.18 2.825a2 2 0 0 1 -2.82 -1.825v-1m-12 -1v-3c0 -2.208 .894 -4.207 2.34 -5.654m2.377 -1.643a8 8 0 0 1 11.283 7.297v3m-2 4c0 1.657 -2.686 3 -6 3m-9 -19l18 18" + } + ] + ], + "headset": [ + [ + "path", + { + "d": "M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm12 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm-12 0v-3a8 8 0 0 1 16 0v3m-2 4a6 3 0 0 1 -6 3" + } + ] + ], + "health-recognition": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-11.397 -6.39a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z" + } + ] + ], + "heart-broken": [ + [ + "path", + { + "d": "M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572m-7.5 -6.578l-2 4l4 3l-2 4v3" + } + ] + ], + "heart-filled": [ + [ + "path", + { + "d": "M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572", + "fill": "currentColor" + } + ] + ], + "heart-handshake": [ + [ + "path", + { + "d": "M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572m-7.5 -6.578l-3.293 3.293a1 1 0 0 0 0 1.414l.543 .543c.69 .69 1.81 .69 2.5 0l1 -1a3.182 3.182 0 0 1 4.5 0l2.25 2.25m-7 3l2 2m.5 -4.5l2 2" + } + ] + ], + "heart-minus": [ + [ + "path", + { + "d": "M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6m-6 4h6" + } + ] + ], + "heart-off": [ + [ + "path", + { + "d": "M3 3l18 18m-1.5 -8.428l-1.5 1.428m-2 2l-4 4l-7.5 -7.428a5 5 0 0 1 -1.288 -5.068a4.976 4.976 0 0 1 1.788 -2.504m3 -1c1.56 0 3.05 .727 4 2a5 5 0 1 1 7.5 6.572" + } + ] + ], + "heart-plus": [ + [ + "path", + { + "d": "M13 19l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8 6m-6 4h6m-3 -3v6" + } + ] + ], + "heart-rate-monitor": [ + [ + "path", + { + "d": "M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm4 15h10m-8 -4v4m6 -4v4m-8 -10h2l2 3l2 -6l1 3h3" + } + ] + ], + "heart": [ + [ + "path", + { + "d": "M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" + } + ] + ], + "heartbeat": [ + [ + "path", + { + "d": "M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572m-16.5 -.578h2l2 3l2 -6l1 3h3" + } + ] + ], + "hearts-off": [ + [ + "path", + { + "d": "M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 0 1 .49 -7.586m3.01 -1a5 5 0 0 1 4 2.018a5 5 0 0 1 8.153 5.784m-8.339 .024a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238l2.01 -2.021m1.977 -1.99l.211 -.212a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.283 .178m-13 -9l18 18" + } + ] + ], + "hearts": [ + [ + "path", + { + "d": "M14.017 18l-2.017 2l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 8.153 5.784m-4.163 8.21l4.197 -4.223a2.81 2.81 0 0 0 0 -3.948a2.747 2.747 0 0 0 -3.91 -.007l-.28 .282l-.279 -.283a2.747 2.747 0 0 0 -3.91 -.007a2.81 2.81 0 0 0 -.007 3.948l4.182 4.238z" + } + ] + ], + "helicopter-landing": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 2l0 8m0 -4l6 0m0 -4l0 8" + } + ] + ], + "helicopter": [ + [ + "path", + { + "d": "M3 10l1 2h6m2 -3a2 2 0 0 0 -2 2v3c0 1.1 .9 2 2 2h7a2 2 0 0 0 2 -2c0 -3.31 -3.13 -5 -7 -5h-2zm1 0l0 -3m-8 0l15 0m-5 3.1v3.9h5.5m-5.5 6l0 -3m4 3l-8 0" + } + ] + ], + "helmet-off": [ + [ + "path", + { + "d": "M8.633 4.654a9 9 0 0 1 11.718 11.7m-1.503 2.486a9.008 9.008 0 0 1 -1.192 1.16h-11.312a9 9 0 0 1 -.185 -13.847m13.841 2.847h-7m-2.768 1.246c.507 2 1.596 3.418 3.268 4.254c.524 .262 1.07 .49 1.64 .683m-12.14 -12.183l18 18" + } + ] + ], + "helmet": [ + [ + "path", + { + "d": "M12 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16zm8 5h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5" + } + ] + ], + "help-off": [ + [ + "path", + { + "d": "M5.641 5.631a9 9 0 1 0 12.719 12.738m1.68 -2.318a9 9 0 0 0 -12.074 -12.098m4.034 13.047v.01m0 -3.51a1.5 1.5 0 0 1 .394 -1.1m2.106 -1.9a2.6 2.6 0 0 0 -3.347 -3.361m-8.153 -4.139l18 18" + } + ] + ], + "help": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 5l0 .01m0 -3.51a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4" + } + ] + ], + "hexagon-3d": [ + [ + "path", + { + "d": "M19 6.844a2.007 2.007 0 0 1 1 1.752v6.555c0 .728 -.394 1.399 -1.03 1.753l-6 3.844a2 2 0 0 1 -1.942 0l-6 -3.844a2.007 2.007 0 0 1 -1.029 -1.752v-6.556c0 -.729 .394 -1.4 1.029 -1.753l6 -3.583a2.05 2.05 0 0 1 2 0l6 3.584h-.03zm-7 9.656v4.5m-7.5 -13.5l3.5 2.5m8 0l4 -2.5m-8 0v4.5l-4 2m4 -2l4 2m-4 2.5l4 -2.5v-4l-4 -2.5l-4 2.5v4z" + } + ] + ], + "hexagon-filled": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029z", + "fill": "currentColor" + } + ] + ], + "hexagon-letter-a": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 9.127v-6a2 2 0 1 1 4 0v6m-4 -3h4" + } + ] + ], + "hexagon-letter-b": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 9.127h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z" + } + ] + ], + "hexagon-letter-c": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-5 3.127a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" + } + ] + ], + "hexagon-letter-d": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z" + } + ] + ], + "hexagon-letter-e": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-5 1.127h-4v8h4m-4 -4h2.5" + } + ] + ], + "hexagon-letter-f": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 5.127h3m1 -4h-4v8" + } + ] + ], + "hexagon-letter-g": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-5 1.127h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1" + } + ] + ], + "hexagon-letter-h": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 9.127v-8m4 0v8m-4 -4h4" + } + ] + ], + "hexagon-letter-i": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-7 1.127v8" + } + ] + ], + "hexagon-letter-j": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127h4v6a2 2 0 1 1 -4 0" + } + ] + ], + "hexagon-letter-k": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127v8m4 -8l-2.5 4l2.5 4m-4 -4h1.5" + } + ] + ], + "hexagon-letter-l": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127v8h4" + } + ] + ], + "hexagon-letter-m": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-10 9.127v-8l3 5l3 -5v8" + } + ] + ], + "hexagon-letter-n": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 9.127v-8l4 8v-8" + } + ] + ], + "hexagon-letter-o": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-7 1.127a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z" + } + ] + ], + "hexagon-letter-p": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 5.127h2a2 2 0 1 0 0 -4h-2v8" + } + ] + ], + "hexagon-letter-q": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-7 1.127a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm1 7l1 1" + } + ] + ], + "hexagon-letter-r": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 5.127h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4" + } + ] + ], + "hexagon-letter-s": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 8.127a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1" + } + ] + ], + "hexagon-letter-t": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127h4m-2 0v8" + } + ] + ], + "hexagon-letter-u": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127v6a2 2 0 1 0 4 0v-6" + } + ] + ], + "hexagon-letter-v": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127l2 8l2 -8" + } + ] + ], + "hexagon-letter-w": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-10 1.127l1 8l2 -5l2 5l1 -8" + } + ] + ], + "hexagon-letter-x": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127l4 8m-4 0l4 -8" + } + ] + ], + "hexagon-letter-y": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127l2 5l2 -5m-2 8v-3" + } + ] + ], + "hexagon-letter-z": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127h4l-4 8h4" + } + ] + ], + "hexagon-number-0": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 3.127v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z" + } + ] + ], + "hexagon-number-1": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 3.127l2 -2v8" + } + ] + ], + "hexagon-number-2": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "hexagon-number-3": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 2.127a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1" + } + ] + ], + "hexagon-number-4": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 1.127v3a1 1 0 0 0 1 1h3m0 -4v8" + } + ] + ], + "hexagon-number-5": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 8.127a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4" + } + ] + ], + "hexagon-number-6": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-5 2.127a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3" + } + ] + ], + "hexagon-number-7": [ + [ + "path", + { + "d": "M19.02 6.858a2 2 0 0 1 1 1.752v6.555c0 .728 -.395 1.4 -1.032 1.753l-6.017 3.844a2 2 0 0 1 -1.948 0l-6.016 -3.844a2 2 0 0 1 -1.032 -1.752v-6.556c0 -.728 .395 -1.4 1.032 -1.753l6.017 -3.582a2.062 2.062 0 0 1 2 0l6.017 3.583h-.029zm-9.02 1.142h4l-2 8" + } + ] + ], + "hexagon-number-8": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-7 5.127h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1" + } + ] + ], + "hexagon-number-9": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-9 8.127a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "hexagon-off": [ + [ + "path", + { + "d": "M8.693 4.69l2.336 -1.39a2.056 2.056 0 0 1 2 0l6 3.573h-.029a2 2 0 0 1 1 1.747v6.536c0 .246 -.045 .485 -.13 .707m-2.16 1.847l-4.739 3.027a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l1.154 -.687m-3.183 -3.185l18 18" + } + ] + ], + "hexagon": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573z" + } + ] + ], + "hexagons-off": [ + [ + "path", + { + "d": "M4 18v-5l4 -2l4 2v5l-4 2zm4 -7v-3m1.332 -2.666l2.668 -1.334l4 2v5m-4 2l.661 -.331m2.684 -1.341l.655 -.328l4 2v3m-1.334 2.667l-2.666 1.333l-4 -2m-9 -15l18 18" + } + ] + ], + "hexagons": [ + [ + "path", + { + "d": "M4 18v-5l4 -2l4 2v5l-4 2zm4 -7v-5l4 -2l4 2v5m-4 2l4 -2l4 2v5l-4 2l-4 -2" + } + ] + ], + "hierarchy-2": [ + [ + "path", + { + "d": "M10 3h4v4h-4zm-7 14h4v4h-4zm14 0h4v4h-4zm-10 0l5 -4l5 4m-5 -10l0 6" + } + ] + ], + "hierarchy-3": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-2 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m6 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 -7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-9 5l2 -3m2 -4l2 -3m2 0l2 3m2 4l2 3m-4 -3l-2 3m-4 -3l2 3" + } + ] + ], + "hierarchy-off": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14.585 -1.413a2 2 0 0 0 2.813 2.843m-13.898 -2.93l5.5 -4.5l5.5 4.5m-5.5 -10.5v1m0 4v1m-9 -10l18 18" + } + ] + ], + "hierarchy": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10.5 -1.5l5.5 -4.5l5.5 4.5m-5.5 -10.5l0 6" + } + ] + ], + "highlight-off": [ + [ + "path", + { + "d": "M9 9l-6 6v4h4l6 -6m2 -2l2.503 -2.503a2.828 2.828 0 1 0 -4 -4l-2.497 2.497m1.497 -1.497l4 4m-12 4l4 4m10.5 -2.5h2v2m-2 2h-6l3 -3m-13 -13l18 18" + } + ] + ], + "highlight": [ + [ + "path", + { + "d": "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4m9.5 -13.5l4 4m-12 4l4 4m12.5 -2.5v4h-8l4 -4z" + } + ] + ], + "history-off": [ + [ + "path", + { + "d": "M3.05 11a8.975 8.975 0 0 1 2.54 -5.403m2.314 -1.697a9 9 0 0 1 12.113 12.112m-1.695 2.312a9 9 0 0 1 -14.772 -3.324m-.5 5v-5h5m-5.05 -12l18 18" + } + ] + ], + "history-toggle": [ + [ + "path", + { + "d": "M12 8v4l3 3m-6.44 -11.31a9 9 0 0 0 -2.92 1.95m-1.95 2.92a9 9 0 0 0 -.69 3.44m.69 3.44a9 9 0 0 0 1.95 2.92m2.92 1.95a9 9 0 0 0 3.44 .69m3.44 -.69a9 9 0 0 0 2.92 -1.95m1.95 -2.92a9 9 0 0 0 .69 -3.44m-.69 -3.44a9 9 0 0 0 -1.95 -2.92m-2.92 -1.95a9 9 0 0 0 -3.44 -.69" + } + ] + ], + "history": [ + [ + "path", + { + "d": "M12 8l0 4l2 2m-10.95 -3a9 9 0 1 1 .5 4m-.5 5v-5h5" + } + ] + ], + "home-2": [ + [ + "path", + { + "d": "M5 12l-2 0l9 -9l9 9l-2 0m-14 0v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7m-9 0h4v4h-4z" + } + ] + ], + "home-bolt": [ + [ + "path", + { + "d": "M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h7.5m-5.5 0v-6a2 2 0 0 1 2 -2h2c.661 0 1.248 .32 1.612 .815m4.388 .185l-2 4h4l-2 4" + } + ] + ], + "home-cancel": [ + [ + "path", + { + "d": "M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 2l4 -4m-2 -5h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m-3.5 0v-6a2 2 0 0 1 2 -2h2c.58 0 1.103 .247 1.468 .642" + } + ] + ], + "home-check": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2m4 -1.512v-1.488h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.525m3.475 -2l2 2l4 -4" + } + ] + ], + "home-cog": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h1.6m7.401 -2l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4.159m6.842 -3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3.5v1.5m0 4v1.5m3.031 -5.25l-1.299 .75m-3.463 2l-1.3 .75m0 -3.5l1.3 .75m3.463 2l1.3 .75" + } + ] + ], + "home-dollar": [ + [ + "path", + { + "d": "M19 10l-7 -7l-9 9h2v7a2 2 0 0 0 2 2h6m-4 0v-6a2 2 0 0 1 2 -2h2c.387 0 .748 .11 1.054 .3m6.946 1.7h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1m0 -8v1" + } + ] + ], + "home-dot": [ + [ + "path", + { + "d": "M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5m7 -2m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-7 2v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771" + } + ] + ], + "home-down": [ + [ + "path", + { + "d": "M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m-3.5 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2m4 1v6m3 -3l-3 3l-3 -3" + } + ] + ], + "home-eco": [ + [ + "path", + { + "d": "M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5m-3 0v-6a2 2 0 0 1 2 -2h2c.325 0 .631 .077 .902 .215m2.098 8.785s0 -2 3 -4m0 3a3 3 0 0 1 0 -6h3v3a3 3 0 0 1 -3 3z" + } + ] + ], + "home-edit": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78m5.42 -2.776l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4m7.42 -5.39a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z" + } + ] + ], + "home-exclamation": [ + [ + "path", + { + "d": "M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h8m-6 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.857 1.257m4.143 1.743v3m0 3v.01" + } + ] + ], + "home-hand": [ + [ + "path", + { + "d": "M18 9l-6 -6l-9 9h2v7a2 2 0 0 0 2 2h3.5m-1.5 0v-6a2 2 0 0 1 2 -2h2m3 4.5l-.585 -.578a1.516 1.516 0 0 0 -2 0c-.477 .433 -.551 1.112 -.177 1.622l1.762 2.456c.37 .506 1.331 1 2 1h3c1.009 0 1.497 -.683 1.622 -1.593c.252 -.938 .378 -1.74 .378 -2.407c0 -1 -.939 -1.843 -2 -2h-1v-2.636c0 -.754 -.672 -1.364 -1.5 -1.364s-1.5 .61 -1.5 1.364v4.136z" + } + ] + ], + "home-heart": [ + [ + "path", + { + "d": "M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h6m-4 0v-6a2 2 0 0 1 2 -2h2c.39 0 .754 .112 1.061 .304m4.933 8.196l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z" + } + ] + ], + "home-infinity": [ + [ + "path", + { + "d": "M19 14v-2h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5m-.5 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.75 1.032m.786 3.554a2.123 2.123 0 0 0 -2.929 0a1.951 1.951 0 0 0 0 2.828c.809 .781 2.12 .781 2.929 0c.809 -.781 -.805 .778 0 0l1.46 -1.41l1.46 -1.419m-2.92 0l1.46 1.42l1.46 1.41c.809 .78 -.805 -.779 0 0s2.12 .781 2.929 0a1.951 1.951 0 0 0 0 -2.828a2.123 2.123 0 0 0 -2.929 0" + } + ] + ], + "home-link": [ + [ + "path", + { + "d": "M20.085 11.085l-8.085 -8.085l-9 9h2v7a2 2 0 0 0 2 2h4.5m-2.5 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 1.807 1.143m6.193 6.857m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -3l-5 3l5 2" + } + ] + ], + "home-minus": [ + [ + "path", + { + "d": "M19 15v-3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m3.5 -2h6m-13 2v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2" + } + ] + ], + "home-move": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2m4 -3h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m3.5 -2h6m-3 -3l3 3l-3 3" + } + ] + ], + "home-off": [ + [ + "path", + { + "d": "M5 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2m-14 0v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3m-10 9v-6a2 2 0 0 1 2 -2h2m2 2v6m-12 -18l18 18" + } + ] + ], + "home-plus": [ + [ + "path", + { + "d": "M19 12h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m-3.5 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2m1 4h6m-3 -3v6" + } + ] + ], + "home-question": [ + [ + "path", + { + "d": "M20.136 11.136l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h7m-5 0v-6a2 2 0 0 1 2 -2h2c.467 0 .896 .16 1.236 .428m4.764 8.572v.01m0 -3.01a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483" + } + ] + ], + "home-ribbon": [ + [ + "path", + { + "d": "M16 15h5v7l-2.5 -1.5l-2.5 1.5zm4 -4l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h5m-3 0v-6a2 2 0 0 1 2 -2h1.5" + } + ] + ], + "home-search": [ + [ + "path", + { + "d": "M21 12l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4.7m-2.7 0v-6a2 2 0 0 1 2 -2h2m5 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5.2 2.2l1.8 1.8" + } + ] + ], + "home-share": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h2c.247 0 .484 .045 .702 .127m5.298 -1.127h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5m4 1l5 -5m0 4.5v-4.5h-4.5" + } + ] + ], + "home-shield": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h1.341m7.341 -2.318l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5m10 -5c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z" + } + ] + ], + "home-signal": [ + [ + "path", + { + "d": "M15 22v-2m3 2v-4m3 4v-6m-2 -3.506v-.494h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h4m-2 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v.5" + } + ] + ], + "home-star": [ + [ + "path", + { + "d": "M19.258 10.258l-7.258 -7.258l-9 9h2v7a2 2 0 0 0 2 2h4m-2 0v-6a2 2 0 0 1 2 -2h1.5m5.3 7.817l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" + } + ] + ], + "home-stats": [ + [ + "path", + { + "d": "M19 13v-1h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h2.5m-.5 0v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2m-2 7l3 -3l2 2l4 -4m-3 0h3v3" + } + ] + ], + "home-up": [ + [ + "path", + { + "d": "M9 21v-6a2 2 0 0 1 2 -2h2c.641 0 1.212 .302 1.578 .771m5.558 -2.635l-8.136 -8.136l-9 9h2v7a2 2 0 0 0 2 2h6.344m5.656 1v-6m3 3l-3 -3l-3 3" + } + ] + ], + "home-x": [ + [ + "path", + { + "d": "M19 13.4v-1.4h2l-9 -9l-9 9h2v7a2 2 0 0 0 2 2h5.5m-3.5 0v-6a2 2 0 0 1 2 -2h2c.402 0 .777 .119 1.091 .323m7.409 8.177l-5 -5m0 5l5 -5" + } + ] + ], + "home": [ + [ + "path", + { + "d": "M5 12l-2 0l9 -9l9 9l-2 0m-14 0v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7m-10 9v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" + } + ] + ], + "horse-toy": [ + [ + "path", + { + "d": "M3.5 17.5c5.667 4.667 11.333 4.667 17 0m-1.5 1l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3m2 6.5l2 -9.5m1 11l2 -5h4l2 5" + } + ] + ], + "hotel-service": [ + [ + "path", + { + "d": "M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z" + } + ] + ], + "hourglass-empty": [ + [ + "path", + { + "d": "M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1zm0 -16v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" + } + ] + ], + "hourglass-high": [ + [ + "path", + { + "d": "M6.5 7h11m-11.5 13v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1zm0 -16v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" + } + ] + ], + "hourglass-low": [ + [ + "path", + { + "d": "M6.5 17h11m-11.5 3v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1zm0 -16v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" + } + ] + ], + "hourglass-off": [ + [ + "path", + { + "d": "M18 18v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2a6 6 0 0 1 6 -6m-6 -6a6 6 0 0 0 6 6m3.13 -.88a6 6 0 0 0 2.87 -5.12v-2a1 1 0 0 0 -1 -1h-10m-4 0l18 18" + } + ] + ], + "hourglass": [ + [ + "path", + { + "d": "M6.5 7h11m-11 10h11m-11.5 3v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1zm0 -16v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" + } + ] + ], + "ice-cream-2": [ + [ + "path", + { + "d": "M17.657 11a6 6 0 1 0 -11.315 0l5.658 11l5.657 -11z" + } + ] + ], + "ice-cream-off": [ + [ + "path", + { + "d": "M12 21.5v-4.5m-4 -9v9h8v-1m0 -4v-5a4 4 0 0 0 -7.277 -2.294m-.723 5.794l1.74 -.76m2.79 -1.222l3.47 -1.518m-8 7.5l4.488 -1.964m-9.488 -9.536l18 18" + } + ] + ], + "ice-cream": [ + [ + "path", + { + "d": "M12 21.5v-4.5m-4 0h8v-10a4 4 0 1 0 -8 0v10zm0 -6.5l8 -3.5m-8 7.5l8 -3.5" + } + ] + ], + "ice-skating": [ + [ + "path", + { + "d": "M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9zm-2.905 14h17a1 1 0 0 0 1 -1m-12 -3v4m6 -4v4" + } + ] + ], + "icons-off": [ + [ + "path", + { + "d": "M4.01 4.041a3.5 3.5 0 0 0 2.49 5.959c.975 0 1.865 -.357 2.5 -1m.958 -3.044a3.503 3.503 0 0 0 -2.905 -2.912m-4.553 17.956h8l-4 -7zm11.5 -18l7 7m-7 0l7 -7m-3 11h3v3m0 4h-7v-7m-11 -11l18 18" + } + ] + ], + "icons": [ + [ + "path", + { + "d": "M6.5 6.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m-.5 14.5h8l-4 -7zm11.5 -18l7 7m-7 0l7 -7m-7 11h7v7h-7z" + } + ] + ], + "id-badge-2": [ + [ + "path", + { + "d": "M7 12h3v4h-3zm3 -6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6m-4 -3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm4 12h2m-2 -4h4" + } + ] + ], + "id-badge-off": [ + [ + "path", + { + "d": "M7.141 3.125a3 3 0 0 1 .859 -.125h8a3 3 0 0 1 3 3v9m-.13 3.874a3 3 0 0 1 -2.87 2.126h-8a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 .128 -.869m6.051 6.045a2 2 0 1 0 2.635 2.667m-3.814 -7.843h4m-5 12h6m-12 -15l18 18" + } + ] + ], + "id-badge": [ + [ + "path", + { + "d": "M5 3m0 3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3zm7 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 -7h4m-5 12h6" + } + ] + ], + "id-off": [ + [ + "path", + { + "d": "M8 4h10a3 3 0 0 1 3 3v10m-1.437 2.561c-.455 .279 -.99 .439 -1.563 .439h-12a3 3 0 0 1 -3 -3v-10c0 -1.083 .573 -2.031 1.433 -2.559m3.742 3.737a2 2 0 1 0 2.646 2.65m4.179 -2.828h2m-1 4h1m-10 4h9m-13 -13l18 18" + } + ] + ], + "id": [ + [ + "path", + { + "d": "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm6 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m8 -2l2 0m-2 4l2 0m-10 4l10 0" + } + ] + ], + "inbox-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.593 3.422a2 2 0 0 1 -1.407 .578h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418m-.59 8.418h3l3 3h4l.987 -.987m2.013 -2.013h3m-17 -10l18 18" + } + ] + ], + "inbox": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 7h3l3 3h4l3 -3h3" + } + ] + ], + "indent-decrease": [ + [ + "path", + { + "d": "M20 6l-7 0m7 6l-9 0m9 6l-7 0m-5 -10l-4 4l4 4" + } + ] + ], + "indent-increase": [ + [ + "path", + { + "d": "M20 6l-11 0m11 6l-7 0m7 6l-11 0m-5 -10l4 4l-4 4" + } + ] + ], + "infinity-off": [ + [ + "path", + { + "d": "M8.165 8.174a4 4 0 0 0 -5.166 3.826a4 4 0 0 0 6.829 2.828a10 10 0 0 0 2.172 -2.828m1.677 -2.347a10 10 0 0 1 .495 -.481a4 4 0 1 1 5.129 6.1m-3.521 .537a4 4 0 0 1 -1.608 -.981a10 10 0 0 1 -2.172 -2.828m-9 -9l18 18" + } + ] + ], + "infinity": [ + [ + "path", + { + "d": "M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" + } + ] + ], + "info-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -4l.01 0m-1.01 4l1 0l0 4l1 0" + } + ] + ], + "info-square-rounded": [ + [ + "path", + { + "d": "M12 8h.01m-1.01 4h1v4h1m-1 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "info-square": [ + [ + "path", + { + "d": "M12 8l.01 0m-8.01 -4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm7 6l1 0l0 4l1 0" + } + ] + ], + "inner-shadow-bottom-left": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m3 0a6 6 0 0 0 6 6" + } + ] + ], + "inner-shadow-bottom-right": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm6 -9a6 6 0 0 1 -6 6" + } + ] + ], + "inner-shadow-bottom": [ + [ + "path", + { + "d": "M18.364 18.364a9 9 0 1 0 -12.728 -12.728a9 9 0 0 0 12.728 12.728zm-10.607 -2.121a6 6 0 0 0 8.486 0" + } + ] + ], + "inner-shadow-left": [ + [ + "path", + { + "d": "M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728zm2.121 10.607a6 6 0 0 1 0 -8.486" + } + ] + ], + "inner-shadow-right": [ + [ + "path", + { + "d": "M18.364 18.364a9 9 0 1 1 -12.728 -12.728a9 9 0 0 1 12.728 12.728zm-2.121 -10.607a6 6 0 0 1 0 8.486" + } + ] + ], + "inner-shadow-top-left": [ + [ + "path", + { + "d": "M12 3a9 9 0 1 1 0 18a9 9 0 0 1 0 -18zm-6 9a6 6 0 0 1 6 -6" + } + ] + ], + "inner-shadow-top-right": [ + [ + "path", + { + "d": "M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18zm6 9a6 6 0 0 0 -6 -6" + } + ] + ], + "inner-shadow-top": [ + [ + "path", + { + "d": "M5.636 5.636a9 9 0 1 0 12.728 12.728a9 9 0 0 0 -12.728 -12.728zm10.607 2.121a6 6 0 0 0 -8.486 0" + } + ] + ], + "input-search": [ + [ + "path", + { + "d": "M19 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5m5.5 .5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "ironing-1": [ + [ + "path", + { + "d": "M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8m-7.8 4h.01" + } + ] + ], + "ironing-2": [ + [ + "path", + { + "d": "M10 15h.01m-1.01 -9h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8m-5.8 4h.01" + } + ] + ], + "ironing-3": [ + [ + "path", + { + "d": "M12 15h.01m-3.01 -9h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8m-10.8 4h.01m5.99 0h.01" + } + ] + ], + "ironing-off": [ + [ + "path", + { + "d": "M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8m-16.8 -8l18 18" + } + ] + ], + "ironing-steam-off": [ + [ + "path", + { + "d": "M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15m-3.984 .014h-13a7 7 0 0 1 6.056 -6.937m3.944 -.063h6.8m-7.8 10v2m-4 -2l-1 2m9 -2l1 2m-14 -18l18 18" + } + ] + ], + "ironing-steam": [ + [ + "path", + { + "d": "M12 19v2m-3 -17h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8m-11.8 10l-1 2m9 -2l1 2" + } + ] + ], + "italic": [ + [ + "path", + { + "d": "M11 5l6 0m-10 14l6 0m1 -14l-4 14" + } + ] + ], + "jacket": [ + [ + "path", + { + "d": "M16 3l-4 5l-4 -5m4 16a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-8.172a2 2 0 0 1 .586 -1.414l.828 -.828a2 2 0 0 0 .586 -1.414v-2.172a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2.172a2 2 0 0 0 .586 1.414l.828 .828a2 2 0 0 1 .586 1.414v8.172a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2zm8 -6h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m-16 0h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3m8 6v-11" + } + ] + ], + "jetpack": [ + [ + "path", + { + "d": "M10 6a3 3 0 1 0 -6 0v7h6v-7zm4 7h6v-7a3 3 0 0 0 -6 0v7zm-9 3c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5m6 0c0 2.333 .667 4 2 5c1.333 -1 2 -2.667 2 -5m-9 -8h4m-4 3h4" + } + ] + ], + "jewish-star-filled": [ + [ + "path", + { + "d": "M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z", + "fill": "currentColor" + } + ] + ], + "jewish-star": [ + [ + "path", + { + "d": "M12 2l3 5h6l-3 5l3 5h-6l-3 5l-3 -5h-6l3 -5l-3 -5h6z" + } + ] + ], + "jpg": [ + [ + "path", + { + "d": "M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1m-10 4v-8h2a2 2 0 1 1 0 4h-2m-7 -4h4v6a2 2 0 0 1 -2 2h-1.5a0.5 .5 0 0 1 -.5 -.5v-.5" + } + ] + ], + "jump-rope": [ + [ + "path", + { + "d": "M6 14v-6a3 3 0 1 1 6 0v8a3 3 0 0 0 6 0v-6m-2 -7m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2zm-12 9m0 2a2 2 0 0 1 2 -2h0a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h0a2 2 0 0 1 -2 -2z" + } + ] + ], + "karate": [ + [ + "path", + { + "d": "M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-14 5l4.5 1l3 2.5m2.5 8.5v-8l3 -5.5m-8 -3l4 2l4 1l4 3.5l-2 3.5" + } + ] + ], + "kayak": [ + [ + "path", + { + "d": "M6.414 6.414a2 2 0 0 0 0 -2.828l-1.414 -1.414l-2.828 2.828l1.414 1.414a2 2 0 0 0 2.828 0zm11.172 11.172a2 2 0 0 0 0 2.828l1.414 1.414l2.828 -2.828l-1.414 -1.414a2 2 0 0 0 -2.828 0zm-11.086 -11.086l11 11m4.5 -15c-9.983 2.601 -17.627 7.952 -20 19.5c9.983 -2.601 17.627 -7.952 20 -19.5zm-15.5 10l5 5m1 -11l5 5" + } + ] + ], + "kering": [ + [ + "path", + { + "d": "M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5m-13 -4l3 6l3 -6m0 11l6 -16" + } + ] + ], + "key-off": [ + [ + "path", + { + "d": "M10.17 6.159l2.316 -2.316a2.877 2.877 0 0 1 4.069 0l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.33 2.33m-2.896 1.104a2.863 2.863 0 0 1 -1.486 -.79l-.301 -.302l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.863 2.863 0 0 1 -.794 -1.504m5.951 -.051h.01m-12.01 -6l18 18" + } + ] + ], + "key": [ + [ + "path", + { + "d": "M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0zm-1.555 5.157h.01" + } + ] + ], + "keyboard-hide": [ + [ + "path", + { + "d": "M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm4 2l0 0m4 0l0 0m4 0l0 0m4 0l0 0m-12 4l0 .01m12 -.01l0 .01m-8 -.01l4 0m-4 10l2 -2l2 2" + } + ] + ], + "keyboard-off": [ + [ + "path", + { + "d": "M18 18h-14a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m4 0h10a2 2 0 0 1 2 2v8c0 .554 -.226 1.056 -.59 1.418m-15.41 -7.418l0 .01m4 -.01l0 .01m4 -.01l0 .01m4 -.01l0 .01m-12 3.99l0 .01m12 -.01l0 .01m-8 -.01l4 0m-11 -11l18 18" + } + ] + ], + "keyboard-show": [ + [ + "path", + { + "d": "M2 3m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm4 2l0 0m4 0l0 0m4 0l0 0m4 0l0 0m-12 4l0 .01m12 -.01l0 .01m-8 -.01l4 0m-4 8l2 2l2 -2" + } + ] + ], + "keyboard": [ + [ + "path", + { + "d": "M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2zm4 2l0 0m4 0l0 0m4 0l0 0m4 0l0 0m-12 4l0 .01m12 -.01l0 .01m-8 -.01l4 0" + } + ] + ], + "keyframe-align-center": [ + [ + "path", + { + "d": "M12 20v2m.816 -5.42c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748zm-.816 -14.58v2m-9 8h2m14 0h2" + } + ] + ], + "keyframe-align-horizontal": [ + [ + "path", + { + "d": "M12.816 16.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748zm-9.816 -4.58h2m14 0h2" + } + ] + ], + "keyframe-align-vertical": [ + [ + "path", + { + "d": "M12 2v2m.816 12.58c-.207 .267 -.504 .42 -.816 .42c-.312 0 -.61 -.153 -.816 -.42l-2.908 -3.748a1.39 1.39 0 0 1 0 -1.664l2.908 -3.748c.207 -.267 .504 -.42 .816 -.42c.312 0 .61 .153 .816 .42l2.908 3.748a1.39 1.39 0 0 1 0 1.664l-2.908 3.748zm-.816 3.42v2" + } + ] + ], + "keyframe": [ + [ + "path", + { + "d": "M13.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248z" + } + ] + ], + "keyframes": [ + [ + "path", + { + "d": "M9.225 18.412a1.595 1.595 0 0 1 -1.225 .588c-.468 0 -.914 -.214 -1.225 -.588l-4.361 -5.248a1.844 1.844 0 0 1 0 -2.328l4.361 -5.248a1.595 1.595 0 0 1 1.225 -.588c.468 0 .914 .214 1.225 .588l4.361 5.248a1.844 1.844 0 0 1 0 2.328l-4.361 5.248zm7.775 -13.412l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836m-4 -14l4.586 5.836a1.844 1.844 0 0 1 0 2.328l-4.586 5.836" + } + ] + ], + "ladder-off": [ + [ + "path", + { + "d": "M8 3v1m0 4v13m8 -18v9m0 4v5m-8 -7h6m-6 -4h2m4 0h2m-6 -4h6m-8 12h8m-13 -15l18 18" + } + ] + ], + "ladder": [ + [ + "path", + { + "d": "M8 3v18m8 -18v18m-8 -7h8m-8 -4h8m-8 -4h8m-8 12h8" + } + ] + ], + "lambda": [ + [ + "path", + { + "d": "M6 20l6.5 -9m6.5 9c-6 0 -6 -16 -12 -16" + } + ] + ], + "lamp-2": [ + [ + "path", + { + "d": "M5 21h9m-4 0l-7 -8l8.5 -5.5m1.5 6.5c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8zm-1.258 -6.426l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144m.942 7.262l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369" + } + ] + ], + "lamp-off": [ + [ + "path", + { + "d": "M9 20h6m-3 0v-8m-4.675 -4.65l-2.325 4.65h7m4 0h3l-4 -8h-6l-.338 .676m-5.662 -1.676l18 18" + } + ] + ], + "lamp": [ + [ + "path", + { + "d": "M9 20h6m-3 0v-8m-7 0h14l-4 -8h-6z" + } + ] + ], + "language-hiragana": [ + [ + "path", + { + "d": "M4 5h7m-4 -1c0 4.846 0 7 .5 8m2.5 -3.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143m2 6l4 -9l4 9m-.9 -2h-6.2" + } + ] + ], + "language-katakana": [ + [ + "path", + { + "d": "M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293m-3 0c0 1.5 .5 3 -2 5m6 7l4 -9l4 9m-.9 -2h-6.2" + } + ] + ], + "language-off": [ + [ + "path", + { + "d": "M4 5h1m4 0h2m-2 -2v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483m1 -4c0 2.144 2.952 3.908 6.7 4m.3 7l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8m1.2 5.2h-5.1m-9.9 -15l18 18" + } + ] + ], + "language": [ + [ + "path", + { + "d": "M4 5h7m-2 -2v2c0 4.418 -2.239 8 -5 8m1 -4c0 2.144 2.952 3.908 6.7 4m.3 7l4 -9l4 9m-.9 -2h-6.2" + } + ] + ], + "lasso-off": [ + [ + "path", + { + "d": "M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -1.804 .878 -3.449 2.319 -4.69m2.49 -1.506a11.066 11.066 0 0 1 4.191 -.804c4.97 0 9 3.134 9 7c0 1.799 -.873 3.44 -2.307 4.68m-2.503 1.517a11.066 11.066 0 0 1 -4.19 .803c-1.913 0 -3.686 -.464 -5.144 -1.255m-1.856 -.745m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2c0 1.42 .316 2.805 1 4m-3 -18l18 18" + } + ] + ], + "lasso-polygon": [ + [ + "path", + { + "d": "M4.028 13.252l-1.028 -3.252l2 -7l7 5l8 -3l1 9l-9 3l-5.144 -1.255m-1.856 -.745m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2c0 1.42 .316 2.805 1 4" + } + ] + ], + "lasso": [ + [ + "path", + { + "d": "M4.028 13.252c-.657 -.972 -1.028 -2.078 -1.028 -3.252c0 -3.866 4.03 -7 9 -7s9 3.134 9 7s-4.03 7 -9 7c-1.913 0 -3.686 -.464 -5.144 -1.255m-1.856 -.745m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2c0 1.42 .316 2.805 1 4" + } + ] + ], + "layers-difference": [ + [ + "path", + { + "d": "M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2m-6 -8l-2 0l0 2m0 4l0 2l2 0m4 -8l2 0l0 2m0 4l0 2l-2 0" + } + ] + ], + "layers-intersect-2": [ + [ + "path", + { + "d": "M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm-4 2m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm5 5l6 -6" + } + ] + ], + "layers-intersect": [ + [ + "path", + { + "d": "M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm-4 2m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "layers-linked": [ + [ + "path", + { + "d": "M19 8.268a2 2 0 0 1 1 1.732v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h3m-8 7.734a2 2 0 0 1 -1 -1.734v-8a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-3" + } + ] + ], + "layers-off": [ + [ + "path", + { + "d": "M8.59 4.581c.362 -.359 .86 -.581 1.41 -.581h8a2 2 0 0 1 2 2v8c0 .556 -.227 1.06 -.594 1.422m-3.406 .578h-6a2 2 0 0 1 -2 -2v-6m8 8v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2m-5 -5l18 18" + } + ] + ], + "layers-subtract": [ + [ + "path", + { + "d": "M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm8 10v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2" + } + ] + ], + "layers-union": [ + [ + "path", + { + "d": "M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2v-2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2" + } + ] + ], + "layout-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 7m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 -11m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 9m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-bottom": [ + [ + "path", + { + "d": "M4 20l16 0m-11 -16m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-center": [ + [ + "path", + { + "d": "M12 4l0 5m0 6l0 5m-6 -11m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-left": [ + [ + "path", + { + "d": "M4 4l0 16m4 -11m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-middle": [ + [ + "path", + { + "d": "M4 12l5 0m6 0l5 0m-11 -6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-right": [ + [ + "path", + { + "d": "M20 4l0 16m-16 -11m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-align-top": [ + [ + "path", + { + "d": "M4 4l16 0m-11 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-board-split": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 6h8m0 3h8m-8 -6h8m-8 -5v16" + } + ] + ], + "layout-board": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 3h8m0 6h8m-8 -11v16" + } + ] + ], + "layout-bottombar-collapse": [ + [ + "path", + { + "d": "M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2zm0 9h-16m10 -7l-2 2l-2 -2" + } + ] + ], + "layout-bottombar-expand": [ + [ + "path", + { + "d": "M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2zm0 9h-16m10 -5l-2 -2l-2 2" + } + ] + ], + "layout-bottombar": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 9l16 0" + } + ] + ], + "layout-cards": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-collage": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 -2l4 16m-2 -8l-8 2" + } + ] + ], + "layout-columns": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 -2l0 16" + } + ] + ], + "layout-dashboard": [ + [ + "path", + { + "d": "M4 4h6v8h-6zm0 12h6v4h-6zm10 -4h6v8h-6zm0 -8h6v4h-6z" + } + ] + ], + "layout-distribute-horizontal": [ + [ + "path", + { + "d": "M4 4l16 0m-16 16l16 0m-14 -11m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-distribute-vertical": [ + [ + "path", + { + "d": "M4 4l0 16m16 -16l0 16m-11 -14m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-grid-add": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -1m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-10 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 2h6m-3 -3v6" + } + ] + ], + "layout-grid": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -1m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-10 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -1m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "layout-kanban": [ + [ + "path", + { + "d": "M4 4l6 0m4 0l6 0m-16 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-list": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" + } + ] + ], + "layout-navbar-collapse": [ + [ + "path", + { + "d": "M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 -9h16m-10 7l2 -2l2 2" + } + ] + ], + "layout-navbar-expand": [ + [ + "path", + { + "d": "M4 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 -9h16m-10 5l2 2l2 -2" + } + ] + ], + "layout-navbar": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 3l16 0" + } + ] + ], + "layout-off": [ + [ + "path", + { + "d": "M8 4a2 2 0 0 1 2 2m-1.162 2.816a1.993 1.993 0 0 1 -.838 .184h-2a2 2 0 0 1 -2 -2v-1c0 -.549 .221 -1.046 .58 -1.407m-.58 8.407m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 -5v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v10m-.595 3.423a2 2 0 0 1 -1.405 .577h-2a2 2 0 0 1 -2 -2v-4m-11 -11l18 18" + } + ] + ], + "layout-rows": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 6l16 0" + } + ] + ], + "layout-sidebar-left-collapse": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 -2v16m6 -10l-2 2l2 2" + } + ] + ], + "layout-sidebar-left-expand": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 -2v16m5 -10l2 2l-2 2" + } + ] + ], + "layout-sidebar-right-collapse": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm11 -2v16m-6 -10l2 2l-2 2" + } + ] + ], + "layout-sidebar-right-expand": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm11 -2v16m-5 -10l-2 2l2 2" + } + ] + ], + "layout-sidebar-right": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm11 -2l0 16" + } + ] + ], + "layout-sidebar": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 -2l0 16" + } + ] + ], + "layout": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 7m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 -11m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" + } + ] + ], + "leaf-off": [ + [ + "path", + { + "d": "M5 21c.475 -4.27 2.3 -7.64 6.331 -9.683m-4.713 -4.694c-1.874 1.625 -2.625 3.877 -2.632 6.377c0 1 0 3 2 5h3.014c2.733 0 5.092 -.635 6.92 -2.087m1.899 -2.099c1.224 -1.872 1.987 -4.434 2.181 -7.814v-2h-4.014c-2.863 0 -5.118 .405 -6.861 1.118m-6.125 -2.118l18 18" + } + ] + ], + "leaf": [ + [ + "path", + { + "d": "M5 21c.5 -4.5 2.5 -8 7 -10m-3 7c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z" + } + ] + ], + "lego-off": [ + [ + "path", + { + "d": "M9.5 11h.01m-.01 4a3.5 3.5 0 0 0 5 0m-6.5 -11v-1h8v2h1a3 3 0 0 1 3 3v8m-.884 3.127a2.99 2.99 0 0 1 -2.116 .873v1h-10v-1a3 3 0 0 1 -3 -3v-9c0 -1.083 .574 -2.032 1.435 -2.56m-2.435 -2.44l18 18" + } + ] + ], + "lego": [ + [ + "path", + { + "d": "M9.5 11l.01 0m4.99 0l.01 0m-5.01 4a3.5 3.5 0 0 0 5 0m-7.5 -10h1v-2h8v2h1a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3v1h-10v-1a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3" + } + ] + ], + "lemon-2": [ + [ + "path", + { + "d": "M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a2 2 0 0 1 1.611 -.815z" + } + ] + ], + "lemon": [ + [ + "path", + { + "d": "M17.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143m-11.668 11.667a6.5 6.5 0 0 0 9.193 -9.192m-4.597 4.596l4.597 4.597m-4.597 -4.597v6.364m0 -6.364h6.364" + } + ] + ], + "letter-a": [ + [ + "path", + { + "d": "M7 20v-12a4 4 0 0 1 4 -4h2a4 4 0 0 1 4 4v12m-10 -7l10 0" + } + ] + ], + "letter-b": [ + [ + "path", + { + "d": "M7 20v-16h6a4 4 0 0 1 0 8a4 4 0 0 1 0 8h-6m0 -8l6 0" + } + ] + ], + "letter-c": [ + [ + "path", + { + "d": "M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5" + } + ] + ], + "letter-case-lower": [ + [ + "path", + { + "d": "M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m7 -3.5v7m7.5 -3.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m7 -3.5v7" + } + ] + ], + "letter-case-toggle": [ + [ + "path", + { + "d": "M6.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m11 3.5v-10.5a3.5 3.5 0 0 1 7 0v10.5m-7 -6h7m-11 -1v7" + } + ] + ], + "letter-case-upper": [ + [ + "path", + { + "d": "M3 19v-10.5a3.5 3.5 0 0 1 7 0v10.5m-7 -6h7m4 6v-10.5a3.5 3.5 0 0 1 7 0v10.5m-7 -6h7" + } + ] + ], + "letter-case": [ + [ + "path", + { + "d": "M17.5 15.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0m-11 3.5v-10.5a3.5 3.5 0 0 1 7 0v10.5m-7 -6h7m11 -1v7" + } + ] + ], + "letter-d": [ + [ + "path", + { + "d": "M7 4h6a5 5 0 0 1 5 5v6a5 5 0 0 1 -5 5h-6v-16" + } + ] + ], + "letter-e": [ + [ + "path", + { + "d": "M17 4h-10v16h10m-10 -8l8 0" + } + ] + ], + "letter-f": [ + [ + "path", + { + "d": "M17 4h-10v16m0 -8l8 0" + } + ] + ], + "letter-g": [ + [ + "path", + { + "d": "M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-2h-4" + } + ] + ], + "letter-h": [ + [ + "path", + { + "d": "M17 4l0 16m-10 -8l10 0m-10 -8l0 16" + } + ] + ], + "letter-i": [ + [ + "path", + { + "d": "M12 4l0 16" + } + ] + ], + "letter-j": [ + [ + "path", + { + "d": "M17 4v12a4 4 0 0 1 -4 4h-2a4 4 0 0 1 -4 -4" + } + ] + ], + "letter-k": [ + [ + "path", + { + "d": "M7 4l0 16m0 -8h2l8 -8m-8 8l8 8" + } + ] + ], + "letter-l": [ + [ + "path", + { + "d": "M7 4v16h10" + } + ] + ], + "letter-m": [ + [ + "path", + { + "d": "M6 20v-16l6 14l6 -14v16" + } + ] + ], + "letter-n": [ + [ + "path", + { + "d": "M7 20v-16l10 16v-16" + } + ] + ], + "letter-o": [ + [ + "path", + { + "d": "M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6" + } + ] + ], + "letter-p": [ + [ + "path", + { + "d": "M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5" + } + ] + ], + "letter-q": [ + [ + "path", + { + "d": "M18 9a5 5 0 0 0 -5 -5h-2a5 5 0 0 0 -5 5v6a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-6m-5 6l5 5" + } + ] + ], + "letter-r": [ + [ + "path", + { + "d": "M7 20v-16h5.5a4 4 0 0 1 0 9h-5.5m5 0l5 7" + } + ] + ], + "letter-s": [ + [ + "path", + { + "d": "M17 8a4 4 0 0 0 -4 -4h-2a4 4 0 0 0 0 8h2a4 4 0 0 1 0 8h-2a4 4 0 0 1 -4 -4" + } + ] + ], + "letter-spacing": [ + [ + "path", + { + "d": "M5 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5m8 -4l3 8l3 -8m-14 14h14m-2 2l2 -2l-2 -2m-10 0l-2 2l2 2" + } + ] + ], + "letter-t": [ + [ + "path", + { + "d": "M6 4l12 0m-6 0l0 16" + } + ] + ], + "letter-u": [ + [ + "path", + { + "d": "M6 4v11a5 5 0 0 0 5 5h2a5 5 0 0 0 5 -5v-11" + } + ] + ], + "letter-v": [ + [ + "path", + { + "d": "M6 4l6 16l6 -16" + } + ] + ], + "letter-w": [ + [ + "path", + { + "d": "M4 4l4 16l4 -14l4 14l4 -16" + } + ] + ], + "letter-x": [ + [ + "path", + { + "d": "M7 4l10 16m0 -16l-10 16" + } + ] + ], + "letter-y": [ + [ + "path", + { + "d": "M7 4l5 9l5 -9m-5 9l0 7" + } + ] + ], + "letter-z": [ + [ + "path", + { + "d": "M7 4h10l-10 16h10" + } + ] + ], + "license-off": [ + [ + "path", + { + "d": "M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 1 0 4 0v-2m0 -4v-8a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -.864 .126m-2.014 2.025a3 3 0 0 0 -.122 .849v11m6 -10h2m-4 4h2m-8 -8l18 18" + } + ] + ], + "license": [ + [ + "path", + { + "d": "M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11m4 -10l4 0m-4 4l4 0" + } + ] + ], + "lifebuoy-off": [ + [ + "path", + { + "d": "M9.171 9.172a4 4 0 0 0 5.65 5.663m1.179 -2.835a4 4 0 0 0 -4 -4m-6.36 -2.368a9 9 0 1 0 12.73 12.725m1.667 -2.301a9 9 0 0 0 -12.077 -12.1m7.04 11.044l3.35 3.35m-9.35 -3.35l-3.35 3.35m0 -12.7l3.35 3.35m9.35 -3.35l-3.35 3.35m-12 -6l18 18" + } + ] + ], + "lifebuoy": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 3l3.35 3.35m-9.35 -3.35l-3.35 3.35m0 -12.7l3.35 3.35m9.35 -3.35l-3.35 3.35" + } + ] + ], + "line-dashed": [ + [ + "path", + { + "d": "M5 12h2m10 0h2m-8 0h2" + } + ] + ], + "line-dotted": [ + [ + "path", + { + "d": "M4 12v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01m4 -.01v.01" + } + ] + ], + "line-height": [ + [ + "path", + { + "d": "M3 8l3 -3l3 3m-6 8l3 3l3 -3m-3 -11l0 14m7 -13l7 0m-7 6l7 0m-7 6l7 0" + } + ] + ], + "line": [ + [ + "path", + { + "d": "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 -12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8.5 10.5l9 -9" + } + ] + ], + "link-off": [ + [ + "path", + { + "d": "M10 14a3.5 3.5 0 0 0 4.47 .444m2.025 -1.94c.557 -.556 1.392 -1.39 2.505 -2.504a3.536 3.536 0 0 0 -5 -5l-.5 .5m-3.952 4.044a3.5 3.5 0 0 0 -.548 .456l-4 4a3.536 3.536 0 0 0 5 5l.5 -.5m-7.5 -15.5l18 18m-18 -18l18 18" + } + ] + ], + "link": [ + [ + "path", + { + "d": "M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5m.5 4.5a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" + } + ] + ], + "list-check": [ + [ + "path", + { + "d": "M3.5 5.5l1.5 1.5l2.5 -2.5m-4 7l1.5 1.5l2.5 -2.5m-4 7l1.5 1.5l2.5 -2.5m3.5 -10.5l9 0m-9 6l9 0m-9 6l9 0" + } + ] + ], + "list-details": [ + [ + "path", + { + "d": "M13 5h8m-8 4h5m-5 6h8m-8 4h5m-15 -15m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm0 9m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "list-numbers": [ + [ + "path", + { + "d": "M11 6h9m-9 6h9m-8 6h8m-16 -2a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4m-2 -10v-6l-2 2" + } + ] + ], + "list-search": [ + [ + "path", + { + "d": "M15 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m7.5 3.5l2.5 2.5m-17 -15h16m-16 6h4m-4 6h4" + } + ] + ], + "list": [ + [ + "path", + { + "d": "M9 6l11 0m-11 6l11 0m-11 6l11 0m-15 -12l0 .01m0 5.99l0 .01m0 5.99l0 .01" + } + ] + ], + "live-photo-off": [ + [ + "path", + { + "d": "M11.296 11.29a1 1 0 1 0 1.414 1.415m-4.237 -4.249a5 5 0 1 0 7.076 7.066m1.365 -2.591a5 5 0 0 0 -5.807 -5.851m4.793 13.03v.01m3.14 -2.51v.01m1.73 -3.62v.01m0 -4.01v.01m-1.73 -3.62v.01m-3.14 -2.51v.01m-3.9 -.9v.01m-3.9 .88v.01m-3.14 2.49v.01m-1.73 3.6v.01m0 3.99v.01m1.73 3.6v.01m3.14 2.49v.01m3.9 .88v.01m-9 -18.01l18 18" + } + ] + ], + "live-photo": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m8.9 8.11l0 .01m3.14 -2.51l0 .01m1.73 -3.62l0 .01m0 -4.01l0 .01m-1.73 -3.62l0 .01m-3.14 -2.51l0 .01m-3.9 -.9l0 .01m-3.9 .88l0 .01m-3.14 2.49l0 .01m-1.73 3.6l0 .01m0 3.99l0 .01m1.73 3.6l0 .01m3.14 2.49l0 .01m3.9 .88l0 .01" + } + ] + ], + "live-view": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-8 -5l0 .01m0 6.99l-3.5 -5a4 4 0 1 1 7 0l-3.5 5" + } + ] + ], + "loader-2": [ + [ + "path", + { + "d": "M12 3a9 9 0 1 0 9 9" + } + ] + ], + "loader-3": [ + [ + "path", + { + "d": "M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9m5 9a5 5 0 1 0 -5 5" + } + ] + ], + "loader-quarter": [ + [ + "path", + { + "d": "M12 6l0 -3m-6 9l-3 0m4.75 -4.25l-2.15 -2.15" + } + ] + ], + "loader": [ + [ + "path", + { + "d": "M12 6l0 -3m4.25 4.75l2.15 -2.15m-.4 6.4l3 0m-4.75 4.25l2.15 2.15m-6.4 -.4l0 3m-4.25 -4.75l-2.15 2.15m.4 -6.4l-3 0m4.75 -4.25l-2.15 -2.15" + } + ] + ], + "location-broken": [ + [ + "path", + { + "d": "M13 20l-3 -6l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5c-1.698 4.703 -3.05 8.37 -4 11m-1 3l4 4m0 -4l-4 4" + } + ] + ], + "location-filled": [ + [ + "path", + { + "d": "M21 3l-6.5 18a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5", + "fill": "currentColor" + } + ] + ], + "location-off": [ + [ + "path", + { + "d": "M10.72 6.712l10.28 -3.712l-3.724 10.313m-1.056 2.925l-1.72 4.762a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l4.775 -1.724m-4.775 -4.776l18 18" + } + ] + ], + "location": [ + [ + "path", + { + "d": "M21 3l-6.5 18a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5" + } + ] + ], + "lock-access-off": [ + [ + "path", + { + "d": "M4 8v-2c0 -.554 .225 -1.055 .588 -1.417m-.588 11.417v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2c.55 0 1.05 -.222 1.41 -.582m-4.41 -8.418a1 1 0 0 1 1 1m-.29 3.704a1 1 0 0 1 -.71 .296h-6a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h2m-1 0v-1m1.182 -2.826a2 2 0 0 1 2.818 1.826v1m-11 -7l18 18" + } + ] + ], + "lock-access": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-12 -5m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm2 -1v-2a2 2 0 1 1 4 0v2" + } + ] + ], + "lock-off": [ + [ + "path", + { + "d": "M3 3l18 18m-2 -2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4m4 0h2a2 2 0 0 1 2 2v2m-7 1m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -5v-3m.712 -3.278a4 4 0 0 1 7.288 2.278v4" + } + ] + ], + "lock-open-off": [ + [ + "path", + { + "d": "M15 11h2a2 2 0 0 1 2 2v2m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6a2 2 0 0 1 2 -2h4m1 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -5v-3m.347 -3.631a4 4 0 0 1 7.653 1.631m-13 -3l18 18" + } + ] + ], + "lock-open": [ + [ + "path", + { + "d": "M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -5v-5a4 4 0 0 1 8 0" + } + ] + ], + "lock-square-rounded": [ + [ + "path", + { + "d": "M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9zm-4 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm2 -1v-2a2 2 0 1 1 4 0v2" + } + ] + ], + "lock-square": [ + [ + "path", + { + "d": "M8 11m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm2 -1v-2a2 2 0 1 1 4 0v2m-10 -7m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" + } + ] + ], + "lock": [ + [ + "path", + { + "d": "M5 11m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3 -5v-4a4 4 0 0 1 8 0v4" + } + ] + ], + "logic-and": [ + [ + "path", + { + "d": "M22 12h-5m-15 -3h5m-5 6h5m2 -10c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z" + } + ] + ], + "logic-buffer": [ + [ + "path", + { + "d": "M22 12h-5m-15 -3h5m-5 6h5m0 -10l10 7l-10 7z" + } + ] + ], + "logic-nand": [ + [ + "path", + { + "d": "M22 12h-3m-17 -3h3m-3 6h3m2 -10c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2zm10 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "logic-nor": [ + [ + "path", + { + "d": "M22 12h-4m-16 -3h5m-5 6h5m-1 -10c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14zm10 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "logic-not": [ + [ + "path", + { + "d": "M22 12h-3m-17 -3h3m-3 6h3m0 -10l10 7l-10 7zm12 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "logic-or": [ + [ + "path", + { + "d": "M22 12h-6m-14 -3h7m-7 6h7m-1 -10c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" + } + ] + ], + "logic-xnor": [ + [ + "path", + { + "d": "M22 12h-2m-18 -3h4m-4 6h4m-1 4c1.778 -4.667 1.778 -9.333 0 -14m3 0c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14zm10 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "logic-xor": [ + [ + "path", + { + "d": "M22 12h-4m-16 -3h6m-6 6h6m-1 4c1.778 -4.667 1.778 -9.333 0 -14m3 0c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" + } + ] + ], + "login": [ + [ + "path", + { + "d": "M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2m6 -4h-13l3 -3m0 6l-3 -3" + } + ] + ], + "logout": [ + [ + "path", + { + "d": "M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2m-7 -4h14l-3 -3m0 6l3 -3" + } + ] + ], + "lollipop-off": [ + [ + "path", + { + "d": "M7.462 7.493a7 7 0 0 0 9.06 9.039m2.416 -1.57a7 7 0 1 0 -9.884 -9.915m11.946 4.953a3.5 3.5 0 0 0 -7 0m-1.29 2.715a3.5 3.5 0 0 1 -5.71 -2.715m7 7c.838 0 1.607 -.294 2.209 -.785m1.291 -2.715a3.5 3.5 0 0 0 -3.5 -3.5m0 -7a3.5 3.5 0 0 0 -3.5 3.5m-7.5 14.5l6 -6m-6 -12l18 18" + } + ] + ], + "lollipop": [ + [ + "path", + { + "d": "M14 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m14 0a3.5 3.5 0 0 0 -7 0a3.5 3.5 0 0 1 -7 0m7 7a3.5 3.5 0 0 0 0 -7m0 -7a3.5 3.5 0 0 0 0 7m-11 11l6 -6" + } + ] + ], + "luggage-off": [ + [ + "path", + { + "d": "M10 6h6a2 2 0 0 1 2 2v6m0 4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-10c0 -.546 .218 -1.04 .573 -1.4m2.427 -1.6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1m-9 4h4m4 0h4m-12 6h10m-7 4v1m6 -1v1m-12 -18l18 18" + } + ] + ], + "luggage": [ + [ + "path", + { + "d": "M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm3 -2v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1m-9 4h12m-12 6h12m-9 4v1m6 -1v1" + } + ] + ], + "lungs-off": [ + [ + "path", + { + "d": "M6.583 6.608c-1.206 1.058 -2.07 2.626 -2.933 5.449c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007c1.611 0 2.918 -1.335 2.918 -2.98v-8.02m6 2v-3.743c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c0 .063 0 .125 0 .187m-1.455 2.51c-.417 .265 -.9 .43 -1.419 .464l-.202 .007c-1.613 0 -2.92 -1.335 -2.92 -2.98v-2.02m-6 -3a2.99 2.99 0 0 0 2.132 -.89m.868 -7.11v4m-9 -5l18 18" + } + ] + ], + "lungs": [ + [ + "path", + { + "d": "M6.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007zm11.839 0c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007zm-8.92 -8a3 3 0 0 0 3 -3a3 3 0 0 0 3 3m-3 -8v5" + } + ] + ], + "macro-off": [ + [ + "path", + { + "d": "M6 15a6 6 0 0 0 11.47 2.467m-1.94 -1.937a6 6 0 0 0 -3.53 5.47a6 6 0 0 0 -6 -6m6 6v-10m-1.134 -.13a5.007 5.007 0 0 1 -3.734 -3.723m-.132 -4.147l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -2.604 4.389m-11.396 -7.389l18 18" + } + ] + ], + "macro": [ + [ + "path", + { + "d": "M6 15a6 6 0 1 0 12 0a6 6 0 0 0 -6 6a6 6 0 0 0 -6 -6m6 6v-10a5 5 0 0 1 -5 -5v-3l3 2l2 -2l2 2l3 -2v3a5 5 0 0 1 -5 5z" + } + ] + ], + "magnet-off": [ + [ + "path", + { + "d": "M7 3a2 2 0 0 1 2 2m0 4v4a3 3 0 0 0 5.552 1.578m.448 -3.578v-6a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a7.99 7.99 0 0 1 -.424 2.577m-1.463 2.584a8 8 0 0 1 -14.113 -5.161v-8c0 -.297 .065 -.58 .181 -.833m-.181 3.834h4m7 0h4m-16 -5l18 18" + } + ] + ], + "magnet": [ + [ + "path", + { + "d": "M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0m0 -5l5 0m6 0l4 0" + } + ] + ], + "mail-fast": [ + [ + "path", + { + "d": "M3 7h3m-3 4h2m4.02 -2.199l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801zm.78 -1.301l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982" + } + ] + ], + "mail-forward": [ + [ + "path", + { + "d": "M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5m-18 -7.5l9 6l9 -6m-6 12h6m-3 -3l3 3l-3 3" + } + ] + ], + "mail-off": [ + [ + "path", + { + "d": "M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2m-2 2l9 6l.598 -.399m2.402 -1.601l6 -4m-18 -4l18 18" + } + ] + ], + "mail-opened": [ + [ + "path", + { + "d": "M3 9l9 6l9 -6l-9 -6l-9 6m18 0v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10m0 10l6 -6m6 0l6 6" + } + ] + ], + "mail": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zl9 6l9 -6" + } + ] + ], + "mailbox-off": [ + [ + "path", + { + "d": "M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5m5.5 -3v-5h4l2 2l-2 2h-4m-6 8h1m-4 -12l18 18" + } + ] + ], + "mailbox": [ + [ + "path", + { + "d": "M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5m5.5 0v-8h4l2 2l-2 2h-4m-6 8h1" + } + ] + ], + "man": [ + [ + "path", + { + "d": "M10 16v5m4 -5v5m-5 -12h6l-1 7h-4zm-4 2c1.333 -1.333 2.667 -2 4 -2m10 2c-1.333 -1.333 -2.667 -2 -4 -2m-3 -5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "manual-gearbox": [ + [ + "path", + { + "d": "M5 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 -10l0 8m7 -8l0 8m7 -8v2a2 2 0 0 1 -2 2h-12" + } + ] + ], + "map-2": [ + [ + "path", + { + "d": "M18 6l0 .01m0 6.99l-3.5 -5a4 4 0 1 1 7 0l-3.5 5m-7.5 -8.25l-1.5 -.75l-6 3l0 13l6 -3l6 3l6 -3l0 -2m-12 -11l0 13m6 -2l0 5" + } + ] + ], + "map-off": [ + [ + "path", + { + "d": "M8.32 4.34l.68 -.34l6 3l6 -3v13m-2.67 1.335l-3.33 1.665l-6 -3l-6 3v-13l2.665 -1.333m3.335 -1.667v1m0 4v8m6 -10v4m0 4v5m-12 -17l18 18" + } + ] + ], + "map-pin-filled": [ + [ + "path", + { + "d": "M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0m-8.657 -5.657a3 3 0 0 0 6 0a3 3 0 0 0 -6 0", + "fill": "currentColor" + } + ] + ], + "map-pin-off": [ + [ + "path", + { + "d": "M3 3l18 18m-11.56 -11.565a3 3 0 0 0 4.126 4.124m1.434 -2.559a3 3 0 0 0 -3 -3m-3.952 -3.958a8 8 0 0 1 10.912 10.908m-1.8 2.206l-3.745 3.744a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 0 1 -.48 -10.79" + } + ] + ], + "map-pin": [ + [ + "path", + { + "d": "M12 11m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m8.657 5.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z" + } + ] + ], + "map-pins": [ + [ + "path", + { + "d": "M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829zm-2.828 -2.828l0 .01m10.828 10.818a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829zm-2.828 -2.828l0 .01" + } + ] + ], + "map-search": [ + [ + "path", + { + "d": "M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v10m-12 -10v13m6 -10v5m1.5 5.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "map": [ + [ + "path", + { + "d": "M3 7l6 -3l6 3l6 -3l0 13l-6 3l-6 -3l-6 3l0 -13m6 -3l0 13m6 -10l0 13" + } + ] + ], + "markdown-off": [ + [ + "path", + { + "d": "M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 1.85 -2m2.15 10v-6l2 2l1 -1m1 1v4m6.5 -1.5l.5 -.5m-2 -1v-3m-13 -6l18 18" + } + ] + ], + "markdown": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 8v-6l2 2l2 -2v6m3 -2l2 2l2 -2m-2 2v-6" + } + ] + ], + "marquee-2": [ + [ + "path", + { + "d": "M4 6v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2" + } + ] + ], + "marquee-off": [ + [ + "path", + { + "d": "M4 6c0 -.556 .227 -1.059 .593 -1.421m4.407 -.579h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m-.598 4.426a1.993 1.993 0 0 1 -1.402 .574m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m-1 -6l18 18" + } + ] + ], + "marquee": [ + [ + "path", + { + "d": "M4 6a2 2 0 0 1 2 -2m3 0h1.5m3 0h1.5m3 0a2 2 0 0 1 2 2m0 3v1.5m0 3v1.5m0 3a2 2 0 0 1 -2 2m-3 0h-1.5m-3 0h-1.5m-3 0a2 2 0 0 1 -2 -2m0 -3v-1.5m0 -3v-1.5m0 -3" + } + ] + ], + "mars": [ + [ + "path", + { + "d": "M10 14m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m14 -9l-5.4 5.4m5.4 -5.4l-5 0m5 0l0 5" + } + ] + ], + "mask-off": [ + [ + "path", + { + "d": "M19.42 19.41a2 2 0 0 1 -1.42 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.055 .588 -1.417m3.412 -.583h10a2 2 0 0 1 2 2v10m-10.115 -6.128a3 3 0 1 0 4.245 4.24m.582 -3.396a3.012 3.012 0 0 0 -1.438 -1.433m-10.274 -6.283l18 18" + } + ] + ], + "mask": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-5 -8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" + } + ] + ], + "masks-theater-off": [ + [ + "path", + { + "d": "M13 9c.058 0 .133 0 .192 0h6.616a2 2 0 0 1 1.992 2.183l-.554 6.041m-1.286 2.718a3.99 3.99 0 0 1 -2.71 1.058h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182m6.8 1.817h.01m-3.01 3.5c.657 .438 1.313 .588 1.97 .451m-8.338 -.969a4.05 4.05 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 .514 -1.531a1.99 1.99 0 0 1 1.286 -.652m4 0h2.808a2 2 0 0 1 2 2m-6.808 2h.01m-.01 4c.764 -.51 1.528 -.63 2.291 -.36m-5.291 -8.64l18 18" + } + ] + ], + "masks-theater": [ + [ + "path", + { + "d": "M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183zm1.808 4h.01m2.99 0h.01m-3.01 3.5c1 .667 2 .667 3 0m-9.368 -.518a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2m-6.808 2h.01m2.99 0h.01m-3.01 4c.764 -.51 1.528 -.63 2.291 -.36" + } + ] + ], + "massage": [ + [ + "path", + { + "d": "M4 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m6 -12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 17l4 -2v-3h12m-9 3h9m-12 -6l3 -2l1 -4c3 1 3 4 3 6" + } + ] + ], + "matchstick": [ + [ + "path", + { + "d": "M3 21l14 -9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 -9l3.62 7.29a4.007 4.007 0 0 1 -.764 4.51a4 4 0 0 1 -6.493 -4.464l3.637 -7.336z" + } + ] + ], + "math-1-divide-2": [ + [ + "path", + { + "d": "M5 12h14m-9 3h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3m-4 -16l2 -2v6" + } + ] + ], + "math-1-divide-3": [ + [ + "path", + { + "d": "M10 15.5a0.5 .5 0 0 1 .5 -.5h2a1.5 1.5 0 0 1 0 3h-1.167h1.167a1.5 1.5 0 0 1 0 3h-2a0.5 .5 0 0 1 -.5 -.5m-5 -8.5h14m-9 -7l2 -2v6" + } + ] + ], + "math-avg": [ + [ + "path", + { + "d": "M3 21l18 -18m-9 9m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0" + } + ] + ], + "math-equal-greater": [ + [ + "path", + { + "d": "M5 18l14 -4m-14 0l14 -4l-14 -4" + } + ] + ], + "math-equal-lower": [ + [ + "path", + { + "d": "M19 18l-14 -4m14 0l-14 -4l14 -4" + } + ] + ], + "math-function-off": [ + [ + "path", + { + "d": "M14 10h1c.882 0 .986 .777 1.694 2.692m-3.694 4.308c.864 0 1.727 -.663 2.495 -1.512m1.717 -2.302c.993 -1.45 2.39 -3.186 3.788 -3.186m-18 9c0 1.5 .5 2 2 2s2 -4 3 -9c.237 -1.186 .446 -2.317 .647 -3.35m.727 -3.248c.423 -1.492 .91 -2.402 1.626 -2.402c1.5 0 2 .5 2 2m-8 7h6m-8 -9l18 18" + } + ] + ], + "math-function-y": [ + [ + "path", + { + "d": "M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2m-8 7h6m4 0l3 5.063m3 -5.063l-4.8 9" + } + ] + ], + "math-function": [ + [ + "path", + { + "d": "M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2m-8 7h6m4 0l6 6m-6 0l6 -6" + } + ] + ], + "math-greater": [ + [ + "path", + { + "d": "M5 18l14 -6l-14 -6" + } + ] + ], + "math-integral-x": [ + [ + "path", + { + "d": "M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2m1 7l6 6m-6 0l6 -6" + } + ] + ], + "math-integral": [ + [ + "path", + { + "d": "M7 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2" + } + ] + ], + "math-integrals": [ + [ + "path", + { + "d": "M3 19a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2m-2 14a2 2 0 0 0 2 2c2 0 2 -4 3 -9s1 -9 3 -9a2 2 0 0 1 2 2" + } + ] + ], + "math-lower": [ + [ + "path", + { + "d": "M19 18l-14 -6l14 -6" + } + ] + ], + "math-max": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-7 15c0 -8.75 4 -14 7 -14.5m4 0c3 .5 7 5.75 7 14.5" + } + ] + ], + "math-min": [ + [ + "path", + { + "d": "M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4zm-9 -13c0 8.75 4 14 7 14.5m4 0c3 -.5 7 -5.75 7 -14.5" + } + ] + ], + "math-not": [ + [ + "path", + { + "d": "M5 12h14v4" + } + ] + ], + "math-off": [ + [ + "path", + { + "d": "M14 19l2.5 -2.5m2 -2l1.5 -1.5m-17 -10l18 18m-2 -16h-7l-.646 2.262m-.906 3.169l-2.448 8.569l-3 -6h-2" + } + ] + ], + "math-pi-divide-2": [ + [ + "path", + { + "d": "M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3m-9 -9h14m-9 -3v-6m4 0v6m1 -6h-6" + } + ] + ], + "math-pi": [ + [ + "path", + { + "d": "M7 20v-16m10 0v16m3 -16h-16" + } + ] + ], + "math-symbols": [ + [ + "path", + { + "d": "M3 12l18 0m-9 -9l0 18m4.5 -16.5l3 3m0 -3l-3 3m-10.5 -3.5l0 4m-2 -2l4 0m10 10l.01 0m-.01 4l.01 0m-14.01 -2l4 0" + } + ] + ], + "math-x-divide-2": [ + [ + "path", + { + "d": "M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3m-9 -9h14m-10 -9l6 6m-6 0l6 -6" + } + ] + ], + "math-x-divide-y-2": [ + [ + "path", + { + "d": "M3 21l18 -18m-6 11l3 4.5m3 -4.5l-4.5 7m-13.5 -17l6 6m-6 0l6 -6" + } + ] + ], + "math-x-divide-y": [ + [ + "path", + { + "d": "M9 3l6 6m-6 0l6 -6m-6 12l3 4.5m3 -4.5l-4.5 7m-5.5 -10h14" + } + ] + ], + "math-x-minus-x": [ + [ + "path", + { + "d": "M2 9l6 6m-6 0l6 -6m8 0l6 6m-6 0l6 -6m-12 3h4" + } + ] + ], + "math-x-minus-y": [ + [ + "path", + { + "d": "M2 9l6 6m-6 0l6 -6m8 0l3 5.063m3 -5.063l-4.8 9m-7.2 -6h4" + } + ] + ], + "math-x-plus-x": [ + [ + "path", + { + "d": "M2 9l6 6m-6 0l6 -6m8 0l6 6m-6 0l6 -6m-12 3h4m-2 -2v4" + } + ] + ], + "math-x-plus-y": [ + [ + "path", + { + "d": "M16 9l3 5.063m-17 -5.063l6 6m-6 0l6 -6m14 0l-4.8 9m-7.2 -6h4m-2 -2v4" + } + ] + ], + "math-xy": [ + [ + "path", + { + "d": "M14 9l3 5.063m-13 -5.063l6 6m-6 0l6 -6m10 0l-4.8 9" + } + ] + ], + "math-y-minus-y": [ + [ + "path", + { + "d": "M2 9l3 5.063m3 -5.063l-4.8 9m12.8 -9l3 5.063m3 -5.063l-4.8 9m-7.2 -6h4" + } + ] + ], + "math-y-plus-y": [ + [ + "path", + { + "d": "M2 9l3 5.063m3 -5.063l-4.8 9m12.8 -9l3 5.063m3 -5.063l-4.8 9m-7.2 -6h4m-2 -2v4" + } + ] + ], + "math": [ + [ + "path", + { + "d": "M19 5h-7l-4 14l-3 -6h-2m11 0l6 6m-6 0l6 -6" + } + ] + ], + "maximize-off": [ + [ + "path", + { + "d": "M4 8v-2c0 -.551 .223 -1.05 .584 -1.412m-.584 11.412v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2c.545 0 1.04 -.218 1.4 -.572m-16.4 -16.428l18 18" + } + ] + ], + "maximize": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2" + } + ] + ], + "meat-off": [ + [ + "path", + { + "d": "M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821m-9.863 8.361c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071zm1.596 -2.596l1 1m4.475 4.425c1.582 -1.582 2.679 -3.407 3.242 -5.2m.383 -3.625c-.16 -1.238 -.653 -2.345 -1.504 -3.195c-.85 -.85 -1.955 -1.344 -3.192 -1.503m-3.63 .382c-1.792 .563 -3.616 1.66 -5.198 3.242m-.076 -8.526l18 18" + } + ] + ], + "meat": [ + [ + "path", + { + "d": "M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821m-9.863 8.361c2.733 2.734 5.9 4 7.07 2.829c1.172 -1.172 -.094 -4.338 -2.828 -7.071c-2.733 -2.734 -5.9 -4 -7.07 -2.829c-1.172 1.172 .094 4.338 2.828 7.071zm1.596 -2.596l1 1m4.475 4.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121" + } + ] + ], + "medal-2": [ + [ + "path", + { + "d": "M9 3h6l3 7l-6 2l-6 -2zm3 9l-3 -9m6 8l-3 -8m0 16.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z" + } + ] + ], + "medal": [ + [ + "path", + { + "d": "M12 4v3m-4 -3v6m8 -6v6m-4 8.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z" + } + ] + ], + "medical-cross-filled": [ + [ + "path", + { + "d": "M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z", + "fill": "currentColor" + } + ] + ], + "medical-cross-off": [ + [ + "path", + { + "d": "M17.928 17.733l-.574 -.331l-3.354 -1.938v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l.333 .192m3.595 -.46v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-.24 .416m-17.054 -13.051l18 18" + } + ] + ], + "medical-cross": [ + [ + "path", + { + "d": "M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z" + } + ] + ], + "medicine-syrup": [ + [ + "path", + { + "d": "M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1zm2 -7h4m-2 -2v4m-2 -9v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3" + } + ] + ], + "meeple": [ + [ + "path", + { + "d": "M9 20h-5a1 1 0 0 1 -1 -1c0 -2 3.378 -4.907 4 -6c-1 0 -4 -.5 -4 -2c0 -2 4 -3.5 6 -4c0 -1.5 .5 -4 3 -4s3 2.5 3 4c2 .5 6 2 6 4c0 1.5 -3 2 -4 2c.622 1.093 4 4 4 6a1 1 0 0 1 -1 1h-5c-1 0 -2 -4 -3 -4s-2 4 -3 4z" + } + ] + ], + "menorah": [ + [ + "path", + { + "d": "M12 4v16m-4 -16v2a4 4 0 1 0 8 0v-2m-12 0v2a8 8 0 1 0 16 0v-2m-10 16h4" + } + ] + ], + "menu-2": [ + [ + "path", + { + "d": "M4 6l16 0m-16 6l16 0m-16 6l16 0" + } + ] + ], + "menu-order": [ + [ + "path", + { + "d": "M4 10h16m-16 4h16m-11 4l3 3l3 -3m-6 -12l3 -3l3 3" + } + ] + ], + "menu": [ + [ + "path", + { + "d": "M4 8l16 0m-16 8l16 0" + } + ] + ], + "message-2-code": [ + [ + "path", + { + "d": "M12 20l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-2l-3 3m-2 -11l-2 2l2 2m4 -4l2 2l-2 2" + } + ] + ], + "message-2-off": [ + [ + "path", + { + "d": "M9 5h8a3 3 0 0 1 3 3v6a2.97 2.97 0 0 1 -.44 1.563m-2.56 1.437h-2l-3 3l-3 -3h-2a3 3 0 0 1 -3 -3v-6c0 -1.092 .584 -2.049 1.457 -2.573m2.543 3.573h1m4 0h3m-8 4h5m-10 -10l18 18" + } + ] + ], + "message-2-share": [ + [ + "path", + { + "d": "M17 4h4v4m-1 3v3a3 3 0 0 1 -3 3h-2l-3 3l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h7m2 4l5 -5" + } + ] + ], + "message-2": [ + [ + "path", + { + "d": "M12 20l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-2l-3 3m-4 -11l8 0m-8 4l6 0" + } + ] + ], + "message-chatbot": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m5.5 -12h.01m4.99 0h.01m-5.01 4a3.5 3.5 0 0 0 5 0" + } + ] + ], + "message-circle-2-filled": [ + [ + "path", + { + "d": "M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1", + "fill": "currentColor" + } + ] + ], + "message-circle-2": [ + [ + "path", + { + "d": "M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1" + } + ] + ], + "message-circle-off": [ + [ + "path", + { + "d": "M3 3l18 18m-12.415 -16.419c3.225 -1.181 7.032 -.616 9.66 1.626c2.983 2.543 3.602 6.525 1.634 9.662m-1.908 2.108c-2.786 2.19 -6.89 2.665 -10.271 1.023l-4.7 1l1.3 -3.9c-2.237 -3.308 -1.489 -7.54 1.714 -10.084" + } + ] + ], + "message-circle": [ + [ + "path", + { + "d": "M3 20l1.3 -3.9a9 8 0 1 1 3.4 2.9l-4.7 1m9 -8l0 .01m-4 -.01l0 .01m8 -.01l0 .01" + } + ] + ], + "message-code": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m6 -12l-2 2l2 2m4 -4l2 2l-2 2" + } + ] + ], + "message-dots": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m8 -10l0 .01m-4 -.01l0 .01m8 -.01l0 .01" + } + ] + ], + "message-forward": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m9 -12l2 2l-2 2m2 -2h-6" + } + ] + ], + "message-language": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m6 -7v-4a2 2 0 1 1 4 0v4m0 -2h-4" + } + ] + ], + "message-off": [ + [ + "path", + { + "d": "M3 3l18 18m-4 -4h-9l-4 4v-13c0 -1.086 .577 -2.036 1.44 -2.563m3.561 -.437h8a3 3 0 0 1 3 3v6c0 .575 -.162 1.112 -.442 1.568" + } + ] + ], + "message-plus": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m6 -10l4 0m-2 -2l0 4" + } + ] + ], + "message-report": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m8 -13l0 3m0 3l0 .01" + } + ] + ], + "message-share": [ + [ + "path", + { + "d": "M20 11v3a3 3 0 0 1 -3 3h-9l-4 4v-13a3 3 0 0 1 3 -3h7m3 -1h4v4m-5 1l5 -5" + } + ] + ], + "message": [ + [ + "path", + { + "d": "M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4m4 -12l8 0m-8 4l6 0" + } + ] + ], + "messages-off": [ + [ + "path", + { + "d": "M3 3l18 18m-10 -10a1 1 0 0 1 -1 -1m0 -3.968v-2.032a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10l-3 -3h-3m-1 4v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2" + } + ] + ], + "messages": [ + [ + "path", + { + "d": "M21 14l-3 -3h-7a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h9a1 1 0 0 1 1 1v10m-7 1v2a1 1 0 0 1 -1 1h-7l-3 3v-10a1 1 0 0 1 1 -1h2" + } + ] + ], + "meteor-off": [ + [ + "path", + { + "d": "M9.75 5.761l3.25 -2.761l-1 5l9 -5l-5 9h5l-2.467 2.536m-1.983 2.04l-2.441 2.51a6.5 6.5 0 1 1 -8.855 -9.506l2.322 -1.972m1.924 6.892m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m-4 -11.5l18 18" + } + ] + ], + "meteor": [ + [ + "path", + { + "d": "M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5zm-11.5 11.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0" + } + ] + ], + "mickey-filled": [ + [ + "path", + { + "d": "M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9zm13 0a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799zm-6.5 11m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0", + "fill": "currentColor" + } + ] + ], + "mickey": [ + [ + "path", + { + "d": "M5.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9zm13 0a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799zm-6.5 11m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" + } + ] + ], + "microphone-2-off": [ + [ + "path", + { + "d": "M16.908 12.917a5 5 0 1 0 -5.827 -5.819m-.965 3.027l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529m-10.875 -10.886l18 18" + } + ] + ], + "microphone-2": [ + [ + "path", + { + "d": "M15 12.9a5 5 0 1 0 -3.902 -3.9m3.902 3.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z" + } + ] + ], + "microphone-off": [ + [ + "path", + { + "d": "M3 3l18 18m-12 -16a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1m-4 1a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85m-11 11l8 0m-4 -4l0 4" + } + ] + ], + "microphone": [ + [ + "path", + { + "d": "M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3zm-4 5a7 7 0 0 0 14 0m-11 11l8 0m-4 -4l0 4" + } + ] + ], + "microscope-off": [ + [ + "path", + { + "d": "M5 21h14m-13 -3h2m-1 0v3m3 -11l-1 1l3 3l1 -1m2 -2l3 -3l-3 -3l-3 3m-1.5 4.5l-1.5 1.5m8 -11l3 3m-8 15a6 6 0 0 0 5.457 -3.505m.441 -3.599a6 6 0 0 0 -2.183 -3.608m-12.715 -7.288l18 18" + } + ] + ], + "microscope": [ + [ + "path", + { + "d": "M5 21h14m-13 -3h2m-1 0v3m2 -10l3 3l6 -6l-3 -3zm1.5 1.5l-1.5 1.5m8 -11l3 3m-8 15a6 6 0 0 0 3.715 -10.712" + } + ] + ], + "microwave-off": [ + [ + "path", + { + "d": "M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10m-6 -11v5m0 4v3m3 -6h.01m-.01 -3h.01m-11.51 1.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428m-4.407 2.572c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0m-8.5 -10.5l18 18" + } + ] + ], + "microwave": [ + [ + "path", + { + "d": "M3 6m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm12 -1v12m3 -6h.01m-.01 3h.01m-.01 -6h.01m-11.51 1.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0m-5 3c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0" + } + ] + ], + "military-award": [ + [ + "path", + { + "d": "M12 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m.5 -2.5l-1 -2.5h-5.5l2.48 5.788a2 2 0 0 0 1.84 1.212h2.18m7 -4.5l1 -2.5h5.5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-2.18" + } + ] + ], + "military-rank": [ + [ + "path", + { + "d": "M17 7v13h-10v-13l5 -3zm-7 6l2 -1l2 1m-4 4l2 -1l2 1m-4 -8l2 -1l2 1" + } + ] + ], + "milk-off": [ + [ + "path", + { + "d": "M10 6h6v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1m8 2l1.094 1.759a6 6 0 0 1 .906 3.17v3.071m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l.327 -.525m4.767 8.766m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-7 -13l18 18" + } + ] + ], + "milk": [ + [ + "path", + { + "d": "M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2zm8 0l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759m4 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m0 -6h4" + } + ] + ], + "milkshake": [ + [ + "path", + { + "d": "M17 10a5 5 0 0 0 -10 0m-1 0m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1zm1 2l1.81 7.243a1 1 0 0 0 .97 .757h4.44a1 1 0 0 0 .97 -.757l1.81 -7.243m-5 -8v-2" + } + ] + ], + "minimize": [ + [ + "path", + { + "d": "M15 19v-2a2 2 0 0 1 2 -2h2m-4 -10v2a2 2 0 0 0 2 2h2m-14 6h2a2 2 0 0 1 2 2v2m-4 -10h2a2 2 0 0 0 2 -2v-2" + } + ] + ], + "minus-vertical": [ + [ + "path", + { + "d": "M12 5v14" + } + ] + ], + "minus": [ + [ + "path", + { + "d": "M5 12l14 0" + } + ] + ], + "mist-off": [ + [ + "path", + { + "d": "M12 5h9m-18 5h7m8 0h1m-14 5h5m4 0h1m4 0h2m-18 5h9m4 0h3m-16 -17l18 18" + } + ] + ], + "mist": [ + [ + "path", + { + "d": "M5 5h3m4 0h9m-18 5h11m4 0h1m-14 5h5m4 0h7m-18 5h9m4 0h3" + } + ] + ], + "moneybag": [ + [ + "path", + { + "d": "M9.5 3h5a1.5 1.5 0 0 1 1.5 1.5a3.5 3.5 0 0 1 -3.5 3.5h-1a3.5 3.5 0 0 1 -3.5 -3.5a1.5 1.5 0 0 1 1.5 -1.5zm-5.5 14v-1a8 8 0 1 1 16 0v1a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z" + } + ] + ], + "mood-angry": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-4 -12l2 1m6 -1l-2 1m.5 6.05a3.5 3.5 0 0 0 -5 0" + } + ] + ], + "mood-annoyed-2": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm3 -7c-2 0 -3 1 -3.5 2.05m-1.5 -6.8c-.5 1 -2.5 1 -3 0m10 0c-.5 1 -2.5 1 -3 0" + } + ] + ], + "mood-annoyed": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm3 -7c-2 0 -3 1 -3.5 2.05m-2.5 -6.05h-.01m6.01 0h-.01" + } + ] + ], + "mood-boy": [ + [ + "path", + { + "d": "M17 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81m2.607 11.42a3.5 3.5 0 0 0 5 0m-6 -14c1.5 1 2.5 3.5 2.5 5m1.5 -5c1.5 2 2 3.5 2 5m-5.5 5l.01 0m5.99 0l.01 0" + } + ] + ], + "mood-confuzed": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-5.51 6a10 10 0 0 1 6 -1.5" + } + ] + ], + "mood-crazy-happy": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m4 -3.5l3 3m-3 0l3 -3m4 0l3 3m-3 0l3 -3m-7.5 6.5a3.5 3.5 0 0 0 5 0" + } + ] + ], + "mood-cry": [ + [ + "path", + { + "d": "M9 10l.01 0m5.99 0l.01 0m-5.51 5.25a3.5 3.5 0 0 1 5 0m3.066 2.356a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606zm3.299 -4.089a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c.69 0 1.36 -.076 2 -.222" + } + ] + ], + "mood-empty": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-6.01 5l6 0" + } + ] + ], + "mood-happy": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3l.01 0m5.99 0l.01 0m-7.01 4a4 4 0 1 0 8 0h-8" + } + ] + ], + "mood-kid": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-5.51 5a3.5 3.5 0 0 0 5 0m-2.5 -12a2 2 0 0 0 0 4" + } + ] + ], + "mood-look-left": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3h.01m-5.01 6h4" + } + ] + ], + "mood-look-right": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm3 -12h-.01m5.01 6h-4" + } + ] + ], + "mood-nerd": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 -2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4.5 5a3.5 3.5 0 0 0 5 0m-11 -6h2.5m12 0h2.5m-10.5 .5c1.333 -1.333 2.667 -1.333 4 0" + } + ] + ], + "mood-nervous": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2h.01m5.99 0h.01m-7.01 6l2 -2l2 2l2 -2l2 2" + } + ] + ], + "mood-neutral": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0" + } + ] + ], + "mood-off": [ + [ + "path", + { + "d": "M5.634 5.638a9 9 0 0 0 12.732 12.724m1.679 -2.322a9 9 0 0 0 -12.08 -12.086m1.035 6.046h.01m5.99 0h.01m-5.51 5a3.5 3.5 0 0 0 5 0m-11.5 -12l18 18" + } + ] + ], + "mood-sad-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.5 4.05a3.5 3.5 0 0 0 -5 0m.5 -6.8c-.5 1 -2.5 1 -3 0m10 0c-.5 1 -2.5 1 -3 0" + } + ] + ], + "mood-sad-dizzy": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.5 4.05a3.5 3.5 0 0 0 -5 0m-1.5 -7.05l2 2m0 -2l-2 2m6 -2l2 2m0 -2l-2 2" + } + ] + ], + "mood-sad-squint": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.5 4.05a3.5 3.5 0 0 0 -5 0m-1 -4.55l1.5 -1.5l-1.5 -1.5m7 3l-1.5 -1.5l1.5 -1.5" + } + ] + ], + "mood-sad": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-5.51 5.25a3.5 3.5 0 0 1 5 0" + } + ] + ], + "mood-sick": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-3 -11h-.01m6.01 0h-.01m-6.99 6l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1" + } + ] + ], + "mood-silence": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-3 -11h-.01m6.01 0h-.01m-6.99 5h8m-7 -1v2m3 -2v2m3 -2v2" + } + ] + ], + "mood-sing": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3h.01m5.99 0h.01m-.01 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "mood-smile-beam": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-2 -11c-.5 -1 -2.5 -1 -3 0m10 0c-.5 -1 -2.5 -1 -3 0m.5 5a3.5 3.5 0 0 1 -5 0" + } + ] + ], + "mood-smile-dizzy": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11.5 3a3.5 3.5 0 0 1 -5 0m-1.5 -6l2 2m0 -2l-2 2m6 -2l2 2m0 -2l-2 2" + } + ] + ], + "mood-smile": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-5.51 5a3.5 3.5 0 0 0 5 0" + } + ] + ], + "mood-suprised": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -3l.01 0m5.99 0l.01 0m-3.01 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "mood-tongue-wink-2": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 9a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm3 -11h-.01m-4.99 4v2a2 2 0 1 0 4 0v-2m1.5 0h-7m-1.5 -4c.5 -1 2.5 -1 3 0" + } + ] + ], + "mood-tongue-wink": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm0 -9m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2h.01m.99 4v2a2 2 0 0 0 4 0v-2m1.5 0h-7m8.5 -4c-.5 -1 -2.5 -1 -3 0" + } + ] + ], + "mood-tongue": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2l.01 0m5.99 0l.01 0m-5.01 4v2a2 2 0 0 0 4 0v-2m1.5 0h-7" + } + ] + ], + "mood-unamused": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8 4l4 -1.5m-5 -4.5c-.5 -1 -2.5 -1 -3 0m10 0c-.5 -1 -2.5 -1 -3 0" + } + ] + ], + "mood-wink-2": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-3 -11h-.01m5.51 5a3.5 3.5 0 0 1 -5 0m6 -6.5l-1.5 1.5l1.5 1.5" + } + ] + ], + "mood-wink": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m12 -2h.01m-5.51 5a3.5 3.5 0 0 0 5 0m-6 -6.5l1.5 1.5l-1.5 1.5" + } + ] + ], + "mood-wrrr": [ + [ + "path", + { + "d": "M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-4 -5l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1m-7.5 -4.5l1.5 -1.5l-1.5 -1.5m7 3l-1.5 -1.5l1.5 -1.5" + } + ] + ], + "mood-xd": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 9a9 9 0 1 1 0 -18a9 9 0 0 1 0 18zm-3 -7h6a3 3 0 1 1 -6 0zm0 -6l6 3m-6 0l6 -3" + } + ] + ], + "moon-2": [ + [ + "path", + { + "d": "M16.418 4.157a8 8 0 0 0 0 15.686m-4.418 -7.843m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "moon-filled": [ + [ + "path", + { + "d": "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z", + "fill": "currentColor" + } + ] + ], + "moon-off": [ + [ + "path", + { + "d": "M7.962 3.949a8.97 8.97 0 0 1 4.038 -.957v.008h.393a7.478 7.478 0 0 0 -2.07 3.308m-.141 3.84c.186 .823 .514 1.626 .989 2.373a7.49 7.49 0 0 0 4.586 3.268m3.893 -.11c.223 -.067 .444 -.144 .663 -.233a9.088 9.088 0 0 1 -.274 .597m-1.695 2.337a9 9 0 0 1 -12.71 -12.749m-2.634 -2.631l18 18" + } + ] + ], + "moon-stars": [ + [ + "path", + { + "d": "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454zm5 1a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2m2 7h2m-1 -1v2" + } + ] + ], + "moon": [ + [ + "path", + { + "d": "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" + } + ] + ], + "moped": [ + [ + "path", + { + "d": "M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-11 -1v1a2 2 0 0 0 4 0v-5h-3a3 3 0 0 0 -3 3v1h10a6 6 0 0 1 5 -4v-5a2 2 0 0 0 -2 -2h-1m-9 4l3 0" + } + ] + ], + "motorbike": [ + [ + "path", + { + "d": "M5 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m17 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-8.5 -2h5l4 -4h-10.5m1.5 4l4 -4m1.5 -4h2l1.5 3l2 4" + } + ] + ], + "mountain-off": [ + [ + "path", + { + "d": "M18.281 14.26l-4.201 -8.872a2.3 2.3 0 0 0 -4.158 0l-.165 .349m-1.289 2.719l-5.468 11.544h17m-12.5 -9l2 2.5l2 -2m-8.5 -8.5l18 18" + } + ] + ], + "mountain": [ + [ + "path", + { + "d": "M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612zm4.5 -9l2 2.5l2.5 -2.5l2 3l2.5 -2" + } + ] + ], + "mouse-2": [ + [ + "path", + { + "d": "M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4zm6 -4v7m-6 0h12" + } + ] + ], + "mouse-off": [ + [ + "path", + { + "d": "M7.733 3.704a3.982 3.982 0 0 1 2.267 -.704h4a4 4 0 0 1 4 4v7m-.1 3.895a4 4 0 0 1 -3.9 3.105h-4a4 4 0 0 1 -4 -4v-10c0 -.3 .033 -.593 .096 -.874m5.904 .874v1m-9 -5l18 18" + } + ] + ], + "mouse": [ + [ + "path", + { + "d": "M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4zm6 0l0 4" + } + ] + ], + "moustache": [ + [ + "path", + { + "d": "M15 9a3 3 0 0 1 2.599 1.5h0c.933 1.333 2.133 1.556 3.126 1.556l.291 0l.77 -.044l.213 0c-.963 1.926 -3.163 2.925 -6.6 3l-.4 0l-.165 0a3 3 0 0 1 .165 -6zm-6 0a3 3 0 0 0 -2.599 1.5h0c-.933 1.333 -2.133 1.556 -3.126 1.556l-.291 0l-.77 -.044l-.213 0c.963 1.926 3.163 2.925 6.6 3l.4 0l.165 0a3 3 0 0 0 -.165 -6z" + } + ] + ], + "movie-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.592 3.42c-.362 .359 -.859 .58 -1.408 .58h-12a2 2 0 0 1 -2 -2v-12c0 -.539 .213 -1.028 .56 -1.388m3.44 3.388v12m8 -16v8m0 4v4m-12 -12h4m-4 8h4m-4 -4h8m4 0h4m-4 -4h4m-17 -5l18 18" + } + ] + ], + "movie": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm4 -2l0 16m8 -16l0 16m-12 -12l4 0m-4 8l4 0m-4 -4l16 0m-4 -4l4 0m-4 8l4 0" + } + ] + ], + "mug-off": [ + [ + "path", + { + "d": "M9 5h5.917a1.08 1.08 0 0 1 1.083 1.077v5.923m-.167 3.88a4.33 4.33 0 0 1 -4.166 3.12h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077h.917m11 3h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.148 -.89 2.103 -2.06 2.297m-15.94 -11.964l18 18" + } + ] + ], + "mug": [ + [ + "path", + { + "d": "M4.083 5h10.834a1.08 1.08 0 0 1 1.083 1.077v8.615c0 2.38 -1.94 4.308 -4.333 4.308h-4.334c-2.393 0 -4.333 -1.929 -4.333 -4.308v-8.615a1.08 1.08 0 0 1 1.083 -1.077m11.917 3h2.5c1.38 0 2.5 1.045 2.5 2.333v2.334c0 1.288 -1.12 2.333 -2.5 2.333h-2.5" + } + ] + ], + "multiplier-0-5x": [ + [ + "path", + { + "d": "M8 16h2a2 2 0 1 0 0 -4h-2v-4h4m-7 8v.01m10 -.01l4 -4m0 4l-4 -4" + } + ] + ], + "multiplier-1-5x": [ + [ + "path", + { + "d": "M4 16v-8l-2 2m8 6h2a2 2 0 1 0 0 -4h-2v-4h4m-7 8v.01m10 -.01l4 -4m0 4l-4 -4" + } + ] + ], + "multiplier-1x": [ + [ + "path", + { + "d": "M9 16v-8l-2 2m6 6l4 -4m0 4l-4 -4" + } + ] + ], + "multiplier-2x": [ + [ + "path", + { + "d": "M14 16l4 -4m0 4l-4 -4m-8 -2a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" + } + ] + ], + "mushroom-off": [ + [ + "path", + { + "d": "M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a0.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a0.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047m1.936 7.953v7a2 2 0 1 0 4 0v-5m-11 -11l18 18" + } + ] + ], + "mushroom": [ + [ + "path", + { + "d": "M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a0.9 .9 0 0 0 .9 .9h14.2a0.9 .9 0 0 0 .9 -.9zm-10 .9v7a2 2 0 1 0 4 0v-7" + } + ] + ], + "music-off": [ + [ + "path", + { + "d": "M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m11.42 -2.55a3 3 0 1 0 4.138 4.119m-9.558 -1.569v-8m0 -4v-1h10v11m-7 -7h7m-16 -5l18 18" + } + ] + ], + "music": [ + [ + "path", + { + "d": "M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 0l0 -13l10 0l0 13m-10 -9l10 0" + } + ] + ], + "navigation-filled": [ + [ + "path", + { + "d": "M12 18.5l7.265 2.463a0.535 .535 0 0 0 .57 -.116a0.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a0.547 .547 0 0 0 .135 .572a0.535 .535 0 0 0 .57 .116l7.265 -2.463", + "fill": "currentColor" + } + ] + ], + "navigation-off": [ + [ + "path", + { + "d": "M16.28 12.28c-.95 -2.064 -2.377 -5.157 -4.28 -9.28c-.7 1.515 -1.223 2.652 -1.573 3.41m-1.27 2.75c-.882 1.913 -2.59 5.618 -5.127 11.115c-.07 .2 -.017 .424 .135 .572c.15 .148 .374 .193 .57 .116l7.265 -2.463l7.265 2.463c.196 .077 .42 .032 .57 -.116a0.548 .548 0 0 0 .134 -.572l-.26 -.563m-16.709 -16.712l18 18" + } + ] + ], + "navigation": [ + [ + "path", + { + "d": "M12 18.5l7.265 2.463a0.535 .535 0 0 0 .57 -.116a0.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a0.547 .547 0 0 0 .135 .572a0.535 .535 0 0 0 .57 .116l7.265 -2.463" + } + ] + ], + "needle-thread": [ + [ + "path", + { + "d": "M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918zm14.5 -14.5l-1 1m.5 -.5c-2.333 -2.667 -3.5 -4 -5 -4s-2 1 -2 2c0 4 8.161 8.406 6 11c-1.056 1.268 -3.363 1.285 -5.75 .808m-4.511 -1.383c-1.393 -.565 -3.739 -1.925 -3.739 -3.425m17.5 -2.5l1.5 1.5" + } + ] + ], + "needle": [ + [ + "path", + { + "d": "M3 21c-.667 -.667 3.262 -6.236 11.785 -16.709a3.5 3.5 0 1 1 5.078 4.791c-10.575 8.612 -16.196 12.585 -16.863 11.918zm14.5 -14.5l-1 1" + } + ] + ], + "network-off": [ + [ + "path", + { + "d": "M6.537 6.516a6 6 0 0 0 7.932 7.954m2.246 -1.76a6 6 0 0 0 -8.415 -8.433m3.7 -1.277c1.333 .333 2 2.333 2 6c0 .348 0 .681 -.018 1m-.545 3.43c-.332 .89 -.811 1.414 -1.437 1.57m0 -12c-.938 .234 -1.547 1.295 -1.825 3.182m-.156 3.837c.117 3.02 .777 4.68 1.981 4.981m-6 -6h3m4 0h5m-15 10h7m4 0h5m-7 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -4v2m-9 -14l18 18" + } + ] + ], + "network": [ + [ + "path", + { + "d": "M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m6 -6c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6m0 -12c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6m-6 -6h12m-15 10h7m4 0h7m-9 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -4v2" + } + ] + ], + "new-section": [ + [ + "path", + { + "d": "M9 12l6 0m-3 -3l0 6m-8 -9v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-5 0h-2m-5 0h-1a1 1 0 0 1 -1 -1v-1m0 -5v-2m0 -5" + } + ] + ], + "news-off": [ + [ + "path", + { + "d": "M16 6h3a1 1 0 0 1 1 1v9m-.606 3.435a2 2 0 0 1 -3.394 -1.435v-2m0 -4v-7a1 1 0 0 0 -1 -1h-7m-3.735 .321a1 1 0 0 0 -.265 .679v12a3 3 0 0 0 3 3h11m-10 -8h4m-4 4h4m-9 -13l18 18" + } + ] + ], + "news": [ + [ + "path", + { + "d": "M16 6h3a1 1 0 0 1 1 1v11a2 2 0 0 1 -4 0v-13a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v12a3 3 0 0 0 3 3h11m-10 -12l4 0m-4 4l4 0m-4 4l4 0" + } + ] + ], + "nfc-off": [ + [ + "path", + { + "d": "M11 20a3 3 0 0 1 -3 -3v-9m5 -4a3 3 0 0 1 3 3v5m0 4v2l-5 -5m-3 -9h9a3 3 0 0 1 3 3v9m-.873 3.116a2.99 2.99 0 0 1 -2.127 .884h-10a3 3 0 0 1 -3 -3v-10c0 -.83 .337 -1.582 .882 -2.125m-1.882 -1.875l18 18" + } + ] + ], + "nfc": [ + [ + "path", + { + "d": "M11 20a3 3 0 0 1 -3 -3v-11l5 5m0 -7a3 3 0 0 1 3 3v11l-5 -5m-7 -9m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3z" + } + ] + ], + "no-copyright": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m11 -2.25a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173m-8 -8.25l1.5 1.5m9 9l1.5 1.5" + } + ] + ], + "no-creative-commons": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7.5 -1.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116m6 -3c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116m-10.5 -7.5l1.5 1.5m9 9l1.5 1.5" + } + ] + ], + "no-derivatives": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 -2h6m-6 4h6" + } + ] + ], + "north-star": [ + [ + "path", + { + "d": "M3 12h18m-9 9v-18m-4.5 4.5l9 9m-9 0l9 -9" + } + ] + ], + "note-off": [ + [ + "path", + { + "d": "M13 20l3.505 -3.505m2 -2l1.501 -1.501m-3 0h3v-7a2 2 0 0 0 -2 -2h-10m-3.427 .6c-.355 .36 -.573 .853 -.573 1.4v12a2 2 0 0 0 2 2h7v-6c0 -.272 .109 -.519 .285 -.699m-10.285 -10.301l18 18" + } + ] + ], + "note": [ + [ + "path", + { + "d": "M13 20l7 -7m-7 7v-6a1 1 0 0 1 1 -1h6v-7a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7" + } + ] + ], + "notebook-off": [ + [ + "path", + { + "d": "M8 4h9a2 2 0 0 1 2 2v9m-.179 3.828a2 2 0 0 1 -1.821 1.172h-11a1 1 0 0 1 -1 -1v-14m4 -1v1m0 4v13m4 -14h2m-12 -5l18 18" + } + ] + ], + "notebook": [ + [ + "path", + { + "d": "M6 4h11a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-11a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m3 0v18m4 -14l2 0m-2 4l2 0" + } + ] + ], + "notes-off": [ + [ + "path", + { + "d": "M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14m6 2h4m-6 4h2m-2 4h4m-10 -12l18 18" + } + ] + ], + "notes": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm4 2l6 0m-6 4l6 0m-6 4l4 0" + } + ] + ], + "notification-off": [ + [ + "path", + { + "d": "M6.154 6.187a2 2 0 0 0 -1.154 1.813v9a2 2 0 0 0 2 2h9a2 2 0 0 0 1.811 -1.151m-.811 -10.849m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-11 -4l18 18" + } + ] + ], + "notification": [ + [ + "path", + { + "d": "M10 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3m-1 -7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "number-0": [ + [ + "path", + { + "d": "M16 16v-8m-4 12a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z" + } + ] + ], + "number-1": [ + [ + "path", + { + "d": "M13 20v-16l-5 5" + } + ] + ], + "number-2": [ + [ + "path", + { + "d": "M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8" + } + ] + ], + "number-3": [ + [ + "path", + { + "d": "M12 12a4 4 0 1 0 -4 -4m0 8a4 4 0 1 0 4 -4" + } + ] + ], + "number-4": [ + [ + "path", + { + "d": "M15 20v-15l-8 11h10" + } + ] + ], + "number-5": [ + [ + "path", + { + "d": "M8 20h4a4 4 0 1 0 0 -8h-4v-8h8" + } + ] + ], + "number-6": [ + [ + "path", + { + "d": "M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0m8 -7a4 4 0 1 0 -8 0v8" + } + ] + ], + "number-7": [ + [ + "path", + { + "d": "M8 4h8l-4 16" + } + ] + ], + "number-8": [ + [ + "path", + { + "d": "M12 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 8m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" + } + ] + ], + "number-9": [ + [ + "path", + { + "d": "M16 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0m-8 7a4 4 0 1 0 8 0v-8" + } + ] + ], + "number": [ + [ + "path", + { + "d": "M4 17v-10l7 10v-10m4 10h5m-2.5 -7m-2.5 0a2.5 3 0 1 0 5 0a2.5 3 0 1 0 -5 0" + } + ] + ], + "numbers": [ + [ + "path", + { + "d": "M8 10v-7l-2 2m0 11a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4m5 -7a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2m-8.5 0h3" + } + ] + ], + "nurse": [ + [ + "path", + { + "d": "M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309zm-2 6h4m-2 -2v4" + } + ] + ], + "octagon-filled": [ + [ + "path", + { + "d": "M8.7 3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c.2 -.2 .4 -.3 .7 -.3z", + "fill": "currentColor" + } + ] + ], + "octagon-off": [ + [ + "path", + { + "d": "M7.647 3.653l.353 -.353c.2 -.2 .4 -.3 .7 -.3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-.35 .35m-2 2l-2.353 2.353c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l2.35 -2.35m-2.65 -2.65l18 18" + } + ] + ], + "octagon": [ + [ + "path", + { + "d": "M8.7 3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c.2 -.2 .4 -.3 .7 -.3z" + } + ] + ], + "old": [ + [ + "path", + { + "d": "M11 21l-1 -4l-2 -3v-6m-3 6l-1 -3l4 -3l3 2l3 .5m-6 -6.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m0 13l-2 4m11 0v-8.5a1.5 1.5 0 0 1 3 0v.5" + } + ] + ], + "olympics-off": [ + [ + "path", + { + "d": "M6 6a3 3 0 1 0 3 3m9 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6 0a3 3 0 0 0 3 3m2.566 -1.445a3 3 0 0 0 -4.135 -4.113m-1.431 8.558m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m6.878 -2.12a3 3 0 0 0 4.239 4.247m.586 -3.431a3.012 3.012 0 0 0 -1.43 -1.414m-13.273 -9.282l18 18" + } + ] + ], + "olympics": [ + [ + "path", + { + "d": "M6 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m15 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-3 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m0 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m9 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "om": [ + [ + "path", + { + "d": "M7 12c2.21 0 4 -1.567 4 -3.5s-1.79 -3.5 -4 -3.5c-1.594 0 -2.97 .816 -3.613 2m.036 7.487a4.944 4.944 0 0 0 -.423 2.017c0 2.485 1.79 4.5 4 4.5s4 -2.015 4 -4.5s-1.79 -4.5 -4 -4.5m7.071 5.01c.327 2.277 1.739 3.99 3.429 3.99c1.933 0 3.5 -2.239 3.5 -5s-1.567 -5 -3.5 -5c-.96 0 -1.868 .606 -2.5 1.5c-.717 1.049 -1.76 1.7 -2.936 1.7c-.92 0 -1.766 -.406 -2.434 -1.087m7.37 -10.113l2 2m-7 -2c1.667 3.667 4.667 5.333 9 5" + } + ] + ], + "omega": [ + [ + "path", + { + "d": "M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5" + } + ] + ], + "outbound": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 3l6 -6m-4 0h4v4" + } + ] + ], + "outlet": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 6m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m6.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "oval-filled": [ + [ + "ellipse", + { + "cx": "12", + "cy": "12", + "rx": "6", + "ry": "9", + "fill": "currentColor" + } + ] + ], + "oval-vertical-filled": [ + [ + "path", + { + "d": "M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z", + "fill": "currentColor" + } + ] + ], + "oval-vertical": [ + [ + "path", + { + "d": "M3 12c0 -3.314 4.03 -6 9 -6s9 2.686 9 6s-4.03 6 -9 6s-9 -2.686 -9 -6z" + } + ] + ], + "oval": [ + [ + "path", + { + "d": "M12 12m-6 0a6 9 0 1 0 12 0a6 9 0 1 0 -12 0" + } + ] + ], + "overline": [ + [ + "path", + { + "d": "M7 9v5a5 5 0 0 0 10 0v-5m-12 -4h14" + } + ] + ], + "package-off": [ + [ + "path", + { + "d": "M8.812 4.793l3.188 -1.793l8 4.5v8.5m-2.282 1.784l-5.718 3.216l-8 -4.5v-9l2.223 -1.25m8.32 4.32l5.457 -3.07m-8 4.5v9m0 -9l-8 -4.5m12 -2.25l-4.35 2.447m-2.564 1.442l-1.086 .611m-5 -6.75l18 18" + } + ] + ], + "package": [ + [ + "path", + { + "d": "M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5m0 9l8 -4.5m-8 4.5l0 9m0 -9l-8 -4.5m12 -2.25l-8 4.5" + } + ] + ], + "packages": [ + [ + "path", + { + "d": "M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3zm-5 -3v5.5l5 3m0 -5.455l5 -3.03m5 2.985l-5 -3l5 -3l5 3v5.5l-5 3zm-5 2.5l5 3m0 -5.5l5 -3m-10 0v-5.5l-5 -3l5 -3l5 3v5.5m-10 -5.47v5.455m5 -2.485l5 -3" + } + ] + ], + "packge-export": [ + [ + "path", + { + "d": "M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5m-8 0l8 -4.5m-8 4.5v9m0 -9l-8 -4.5m11 10.5h7m-3 -3l3 3l-3 3" + } + ] + ], + "packge-import": [ + [ + "path", + { + "d": "M12 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5m-8 0l8 -4.5m-8 4.5v9m0 -9l-8 -4.5m18 10.5h-7m3 -3l-3 3l3 3" + } + ] + ], + "pacman": [ + [ + "path", + { + "d": "M5.636 5.636a9 9 0 0 1 13.397 .747l-5.619 5.617l5.619 5.617a9 9 0 1 1 -13.397 -11.981zm5.864 1.864m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "page-break": [ + [ + "path", + { + "d": "M14 3v4a1 1 0 0 0 1 1h4m0 10v1a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-1m-2 -4h3m4.5 0h3m4.5 0h3m-16 -4v-5a2 2 0 0 1 2 -2h7l5 5v2" + } + ] + ], + "paint-off": [ + [ + "path", + { + "d": "M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-4m-4 0h-2a2 2 0 0 1 -2 -2v-2m14 1h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5m-4 0h-1v2m-2 0m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-7 -13l18 18" + } + ] + ], + "paint": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm14 1h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2m-2 0m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" + } + ] + ], + "palette-off": [ + [ + "path", + { + "d": "M15 15h-1a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25a9 9 0 0 1 -6.372 -15.356m2.372 -1.644c1.236 -.623 2.569 -1 4 -1c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828a4.516 4.516 0 0 1 -1.127 .73m-10.055 -4.058m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-12.5 -7.5l18 18" + } + ] + ], + "palette": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25m-3.5 -10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m5 3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "panorama-horizontal-off": [ + [ + "path", + { + "d": "M10.95 6.952c2.901 .15 5.803 -.323 8.705 -1.42a1 1 0 0 1 1.345 .934v10.534m-3.212 .806c-4.483 -1.281 -8.966 -1.074 -13.449 .622a0.993 .993 0 0 1 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935c.588 .221 1.176 .418 1.764 .59m-3.102 -3.121l18 18" + } + ] + ], + "panorama-horizontal": [ + [ + "path", + { + "d": "M4.338 5.53c5.106 1.932 10.211 1.932 15.317 0a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z" + } + ] + ], + "panorama-vertical-off": [ + [ + "path", + { + "d": "M7 3h10.53c.693 0 1.18 .691 .935 1.338c-1.098 2.898 -1.573 5.795 -1.425 8.692m.828 4.847c.172 .592 .37 1.185 .595 1.778a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.697 -4.486 1.903 -8.973 .619 -13.46m-3.186 -3.2l18 18" + } + ] + ], + "panorama-vertical": [ + [ + "path", + { + "d": "M18.463 4.338c-1.932 5.106 -1.932 10.211 0 15.317a1 1 0 0 1 -.934 1.345h-11c-.692 0 -1.208 -.692 -.962 -1.34c1.932 -5.107 1.932 -10.214 0 -15.321c-.246 -.648 .243 -1.339 .935 -1.339h11.028c.693 0 1.18 .691 .935 1.338z" + } + ] + ], + "paper-bag-off": [ + [ + "path", + { + "d": "M7.158 3.185c.256 -.119 .542 -.185 .842 -.185h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v2.82m-.177 3.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-2m7.185 7.173a2 2 0 1 0 2.64 2.647m-9.825 5.18a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944m5 -1h2m-10 -4l18 18" + } + ] + ], + "paper-bag": [ + [ + "path", + { + "d": "M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2zm6 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6 6a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944m5 -1h2" + } + ] + ], + "paperclip": [ + [ + "path", + { + "d": "M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5" + } + ] + ], + "parachute-off": [ + [ + "path", + { + "d": "M22 12c0 -5.523 -4.477 -10 -10 -10c-1.737 0 -3.37 .443 -4.794 1.222m-2.28 1.71a9.969 9.969 0 0 0 -2.926 7.068m20 0c0 -1.66 -1.46 -3 -3.25 -3c-1.63 0 -2.973 1.099 -3.212 2.54m-.097 -.09c-.23 -1.067 -1.12 -1.935 -2.29 -2.284m-3.445 .568c-.739 .55 -1.206 1.36 -1.206 2.266c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3l10 10l-3.5 -10m6.082 2.624l-2.582 7.376l4.992 -4.992m2.014 -2.014l3 -3m-19 -9l18 18" + } + ] + ], + "parachute": [ + [ + "path", + { + "d": "M22 12a10 10 0 1 0 -20 0m20 0c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3c0 -1.66 -1.57 -3 -3.5 -3s-3.5 1.34 -3.5 3c0 -1.66 -1.46 -3 -3.25 -3c-1.8 0 -3.25 1.34 -3.25 3l10 10l-3.5 -10m7 0l-3.5 10l10 -10" + } + ] + ], + "parentheses-off": [ + [ + "path", + { + "d": "M5.743 5.745a12.253 12.253 0 0 0 1.257 14.255m10 -16a12.25 12.25 0 0 1 2.474 11.467m-1.22 2.794a12.291 12.291 0 0 1 -1.254 1.739m-14 -17l18 18" + } + ] + ], + "parentheses": [ + [ + "path", + { + "d": "M7 4a12.25 12.25 0 0 0 0 16m10 -16a12.25 12.25 0 0 1 0 16" + } + ] + ], + "parking-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418m4.41 11.418v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3m-6 -9l18 18" + } + ] + ], + "parking": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 10v-8h4a2 2 0 0 1 0 4h-4" + } + ] + ], + "password": [ + [ + "path", + { + "d": "M12 10v4m-2 -1l4 -2m-4 0l4 2m-9 -3v4m-2 -1l4 -2m-4 0l4 2m12 -3v4m-2 -1l4 -2m-4 0l4 2" + } + ] + ], + "paw-filled": [ + [ + "path", + { + "d": "M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M9.474 9c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z", + "fill": "currentColor" + } + ] + ], + "paw-off": [ + [ + "path", + { + "d": "M11.168 11.154c-.71 .31 -1.184 1.107 -2 2.593c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c.927 0 1.664 -.689 1.783 -1.708m1.905 -10.21a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052h0zm-9.191 -1.09a3.608 3.608 0 0 0 -.04 -.725c-.203 -1.297 -1.047 -2.267 -1.932 -2.267a1.237 1.237 0 0 0 -.758 .265m8.189 2.468c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267zm-10.766 6.185c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082zm-2.69 -9.918l18 18" + } + ] + ], + "paw": [ + [ + "path", + { + "d": "M14.7 13.5c-1.1 -2 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538zm5.488 -5.418a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052zm-10.714 .918c.055 0 .109 0 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 0 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267zm6.982 -2.267c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267zm-10.766 6.185c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z" + } + ] + ], + "peace": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9l0 18m0 -9l6.3 6.3m-6.3 -6.3l-6.3 6.3" + } + ] + ], + "pencil-minus": [ + [ + "path", + { + "d": "M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4zm5.5 -13.5l4 4m-1.5 7.5h4" + } + ] + ], + "pencil-off": [ + [ + "path", + { + "d": "M10 10l-6 6v4h4l6 -6m1.99 -1.99l2.504 -2.504a2.828 2.828 0 1 0 -4 -4l-2.5 2.5m1.5 -1.5l4 4m-14.5 -7.5l18 18" + } + ] + ], + "pencil-plus": [ + [ + "path", + { + "d": "M8 20l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4h4zm5.5 -13.5l4 4m-1.5 7.5h4m-2 -2v4" + } + ] + ], + "pencil": [ + [ + "path", + { + "d": "M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4m9.5 -13.5l4 4" + } + ] + ], + "pennant-2-filled": [ + [ + "path", + { + "d": "M16 21h-4m2 0v-18m0 1l-9 4l9 4", + "fill": "currentColor" + } + ] + ], + "pennant-2": [ + [ + "path", + { + "d": "M16 21h-4m2 0v-18m0 1l-9 4l9 4" + } + ] + ], + "pennant-filled": [ + [ + "path", + { + "d": "M8 21l4 0m-2 0l0 -18m0 1l9 4l-9 4", + "fill": "currentColor" + } + ] + ], + "pennant-off": [ + [ + "path", + { + "d": "M8 21h4m-2 0v-11m0 -4v-3m0 1l9 4l-4.858 2.16m-2.764 1.227l-1.378 .613m-7 -9l18 18" + } + ] + ], + "pennant": [ + [ + "path", + { + "d": "M8 21l4 0m-2 0l0 -18m0 1l9 4l-9 4" + } + ] + ], + "pentagon-filled": [ + [ + "path", + { + "d": "M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0h0z", + "fill": "currentColor" + } + ] + ], + "pentagon-off": [ + [ + "path", + { + "d": "M8.868 4.857l1.936 -1.457a2 2 0 0 1 2.397 0l7.032 5.237a2 2 0 0 1 .7 2.247l-1.522 4.485m-1.027 3.029l-.424 1.25a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l2.736 -2.06m-3.582 -3.577l18 18" + } + ] + ], + "pentagon": [ + [ + "path", + { + "d": "M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 0z" + } + ] + ], + "pentagram": [ + [ + "path", + { + "d": "M5.636 5.636a9 9 0 1 1 12.728 12.728a9 9 0 0 1 -12.728 -12.728zm9.6 5.364l5.264 4h-6.5l-2 6l-2 -6h-6.5l5.276 -4l-2.056 -6.28l5.28 3.78l5.28 -3.78z" + } + ] + ], + "pepper-off": [ + [ + "path", + { + "d": "M12.59 12.59c-.77 1.418 -2.535 2.41 -4.59 2.41c-2.761 0 -5 -1.79 -5 -4a8 8 0 0 0 13.643 5.67m1.64 -2.357a7.97 7.97 0 0 0 .717 -3.313a3 3 0 0 0 -5.545 -1.59m2.545 -1.41c0 -2 2 -4 4 -4m-17 -1l18 18" + } + ] + ], + "pepper": [ + [ + "path", + { + "d": "M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0m3 -3c0 -2 2 -4 4 -4" + } + ] + ], + "percentage": [ + [ + "path", + { + "d": "M17 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-9 -10m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m0 11l12 -12" + } + ] + ], + "perfume": [ + [ + "path", + { + "d": "M10 6v3m4 -3v3m-9 0m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1 -12h6v3h-6z" + } + ] + ], + "perspective-off": [ + [ + "path", + { + "d": "M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137m-2.01 -2.016l18 18" + } + ] + ], + "perspective": [ + [ + "path", + { + "d": "M6.141 4.163l12 1.714a1 1 0 0 1 .859 .99v10.266a1 1 0 0 1 -.859 .99l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 1.141 -.99z" + } + ] + ], + "phone-call": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 3a2 2 0 0 1 2 2m-2 -6a6 6 0 0 1 6 6" + } + ] + ], + "phone-calling": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 3l0 .01m3 -.01l0 .01m3 -.01l0 .01" + } + ] + ], + "phone-check": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 2l2 2l4 -4" + } + ] + ], + "phone-incoming": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 5l5 -5m-5 1l0 4l4 0" + } + ] + ], + "phone-off": [ + [ + "path", + { + "d": "M3 21l18 -18m-15.169 11.161a15.946 15.946 0 0 1 -2.831 -8.161a2 2 0 0 1 2 -2h4l2 5l-2.5 1.5c.108 .22 .223 .435 .345 .645m1.751 2.277c.843 .84 1.822 1.544 2.904 2.078l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a15.963 15.963 0 0 1 -10.344 -4.657" + } + ] + ], + "phone-outgoing": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 5l5 -5m-4 0l4 0l0 4" + } + ] + ], + "phone-pause": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m15 -1l0 4m-4 -4l0 4" + } + ] + ], + "phone-plus": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m10 2h6m-3 -3v6" + } + ] + ], + "phone-x": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2m11 0l4 4m0 -4l-4 4" + } + ] + ], + "phone": [ + [ + "path", + { + "d": "M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" + } + ] + ], + "photo-cancel": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5m-16 3l4 -4c.928 -.893 2.072 -.893 3 0l3 3l1 -1c.553 -.532 1.182 -.747 1.796 -.645m2.204 6.645m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 2l4 -4" + } + ] + ], + "photo-check": [ + [ + "path", + { + "d": "M15 8h.01m-4.01 12h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6m-16 2l4 -4c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l1 -1c.928 -.893 2.072 -.893 3 0m-3 6l2 2l4 -4" + } + ] + ], + "photo-down": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5m-16 3l4 -4c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l1 -1c.617 -.593 1.328 -.793 2.009 -.598m1.991 3.598v6m3 -3l-3 3l-3 -3" + } + ] + ], + "photo-edit": [ + [ + "path", + { + "d": "M15 8h.01m-4.01 12h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4m-16 4l4 -4c.928 -.893 2.072 -.893 3 0l3 3l1 -1c.31 -.298 .644 -.497 .987 -.596m2.433 3.206a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z" + } + ] + ], + "photo-heart": [ + [ + "path", + { + "d": "M15 8h.01m-2.51 12h-5.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5m-16 3l4 -4c.928 -.893 2.072 -.893 3 0l2.5 2.5m5.494 8l2.518 -2.58a1.74 1.74 0 0 0 0 -2.413a1.627 1.627 0 0 0 -2.346 0l-.168 .172l-.168 -.172a1.627 1.627 0 0 0 -2.346 0a1.74 1.74 0 0 0 0 2.412l2.51 2.59z" + } + ] + ], + "photo-minus": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v8m-16 0l4 -4c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l1 -1c.928 -.893 2.072 -.893 3 0l2 2m-4 4h6" + } + ] + ], + "photo-off": [ + [ + "path", + { + "d": "M3 3l18 18m-6 -13l.01 0m4.111 11.122a3 3 0 0 1 -2.121 .878h-10a3 3 0 0 1 -3 -3v-10c0 -.833 .34 -1.587 .888 -2.131m3.112 -.869h9a3 3 0 0 1 3 3v9m-16 -1l4 -4c.928 -.893 2.072 -.893 3 0l5 5m.32 -3.66c.577 -.059 1.162 .162 1.68 .66l2 2" + } + ] + ], + "photo-plus": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5m-16 3l4 -4c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l1 -1c.617 -.593 1.328 -.793 2.009 -.598m-1.009 6.598h6m-3 -3v6" + } + ] + ], + "photo-search": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4.5m-16 3.5l4 -4c.928 -.893 2.072 -.893 3 0l2 2m5 5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5.2 2.2l1.8 1.8" + } + ] + ], + "photo-shield": [ + [ + "path", + { + "d": "M15 8h.01m-3.51 12h-4.5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v4m-16 4l4 -4c.928 -.893 2.072 -.893 3 0l1.5 1.5m9.5 3.5c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z" + } + ] + ], + "photo-star": [ + [ + "path", + { + "d": "M15 8h.01m-4.01 12h-4a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3.5m-16 4.5l4 -4c.928 -.893 2.072 -.893 3 0l2 2m4.8 7.817l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" + } + ] + ], + "photo-up": [ + [ + "path", + { + "d": "M15 8h.01m-3.01 12h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5m-16 3l4 -4c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l1 -1c.617 -.593 1.328 -.793 2.009 -.598m1.991 9.598v-6m3 3l-3 -3l-3 3" + } + ] + ], + "photo-x": [ + [ + "path", + { + "d": "M15 8h.01m-2.01 12h-6a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6m-16 2l4 -4c.928 -.893 2.072 -.893 3 0l2.5 2.5m8 8l-5 -5m0 5l5 -5" + } + ] + ], + "photo": [ + [ + "path", + { + "d": "M15 8l.01 0m-11.01 -4m0 3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3zm0 8l4 -4a3 5 0 0 1 3 0l5 5m-2 -2l1 -1a3 5 0 0 1 3 0l2 2" + } + ] + ], + "physotherapist": [ + [ + "path", + { + "d": "M9 15l-1 -3l4 -2l4 1h3.5m-15.5 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m9 -13m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 11v-7m-4 10h7l1 -4l4 -2m-2 6h3" + } + ] + ], + "picture-in-picture-off": [ + [ + "path", + { + "d": "M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4m-7 3m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1zm-7 -6l4 4m-4 -1v-3h3" + } + ] + ], + "picture-in-picture-on": [ + [ + "path", + { + "d": "M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4m-7 3m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1zm-7 -6l4 4m-3 0h3v-3" + } + ] + ], + "picture-in-picture-top": [ + [ + "path", + { + "d": "M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4m-6 -3h5a1 1 0 0 0 1 -1v-3a1 1 0 0 0 -1 -1h-5a1 1 0 0 0 -1 1v3a1 1 0 0 0 1 1z" + } + ] + ], + "picture-in-picture": [ + [ + "path", + { + "d": "M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4m-7 3m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z" + } + ] + ], + "pig-money": [ + [ + "path", + { + "d": "M15 11v.01m-9.827 -2.632a3 3 0 1 1 4.656 -1.377m6.171 -3v3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.336 .95 -.907 1.8 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3h0z" + } + ] + ], + "pig-off": [ + [ + "path", + { + "d": "M15 11v.01m-5 -5.01h1.499l4.5 -3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342c-.057 .16 -.12 .318 -.19 .472m-1.467 2.528v1.5a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 1.5 -9.928m-3.5 -3.545l18 18" + } + ] + ], + "pig": [ + [ + "path", + { + "d": "M15 11v.01m1 -8.01l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l0 -.027a6 6 0 0 1 4 -10.473h2.5l4.5 -3z" + } + ] + ], + "pilcrow": [ + [ + "path", + { + "d": "M13 4v16m4 -16v16m2 -16h-9.5a4.5 4.5 0 0 0 0 9h3.5" + } + ] + ], + "pill-off": [ + [ + "path", + { + "d": "M10.495 6.505l2 -2a4.95 4.95 0 0 1 7 7l-2 2m-2 2l-4 4a4.95 4.95 0 0 1 -7 -7l4 -4l7 7m-12.5 -12.5l18 18" + } + ] + ], + "pill": [ + [ + "path", + { + "d": "M4.5 12.5l8 -8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1 -7 -7m4 -4l7 7" + } + ] + ], + "pills": [ + [ + "path", + { + "d": "M8 8m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m14 9m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-8.5 -12.5l7 7m8 3l-5 5" + } + ] + ], + "pin-filled": [ + [ + "path", + { + "d": "M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M9 15l-4.5 4.5m10 -15.5l5.5 5.5" + } + ] + ], + "pin": [ + [ + "path", + { + "d": "M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4m-10.5 6l-4.5 4.5m10 -15.5l5.5 5.5" + } + ] + ], + "ping-pong": [ + [ + "path", + { + "d": "M12.718 20.713a7.64 7.64 0 0 1 -7.48 -12.755l.72 -.72a7.643 7.643 0 0 1 9.105 -1.283l2.387 -2.345a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-2.346 2.387a7.644 7.644 0 0 1 -1.052 8.864m-2.993 .198m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-1.7 -12.7l9.4 9.4" + } + ] + ], + "pinned-filled": [ + [ + "path", + { + "d": "M9 4v6l-2 4v2h10v-2l-2 -4v-6", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M12 16l0 5m-4 -17l8 0" + } + ] + ], + "pinned-off": [ + [ + "path", + { + "d": "M3 3l18 18m-6 -16.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251m-10.5 6l-4.5 4.5m10 -15.5l5.5 5.5" + } + ] + ], + "pinned": [ + [ + "path", + { + "d": "M9 4v6l-2 4v2h10v-2l-2 -4v-6m-3 12l0 5m-4 -17l8 0" + } + ] + ], + "pizza-off": [ + [ + "path", + { + "d": "M10.313 6.277l1.687 -3.277l5.34 10.376m2.477 6.463a19.093 19.093 0 0 1 -7.817 1.661c-3.04 0 -5.952 -.714 -8.5 -1.983l5.434 -10.559m-3.554 6.908a14.94 14.94 0 0 0 6.815 1.634c1.56 0 3.105 -.24 4.582 -.713m-5.777 -2.787v-.01m-8 -10.99l18 18" + } + ] + ], + "pizza": [ + [ + "path", + { + "d": "M12 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983zm-6.62 -5.634a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479m-5.697 -5.011v-.01m-2 3v-.01" + } + ] + ], + "placeholder": [ + [ + "path", + { + "d": "M10 20.415a8 8 0 1 0 3 -15.415h-3m3 3l-3 -3l3 -3m-6 15l4 -4l-4 -4l-4 4z" + } + ] + ], + "plane-arrival": [ + [ + "path", + { + "d": "M15.157 11.81l4.83 1.295a2 2 0 1 1 -1.036 3.863l-14.489 -3.882l-1.345 -6.572l2.898 .776l1.414 2.45l2.898 .776l-.12 -7.279l2.898 .777l2.052 7.797zm-12.157 9.19h18" + } + ] + ], + "plane-departure": [ + [ + "path", + { + "d": "M14.639 10.258l4.83 -1.294a2 2 0 1 1 1.035 3.863l-14.489 3.883l-4.45 -5.02l2.897 -.776l2.45 1.414l2.897 -.776l-3.743 -6.244l2.898 -.777l5.675 5.727zm-11.639 10.742h18" + } + ] + ], + "plane-inflight": [ + [ + "path", + { + "d": "M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7zm-12 9.915h18" + } + ] + ], + "plane-off": [ + [ + "path", + { + "d": "M9.788 5.758l-.788 -2.758h3l4 7h4a2 2 0 1 1 0 4h-2m-2.718 1.256l-3.282 5.744h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h3m-7 -7l18 18" + } + ] + ], + "plane-tilt": [ + [ + "path", + { + "d": "M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z" + } + ] + ], + "plane": [ + [ + "path", + { + "d": "M16 10h4a2 2 0 0 1 0 4h-4l-4 7h-3l2 -7h-4l-2 2h-3l2 -4l-2 -4h3l2 2h4l-2 -7h3z" + } + ] + ], + "planet-off": [ + [ + "path", + { + "d": "M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113m1.655 1.653a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054m-6.474 -2.47l18 18" + } + ] + ], + "planet": [ + [ + "path", + { + "d": "M18.816 13.58c2.292 2.138 3.546 4 3.092 4.9c-.745 1.46 -5.783 -.259 -11.255 -3.838c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.464 -.91 2.926 -.444 5.803 .805m4.104 5.676m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" + } + ] + ], + "plant-2-off": [ + [ + "path", + { + "d": "M2 9c0 5.523 4.477 10 10 10a9.953 9.953 0 0 0 5.418 -1.593m2.137 -1.855a9.961 9.961 0 0 0 2.445 -6.552m-10 10c0 -1.988 .58 -3.84 1.58 -5.397m1.878 -2.167a9.961 9.961 0 0 1 6.542 -2.436m-20 0a10 10 0 0 1 10 10m0 -15a9.7 9.7 0 0 1 3 7.013m-5.992 .487a9.696 9.696 0 0 1 .163 -2.318m1.082 -2.942a9.696 9.696 0 0 1 1.745 -2.24m-9 -1l18 18" + } + ] + ], + "plant-2": [ + [ + "path", + { + "d": "M2 9a10 10 0 1 0 20 0m-10 10a10 10 0 0 1 10 -10m-20 0a10 10 0 0 1 10 10m0 -15a9.7 9.7 0 0 1 2.99 7.5m-5.98 0a9.7 9.7 0 0 1 2.99 -7.5" + } + ] + ], + "plant-off": [ + [ + "path", + { + "d": "M17 17v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4h8m-3.1 -7.092a6 6 0 0 0 -4.79 -4.806m-4.11 -.102v2a6 6 0 0 0 6 6h2m1.531 -2.472a6 6 0 0 1 5.469 -3.528h3v1a6 6 0 0 1 -5.037 5.923m-3.963 3.077v-3m-9 -9l18 18" + } + ] + ], + "plant": [ + [ + "path", + { + "d": "M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4zm5 -6a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3m0 3l0 -6" + } + ] + ], + "play-card-off": [ + [ + "path", + { + "d": "M7 3h10a2 2 0 0 1 2 2v10m0 4a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14m11 13h.01m-2.294 -4.288l-1.716 2.288l-3 -4l1.29 -1.72m-7.29 -7.28l18 18" + } + ] + ], + "play-card": [ + [ + "path", + { + "d": "M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2zm-11 1h.01m7.99 12h.01m-4.01 -2l-3 -4l3 -4l3 4z" + } + ] + ], + "player-eject-filled": [ + [ + "path", + { + "d": "M5 12h14l-7 -8z", + "fill": "currentColor" + } + ], + [ + "rect", + { + "x": "5", + "y": "16", + "width": "14", + "height": "4", + "rx": "1", + "fill": "currentColor" + } + ] + ], + "player-eject": [ + [ + "path", + { + "d": "M5 12h14l-7 -8zm0 4m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z" + } + ] + ], + "player-pause-filled": [ + [ + "rect", + { + "x": "6", + "y": "5", + "width": "4", + "height": "14", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "rect", + { + "x": "14", + "y": "5", + "width": "4", + "height": "14", + "rx": "1", + "fill": "currentColor" + } + ] + ], + "player-pause": [ + [ + "path", + { + "d": "M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm8 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" + } + ] + ], + "player-play-filled": [ + [ + "path", + { + "d": "M7 4v16l13 -8z", + "fill": "currentColor" + } + ] + ], + "player-play": [ + [ + "path", + { + "d": "M7 4v16l13 -8z" + } + ] + ], + "player-record-filled": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0", + "fill": "currentColor" + } + ] + ], + "player-record": [ + [ + "path", + { + "d": "M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" + } + ] + ], + "player-skip-back-filled": [ + [ + "path", + { + "d": "M20 5v14l-12 -7z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M4 5l0 14" + } + ] + ], + "player-skip-back": [ + [ + "path", + { + "d": "M20 5v14l-12 -7zm-16 0l0 14" + } + ] + ], + "player-skip-forward-filled": [ + [ + "path", + { + "d": "M4 5v14l12 -7z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M20 5l0 14" + } + ] + ], + "player-skip-forward": [ + [ + "path", + { + "d": "M4 5v14l12 -7zm16 0l0 14" + } + ] + ], + "player-stop-filled": [ + [ + "rect", + { + "x": "5", + "y": "5", + "width": "14", + "height": "14", + "rx": "2", + "fill": "currentColor" + } + ] + ], + "player-stop": [ + [ + "path", + { + "d": "M5 5m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" + } + ] + ], + "player-track-next-filled": [ + [ + "path", + { + "d": "M3 5v14l8 -7z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M14 5v14l8 -7z", + "fill": "currentColor" + } + ] + ], + "player-track-next": [ + [ + "path", + { + "d": "M3 5v14l8 -7zm11 0v14l8 -7z" + } + ] + ], + "player-track-prev-filled": [ + [ + "path", + { + "d": "M21 5v14l-8 -7z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M10 5v14l-8 -7z", + "fill": "currentColor" + } + ] + ], + "player-track-prev": [ + [ + "path", + { + "d": "M21 5v14l-8 -7zm-11 0v14l-8 -7z" + } + ] + ], + "playlist-add": [ + [ + "path", + { + "d": "M19 8h-14m0 4h9m-3 4h-6m10 0h6m-3 -3v6" + } + ] + ], + "playlist-off": [ + [ + "path", + { + "d": "M14 14a3 3 0 1 0 3 3m0 -4v-9h4m-8 1h-4m-4 0h-2m0 4h6m0 4h-6m0 -10l18 18" + } + ] + ], + "playlist-x": [ + [ + "path", + { + "d": "M19 8h-14m0 4h7m0 4h-7m11 -2l4 4m0 -4l-4 4" + } + ] + ], + "playlist": [ + [ + "path", + { + "d": "M14 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m6 0v-13h4m-8 1h-10m0 4l10 0m-4 4h-6" + } + ] + ], + "playstation-circle": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm0 -9m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0" + } + ] + ], + "playstation-square": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-4 -13m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z" + } + ] + ], + "playstation-triangle": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-4.5 -6h9l-4.5 -8z" + } + ] + ], + "playstation-x": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-3.5 -12.5l7 7m-7 0l7 -7" + } + ] + ], + "plug-connected-x": [ + [ + "path", + { + "d": "M20 16l-4 4m-9 -8l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5zm10 0l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5zm-14 9l2.5 -2.5m13 -13l2.5 -2.5m-11 8l-2 2m5 1l-2 2m5 0l4 4" + } + ] + ], + "plug-connected": [ + [ + "path", + { + "d": "M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5zm10 0l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5zm-14 9l2.5 -2.5m13 -13l2.5 -2.5m-11 8l-2 2m5 1l-2 2" + } + ] + ], + "plug-off": [ + [ + "path", + { + "d": "M16.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159m-3.89 12.105l3.5 -3.5m7.5 -12.5l-3.5 3.5m8.5 1.5l-3.5 3.5m-13.5 -9.5l18 18" + } + ] + ], + "plug-x": [ + [ + "path", + { + "d": "M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165m-12.95 6.835l3.5 -3.5m7.5 -12.5l-3.5 3.5m8.5 1.5l-3.5 3.5m-.5 3.5l4 4m0 -4l-4 4" + } + ] + ], + "plug": [ + [ + "path", + { + "d": "M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054zm-5.785 14l3.5 -3.5m7.5 -12.5l-3.5 3.5m8.5 1.5l-3.5 3.5" + } + ] + ], + "plus": [ + [ + "path", + { + "d": "M12 5l0 14m-7 -7l14 0" + } + ] + ], + "png": [ + [ + "path", + { + "d": "M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1m-17 4v-8h2a2 2 0 1 1 0 4h-2m7 4v-8l4 8v-8" + } + ] + ], + "podium-off": [ + [ + "path", + { + "d": "M12 8h7l-.621 2.485a2 2 0 0 1 -1.94 1.515h-.439m-4 0h-4.439a2 2 0 0 1 -1.94 -1.515l-.621 -2.485h3m-1 0v-1m.864 -3.106a2.99 2.99 0 0 1 2.136 -.894m-2 9l1 9m6.599 -5.387l-.599 5.387m-8 0h10m-14 -18l18 18" + } + ] + ], + "podium": [ + [ + "path", + { + "d": "M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485zm2 0v-2a3 3 0 0 1 3 -3m-2 9l1 9m7 -9l-1 9m-8 0h10" + } + ] + ], + "point-filled": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", + "fill": "currentColor" + } + ] + ], + "point-off": [ + [ + "path", + { + "d": "M9.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4m-9 -5l18 18" + } + ] + ], + "point": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" + } + ] + ], + "pointer": [ + [ + "path", + { + "d": "M7.904 17.563a1.2 1.2 0 0 0 2.228 .308l2.09 -3.093l4.907 4.907a1.067 1.067 0 0 0 1.509 0l1.047 -1.047a1.067 1.067 0 0 0 0 -1.509l-4.907 -4.907l3.113 -2.09a1.2 1.2 0 0 0 -.309 -2.228l-13.582 -3.904l3.904 13.563z" + } + ] + ], + "pokeball-off": [ + [ + "path", + { + "d": "M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719m-8.49 -8.481a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39m-10.284 2.711h6m7 0h5m-18 -9l18 18" + } + ] + ], + "pokeball": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6 0h6m6 0h6" + } + ] + ], + "poker-chip": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 -9v4m0 10v4m-9 -9h4m10 0h4m-2.636 -6.364l-2.828 2.828m-7.072 7.072l-2.828 2.828m0 -12.728l2.828 2.828m7.072 7.072l2.828 2.828" + } + ] + ], + "polaroid": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 10l16 0m-16 -4l3 -3c.928 -.893 2.072 -.893 3 0l4 4m-1 -1l2 -2c.928 -.893 2.072 -.893 3 0l2 2m-6 -5l.01 0" + } + ] + ], + "polygon-off": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6.5 -9.5l1.546 -1.311m5.954 -2.689l3 1.5m1.5 3l-1.185 3.318m-1.062 2.972l-.253 .71m-2.5 .5l-7 -5m-3.5 -9.5l18 18" + } + ] + ], + "polygon": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6.5 -9.5l3.5 -3m4 -1l3 1.5m1.5 3l-2.5 7m-2.5 .5l-7 -5" + } + ] + ], + "poo": [ + [ + "path", + { + "d": "M10 12h.01m3.99 0h.01m-4.01 4a3.5 3.5 0 0 0 4 0m-3 -12c2 0 3.5 1.5 3.5 4l.164 0a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 0h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 0c1.5 0 2.5 -2 1.5 -4z" + } + ] + ], + "pool-off": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.303 0 .6 -.045 .876 -.146m-18.876 -4.854a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1.13 -.856m5.727 1.717a2.4 2.4 0 0 0 1.143 -.861m-7 -5v-6.5a1.5 1.5 0 0 1 3 0m-9 7.5v-3m0 -4v-.5a1.5 1.5 0 0 0 -1.936 -1.436m7.936 1.936h-6m0 5h1m4 0h1m-12 -7l18 18" + } + ] + ], + "pool": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-20 -4a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-7 -4v-7.5a1.5 1.5 0 0 1 3 0m-9 7.5v-7.5a1.5 1.5 0 0 0 -3 0m9 .5l-6 0m0 5l6 0" + } + ] + ], + "power": [ + [ + "path", + { + "d": "M7 6a7.75 7.75 0 1 0 10 0m-5 -2l0 8" + } + ] + ], + "pray": [ + [ + "path", + { + "d": "M12 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 15h8l-4 -4v-7l4 3l2 -2" + } + ] + ], + "premium-rights": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10.867 -2.25c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75m1.867 -7.248v2m0 6v2" + } + ] + ], + "prescription": [ + [ + "path", + { + "d": "M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5m13 9l-9 -9m3 9l6 -6" + } + ] + ], + "presentation-analytics": [ + [ + "path", + { + "d": "M9 12v-4m6 4v-2m-3 2v-1m-9 -7h18m-17 0v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10m-8 12v4m-3 0h6" + } + ] + ], + "presentation-off": [ + [ + "path", + { + "d": "M3 4h1m4 0h13m-17 0v10a2 2 0 0 0 2 2h10m3.42 -.592c.359 -.362 .58 -.859 .58 -1.408v-10m-8 12v4m-3 0h6m-7 -8l2 -2m4 0l2 -2m-13 -5l18 18" + } + ] + ], + "presentation": [ + [ + "path", + { + "d": "M3 4l18 0m-17 0v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-10m-8 12l0 4m-3 0l6 0m-7 -8l3 -3l2 2l3 -3" + } + ] + ], + "printer-off": [ + [ + "path", + { + "d": "M20.412 16.416c.363 -.362 .588 -.863 .588 -1.416v-4a2 2 0 0 0 -2 -2h-6m-4 0h-4a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2m10 -8v-4a2 2 0 0 0 -2 -2h-6c-.551 0 -1.05 .223 -1.412 .584m-.588 3.416v2m10 8v2a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h4m-10 -10l18 18" + } + ] + ], + "printer": [ + [ + "path", + { + "d": "M17 17h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2m10 -8v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m0 4m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z" + } + ] + ], + "prison": [ + [ + "path", + { + "d": "M18 4v16m-4 -16v16m-8 -16v5m0 6v5m4 -16v5m1 0h-6v6h6zm-1 6v5m-2 -8h-.01" + } + ] + ], + "prompt": [ + [ + "path", + { + "d": "M5 7l5 5l-5 5m8 0l6 0" + } + ] + ], + "propeller-off": [ + [ + "path", + { + "d": "M10.448 10.432a3 3 0 1 0 4.106 4.143m-.282 -4.303c.66 -1.459 1.058 -2.888 1.198 -4.286c.22 -1.63 -.762 -2.986 -3.47 -2.986c-1.94 0 -3 .696 -3.355 1.69m.697 4.653c.145 .384 .309 .77 .491 1.157m3.336 6.251c.97 1.395 2.057 2.523 3.257 3.386c1.02 .789 2.265 .853 3.408 -.288m1.479 -2.493c.492 -1.634 -.19 -2.726 -1.416 -3.229c-.82 -.37 -1.703 -.654 -2.65 -.852m-8.583 -.276c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386m-7.831 -13.751l18 18" + } + ] + ], + "propeller": [ + [ + "path", + { + "d": "M12 13m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5.167 -2.5c.722 -1.538 1.156 -3.043 1.303 -4.514c.22 -1.63 -.762 -2.986 -3.47 -2.986s-3.69 1.357 -3.47 2.986c.147 1.471 .581 2.976 1.303 4.514m3.336 6.251c.97 1.395 2.057 2.523 3.257 3.386c1.3 1 2.967 .833 4.321 -1.512c1.354 -2.345 .67 -3.874 -.85 -4.498c-1.348 -.608 -2.868 -.985 -4.562 -1.128m-6.671 0c-1.693 .143 -3.213 .52 -4.56 1.128c-1.522 .623 -2.206 2.153 -.852 4.498s3.02 2.517 4.321 1.512c1.2 -.863 2.287 -1.991 3.258 -3.386" + } + ] + ], + "pumpkin-scary": [ + [ + "path", + { + "d": "M9 15l1.5 1l1.5 -1l1.5 1l1.5 -1m-5 -4h.01m3.99 0h.01m2.99 -4.918c2.609 .588 3.627 4.162 2.723 7.983c-.903 3.82 -2.75 6.44 -5.359 5.853a3.355 3.355 0 0 1 -.774 -.279a3.728 3.728 0 0 1 -1.59 .361c-.556 0 -1.09 -.127 -1.59 -.362a3.296 3.296 0 0 1 -.774 .28c-2.609 .588 -4.456 -2.033 -5.36 -5.853c-.903 -3.82 .115 -7.395 2.724 -7.983c1.085 -.244 1.575 .066 2.585 .787c.716 -.554 1.54 -.869 2.415 -.869c.876 0 1.699 .315 2.415 .87c1.01 -.722 1.5 -1.032 2.585 -.788zm-5 -.082c0 -1.226 .693 -2.346 1.789 -2.894l.211 -.106" + } + ] + ], + "puzzle-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 -2v2.5a0.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a0.5 .5 0 0 1 .5 .5v1.5v1.5a0.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a0.5 .5 0 0 0 -.5 .5v2.5m8 -8h-2.5a0.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a0.5 .5 0 0 1 -.5 .5h-1.5h-1.5a0.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a0.5 .5 0 0 0 -.5 -.5h-2.5" + } + ] + ], + "puzzle-filled": [ + [ + "path", + { + "d": "M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 1 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 1 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1", + "fill": "currentColor" + } + ] + ], + "puzzle-off": [ + [ + "path", + { + "d": "M8.18 4.171a2 2 0 0 1 3.82 .829v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 .819 3.825m-2.819 1.175v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 1 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 1 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3m-4 -4l18 18" + } + ] + ], + "puzzle": [ + [ + "path", + { + "d": "M4 7h3a1 1 0 0 0 1 -1v-1a2 2 0 0 1 4 0v1a1 1 0 0 0 1 1h3a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h1a2 2 0 0 1 0 4h-1a1 1 0 0 0 -1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-1a2 2 0 0 0 -4 0v1a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h1a2 2 0 0 0 0 -4h-1a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1" + } + ] + ], + "pyramid-off": [ + [ + "path", + { + "d": "M8.483 8.471l-5.483 8.529l9 4l6.22 -2.764m2.78 -1.236l-9 -14l-1.937 3.014m1.937 -3.014v5m0 4v9m-9 -18l18 18" + } + ] + ], + "pyramid": [ + [ + "path", + { + "d": "M3 17l9 4l9 -4l-9 -14zm9 -14v18" + } + ] + ], + "qrcode-off": [ + [ + "path", + { + "d": "M8 4h1a1 1 0 0 1 1 1v1m-.297 3.711a1 1 0 0 1 -.703 .289h-4a1 1 0 0 1 -1 -1v-4c0 -.275 .11 -.524 .29 -.705m2.71 12.705v.01m7 -13.01m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-7 2v.01m-3 6.99m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm13 -8v.01m3 6.99v.01m-6 -.01v3m0 3h3m-14 -17l18 18" + } + ] + ], + "qrcode": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm3 12l0 .01m7 -13.01m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm-7 2l0 .01m-3 6.99m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm13 -8l0 .01m-3 6.99l3 0m3 0l0 .01m-6 -.01l0 3m0 3l3 0m0 -3l3 0l0 3" + } + ] + ], + "question-circle": [ + [ + "path", + { + "d": "M12 16v.01m0 -3.01a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483m1.5 2.299m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "question-mark": [ + [ + "path", + { + "d": "M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4m0 4l0 .01" + } + ] + ], + "quote-off": [ + [ + "path", + { + "d": "M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1m4 4v3c0 2.667 -1.333 4.333 -4 5m13 -7h-4m-1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 .66 -.082 1.26 -.245 1.798m-1.653 2.29c-.571 .4 -1.272 .704 -2.102 .912m-12 -15l18 18" + } + ] + ], + "quote": [ + [ + "path", + { + "d": "M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5m13 -7h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5" + } + ] + ], + "radar-2": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m4.51 3.56a5 5 0 1 0 -3.51 1.44m6.832 .86a9 9 0 1 0 -6.832 3.14m0 -9v9" + } + ] + ], + "radar-off": [ + [ + "path", + { + "d": "M11.291 11.295a1 1 0 0 0 .709 1.705v8c2.488 0 4.74 -1.01 6.37 -2.642m1.675 -2.319a8.962 8.962 0 0 0 .955 -4.039h-5m0 -3a5 5 0 0 0 -5.063 -1.88m-2.466 1.347a5 5 0 0 0 .53 7.535m11.486 -7a9 9 0 0 0 -12.525 -5.032m-2.317 1.675a9 9 0 0 0 3.36 14.852m-6 -17.49l18 18" + } + ] + ], + "radar": [ + [ + "path", + { + "d": "M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9m-5 -3a5 5 0 1 0 -7 7m11.486 -7a9 9 0 1 0 -11.482 11.495" + } + ] + ], + "radio-off": [ + [ + "path", + { + "d": "M14 3l-4.986 2m-2.875 1.15l-1.51 .604a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 .708 -.294m.292 -3.706v-8a1 1 0 0 0 -1 -1h-8m-4 0h-2.5m-.5 5h8m4 0h4m-13 0v-2m6 6v.01m-10 -13.01l18 18" + } + ] + ], + "radio": [ + [ + "path", + { + "d": "M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5m-.5 5h16m-13 0v-2m10 6v.01m-4 -.01v.01" + } + ] + ], + "radioactive-off": [ + [ + "path", + { + "d": "M14.118 14.127c-.182 .181 -.39 .341 -.618 .473l3 5.19a9 9 0 0 0 1.856 -1.423m1.68 -2.32a8.993 8.993 0 0 0 .964 -4.047h-5m-2.5 -2.6l3 -5.19a9 9 0 0 0 -8.536 -.25m2.536 10.64l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6m-7.5 -11.6l18 18" + } + ] + ], + "radioactive": [ + [ + "path", + { + "d": "M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6m0 -5.2l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0m-3 5.2l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6" + } + ] + ], + "radius-bottom-left": [ + [ + "path", + { + "d": "M19 19h-6a8 8 0 0 1 -8 -8v-6" + } + ] + ], + "radius-bottom-right": [ + [ + "path", + { + "d": "M19 5v6a8 8 0 0 1 -8 8h-6" + } + ] + ], + "radius-top-left": [ + [ + "path", + { + "d": "M5 19v-6a8 8 0 0 1 8 -8h6" + } + ] + ], + "radius-top-right": [ + [ + "path", + { + "d": "M5 5h6a8 8 0 0 1 8 8v6" + } + ] + ], + "rainbow-off": [ + [ + "path", + { + "d": "M22 17c0 -5.523 -4.477 -10 -10 -10c-.308 0 -.613 .014 -.914 .041m-3.208 .845a10 10 0 0 0 -5.878 9.114m9.088 -5.931a6 6 0 0 0 -5.088 5.931m8 0a2 2 0 1 0 -4 0m-7 -14l18 18" + } + ] + ], + "rainbow": [ + [ + "path", + { + "d": "M22 17c0 -5.523 -4.477 -10 -10 -10s-10 4.477 -10 10m16 0a6 6 0 1 0 -12 0m8 0a2 2 0 1 0 -4 0" + } + ] + ], + "rating-12-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m4 3v-6m8.5 3h3m-1.5 -1.5v3m-7 -3a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3" + } + ] + ], + "rating-14-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m4 3v-6m8.5 3h3m-1.5 -1.5v3m-4.5 1.5v-6m-2.5 0v4h3" + } + ] + ], + "rating-16-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8.5 1.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-3 1.5v-6m8.5 3h3m-1.5 -1.5v3m-7 0v-3a1.5 1.5 0 0 1 1.5 -1.5h1" + } + ] + ], + "rating-18-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8.5 -1.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m1.5 3m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0m-3 1.5v-6m8.5 3h3m-1.5 -1.5v3" + } + ] + ], + "rating-21-plus": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10 3v-6m2.5 3h3m-1.5 -1.5v3m-10 -3a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3" + } + ] + ], + "razor-electric": [ + [ + "path", + { + "d": "M8 3v2m4 -2v2m4 -2v2m-7 7v6a3 3 0 0 0 6 0v-6h-6zm-1 -7h8l-1 4h-6zm4 12v1" + } + ] + ], + "razor": [ + [ + "path", + { + "d": "M7 3h10v4h-10zm5 4v4a2 2 0 0 1 2 2v6a2 2 0 1 1 -4 0v-6a2 2 0 0 1 2 -2z" + } + ] + ], + "receipt-2": [ + [ + "path", + { + "d": "M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m9 -13h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5" + } + ] + ], + "receipt-off": [ + [ + "path", + { + "d": "M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m6 -14l4 0m-6 4l2 0m2 4l2 0m0 -4l0 .01m-12 -8.01l18 18" + } + ] + ], + "receipt-refund": [ + [ + "path", + { + "d": "M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m10 -7v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2" + } + ] + ], + "receipt-tax": [ + [ + "path", + { + "d": "M9 14l6 -6m-5.5 .5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m5.5 5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-9 7.5v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" + } + ] + ], + "receipt": [ + [ + "path", + { + "d": "M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2" + } + ] + ], + "recharging": [ + [ + "path", + { + "d": "M7.038 4.5a9 9 0 0 0 -2.495 2.47m-1.357 3.239a9 9 0 0 0 0 3.508m1.314 3.245a9 9 0 0 0 2.47 2.495m3.239 1.357a9 9 0 0 0 3.5 0m3.253 -1.314a9 9 0 0 0 2.495 -2.47m1.357 -3.239a9 9 0 0 0 0 -3.508m-1.314 -3.245a9 9 0 0 0 -2.47 -2.495m-3.239 -1.357a9 9 0 0 0 -3.508 -.02m1.717 4.834l-2 4h4l-2 4m0 5a9 9 0 0 0 0 -18" + } + ] + ], + "record-mail-off": [ + [ + "path", + { + "d": "M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m14.569 2.557a3 3 0 1 0 -4.113 -4.149m-7.456 4.592h8m-12 -12l18 18" + } + ] + ], + "record-mail": [ + [ + "path", + { + "d": "M7 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-7 3l10 0" + } + ] + ], + "rectangle-filled": [ + [ + "rect", + { + "x": "3", + "y": "5", + "width": "18", + "height": "14", + "rx": "2", + "fill": "currentColor" + } + ] + ], + "rectangle-vertical-filled": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z", + "fill": "currentColor" + } + ] + ], + "rectangle-vertical": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" + } + ] + ], + "rectangle": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" + } + ] + ], + "recycle-off": [ + [ + "path", + { + "d": "M12 17l-2 2l2 2m-2 -2h9m1.896 -2.071a2 2 0 0 0 -.146 -.679l-.55 -1m-11.664 -4.25l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024m9.513 -7.976l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976m-6.849 -1.774l18 18" + } + ] + ], + "recycle": [ + [ + "path", + { + "d": "M12 17l-2 2l2 2m-2 -2h9a2 2 0 0 0 1.75 -2.75l-.55 -1m-11.664 -4.25l-.732 -2.732l-2.732 .732m2.732 -.732l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024m9.513 -7.976l2.732 .732l.732 -2.732m-.732 2.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976" + } + ] + ], + "refresh-alert": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4m-4 4a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4m-4 -6l0 3m0 3l.01 0" + } + ] + ], + "refresh-dot": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4m-4 4a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4m-4 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "refresh-off": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -11.271 -6.305m-2.41 1.624a8.083 8.083 0 0 0 -1.819 2.681m-.5 -4v4h4m-4 4a8.1 8.1 0 0 0 13.671 4.691m2.329 -1.691v-1h-1m-16 -12l18 18" + } + ] + ], + "refresh": [ + [ + "path", + { + "d": "M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4m-4 4a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4" + } + ] + ], + "regex-off": [ + [ + "path", + { + "d": "M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5zm10.5 -7.125l3 -1.687m-3 1.687v3.375m0 -3.375l-3 -1.687m3 1.687l3 1.688m-3 -5.063v3.375l-3 1.688m-11 -6.563l18 18" + } + ] + ], + "regex": [ + [ + "path", + { + "d": "M6.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5zm10.5 -7.125l3 -1.687m-3 1.687v3.375m0 -3.375l-3 -1.687m3 1.687l3 1.688m-3 -5.063v3.375l-3 1.688" + } + ] + ], + "registered": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 3v-6h2a2 2 0 1 1 0 4h-2m4 2l-2 -2" + } + ] + ], + "relation-many-to-many": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm12 7v-4l3 4v-4m-12 4v-4l3 4v-4m3 .5l0 .01m0 2.99l0 .01" + } + ] + ], + "relation-one-to-many": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm4 3h1v4m6 0v-4l3 4v-4m-6 .5l0 .01m0 2.99l0 .01" + } + ] + ], + "relation-one-to-one": [ + [ + "path", + { + "d": "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm5 3h1v4m6 -4h1v4m-4 -3.5l0 .01m0 2.99l0 .01" + } + ] + ], + "reload": [ + [ + "path", + { + "d": "M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747m.567 -5v5h-5" + } + ] + ], + "repeat-off": [ + [ + "path", + { + "d": "M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3m3 3v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3m-4 -12l18 18" + } + ] + ], + "repeat-once": [ + [ + "path", + { + "d": "M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3m3 3v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3m4 -4l1 -1v4" + } + ] + ], + "repeat": [ + [ + "path", + { + "d": "M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3m3 3v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3" + } + ] + ], + "replace-filled": [ + [ + "rect", + { + "x": "3", + "y": "3", + "width": "6", + "height": "6", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "rect", + { + "x": "15", + "y": "15", + "width": "6", + "height": "6", + "rx": "1", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3m-10 7v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3" + } + ] + ], + "replace-off": [ + [ + "path", + { + "d": "M7 3h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714m15.7 11.714h1a1 1 0 0 1 1 1v1m-.303 3.717a1 1 0 0 1 -.697 .283h-4a1 1 0 0 1 -1 -1v-4c0 -.28 .115 -.532 .3 -.714m5.7 -4.286v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3m-10 7v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3m-8 -15l18 18" + } + ] + ], + "replace": [ + [ + "path", + { + "d": "M3 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm12 11m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm6 -5v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3m-10 7v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3" + } + ] + ], + "report-analytics": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 12v-5m3 5v-1m3 1v-3" + } + ] + ], + "report-medical": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm1 9l4 0m-2 -2l0 4" + } + ] + ], + "report-money": [ + [ + "path", + { + "d": "M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm5 6h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1m0 -8v1" + } + ] + ], + "report-off": [ + [ + "path", + { + "d": "M5.576 5.595a2 2 0 0 0 -.576 1.405v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-8a2 2 0 0 0 -2 -2h-2m-6 0a2 2 0 0 1 2 -2h2a2 2 0 1 1 0 4h-2m-8 -4l18 18" + } + ] + ], + "report-search": [ + [ + "path", + { + "d": "M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697m6.303 -9v-5a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm0 6h4m-4 4h3m5.5 2.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "report": [ + [ + "path", + { + "d": "M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697m6.303 -7v4h4m-4 -7v-4a2 2 0 0 0 -2 -2h-2m-6 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm10 13m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-6 -7h4m-4 4h3" + } + ] + ], + "resize": [ + [ + "path", + { + "d": "M4 11v8a1 1 0 0 0 1 1h8m-9 -14v-1a1 1 0 0 1 1 -1h1m5 0h2m5 0h1a1 1 0 0 1 1 1v1m0 5v2m0 5v1a1 1 0 0 1 -1 1h-1m-14 -8h7a1 1 0 0 1 1 1v7" + } + ] + ], + "ribbon-health": [ + [ + "path", + { + "d": "M7 21s9.286 -9.841 9.286 -13.841a3.864 3.864 0 0 0 -1.182 -3.008a4.13 4.13 0 0 0 -3.104 -1.144a4.13 4.13 0 0 0 -3.104 1.143a3.864 3.864 0 0 0 -1.182 3.01c0 4 9.286 13.84 9.286 13.84" + } + ] + ], + "ripple-off": [ + [ + "path", + { + "d": "M3 7c.915 -.61 1.83 -1.034 2.746 -1.272m4.212 .22c.68 .247 1.361 .598 2.042 1.052c3 2 6 2 9 0m-18 10c3 -2 6 -2 9 0c2.092 1.395 4.184 1.817 6.276 1.266m-15.276 -6.266c3 -2 6 -2 9 0m5.482 1.429c1.173 -.171 2.345 -.647 3.518 -1.429m-18 -9l18 18" + } + ] + ], + "ripple": [ + [ + "path", + { + "d": "M3 7c3 -2 6 -2 9 0s6 2 9 0m-18 10c3 -2 6 -2 9 0s6 2 9 0m-18 -5c3 -2 6 -2 9 0s6 2 9 0" + } + ] + ], + "road-off": [ + [ + "path", + { + "d": "M4 19l3.332 -11.661m8.668 -2.339l2.806 9.823m-6.806 -6.823v-2m0 7v-1m0 6v-2m-9 -13l18 18" + } + ] + ], + "road-sign": [ + [ + "path", + { + "d": "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0zm-1.5 -6.4v-2c0 -.59 .414 -1 1 -1h5m-2 -2l2 2l-2 2" + } + ] + ], + "road": [ + [ + "path", + { + "d": "M4 19l4 -14m8 0l4 14m-8 -11v-2m0 7v-2m0 7v-2" + } + ] + ], + "robot-off": [ + [ + "path", + { + "d": "M11 7h6a2 2 0 0 1 2 2v1l1 1v3l-1 1m-.171 3.811a2 2 0 0 1 -1.829 1.189h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2m3 9h4m-5.5 -4.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m8.354 .353a0.498 .498 0 0 0 -.354 -.853a0.498 .498 0 0 0 -.356 .149m-6.808 -6.806l-.336 -1.343m7 4l1 -4m-13 0l18 18" + } + ] + ], + "robot": [ + [ + "path", + { + "d": "M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2zm3 9h4m-5.5 -4.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m7.5 0m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m-6 -4.5l-1 -4m7 4l1 -4" + } + ] + ], + "rocket-off": [ + [ + "path", + { + "d": "M9.29 9.275a9.03 9.03 0 0 0 -.29 .725a6 6 0 0 0 -5 3a8 8 0 0 1 7 7a6 6 0 0 0 3 -5c.241 -.085 .478 -.18 .708 -.283m2.428 -1.61a9 9 0 0 0 2.864 -6.107a3 3 0 0 0 -3 -3a9 9 0 0 0 -6.107 2.864m-3.893 7.136a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3m5 -8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-11 -6l18 18" + } + ] + ], + "rocket": [ + [ + "path", + { + "d": "M4 13a8 8 0 0 1 7 7a6 6 0 0 0 3 -5a9 9 0 0 0 6 -8a3 3 0 0 0 -3 -3a9 9 0 0 0 -8 6a6 6 0 0 0 -5 3m3 1a6 6 0 0 0 -3 6a6 6 0 0 0 6 -3m5 -8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "roller-skating": [ + [ + "path", + { + "d": "M5.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -1 -1.1l.8 -8a1 1 0 0 1 1 -.9zm2.095 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "rollercoaster-off": [ + [ + "path", + { + "d": "M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.759 8.759 0 0 1 2.35 -3.652m2.403 -1.589a8.76 8.76 0 0 1 3.572 -.759h3.675m-1 0v7m0 4v1m-12 0v-3m4 3v-9m4 -2.5v2.5m0 4v5m-1 -18h5v3h-5zm-5.554 2.415l.554 -.415l2 2.5l-.285 .213m-2.268 1.702l-1.447 1.085l-1.8 -.5l-.2 -2l1.139 -.854m-4.139 -4.146l18 18" + } + ] + ], + "rollercoaster": [ + [ + "path", + { + "d": "M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675m-1 0v12m-12 0v-3m4 3v-10m4 -1.5v11.5m-1 -18h5v3h-5zm-9 5l4 -3l2 2.5l-4 3l-1.8 -.5z" + } + ] + ], + "rosette-filled": [ + [ + "path", + { + "d": "M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1", + "fill": "currentColor" + } + ] + ], + "rosette-number-0": [ + [ + "path", + { + "d": "M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0zm-5 -2.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-1": [ + [ + "path", + { + "d": "M10 10l2 -2v8m-7 -8.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-2": [ + [ + "path", + { + "d": "M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m-9 -8.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-3": [ + [ + "path", + { + "d": "M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1m-5 -7.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-4": [ + [ + "path", + { + "d": "M10 8v3a1 1 0 0 0 1 1h3m0 -4v8m-9 -8.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-5": [ + [ + "path", + { + "d": "M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4m-9 -.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-6": [ + [ + "path", + { + "d": "M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3m-5 -4.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-7": [ + [ + "path", + { + "d": "M10 8h4l-2 8m-7 -8.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-8": [ + [ + "path", + { + "d": "M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1m-8 -4.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette-number-9": [ + [ + "path", + { + "d": "M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m-9 -4.8a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rosette": [ + [ + "path", + { + "d": "M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" + } + ] + ], + "rotate-2": [ + [ + "path", + { + "d": "M15 4.55a8 8 0 0 0 -6 14.9m0 -4.45v5h-5m14.37 -12.84l0 .01m-5.37 12.77l0 .01m3.84 -1.58l0 .01m2.53 -3.28l0 .01m.57 -4.11l0 .01" + } + ] + ], + "rotate-360": [ + [ + "path", + { + "d": "M12 16h4v4m3.458 -8.958c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515" + } + ] + ], + "rotate-clockwise-2": [ + [ + "path", + { + "d": "M9 4.55a8 8 0 0 1 6 14.9m0 -4.45v5h5m-14.37 -12.84l0 .01m-1.57 3.83l0 .01m.57 4.09l0 .01m2.53 3.26l0 .01m3.84 1.56l0 .01" + } + ] + ], + "rotate-clockwise": [ + [ + "path", + { + "d": "M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5" + } + ] + ], + "rotate-dot": [ + [ + "path", + { + "d": "M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5m-2.95 -3m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "rotate-rectangle": [ + [ + "path", + { + "d": "M10.09 4.01l.496 -.495a2 2 0 0 1 2.828 0l7.071 7.07a2 2 0 0 1 0 2.83l-7.07 7.07a2 2 0 0 1 -2.83 0l-7.07 -7.07a2 2 0 0 1 0 -2.83l3.535 -3.535h-3.988m3.988 3.988v-3.988" + } + ] + ], + "rotate": [ + [ + "path", + { + "d": "M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5" + } + ] + ], + "route-2": [ + [ + "path", + { + "d": "M3 17l4 4m0 -4l-4 4m14 -18l4 4m0 -4l-4 4m-3 -2a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2" + } + ] + ], + "route-off": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 -14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4 14h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5m-9 -2l18 18" + } + ] + ], + "route": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 -14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4 14h4.5a3.5 3.5 0 0 0 0 -7h-8a3.5 3.5 0 0 1 0 -7h3.5" + } + ] + ], + "router-off": [ + [ + "path", + { + "d": "M17 13h2a2 2 0 0 1 2 2v2m-.588 3.417c-.362 .36 -.861 .583 -1.412 .583h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2h8m4 4v.01m-4 -.01v.01m-.774 -8.81a4 4 0 0 1 6.024 .55m-8.805 -3.343a8 8 0 0 1 12.055 1.093m-18.5 -3.5l18 18" + } + ] + ], + "router": [ + [ + "path", + { + "d": "M3 13m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm14 2l0 .01m-4 -.01l0 .01m2 -4.01l0 -2m-3.25 -2.25a4 4 0 0 1 6.5 0m-9.75 -2.25a8 8 0 0 1 13 0" + } + ] + ], + "row-insert-bottom": [ + [ + "path", + { + "d": "M20 6v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1zm-8 9l0 4m2 -2l-4 0" + } + ] + ], + "row-insert-top": [ + [ + "path", + { + "d": "M4 18v-4a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm8 -9v-4m-2 2l4 0" + } + ] + ], + "rss": [ + [ + "path", + { + "d": "M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m0 -15a16 16 0 0 1 16 16m-16 -9a9 9 0 0 1 9 9" + } + ] + ], + "rubber-stamp-off": [ + [ + "path", + { + "d": "M8.273 8.273c.805 2.341 2.857 5.527 -1.484 5.527c-2.368 0 -3.789 0 -3.789 4.05h14.85m-12.85 3.15h14m-16 -18l18 18m-12.288 -16.278a3.99 3.99 0 0 1 3.288 -1.722a4 4 0 0 1 4 4c0 .992 -.806 2.464 -1.223 3.785m6.198 6.196c-.182 -2.883 -1.332 -3.153 -3.172 -3.178" + } + ] + ], + "rubber-stamp": [ + [ + "path", + { + "d": "M21 17.85h-18c0 -4.05 1.421 -4.05 3.79 -4.05c5.21 0 1.21 -4.59 1.21 -6.8a4 4 0 1 1 8 0c0 2.21 -4 6.8 1.21 6.8c2.369 0 3.79 0 3.79 4.05zm-16 3.15h14" + } + ] + ], + "ruler-2-off": [ + [ + "path", + { + "d": "M12.03 7.97l4.97 -4.97l4 4l-5 5m-2 2l-7 7l-4 -4l7 -7m6 -3l-1.5 -1.5m-4.5 7.5l-1.5 -1.5m-1.5 4.5l-1.5 -1.5m-2.5 -11.5l18 18" + } + ] + ], + "ruler-2": [ + [ + "path", + { + "d": "M17 3l4 4l-14 14l-4 -4zm-1 4l-1.5 -1.5m-1.5 4.5l-1.5 -1.5m-1.5 4.5l-1.5 -1.5m-1.5 4.5l-1.5 -1.5" + } + ] + ], + "ruler-3": [ + [ + "path", + { + "d": "M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75zm-10.875 0v2m-3 -2v3m6 -3v3m6 -3v3m-3 -3v2" + } + ] + ], + "ruler-measure": [ + [ + "path", + { + "d": "M19.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75zm-10.875 0v2m-3 -2v3m6 -3v3m6 -3v3m-3 -3v2m-12 -11v4m0 -2h18m0 -2v4" + } + ] + ], + "ruler-off": [ + [ + "path", + { + "d": "M8 4h11a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-4m-3.713 .299a1 1 0 0 0 -.287 .701v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14c0 -.284 .118 -.54 .308 -.722m-.308 3.722h2m-2 4h3m-3 4h2m6 -12v3m4 -3v2m-13 -3l18 18" + } + ] + ], + "ruler": [ + [ + "path", + { + "d": "M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1m-1 4l2 0m-2 4l3 0m-3 4l2 0m2 -12l0 2m4 -2l0 3m4 -3l0 2" + } + ] + ], + "run": [ + [ + "path", + { + "d": "M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8 13l5 1l.75 -1.5m5.25 4.5l0 -4l-4 -3l1 -6m-5 4l0 -3l5 -1l3 3l3 1" + } + ] + ], + "s-turn-down": [ + [ + "path", + { + "d": "M7 5a2 2 0 1 1 -4 0a2 2 0 0 1 4 0zm-2 2v9.5a3.5 3.5 0 0 0 7 0v-9a3.5 3.5 0 0 1 7 0v13.5m-3 -3l3 3l3 -3" + } + ] + ], + "s-turn-left": [ + [ + "path", + { + "d": "M19 7a2 2 0 1 1 0 -4a2 2 0 0 1 0 4zm-2 -2h-9.5a3.5 3.5 0 0 0 0 7h9a3.5 3.5 0 0 1 0 7h-13.5m3 -3l-3 3l3 3" + } + ] + ], + "s-turn-right": [ + [ + "path", + { + "d": "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h9.5a3.5 3.5 0 0 1 0 7h-9a3.5 3.5 0 0 0 0 7h13.5m-3 -3l3 3l-3 3" + } + ] + ], + "s-turn-up": [ + [ + "path", + { + "d": "M7 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-2 -2v-9.5a3.5 3.5 0 0 1 7 0v9a3.5 3.5 0 0 0 7 0v-13.5m-3 3l3 -3l3 3" + } + ] + ], + "sailboat-2": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-18 -2l-1 -3h18l-1 3m-8 -7v4m-5 -12c1.333 2.667 1.333 5.333 0 8h10c1.333 -2.667 1.333 -5.333 0 -8m-11 0h12" + } + ] + ], + "sailboat-off": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-18 -2l-1 -3h12m4 0h2l-.506 1.517m-9.494 -5.517v1h1m4 0h2l-7 -9v4m-3.287 .718l-1.713 4.282m-3 -9l18 18" + } + ] + ], + "sailboat": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-18 -2l-1 -3h18l-1 3m-9 -6h7l-7 -9v9m-3 -5l-2 5" + } + ] + ], + "salad": [ + [ + "path", + { + "d": "M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1zm14.5 0c.351 -1.017 .426 -2.236 .5 -3.714v-1.286h-2.256c-2.83 0 -4.616 .804 -5.64 2.076m-5.849 2.932a12.204 12.204 0 0 1 -.255 -2.008v-1h1.755c.98 0 1.801 .124 2.479 .35m-1.234 -.35l1 -4l4 2.5m0 4.5v-.5a2.5 2.5 0 1 0 -5 0v.5" + } + ] + ], + "salt": [ + [ + "path", + { + "d": "M12 13v.01m-2 2.99v.01m4 -.01v.01m-6.5 -8.01h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248zl-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671" + } + ] + ], + "satellite-off": [ + [ + "path", + { + "d": "M7.707 3.707l5.586 5.586m-1.293 2.707l-1.293 1.293a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414l1.293 -1.293m1 5l-3 3l3 3l3 -3m1 -7l3 -3l3 3l-3 3m-1 3l1.5 1.5m1 3.5c.69 0 1.316 -.28 1.769 -.733m-1.269 4.733c1.654 0 3.151 -.67 4.237 -1.752m1.507 -2.507a6 6 0 0 0 .256 -1.741m-18 -12l18 18" + } + ] + ], + "satellite": [ + [ + "path", + { + "d": "M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414zm2.293 3.707l-3 3l3 3l3 -3m1 -7l3 -3l3 3l-3 3m-1 3l1.5 1.5m1 3.5a2.5 2.5 0 0 0 2.5 -2.5m-2 6.5a6 6 0 0 0 6 -6" + } + ] + ], + "sausage": [ + [ + "path", + { + "d": "M5.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5zm-.305 .019l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99m12.687 12.705l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245" + } + ] + ], + "scale-off": [ + [ + "path", + { + "d": "M7 20h10m-7.548 -14.575l2.548 -.425l6 1m-6 -3v5m0 4v8m-3 -8l-3 -6l-3 6a3 3 0 0 0 6 0m9.873 2.871a3 3 0 0 0 2.127 -2.871l-3 -6l-2.677 5.355m-12.323 -8.355l18 18" + } + ] + ], + "scale-outline-off": [ + [ + "path", + { + "d": "M7 3h10a4 4 0 0 1 4 4v10m-1.173 2.83a3.987 3.987 0 0 1 -2.827 1.17h-10a4 4 0 0 1 -4 -4v-10c0 -1.104 .447 -2.103 1.17 -2.827m6.892 2.889c.31 -.041 .622 -.062 .938 -.062c1.956 0 3.724 .802 5 2.095a142.85 142.85 0 0 0 -2 1.905m-3.723 .288a3 3 0 0 0 -1.315 .71l-2.956 -2.903a6.977 6.977 0 0 1 1.142 -.942m-5.148 -5.153l18 18" + } + ] + ], + "scale-outline": [ + [ + "path", + { + "d": "M3 3m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4zm9 0c1.956 0 3.724 .802 5 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 5 -2.095z" + } + ] + ], + "scale": [ + [ + "path", + { + "d": "M7 20l10 0m-11 -14l6 -1l6 1m-6 -3l0 17m-3 -8l-3 -6l-3 6a3 3 0 0 0 6 0m12 0l-3 -6l-3 6a3 3 0 0 0 6 0" + } + ] + ], + "scan-eye": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-13 -4c3.333 -4.667 6.667 -4.667 10 0m-10 0c3.333 4.667 6.667 4.667 10 0m-5 0h-.01" + } + ] + ], + "scan": [ + [ + "path", + { + "d": "M4 7v-1a2 2 0 0 1 2 -2h2m-4 13v1a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v1m-4 13h2a2 2 0 0 0 2 -2v-1m-15 -5l14 0" + } + ] + ], + "schema-off": [ + [ + "path", + { + "d": "M6 2h4v4m-4 0h-1v-1m10 6v-1h5v4h-2m-13 4h5v4h-5zm0 -8h5v4h-5zm5 2h2m-4.5 -4.5v2.5m0 4v4m-4.5 -15l18 18" + } + ] + ], + "schema": [ + [ + "path", + { + "d": "M5 2h5v4h-5zm10 8h5v4h-5zm-10 8h5v4h-5zm0 -8h5v4h-5zm5 2h5m-7.5 -6v4m0 4v4" + } + ] + ], + "school-bell": [ + [ + "path", + { + "d": "M4 17a3 3 0 0 0 3 3m7.805 -13.63l2.783 -2.784a2 2 0 1 1 2.829 2.828l-2.784 2.786m-1.128 -1.705a5.105 5.105 0 0 1 .176 7.035l-.176 .184l-1.867 1.867a3.48 3.48 0 0 0 -1.013 2.234l-.008 .23v.934c0 .327 -.13 .64 -.36 .871a0.51 .51 0 0 1 -.652 .06l-.07 -.06l-9.385 -9.384a0.51 .51 0 0 1 0 -.722c.198 -.198 .456 -.322 .732 -.353l.139 -.008h.933c.848 0 1.663 -.309 2.297 -.864l.168 -.157l1.867 -1.867l.16 -.153a5.105 5.105 0 0 1 7.059 .153z" + } + ] + ], + "school-off": [ + [ + "path", + { + "d": "M22 9l-10 -4l-2.136 .854m-2.864 1.146l-5 2l10 4l.697 -.279m2.878 -1.151l6.425 -2.57v6m-16 -4.4v5.4c0 1.657 2.686 3 6 3c2.334 0 4.357 -.666 5.35 -1.64m.65 -3.36v-3.4m-15 -7.6l18 18" + } + ] + ], + "school": [ + [ + "path", + { + "d": "M22 9l-10 -4l-10 4l10 4l10 -4v6m-16 -4.4v5.4a6 3 0 0 0 12 0v-5.4" + } + ] + ], + "scissors-off": [ + [ + "path", + { + "d": "M4.432 4.442a3 3 0 1 0 4.114 4.146m-2.546 8.412m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5.6 -1.6l3.4 -3.4m2 -2l5 -5m-16 -2l18 18" + } + ] + ], + "scissors": [ + [ + "path", + { + "d": "M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m5.6 -8.4l10.4 10.4m-10.4 -3.6l10.4 -10.4" + } + ] + ], + "scooter-electric": [ + [ + "path", + { + "d": "M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1m-5 -1l-2 4h3l-2 4" + } + ] + ], + "scooter": [ + [ + "path", + { + "d": "M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1" + } + ] + ], + "screen-share-off": [ + [ + "path", + { + "d": "M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9m-6 16l10 0m-8 -4l0 4m6 -4l0 4m2 -12l4 -4m-4 0l4 4" + } + ] + ], + "screen-share": [ + [ + "path", + { + "d": "M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9m-6 16l10 0m-8 -4l0 4m6 -4l0 4m2 -16h4v4m-5 1l5 -5" + } + ] + ], + "screenshot": [ + [ + "path", + { + "d": "M7 19a2 2 0 0 1 -2 -2m0 -4v-2m0 -4a2 2 0 0 1 2 -2m4 0h2m4 0a2 2 0 0 1 2 2m0 4v2m0 4v4m2 -2h-4m-4 0h-2" + } + ] + ], + "scribble-off": [ + [ + "path", + { + "d": "M3 15c2 3 4 4 7 4c1.95 0 4.324 -1.268 5.746 -3.256m1.181 -2.812a5.97 5.97 0 0 0 .073 -.932c0 -4 -3 -7 -6 -7c-.642 0 -1.239 .069 -1.78 .201m-2.492 1.515c-.47 .617 -.728 1.386 -.728 2.284c0 2.5 2 5 6 5c.597 0 1.203 -.055 1.808 -.156m3.102 -.921c2.235 -.953 4.152 -2.423 5.09 -3.923m-19 -6l18 18" + } + ] + ], + "scribble": [ + [ + "path", + { + "d": "M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5" + } + ] + ], + "script-minus": [ + [ + "path", + { + "d": "M17 19h4m-7 1h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" + } + ] + ], + "script-plus": [ + [ + "path", + { + "d": "M17 19h4m-7 1h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8m12 3v4" + } + ] + ], + "script-x": [ + [ + "path", + { + "d": "M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8m10 3l4 4m0 -4l-4 4" + } + ] + ], + "script": [ + [ + "path", + { + "d": "M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" + } + ] + ], + "scuba-mask-off": [ + [ + "path", + { + "d": "M11 7h5a1 1 0 0 1 1 1v4.5c0 .154 -.014 .304 -.04 .45m-2 2.007c-.15 .028 -.305 .043 -.463 .043h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1h3m3 10a2 2 0 0 0 2 2h3.5a5.475 5.475 0 0 0 2.765 -.744m2 -2c.47 -.81 .739 -1.752 .739 -2.756v-9.5m-18 -1l18 18" + } + ] + ], + "scuba-mask": [ + [ + "path", + { + "d": "M4 7h12a1 1 0 0 1 1 1v4.5a2.5 2.5 0 0 1 -2.5 2.5h-.5a2 2 0 0 1 -2 -2a2 2 0 1 0 -4 0a2 2 0 0 1 -2 2h-.5a2.5 2.5 0 0 1 -2.5 -2.5v-4.5a1 1 0 0 1 1 -1zm6 10a2 2 0 0 0 2 2h3.5a5.5 5.5 0 0 0 5.5 -5.5v-9.5" + } + ] + ], + "sdk": [ + [ + "path", + { + "d": "M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3m14 -8v8m4 -8l-3 4l3 4m-4 -4h1m-8 -4v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z" + } + ] + ], + "search-off": [ + [ + "path", + { + "d": "M5.039 5.062a7 7 0 0 0 9.91 9.89m1.584 -2.434a7 7 0 0 0 -9.038 -9.057m-4.495 -.461l18 18" + } + ] + ], + "search": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6" + } + ] + ], + "section-sign": [ + [ + "path", + { + "d": "M9.172 19a3 3 0 1 0 2.828 -4m2.83 -10a3 3 0 1 0 -2.83 4m0 3m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "section": [ + [ + "path", + { + "d": "M20 20h.01m-16.01 0h.01m3.99 0h.01m3.99 0h.01m3.99 0h.01m3.99 -16h.01m-16.01 0h.01m3.99 0h.01m3.99 0h.01m3.99 0l0 0m-12 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z" + } + ] + ], + "seeding-off": [ + [ + "path", + { + "d": "M11.412 7.407a6.025 6.025 0 0 0 -2.82 -2.82m-4.592 -.587h-1v2a6 6 0 0 0 6 6h3m0 2a6 6 0 0 1 .255 -1.736m1.51 -2.514a5.981 5.981 0 0 1 4.235 -1.75h3v1c0 2.158 -1.14 4.05 -2.85 5.107m-3.15 .893h-3m0 5v-8m-9 -9l18 18" + } + ] + ], + "seeding": [ + [ + "path", + { + "d": "M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3m0 2a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3m0 5l0 -10" + } + ] + ], + "select": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 5l3 3l3 -3" + } + ] + ], + "selector": [ + [ + "path", + { + "d": "M8 9l4 -4l4 4m0 6l-4 4l-4 -4" + } + ] + ], + "send-off": [ + [ + "path", + { + "d": "M10 14l2 -2m2 -2l7 -7m-10.282 3.713l10.282 -3.713l-3.715 10.289m-1.063 2.941l-1.722 4.77a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l4.772 -1.723m-4.772 -4.777l18 18" + } + ] + ], + "send": [ + [ + "path", + { + "d": "M10 14l11 -11l-6.5 18a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5" + } + ] + ], + "seo": [ + [ + "path", + { + "d": "M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3m11 0h-4v-8h4m-3 4h2m4 -4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" + } + ] + ], + "separator-horizontal": [ + [ + "path", + { + "d": "M4 12l16 0m-12 -4l4 -4l4 4m0 8l-4 4l-4 -4" + } + ] + ], + "separator-vertical": [ + [ + "path", + { + "d": "M12 4l0 16m-4 -12l-4 4l4 4m8 0l4 -4l-4 -4" + } + ] + ], + "separator": [ + [ + "path", + { + "d": "M3 12l0 .01m4 -.01l10 0m4 0l0 .01" + } + ] + ], + "server-2": [ + [ + "path", + { + "d": "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm0 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm4 -7l0 .01m0 7.99l0 .01m4 -8.01h6m-6 8h6" + } + ] + ], + "server-bolt": [ + [ + "path", + { + "d": "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm12 13h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12m-11 -4v.01m0 7.99v.01m13 -1.01l-2 3h3l-2 3" + } + ] + ], + "server-cog": [ + [ + "path", + { + "d": "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 13h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5m1.501 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3.5v1.5m0 4v1.5m3.031 -5.25l-1.299 .75m-3.463 2l-1.3 .75m0 -3.5l1.3 .75m3.463 2l1.3 .75m-14.033 -11.75v.01m0 7.99v.01" + } + ] + ], + "server-off": [ + [ + "path", + { + "d": "M12 12h-6a3 3 0 0 1 -3 -3v-2c0 -1.083 .574 -2.033 1.435 -2.56m3.565 -.44h10a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2h2a3 3 0 0 1 3 3v2m-1.448 2.568a2.986 2.986 0 0 1 -1.552 .432h-12a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h6m-5 -4v.01m0 7.99v.01m-4 -13.01l18 18" + } + ] + ], + "server": [ + [ + "path", + { + "d": "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm0 5m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm4 -7l0 .01m0 7.99l0 .01" + } + ] + ], + "servicemark": [ + [ + "path", + { + "d": "M9 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m8 0v-6l3 4l3 -4v6" + } + ] + ], + "settings-2": [ + [ + "path", + { + "d": "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029zm-7 5.127m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "settings-automation": [ + [ + "path", + { + "d": "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065zm-.325 4.683v6l5 -3z" + } + ] + ], + "settings-filled": [ + [ + "path", + { + "d": "M13.675 4.317a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065c.426 -1.756 2.924 -1.756 3.35 0m-4.675 7.683a3 3 0 0 0 6 0a3 3 0 0 0 -6 0", + "fill": "currentColor" + } + ] + ], + "settings-off": [ + [ + "path", + { + "d": "M9.456 5.435c.416 -.22 .745 -.609 .869 -1.118c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.187 1.016m-.126 3.666c-.516 .522 -1.348 .733 -2.123 .261a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.468 -.768 -.266 -1.59 .246 -2.108m4.25 4.234a3 3 0 1 0 4.256 4.23m.552 -3.444a3.012 3.012 0 0 0 -1.412 -1.38m-10.275 -6.284l18 18" + } + ] + ], + "settings": [ + [ + "path", + { + "d": "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065zm1.675 7.683m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "shadow-off": [ + [ + "path", + { + "d": "M5.634 5.638a9 9 0 0 0 12.728 12.727m1.68 -2.32a9 9 0 0 0 -12.086 -12.088m8.044 8.043h2m-5 3h2m-2 3h1m-1 -9h4m-4 -3h1m-11 -3l18 18" + } + ] + ], + "shadow": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m10 0h5m-5 3h4m-4 3h1m-1 -9h4m-4 -3h1" + } + ] + ], + "shape-2": [ + [ + "path", + { + "d": "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m3.5 -1.5l11 -11m-12.5 .5v10m14 -10v10" + } + ] + ], + "shape-3": [ + [ + "path", + { + "d": "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 -14h10m-12 2v10m14 -10v10" + } + ] + ], + "shape-off": [ + [ + "path", + { + "d": "M3.575 3.597a2 2 0 0 0 2.849 2.808m12.576 -1.405m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14.574 -1.402a2 2 0 0 0 2.826 2.83m-15.4 -13.428v10m4 -12h8m-10 14h10m2 -12v8m-16 -12l18 18" + } + ] + ], + "shape": [ + [ + "path", + { + "d": "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 -12l0 10m2 -12l10 0m-10 14l10 0m2 -12l0 10" + } + ] + ], + "share-off": [ + [ + "path", + { + "d": "M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m15 -6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m.861 9.896a3 3 0 0 0 4.265 4.22m.578 -3.417a3.012 3.012 0 0 0 -1.507 -1.45m-10.497 -4.549l1.336 -.688m2.624 -1.352l2.64 -1.36m-6.6 6l6.6 3.4m-12.3 -13.7l18 18" + } + ] + ], + "share": [ + [ + "path", + { + "d": "M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m15 -6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6.3 -7.3l6.6 -3.4m-6.6 6l6.6 3.4" + } + ] + ], + "shield-check": [ + [ + "path", + { + "d": "M9 12l2 2l4 -4m-3 -7a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" + } + ] + ], + "shield-checkered": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3v18m-8.5 -9h17" + } + ] + ], + "shield-chevron": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3m-8 11l8 -3l8 3" + } + ] + ], + "shield-filled": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3", + "fill": "currentColor" + } + ] + ], + "shield-half-filled": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3v18m0 -10h8.9m-8.9 -3h8.9m-8.9 -3h3.1m-3.1 12h6.2m-6.2 -3h8" + } + ] + ], + "shield-half": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3v18" + } + ] + ], + "shield-lock": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3m0 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 1l0 2.5" + } + ] + ], + "shield-off": [ + [ + "path", + { + "d": "M3 3l18 18m-3.331 -3.331a12 12 0 0 1 -5.669 3.331a12 12 0 0 1 -8.5 -15c.797 .036 1.589 0 2.366 -.126m3.092 -.912a12 12 0 0 0 3.042 -1.962a12 12 0 0 0 8.5 3a12 12 0 0 1 -1.117 9.379" + } + ] + ], + "shield-x": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3m-2 7l4 4m0 -4l-4 4" + } + ] + ], + "shield": [ + [ + "path", + { + "d": "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" + } + ] + ], + "ship-off": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-18 -2l-1 -5h10m4 0h4l-1.334 2.668m-14.666 -2.668v-6h2m4 0h2l4 6m-14 -10l18 18" + } + ] + ], + "ship": [ + [ + "path", + { + "d": "M2 20a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m-18 -2l-1 -5h18l-2 4m-14 -4v-6h8l4 6m-10 -6v-4h-1" + } + ] + ], + "shirt-filled": [ + [ + "path", + { + "d": "M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0", + "fill": "currentColor" + } + ] + ], + "shirt-off": [ + [ + "path", + { + "d": "M8.243 4.252l.757 -.252c0 .43 .09 .837 .252 1.206m1.395 1.472a3 3 0 0 0 4.353 -2.678l6 2v5h-3v3m0 4v1a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l2.26 -.753m-2.26 -2.247l18 18" + } + ] + ], + "shirt-sport": [ + [ + "path", + { + "d": "M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0m-4.5 7h2.5l-1.5 5" + } + ] + ], + "shirt": [ + [ + "path", + { + "d": "M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0" + } + ] + ], + "shoe-off": [ + [ + "path", + { + "d": "M13.846 9.868l4.08 .972a4 4 0 0 1 3.074 3.89v2.27m-3 1h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m2 12v-1a4 4 0 0 0 -4 -4h-1m7 -1l.663 -1.327m-7.663 -7.673l18 18" + } + ] + ], + "shoe": [ + [ + "path", + { + "d": "M4 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1zm10 7l1 -2m-7 7v-1a4 4 0 0 0 -4 -4h-1m7 -1l1.5 -3" + } + ] + ], + "shopping-bag": [ + [ + "path", + { + "d": "M6.331 8h11.339a2 2 0 0 1 1.977 2.304l-1.255 8.152a3 3 0 0 1 -2.966 2.544h-6.852a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304zm2.669 3v-5a3 3 0 0 1 6 0v5" + } + ] + ], + "shopping-cart-discount": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2h-11v-14h-2m16 3l-1 7h-13m4 -3l6 -6m-5.5 .5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m5.5 5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "shopping-cart-off": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 -2a2 2 0 1 0 2 2m-2 -2h-11v-11m3.239 -.769l10.761 .769l-1 7h-2m-4 0h-7m-3 -10l18 18" + } + ] + ], + "shopping-cart-plus": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2h-11v-14h-2m2 2l6 .429m7.138 6.573l-.143 1h-13m9 -7h6m-3 -3v6" + } + ] + ], + "shopping-cart-x": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2h-11v-14h-2m2 2l8 .571m5.43 4.43l-.429 3h-13m11 -10l4 4m0 -4l-4 4" + } + ] + ], + "shopping-cart": [ + [ + "path", + { + "d": "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m13 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2h-11v-14h-2m2 2l14 1l-1 7h-13" + } + ] + ], + "shovel": [ + [ + "path", + { + "d": "M17 4l3 3m-1.5 -1.5l-8 8m-2.224 -2.216l4.44 4.44a0.968 .968 0 0 1 0 1.369l-2.704 2.704a4.108 4.108 0 0 1 -5.809 -5.81l2.704 -2.703a0.968 .968 0 0 1 1.37 0z" + } + ] + ], + "shredder": [ + [ + "path", + { + "d": "M4 10m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm13 -1v-4a2 2 0 0 0 -2 -2h-6a2 2 0 0 0 -2 2v4m5 5v5m4 -5v2m-8 -2v3" + } + ] + ], + "sign-left-filled": [ + [ + "path", + { + "d": "M16 21h-4m2 0v-10m0 -5v-3m4 3h-10l-2 2.5l2 2.5h10z", + "fill": "currentColor" + } + ] + ], + "sign-left": [ + [ + "path", + { + "d": "M16 21h-4m2 0v-10m0 -5v-3m4 3h-10l-2 2.5l2 2.5h10z" + } + ] + ], + "sign-right-filled": [ + [ + "path", + { + "d": "M8 21h4m-2 0v-10m0 -5v-3m-4 3h10l2 2.5l-2 2.5h-10z", + "fill": "currentColor" + } + ] + ], + "sign-right": [ + [ + "path", + { + "d": "M8 21h4m-2 0v-10m0 -5v-3m-4 3h10l2 2.5l-2 2.5h-10z" + } + ] + ], + "signal-3g": [ + [ + "path", + { + "d": "M5 8h3a2 2 0 1 1 0 4h-3m14 -4h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1m-10 0a2 2 0 1 1 0 4h-3" + } + ] + ], + "signal-4g-plus": [ + [ + "path", + { + "d": "M3 8v5h5m-1 -5v8m8 -8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1m4 0h4m-2 -2v4" + } + ] + ], + "signal-4g": [ + [ + "path", + { + "d": "M5 8v5h5m-1 -5v8m10 -8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1" + } + ] + ], + "signal-5g": [ + [ + "path", + { + "d": "M10 8h-5v4h3a2 2 0 1 1 0 4h-3m14 -8h-3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3v-4h-1" + } + ] + ], + "signature-off": [ + [ + "path", + { + "d": "M3 17c3.333 -3.333 5 -6 5 -8c0 -.394 -.017 -.735 -.05 -1.033m-1.95 -1.967c-1 0 -2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.219 0 .708 -.341 1.231 -.742m3.769 -.258c.303 .245 .64 .677 1 1m-18 -14l18 18" + } + ] + ], + "signature": [ + [ + "path", + { + "d": "M3 17c3.333 -3.333 5 -6 5 -8c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 4.877 2.5 6c1.5 2 2.5 2.5 3.5 1l2 -3c.333 2.667 1.333 4 3 4c.53 0 2.639 -2 3 -2c.517 0 1.517 .667 3 2" + } + ] + ], + "sitemap-off": [ + [ + "path", + { + "d": "M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm16 -2a2 2 0 0 1 2 2m-.591 3.42c-.362 .358 -.86 .58 -1.409 .58h-2a2 2 0 0 1 -2 -2v-2c0 -.549 .221 -1.046 .579 -1.407m-6.579 -10.593a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2m-7 6v-1a2 2 0 0 1 2 -2h4m4 0a2 2 0 0 1 2 2m-15 -11l18 18" + } + ] + ], + "sitemap": [ + [ + "path", + { + "d": "M3 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm12 -2m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm-6 -14m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2zm-3 10v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1m-6 -6l0 3" + } + ] + ], + "skateboard-off": [ + [ + "path", + { + "d": "M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10 0a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2m-14 -4c0 .552 .895 1 2 1h5m4 0h5c1.105 0 2 -.448 2 -1m-18 -6l18 18" + } + ] + ], + "skateboard": [ + [ + "path", + { + "d": "M7 15m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 -6a2 1 0 0 0 2 1h14a2 1 0 0 0 2 -1" + } + ] + ], + "skull": [ + [ + "path", + { + "d": "M12 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -2 4.96l0 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5zm-2 13v3m4 -3v3m-5 -9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "slash": [ + [ + "path", + { + "d": "M17 5l-10 14" + } + ] + ], + "slashes": [ + [ + "path", + { + "d": "M14 5l-10 14m16 -14l-10 14" + } + ] + ], + "sleigh": [ + [ + "path", + { + "d": "M3 19h15a4 4 0 0 0 4 -4m-6 0h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3zm-1 0v4m-8 -4v4" + } + ] + ], + "slice": [ + [ + "path", + { + "d": "M3 19l15 -15l3 3l-6 6l2 2a14 14 0 0 1 -14 4" + } + ] + ], + "slideshow": [ + [ + "path", + { + "d": "M15 6l.01 0m-12.01 -3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm0 7l4 -4a3 5 0 0 1 3 0l4 4m-1 -1l2 -2a3 5 0 0 1 3 0l3 3m-13 8l.01 0m3.99 0l.01 0m3.99 0l.01 0" + } + ] + ], + "smart-home-off": [ + [ + "path", + { + "d": "M7.097 7.125l-2.037 1.585a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12c.559 0 1.064 -.229 1.427 -.598m.572 -3.417v-5.185c0 -.823 -.38 -1.6 -1.03 -2.105l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-1.029 .8m5.968 9.983c-2.213 .976 -5.335 .86 -7.332 -.345m-5 -12l18 18" + } + ] + ], + "smart-home": [ + [ + "path", + { + "d": "M19 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105m-3 6.29c-2.21 1.333 -5.792 1.333 -8 0" + } + ] + ], + "smoking-no": [ + [ + "path", + { + "d": "M8 13l0 4m8 -12v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5m-17 -7l18 18m-4 -8h3a1 1 0 0 1 1 1v2c0 .28 -.115 .533 -.3 .714m-3.7 .286h-13a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h9" + } + ] + ], + "smoking": [ + [ + "path", + { + "d": "M3 13m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1zm5 -1l0 4m8 -12v.5a2 2 0 0 0 2 2a2 2 0 0 1 2 2v.5" + } + ] + ], + "snowflake-off": [ + [ + "path", + { + "d": "M10 4l2 1l2 -1m-2 -2v6m1.196 1.186l1.804 1.034m2.928 -3.952l.134 2.232l1.866 1.232m.732 -2.732l-5.629 3.25l-.031 .75m4.928 3.268l-1.015 .67m-4.701 -.712l-2.171 1.262m1.959 4.512l-2 -1l-2 1m2 2v-6.5l-3 -1.72m-2.928 3.952l-.134 -2.232l-1.866 -1.232m-.732 2.732l5.629 -3.25l-.01 -3.458m-4.887 -.56l1.866 -1.232l.134 -2.232m-2.732 .732l5.629 3.25l.802 -.466m-6.771 -6.784l18 18" + } + ] + ], + "snowflake": [ + [ + "path", + { + "d": "M10 4l2 1l2 -1m-2 -2v6.5l3 1.72m2.928 -3.952l.134 2.232l1.866 1.232m.732 -2.732l-5.629 3.25l.01 3.458m4.887 .56l-1.866 1.232l-.134 2.232m2.732 -.732l-5.629 -3.25l-2.99 1.738m1.959 4.512l-2 -1l-2 1m2 2v-6.5l-3 -1.72m-2.928 3.952l-.134 -2.232l-1.866 -1.232m-.732 2.732l5.629 -3.25l-.01 -3.458m-4.887 -.56l1.866 -1.232l.134 -2.232m-2.732 .732l5.629 3.25l2.99 -1.738" + } + ] + ], + "snowman": [ + [ + "path", + { + "d": "M12 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75zm5.5 8.5l2.5 -1.5m-13.5 1.5l-2.5 -1.5m8 3h.01m-.01 3h.01" + } + ] + ], + "soccer-field": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-6 -3h3v6h-3zm15 0h3v6h-3zm-15 -4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2zm9 -2l0 14" + } + ] + ], + "social-off": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14.57 -1.398a2 2 0 0 0 2.83 2.827m-9.287 -9.296a3 3 0 1 0 3.765 3.715m-2.878 -7.848v1m-5.3 9.8l2.8 -2m7.8 2l-2.8 -2m-11.5 -12.8l18 18" + } + ] + ], + "social": [ + [ + "path", + { + "d": "M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-5 -5m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 -7l0 4m-5.3 6.8l2.8 -2m7.8 2l-2.8 -2" + } + ] + ], + "sock": [ + [ + "path", + { + "d": "M13 3v6l4.798 5.142a4 4 0 0 1 -5.441 5.86l-6.736 -6.41a2 2 0 0 1 -.621 -1.451v-9.141h8zm-5.105 12.768c.708 -.721 1.105 -1.677 1.105 -2.768a4 4 0 0 0 -4 -4" + } + ] + ], + "sofa-off": [ + [ + "path", + { + "d": "M18 14v-1a2 2 0 1 1 4 0v5m-3 1h-16a1 1 0 0 1 -1 -1v-5a2 2 0 1 1 4 0v1h8m-10 -3v-3c0 -1.082 .573 -2.03 1.432 -2.558m3.568 -.442h8a3 3 0 0 1 3 3v3m-8 -6v3m0 4v2m-9 -11l18 18" + } + ] + ], + "sofa": [ + [ + "path", + { + "d": "M4 11a2 2 0 0 1 2 2v1h12v-1a2 2 0 1 1 4 0v5a1 1 0 0 1 -1 1h-18a1 1 0 0 1 -1 -1v-5a2 2 0 0 1 2 -2zv-3a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v3m-8 -6v9" + } + ] + ], + "sort-0-9": [ + [ + "path", + { + "d": "M11 12h2m-9 -2v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0zm12 5a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "sort-9-0": [ + [ + "path", + { + "d": "M4 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m8 -2v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0zm-5 2h2" + } + ] + ], + "sort-a-z": [ + [ + "path", + { + "d": "M16 8h4l-4 8h4m-16 0v-6a2 2 0 1 1 4 0v6m-4 -3h4m3 -1h2" + } + ] + ], + "sort-ascending-2": [ + [ + "path", + { + "d": "M14 9l3 -3l3 3m-15 -4m0 .5a0.5 .5 0 0 1 .5 -.5h4a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-4a0.5 .5 0 0 1 -.5 -.5zm0 8.5m0 .5a0.5 .5 0 0 1 .5 -.5h4a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-4a0.5 .5 0 0 1 -.5 -.5zm12 -8.5v12" + } + ] + ], + "sort-ascending-letters": [ + [ + "path", + { + "d": "M15 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4m4 14h-4l4 -7h-4m-11 1l3 3l3 -3m-3 -9v12" + } + ] + ], + "sort-ascending-numbers": [ + [ + "path", + { + "d": "M4 15l3 3l3 -3m-3 -9v12m10 -15a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2zm0 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0v3a2 2 0 0 1 -2 2h-1.5" + } + ] + ], + "sort-ascending": [ + [ + "path", + { + "d": "M4 6l7 0m-7 6l7 0m-7 6l9 0m2 -9l3 -3l3 3m-3 -3l0 12" + } + ] + ], + "sort-descending-2": [ + [ + "path", + { + "d": "M5 5m0 .5a0.5 .5 0 0 1 .5 -.5h4a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-4a0.5 .5 0 0 1 -.5 -.5zm0 8.5m0 .5a0.5 .5 0 0 1 .5 -.5h4a0.5 .5 0 0 1 .5 .5v4a0.5 .5 0 0 1 -.5 .5h-4a0.5 .5 0 0 1 -.5 -.5zm9 .5l3 3l3 -3m-3 3v-12" + } + ] + ], + "sort-descending-letters": [ + [ + "path", + { + "d": "M15 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4m4 -8h-4l4 -7h-4m-11 12l3 3l3 -3m-3 -9v12" + } + ] + ], + "sort-descending-numbers": [ + [ + "path", + { + "d": "M4 15l3 3l3 -3m-3 -9v12m10 -4a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2zm0 -9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0v3a2 2 0 0 1 -2 2h-1.5" + } + ] + ], + "sort-descending": [ + [ + "path", + { + "d": "M4 6l9 0m-9 6l7 0m-7 6l7 0m4 -3l3 3l3 -3m-3 -9l0 12" + } + ] + ], + "sort-z-a": [ + [ + "path", + { + "d": "M4 8h4l-4 8h4m8 0v-6a2 2 0 1 1 4 0v6m-4 -3h4m-9 -1h2" + } + ] + ], + "sos": [ + [ + "path", + { + "d": "M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3m7 -8h4v8h-4zm7 8h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3" + } + ] + ], + "soup-off": [ + [ + "path", + { + "d": "M3 19h16m-4 -8h6c0 1.691 -.525 3.26 -1.42 4.552m-2.034 2.032a7.963 7.963 0 0 1 -4.546 1.416h-2a8 8 0 0 1 -8 -8h8m1 -6v3m3 -3v3m-12 -5l18 18" + } + ] + ], + "soup": [ + [ + "path", + { + "d": "M4 11h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1zm8 -7a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2m4 -4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2m-8 -4a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2" + } + ] + ], + "source-code": [ + [ + "path", + { + "d": "M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5m2 -7l-2 2l2 2m4 0l2 -2l-2 -2" + } + ] + ], + "space-off": [ + [ + "path", + { + "d": "M4 10v3a1 1 0 0 0 1 1h9m4 0h1a1 1 0 0 0 1 -1v-3m-17 -7l18 18" + } + ] + ], + "space": [ + [ + "path", + { + "d": "M4 10v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-3" + } + ] + ], + "spacing-horizontal": [ + [ + "path", + { + "d": "M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2m-16 16h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2m8 4v8" + } + ] + ], + "spacing-vertical": [ + [ + "path", + { + "d": "M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2m-16 -16v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2m-4 8h-8" + } + ] + ], + "spade-filled": [ + [ + "path", + { + "d": "M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1394.07 1394.07 0 0 1 4.919 -4.5z", + "fill": "currentColor" + } + ] + ], + "spade": [ + [ + "path", + { + "d": "M12 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z" + } + ] + ], + "speakerphone": [ + [ + "path", + { + "d": "M18 8a3 3 0 0 1 0 6m-8 -6v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5m5 -6h0l4.524 -3.77a0.9 .9 0 0 1 1.476 .692v12.156a0.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8" + } + ] + ], + "speedboat": [ + [ + "path", + { + "d": "M3 17h13.4a3 3 0 0 0 2.5 -1.34l3.1 -4.66h0h-6.23a4 4 0 0 0 -1.49 .29l-3.56 1.42a4 4 0 0 1 -1.49 .29h-3.73h0h-1l-1.5 4zm3 -4l1.5 -5m-1.5 0h8l2 3" + } + ] + ], + "spider": [ + [ + "path", + { + "d": "M5 4v2l5 5m-7.5 -1.5l1.5 1.5h6m-6 8v-2l6 -6m9 -7v2l-5 5m7.5 -1.5l-1.5 1.5h-6m6 8v-2l-6 -6m-2 4m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 -6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "spiral-off": [ + [ + "path", + { + "d": "M10 12.057a1.9 1.9 0 0 0 .614 .743c.682 .459 1.509 .374 2.164 -.02m1.103 -2.92a3.298 3.298 0 0 0 -1.749 -2.059a3.6 3.6 0 0 0 -.507 -.195m-3.385 .634a4.154 4.154 0 0 0 -1.347 1.646c-1.095 2.432 .29 5.248 2.71 6.246c1.955 .806 4.097 .35 5.65 -.884m1.745 -2.268l.043 -.103c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-1.593 -.61 -3.27 -.599 -4.79 -.113m-2.579 1.408a7.574 7.574 0 0 0 -2.268 3.128c-1.63 4.253 .823 9.024 5.082 10.576c3.211 1.17 6.676 .342 9.124 -1.738m1.869 -2.149a9.354 9.354 0 0 0 1.417 -4.516m-18 -8.063l18 18" + } + ] + ], + "spiral": [ + [ + "path", + { + "d": "M10 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813" + } + ] + ], + "sport-billard": [ + [ + "path", + { + "d": "M12 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2m-8 0a8 8 0 1 0 16 0a8 8 0 1 0 -16 0" + } + ] + ], + "spray": [ + [ + "path", + { + "d": "M4 10m0 2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v7a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2zm2 -2v-4a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4m5 -3h.01m2.99 2h.01m-.01 -4h.01m2.99 -2h.01m-.01 4h.01m-.01 4h.01m-11.01 -4h1" + } + ] + ], + "spy-off": [ + [ + "path", + { + "d": "M3 11h8m4 0h6m-16 0v-4c0 -.571 .16 -1.105 .437 -1.56m2.563 -1.44h8a3 3 0 0 1 3 3v4m-12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m10.88 -2.123a3 3 0 1 0 4.239 4.247m.59 -3.414a3.012 3.012 0 0 0 -1.425 -1.422m-8.284 2.712h4m-11 -14l18 18" + } + ] + ], + "spy": [ + [ + "path", + { + "d": "M3 11h18m-16 0v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4m-12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m13 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-4 0h4" + } + ] + ], + "square-arrow-down": [ + [ + "path", + { + "d": "M8 12l4 4l4 -4m-4 -4v8m-5.333 -12h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667z" + } + ] + ], + "square-arrow-left": [ + [ + "path", + { + "d": "M12 8l-4 4l4 4m4 -4h-8m12 -5.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-arrow-right": [ + [ + "path", + { + "d": "M12 16l4 -4l-4 -4m-4 4h8m-12 5.333v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667z" + } + ] + ], + "square-arrow-up": [ + [ + "path", + { + "d": "M16 12l-4 -4l-4 4m4 4v-8m5.333 12h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667v10.666a2.667 2.667 0 0 1 -2.667 2.667z" + } + ] + ], + "square-asterisk": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 2.5v7m-3 -5.5l6 4m-6 0l6 -4" + } + ] + ], + "square-check": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 6l2 2l4 -4" + } + ] + ], + "square-chevron-down": [ + [ + "path", + { + "d": "M15 11l-3 3l-3 -3m11 -4.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevron-left": [ + [ + "path", + { + "d": "M13 15l-3 -3l3 -3m7 -2.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevron-right": [ + [ + "path", + { + "d": "M11 9l3 3l-3 3m9 -8.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevron-up": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-11 6.333l3 -3l3 3" + } + ] + ], + "square-chevrons-down": [ + [ + "path", + { + "d": "M15 9l-3 3l-3 -3m6 4l-3 3l-3 -3m11 -6.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevrons-left": [ + [ + "path", + { + "d": "M15 15l-3 -3l3 -3m-4 6l-3 -3l3 -3m9 -2.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevrons-right": [ + [ + "path", + { + "d": "M9 9l3 3l-3 3m4 -6l3 3l-3 3m7 -8.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-chevrons-up": [ + [ + "path", + { + "d": "M9 15l3 -3l3 3m-6 -4l3 -3l3 3m5 -4.333v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-dot": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "square-f0": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 3.833v3a1.5 1.5 0 0 0 3 0v-3a1.5 1.5 0 0 0 -3 0zm-5 1.5h2m0 -3h-2v6" + } + ] + ], + "square-f1": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 4.333l2 -2v6m-7 -3h2m0 -3h-2v6" + } + ] + ], + "square-f2": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 2.333h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2m-8 -3h2m0 -3h-2v6" + } + ] + ], + "square-f3": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 2.833a0.5 .5 0 0 1 .5 -.5h1a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1a0.5 .5 0 0 1 -.5 -.5m-5 -2.5h2m0 -3h-2v6" + } + ] + ], + "square-f4": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 2.333v2a1 1 0 0 0 1 1h1m1 -3v6m-8 -3h2m0 -3h-2v6" + } + ] + ], + "square-f5": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 7.583c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2v-3h3m-8 3h2m0 -3h-2v6" + } + ] + ], + "square-f6": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-4 3.083a0.75 .75 0 0 0 -.75 -.75h-1.25a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-2m-5 0h2m0 -3h-2v6" + } + ] + ], + "square-f7": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 2.333h3l-1.5 6m-6.5 -3h2m0 -3h-2v6" + } + ] + ], + "square-f8": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-5.5 5.333h-.5a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1m-7 0h2m0 -3h-2v6" + } + ] + ], + "square-f9": [ + [ + "path", + { + "d": "M20 6.667v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667zm-7 7.583c0 .414 .336 .75 .75 .75h1.5a0.75 .75 0 0 0 .75 -.75v-4.5a0.75 .75 0 0 0 -.75 -.75h-1.5a0.75 .75 0 0 0 -.75 .75v1.5c0 .414 .336 .75 .75 .75h2.25m-8 0h2m0 -3h-2v6" + } + ] + ], + "square-forbid-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 9l6 -6" + } + ] + ], + "square-forbid": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 3l6 6" + } + ] + ], + "square-half": [ + [ + "path", + { + "d": "M12 4v16m-8 -16m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 7l7.5 -7.5m-7.5 12.5l8 -8m-5 10l5 -5m-8 -7l4 -4" + } + ] + ], + "square-key": [ + [ + "path", + { + "d": "M14 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m.5 1.5l-4 4l1.5 1.5m2 -2l-1.5 -1.5m9.5 -6.833v10.666a2.667 2.667 0 0 1 -2.667 2.667h-10.666a2.667 2.667 0 0 1 -2.667 -2.667v-10.666a2.667 2.667 0 0 1 2.667 -2.667h10.666a2.667 2.667 0 0 1 2.667 2.667z" + } + ] + ], + "square-letter-a": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 10v-6a2 2 0 1 1 4 0v6m-4 -3h4" + } + ] + ], + "square-letter-b": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 10h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8z" + } + ] + ], + "square-letter-c": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm10 4a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0" + } + ] + ], + "square-letter-d": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2z" + } + ] + ], + "square-letter-e": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm10 2h-4v8h4m-4 -4h2.5" + } + ] + ], + "square-letter-f": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 6h3m1 -4h-4v8" + } + ] + ], + "square-letter-g": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm10 2h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1" + } + ] + ], + "square-letter-h": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 10v-8m4 0v8m-4 -4h4" + } + ] + ], + "square-letter-i": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 2v8" + } + ] + ], + "square-letter-j": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2h4v6a2 2 0 1 1 -4 0" + } + ] + ], + "square-letter-k": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v8m4 -8l-2.5 4l2.5 4m-4 -4h1.5" + } + ] + ], + "square-letter-l": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v8h4" + } + ] + ], + "square-letter-m": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 10v-8l3 5l3 -5v8" + } + ] + ], + "square-letter-n": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 10v-8l4 8v-8" + } + ] + ], + "square-letter-o": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 2a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2z" + } + ] + ], + "square-letter-p": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 6h2a2 2 0 1 0 0 -4h-2v8" + } + ] + ], + "square-letter-q": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 2a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm1 7l1 1" + } + ] + ], + "square-letter-r": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 6h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4" + } + ] + ], + "square-letter-s": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 9a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1" + } + ] + ], + "square-letter-t": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2h4m-2 0v8" + } + ] + ], + "square-letter-u": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v6a2 2 0 1 0 4 0v-6" + } + ] + ], + "square-letter-v": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2l2 8l2 -8" + } + ] + ], + "square-letter-w": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 2l1 8l2 -5l2 5l1 -8" + } + ] + ], + "square-letter-x": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2l4 8m-4 0l4 -8" + } + ] + ], + "square-letter-y": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2l2 5l2 -5m-2 8v-3" + } + ] + ], + "square-letter-z": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2h4l-4 8h4" + } + ] + ], + "square-minus": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 6l6 0" + } + ] + ], + "square-number-0": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 4v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z" + } + ] + ], + "square-number-1": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 4l2 -2v8" + } + ] + ], + "square-number-2": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "square-number-3": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1" + } + ] + ], + "square-number-4": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2v3a1 1 0 0 0 1 1h3m0 -4v8" + } + ] + ], + "square-number-5": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 9a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4" + } + ] + ], + "square-number-6": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm10 3a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3" + } + ] + ], + "square-number-7": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 2h4l-2 8" + } + ] + ], + "square-number-8": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm8 6h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1" + } + ] + ], + "square-number-9": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 9a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" + } + ] + ], + "square-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.584 3.412a2 2 0 0 1 -1.416 .588h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .586 -1.414m-1.586 -1.586l18 18" + } + ] + ], + "square-plus": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm5 6l6 0m-3 -3l0 6" + } + ] + ], + "square-root-2": [ + [ + "path", + { + "d": "M13 12h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1m-7 0c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5m-17 0h1l3 8l3 -16h10" + } + ] + ], + "square-root": [ + [ + "path", + { + "d": "M3 12h2l4 8l4 -16h8" + } + ] + ], + "square-rotated-filled": [ + [ + "path", + { + "d": "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z", + "fill": "currentColor" + } + ] + ], + "square-rotated-forbid-2": [ + [ + "path", + { + "d": "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0zm-1 -10.9l5 5" + } + ] + ], + "square-rotated-forbid": [ + [ + "path", + { + "d": "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0zm-1 -5.9l5 -5" + } + ] + ], + "square-rotated-off": [ + [ + "path", + { + "d": "M16.964 16.952l-3.462 3.461c-.782 .783 -2.222 .783 -3 0l-6.911 -6.91c-.783 -.783 -.783 -2.223 0 -3l3.455 -3.456m2 -2l1.453 -1.452c.782 -.783 2.222 -.783 3 0l6.911 6.91c.783 .783 .783 2.223 0 3l-1.448 1.45m-15.965 -11.952l18 18" + } + ] + ], + "square-rotated": [ + [ + "path", + { + "d": "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z" + } + ] + ], + "square-rounded-arrow-down": [ + [ + "path", + { + "d": "M8 12l4 4l4 -4m-4 -4v8m0 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-arrow-left": [ + [ + "path", + { + "d": "M12 8l-4 4l4 4m4 -4h-8m4 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-arrow-right": [ + [ + "path", + { + "d": "M12 16l4 -4l-4 -4m-4 4h8m-4 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-arrow-up": [ + [ + "path", + { + "d": "M16 12l-4 -4l-4 4m4 4v-8m0 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-check": [ + [ + "path", + { + "d": "M9 12l2 2l4 -4m-3 -7c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevron-down": [ + [ + "path", + { + "d": "M15 11l-3 3l-3 -3m3 -8c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevron-left": [ + [ + "path", + { + "d": "M13 15l-3 -3l3 -3m-1 -6c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevron-right": [ + [ + "path", + { + "d": "M11 9l3 3l-3 3m1 -12c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevron-up": [ + [ + "path", + { + "d": "M9 13l3 -3l3 3m-3 -10c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevrons-down": [ + [ + "path", + { + "d": "M15 9l-3 3l-3 -3m6 4l-3 3l-3 -3m3 -10c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevrons-left": [ + [ + "path", + { + "d": "M15 15l-3 -3l3 -3m-4 6l-3 -3l3 -3m1 -6c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevrons-right": [ + [ + "path", + { + "d": "M9 9l3 3l-3 3m4 -6l3 3l-3 3m-1 -12c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-chevrons-up": [ + [ + "path", + { + "d": "M9 15l3 -3l3 3m-6 -4l3 -3l3 3m-3 -8c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-filled": [ + [ + "path", + { + "d": "M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z", + "fill": "currentColor" + } + ] + ], + "square-rounded-letter-a": [ + [ + "path", + { + "d": "M10 16v-6a2 2 0 1 1 4 0v6m-4 -3h4m-2 -10c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-b": [ + [ + "path", + { + "d": "M10 16h2a2 2 0 1 0 0 -4h-2h2a2 2 0 1 0 0 -4h-2v8zm2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-c": [ + [ + "path", + { + "d": "M14 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0m-2 -11c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-d": [ + [ + "path", + { + "d": "M10 8v8h2a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-2zm2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-e": [ + [ + "path", + { + "d": "M14 8h-4v8h4m-4 -4h2.5m-.5 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-f": [ + [ + "path", + { + "d": "M10 12h3m1 -4h-4v8m2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-g": [ + [ + "path", + { + "d": "M14 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1m-1 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-h": [ + [ + "path", + { + "d": "M10 16v-8m4 0v8m-4 -4h4m-2 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-i": [ + [ + "path", + { + "d": "M12 8v8m0 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-j": [ + [ + "path", + { + "d": "M10 8h4v6a2 2 0 1 1 -4 0m2 -11c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-k": [ + [ + "path", + { + "d": "M10 8v8m4 -8l-2.5 4l2.5 4m-4 -4h1.5m.5 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-l": [ + [ + "path", + { + "d": "M10 8v8h4m-2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-m": [ + [ + "path", + { + "d": "M9 16v-8l3 5l3 -5v8m-3 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-n": [ + [ + "path", + { + "d": "M10 16v-8l4 8v-8m-2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-o": [ + [ + "path", + { + "d": "M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm0 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-p": [ + [ + "path", + { + "d": "M10 12h2a2 2 0 1 0 0 -4h-2v8m2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-q": [ + [ + "path", + { + "d": "M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2zm1 7l1 1m-2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-r": [ + [ + "path", + { + "d": "M10 12h2a2 2 0 1 0 0 -4h-2v8m4 0l-3 -4m1 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-s": [ + [ + "path", + { + "d": "M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1m-2 -6c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-t": [ + [ + "path", + { + "d": "M10 8h4m-2 0v8m0 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-u": [ + [ + "path", + { + "d": "M10 8v6a2 2 0 1 0 4 0v-6m-2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-v": [ + [ + "path", + { + "d": "M10 8l2 8l2 -8m-2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-w": [ + [ + "path", + { + "d": "M9 8l1 8l2 -5l2 5l1 -8m-3 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-x": [ + [ + "path", + { + "d": "M10 8l4 8m-4 0l4 -8m-2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-y": [ + [ + "path", + { + "d": "M10 8l2 5l2 -5m-2 8v-3m0 -10c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-letter-z": [ + [ + "path", + { + "d": "M10 8h4l-4 8h4m-2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-minus": [ + [ + "path", + { + "d": "M9 12h6m-3 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-0": [ + [ + "path", + { + "d": "M10 10v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0zm2 -7c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-1": [ + [ + "path", + { + "d": "M10 10l2 -2v8m0 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-2": [ + [ + "path", + { + "d": "M10 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m-2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-3": [ + [ + "path", + { + "d": "M10 9a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1m2 -12c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-4": [ + [ + "path", + { + "d": "M10 8v3a1 1 0 0 0 1 1h3m0 -4v8m-2 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-5": [ + [ + "path", + { + "d": "M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3v-4h4m-2 -5c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-6": [ + [ + "path", + { + "d": "M14 9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3m2 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-7": [ + [ + "path", + { + "d": "M10 8h4l-2 8m0 -13c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-8": [ + [ + "path", + { + "d": "M12 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1m-1 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-number-9": [ + [ + "path", + { + "d": "M10 15a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3m-2 -9c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-plus": [ + [ + "path", + { + "d": "M9 12h6m-3 -3v6m0 -12c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded-x": [ + [ + "path", + { + "d": "M10 10l4 4m0 -4l-4 4m2 -11c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-rounded": [ + [ + "path", + { + "d": "M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" + } + ] + ], + "square-toggle-horizontal": [ + [ + "path", + { + "d": "M22 12h-20m2 2v-8a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8m-2 6a2 2 0 0 0 2 -2m-16 0a2 2 0 0 0 2 2m8 0l-4 0" + } + ] + ], + "square-toggle": [ + [ + "path", + { + "d": "M12 2l0 20m2 -2h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8m6 2a2 2 0 0 0 -2 -2m0 16a2 2 0 0 0 2 -2m0 -8l0 4" + } + ] + ], + "square-x": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm6 4l4 4m0 -4l-4 4" + } + ] + ], + "square": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" + } + ] + ], + "squares-diagonal": [ + [ + "path", + { + "d": "M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm8 -2v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2m.586 3.414l10.827 -10.827" + } + ] + ], + "squares-filled": [ + [ + "path", + { + "d": "M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm0 4.5l6.492 -6.492m-1 12l6.504 -6.504l-6.504 6.504zm-4.91 -.59l10.827 -10.827m-3.413 -.587v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2" + } + ] + ], + "stack-2": [ + [ + "path", + { + "d": "M12 4l-8 4l8 4l8 -4l-8 -4m-8 8l8 4l8 -4m-16 4l8 4l8 -4" + } + ] + ], + "stack-3": [ + [ + "path", + { + "d": "M12 2l-8 4l8 4l8 -4l-8 -4m-8 8l8 4l8 -4m-16 8l8 4l8 -4m-16 -4l8 4l8 -4" + } + ] + ], + "stack-pop": [ + [ + "path", + { + "d": "M7 9.5l-3 1.5l8 4l8 -4l-3 -1.5m-13 5.5l8 4l8 -4m-8 -4v-7m-3 3l3 -3l3 3" + } + ] + ], + "stack-push": [ + [ + "path", + { + "d": "M6 10l-2 1l8 4l8 -4l-2 -1m-14 5l8 4l8 -4m-8 -11v7m3 -3l-3 3l-3 -3" + } + ] + ], + "stack": [ + [ + "path", + { + "d": "M12 6l-8 4l8 4l8 -4l-8 -4m-8 8l8 4l8 -4" + } + ] + ], + "stairs-down": [ + [ + "path", + { + "d": "M4 20h4v-4h4v-4h4v-4h4m-9 -4l-7 7v-4m4 4h-4" + } + ] + ], + "stairs-up": [ + [ + "path", + { + "d": "M4 20h4v-4h4v-4h4v-4h4m-16 3l7 -7v4m-4 -4h4" + } + ] + ], + "stairs": [ + [ + "path", + { + "d": "M4 18h4v-4h4v-4h4v-4h4" + } + ] + ], + "star-filled": [ + [ + "path", + { + "d": "M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z", + "fill": "currentColor" + } + ] + ], + "star-half-filled": [ + [ + "path", + { + "d": "M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z", + "fill": "currentColor" + } + ] + ], + "star-half": [ + [ + "path", + { + "d": "M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z" + } + ] + ], + "star-off": [ + [ + "path", + { + "d": "M3 3l18 18m-10.988 -14.984l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917" + } + ] + ], + "star": [ + [ + "path", + { + "d": "M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" + } + ] + ], + "stars-filled": [ + [ + "path", + { + "d": "M17.8 19.817l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138zm-11.6 0l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138zm5.8 -10l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z", + "fill": "currentColor" + } + ] + ], + "stars-off": [ + [ + "path", + { + "d": "M17.373 13.371l.076 -.154a0.392 .392 0 0 1 .702 0l.907 1.831m.367 .39c.498 .071 1.245 .18 2.24 .324a0.39 .39 0 0 1 .217 .665c-.326 .316 -.57 .553 -.732 .712m-.611 3.405a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l1.601 -.232m-9.336 4.287l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138zm3.357 -14.261l1 -.146l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.014 .187m-4.153 -.166l-.744 .39a0.392 .392 0 0 1 -.568 -.41l.188 -1.093m-6.448 -6.452l18 18" + } + ] + ], + "stars": [ + [ + "path", + { + "d": "M17.8 19.817l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138zm-11.6 0l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138zm5.8 -10l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" + } + ] + ], + "status-change": [ + [ + "path", + { + "d": "M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 -6v-2a6 6 0 1 1 12 0v2m-3 -3l3 3l3 -3" + } + ] + ], + "steam": [ + [ + "path", + { + "d": "M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m17 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5.5 -14.5l3 3m7 7l3 3m0 -13l-3 3m-7 7l-3 3" + } + ] + ], + "steering-wheel-off": [ + [ + "path", + { + "d": "M20.04 16.048a9 9 0 0 0 -12.083 -12.09m-2.32 1.678a9 9 0 1 0 12.737 12.719m-7.779 -7.779a2 2 0 1 0 2.827 2.83m-1.422 .594v7m-2 -9l-6.75 -2m12.292 1.543l5.208 -1.543m-17.75 -7l18 18" + } + ] + ], + "steering-wheel": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2l0 7m-2 -9l-6.75 -2m10.75 2l6.75 -2" + } + ] + ], + "step-into": [ + [ + "path", + { + "d": "M12 3l0 12m4 -4l-4 4m-4 -4l4 4m0 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "step-out": [ + [ + "path", + { + "d": "M12 3l0 12m4 -8l-4 -4m-4 4l4 -4m0 17m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "stereo-glasses": [ + [ + "path", + { + "d": "M8 3h-2l-3 9m13 -9h2l3 9m-18 0v7a1 1 0 0 0 1 1h4.586a1 1 0 0 0 .707 -.293l2 -2a1 1 0 0 1 1.414 0l2 2a1 1 0 0 0 .707 .293h4.586a1 1 0 0 0 1 -1v-7h-18zm4 4h1m8 0h1" + } + ] + ], + "stethoscope-off": [ + [ + "path", + { + "d": "M4.172 4.179a2 2 0 0 0 -1.172 1.821v3.5a5.5 5.5 0 0 0 9.856 3.358m1.144 -2.858v-4a2 2 0 0 0 -2 -2h-1m-3 11a6 6 0 0 0 10.714 3.712m1.216 -2.798c.046 -.3 .07 -.605 .07 -.914v-3m-9 -9v2m9 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-15 -7l18 18" + } + ] + ], + "stethoscope": [ + [ + "path", + { + "d": "M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1m-3 11a6 6 0 1 0 12 0v-3m-9 -9v2m-5 -2v2m14 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "sticker": [ + [ + "path", + { + "d": "M20 12l-2 .5a6 6 0 0 1 -6.5 -6.5l.5 -2l8 8a8 8 0 1 1 -8 -8" + } + ] + ], + "storm-off": [ + [ + "path", + { + "d": "M9.884 9.874a3 3 0 1 0 4.24 4.246m.57 -3.441a3.012 3.012 0 0 0 -1.41 -1.39m-6.247 -2.226a7 7 0 0 0 9.907 9.892m1.585 -2.426a7 7 0 0 0 -9.058 -9.059m-4.102 8.766c-1.605 -3.428 -1.597 -6.673 -1 -9.849m14.261 5.373a14.323 14.323 0 0 1 1.368 6.251m-.37 3.608c-.087 .46 -.187 .92 -.295 1.377m-16.333 -18l18 18" + } + ] + ], + "storm": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m3 0m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m.369 2.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236m13.965 6.76c1.837 3.928 1.561 7.615 .703 11.236" + } + ] + ], + "stretching": [ + [ + "path", + { + "d": "M16 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-10 15l5 -.5l1 -2m7 2.5v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2" + } + ] + ], + "strikethrough": [ + [ + "path", + { + "d": "M5 12l14 0m-3 -5.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5" + } + ] + ], + "submarine": [ + [ + "path", + { + "d": "M3 11v6h2l1 -1.5l3 1.5h10a3 3 0 0 0 0 -6h-10h0l-3 1.5l-1 -1.5h-2zm14 0l-1 -3h-5l-1 3m3 -3v-2a1 1 0 0 1 1 -1h1" + } + ] + ], + "subscript": [ + [ + "path", + { + "d": "M5 7l8 10m-8 0l8 -10m8 13h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" + } + ] + ], + "subtask": [ + [ + "path", + { + "d": "M6 9l6 0m-8 -4l4 0m-2 0v11a1 1 0 0 0 1 1h5m0 -10m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1zm0 7m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z" + } + ] + ], + "sum-off": [ + [ + "path", + { + "d": "M18 18a1 1 0 0 1 -1 1h-11l6 -7m-3 -7h8a1 1 0 0 1 1 1v2m-15 -5l18 18" + } + ] + ], + "sum": [ + [ + "path", + { + "d": "M18 16v2a1 1 0 0 1 -1 1h-11l6 -7l-6 -7h11a1 1 0 0 1 1 1v2" + } + ] + ], + "sun-filled": [ + [ + "path", + { + "d": "M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" + } + ], + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", + "fill": "currentColor" + } + ] + ], + "sun-high": [ + [ + "path", + { + "d": "M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656zm-8.485 2.829l-1.414 1.414m1.414 -12.728l-1.414 -1.414m12.728 1.414l1.414 -1.414m-1.414 12.728l1.414 1.414m-15.071 -7.071h-2m10 -8v-2m8 10h2m-10 8v2" + } + ] + ], + "sun-low": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-4 0h.01m7.99 -8v.01m8 7.99h.01m-8.01 8v.01m-5.69 -13.7l-.01 -.01m11.41 .01l-.01 -.01m0 11.4l.01 .01m-11.41 -.01l.01 .01" + } + ] + ], + "sun-moon": [ + [ + "path", + { + "d": "M9.173 14.83a4 4 0 1 1 5.657 -5.657m-3.536 3.534l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914m-2.642 -6.36h1m8 -9v1m-6.4 1.6l.7 .7m-3.3 14.7l18 -18" + } + ] + ], + "sun-off": [ + [ + "path", + { + "d": "M3 3l18 18m-5 -9a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654m-11.826 -2.831h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" + } + ] + ], + "sun-wind": [ + [ + "path", + { + "d": "M14.468 10a4 4 0 1 0 -5.466 5.46m-7 -3.465h1m8 -9v1m0 16v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m-11.4 11.4l-.7 .7m10.4 -5.4h5a2 2 0 1 0 0 -4m-8 7h5.714l.253 0a2 2 0 0 1 2.033 2a2 2 0 0 1 -2 2h-.286" + } + ] + ], + "sun": [ + [ + "path", + { + "d": "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-5 0h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" + } + ] + ], + "sunglasses": [ + [ + "path", + { + "d": "M8 4h-2l-3 10m13 -10h2l3 10m-11 2h4m7 .5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5m-11 0a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5m-6 -2.5l4.5 4.5m6.5 -4.5l4.5 4.5" + } + ] + ], + "sunrise": [ + [ + "path", + { + "d": "M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0m-13 4l18 0m-9 -12v-6l3 3m-6 0l3 -3" + } + ] + ], + "sunset-2": [ + [ + "path", + { + "d": "M3 13h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0m-13 4h18m-14 3h5m4 0h1m-5 -15v-1" + } + ] + ], + "sunset": [ + [ + "path", + { + "d": "M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0m-13 4l18 0m-9 -18v6l3 -3m-6 0l3 3" + } + ] + ], + "superscript": [ + [ + "path", + { + "d": "M5 7l8 10m-8 0l8 -10m8 4h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" + } + ] + ], + "svg": [ + [ + "path", + { + "d": "M21 8h-2a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h2v-4h-1m-13 -4h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3m7 -8l1.5 8h1l1.5 -8" + } + ] + ], + "swimming": [ + [ + "path", + { + "d": "M16 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-9 2l4 -2l3.5 3l-1.5 2m-9 2.75a2.4 2.4 0 0 0 1 .25a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 1 -.25" + } + ] + ], + "swipe": [ + [ + "path", + { + "d": "M15 16.572v2.42a2.01 2.01 0 0 1 -2.009 2.008h-7.981a2.01 2.01 0 0 1 -2.01 -2.009v-7.981a2.01 2.01 0 0 1 2.009 -2.01h2.954m1.204 -4.489a2.04 2.04 0 0 1 2.496 -1.441l7.826 2.097a2.04 2.04 0 0 1 1.441 2.496l-2.097 7.826a2.04 2.04 0 0 1 -2.496 1.441l-7.827 -2.097a2.04 2.04 0 0 1 -1.441 -2.496l2.098 -7.827z" + } + ] + ], + "switch-2": [ + [ + "path", + { + "d": "M3 17h5l1.67 -2.386m3.66 -5.227l1.67 -2.387h6m-3 -3l3 3l-3 3m-15 -3h5l7 10h6m-3 3l3 -3l-3 -3" + } + ] + ], + "switch-3": [ + [ + "path", + { + "d": "M3 17h2.397a5 5 0 0 0 4.096 -2.133l.177 -.253m3.66 -5.227l.177 -.254a5 5 0 0 1 4.096 -2.133h3.397m-3 -3l3 3l-3 3m-15 -3h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397m-3 3l3 -3l-3 -3" + } + ] + ], + "switch-horizontal": [ + [ + "path", + { + "d": "M16 3l4 4l-4 4m-6 -4l10 0m-12 6l-4 4l4 4m-4 -4l9 0" + } + ] + ], + "switch-vertical": [ + [ + "path", + { + "d": "M3 8l4 -4l4 4m-4 -4l0 9m6 3l4 4l4 -4m-4 -6l0 10" + } + ] + ], + "switch": [ + [ + "path", + { + "d": "M15 4l4 0l0 4m-4.25 1.25l4.25 -5.25m-14 15l4 -4m6 4l4 0l0 -4m-14 -10l14 14" + } + ] + ], + "sword-off": [ + [ + "path", + { + "d": "M11.938 7.937l3.062 -3.937h5v5l-3.928 3.055m-2.259 1.757l-2.813 2.188l-4 4l-3 -3l4 -4l2.19 -2.815m-3.69 1.315l6 6m-9.5 -14.5l18 18" + } + ] + ], + "sword": [ + [ + "path", + { + "d": "M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9zm-13.5 7.5l6 6" + } + ] + ], + "swords": [ + [ + "path", + { + "d": "M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11zm-16 10l6 6m3.32 -1.68l3.68 3.68l3 -3l-3.365 -3.365m-7.635 -9.135l-2 -2.5h-5v5l3 2.5" + } + ] + ], + "table-alias": [ + [ + "path", + { + "d": "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m-9 -5m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm1 -6h16m-10 -6v8" + } + ] + ], + "table-export": [ + [ + "path", + { + "d": "M11.5 20h-5.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7.5m-16 -3.5h16m-10 -6v16m4 -1h7m-3 -3l3 3l-3 3" + } + ] + ], + "table-import": [ + [ + "path", + { + "d": "M4 13.5v-7.5a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m-8 -10h16m-10 -6v11.5m-8 3.5h7m-3 -3l3 3l-3 3" + } + ] + ], + "table-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.588 3.417c-.362 .36 -.86 .583 -1.412 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.053 .586 -1.414m-.586 5.414h6m4 0h6m-10 -6v2m0 4v10m-7 -17l18 18" + } + ] + ], + "table-options": [ + [ + "path", + { + "d": "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m-8 -10h16m-10 -6v9m-4.719 5.5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -3.5v1.5m0 4v1.5m3.031 -5.25l-1.299 .75m-3.463 2l-1.3 .75m0 -3.5l1.3 .75m3.463 2l1.3 .75" + } + ] + ], + "table-shortcut": [ + [ + "path", + { + "d": "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m-8 -10h16m-10 -6v8m-7 9l6 -6m-5 0h5v5" + } + ] + ], + "table": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 4l16 0m-10 -6l0 16" + } + ] + ], + "tag-off": [ + [ + "path", + { + "d": "M7.792 7.793a1 1 0 0 0 1.414 1.414m-4.326 -4.33a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2 -2l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859m-5 -1l18 18" + } + ] + ], + "tag": [ + [ + "path", + { + "d": "M8.5 8.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-3.5 -1.5v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z" + } + ] + ], + "tags-off": [ + [ + "path", + { + "d": "M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085m2.086 2.919l.418 -.418m2 -2l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116m-7.29 3.407h-.01m-2.99 -6l18 18" + } + ] + ], + "tags": [ + [ + "path", + { + "d": "M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593zm9.714 12.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116m-7.29 3.407h-.01" + } + ] + ], + "tallymark-1": [ + [ + "path", + { + "d": "M12 5l0 14" + } + ] + ], + "tallymark-2": [ + [ + "path", + { + "d": "M10 5l0 14m4 -14l0 14" + } + ] + ], + "tallymark-3": [ + [ + "path", + { + "d": "M8 5l0 14m4 -14l0 14m4 -14l0 14" + } + ] + ], + "tallymark-4": [ + [ + "path", + { + "d": "M6 5l0 14m4 -14l0 14m4 -14l0 14m4 -14l0 14" + } + ] + ], + "tallymarks": [ + [ + "path", + { + "d": "M6 5l0 14m4 -14l0 14m4 -14l0 14m4 -14l0 14m-15 -2l18 -10" + } + ] + ], + "tank": [ + [ + "path", + { + "d": "M2 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm4 -3l1 -5h5l3 5m6 -3l-7.8 0" + } + ] + ], + "target-arrow": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 -5a5 5 0 1 0 5 5m-4 -8.945a9 9 0 1 0 7.941 7.945m-5.945 -5v3h3l3 -3h-3v-3zm0 3l-3 3" + } + ] + ], + "target-off": [ + [ + "path", + { + "d": "M11.286 11.3a1 1 0 0 0 1.41 1.419m-4.256 -4.229a5 5 0 0 0 7.098 7.044m1.377 -2.611a5 5 0 0 0 -5.846 -5.836m-5.42 -1.464a9 9 0 1 0 12.698 12.758m1.683 -2.313a9 9 0 0 0 -12.076 -12.11m-4.954 -.958l18 18" + } + ] + ], + "target": [ + [ + "path", + { + "d": "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 0m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "teapot": [ + [ + "path", + { + "d": "M10.29 3h3.42a2 2 0 0 1 1.988 1.78l1.555 14a2 2 0 0 1 -1.988 2.22h-6.53a2 2 0 0 1 -1.988 -2.22l1.555 -14a2 2 0 0 1 1.988 -1.78zm-2.82 9.5l-4.257 -5.019a0.899 .899 0 0 1 .69 -1.481h13.09a3 3 0 0 1 3.007 3v3c0 1.657 -1.346 3 -3.007 3m-9.993 2h10" + } + ] + ], + "telescope-off": [ + [ + "path", + { + "d": "M6 21l6 -5l6 5m-6 -8v8m-3.762 -12.738l-4.183 2.51c-1.02 .614 -1.357 1.898 -.76 2.906l.165 .28c.52 .88 1.624 1.266 2.605 .91l6.457 -2.34m2.907 -1.055l4.878 -1.77a1.023 1.023 0 0 0 .565 -1.455l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-6.016 3.61m3.267 -1.765l3 5.5m-14 -7.502l18 18" + } + ] + ], + "telescope": [ + [ + "path", + { + "d": "M6 21l6 -5l6 5m-6 -8v8m-8.706 -7.322l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905zm10.706 -8.678l3 5.5" + } + ] + ], + "temperature-celsius": [ + [ + "path", + { + "d": "M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 1a3 3 0 0 0 -3 -3h-1a3 3 0 0 0 -3 3v6a3 3 0 0 0 3 3h1a3 3 0 0 0 3 -3" + } + ] + ], + "temperature-fahrenheit": [ + [ + "path", + { + "d": "M6 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m9 4l5 0m2 -6h-6a1 1 0 0 0 -1 1v11" + } + ] + ], + "temperature-minus": [ + [ + "path", + { + "d": "M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5m0 -4.5l4 0m4 0l6 0" + } + ] + ], + "temperature-off": [ + [ + "path", + { + "d": "M10 10v3.5a4 4 0 1 0 5.836 2.33m-1.836 -5.83v-5a2 2 0 1 0 -4 0v1m3 3h1m-11 -6l18 18" + } + ] + ], + "temperature-plus": [ + [ + "path", + { + "d": "M8 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5m0 -4.5l4 0m4 0l6 0m-3 -3l0 6" + } + ] + ], + "temperature": [ + [ + "path", + { + "d": "M10 13.5a4 4 0 1 0 4 0v-8.5a2 2 0 0 0 -4 0v8.5m0 -4.5l4 0" + } + ] + ], + "template-off": [ + [ + "path", + { + "d": "M8 4h11a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-7m-4 0h-3a1 1 0 0 1 -1 -1v-2c0 -.271 .108 -.517 .283 -.697m-.283 7.697m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm12 -1h4m-6 4h2m-2 4h6m-17 -17l18 18" + } + ] + ], + "template": [ + [ + "path", + { + "d": "M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1zm0 7m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm10 -1l6 0m-6 4l6 0m-6 4l6 0" + } + ] + ], + "tent-off": [ + [ + "path", + { + "d": "M11 14l4 6h5m-2.863 -6.868l-5.137 -9.132l-1.44 2.559m-1.44 2.563l-6.12 10.878h6l4 -6m-10 -11l18 18" + } + ] + ], + "tent": [ + [ + "path", + { + "d": "M11 14l4 6h6l-9 -16l-9 16h6l4 -6" + } + ] + ], + "terminal-2": [ + [ + "path", + { + "d": "M8 9l3 3l-3 3m5 0l3 0m-13 -11m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" + } + ] + ], + "terminal": [ + [ + "path", + { + "d": "M5 7l5 5l-5 5m7 2l7 0" + } + ] + ], + "test-pipe-2": [ + [ + "path", + { + "d": "M15 3v15a3 3 0 0 1 -6 0v-15m0 9h6m-7 -9h8" + } + ] + ], + "test-pipe-off": [ + [ + "path", + { + "d": "M20 8.04a803.533 803.533 0 0 0 -4 3.96m-2 2c-1.085 1.085 -3.125 3.14 -6.122 6.164a2.857 2.857 0 0 1 -4.041 -4.04c3.018 -3 5.073 -5.037 6.163 -6.124m2 -2c.872 -.872 2.191 -2.205 3.959 -4m-8.959 9h6m6 2l1.5 1.6m-.74 3.173a2 2 0 0 1 -2.612 -2.608m-2.148 -14.165l6 6m-18 -6l18 18" + } + ] + ], + "test-pipe": [ + [ + "path", + { + "d": "M20 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124m-8.959 9h8m4 2l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6zm-4 -12l6 6" + } + ] + ], + "tex": [ + [ + "path", + { + "d": "M9 8v-1h-6v1m3 7v-8m15 8l-5 -8m0 8l5 -8m-7 4h-4v8h4m-4 -4h3" + } + ] + ], + "text-caption": [ + [ + "path", + { + "d": "M4 15h16m-16 -11m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm0 15h12" + } + ] + ], + "text-color": [ + [ + "path", + { + "d": "M9 15v-7a3 3 0 0 1 6 0v7m-6 -4h6m-10 8h14" + } + ] + ], + "text-decrease": [ + [ + "path", + { + "d": "M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5m-7 -6h7m10 -1h-6" + } + ] + ], + "text-direction-ltr": [ + [ + "path", + { + "d": "M5 19h14m-2 2l2 -2l-2 -2m-1 -13h-6.5a3.5 3.5 0 0 0 0 7h.5m4 4v-11m-4 11v-11" + } + ] + ], + "text-direction-rtl": [ + [ + "path", + { + "d": "M16 4h-6.5a3.5 3.5 0 0 0 0 7h.5m4 4v-11m-4 11v-11m-5 15h14m-12 2l-2 -2l2 -2" + } + ] + ], + "text-increase": [ + [ + "path", + { + "d": "M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5m-7 -6h7m7 -4v6m3 -3h-6" + } + ] + ], + "text-orientation": [ + [ + "path", + { + "d": "M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5m-8.5 1.5l5 -5m10.5 5.5l-9 9m9 -9v4m0 -4h-4" + } + ] + ], + "text-plus": [ + [ + "path", + { + "d": "M19 10h-14m0 -4h14m-5 8h-9m0 4h6m7 -3v6m-3 -3h6" + } + ] + ], + "text-recognition": [ + [ + "path", + { + "d": "M4 8v-2a2 2 0 0 1 2 -2h2m-4 12v2a2 2 0 0 0 2 2h2m8 -16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2 -2v-2m-8 0v-7m-3 0h6" + } + ] + ], + "text-resize": [ + [ + "path", + { + "d": "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 -12v10m2 -12h10m-10 14h10m2 -12v10m-9 -7h4m-2 4v-4" + } + ] + ], + "text-size": [ + [ + "path", + { + "d": "M3 7v-2h13v2m-6 -2v14m2 0h-4m7 -6v-1h6v1m-3 -1v7m-1 0h2" + } + ] + ], + "text-spellcheck": [ + [ + "path", + { + "d": "M5 15v-7.5a3.5 3.5 0 0 1 7 0v7.5m-7 -5h7m-2 8l3 3l7 -7" + } + ] + ], + "text-wrap-disabled": [ + [ + "path", + { + "d": "M4 6l10 0m-10 12l10 0m-10 -6h17l-3 -3m0 6l3 -3" + } + ] + ], + "text-wrap": [ + [ + "path", + { + "d": "M4 6l16 0m-16 12l5 0m-5 -6h13a3 3 0 0 1 0 6h-4l2 -2m0 4l-2 -2" + } + ] + ], + "texture": [ + [ + "path", + { + "d": "M6 3l-3 3m18 12l-3 3m-7 -18l-8 8m13 -8l-13 13m18 -13l-18 18m18 -13l-13 13m13 -8l-8 8" + } + ] + ], + "thermometer": [ + [ + "path", + { + "d": "M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0zm-3 2l-1.5 -1.5m-1.5 4.5l-1.5 -1.5m-1.5 4.5l-1.5 -1.5m-1.5 5.5l-3 3" + } + ] + ], + "thumb-down-filled": [ + [ + "path", + { + "d": "M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3", + "fill": "currentColor" + } + ] + ], + "thumb-down-off": [ + [ + "path", + { + "d": "M7 13v-6m-3 -3a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 1 0 4 0v-3m2 -2h1a2 2 0 0 0 2 -2l-1 -5c-.295 -1.26 -1.11 -2.076 -2 -2h-7c-.57 0 -1.102 .159 -1.556 .434m-5.444 -1.434l18 18" + } + ] + ], + "thumb-down": [ + [ + "path", + { + "d": "M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3" + } + ] + ], + "thumb-up-filled": [ + [ + "path", + { + "d": "M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3", + "fill": "currentColor" + } + ] + ], + "thumb-up-off": [ + [ + "path", + { + "d": "M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a3.987 3.987 0 0 0 2.828 -1.172m1.172 -2.828v-1a2 2 0 1 1 4 0v5h3a2 2 0 0 1 2 2c-.222 1.112 -.39 1.947 -.5 2.503m-.758 3.244c-.392 .823 -1.044 1.312 -1.742 1.253h-7a3 3 0 0 1 -3 -3m-4 -14l18 18" + } + ] + ], + "thumb-up": [ + [ + "path", + { + "d": "M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3" + } + ] + ], + "tic-tac": [ + [ + "path", + { + "d": "M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-1 6h18m-9 -9v18m-8 -5l4 4m-4 0l4 -4m8 -12l4 4m-4 0l4 -4m-2 14m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "ticket-off": [ + [ + "path", + { + "d": "M15 5v2m0 10v2m-6 -14h10a2 2 0 0 1 2 2v3a2 2 0 1 0 0 4v3m-2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 1 0 0 -4v-3a2 2 0 0 1 2 -2m-2 -2l18 18" + } + ] + ], + "ticket": [ + [ + "path", + { + "d": "M15 5l0 2m0 4l0 2m0 4l0 2m-10 -14h14a2 2 0 0 1 2 2v3a2 2 0 0 0 0 4v3a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-3a2 2 0 0 0 0 -4v-3a2 2 0 0 1 2 -2" + } + ] + ], + "tie": [ + [ + "path", + { + "d": "M12 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4zm-1.5 -15h3l5 5.5" + } + ] + ], + "tilde": [ + [ + "path", + { + "d": "M4 12c0 -1.657 1.592 -3 3.556 -3c1.963 0 3.11 1.5 4.444 3c1.333 1.5 2.48 3 4.444 3s3.556 -1.343 3.556 -3" + } + ] + ], + "tilt-shift-off": [ + [ + "path", + { + "d": "M8.56 3.69a9 9 0 0 0 -.577 .263m-4.293 4.607a9 9 0 0 0 -.69 3.44m.69 3.44a9 9 0 0 0 1.95 2.92m2.92 1.95a9 9 0 0 0 3.44 .69m3.44 -.69a9 9 0 0 0 2.92 -1.95m1.95 -2.92a9 9 0 0 0 .69 -3.44m-.69 -3.44a9 9 0 0 0 -1.95 -2.92m-2.92 -1.95a9 9 0 0 0 -3.44 -.69m-1.43 7.602a2 2 0 0 0 2.862 2.795m-10.432 -10.397l18 18" + } + ] + ], + "tilt-shift": [ + [ + "path", + { + "d": "M8.56 3.69a9 9 0 0 0 -2.92 1.95m-1.95 2.92a9 9 0 0 0 -.69 3.44m.69 3.44a9 9 0 0 0 1.95 2.92m2.92 1.95a9 9 0 0 0 3.44 .69m3.44 -.69a9 9 0 0 0 2.92 -1.95m1.95 -2.92a9 9 0 0 0 .69 -3.44m-.69 -3.44a9 9 0 0 0 -1.95 -2.92m-2.92 -1.95a9 9 0 0 0 -3.44 -.69m0 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "timeline-event-exclamation": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2zm0 -9v2m0 3v.01" + } + ] + ], + "timeline-event-minus": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2zm-2 -7h4" + } + ] + ], + "timeline-event-plus": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2zm-2 -7h4m-2 -2v4" + } + ] + ], + "timeline-event-text": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2zm-3 -9h6m-6 3h3" + } + ] + ], + "timeline-event-x": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2zm1.5 -5.5l-3 -3m0 3l3 -3" + } + ] + ], + "timeline-event": [ + [ + "path", + { + "d": "M12 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0h-6m10 0h6m-8 -5l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z" + } + ] + ], + "timeline": [ + [ + "path", + { + "d": "M4 16l6 -7l5 5l5 -6m-5 6m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 -5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5 7m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m17 -8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "tir": [ + [ + "path", + { + "d": "M5 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m14 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-8 1h8m4 0h2v-6a5 7 0 0 0 -5 -7h-1l1.5 7h4.5m-9 6v-13h3m-12 12l0 -5l9 0" + } + ] + ], + "toggle-left": [ + [ + "path", + { + "d": "M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-4 -6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z" + } + ] + ], + "toggle-right": [ + [ + "path", + { + "d": "M16 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-12 -6m0 6a6 6 0 0 1 6 -6h8a6 6 0 0 1 6 6v0a6 6 0 0 1 -6 6h-8a6 6 0 0 1 -6 -6z" + } + ] + ], + "toilet-paper-off": [ + [ + "path", + { + "d": "M4.27 4.28c-.768 1.27 -1.27 3.359 -1.27 5.72c0 3.866 1.343 7 3 7s3 -3.134 3 -7c0 -.34 -.01 -.672 -.03 -1m12.03 1c0 -3.866 -1.343 -7 -3 -7m-11 0h11m3 7v7m-1.513 2.496l-1.487 -.496l-3 2l-3 -3l-3 2v-10m-3 0h.01m-3.01 -7l18 18" + } + ] + ], + "toilet-paper": [ + [ + "path", + { + "d": "M6 10m-3 0a3 7 0 1 0 6 0a3 7 0 1 0 -6 0m18 0c0 -3.866 -1.343 -7 -3 -7m-12 0h12m3 7v10l-3 -1l-3 2l-3 -3l-3 2v-10m-3 0h.01" + } + ] + ], + "tool": [ + [ + "path", + { + "d": "M7 10h3v-3l-3.5 -3.5a6 6 0 0 1 8 8l6 6a2 2 0 0 1 -3 3l-6 -6a6 6 0 0 1 -8 -8l3.5 3.5" + } + ] + ], + "tools-kitchen-2-off": [ + [ + "path", + { + "d": "M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941m5 4.941v2h-1v-3m-10 -10v13m-3 -16v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3m-8 -1l18 18" + } + ] + ], + "tools-kitchen-2": [ + [ + "path", + { + "d": "M19 3v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-10 -14v17m-3 -17v3a3 3 0 1 0 6 0v-3" + } + ] + ], + "tools-kitchen-off": [ + [ + "path", + { + "d": "M7 3h5l-.5 4.5m-.4 3.595l-.1 .905h-6l-.875 -7.874m2.875 13.874h2v3h-2zm8.225 -6.784c.42 -2.518 1.589 -5.177 4.775 -8.216v12h-1m1 0v1m0 4v1h-1v-2m-11 -7v6m-5 -15l18 18" + } + ] + ], + "tools-kitchen": [ + [ + "path", + { + "d": "M4 3h8l-1 9h-6zm3 15h2v3h-2zm13 -15v12h-5c-.023 -3.681 .184 -7.406 5 -12zm0 12v6h-1v-3m-11 -6l0 6" + } + ] + ], + "tools-off": [ + [ + "path", + { + "d": "M16 12l4 -4a2.828 2.828 0 1 0 -4 -4l-4 4m-2 2l-7 7v4h4l7 -7m.5 -8.5l4 4m-6.5 -1.5l-5 -5m-2 2l-2 2l5 5m-1 -4l-1.5 1.5m10.5 2.5l5 5m-2 2l-2 2l-5 -5m4 1l-1.5 1.5m-11.5 -15.5l18 18" + } + ] + ], + "tools": [ + [ + "path", + { + "d": "M3 21h4l13 -13a1.5 1.5 0 0 0 -4 -4l-13 13v4m11.5 -15.5l4 4m-6.5 -1.5l-5 -5l-4 4l5 5m-1 -4l-1.5 1.5m10.5 2.5l5 5l-4 4l-5 -5m4 1l-1.5 1.5" + } + ] + ], + "tooltip": [ + [ + "path", + { + "d": "M12 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -5l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z" + } + ] + ], + "topology-bus": [ + [ + "path", + { + "d": "M14 10a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm16 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-20 6h20m-18 -4v4m8 -4v4m8 -4v4" + } + ] + ], + "topology-complex": [ + [ + "path", + { + "d": "M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-6 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-6.5 -4.5l3 3m-4.5 -2.5v8m12 0v-8m-10 -2h8m0 12h-8" + } + ] + ], + "topology-full-hierarchy": [ + [ + "path", + { + "d": "M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-6 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 -4v8m12 0v-8m-10 -2h8m0 12h-8m-.5 -10.5l3 3m3 3l3 3m0 -9l-3 3m-3 3l-3 3" + } + ] + ], + "topology-full": [ + [ + "path", + { + "d": "M20 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-14 2v8m12 0v-8m-10 -2h8m0 12h-8m-.5 -10.5l9 9m-9 0l9 -9" + } + ] + ], + "topology-ring-2": [ + [ + "path", + { + "d": "M14 6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-7 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm14 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-14 0h10m1 -2l-5 -8m-2 0l-5 8" + } + ] + ], + "topology-ring-3": [ + [ + "path", + { + "d": "M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-2 2v8m12 0v-8m-10 -2h8m0 12h-8" + } + ] + ], + "topology-ring": [ + [ + "path", + { + "d": "M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm16 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8.5 -6.5l5 5m-13 3l5 5m3 0l5 -5m-8 -8l-5 5" + } + ] + ], + "topology-star-2": [ + [ + "path", + { + "d": "M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm16 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0h4m4 0h4m-6 -6v4m0 4v4" + } + ] + ], + "topology-star-3": [ + [ + "path", + { + "d": "M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm8 -14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-4 7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-4 -7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-16 0h4m4 0h4m-3 -5l-2 3m-4 -3l2 3m0 4l-2 3m4 -3l2 3" + } + ] + ], + "topology-star-ring-2": [ + [ + "path", + { + "d": "M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm16 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0h4m4 0h4m-6 -6v4m0 4v4m-6.5 -7.5l5 -5m3 0l5 5m0 3l-5 5m-3 0l-5 -5" + } + ] + ], + "topology-star-ring-3": [ + [ + "path", + { + "d": "M10 19a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm8 -14a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-4 7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-4 -7a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-16 0h4m4 0h4m-3 -5l-2 3m-4 -3l2 3m0 4l-2 3m4 -3l2 3m-5 -12h4m-4 14h4m3 -2l2 -3m0 -4l-2 -3m-10 0l-2 3m0 4l2 3" + } + ] + ], + "topology-star-ring": [ + [ + "path", + { + "d": "M14 20a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm0 -16a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 8a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm16 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-8 0h4m4 0h4m-4.5 -6.5l5 5m-13 3l5 5m3 0l5 -5m-8 -8l-5 5m6.5 -4.5v4m0 4v4" + } + ] + ], + "topology-star": [ + [ + "path", + { + "d": "M8 18a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 -12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-12 0a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm12 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-6 -6a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-6.5 -4.5l3 3m-3 6l3 -3m3 0l3 3m0 -9l-3 3" + } + ] + ], + "torii": [ + [ + "path", + { + "d": "M4 4c5.333 1.333 10.667 1.333 16 0m-16 4h16m-8 -3v3m6 -3.5v15.5m-12 -15.5v15.5" + } + ] + ], + "tornado": [ + [ + "path", + { + "d": "M21 4l-18 0m10 12l-6 0m4 4l4 0m-9 -12l14 0m-16 4l12 0" + } + ] + ], + "tournament": [ + [ + "path", + { + "d": "M4 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-14 2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 8m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 -8h3a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-3m0 -16h7a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-2m3 -6h4" + } + ] + ], + "tower-off": [ + [ + "path", + { + "d": "M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394m6 17v-5a2 2 0 1 1 4 0v5m-11 -18l18 18" + } + ] + ], + "tower": [ + [ + "path", + { + "d": "M5 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1zm5 18v-5a2 2 0 1 1 4 0v5" + } + ] + ], + "track": [ + [ + "path", + { + "d": "M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7" + } + ] + ], + "tractor": [ + [ + "path", + { + "d": "M7 15m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m4 0l0 .01m12 1.99m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-6.5 0l6.5 0m3 -1.8v-4.2a1 1 0 0 0 -1 -1h-6l-2 -5h-6v6.5m13 -6.5h-1a1 1 0 0 0 -1 1v4" + } + ] + ], + "trademark": [ + [ + "path", + { + "d": "M4.5 9h5m-2.5 0v6m6 0v-6l3 4l3 -4v6" + } + ] + ], + "traffic-cone-off": [ + [ + "path", + { + "d": "M4 20h16m-10.6 -10h.6m4 0h.6m-6.8 5h7.2m-9 5l3.5 -10.5m1 -3l.5 -1.5h2l2 6m2 6l1 3m-15 -17l18 18" + } + ] + ], + "traffic-cone": [ + [ + "path", + { + "d": "M4 20l16 0m-10.6 -10l5.2 0m-6.8 5l8.4 0m-10.2 5l5 -15h2l5 15" + } + ] + ], + "traffic-lights-off": [ + [ + "path", + { + "d": "M8 4c.912 -1.219 2.36 -2 4 -2a5 5 0 0 1 5 5v6m0 4a5 5 0 0 1 -10 0v-10m5 1a1 1 0 1 0 -1 -1m.291 4.295a1 1 0 0 0 1.418 1.41m-.709 4.295m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8 -14l18 18" + } + ] + ], + "traffic-lights": [ + [ + "path", + { + "d": "M7 2m0 5a5 5 0 0 1 5 -5h0a5 5 0 0 1 5 5v10a5 5 0 0 1 -5 5h0a5 5 0 0 1 -5 -5zm5 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "train": [ + [ + "path", + { + "d": "M21 13c0 -3.87 -3.37 -7 -10 -7h-8m0 9h16a2 2 0 0 0 2 -2m-18 -7v5h17.5m-17.5 -1l0 4m5 -3l0 -5m5 5l0 -4.5m-10 12.5l18 0" + } + ] + ], + "transfer-in": [ + [ + "path", + { + "d": "M4 18v3h16v-14l-8 -4l-8 4v3m0 4h9m-3 -3l3 3l-3 3" + } + ] + ], + "transfer-out": [ + [ + "path", + { + "d": "M4 19v2h16v-14l-8 -4l-8 4v2m9 5h-9m3 -3l-3 3l3 3" + } + ] + ], + "transform-filled": [ + [ + "path", + { + "d": "M5 13v.875c0 3.383 2.686 6.125 6 6.125m-5 -14m12 12m-2 -9l2 2l2 -2m-2 1v-.875c0 -3.383 -2.686 -6.125 -6 -6.125m-9 12l2 -2l2 2" + } + ], + [ + "path", + { + "d": "M3 6a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m12 12a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", + "fill": "currentColor" + } + ] + ], + "transform": [ + [ + "path", + { + "d": "M5 13v.875c0 3.383 2.686 6.125 6 6.125m-5 -14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m15 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m1 -9l2 2l2 -2m-2 1v-.875c0 -3.383 -2.686 -6.125 -6 -6.125m-9 12l2 -2l2 2" + } + ] + ], + "transition-bottom": [ + [ + "path", + { + "d": "M21 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3m0 -15m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v0a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 3v8m-3 -3l3 3l3 -3" + } + ] + ], + "transition-left": [ + [ + "path", + { + "d": "M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3m15 3v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0zm-6 6h-8m3 -3l-3 3l3 3" + } + ] + ], + "transition-right": [ + [ + "path", + { + "d": "M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3m-15 -3v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0zm6 -6h8m-3 3l3 -3l-3 -3" + } + ] + ], + "transition-top": [ + [ + "path", + { + "d": "M21 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3m3 15h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6zm6 -6v-8m-3 3l3 -3l3 3" + } + ] + ], + "trash-off": [ + [ + "path", + { + "d": "M3 3l18 18m-17 -14h3m4 0h9m-10 4l0 6m4 -3l0 3m-9 -10l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923m.307 -3.704l.616 -7.373m-10 -2v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3" + } + ] + ], + "trash-x": [ + [ + "path", + { + "d": "M4 7h16m-15 0l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12m-10 0v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3m-5 5l4 4m0 -4l-4 4" + } + ] + ], + "trash": [ + [ + "path", + { + "d": "M4 7l16 0m-10 4l0 6m4 -6l0 6m-9 -10l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12m-10 0v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3" + } + ] + ], + "tree": [ + [ + "path", + { + "d": "M12 13l-2 -2m2 1l2 -2m-2 11v-13m-2.176 8a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z" + } + ] + ], + "trees": [ + [ + "path", + { + "d": "M16 5l3 3l-2 1l4 4l-3 1l4 4h-9m2 3l0 -3m-7 -5l-2 -2m2 1l2 -2m-2 11v-13m-2.176 8a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z" + } + ] + ], + "trekking": [ + [ + "path", + { + "d": "M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-4 17l2 -4m4 4v-4l-3 -3l1 -6l3 4l3 2m-7 0l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2m-1 5v9m-1 -1h2" + } + ] + ], + "trending-down-2": [ + [ + "path", + { + "d": "M3 6h5l7 10h6m-3 3l3 -3l-3 -3" + } + ] + ], + "trending-down-3": [ + [ + "path", + { + "d": "M3 6h2.397a5 5 0 0 1 4.096 2.133l4.014 5.734a5 5 0 0 0 4.096 2.133h3.397m-3 3l3 -3l-3 -3" + } + ] + ], + "trending-down": [ + [ + "path", + { + "d": "M3 7l6 6l4 -4l8 8m0 -7l0 7l-7 0" + } + ] + ], + "trending-up-2": [ + [ + "path", + { + "d": "M18 5l3 3l-3 3m-15 7h5l7 -10h6" + } + ] + ], + "trending-up-3": [ + [ + "path", + { + "d": "M18 5l3 3l-3 3m-15 7h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397" + } + ] + ], + "trending-up": [ + [ + "path", + { + "d": "M3 17l6 -6l4 4l8 -8m-7 0l7 0l0 7" + } + ] + ], + "triangle-filled": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75", + "fill": "currentColor" + } + ] + ], + "triangle-inverted-filled": [ + [ + "path", + { + "d": "M5 4h14a2 2 0 0 1 1.84 2.75l-7.1 12.25a2 2 0 0 1 -3.5 0l-7.1 -12.25a2 2 0 0 1 1.75 -2.75", + "fill": "currentColor" + } + ] + ], + "triangle-inverted": [ + [ + "path", + { + "d": "M5 4h14a2 2 0 0 1 1.84 2.75l-7.1 12.25a2 2 0 0 1 -3.5 0l-7.1 -12.25a2 2 0 0 1 1.75 -2.75" + } + ] + ], + "triangle-off": [ + [ + "path", + { + "d": "M5 19h14m1.986 -2.014a2 2 0 0 0 -.146 -.736l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.825 1.424m-1.467 2.53l-4.808 8.296a2 2 0 0 0 1.75 2.75m-1.89 -16l18 18" + } + ] + ], + "triangle-square-circle": [ + [ + "path", + { + "d": "M12 3l-4 7h8zm5 14m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-10 -3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z" + } + ] + ], + "triangle": [ + [ + "path", + { + "d": "M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" + } + ] + ], + "triangles": [ + [ + "path", + { + "d": "M9.974 21h8.052a0.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a0.973 .973 0 0 0 -1.622 0l-4.025 6.048a0.977 .977 0 0 0 .81 1.517zm-5 -5h14.04c.542 0 .98 -.443 .98 -.989a1 1 0 0 0 -.156 -.534l-7.02 -11.023a0.974 .974 0 0 0 -1.648 0l-7.02 11.023a1 1 0 0 0 .294 1.366a0.973 .973 0 0 0 .53 .157z" + } + ] + ], + "trident": [ + [ + "path", + { + "d": "M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2m-9 15v-18l-2 2m4 0l-2 -2" + } + ] + ], + "trolley": [ + [ + "path", + { + "d": "M11 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-3 -3l3 2m3 -1l8 -12m-3 5l2 1m-9.408 -6.305l3.306 2.104a1.3 1.3 0 0 1 .396 1.8l-3.094 4.811a1.3 1.3 0 0 1 -1.792 .394l-3.306 -2.104a1.3 1.3 0 0 1 -.396 -1.8l3.094 -4.81a1.3 1.3 0 0 1 1.792 -.394z" + } + ] + ], + "trophy-filled": [ + [ + "path", + { + "d": "M8 21l8 0m-4 -4l0 4m-5 -17l10 0v8a5 5 0 0 1 -10 0v-8", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M5 9m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "trophy-off": [ + [ + "path", + { + "d": "M8 21h8m-4 -4v4m-4 -17h9v8c0 .31 -.028 .612 -.082 .905m-1.384 2.632a5 5 0 0 1 -8.534 -3.537v-5m-2 2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-14 -6l18 18" + } + ] + ], + "trophy": [ + [ + "path", + { + "d": "M8 21l8 0m-4 -4l0 4m-5 -17l10 0v8a5 5 0 0 1 -10 0v-8m-2 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m16 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "trowel": [ + [ + "path", + { + "d": "M14.42 9.058l-5.362 5.363a1.978 1.978 0 0 1 -3.275 -.773l-2.682 -8.044a1.978 1.978 0 0 1 2.502 -2.502l8.045 2.682a1.978 1.978 0 0 1 .773 3.274zm-4.42 .942l6.5 6.5m2.847 .075l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z" + } + ] + ], + "truck-delivery": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0h-2v-4m-1 -8h11v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5m-18 -2l4 0" + } + ] + ], + "truck-loading": [ + [ + "path", + { + "d": "M2 3h1a2 2 0 0 1 2 2v10a2 2 0 0 0 2 2h15m-13 -11m0 3a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3zm0 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m11 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "truck-off": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m10.585 -1.414a2 2 0 0 0 2.826 2.831m-13.411 -1.417h-2v-11a1 1 0 0 1 1 -1h1m3.96 0h4.04v4m0 4v4m-4 0h6m6 0v-6h-6m-2 -5h5l3 5m-18 -8l18 18" + } + ] + ], + "truck-return": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0h-2v-11a1 1 0 0 1 1 -1h9v6h-5l2 2m0 -4l-2 2m1 6l6 0m-2 -11h5l3 5v6h-2" + } + ] + ], + "truck": [ + [ + "path", + { + "d": "M7 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m12 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-10 0h-2v-11a1 1 0 0 1 1 -1h9v12m-4 0h6m4 0h2v-6h-8m0 -5h5l3 5" + } + ] + ], + "txt": [ + [ + "path", + { + "d": "M3 8h4m-2 0v8m12 -8h4m-2 0v8m-9 -8l4 8m-4 0l4 -8" + } + ] + ], + "typography-off": [ + [ + "path", + { + "d": "M4 20h3m7 0h6m-13.1 -5h6.9m-.8 -2l3 7m-11 0l4.09 -10.906m1.091 -2.911l.819 -2.183h2l3.904 8.924m-13.904 -9.924l18 18" + } + ] + ], + "typography": [ + [ + "path", + { + "d": "M4 20l3 0m7 0l7 0m-14.1 -5l6.9 0m-3.6 -8.7l5.8 13.7m-11 0l6 -16l2 0l7 16" + } + ] + ], + "uf-off": [ + [ + "path", + { + "d": "M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724m7.62 1.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956m4.044 6.044l2 3m-8.5 -3l-1.5 3m5 -6h.01m-5.01 -1h.01m9.99 0h.01m-14.01 -10l18 18" + } + ] + ], + "ufo": [ + [ + "path", + { + "d": "M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724m-.07 0c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035m8 8l2 3m-8.5 -3l-1.5 3m5 -6h.01m-5.01 -1h.01m9.99 0h.01" + } + ] + ], + "umbrella-filled": [ + [ + "path", + { + "d": "M4 12a8 8 0 0 1 16 0z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M12 12v6a2 2 0 0 0 4 0" + } + ] + ], + "umbrella-off": [ + [ + "path", + { + "d": "M12 12h-8c0 -2.209 .895 -4.208 2.342 -5.656m2.382 -1.645a8 8 0 0 1 11.276 7.301l-4 0m-4 0v6a2 2 0 1 0 4 0m-13 -15l18 18" + } + ] + ], + "umbrella": [ + [ + "path", + { + "d": "M4 12a8 8 0 0 1 16 0zm8 0v6a2 2 0 0 0 4 0" + } + ] + ], + "underline": [ + [ + "path", + { + "d": "M7 5v5a5 5 0 0 0 10 0v-5m-12 14h14" + } + ] + ], + "unlink": [ + [ + "path", + { + "d": "M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5m.5 4.5a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5m5.5 2.5l0 -2m3 -3l2 0m-18 -8l2 0m3 -5l0 2" + } + ] + ], + "upload": [ + [ + "path", + { + "d": "M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2m-13 -8l5 -5l5 5m-5 -5l0 12" + } + ] + ], + "urgent": [ + [ + "path", + { + "d": "M8 16v-4a4 4 0 0 1 8 0v4m-13 -4h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-11.7 9.7m0 1a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" + } + ] + ], + "usb": [ + [ + "path", + { + "d": "M12 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2v-11.5m-5 4.5v3l5 3m0 -1.5l5 -2v-2.5m-1 0h2v-2h-2zm-9 -1m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m4 -3.5h4l-2 -2.5z" + } + ] + ], + "user-check": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m1 -10l2 2l4 -4" + } + ] + ], + "user-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -2m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-2.832 8.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855" + } + ] + ], + "user-exclamation": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m4 -14l0 3m0 4l0 .01" + } + ] + ], + "user-minus": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m1 -10l6 0" + } + ] + ], + "user-off": [ + [ + "path", + { + "d": "M14.274 10.291a4 4 0 1 0 -5.554 -5.58m-.548 3.453a4.01 4.01 0 0 0 2.62 2.65m-4.792 10.186v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 1.147 .167m2.685 2.681a4 4 0 0 1 .168 1.152v2m-15 -18l18 18" + } + ] + ], + "user-plus": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m1 -10h6m-3 -3v6" + } + ] + ], + "user-search": [ + [ + "path", + { + "d": "M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h1m5.5 2.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "user-x": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m2 -12l4 4m0 -4l-4 4" + } + ] + ], + "user": [ + [ + "path", + { + "d": "M12 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" + } + ] + ], + "users": [ + [ + "path", + { + "d": "M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m-2 14v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2m1 -17.87a4 4 0 0 1 0 7.75m5 10.12v-2a4 4 0 0 0 -3 -3.85" + } + ] + ], + "uv-index": [ + [ + "path", + { + "d": "M3 12h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 1 1 8 0m-4 -8v-1m1 13l2 5h1l2 -5m-12 0v3a2 2 0 1 0 4 0v-3" + } + ] + ], + "ux-circle": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m4 -2v2a2 2 0 1 0 4 0v-2m3 0l3 4m-3 0l3 -4" + } + ] + ], + "vaccine-bottle-off": [ + [ + "path", + { + "d": "M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4m-1.3 2.705a1.806 1.806 0 0 1 -.2 .045c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-2m0 -4v-2.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98m-7 6h5m4 0h1m-10 6h10m-6 -3h2m-10 -12l18 18" + } + ] + ], + "vaccine-bottle": [ + [ + "path", + { + "d": "M9 3m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1zm1 2v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98m-7 6h10m-10 6h10m-6 -3h2" + } + ] + ], + "vaccine-off": [ + [ + "path", + { + "d": "M17 3l4 4m-2 -2l-4.5 4.5m-3 -3l6 6m-1 -1l-.5 .5m-2 2l-4 4h-4v-4l4 -4m2 -2l.5 -.5m-5 5l1.5 1.5m-6 7l3 -3m-3 -15l18 18" + } + ] + ], + "vaccine": [ + [ + "path", + { + "d": "M17 3l4 4m-2 -2l-4.5 4.5m-3 -3l6 6m-1 -1l-6.5 6.5h-4v-4l6.5 -6.5m-5 5l1.5 1.5m1.5 -4.5l1.5 1.5m-9 10l3 -3" + } + ] + ], + "vacuum-cleaner": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0zm-7 -3a2 2 0 1 1 -4 0a2 2 0 0 1 4 0zm-2 7h.01" + } + ] + ], + "variable-minus": [ + [ + "path", + { + "d": "M8 16c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5m-11 -5c-2.5 5 -2.5 10 0 16m14 -16c1.775 3.55 2.29 7.102 1.544 11.01m-11.544 -6.01h1c1 0 1 1 2.016 3.527c.782 1.966 .943 3 1.478 3.343m-5.494 .13c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5m0 10h6" + } + ] + ], + "variable-off": [ + [ + "path", + { + "d": "M4.675 4.68c-2.17 4.776 -2.062 9.592 .325 15.32m14 -16c1.959 3.917 2.383 7.834 1.272 12.232m-.983 3.051c-.093 .238 -.189 .477 -.289 .717m-7.304 -8.304c.095 .257 .2 .533 .32 .831c.984 2.473 .984 3.473 1.984 3.473h1m-7 0c1.5 0 3 -2 4 -3.5m2.022 -2.514c.629 -.582 1.304 -.986 1.978 -.986m-13 -6l18 18" + } + ] + ], + "variable-plus": [ + [ + "path", + { + "d": "M5 4c-2.5 5 -2.5 10 0 16m14 -16c1.38 2.76 2 5.52 1.855 8.448m-11.855 -3.448h1c1 0 1 1 2.016 3.527c.785 1.972 .944 3.008 1.483 3.346m-5.499 .127c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5m0 10h6m-3 -3v6" + } + ] + ], + "variable": [ + [ + "path", + { + "d": "M5 4c-2.5 5 -2.5 10 0 16m14 -16c2.5 5 2.5 10 0 16m-10 -11h1c1 0 1 1 2.016 3.527c.984 2.473 .984 3.473 1.984 3.473h1m-7 0c1.5 0 3 -2 4 -3.5s2.5 -3.5 4 -3.5" + } + ] + ], + "vector-bezier-2": [ + [ + "path", + { + "d": "M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 13m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-10 -13l7 0m-4 14l7 0m-8 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m7 -14m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 .5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5" + } + ] + ], + "vector-bezier-arc": [ + [ + "path", + { + "d": "M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-7 -8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm0 13m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm9 -8a5 5 0 0 0 -5 -5m-9 9a5 5 0 0 0 5 5m-5 -9a5 5 0 0 1 5 -5" + } + ] + ], + "vector-bezier-circle": [ + [ + "path", + { + "d": "M3 10m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-7 -8m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm0 13m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm9 -8a5 5 0 0 0 -5 -5m5 9a5 5 0 0 1 -5 5m-9 -5a5 5 0 0 0 5 5m-5 -9a5 5 0 0 1 5 -5" + } + ] + ], + "vector-bezier": [ + [ + "path", + { + "d": "M3 14m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-7 -9m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm0 1.5a6 6 0 0 0 -5 5.5m9 -5.5a6 6 0 0 1 5 5.5m-9 -6l-6 0m16 0l-6 0m-11 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m19 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" + } + ] + ], + "vector-off": [ + [ + "path", + { + "d": "M6.68 6.733a1 1 0 0 1 -.68 .267h-2a1 1 0 0 1 -1 -1v-2c0 -.276 .112 -.527 .293 -.708m13.707 -.292m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm3.72 16.693a1 1 0 0 1 -.72 .307h-2a1 1 0 0 1 -1 -1v-2c0 -.282 .116 -.536 .304 -.718m-14.304 -.282m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -11v10m14 -10v8m-10 -10h8m-10 14h10m-14 -16l18 18" + } + ] + ], + "vector-spline": [ + [ + "path", + { + "d": "M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-14 13m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -13c-6.627 0 -12 5.373 -12 12" + } + ] + ], + "vector-triangle-off": [ + [ + "path", + { + "d": "M10 6v-1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1m-9 9m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm17.705 2.709a1 1 0 0 1 -.705 .291h-2a1 1 0 0 1 -1 -1v-2c0 -.28 .115 -.532 .3 -.714m-10.8 -.186l3.749 -6.823m2.909 -1.08l-.658 -1.197m-5.5 11h10m-14 -16l18 18" + } + ] + ], + "vector-triangle": [ + [ + "path", + { + "d": "M10 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-7 12m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-10.5 -.9l5 -9.1m6 9.1l-5 -9.1m-5.5 11l10 0" + } + ] + ], + "vector": [ + [ + "path", + { + "d": "M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm0 13m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm-14 -1m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1zm2 -11l0 10m14 -10l0 10m-12 -12l10 0m-10 14l10 0" + } + ] + ], + "venus": [ + [ + "path", + { + "d": "M12 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 5l0 7m-3 -3l6 0" + } + ] + ], + "versions-filled": [ + [ + "path", + { + "d": "M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2z", + "fill": "currentColor" + } + ], + [ + "path", + { + "d": "M7 7l0 10m-3 -9l0 8" + } + ] + ], + "versions-off": [ + [ + "path", + { + "d": "M10.184 6.162a2 2 0 0 1 1.816 -1.162h6a2 2 0 0 1 2 2v9m-1.185 2.827a1.993 1.993 0 0 1 -.815 .173h-6a2 2 0 0 1 -2 -2v-7m-3 -3v10m-3 -9v8m-1 -13l18 18" + } + ] + ], + "versions": [ + [ + "path", + { + "d": "M10 5m0 2a2 2 0 0 1 2 -2h6a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2zm-3 0l0 10m-3 -9l0 8" + } + ] + ], + "video-minus": [ + [ + "path", + { + "d": "M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4zm-12 -4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm4 4l4 0" + } + ] + ], + "video-off": [ + [ + "path", + { + "d": "M3 3l18 18m-6 -10v-1l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -.675 .946m-10.325 -10.328h3a2 2 0 0 1 2 2v3m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h1" + } + ] + ], + "video-plus": [ + [ + "path", + { + "d": "M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4zm-12 -4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2zm4 4l4 0m-2 -2l0 4" + } + ] + ], + "video": [ + [ + "path", + { + "d": "M15 10l4.553 -2.276a1 1 0 0 1 1.447 .894v6.764a1 1 0 0 1 -1.447 .894l-4.553 -2.276v-4zm-12 -4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" + } + ] + ], + "view-360-off": [ + [ + "path", + { + "d": "M8.335 8.388a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337m-3.661 .286a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08m.37 4.389c-3.136 .625 -5.32 2.025 -5.32 3.651c0 2.21 4.03 4 9 4c1.286 0 2.51 -.12 3.616 -.336m3.059 -.98c1.445 -.711 2.325 -1.653 2.325 -2.684c0 -2.21 -4.03 -4 -9 -4m-9 -5l18 18" + } + ] + ], + "view-360": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 0m-4 0a4 9 0 1 0 8 0a4 9 0 1 0 -8 0m-5 0c0 2.21 4.03 4 9 4s9 -1.79 9 -4s-4.03 -4 -9 -4s-9 1.79 -9 4z" + } + ] + ], + "viewfinder-off": [ + [ + "path", + { + "d": "M5.65 5.623a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08m4.05 -.96v4m0 14v-3m-9 -6h4m14 0h-3m-6 0v.01m-9 -9.01l18 18" + } + ] + ], + "viewfinder": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9l0 4m0 14l0 -3m-9 -6l4 0m14 0l-3 0m-6 0l0 .01" + } + ] + ], + "viewport-narrow": [ + [ + "path", + { + "d": "M3 12h7l-3 -3m0 6l3 -3m11 0h-7l3 -3m0 6l-3 -3m-5 -6v-3h6v3m-6 12v3h6v-3" + } + ] + ], + "viewport-wide": [ + [ + "path", + { + "d": "M10 12h-7l3 -3m0 6l-3 -3m11 0h7l-3 -3m0 6l3 -3m-18 -6v-3h18v3m-18 12v3h18v-3" + } + ] + ], + "vinyl": [ + [ + "path", + { + "d": "M16 3.937a9 9 0 1 0 5 8.063m-9 0m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m9 -8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m1 0l-3.5 10l-2.5 2" + } + ] + ], + "vip-off": [ + [ + "path", + { + "d": "M3 5h2m4 0h12m-18 14h16m-15 -10l2 6h1l2 -6m3 3v3m4 -3v-3h2a2 2 0 1 1 0 4h-1m-14 -10l18 18" + } + ] + ], + "vip": [ + [ + "path", + { + "d": "M3 5h18m-18 14h18m-17 -10l2 6h1l2 -6m3 0v6m4 0v-6h2a2 2 0 1 1 0 4h-2" + } + ] + ], + "virus-off": [ + [ + "path", + { + "d": "M3 3l18 18m-12.531 -12.54a5 5 0 0 0 7.058 7.084m1.386 -2.608a5 5 0 0 0 -5.826 -5.853m.913 -.083v-4m-1 0h2m2.536 5.464l2.828 -2.828m-.707 -.707l1.414 1.414m-2.071 5.657h4m0 -1v2m-2.636 5.363l-.707 .707m-5.657 -2.07v4m1 0h-2m-2.535 -5.464l-2.829 2.828m.707 .707l-1.413 -1.414m2.07 -5.657h-4m0 1v-2m2.636 -5.363l-.707 .707" + } + ] + ], + "virus-search": [ + [ + "path", + { + "d": "M17 12a5 5 0 1 0 -5 5m0 -10v-4m-1 0h2m2.536 5.464l2.828 -2.828m-.707 -.707l1.414 1.414m-2.071 5.657h4m0 -1v2m-9 4v4m1 0h-2m-2.535 -5.464l-2.829 2.828m.707 .707l-1.413 -1.414m2.07 -5.657h-4m0 1v-2m5.464 -2.536l-2.828 -2.828m-.707 .707l1.414 -1.413m11.157 12.57m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0m4.5 2l2.5 2.5" + } + ] + ], + "virus": [ + [ + "path", + { + "d": "M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m5 -5v-4m-1 0h2m2.536 5.464l2.828 -2.828m-.707 -.707l1.414 1.414m-2.071 5.657h4m0 -1v2m-5.465 2.536l2.829 2.828m.707 -.707l-1.414 1.414m-5.657 -2.071v4m1 0h-2m-2.535 -5.464l-2.829 2.828m.707 .707l-1.413 -1.414m2.07 -5.657h-4m0 1v-2m5.464 -2.536l-2.828 -2.828m-.707 .707l1.414 -1.413" + } + ] + ], + "vocabulary-off": [ + [ + "path", + { + "d": "M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712m8.702 1.712v3m0 4v9m-5 -10h1m8 -4h1m-1 4h1m-14 -8l18 18" + } + ] + ], + "vocabulary": [ + [ + "path", + { + "d": "M10 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2zm2 -14v16m-5 -14h1m-1 4h1m8 -4h1m-1 4h1m-1 4h1" + } + ] + ], + "volume-2": [ + [ + "path", + { + "d": "M15 8a5 5 0 0 1 0 8m-9 -1h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a0.8 .8 0 0 1 1.5 .5v14a0.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" + } + ] + ], + "volume-3": [ + [ + "path", + { + "d": "M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a0.8 .8 0 0 1 1.5 .5v14a0.8 .8 0 0 1 -1.5 .5l-3.5 -4.5m10 -5l4 4m0 -4l-4 4" + } + ] + ], + "volume-off": [ + [ + "path", + { + "d": "M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464m2.7 -11a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615m-8.631 -13.946l.431 -.554a0.8 .8 0 0 1 1.5 .5v2m0 4v8a0.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664m-4.294 -4.336l18 18" + } + ] + ], + "volume": [ + [ + "path", + { + "d": "M15 8a5 5 0 0 1 0 8m2.7 -11a9 9 0 0 1 0 14m-11.7 -4h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a0.8 .8 0 0 1 1.5 .5v14a0.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" + } + ] + ], + "walk": [ + [ + "path", + { + "d": "M13 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-5 17l3 -4m6 4l-2 -4l-3 -3l1 -6m-6 4l2 -3l4 -1l3 3l3 1" + } + ] + ], + "wall-off": [ + [ + "path", + { + "d": "M8 4h10a2 2 0 0 1 2 2v10m-.589 3.417c-.361 .36 -.86 .583 -1.411 .583h-12a2 2 0 0 1 -2 -2v-12c0 -.55 .222 -1.047 .58 -1.409m-.58 3.409h4m4 0h8m0 4h-4m-4 0h-8m0 4h12m-7 -12v1m5 3v2m-6 2v4m3 0v4m-8 -17l18 18" + } + ] + ], + "wall": [ + [ + "path", + { + "d": "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2zm0 2h16m0 4h-16m0 4h16m-11 -12v4m5 0v4m-6 0v4m8 -4v4m-5 0v4" + } + ] + ], + "wallet-off": [ + [ + "path", + { + "d": "M17 8v-3a1 1 0 0 0 -1 -1h-8m-3.413 .584a2 2 0 0 0 1.413 3.416h2m4 0h6a1 1 0 0 1 1 1v3m0 7a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12m12 6h4v4m-4 0a2 2 0 0 1 -2 -2m-11 -11l18 18" + } + ] + ], + "wallet": [ + [ + "path", + { + "d": "M17 8v-3a1 1 0 0 0 -1 -1h-10a2 2 0 0 0 0 4h12a1 1 0 0 1 1 1v3m0 4v3a1 1 0 0 1 -1 1h-12a2 2 0 0 1 -2 -2v-12m16 6v4h-4a2 2 0 0 1 0 -4h4" + } + ] + ], + "wallpaper-off": [ + [ + "path", + { + "d": "M10 6h8a2 2 0 0 1 2 2v8m-.58 3.409a2 2 0 0 1 -1.42 .591h-12m0 -2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0v-10m-3.427 -3.402c-.353 .362 -.573 .856 -.573 1.402v12m-1 -15l18 18" + } + ] + ], + "wallpaper": [ + [ + "path", + { + "d": "M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12m0 -2m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m4 0v-12a2 2 0 1 0 -4 0v12" + } + ] + ], + "wand-off": [ + [ + "path", + { + "d": "M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5m2.5 -2.5l3 3m-9.567 -4.605c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589m8.835 8.821c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59m-16.581 -12.59l18 18" + } + ] + ], + "wand": [ + [ + "path", + { + "d": "M6 21l15 -15l-3 -3l-15 15l3 3m9 -15l3 3m-9 -6a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2m10 10a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2" + } + ] + ], + "wash-dry-1": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 6m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m6 0h.01" + } + ] + ], + "wash-dry-2": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 6m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m4 0h.01m3.99 0h.01" + } + ] + ], + "wash-dry-3": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 6m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0m6 0h.01m-3.01 0h.01m5.99 0h.01" + } + ] + ], + "wash-dry-a": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m6 4v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8m0 -3h-6" + } + ] + ], + "wash-dry-dip": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 1v10m4 -10v10m-8 -10v10" + } + ] + ], + "wash-dry-f": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4v-8h4m-1 4h-3" + } + ] + ], + "wash-dry-hang": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm1 -1.99c5.333 5.323 10.667 5.32 16 -.01" + } + ] + ], + "wash-dry-off": [ + [ + "path", + { + "d": "M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11m-18 -14l18 18" + } + ] + ], + "wash-dry-p": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m7 4v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5" + } + ] + ], + "wash-dry-shade": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm0 5l8 -8m-8 14l14 -14" + } + ] + ], + "wash-dry-w": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m5 -4l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8" + } + ] + ], + "wash-dry": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z" + } + ] + ], + "wash-dryclean-off": [ + [ + "path", + { + "d": "M20.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723m-15.366 -15.363l18 18" + } + ] + ], + "wash-dryclean": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" + } + ] + ], + "wash-gentle": [ + [ + "path", + { + "d": "M3.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-16 15h14m-14 3h14" + } + ] + ], + "wash-machine": [ + [ + "path", + { + "d": "M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2zm7 9m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0m0 -8h.01m2.99 0h.01m2.99 0h2m-8 8c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0" + } + ] + ], + "wash-off": [ + [ + "path", + { + "d": "M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436m-17.514 2.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 0 .339 -.015 .503 -.035m-17.503 -5.966l18 18" + } + ] + ], + "wash-press": [ + [ + "path", + { + "d": "M3.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-16 15h14" + } + ] + ], + "wash-temperature-1": [ + [ + "path", + { + "d": "M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-17.514 2.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-8.503 4.034h.01" + } + ] + ], + "wash-temperature-2": [ + [ + "path", + { + "d": "M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-7 7h.01m-4.01 0h.01" + } + ] + ], + "wash-temperature-3": [ + [ + "path", + { + "d": "M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-9 7h.01m2.99 0h.01m-6.01 0h.01" + } + ] + ], + "wash-temperature-4": [ + [ + "path", + { + "d": "M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-11 9h.01m3.99 0h.01m-.01 -3h.01m-4.01 0h.01" + } + ] + ], + "wash-temperature-5": [ + [ + "path", + { + "d": "M10 15h.01m-7.01 -9l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-7 9h.01m.99 -3h.01m-3.01 0h.01m-3.01 0h.01m-5.524 -3.035c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034" + } + ] + ], + "wash-temperature-6": [ + [ + "path", + { + "d": "M9 15h.01m-6.01 -9l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329m-9 9h.01m2.99 0h.01m-.01 -3h.01m-3.01 0h.01m-3.01 0h.01m-5.524 -3.035c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034" + } + ] + ], + "wash-tumble-dry": [ + [ + "path", + { + "d": "M3 3m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3zm9 6m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0" + } + ] + ], + "wash-tumble-off": [ + [ + "path", + { + "d": "M20.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11m-3.256 -3.26a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49m-13.239 -13.245l18 18" + } + ] + ], + "wash": [ + [ + "path", + { + "d": "M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 0 .339 -.014 .503 -.034m-17.503 -2.966l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" + } + ] + ], + "wave-saw-tool": [ + [ + "path", + { + "d": "M3 12h5l4 8v-16l4 8h5" + } + ] + ], + "wave-sine": [ + [ + "path", + { + "d": "M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2" + } + ] + ], + "wave-square": [ + [ + "path", + { + "d": "M3 12h5v8h4v-16h4v8h5" + } + ] + ], + "webhook-off": [ + [ + "path", + { + "d": "M4.876 13.61a4 4 0 1 0 6.124 3.39h6m-1.934 3.502a4 4 0 0 0 4.763 -.675m1.171 -2.827a4 4 0 0 0 -4 -4m-1 -5a4 4 0 0 0 -6.824 -2.833m-1.176 2.833c0 1.506 .77 2.818 2 3.5l-3 5.5m-4 -14l18 18" + } + ] + ], + "webhook": [ + [ + "path", + { + "d": "M4.876 13.61a4 4 0 1 0 6.124 3.39h6m-1.934 3.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5m4 0a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5" + } + ] + ], + "weight": [ + [ + "path", + { + "d": "M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-2.165 3h10.33a1 1 0 0 1 .984 .821l1.637 9a1 1 0 0 1 -.984 1.179h-13.604a1 1 0 0 1 -.984 -1.179l1.637 -9a1 1 0 0 1 .984 -.821z" + } + ] + ], + "wheelchair-off": [ + [ + "path", + { + "d": "M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m14.582 1.59a2 2 0 0 0 2.833 2.824m-6.415 -6.414h-1.4m-6.6 -8v5m0 -3h2m4 0h5m-2 0v3m-12 -8l18 18" + } + ] + ], + "wheelchair": [ + [ + "path", + { + "d": "M8 16m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m16 3m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 -2a3 3 0 0 0 -3 -3h-3.4m-9.6 -11h1a2 2 0 0 1 2 2v6m0 -3h11m-2 0v6" + } + ] + ], + "whirl": [ + [ + "path", + { + "d": "M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0zm-2 9c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5m9 2c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6m2 2c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5m2 9c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6" + } + ] + ], + "wifi-0": [ + [ + "path", + { + "d": "M12 18l.01 0" + } + ] + ], + "wifi-1": [ + [ + "path", + { + "d": "M12 18l.01 0m-2.838 -2.828a4 4 0 0 1 5.656 0" + } + ] + ], + "wifi-2": [ + [ + "path", + { + "d": "M12 18l.01 0m-2.838 -2.828a4 4 0 0 1 5.656 0m-8.485 -2.829a8 8 0 0 1 11.314 0" + } + ] + ], + "wifi-off": [ + [ + "path", + { + "d": "M12 18l.01 0m-2.838 -2.828a4 4 0 0 1 5.656 0m-8.485 -2.829a7.963 7.963 0 0 1 3.864 -2.14m4.163 .155a7.965 7.965 0 0 1 3.287 2m-14.142 -2.843a12 12 0 0 1 3.544 -2.455m3.101 -.92a12 12 0 0 1 10.325 3.374m-17.485 -6.514l18 18" + } + ] + ], + "wifi": [ + [ + "path", + { + "d": "M12 18l.01 0m-2.838 -2.828a4 4 0 0 1 5.656 0m-8.485 -2.829a8 8 0 0 1 11.314 0m-14.142 -2.828c4.686 -4.687 12.284 -4.687 17 0" + } + ] + ], + "wind-off": [ + [ + "path", + { + "d": "M5 8h3m4 0h1.5a2.5 2.5 0 1 0 -2.34 -3.24m-8.16 7.24h9m4 0h2.5a2.5 2.5 0 0 1 1.801 4.282m-16.301 -.282h5.5a2.5 2.5 0 1 1 -2.34 3.24m-4.16 -16.24l18 18" + } + ] + ], + "wind": [ + [ + "path", + { + "d": "M5 8h8.5a2.5 2.5 0 1 0 -2.34 -3.24m-8.16 7.24h15.5a2.5 2.5 0 1 1 -2.34 3.24m-12.16 .76h5.5a2.5 2.5 0 1 1 -2.34 3.24" + } + ] + ], + "windmill-filled": [ + [ + "path", + { + "d": "M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9zc0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9zc-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9zc0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z", + "fill": "currentColor" + } + ] + ], + "windmill-off": [ + [ + "path", + { + "d": "M15.061 11.06c1.18 -.824 1.939 -2.11 1.939 -3.56c0 -2.49 -2.24 -4.5 -5 -4.5v5m0 4c0 2.76 2.01 5 4.5 5c.166 0 .33 -.01 .49 -.03m2.624 -1.36c.856 -.91 1.386 -2.19 1.386 -3.61h-5m-4 0c-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9zm-5.019 -4.967c-2.244 .285 -3.981 2.402 -3.981 4.967h9m-9 -9l18 18" + } + ] + ], + "windmill": [ + [ + "path", + { + "d": "M12 12c2.76 0 5 -2.01 5 -4.5s-2.24 -4.5 -5 -4.5v9zc0 2.76 2.01 5 4.5 5s4.5 -2.24 4.5 -5h-9zc-2.76 0 -5 2.01 -5 4.5s2.24 4.5 5 4.5v-9zc0 -2.76 -2.01 -5 -4.5 -5s-4.5 2.24 -4.5 5h9z" + } + ] + ], + "window-maximize": [ + [ + "path", + { + "d": "M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1zm1 -5v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m0 -12h4v4m0 -4l-5 5" + } + ] + ], + "window-minimize": [ + [ + "path", + { + "d": "M3 16m0 1a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-3a1 1 0 0 1 -1 -1zm1 -5v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-6m3 -7h-4v-4m0 4l5 -5" + } + ] + ], + "window-off": [ + [ + "path", + { + "d": "M6.166 6.19a6.903 6.903 0 0 0 -1.166 3.81v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-1m0 -4v-5c0 -3.728 -3.134 -7 -7 -7a6.86 6.86 0 0 0 -3.804 1.158m-3.196 8.842h8m4 0h2m-7 -10v5m0 4v9m-9 -18l18 18" + } + ] + ], + "window": [ + [ + "path", + { + "d": "M12 3c-3.866 0 -7 3.272 -7 7v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-10c0 -3.728 -3.134 -7 -7 -7zm-7 10l14 0m-7 -10l0 18" + } + ] + ], + "windsock": [ + [ + "path", + { + "d": "M6 3v18m0 -10l12 -1v-4l-12 -1m4 .5v5m4 -4.5v4m-10 11h4" + } + ] + ], + "wiper-wash": [ + [ + "path", + { + "d": "M12 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8 -9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0m9 9l0 -14m-8 0a4 4 0 0 1 .4 -1.8m2.6 -2.1a4 4 0 0 1 2 0m3 3.9a4 4 0 0 0 -.4 -1.8m.4 1.8a4 4 0 0 1 .4 -1.8m2.6 -2.1a4 4 0 0 1 2 0m3 3.9a4 4 0 0 0 -.4 -1.8" + } + ] + ], + "wiper": [ + [ + "path", + { + "d": "M12 18m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-8 -9l5.5 5.5a5 5 0 0 1 7 0l5.5 -5.5a12 12 0 0 0 -18 0m9 9l-2.2 -12.8" + } + ] + ], + "woman": [ + [ + "path", + { + "d": "M10 16v5m4 -5v5m-6 -5h8l-2 -7h-4zm-3 -5c1.667 -1.333 3.333 -2 5 -2m9 2c-1.667 -1.333 -3.333 -2 -5 -2m-2 -5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" + } + ] + ], + "wood": [ + [ + "path", + { + "d": "M12 5.5m-6 0a6 2.5 0 1 0 12 0a6 2.5 0 1 0 -12 0m12 0v4.626a1.415 1.415 0 0 1 1.683 2.18l-.097 .108l-1.586 1.586v4c0 1.61 -2.54 2.925 -5.725 3l-.275 0c-3.314 0 -6 -1.343 -6 -3v-2l-1.586 -1.586a1.414 1.414 0 0 1 1.586 -2.287v-6.627m4 7v1.5m4 2v1" + } + ] + ], + "world-download": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 0 -9 9m-8.4 -12h16.8m-16.8 6h8.4m-.422 -12a17 17 0 0 0 0 18m.922 -18c1.719 2.755 2.5 5.876 2.5 9m3 2v7m-3 -3l3 3l3 -3" + } + ] + ], + "world-latitude": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m1.6 -5l14.8 0m-16.4 5l18 0m-16.4 5l14.8 0" + } + ] + ], + "world-longitude": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m8.5 -9a11.2 11.2 0 0 0 0 18m1 -18a11.2 11.2 0 0 1 0 18m-.5 -18l0 18" + } + ] + ], + "world-off": [ + [ + "path", + { + "d": "M3.6 9h5.4m4 0h7.4m-14.75 -3.377a9 9 0 1 0 12.71 12.745m1.684 -2.328a9 9 0 0 0 -12.094 -12.08m-4.35 11.04h11.4m4 0h1.4m-12.065 -6.612a19 19 0 0 0 -.335 3.612c0 4.97 1.79 9 4 9c1.622 0 3.018 -2.172 3.646 -5.294m.354 -3.706c0 -4.97 -1.79 -9 -4 -9c-1.035 0 -1.979 .885 -2.689 2.337m-6.311 -2.337l18 18" + } + ] + ], + "world-upload": [ + [ + "path", + { + "d": "M21 12a9 9 0 1 0 -9 9m-8.4 -12h16.8m-16.8 6h8.4m-.422 -12a17 17 0 0 0 0 18m.922 -18c1.719 2.755 2.5 5.876 2.5 9m3 9v-7m3 3l-3 -3l-3 3" + } + ] + ], + "world-www": [ + [ + "path", + { + "d": "M19.5 7a9 9 0 0 0 -7.5 -4a8.991 8.991 0 0 0 -7.484 4m6.984 -4a16.989 16.989 0 0 0 -1.826 4m2.826 -4a16.989 16.989 0 0 1 1.828 4m5.172 10a9 9 0 0 1 -7.5 4a8.991 8.991 0 0 1 -7.484 -4m6.984 4a16.989 16.989 0 0 1 -1.826 -4m2.826 4a16.989 16.989 0 0 0 1.828 -4m-12.328 -7l1 4l1.5 -4l1.5 4l1 -4m10 0l1 4l1.5 -4l1.5 4l1 -4m-12.5 0l1 4l1.5 -4l1.5 4l1 -4" + } + ] + ], + "world": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m.6 -3l16.8 0m-16.8 6l16.8 0m-8.9 -12a17 17 0 0 0 0 18m1 -18a17 17 0 0 1 0 18" + } + ] + ], + "wrecking-ball": [ + [ + "path", + { + "d": "M19 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m-13 4m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m11 0m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0m2 2l-9 0m0 -4l9 0m-5 -3v-5h2a3 3 0 0 1 3 3v5m-8 0v-2a1 1 0 0 1 1 -1h7m6 -1v-7l-6 7" + } + ] + ], + "writing-off": [ + [ + "path", + { + "d": "M16 7h4m-4 9v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7m2 7h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3m-3 -8l18 18" + } + ] + ], + "writing-sign-off": [ + [ + "path", + { + "d": "M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5m-2 -3v1l2 2l.5 -.5m1.5 -2.5v-11c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v7m0 -5h4m-17 -4l18 18" + } + ] + ], + "writing-sign": [ + [ + "path", + { + "d": "M3 19c3.333 -2 5 -4 5 -6c0 -3 -1 -3 -2 -3s-2.032 1.085 -2 3c.034 2.048 1.658 2.877 2.5 4c1.5 2 2.5 2.5 3.5 1c.667 -1 1.167 -1.833 1.5 -2.5c1 2.333 2.333 3.5 4 3.5h2.5m2 -2v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2zm-4 -10h4" + } + ] + ], + "writing": [ + [ + "path", + { + "d": "M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2zm-4 -10h4m-2 12h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3" + } + ] + ], + "x": [ + [ + "path", + { + "d": "M18 6l-12 12m0 -12l12 12" + } + ] + ], + "xbox-a": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm3 -5l-3 -8l-3 8m5 -2h-4" + } + ] + ], + "xbox-b": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm1 -9a2 2 0 1 1 0 4h-3v-4m3 0h-3m3 0a2 2 0 1 0 0 -4h-3v4" + } + ] + ], + "xbox-x": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-3 -13l6 8m0 -8l-6 8" + } + ] + ], + "xbox-y": [ + [ + "path", + { + "d": "M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9zm-3 -13l3 4m3 -4l-2.988 3.984l-.012 4.016" + } + ] + ], + "yin-yang": [ + [ + "path", + { + "d": "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0m9 -9a4.5 4.5 0 0 0 0 9a4.5 4.5 0 0 1 0 9m0 -13.5m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0m.5 9m-.5 0a0.5 .5 0 1 0 1 0a0.5 .5 0 1 0 -1 0" + } + ] + ], + "yoga": [ + [ + "path", + { + "d": "M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0m-7 16h4l1.5 -3m7.5 3l-1 -5h-5l1 -7m-8 2l4 -1l4 -1l4 1.5l4 1.5" + } + ] + ], + "zeppelin-off": [ + [ + "path", + { + "d": "M15.773 15.783c-.723 .141 -1.486 .217 -2.273 .217c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c.13 -.087 .261 -.172 .39 -.256m2.564 -1.42c1.601 -.735 3.071 -1.102 4.411 -1.102c4.694 0 8.5 2.686 8.5 6c0 1.919 -1.276 3.627 -3.261 4.725m-8.739 .775v4.5h6v-4m-13 -13l18 18" + } + ] + ], + "zeppelin": [ + [ + "path", + { + "d": "M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778zm-3.5 11.5v4.5h6v-4" + } + ] + ], + "zip": [ + [ + "path", + { + "d": "M16 16v-8h2a2 2 0 1 1 0 4h-2m-4 -4v8m-8 -8h4l-4 8h4" + } + ] + ], + "zodiac-aquarius": [ + [ + "path", + { + "d": "M3 10l3 -3l3 3l3 -3l3 3l3 -3l3 3m-18 7l3 -3l3 3l3 -3l3 3l3 -3l3 3" + } + ] + ], + "zodiac-aries": [ + [ + "path", + { + "d": "M12 5a5 5 0 1 0 -4 8m8 0a5 5 0 1 0 -4 -8m0 16l0 -16" + } + ] + ], + "zodiac-cancer": [ + [ + "path", + { + "d": "M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m15 0m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m-12 0a10 6.5 0 0 1 14 -6.5m4 6.5a10 6.5 0 0 1 -14 6.5" + } + ] + ], + "zodiac-capricorn": [ + [ + "path", + { + "d": "M4 4a3 3 0 0 1 3 3v9m0 -9a3 3 0 0 1 6 0v11a3 3 0 0 1 -3 3m6 -4m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" + } + ] + ], + "zodiac-gemini": [ + [ + "path", + { + "d": "M3 3a21 21 0 0 0 18 0m-18 18a21 21 0 0 1 18 0m-14 -16.5l0 15m10 -15l0 15" + } + ] + ], + "zodiac-leo": [ + [ + "path", + { + "d": "M13 17a4 4 0 1 0 8 0m-15 -1m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m8 -9m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0c0 3 2 5 2 9m6 -9c0 4 -2 6 -2 10" + } + ] + ], + "zodiac-libra": [ + [ + "path", + { + "d": "M5 20l14 0m-14 -3h5v-.3a7 7 0 1 1 4 0v.3h5" + } + ] + ], + "zodiac-pisces": [ + [ + "path", + { + "d": "M5 3a21 21 0 0 1 0 18m14 -18a21 21 0 0 0 0 18m-14 -9l14 0" + } + ] + ], + "zodiac-sagittarius": [ + [ + "path", + { + "d": "M4 20l16 -16m-7 0h7v7m-13.5 1.5l5 5" + } + ] + ], + "zodiac-scorpio": [ + [ + "path", + { + "d": "M3 4a2 2 0 0 1 2 2v9m0 -9a2 2 0 0 1 4 0v9m0 -9a2 2 0 0 1 4 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3" + } + ] + ], + "zodiac-taurus": [ + [ + "path", + { + "d": "M6 3a6 6 0 0 0 12 0m-6 12m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0" + } + ] + ], + "zodiac-virgo": [ + [ + "path", + { + "d": "M3 4a2 2 0 0 1 2 2v9m0 -9a2 2 0 0 1 4 0v9m0 -9a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5m-8 0a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0" + } + ] + ], + "zoom-cancel": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m5 -2l4 4m0 -4l-4 4m13 9l-6 -6" + } + ] + ], + "zoom-check": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6m-8 -5l2 2l4 -4" + } + ] + ], + "zoom-code": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6m-7 -7l-2 2l2 2m4 -4l2 2l-2 2" + } + ] + ], + "zoom-exclamation": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6m-5 -2v.01m0 -6.01v3" + } + ] + ], + "zoom-in-area": [ + [ + "path", + { + "d": "M15 13v4m-2 -2h4m-2 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m12 7l-3 -3m-13 -1h-1a2 2 0 0 1 -2 -2v-1m0 -4v-1m0 -4v-1a2 2 0 0 1 2 -2h1m4 0h1m4 0h1a2 2 0 0 1 2 2v1" + } + ] + ], + "zoom-in": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m4 0l6 0m-3 -3l0 6m11 8l-6 -6" + } + ] + ], + "zoom-money": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6m-3 -8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1m0 -8v1" + } + ] + ], + "zoom-out-area": [ + [ + "path", + { + "d": "M13 15h4m-2 0m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0m12 7l-3 -3m-13 -1h-1a2 2 0 0 1 -2 -2v-1m0 -4v-1m0 -4v-1a2 2 0 0 1 2 -2h1m4 0h1m4 0h1a2 2 0 0 1 2 2v1" + } + ] + ], + "zoom-out": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m4 0l6 0m8 11l-6 -6" + } + ] + ], + "zoom-pan": [ + [ + "path", + { + "d": "M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0m8 5l-2.5 -2.5m-4.5 -9.5l2 -2l2 2m5 5l2 2l-2 2m-14 -4l-2 2l2 2m5 5l2 2l2 -2" + } + ] + ], + "zoom-question": [ + [ + "path", + { + "d": "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0m18 11l-6 -6m-5 -2l0 .01m0 -3.01a1.5 1.5 0 1 0 -1.14 -2.474" + } + ] + ], + "zoom-replace": [ + [ + "path", + { + "d": "M21 21l-6 -6m-11.709 -7a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403m.39 -3.6v4h-4m3.705 4a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403m-.39 3.6v-4h4" + } + ] + ], + "zoom-reset": [ + [ + "path", + { + "d": "M21 21l-6 -6m-11.732 -2.957a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403m-.39 -3.6v4h4" + } + ] + ], + "zzz-off": [ + [ + "path", + { + "d": "M4 12h6l-6 8h6m4 -16h6l-5.146 6.862m1.146 1.138h4m-17 -9l18 18" + } + ] + ], + "zzz": [ + [ + "path", + { + "d": "M4 12h6l-6 8h6m4 -16h6l-6 8h6" + } + ] + ] +} \ No newline at end of file diff --git a/packages/icons/tabler-sprite-nostroke.svg b/packages/icons/tabler-sprite-nostroke.svg new file mode 100644 index 000000000..eab569da9 --- /dev/null +++ b/packages/icons/tabler-sprite-nostroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/icons/tabler-sprite.svg b/packages/icons/tabler-sprite.svg new file mode 100644 index 000000000..085b59c8a --- /dev/null +++ b/packages/icons/tabler-sprite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/icons/tags.json b/packages/icons/tags.json new file mode 100644 index 000000000..e9c4e949e --- /dev/null +++ b/packages/icons/tags.json @@ -0,0 +1,22430 @@ +{ + "123": { + "name": "123", + "category": "", + "tags": ["123", "numbers", "digit", "one", "two", "three", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f554" + }, + "24-hours": { + "name": "24-hours", + "category": "", + "tags": ["24", "hours", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5e7" + }, + "2fa": { + "name": "2fa", + "category": "", + "tags": ["2fa", "login", "password", "verification", "code", "two-step", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca0" + }, + "360-view": { + "name": "360-view", + "category": "", + "tags": ["360", "view", "degree", "rotation", "reality", "camera", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f566" + }, + "360": { + "name": "360", + "category": "", + "tags": ["360", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f62f" + }, + "3d-cube-sphere-off": { + "name": "3d-cube-sphere-off", + "category": "", + "tags": ["3d", "cube", "sphere", "off", "printing", "vector", "shape", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3b5" + }, + "3d-cube-sphere": { + "name": "3d-cube-sphere", + "category": "", + "tags": ["3d", "cube", "sphere", "printing", "vector", "shape", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecd7" + }, + "3d-rotate": { + "name": "3d-rotate", + "category": "", + "tags": ["3d", "rotate", "rotation", "geometry", "3d", "modeling", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f020" + }, + "a-b-2": { + "name": "a-b-2", + "category": "", + "tags": ["a", "b", "2", "test", "visual", "user", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f25f" + }, + "a-b-off": { + "name": "a-b-off", + "category": "", + "tags": ["a", "b", "off", "test", "visual", "user", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0a6" + }, + "a-b": { + "name": "a-b", + "category": "", + "tags": ["a", "b", "test", "visual", "user", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec36" + }, + "abacus-off": { + "name": "abacus-off", + "category": "Math", + "tags": ["abacus", "off", "abacus", "math", "counting", "adding up", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3b6" + }, + "abacus": { + "name": "abacus", + "category": "Math", + "tags": ["abacus", "abacus", "math", "counting", "adding up", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f05c" + }, + "abc": { + "name": "abc", + "category": "", + "tags": ["abc", "letters", "alphabet", "latin", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f567" + }, + "access-point-off": { + "name": "access-point-off", + "category": "Devices", + "tags": ["access", "point", "off", "device", "hosts", "airwaves", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1a" + }, + "access-point": { + "name": "access-point", + "category": "Devices", + "tags": ["access", "point", "device", "hosts", "airwaves", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1b" + }, + "accessible-off": { + "name": "accessible-off", + "category": "", + "tags": ["accessible", "off", "low-vision", "blind", "disability", "handicapped", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0a7" + }, + "accessible": { + "name": "accessible", + "category": "", + "tags": ["accessible", "low-vision", "blind", "disability", "handicapped", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "eba9" + }, + "activity-heartbeat": { + "name": "activity-heartbeat", + "category": "", + "tags": ["activity", "heartbeat", "pulse", "lifeline", "impuls", "hospital", "heartrate", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0db" + }, + "activity": { + "name": "activity", + "category": "", + "tags": ["activity", "pulse", "motion", "health", "action", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ed23" + }, + "ad-2": { + "name": "ad-2", + "category": "Design", + "tags": ["ad", "2", "advert", "advertisement", "marketing", "commercial", "traffic", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef1f" + }, + "ad-off": { + "name": "ad-off", + "category": "Design", + "tags": ["ad", "off", "advert", "advertisement", "marketing", "commercial", "traffic", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3b7" + }, + "ad": { + "name": "ad", + "category": "Design", + "tags": ["ad", "advert", "advertisement", "marketing", "commercial", "traffic", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea02" + }, + "address-book-off": { + "name": "address-book-off", + "category": "", + "tags": ["address", "book", "off", "contact", "contacts", "phonebook", "profile", "resources", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3b8" + }, + "address-book": { + "name": "address-book", + "category": "", + "tags": ["address", "book", "contact", "contacts", "phonebook", "profile", "resources", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f021" + }, + "adjustments-alt": { + "name": "adjustments-alt", + "category": "System", + "tags": ["adjustments", "alt", "equalizer", "sliders", "controls", "settings", "filter", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec37" + }, + "adjustments-horizontal": { + "name": "adjustments-horizontal", + "category": "System", + "tags": ["adjustments", "horizontal", "equalizer", "sliders", "controls", "settings", "filter", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec38" + }, + "adjustments-off": { + "name": "adjustments-off", + "category": "System", + "tags": ["adjustments", "off", "equalizer", "sliders", "controls", "settings", "filter", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0a8" + }, + "adjustments": { + "name": "adjustments", + "category": "System", + "tags": ["adjustments", "equalizer", "sliders", "controls", "settings", "filter", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea03" + }, + "aerial-lift": { + "name": "aerial-lift", + "category": "Vehicles", + "tags": ["aerial", "lift", "cable", "car", "gondola", "mountains", "ski", "tramway", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "edfe" + }, + "affiliate": { + "name": "affiliate", + "category": "", + "tags": ["affiliate", "network", "connection", "collaboration", "people", "connect", "organization", "networking", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "edff" + }, + "air-balloon": { + "name": "air-balloon", + "category": "Vehicles", + "tags": ["air", "balloon", "travel", "adventure", "attraction", "fly", "transport", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4a6" + }, + "air-conditioning-disabled": { + "name": "air-conditioning-disabled", + "category": "", + "tags": ["air", "conditioning", "disabled", "cold", "home", "cooling", "hot", "false", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f542" + }, + "air-conditioning": { + "name": "air-conditioning", + "category": "", + "tags": ["air", "conditioning", "cold", "ice", "home", "cooling", "heating", "hot", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a2" + }, + "alarm-minus": { + "name": "alarm-minus", + "category": "", + "tags": ["alarm", "minus", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f630" + }, + "alarm-off": { + "name": "alarm-off", + "category": "", + "tags": ["alarm", "off", "time", "watch", "clock", "ring", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0a9" + }, + "alarm-plus": { + "name": "alarm-plus", + "category": "", + "tags": ["alarm", "plus", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f631" + }, + "alarm-snooze": { + "name": "alarm-snooze", + "category": "", + "tags": ["alarm", "snooze", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f632" + }, + "alarm": { + "name": "alarm", + "category": "", + "tags": ["alarm", "time", "watch", "clock", "ring", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea04" + }, + "album-off": { + "name": "album-off", + "category": "", + "tags": ["album", "off", "photos", "photography", "gallery", "music", "image", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3b9" + }, + "album": { + "name": "album", + "category": "", + "tags": ["album", "photos", "photography", "gallery", "music", "image", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f022" + }, + "alert-circle": { + "name": "alert-circle", + "category": "", + "tags": ["alert", "circle", "warning", "danger", "caution", "risk", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea05" + }, + "alert-octagon": { + "name": "alert-octagon", + "category": "", + "tags": ["alert", "octagon", "warning", "danger", "caution", "risk", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecc6" + }, + "alert-triangle": { + "name": "alert-triangle", + "category": "", + "tags": ["alert", "triangle", "warning", "danger", "caution", "risk", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea06" + }, + "alien": { + "name": "alien", + "category": "", + "tags": ["alien", "universe", "extraterrestrial", "ufo", "space", "galaxy", "planet", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebde" + }, + "align-box-bottom-center": { + "name": "align-box-bottom-center", + "category": "Text", + "tags": ["align", "box", "bottom", "center", "text", "type", "down", "south", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f530" + }, + "align-box-bottom-left": { + "name": "align-box-bottom-left", + "category": "Text", + "tags": ["align", "box", "bottom", "left", "text", "type", "west", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f531" + }, + "align-box-bottom-right": { + "name": "align-box-bottom-right", + "category": "Text", + "tags": ["align", "box", "bottom", "right", "text", "type", "east", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f532" + }, + "align-box-left-bottom": { + "name": "align-box-left-bottom", + "category": "Text", + "tags": ["align", "box", "left", "bottom", "text", "type", "west", "down", "south", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f533" + }, + "align-box-left-middle": { + "name": "align-box-left-middle", + "category": "Text", + "tags": ["align", "box", "left", "middle", "text", "type", "west", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f534" + }, + "align-box-left-top": { + "name": "align-box-left-top", + "category": "Text", + "tags": ["align", "box", "left", "top", "text", "type", "west", "up", "north", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f535" + }, + "align-box-right-bottom": { + "name": "align-box-right-bottom", + "category": "Text", + "tags": ["align", "box", "right", "bottom", "text", "type", "east", "down", "south", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f536" + }, + "align-box-right-middle": { + "name": "align-box-right-middle", + "category": "Text", + "tags": ["align", "box", "right", "middle", "text", "type", "east", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f537" + }, + "align-box-right-top": { + "name": "align-box-right-top", + "category": "Text", + "tags": ["align", "box", "right", "top", "text", "type", "east", "up", "north", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f538" + }, + "align-box-top-center": { + "name": "align-box-top-center", + "category": "Text", + "tags": ["align", "box", "top", "center", "text", "type", "up", "north", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f539" + }, + "align-box-top-left": { + "name": "align-box-top-left", + "category": "Text", + "tags": ["align", "box", "top", "left", "text", "type", "up", "north", "east", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53a" + }, + "align-box-top-right": { + "name": "align-box-top-right", + "category": "Text", + "tags": ["align", "box", "top", "right", "text", "type", "up", "north", "west", "corner", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53b" + }, + "align-center": { + "name": "align-center", + "category": "Text", + "tags": ["align", "center", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea07" + }, + "align-justified": { + "name": "align-justified", + "category": "Text", + "tags": ["align", "justified", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea08" + }, + "align-left": { + "name": "align-left", + "category": "Text", + "tags": ["align", "left", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea09" + }, + "align-right": { + "name": "align-right", + "category": "Text", + "tags": ["align", "right", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea0a" + }, + "alpha": { + "name": "alpha", + "category": "", + "tags": ["alpha", "letter", "alphabet", "greek", "math", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f543" + }, + "alphabet-cyrillic": { + "name": "alphabet-cyrillic", + "category": "Text", + "tags": ["alphabet", "cyrillic", "russia", "letters", "language", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1df" + }, + "alphabet-greek": { + "name": "alphabet-greek", + "category": "Text", + "tags": ["alphabet", "greek", "letters", "language", "alpha", "beta", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e0" + }, + "alphabet-latin": { + "name": "alphabet-latin", + "category": "Text", + "tags": ["alphabet", "latin", "letters", "language", "rome", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e1" + }, + "ambulance": { + "name": "ambulance", + "category": "Vehicles", + "tags": ["ambulance", "vehicle", "car", "hospital", "ward", "doctor", "rescuer", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebf5" + }, + "ampersand": { + "name": "ampersand", + "category": "Math", + "tags": ["ampersand", "and", "also", "besides", "moreover", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f229" + }, + "analyze-off": { + "name": "analyze-off", + "category": "", + "tags": ["analyze", "off", "analytics", "data", "statistics", "graph", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ba" + }, + "analyze": { + "name": "analyze", + "category": "", + "tags": ["analyze", "analytics", "data", "statistics", "graph", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a3" + }, + "anchor-off": { + "name": "anchor-off", + "category": "Map", + "tags": ["anchor", "off", "hold", "ship", "harbor", "docks", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0f7" + }, + "anchor": { + "name": "anchor", + "category": "Map", + "tags": ["anchor", "hold", "ship", "harbor", "docks", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb76" + }, + "angle": { + "name": "angle", + "category": "Design", + "tags": ["angle", "geometry", "math", "degrees", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef20" + }, + "ankh": { + "name": "ankh", + "category": "Symbols", + "tags": ["ankh", "egypt", "religion", "cultures", "community", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1cd" + }, + "antenna-bars-1": { + "name": "antenna-bars-1", + "category": "Devices", + "tags": ["antenna", "bars", "1", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecc7" + }, + "antenna-bars-2": { + "name": "antenna-bars-2", + "category": "Devices", + "tags": ["antenna", "bars", "2", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecc8" + }, + "antenna-bars-3": { + "name": "antenna-bars-3", + "category": "Devices", + "tags": ["antenna", "bars", "3", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecc9" + }, + "antenna-bars-4": { + "name": "antenna-bars-4", + "category": "Devices", + "tags": ["antenna", "bars", "4", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecca" + }, + "antenna-bars-5": { + "name": "antenna-bars-5", + "category": "Devices", + "tags": ["antenna", "bars", "5", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "eccb" + }, + "antenna-bars-off": { + "name": "antenna-bars-off", + "category": "", + "tags": ["antenna", "bars", "off", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0aa" + }, + "antenna-off": { + "name": "antenna-off", + "category": "", + "tags": ["antenna", "off", "reach", "tv", "network", "connetion", "signal", "communication", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3bb" + }, + "antenna": { + "name": "antenna", + "category": "", + "tags": ["antenna", "reach", "tv", "network", "connetion", "signal", "communication", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f094" + }, + "aperture-off": { + "name": "aperture-off", + "category": "Photography", + "tags": ["aperture", "off", "hole", "opening", "vent", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3bc" + }, + "aperture": { + "name": "aperture", + "category": "Photography", + "tags": ["aperture", "hole", "opening", "vent", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb58" + }, + "api-app-off": { + "name": "api-app-off", + "category": "", + "tags": ["api", "app", "off", "development", "software", "developer", "platform", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0ab" + }, + "api-app": { + "name": "api-app", + "category": "", + "tags": ["api", "app", "development", "software", "developer", "platform", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "effc" + }, + "api-off": { + "name": "api-off", + "category": "", + "tags": ["api", "off", "programming", "coding", "program", "code", "configuration", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0f8" + }, + "api": { + "name": "api", + "category": "", + "tags": ["api", "programming", "coding", "program", "code", "configuration", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "effd" + }, + "app-window": { + "name": "app-window", + "category": "", + "tags": ["app", "window", "browser", "page", "website", "web", "interface", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efe6" + }, + "apple": { + "name": "apple", + "category": "Food", + "tags": ["apple", "fruit", "healthy", "diet", "fitness", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef21" + }, + "apps-off": { + "name": "apps-off", + "category": "", + "tags": ["apps", "off", "application", "add-on", "user", "download", "mobile", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0ac" + }, + "apps": { + "name": "apps", + "category": "", + "tags": ["apps", "application", "add-on", "user", "download", "mobile", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebb6" + }, + "archive-off": { + "name": "archive-off", + "category": "Document", + "tags": ["archive", "off", "box", "index", "records", "old", "collect", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0ad" + }, + "archive": { + "name": "archive", + "category": "Document", + "tags": ["archive", "box", "index", "records", "old", "collect", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea0b" + }, + "armchair-2-off": { + "name": "armchair-2-off", + "category": "", + "tags": ["armchair", "2", "off", "seat", "chair", "sofa", "home", "furniture", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3bd" + }, + "armchair-2": { + "name": "armchair-2", + "category": "", + "tags": ["armchair", "2", "seat", "chair", "sofa", "home", "furniture", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efe7" + }, + "armchair-off": { + "name": "armchair-off", + "category": "", + "tags": ["armchair", "off", "seat", "chair", "sofa", "home", "furniture", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3be" + }, + "armchair": { + "name": "armchair", + "category": "", + "tags": ["armchair", "seat", "chair", "sofa", "home", "furniture", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "ef9e" + }, + "arrow-autofit-content": { + "name": "arrow-autofit-content", + "category": "Arrows", + "tags": ["arrow", "autofit", "content", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef31" + }, + "arrow-autofit-down": { + "name": "arrow-autofit-down", + "category": "Arrows", + "tags": ["arrow", "autofit", "down", "direction", "south", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef32" + }, + "arrow-autofit-height": { + "name": "arrow-autofit-height", + "category": "Arrows", + "tags": ["arrow", "autofit", "height", "direction", "north", "up", "down", "south", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef33" + }, + "arrow-autofit-left": { + "name": "arrow-autofit-left", + "category": "Arrows", + "tags": ["arrow", "autofit", "left", "direction", "west", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef34" + }, + "arrow-autofit-right": { + "name": "arrow-autofit-right", + "category": "Arrows", + "tags": ["arrow", "autofit", "right", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef35" + }, + "arrow-autofit-up": { + "name": "arrow-autofit-up", + "category": "Arrows", + "tags": ["arrow", "autofit", "up", "direction", "north", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef36" + }, + "arrow-autofit-width": { + "name": "arrow-autofit-width", + "category": "Arrows", + "tags": ["arrow", "autofit", "width", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef37" + }, + "arrow-back-up": { + "name": "arrow-back-up", + "category": "Arrows", + "tags": ["arrow", "back", "up", "pointer", "return", "revert", "reverse", "undo", "left", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb77" + }, + "arrow-back": { + "name": "arrow-back", + "category": "Arrows", + "tags": ["arrow", "back", "pointer", "return", "revert", "reverse", "undo", "left", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea0c" + }, + "arrow-badge-down": { + "name": "arrow-badge-down", + "category": "Arrows", + "tags": ["arrow", "badge", "down", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f60b" + }, + "arrow-badge-left": { + "name": "arrow-badge-left", + "category": "Arrows", + "tags": ["arrow", "badge", "left", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f60c" + }, + "arrow-badge-right": { + "name": "arrow-badge-right", + "category": "Arrows", + "tags": ["arrow", "badge", "right", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f60d" + }, + "arrow-badge-up": { + "name": "arrow-badge-up", + "category": "Arrows", + "tags": ["arrow", "badge", "up", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f60e" + }, + "arrow-bar-down": { + "name": "arrow-bar-down", + "category": "Arrows", + "tags": ["arrow", "bar", "down", "drag", "move", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea0d" + }, + "arrow-bar-left": { + "name": "arrow-bar-left", + "category": "Arrows", + "tags": ["arrow", "bar", "left", "drag", "move", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea0e" + }, + "arrow-bar-right": { + "name": "arrow-bar-right", + "category": "Arrows", + "tags": ["arrow", "bar", "right", "drag", "move", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea0f" + }, + "arrow-bar-to-down": { + "name": "arrow-bar-to-down", + "category": "Arrows", + "tags": ["arrow", "bar", "to", "down", "drag", "move", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec88" + }, + "arrow-bar-to-left": { + "name": "arrow-bar-to-left", + "category": "Arrows", + "tags": ["arrow", "bar", "to", "left", "drag", "move", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec89" + }, + "arrow-bar-to-right": { + "name": "arrow-bar-to-right", + "category": "Arrows", + "tags": ["arrow", "bar", "to", "right", "drag", "move", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8a" + }, + "arrow-bar-to-up": { + "name": "arrow-bar-to-up", + "category": "Arrows", + "tags": ["arrow", "bar", "to", "up", "drag", "move", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8b" + }, + "arrow-bar-up": { + "name": "arrow-bar-up", + "category": "Arrows", + "tags": ["arrow", "bar", "up", "drag", "move", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea10" + }, + "arrow-bear-left-2": { + "name": "arrow-bear-left-2", + "category": "Arrows", + "tags": ["arrow", "bear", "left", "2", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f044" + }, + "arrow-bear-left": { + "name": "arrow-bear-left", + "category": "Arrows", + "tags": ["arrow", "bear", "left", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f045" + }, + "arrow-bear-right-2": { + "name": "arrow-bear-right-2", + "category": "Arrows", + "tags": ["arrow", "bear", "right", "2", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f046" + }, + "arrow-bear-right": { + "name": "arrow-bear-right", + "category": "Arrows", + "tags": ["arrow", "bear", "right", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f047" + }, + "arrow-big-down-line": { + "name": "arrow-big-down-line", + "category": "Arrows", + "tags": ["arrow", "big", "down", "line", "direction", "south", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efe8" + }, + "arrow-big-down-lines": { + "name": "arrow-big-down-lines", + "category": "Arrows", + "tags": ["arrow", "big", "down", "lines", "direction", "south", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efe9" + }, + "arrow-big-down": { + "name": "arrow-big-down", + "category": "Arrows", + "tags": ["arrow", "big", "down", "direction", "south", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "edda" + }, + "arrow-big-left-line": { + "name": "arrow-big-left-line", + "category": "Arrows", + "tags": ["arrow", "big", "left", "line", "direction", "west", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efea" + }, + "arrow-big-left-lines": { + "name": "arrow-big-left-lines", + "category": "Arrows", + "tags": ["arrow", "big", "left", "lines", "direction", "west", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efeb" + }, + "arrow-big-left": { + "name": "arrow-big-left", + "category": "Arrows", + "tags": ["arrow", "big", "left", "direction", "west", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "eddb" + }, + "arrow-big-right-line": { + "name": "arrow-big-right-line", + "category": "Arrows", + "tags": ["arrow", "big", "right", "line", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efec" + }, + "arrow-big-right-lines": { + "name": "arrow-big-right-lines", + "category": "Arrows", + "tags": ["arrow", "big", "right", "lines", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efed" + }, + "arrow-big-right": { + "name": "arrow-big-right", + "category": "Arrows", + "tags": ["arrow", "big", "right", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "eddc" + }, + "arrow-big-top": { + "name": "arrow-big-top", + "category": "Arrows", + "tags": ["arrow", "big", "top", "direction", "north", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "eddd" + }, + "arrow-big-up-line": { + "name": "arrow-big-up-line", + "category": "Arrows", + "tags": ["arrow", "big", "up", "line", "direction", "north", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efee" + }, + "arrow-big-up-lines": { + "name": "arrow-big-up-lines", + "category": "Arrows", + "tags": ["arrow", "big", "up", "lines", "direction", "north", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "efef" + }, + "arrow-bounce": { + "name": "arrow-bounce", + "category": "Arrows", + "tags": ["arrow", "bounce", "direction", "cursor", "up", "pointer", "move", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a4" + }, + "arrow-curve-left": { + "name": "arrow-curve-left", + "category": "Arrows", + "tags": ["arrow", "curve", "left", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f048" + }, + "arrow-curve-right": { + "name": "arrow-curve-right", + "category": "Arrows", + "tags": ["arrow", "curve", "right", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f049" + }, + "arrow-down-bar": { + "name": "arrow-down-bar", + "category": "Arrows", + "tags": ["arrow", "down", "bar", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed98" + }, + "arrow-down-circle": { + "name": "arrow-down-circle", + "category": "Arrows", + "tags": ["arrow", "down", "circle", "proceed", "swipe", "below", "bottom", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea11" + }, + "arrow-down-left-circle": { + "name": "arrow-down-left-circle", + "category": "Arrows", + "tags": ["arrow", "down", "left", "circle", "corner", "bottom", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea12" + }, + "arrow-down-left": { + "name": "arrow-down-left", + "category": "Arrows", + "tags": ["arrow", "down", "left", "corner", "bottom", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea13" + }, + "arrow-down-rhombus": { + "name": "arrow-down-rhombus", + "category": "Arrows", + "tags": ["arrow", "down", "rhombus", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f61d" + }, + "arrow-down-right-circle": { + "name": "arrow-down-right-circle", + "category": "Arrows", + "tags": ["arrow", "down", "right", "circle", "corner", "bottom", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea14" + }, + "arrow-down-right": { + "name": "arrow-down-right", + "category": "Arrows", + "tags": ["arrow", "down", "right", "corner", "bottom", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea15" + }, + "arrow-down-square": { + "name": "arrow-down-square", + "category": "Arrows", + "tags": ["arrow", "down", "square", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9a" + }, + "arrow-down-tail": { + "name": "arrow-down-tail", + "category": "Arrows", + "tags": ["arrow", "down", "tail", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9b" + }, + "arrow-down": { + "name": "arrow-down", + "category": "Arrows", + "tags": ["arrow", "down", "proceed", "swipe", "below", "bottom", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea16" + }, + "arrow-fork": { + "name": "arrow-fork", + "category": "Arrows", + "tags": ["arrow", "fork", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04a" + }, + "arrow-forward-up": { + "name": "arrow-forward-up", + "category": "Arrows", + "tags": ["arrow", "forward", "up", "point", "turn", "next", "redo", "right", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb78" + }, + "arrow-forward": { + "name": "arrow-forward", + "category": "Arrows", + "tags": ["arrow", "forward", "point", "turn", "next", "redo", "right", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea17" + }, + "arrow-guide": { + "name": "arrow-guide", + "category": "Arrows", + "tags": ["arrow", "guide", "direction", "west", "bend", "navigation", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22a" + }, + "arrow-iteration": { + "name": "arrow-iteration", + "category": "Arrows", + "tags": ["arrow", "iteration", "direction", "loop", "right", "east", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f578" + }, + "arrow-left-bar": { + "name": "arrow-left-bar", + "category": "Arrows", + "tags": ["arrow", "left", "bar", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9c" + }, + "arrow-left-circle": { + "name": "arrow-left-circle", + "category": "Arrows", + "tags": ["arrow", "left", "circle", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ea18" + }, + "arrow-left-rhombus": { + "name": "arrow-left-rhombus", + "category": "Arrows", + "tags": ["arrow", "left", "rhombus", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f61e" + }, + "arrow-left-right": { + "name": "arrow-left-right", + "category": "Arrows", + "tags": ["arrow", "left", "right", "direction", "west", "east", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04b" + }, + "arrow-left-square": { + "name": "arrow-left-square", + "category": "Arrows", + "tags": ["arrow", "left", "square", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9d" + }, + "arrow-left-tail": { + "name": "arrow-left-tail", + "category": "Arrows", + "tags": ["arrow", "left", "tail", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9e" + }, + "arrow-left": { + "name": "arrow-left", + "category": "Arrows", + "tags": ["arrow", "left", "back", "swipe", "return", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea19" + }, + "arrow-loop-left-2": { + "name": "arrow-loop-left-2", + "category": "Arrows", + "tags": ["arrow", "loop", "left", "2", "direction", "west", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04c" + }, + "arrow-loop-left": { + "name": "arrow-loop-left", + "category": "Arrows", + "tags": ["arrow", "loop", "left", "drag", "move", "turn", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ed9f" + }, + "arrow-loop-right-2": { + "name": "arrow-loop-right-2", + "category": "Arrows", + "tags": ["arrow", "loop", "right", "2", "direction", "east", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04d" + }, + "arrow-loop-right": { + "name": "arrow-loop-right", + "category": "Arrows", + "tags": ["arrow", "loop", "right", "drag", "move", "turn", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda0" + }, + "arrow-merge-both": { + "name": "arrow-merge-both", + "category": "Arrows", + "tags": ["arrow", "merge", "both", "direction", "up", "north", "higher", "right", "left", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f23b" + }, + "arrow-merge-left": { + "name": "arrow-merge-left", + "category": "Arrows", + "tags": ["arrow", "merge", "left", "direction", "up", "north", "higher", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f23c" + }, + "arrow-merge-right": { + "name": "arrow-merge-right", + "category": "Arrows", + "tags": ["arrow", "merge", "right", "direction", "up", "north", "higher", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f23d" + }, + "arrow-merge": { + "name": "arrow-merge", + "category": "Arrows", + "tags": ["arrow", "merge", "direction", "north", "up", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04e" + }, + "arrow-move-down": { + "name": "arrow-move-down", + "category": "Arrows", + "tags": ["arrow", "move", "down", "direction", "south", "bottom", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2ba" + }, + "arrow-move-left": { + "name": "arrow-move-left", + "category": "Arrows", + "tags": ["arrow", "move", "left", "direction", "west", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2bb" + }, + "arrow-move-right": { + "name": "arrow-move-right", + "category": "Arrows", + "tags": ["arrow", "move", "right", "direction", "east", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2bc" + }, + "arrow-move-up": { + "name": "arrow-move-up", + "category": "Arrows", + "tags": ["arrow", "move", "up", "direction", "north", "top", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2bd" + }, + "arrow-narrow-down": { + "name": "arrow-narrow-down", + "category": "Arrows", + "tags": ["arrow", "narrow", "down", "bottom", "proceed", "swipe", "next", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea1a" + }, + "arrow-narrow-left": { + "name": "arrow-narrow-left", + "category": "Arrows", + "tags": ["arrow", "narrow", "left", "back", "previous", "pointer", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea1b" + }, + "arrow-narrow-right": { + "name": "arrow-narrow-right", + "category": "Arrows", + "tags": ["arrow", "narrow", "right", "next", "proceed", "point", "pointer", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea1c" + }, + "arrow-narrow-up": { + "name": "arrow-narrow-up", + "category": "Arrows", + "tags": ["arrow", "narrow", "up", "top", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea1d" + }, + "arrow-ramp-left-2": { + "name": "arrow-ramp-left-2", + "category": "Arrows", + "tags": ["arrow", "ramp", "left", "2", "direction", "west", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f04f" + }, + "arrow-ramp-left-3": { + "name": "arrow-ramp-left-3", + "category": "Arrows", + "tags": ["arrow", "ramp", "left", "3", "direction", "west", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f050" + }, + "arrow-ramp-left": { + "name": "arrow-ramp-left", + "category": "Arrows", + "tags": ["arrow", "ramp", "left", "direction", "side", "turn", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed3c" + }, + "arrow-ramp-right-2": { + "name": "arrow-ramp-right-2", + "category": "Arrows", + "tags": ["arrow", "ramp", "right", "2", "direction", "east", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f051" + }, + "arrow-ramp-right-3": { + "name": "arrow-ramp-right-3", + "category": "Arrows", + "tags": ["arrow", "ramp", "right", "3", "direction", "east", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f052" + }, + "arrow-ramp-right": { + "name": "arrow-ramp-right", + "category": "Arrows", + "tags": ["arrow", "ramp", "right", "direction", "side", "turn", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed3d" + }, + "arrow-right-bar": { + "name": "arrow-right-bar", + "category": "Arrows", + "tags": ["arrow", "right", "bar", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda1" + }, + "arrow-right-circle": { + "name": "arrow-right-circle", + "category": "Arrows", + "tags": ["arrow", "right", "circle", "drag", "move", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ea1e" + }, + "arrow-right-rhombus": { + "name": "arrow-right-rhombus", + "category": "Arrows", + "tags": ["arrow", "right", "rhombus", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f61f" + }, + "arrow-right-square": { + "name": "arrow-right-square", + "category": "Arrows", + "tags": ["arrow", "right", "square", "direction", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda2" + }, + "arrow-right-tail": { + "name": "arrow-right-tail", + "category": "Arrows", + "tags": ["arrow", "right", "tail", "direction", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda3" + }, + "arrow-right": { + "name": "arrow-right", + "category": "Arrows", + "tags": ["arrow", "right", "next", "proceed", "swipe", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea1f" + }, + "arrow-rotary-first-left": { + "name": "arrow-rotary-first-left", + "category": "Arrows", + "tags": ["arrow", "rotary", "first", "left", "direction", "south", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f053" + }, + "arrow-rotary-first-right": { + "name": "arrow-rotary-first-right", + "category": "Arrows", + "tags": ["arrow", "rotary", "first", "right", "direction", "south", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f054" + }, + "arrow-rotary-last-left": { + "name": "arrow-rotary-last-left", + "category": "Arrows", + "tags": ["arrow", "rotary", "last", "left", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f055" + }, + "arrow-rotary-last-right": { + "name": "arrow-rotary-last-right", + "category": "Arrows", + "tags": ["arrow", "rotary", "last", "right", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f056" + }, + "arrow-rotary-left": { + "name": "arrow-rotary-left", + "category": "Arrows", + "tags": ["arrow", "rotary", "left", "direction", "west", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f057" + }, + "arrow-rotary-right": { + "name": "arrow-rotary-right", + "category": "Arrows", + "tags": ["arrow", "rotary", "right", "direction", "east", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f058" + }, + "arrow-rotary-straight": { + "name": "arrow-rotary-straight", + "category": "Arrows", + "tags": ["arrow", "rotary", "straight", "direction", "north", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f059" + }, + "arrow-roundabout-left": { + "name": "arrow-roundabout-left", + "category": "Arrows", + "tags": ["arrow", "roundabout", "left", "direction", "east", "traffic", "circle", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22b" + }, + "arrow-roundabout-right": { + "name": "arrow-roundabout-right", + "category": "Arrows", + "tags": ["arrow", "roundabout", "right", "direction", "west", "traffic", "circle", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22c" + }, + "arrow-sharp-turn-left": { + "name": "arrow-sharp-turn-left", + "category": "Arrows", + "tags": ["arrow", "sharp", "turn", "left", "direction", "north", "down", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f05a" + }, + "arrow-sharp-turn-right": { + "name": "arrow-sharp-turn-right", + "category": "Arrows", + "tags": ["arrow", "sharp", "turn", "right", "direction", "south", "down", "icon", "stroke", "outline"], + "version": "1.57", + "unicode": "f05b" + }, + "arrow-up-bar": { + "name": "arrow-up-bar", + "category": "Arrows", + "tags": ["arrow", "up", "bar", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda4" + }, + "arrow-up-circle": { + "name": "arrow-up-circle", + "category": "Arrows", + "tags": ["arrow", "up", "circle", "top", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea20" + }, + "arrow-up-left-circle": { + "name": "arrow-up-left-circle", + "category": "Arrows", + "tags": ["arrow", "up", "left", "circle", "top", "corner", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea21" + }, + "arrow-up-left": { + "name": "arrow-up-left", + "category": "Arrows", + "tags": ["arrow", "up", "left", "top", "corner", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea22" + }, + "arrow-up-rhombus": { + "name": "arrow-up-rhombus", + "category": "Arrows", + "tags": ["arrow", "up", "rhombus", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f620" + }, + "arrow-up-right-circle": { + "name": "arrow-up-right-circle", + "category": "Arrows", + "tags": ["arrow", "up", "right", "circle", "top", "corner", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea23" + }, + "arrow-up-right": { + "name": "arrow-up-right", + "category": "Arrows", + "tags": ["arrow", "up", "right", "top", "corner", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea24" + }, + "arrow-up-square": { + "name": "arrow-up-square", + "category": "Arrows", + "tags": ["arrow", "up", "square", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda6" + }, + "arrow-up-tail": { + "name": "arrow-up-tail", + "category": "Arrows", + "tags": ["arrow", "up", "tail", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda7" + }, + "arrow-up": { + "name": "arrow-up", + "category": "Arrows", + "tags": ["arrow", "up", "top", "point", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea25" + }, + "arrow-wave-left-down": { + "name": "arrow-wave-left-down", + "category": "Arrows", + "tags": ["arrow", "wave", "left", "down", "direction", "south", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda8" + }, + "arrow-wave-left-up": { + "name": "arrow-wave-left-up", + "category": "Arrows", + "tags": ["arrow", "wave", "left", "up", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "eda9" + }, + "arrow-wave-right-down": { + "name": "arrow-wave-right-down", + "category": "Arrows", + "tags": ["arrow", "wave", "right", "down", "direction", "south", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edaa" + }, + "arrow-wave-right-up": { + "name": "arrow-wave-right-up", + "category": "Arrows", + "tags": ["arrow", "wave", "right", "up", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edab" + }, + "arrow-zig-zag": { + "name": "arrow-zig-zag", + "category": "Arrows", + "tags": ["arrow", "zig", "zag", "direction", "cursor", "pointer", "turn", "move", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4a7" + }, + "arrows-cross": { + "name": "arrows-cross", + "category": "Arrows", + "tags": ["arrows", "cross", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "effe" + }, + "arrows-diagonal-2": { + "name": "arrows-diagonal-2", + "category": "Arrows", + "tags": ["arrows", "diagonal", "2", "zoom", "corners", "stretch", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea26" + }, + "arrows-diagonal-minimize-2": { + "name": "arrows-diagonal-minimize-2", + "category": "Arrows", + "tags": ["arrows", "diagonal", "minimize", "2", "direction", "south", "north", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef38" + }, + "arrows-diagonal-minimize": { + "name": "arrows-diagonal-minimize", + "category": "Arrows", + "tags": ["arrows", "diagonal", "minimize", "direction", "south", "north", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef39" + }, + "arrows-diagonal": { + "name": "arrows-diagonal", + "category": "Arrows", + "tags": ["arrows", "diagonal", "zoom", "corners", "stretch", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea27" + }, + "arrows-diff": { + "name": "arrows-diff", + "category": "Arrows", + "tags": ["arrows", "diff", "direction", "right", "left", "west", "east", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f296" + }, + "arrows-double-ne-sw": { + "name": "arrows-double-ne-sw", + "category": "Arrows", + "tags": ["arrows", "double", "ne", "sw", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "edde" + }, + "arrows-double-nw-se": { + "name": "arrows-double-nw-se", + "category": "Arrows", + "tags": ["arrows", "double", "nw", "se", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "eddf" + }, + "arrows-double-se-nw": { + "name": "arrows-double-se-nw", + "category": "Arrows", + "tags": ["arrows", "double", "se", "nw", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede0" + }, + "arrows-double-sw-ne": { + "name": "arrows-double-sw-ne", + "category": "Arrows", + "tags": ["arrows", "double", "sw", "ne", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede1" + }, + "arrows-down-up": { + "name": "arrows-down-up", + "category": "Arrows", + "tags": ["arrows", "down", "up", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edac" + }, + "arrows-down": { + "name": "arrows-down", + "category": "Arrows", + "tags": ["arrows", "down", "direction", "south", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edad" + }, + "arrows-exchange-2": { + "name": "arrows-exchange-2", + "category": "Arrows", + "tags": ["arrows", "exchange", "2", "direction", "west", "east", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f3" + }, + "arrows-exchange": { + "name": "arrows-exchange", + "category": "Arrows", + "tags": ["arrows", "exchange", "direction", "west", "east", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f4" + }, + "arrows-horizontal": { + "name": "arrows-horizontal", + "category": "Arrows", + "tags": ["arrows", "horizontal", "zoom", "stretch", "left", "right", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb59" + }, + "arrows-join-2": { + "name": "arrows-join-2", + "category": "Arrows", + "tags": ["arrows", "join", "2", "direction", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edae" + }, + "arrows-join": { + "name": "arrows-join", + "category": "Arrows", + "tags": ["arrows", "join", "direction", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edaf" + }, + "arrows-left-down": { + "name": "arrows-left-down", + "category": "Arrows", + "tags": ["arrows", "left", "down", "drag", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee00" + }, + "arrows-left-right": { + "name": "arrows-left-right", + "category": "Arrows", + "tags": ["arrows", "left", "right", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb0" + }, + "arrows-left": { + "name": "arrows-left", + "category": "Arrows", + "tags": ["arrows", "left", "direction", "west", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb1" + }, + "arrows-maximize": { + "name": "arrows-maximize", + "category": "Arrows", + "tags": ["arrows", "maximize", "fullscreen", "expand", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea28" + }, + "arrows-minimize": { + "name": "arrows-minimize", + "category": "Arrows", + "tags": ["arrows", "minimize", "fullscreen", "exit", "close", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea29" + }, + "arrows-move-horizontal": { + "name": "arrows-move-horizontal", + "category": "Arrows", + "tags": ["arrows", "move", "horizontal", "direction", "west", "east", "left", "right", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22d" + }, + "arrows-move-vertical": { + "name": "arrows-move-vertical", + "category": "Arrows", + "tags": ["arrows", "move", "vertical", "direction", "up", "north", "south", "down", "higher", "lower", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22e" + }, + "arrows-move": { + "name": "arrows-move", + "category": "Arrows", + "tags": ["arrows", "move", "direction", "navigation", "left", "right", "up", "down", "north", "south", "west", "east", "higher", "lower", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f22f" + }, + "arrows-random": { + "name": "arrows-random", + "category": "Arrows", + "tags": ["arrows", "random", "direction", "north", "south", "west", "east", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f095" + }, + "arrows-right-down": { + "name": "arrows-right-down", + "category": "Arrows", + "tags": ["arrows", "right", "down", "drag", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee01" + }, + "arrows-right-left": { + "name": "arrows-right-left", + "category": "Arrows", + "tags": ["arrows", "right", "left", "direction", "east", "west", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb2" + }, + "arrows-right": { + "name": "arrows-right", + "category": "Arrows", + "tags": ["arrows", "right", "direction", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb3" + }, + "arrows-shuffle-2": { + "name": "arrows-shuffle-2", + "category": "Arrows", + "tags": ["arrows", "shuffle", "2", "direction", "random", "cross", "mix", "music", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "efff" + }, + "arrows-shuffle": { + "name": "arrows-shuffle", + "category": "Arrows", + "tags": ["arrows", "shuffle", "direction", "random", "cross", "mix", "music", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f000" + }, + "arrows-sort": { + "name": "arrows-sort", + "category": "Arrows", + "tags": ["arrows", "sort", "top", "bottom", "parallel", "order", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5a" + }, + "arrows-split-2": { + "name": "arrows-split-2", + "category": "Arrows", + "tags": ["arrows", "split", "2", "direction", "navigation", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb4" + }, + "arrows-split": { + "name": "arrows-split", + "category": "Arrows", + "tags": ["arrows", "split", "direction", "navigation", "east", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb5" + }, + "arrows-transfer-down": { + "name": "arrows-transfer-down", + "category": "Arrows", + "tags": ["arrows", "transfer", "down", "direction", "south", "bottom", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2cc" + }, + "arrows-transfer-up": { + "name": "arrows-transfer-up", + "category": "Arrows", + "tags": ["arrows", "transfer", "up", "direction", "north", "top", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2cd" + }, + "arrows-up-down": { + "name": "arrows-up-down", + "category": "Arrows", + "tags": ["arrows", "up", "down", "direction", "north", "south", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb6" + }, + "arrows-up-left": { + "name": "arrows-up-left", + "category": "Arrows", + "tags": ["arrows", "up", "left", "drag", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee02" + }, + "arrows-up-right": { + "name": "arrows-up-right", + "category": "Arrows", + "tags": ["arrows", "up", "right", "drag", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee03" + }, + "arrows-up": { + "name": "arrows-up", + "category": "Arrows", + "tags": ["arrows", "up", "direction", "north", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb7" + }, + "arrows-vertical": { + "name": "arrows-vertical", + "category": "Arrows", + "tags": ["arrows", "vertical", "expand", "stretch", "top", "bottom", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5b" + }, + "artboard-off": { + "name": "artboard-off", + "category": "Design", + "tags": ["artboard", "off", "graphics", "drawing", "design", "art", "canvas", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0ae" + }, + "artboard": { + "name": "artboard", + "category": "Design", + "tags": ["artboard", "graphics", "drawing", "design", "art", "canvas", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea2a" + }, + "article-off": { + "name": "article-off", + "category": "", + "tags": ["article", "off", "news", "newspaper", "media", "blog", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3bf" + }, + "article": { + "name": "article", + "category": "", + "tags": ["article", "news", "newspaper", "media", "blog", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e2" + }, + "aspect-ratio-off": { + "name": "aspect-ratio-off", + "category": "Media", + "tags": ["aspect", "ratio", "off", "size", "dimension", "width", "height", "orientation", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0af" + }, + "aspect-ratio": { + "name": "aspect-ratio", + "category": "Media", + "tags": ["aspect", "ratio", "size", "dimension", "width", "height", "orientation", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed30" + }, + "assembly-off": { + "name": "assembly-off", + "category": "", + "tags": ["assembly", "off", "assembly", "engineering", "manufacturing", "production", "robotics", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c0" + }, + "assembly": { + "name": "assembly", + "category": "", + "tags": ["assembly", "assembly", "engineering", "manufacturing", "production", "robotics", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f24d" + }, + "asset": { + "name": "asset", + "category": "", + "tags": ["asset", "assembly", "engineering", "manufacturing", "production", "robotics", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1ce" + }, + "asterisk-simple": { + "name": "asterisk-simple", + "category": "Text", + "tags": ["asterisk", "simple", "star", "password", "security", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd4" + }, + "asterisk": { + "name": "asterisk", + "category": "Text", + "tags": ["asterisk", "star", "password", "security", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd5" + }, + "at-off": { + "name": "at-off", + "category": "", + "tags": ["at", "off", "email", "message", "mention", "sign", "@", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b0" + }, + "at": { + "name": "at", + "category": "", + "tags": ["at", "email", "message", "mention", "sign", "@", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea2b" + }, + "atom-2": { + "name": "atom-2", + "category": "", + "tags": ["atom", "2", "unit", "element", "part", "electrons", "protons", "neutrons", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebdf" + }, + "atom-off": { + "name": "atom-off", + "category": "", + "tags": ["atom", "off", "unit", "element", "part", "electrons", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0f9" + }, + "atom": { + "name": "atom", + "category": "", + "tags": ["atom", "unit", "element", "part", "electrons", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb79" + }, + "augmented-reality-2": { + "name": "augmented-reality-2", + "category": "", + "tags": ["augmented", "reality", "2", "technology", "dimensional", "geometry", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f37e" + }, + "augmented-reality-off": { + "name": "augmented-reality-off", + "category": "", + "tags": ["augmented", "reality", "off", "technology", "dimensional", "geometry", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c1" + }, + "augmented-reality": { + "name": "augmented-reality", + "category": "", + "tags": ["augmented", "reality", "technology", "dimensional", "geometry", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f023" + }, + "award-off": { + "name": "award-off", + "category": "", + "tags": ["award", "off", "prize", "reward", "competition", "contest", "win", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0fa" + }, + "award": { + "name": "award", + "category": "", + "tags": ["award", "prize", "reward", "competition", "contest", "win", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea2c" + }, + "axe": { + "name": "axe", + "category": "", + "tags": ["axe", "blade", "wood", "tool", "hatchet", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "ef9f" + }, + "axis-x": { + "name": "axis-x", + "category": "Arrows", + "tags": ["axis", "x", "math", "geometry", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef45" + }, + "axis-y": { + "name": "axis-y", + "category": "Arrows", + "tags": ["axis", "y", "math", "geometry", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef46" + }, + "baby-bottle": { + "name": "baby-bottle", + "category": "", + "tags": ["baby", "bottle", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d2" + }, + "baby-carriage": { + "name": "baby-carriage", + "category": "", + "tags": ["baby", "carriage", "child", "infant", "cradle", "pram", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f05d" + }, + "backhoe": { + "name": "backhoe", + "category": "Vehicles", + "tags": ["backhoe", "rear", "equipment", "digger", "excavation", "tractor", "loader", "construction", "site", "excavator", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed86" + }, + "backpack-off": { + "name": "backpack-off", + "category": "", + "tags": ["backpack", "off", "education", "school", "learning", "adventure", "travel", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c2" + }, + "backpack": { + "name": "backpack", + "category": "", + "tags": ["backpack", "education", "school", "learning", "adventure", "travel", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef47" + }, + "backspace": { + "name": "backspace", + "category": "Text", + "tags": ["backspace", "delete", "remove", "eliminate", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea2d" + }, + "badge-3d": { + "name": "badge-3d", + "category": "", + "tags": ["badge", "3d", "shape", "movie", "glasses", "film", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f555" + }, + "badge-4k": { + "name": "badge-4k", + "category": "", + "tags": ["badge", "4k", "shape", "high", "resolution", "video", "display", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f556" + }, + "badge-8k": { + "name": "badge-8k", + "category": "", + "tags": ["badge", "8k", "shape", "high", "resolution", "video", "display", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f557" + }, + "badge-ad": { + "name": "badge-ad", + "category": "", + "tags": ["badge", "ad", "shape", "marketing", "media", "promotion", "advertising", "advertisement", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f558" + }, + "badge-ar": { + "name": "badge-ar", + "category": "", + "tags": ["badge", "ar", "shape", "agumented", "reality", "techonoly", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f559" + }, + "badge-cc": { + "name": "badge-cc", + "category": "", + "tags": ["badge", "cc", "shape", "accessiblity", "subtitles", "youtube", "netflix", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55a" + }, + "badge-filled": { + "name": "badge-filled", + "category": "Filled", + "tags": ["badge", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f667" + }, + "badge-hd": { + "name": "badge-hd", + "category": "", + "tags": ["badge", "hd", "shape", "video", "display", "resolution", "movie", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55b" + }, + "badge-off": { + "name": "badge-off", + "category": "", + "tags": ["badge", "off", "army", "badge", "military", "rank", "soldier", "war", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0fb" + }, + "badge-sd": { + "name": "badge-sd", + "category": "", + "tags": ["badge", "sd", "shape", "card", "memory", "sim", "phone", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55c" + }, + "badge-tm": { + "name": "badge-tm", + "category": "", + "tags": ["badge", "tm", "shape", "brand", "copyright", "logo", "product", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55d" + }, + "badge-vo": { + "name": "badge-vo", + "category": "", + "tags": ["badge", "vo", "shape", "mic", "film", "netflix", "voice", "video", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55e" + }, + "badge-vr": { + "name": "badge-vr", + "category": "", + "tags": ["badge", "vr", "shape", "technology", "virtual", "reality", "device", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f55f" + }, + "badge-wc": { + "name": "badge-wc", + "category": "", + "tags": ["badge", "wc", "shape", "toilet", "restroom", "male", "female", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f560" + }, + "badge": { + "name": "badge", + "category": "", + "tags": ["badge", "army", "badge", "military", "rank", "soldier", "war", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc2" + }, + "badges-off": { + "name": "badges-off", + "category": "", + "tags": ["badges", "off", "army", "badge", "military", "rank", "soldier", "war", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0fc" + }, + "badges": { + "name": "badges", + "category": "", + "tags": ["badges", "army", "badge", "military", "rank", "soldier", "war", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc3" + }, + "baguette": { + "name": "baguette", + "category": "Food", + "tags": ["baguette", "bread", "french", "breakfast", "bakery", "loaf", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a5" + }, + "ball-american-football-off": { + "name": "ball-american-football-off", + "category": "Sport", + "tags": ["ball", "american", "football", "off", "sport", "game", "sportsman", "play", "match", "pitch", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c3" + }, + "ball-american-football": { + "name": "ball-american-football", + "category": "Sport", + "tags": ["ball", "american", "football", "sport", "game", "sportsman", "play", "match", "pitch", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee04" + }, + "ball-baseball": { + "name": "ball-baseball", + "category": "Sport", + "tags": ["ball", "baseball", "sport", "game", "competition", "pitch", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa0" + }, + "ball-basketball": { + "name": "ball-basketball", + "category": "Sport", + "tags": ["ball", "basketball", "game", "round", "quarter", "basket", "nba", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ec28" + }, + "ball-bowling": { + "name": "ball-bowling", + "category": "Sport", + "tags": ["ball", "bowling", "round", "strike", "spare", "pin", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec29" + }, + "ball-football-off": { + "name": "ball-football-off", + "category": "Sport", + "tags": ["ball", "football", "off", "sport", "game", "sportsman", "play", "match", "pitch", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee05" + }, + "ball-football": { + "name": "ball-football", + "category": "Sport", + "tags": ["ball", "football", "sport", "game", "sportsman", "play", "match", "pitch", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee06" + }, + "ball-tennis": { + "name": "ball-tennis", + "category": "Sport", + "tags": ["ball", "tennis", "game", "set", "match", "court", "racket", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec2a" + }, + "ball-volleyball": { + "name": "ball-volleyball", + "category": "Sport", + "tags": ["ball", "volleyball", "point", "set", "match", "attacker", "ace", "setter", "serve", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec2b" + }, + "ballon-off": { + "name": "ballon-off", + "category": "", + "tags": ["ballon", "off", "party", "birthday", "decoration", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0fd" + }, + "ballon": { + "name": "ballon", + "category": "", + "tags": ["ballon", "party", "birthday", "decoration", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3a" + }, + "ballpen-off": { + "name": "ballpen-off", + "category": "", + "tags": ["ballpen", "off", "write", "school", "education", "stationery", "text", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b1" + }, + "ballpen": { + "name": "ballpen", + "category": "", + "tags": ["ballpen", "write", "school", "education", "stationery", "text", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f06e" + }, + "ban": { + "name": "ban", + "category": "", + "tags": ["ban", "no", "reject", "restriction", "prohibited", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea2e" + }, + "bandage-off": { + "name": "bandage-off", + "category": "Health", + "tags": ["bandage", "off", "patch", "wound", "cut", "pain", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c4" + }, + "bandage": { + "name": "bandage", + "category": "Health", + "tags": ["bandage", "patch", "wound", "cut", "pain", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7a" + }, + "barbell-off": { + "name": "barbell-off", + "category": "Sport", + "tags": ["barbell", "off", "weight", "gym", "fitness", "powerlift", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b2" + }, + "barbell": { + "name": "barbell", + "category": "Sport", + "tags": ["barbell", "weight", "gym", "fitness", "powerlift", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff0" + }, + "barcode-off": { + "name": "barcode-off", + "category": "", + "tags": ["barcode", "off", "product", "shop", "scan", "supermarket", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b3" + }, + "barcode": { + "name": "barcode", + "category": "", + "tags": ["barcode", "product", "shop", "scan", "supermarket", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc6" + }, + "barrel-off": { + "name": "barrel-off", + "category": "", + "tags": ["barrel", "off", "beer", "wine", "fuel", "tank", "cask", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0fe" + }, + "barrel": { + "name": "barrel", + "category": "", + "tags": ["barrel", "beer", "wine", "fuel", "tank", "cask", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f0b4" + }, + "barrier-block-off": { + "name": "barrier-block-off", + "category": "", + "tags": ["barrier", "block", "off", "construction", "stop", "traffic", "barricade", "street", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b5" + }, + "barrier-block": { + "name": "barrier-block", + "category": "", + "tags": ["barrier", "block", "construction", "stop", "traffic", "barricade", "street", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f00e" + }, + "baseline": { + "name": "baseline", + "category": "Text", + "tags": ["baseline", "align", "arrow", "bottom", "format", "vertical", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f024" + }, + "basket-off": { + "name": "basket-off", + "category": "E-commerce", + "tags": ["basket", "off", "shop", "store", "online", "shopping", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b6" + }, + "basket": { + "name": "basket", + "category": "E-commerce", + "tags": ["basket", "shop", "store", "online", "shopping", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe1" + }, + "bat": { + "name": "bat", + "category": "Animals", + "tags": ["bat", "animal", "halloween", "vampire", "scary", "blood", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f284" + }, + "bath-off": { + "name": "bath-off", + "category": "", + "tags": ["bath", "off", "water", "clean", "hygiene", "bathroom", "tub", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f0ff" + }, + "bath": { + "name": "bath", + "category": "", + "tags": ["bath", "water", "clean", "hygiene", "bathroom", "tub", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef48" + }, + "battery-1": { + "name": "battery-1", + "category": "Devices", + "tags": ["battery", "1", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea2f" + }, + "battery-2": { + "name": "battery-2", + "category": "Devices", + "tags": ["battery", "2", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea30" + }, + "battery-3": { + "name": "battery-3", + "category": "Devices", + "tags": ["battery", "3", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea31" + }, + "battery-4": { + "name": "battery-4", + "category": "Devices", + "tags": ["battery", "4", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea32" + }, + "battery-automotive": { + "name": "battery-automotive", + "category": "Vehicles", + "tags": ["battery", "automotive", "vehicle", "charge", "motor", "current", "car", "electricity", "electric", "power", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee07" + }, + "battery-charging-2": { + "name": "battery-charging-2", + "category": "Devices", + "tags": ["battery", "charging", "2", "charge", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3b" + }, + "battery-charging": { + "name": "battery-charging", + "category": "Devices", + "tags": ["battery", "charging", "charge", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea33" + }, + "battery-eco": { + "name": "battery-eco", + "category": "Devices", + "tags": ["battery", "eco", "ecology", "charge", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3c" + }, + "battery-filled": { + "name": "battery-filled", + "category": "Filled", + "tags": ["battery", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f668" + }, + "battery-off": { + "name": "battery-off", + "category": "Devices", + "tags": ["battery", "off", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1c" + }, + "battery": { + "name": "battery", + "category": "Devices", + "tags": ["battery", "energy", "power", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea34" + }, + "beach-off": { + "name": "beach-off", + "category": "Map", + "tags": ["beach", "off", "sand", "sun", "umbrella", "vacation", "travel", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b7" + }, + "beach": { + "name": "beach", + "category": "Map", + "tags": ["beach", "sand", "sun", "umbrella", "vacation", "travel", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3d" + }, + "bed-off": { + "name": "bed-off", + "category": "Map", + "tags": ["bed", "off", "sleep", "night", "bedroom", "rest", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f100" + }, + "bed": { + "name": "bed", + "category": "Map", + "tags": ["bed", "sleep", "night", "bedroom", "rest", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5c" + }, + "beer-off": { + "name": "beer-off", + "category": "Food", + "tags": ["beer", "off", "alcohol", "drink", "beverage", "bar", "pub", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f101" + }, + "beer": { + "name": "beer", + "category": "Food", + "tags": ["beer", "alcohol", "drink", "beverage", "bar", "pub", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa1" + }, + "bell-filled": { + "name": "bell-filled", + "category": "Filled", + "tags": ["bell", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f669" + }, + "bell-minus": { + "name": "bell-minus", + "category": "System", + "tags": ["bell", "minus", "notification", "alarm", "alert", "remove", "ring", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede2" + }, + "bell-off": { + "name": "bell-off", + "category": "System", + "tags": ["bell", "off", "alarm", "sound", "notification", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ece9" + }, + "bell-plus": { + "name": "bell-plus", + "category": "System", + "tags": ["bell", "plus", "alarm", "notification", "alert", "set", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede3" + }, + "bell-ringing-2": { + "name": "bell-ringing-2", + "category": "System", + "tags": ["bell", "ringing", "2", "alarm", "sound", "notification", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede4" + }, + "bell-ringing": { + "name": "bell-ringing", + "category": "System", + "tags": ["bell", "ringing", "alarm", "sound", "notification", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed07" + }, + "bell-school": { + "name": "bell-school", + "category": "", + "tags": ["bell", "school", "alarm", "education", "alert", "sound", "notification", "study", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f05e" + }, + "bell-x": { + "name": "bell-x", + "category": "System", + "tags": ["bell", "x", "alarm", "ring", "sound", "alert", "disabled", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede5" + }, + "bell-z": { + "name": "bell-z", + "category": "", + "tags": ["bell", "z", "alarm", "bell", "clock", "date", "snooze", "time", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff1" + }, + "bell": { + "name": "bell", + "category": "System", + "tags": ["bell", "alarm", "sound", "notification", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea35" + }, + "beta": { + "name": "beta", + "category": "", + "tags": ["beta", "letter", "alphabet", "greek", "math", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f544" + }, + "bible": { + "name": "bible", + "category": "", + "tags": ["bible", "religion", "holy", "christian", "miracle", "church", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc4" + }, + "bike-off": { + "name": "bike-off", + "category": "Vehicles", + "tags": ["bike", "off", "cycling", "bicycle", "sport", "wheel", "icon", "stroke", "outline"], + "version": "1.62", + "unicode": "f0b8" + }, + "bike": { + "name": "bike", + "category": "Vehicles", + "tags": ["bike", "cycling", "bicycle", "sport", "wheel", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea36" + }, + "binary-off": { + "name": "binary-off", + "category": "", + "tags": ["binary", "off", "binary", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c5" + }, + "binary-tree-2": { + "name": "binary-tree-2", + "category": "", + "tags": ["binary", "tree", "2", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d3" + }, + "binary-tree": { + "name": "binary-tree", + "category": "", + "tags": ["binary", "tree", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d4" + }, + "binary": { + "name": "binary", + "category": "", + "tags": ["binary", "binary", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee08" + }, + "biohazard-off": { + "name": "biohazard-off", + "category": "Symbols", + "tags": ["biohazard", "off", "danger", "radioactive", "toxic", "microbe", "virus", "biotoxin", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0b9" + }, + "biohazard": { + "name": "biohazard", + "category": "Symbols", + "tags": ["biohazard", "danger", "radioactive", "toxic", "microbe", "virus", "biotoxin", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecb8" + }, + "blade": { + "name": "blade", + "category": "", + "tags": ["blade", "razor", "beard", "barber", "cut", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4bd" + }, + "bleach-chlorine": { + "name": "bleach-chlorine", + "category": "Laundry", + "tags": ["bleach", "chlorine", "clothing", "washing", "chemical", "laundry", "detergent", "clean", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f0" + }, + "bleach-no-chlorine": { + "name": "bleach-no-chlorine", + "category": "Laundry", + "tags": ["bleach", "no", "chlorine", "clothing", "washing", "chemical", "laundry", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f1" + }, + "bleach-off": { + "name": "bleach-off", + "category": "Laundry", + "tags": ["bleach", "off", "clothing", "washing", "chemical", "laundry", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f2" + }, + "bleach": { + "name": "bleach", + "category": "Laundry", + "tags": ["bleach", "clothing", "washing", "chemical", "laundry", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f3" + }, + "blockquote": { + "name": "blockquote", + "category": "Text", + "tags": ["blockquote", "citation", "quotation", "saying", "text", "section", "style", "styling", "css", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee09" + }, + "bluetooth-connected": { + "name": "bluetooth-connected", + "category": "Devices", + "tags": ["bluetooth", "connected", "wireless", "connection", "connect", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecea" + }, + "bluetooth-off": { + "name": "bluetooth-off", + "category": "Devices", + "tags": ["bluetooth", "off", "wireless", "connection", "connect", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "eceb" + }, + "bluetooth-x": { + "name": "bluetooth-x", + "category": "", + "tags": ["bluetooth", "x", "multimedia", "technology", "disabled", "connection", "communication", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f081" + }, + "bluetooth": { + "name": "bluetooth", + "category": "Devices", + "tags": ["bluetooth", "wireless", "connection", "connect", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea37" + }, + "blur-off": { + "name": "blur-off", + "category": "Design", + "tags": ["blur", "off", "edit", "photo", "photography", "tool", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c6" + }, + "blur": { + "name": "blur", + "category": "Design", + "tags": ["blur", "edit", "photo", "photography", "tool", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef8c" + }, + "bmp": { + "name": "bmp", + "category": "", + "tags": ["bmp", "format", "filetype", "file", "document", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a6" + }, + "bold-off": { + "name": "bold-off", + "category": "Text", + "tags": ["bold", "off", "font", "style", "boldface", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0ba" + }, + "bold": { + "name": "bold", + "category": "Text", + "tags": ["bold", "font", "style", "boldface", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7b" + }, + "bolt-off": { + "name": "bolt-off", + "category": "", + "tags": ["bolt", "off", "energy", "power", "electricity", "storm", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecec" + }, + "bolt": { + "name": "bolt", + "category": "", + "tags": ["bolt", "energy", "power", "electricity", "storm", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea38" + }, + "bomb": { + "name": "bomb", + "category": "", + "tags": ["bomb", "explosion", "weapon", "military", "war", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f59c" + }, + "bone-off": { + "name": "bone-off", + "category": "Food", + "tags": ["bone", "off", "skeleton", "human", "dog", "body", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0bb" + }, + "bone": { + "name": "bone", + "category": "Food", + "tags": ["bone", "skeleton", "human", "dog", "body", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edb8" + }, + "bong-off": { + "name": "bong-off", + "category": "", + "tags": ["bong", "off", "smoke", "smoking", "cannabis", "marijuana", "drugs", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c7" + }, + "bong": { + "name": "bong", + "category": "", + "tags": ["bong", "smoke", "smoking", "cannabis", "marijuana", "drugs", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a7" + }, + "book-2": { + "name": "book-2", + "category": "Document", + "tags": ["book", "2", "read", "dictionary", "magazine", "library", "booklet", "novel", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc5" + }, + "book-download": { + "name": "book-download", + "category": "Document", + "tags": ["book", "download", "education", "e-book", "digital", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f070" + }, + "book-off": { + "name": "book-off", + "category": "Document", + "tags": ["book", "off", "read", "dictionary", "magazine", "library", "booklet", "novel", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0bc" + }, + "book-upload": { + "name": "book-upload", + "category": "Document", + "tags": ["book", "upload", "e-book", "e-learning", "education", "reading", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f071" + }, + "book": { + "name": "book", + "category": "Document", + "tags": ["book", "read", "dictionary", "magazine", "library", "booklet", "novel", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea39" + }, + "bookmark-off": { + "name": "bookmark-off", + "category": "Document", + "tags": ["bookmark", "off", "read", "clip", "marker", "tag", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "eced" + }, + "bookmark": { + "name": "bookmark", + "category": "Document", + "tags": ["bookmark", "read", "clip", "marker", "tag", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3a" + }, + "bookmarks-off": { + "name": "bookmarks-off", + "category": "Document", + "tags": ["bookmarks", "off", "read", "clip", "marker", "tag", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0bd" + }, + "bookmarks": { + "name": "bookmarks", + "category": "Document", + "tags": ["bookmarks", "read", "clip", "marker", "tag", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed08" + }, + "books-off": { + "name": "books-off", + "category": "Document", + "tags": ["books", "off", "education", "learning", "reading", "school", "library", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0be" + }, + "books": { + "name": "books", + "category": "Document", + "tags": ["books", "education", "learning", "reading", "school", "library", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff2" + }, + "border-all": { + "name": "border-all", + "category": "Design", + "tags": ["border", "all", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3b" + }, + "border-bottom": { + "name": "border-bottom", + "category": "Design", + "tags": ["border", "bottom", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3c" + }, + "border-horizontal": { + "name": "border-horizontal", + "category": "Design", + "tags": ["border", "horizontal", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3d" + }, + "border-inner": { + "name": "border-inner", + "category": "Design", + "tags": ["border", "inner", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3e" + }, + "border-left": { + "name": "border-left", + "category": "Design", + "tags": ["border", "left", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea3f" + }, + "border-none": { + "name": "border-none", + "category": "Design", + "tags": ["border", "none", "table", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea40" + }, + "border-outer": { + "name": "border-outer", + "category": "Design", + "tags": ["border", "outer", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea41" + }, + "border-radius": { + "name": "border-radius", + "category": "Design", + "tags": ["border", "radius", "corner", "rounded", "line", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7c" + }, + "border-right": { + "name": "border-right", + "category": "Design", + "tags": ["border", "right", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea42" + }, + "border-style-2": { + "name": "border-style-2", + "category": "Design", + "tags": ["border", "style", "2", "google", "excel", "sheets", "sheets", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef22" + }, + "border-style": { + "name": "border-style", + "category": "Design", + "tags": ["border", "style", "google", "excel", "sheets", "sheets", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0a" + }, + "border-top": { + "name": "border-top", + "category": "Design", + "tags": ["border", "top", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea43" + }, + "border-vertical": { + "name": "border-vertical", + "category": "Design", + "tags": ["border", "vertical", "table", "side", "line", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea44" + }, + "bottle-off": { + "name": "bottle-off", + "category": "Food", + "tags": ["bottle", "off", "water", "drink", "beer", "energy", "wine", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c8" + }, + "bottle": { + "name": "bottle", + "category": "Food", + "tags": ["bottle", "water", "drink", "beer", "energy", "wine", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef0b" + }, + "bounce-left": { + "name": "bounce-left", + "category": "Design", + "tags": ["bounce", "left", "ball", "west", "motion", "jump", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f59d" + }, + "bounce-right": { + "name": "bounce-right", + "category": "Design", + "tags": ["bounce", "right", "ball", "east", "motion", "jump", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f59e" + }, + "bow": { + "name": "bow", + "category": "Sport", + "tags": ["bow", "arrow", "archer", "hunt", "hunter", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f096" + }, + "bowl": { + "name": "bowl", + "category": "Food", + "tags": ["bowl", "food", "soup", "kitchen", "vessel", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4fa" + }, + "box-align-bottom-left": { + "name": "box-align-bottom-left", + "category": "Design", + "tags": ["box", "align", "bottom", "left", "cube", "side", "down", "south-west", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2ce" + }, + "box-align-bottom-right": { + "name": "box-align-bottom-right", + "category": "Design", + "tags": ["box", "align", "bottom", "right", "cube", "side", "down", "south-east", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2cf" + }, + "box-align-bottom": { + "name": "box-align-bottom", + "category": "Design", + "tags": ["box", "align", "bottom", "rectangle", "side", "down", "south", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2a8" + }, + "box-align-left": { + "name": "box-align-left", + "category": "Design", + "tags": ["box", "align", "left", "rectangle side", "west", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2a9" + }, + "box-align-right": { + "name": "box-align-right", + "category": "Design", + "tags": ["box", "align", "right", "rectangle", "side", "east", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2aa" + }, + "box-align-top-left": { + "name": "box-align-top-left", + "category": "Design", + "tags": ["box", "align", "top", "left", "cube", "side", "up", "north-west", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d0" + }, + "box-align-top-right": { + "name": "box-align-top-right", + "category": "Design", + "tags": ["box", "align", "top", "right", "cube", "side", "up", "north-east", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d1" + }, + "box-align-top": { + "name": "box-align-top", + "category": "Design", + "tags": ["box", "align", "top", "rectangle", "side", "up", "north", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2ab" + }, + "box-margin": { + "name": "box-margin", + "category": "Design", + "tags": ["box", "margin", "css", "cascading", "style", "section", "space", "text", "content", "outside", "container", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0b" + }, + "box-model-2-off": { + "name": "box-model-2-off", + "category": "Design", + "tags": ["box", "model", "2", "off", "css", "cascading", "style", "section", "element", "square", "website", "container", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3c9" + }, + "box-model-2": { + "name": "box-model-2", + "category": "Design", + "tags": ["box", "model", "2", "css", "cascading", "style", "section", "element", "square", "website", "container", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef23" + }, + "box-model-off": { + "name": "box-model-off", + "category": "Design", + "tags": ["box", "model", "off", "css", "cascading", "style", "section", "element", "square", "website", "container", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ca" + }, + "box-model": { + "name": "box-model", + "category": "Design", + "tags": ["box", "model", "css", "cascading", "style", "section", "element", "square", "website", "container", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0c" + }, + "box-multiple-0": { + "name": "box-multiple-0", + "category": "Numbers", + "tags": ["box", "multiple", "0", "css", "cascading", "style", "sheet", "background", "section", "zero", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0d" + }, + "box-multiple-1": { + "name": "box-multiple-1", + "category": "Numbers", + "tags": ["box", "multiple", "1", "css", "cascading", "style", "sheet", "background", "section", "one", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0e" + }, + "box-multiple-2": { + "name": "box-multiple-2", + "category": "Numbers", + "tags": ["box", "multiple", "2", "css", "cascading", "style", "sheet", "background", "section", "two", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee0f" + }, + "box-multiple-3": { + "name": "box-multiple-3", + "category": "Numbers", + "tags": ["box", "multiple", "3", "css", "cascading", "style", "sheet", "background", "section", "three", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee10" + }, + "box-multiple-4": { + "name": "box-multiple-4", + "category": "Numbers", + "tags": ["box", "multiple", "4", "css", "cascading", "style", "sheet", "background", "section", "four", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee11" + }, + "box-multiple-5": { + "name": "box-multiple-5", + "category": "Numbers", + "tags": ["box", "multiple", "5", "css", "cascading", "style", "sheet", "background", "section", "five", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee12" + }, + "box-multiple-6": { + "name": "box-multiple-6", + "category": "Numbers", + "tags": ["box", "multiple", "6", "css", "cascading", "style", "sheet", "background", "section", "six", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee13" + }, + "box-multiple-7": { + "name": "box-multiple-7", + "category": "Numbers", + "tags": ["box", "multiple", "7", "css", "cascading", "style", "sheet", "background", "section", "seven", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee14" + }, + "box-multiple-8": { + "name": "box-multiple-8", + "category": "Numbers", + "tags": ["box", "multiple", "8", "css", "cascading", "style", "sheet", "background", "section", "eight", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee15" + }, + "box-multiple-9": { + "name": "box-multiple-9", + "category": "Numbers", + "tags": ["box", "multiple", "9", "css", "cascading", "style", "sheet", "background", "section", "nine", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee16" + }, + "box-multiple": { + "name": "box-multiple", + "category": "", + "tags": ["box", "multiple", "css", "cascading", "style", "sheet", "background", "section", "website", "layer", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee17" + }, + "box-off": { + "name": "box-off", + "category": "", + "tags": ["box", "off", "cube", "app", "application", "package", "container", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f102" + }, + "box-padding": { + "name": "box-padding", + "category": "Design", + "tags": ["box", "padding", "css", "cascading", "style", "section", "space", "text", "content", "website", "container", "inside", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee18" + }, + "box-seam": { + "name": "box-seam", + "category": "", + "tags": ["box", "seam", "cardboard", "package", "delivery", "present", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f561" + }, + "box": { + "name": "box", + "category": "", + "tags": ["box", "cube", "app", "application", "package", "container", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea45" + }, + "braces-off": { + "name": "braces-off", + "category": "Math", + "tags": ["braces", "off", "punctuation", "additional", "information", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0bf" + }, + "braces": { + "name": "braces", + "category": "Math", + "tags": ["braces", "punctuation", "additional", "information", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebcc" + }, + "brackets-contain-end": { + "name": "brackets-contain-end", + "category": "Math", + "tags": ["brackets", "contain", "end", "word", "regex", "find", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e3" + }, + "brackets-contain-start": { + "name": "brackets-contain-start", + "category": "Math", + "tags": ["brackets", "contain", "start", "word", "regex", "find", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e4" + }, + "brackets-contain": { + "name": "brackets-contain", + "category": "Math", + "tags": ["brackets", "contain", "word", "regex", "find", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e5" + }, + "brackets-off": { + "name": "brackets-off", + "category": "Math", + "tags": ["brackets", "off", "punctuation", "additional", "information", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c0" + }, + "brackets": { + "name": "brackets", + "category": "Math", + "tags": ["brackets", "punctuation", "additional", "information", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebcd" + }, + "braile": { + "name": "braile", + "category": "", + "tags": ["braile", "blind", "alphabet", "disability", "letters", "read", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f545" + }, + "brain": { + "name": "brain", + "category": "", + "tags": ["brain", "mind", "human", "iq", "inteligence", "organ", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f59f" + }, + "brand-4chan": { + "name": "brand-4chan", + "category": "Brand", + "tags": ["brand", "4chan", "bulletin", "board", "music", "photography", "image", "share", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f494" + }, + "brand-abstract": { + "name": "brand-abstract", + "category": "Brand", + "tags": ["brand", "abstract", "design", "software", "web", "ux", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f495" + }, + "brand-adobe": { + "name": "brand-adobe", + "category": "Brand", + "tags": ["brand", "adobe", "photoshop", "illustrator", "indesign", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0dc" + }, + "brand-adonis-js": { + "name": "brand-adonis-js", + "category": "Brand", + "tags": ["brand", "adonis", "js", "framework", "web", "app", "typescript", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f496" + }, + "brand-airbnb": { + "name": "brand-airbnb", + "category": "Brand", + "tags": ["brand", "airbnb", "flat", "apartment", "holiday", "vacation", "city", "break", "book", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed68" + }, + "brand-airtable": { + "name": "brand-airtable", + "category": "Brand", + "tags": ["brand", "airtable", "creation of", "sharing", "database", "interface", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6a" + }, + "brand-algolia": { + "name": "brand-algolia", + "category": "Brand", + "tags": ["brand", "algolia", "web", "browser", "software", "efficient", "ai", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f390" + }, + "brand-alpine-js": { + "name": "brand-alpine-js", + "category": "Brand", + "tags": ["brand", "alpine", "js", "javascript", "programming", "coding", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f324" + }, + "brand-amazon": { + "name": "brand-amazon", + "category": "Brand", + "tags": ["brand", "amazon", "shopping", "online", "media", "shop", "ecommerce", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f230" + }, + "brand-amd": { + "name": "brand-amd", + "category": "Brand", + "tags": ["brand", "amd", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f653" + }, + "brand-amigo": { + "name": "brand-amigo", + "category": "Brand", + "tags": ["brand", "amigo", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5f9" + }, + "brand-amongus": { + "name": "brand-amongus", + "category": "Brand", + "tags": ["brand", "amongus", "game", "crewmate", "impostor", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f205" + }, + "brand-android": { + "name": "brand-android", + "category": "Brand", + "tags": ["brand", "android", "os", "company", "system", "interface", "software", "logo", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec16" + }, + "brand-angular": { + "name": "brand-angular", + "category": "Brand", + "tags": ["brand", "angular", "programming", "coding", "typescript", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6b" + }, + "brand-ao3": { + "name": "brand-ao3", + "category": "Brand", + "tags": ["brand", "ao3", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5e8" + }, + "brand-appgallery": { + "name": "brand-appgallery", + "category": "Brand", + "tags": ["brand", "appgallery", "games", "apps", "online", "store", "video", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f231" + }, + "brand-apple-arcade": { + "name": "brand-apple-arcade", + "category": "Brand", + "tags": ["brand", "apple", "arcade", "technology", "video", "game", "service", "macos", "device", "play", "online", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed69" + }, + "brand-apple-podcast": { + "name": "brand-apple-podcast", + "category": "Brand", + "tags": ["brand", "apple", "podcast", "audio", "software", "music", "ios", "tvos", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e6" + }, + "brand-apple": { + "name": "brand-apple", + "category": "Brand", + "tags": ["brand", "apple", "os", "company", "system", "interface", "software", "devices", "logo", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec17" + }, + "brand-appstore": { + "name": "brand-appstore", + "category": "Brand", + "tags": ["brand", "appstore", "shop", "online", "application", "logo", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed24" + }, + "brand-asana": { + "name": "brand-asana", + "category": "Brand", + "tags": ["brand", "asana", "task", "management", "project management", "manage", "collaborate", "collaboration", "team", "teamwork", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edc5" + }, + "brand-backbone": { + "name": "brand-backbone", + "category": "Brand", + "tags": ["brand", "backbone", "javascript", "programmers", "creation", "websites", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f325" + }, + "brand-badoo": { + "name": "brand-badoo", + "category": "Brand", + "tags": ["brand", "badoo", "website", "communication", "chat", "social media", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f206" + }, + "brand-baidu": { + "name": "brand-baidu", + "category": "Brand", + "tags": ["brand", "baidu", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5e9" + }, + "brand-bandcamp": { + "name": "brand-bandcamp", + "category": "Brand", + "tags": ["brand", "bandcamp", "music", "website", "music company", "audio", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f207" + }, + "brand-bandlab": { + "name": "brand-bandlab", + "category": "Brand", + "tags": ["brand", "bandlab", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5fa" + }, + "brand-beats": { + "name": "brand-beats", + "category": "Brand", + "tags": ["brand", "beats", "music", "audio", "headphones", "audio equipment", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f208" + }, + "brand-behance": { + "name": "brand-behance", + "category": "Brand", + "tags": ["brand", "behance", "logo", "website", "adobe", "project", "views", "marks", "platform", "designer", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec6e" + }, + "brand-binance": { + "name": "brand-binance", + "category": "Brand", + "tags": ["brand", "binance", "website", "crypto", "cryptocurrency", "exchange", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a0" + }, + "brand-bing": { + "name": "brand-bing", + "category": "Brand", + "tags": ["brand", "bing", "search", "result", "find", "search", "engine", "internet", "microsoft", "web", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edc6" + }, + "brand-bitbucket": { + "name": "brand-bitbucket", + "category": "Brand", + "tags": ["brand", "bitbucket", "version", "control", "repository", "hosting", "atlassian", "source", "code", "development", "git", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edc7" + }, + "brand-blackbery": { + "name": "brand-blackbery", + "category": "Brand", + "tags": ["brand", "blackbery", "phone", "mobile", "system", "operating", "os", "electronics", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f568" + }, + "brand-blender": { + "name": "brand-blender", + "category": "Brand", + "tags": ["brand", "blender", "software", "graphic", "3d", "animation", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f326" + }, + "brand-blogger": { + "name": "brand-blogger", + "category": "Brand", + "tags": ["brand", "blogger", "media", "blogging", "internet", "social", "site", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35a" + }, + "brand-booking": { + "name": "brand-booking", + "category": "Brand", + "tags": ["brand", "booking", "flat", "apartment", "holiday", "vacation", "city", "break", "book", "rent", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edc8" + }, + "brand-bootstrap": { + "name": "brand-bootstrap", + "category": "Brand", + "tags": ["brand", "bootstrap", "programming", "coding", "HTML", "hardware", "javascript", "js", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3e" + }, + "brand-bulma": { + "name": "brand-bulma", + "category": "Brand", + "tags": ["brand", "bulma", "programming", "coding", "html", "css", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f327" + }, + "brand-bumble": { + "name": "brand-bumble", + "category": "Brand", + "tags": ["brand", "bumble", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5fb" + }, + "brand-bunpo": { + "name": "brand-bunpo", + "category": "Brand", + "tags": ["brand", "bunpo", "learn", "japanese", "app", "grammatic", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4cf" + }, + "brand-campaignmonitor": { + "name": "brand-campaignmonitor", + "category": "Brand", + "tags": ["brand", "campaignmonitor", "technology", "e-mail", "site", "cm", "group", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f328" + }, + "brand-carbon": { + "name": "brand-carbon", + "category": "Brand", + "tags": ["brand", "carbon", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f348" + }, + "brand-cashapp": { + "name": "brand-cashapp", + "category": "Brand", + "tags": ["brand", "cashapp", "payment", "finance", "mobile", "app", "money", "transfer", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f391" + }, + "brand-chrome": { + "name": "brand-chrome", + "category": "Brand", + "tags": ["brand", "chrome", "browser", "internet", "web", "logo", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec18" + }, + "brand-citymapper": { + "name": "brand-citymapper", + "category": "Brand", + "tags": ["brand", "citymapper", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5fc" + }, + "brand-codecov": { + "name": "brand-codecov", + "category": "Brand", + "tags": ["brand", "codecov", "coding", "analysis", "archive", "merge", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f329" + }, + "brand-codepen": { + "name": "brand-codepen", + "category": "Brand", + "tags": ["brand", "codepen", "logo", "community", "internet", "codes", "programing", "programmer", "source", "website", "platform", "designer", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec6f" + }, + "brand-codesandbox": { + "name": "brand-codesandbox", + "category": "Brand", + "tags": ["brand", "codesandbox", "online", "code", "editor", "prototyping", "prototype", "web", "app", "programming", "integrated", "development", "environment", "technology", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6a" + }, + "brand-cohost": { + "name": "brand-cohost", + "category": "Brand", + "tags": ["brand", "cohost", "web", "website", "app", "social", "nodes", "network", "community", "communication", "user", "post", "images", "photos", "comment", "feedback", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d5" + }, + "brand-coinbase": { + "name": "brand-coinbase", + "category": "Brand", + "tags": ["brand", "coinbase", "cryptocurrencies", "bitcoin", "ethereum", "traded company", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f209" + }, + "brand-comedy-central": { + "name": "brand-comedy-central", + "category": "Brand", + "tags": ["brand", "comedy", "central", "tv", "serial", "films", "stand-up", "skits", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f217" + }, + "brand-coreos": { + "name": "brand-coreos", + "category": "Brand", + "tags": ["brand", "coreos", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5fd" + }, + "brand-couchdb": { + "name": "brand-couchdb", + "category": "Brand", + "tags": ["brand", "couchdb", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f60f" + }, + "brand-couchsurfing": { + "name": "brand-couchsurfing", + "category": "Brand", + "tags": ["brand", "couchsurfing", "app", "website", "accommodation", "lodging", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f392" + }, + "brand-cpp": { + "name": "brand-cpp", + "category": "Brand", + "tags": ["brand", "cpp", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5fe" + }, + "brand-css3": { + "name": "brand-css3", + "category": "Brand", + "tags": ["brand", "css3", "cascading", "style", "sheet", "programming", "development", "web", "website", "technology", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6b" + }, + "brand-ctemplar": { + "name": "brand-ctemplar", + "category": "Brand", + "tags": ["brand", "ctemplar", "e-mail", "file", "sharing", "encryption", "app", "mobile", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d0" + }, + "brand-cucumber": { + "name": "brand-cucumber", + "category": "Brand", + "tags": ["brand", "cucumber", "software", "tool", "gherkin", "programming", "ruby", "javascript", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6c" + }, + "brand-cupra": { + "name": "brand-cupra", + "category": "Brand", + "tags": ["brand", "cupra", "car", "seat", "sport", "formentor", "ateca", "leon", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d1" + }, + "brand-cypress": { + "name": "brand-cypress", + "category": "Brand", + "tags": ["brand", "cypress", "test", "automation", "user", "interface", "javascript", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f333" + }, + "brand-d3": { + "name": "brand-d3", + "category": "Brand", + "tags": ["brand", "d3", "data", "charts", "javascript", "js", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f24e" + }, + "brand-days-counter": { + "name": "brand-days-counter", + "category": "Brand", + "tags": ["brand", "days", "counter", "app", "mobile", "highlights", "days", "birthday", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d2" + }, + "brand-dcos": { + "name": "brand-dcos", + "category": "Brand", + "tags": ["brand", "dcos", "os", "operating", "system", "cloud", "services", "networking", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32a" + }, + "brand-debian": { + "name": "brand-debian", + "category": "Brand", + "tags": ["brand", "debian", "operating system", "linux", "computer", "gnu", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef57" + }, + "brand-deliveroo": { + "name": "brand-deliveroo", + "category": "Brand", + "tags": ["brand", "deliveroo", "food", "online", "delivery", "supplier", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d3" + }, + "brand-deno": { + "name": "brand-deno", + "category": "Brand", + "tags": ["brand", "deno", "software", "javascript", "programming", "typescript", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f24f" + }, + "brand-denodo": { + "name": "brand-denodo", + "category": "Brand", + "tags": ["brand", "denodo", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f610" + }, + "brand-deviantart": { + "name": "brand-deviantart", + "category": "Brand", + "tags": ["brand", "deviantart", "logo", "community", "internet", "works", "designer", "project", "presenting", "artist", "discussion", "website", "platform", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ecfb" + }, + "brand-dingtalk": { + "name": "brand-dingtalk", + "category": "Brand", + "tags": ["brand", "dingtalk", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5ea" + }, + "brand-discord": { + "name": "brand-discord", + "category": "Brand", + "tags": ["brand", "discord", "app", "application", "logo", "communication", "talks", "gamers", "freeware", "platform", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece3" + }, + "brand-disney": { + "name": "brand-disney", + "category": "Brand", + "tags": ["brand", "disney", "films", "castle", "serials", "magic", "fantasia", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20a" + }, + "brand-disqus": { + "name": "brand-disqus", + "category": "Brand", + "tags": ["brand", "disqus", "comment", "blog", "service", "website", "online", "platform", "social", "networking", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edc9" + }, + "brand-django": { + "name": "brand-django", + "category": "Brand", + "tags": ["brand", "django", "creation", "web", "application", "framework", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f349" + }, + "brand-docker": { + "name": "brand-docker", + "category": "Brand", + "tags": ["brand", "docker", "app", "development", "hub", "platform", "software", "developer", "programming", "programmer", "virtualization", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edca" + }, + "brand-doctrine": { + "name": "brand-doctrine", + "category": "Brand", + "tags": ["brand", "doctrine", "database", "programming", "library", "php", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6d" + }, + "brand-dolby-digital": { + "name": "brand-dolby-digital", + "category": "Brand", + "tags": ["brand", "dolby", "digital", "cinema", "technology", "sound", "home", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d4" + }, + "brand-douban": { + "name": "brand-douban", + "category": "Brand", + "tags": ["brand", "douban", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f5ff" + }, + "brand-dribbble": { + "name": "brand-dribbble", + "category": "Brand", + "tags": ["brand", "dribbble", "logo", "website", "community", "project", "platform", "self-promotion", "designer", "portfolio", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ec19" + }, + "brand-drops": { + "name": "brand-drops", + "category": "Brand", + "tags": ["brand", "drops", "education", "learning", "language", "word", "game", "design", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d5" + }, + "brand-drupal": { + "name": "brand-drupal", + "category": "Brand", + "tags": ["brand", "drupal", "software", "content", "management", "creation", "application", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f393" + }, + "brand-edge": { + "name": "brand-edge", + "category": "Brand", + "tags": ["brand", "edge", "browser", "internet", "web", "logo", "explorer", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ecfc" + }, + "brand-elastic": { + "name": "brand-elastic", + "category": "Brand", + "tags": ["brand", "elastic", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f611" + }, + "brand-ember": { + "name": "brand-ember", + "category": "Brand", + "tags": ["brand", "ember", "library", "javascript", "web", "app", "framework", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f497" + }, + "brand-envato": { + "name": "brand-envato", + "category": "Brand", + "tags": ["brand", "envato", "community", "creative", "resources", "tools", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f394" + }, + "brand-etsy": { + "name": "brand-etsy", + "category": "Brand", + "tags": ["brand", "etsy", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f654" + }, + "brand-evernote": { + "name": "brand-evernote", + "category": "Brand", + "tags": ["brand", "evernote", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f600" + }, + "brand-facebook": { + "name": "brand-facebook", + "category": "Brand", + "tags": ["brand", "facebook", "logo", "app", "application", "community", "social", "communication", "website", "user", "post", "images", "photos", "comment", "feedback", "fb", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ec1a" + }, + "brand-figma": { + "name": "brand-figma", + "category": "Brand", + "tags": ["brand", "figma", "logo", "editor", "graphic", "image", "implement", "prototyping", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec93" + }, + "brand-finder": { + "name": "brand-finder", + "category": "Brand", + "tags": ["brand", "finder", "software", "files", "manager", "macos", "osx", "programming", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f218" + }, + "brand-firebase": { + "name": "brand-firebase", + "category": "Brand", + "tags": ["brand", "firebase", "development", "coding", "programming", "mobile apps", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6e" + }, + "brand-firefox": { + "name": "brand-firefox", + "category": "Brand", + "tags": ["brand", "firefox", "browser", "internet", "web", "logo", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ecfd" + }, + "brand-flickr": { + "name": "brand-flickr", + "category": "Brand", + "tags": ["brand", "flickr", "logo", "website", "house", "facilitate", "sharing", "digital", "photos", "images", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ecfe" + }, + "brand-flightradar24": { + "name": "brand-flightradar24", + "category": "Brand", + "tags": ["brand", "flightradar24", "plane", "route", "fly", "height", "speed", "statistisc", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d6" + }, + "brand-flipboard": { + "name": "brand-flipboard", + "category": "Brand", + "tags": ["brand", "flipboard", "news", "newspapper", "social", "media", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20b" + }, + "brand-flutter": { + "name": "brand-flutter", + "category": "Brand", + "tags": ["brand", "flutter", "tools", "programmer", "creation", "aplication", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f395" + }, + "brand-fortnite": { + "name": "brand-fortnite", + "category": "Brand", + "tags": ["brand", "fortnite", "games", "online", "battle", "multiplayer", "gun", "weapon", "building", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f260" + }, + "brand-foursquare": { + "name": "brand-foursquare", + "category": "Brand", + "tags": ["brand", "foursquare", "logo", "website", "community", "social", "network", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ecff" + }, + "brand-framer": { + "name": "brand-framer", + "category": "Brand", + "tags": ["brand", "framer", "logo", "application", "app", "prototyping", "prototype", "animations", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec1b" + }, + "brand-funimation": { + "name": "brand-funimation", + "category": "Brand", + "tags": ["brand", "funimation", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f655" + }, + "brand-gatsby": { + "name": "brand-gatsby", + "category": "Brand", + "tags": ["brand", "gatsby", "framework", "webpage", "creation", "software", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f396" + }, + "brand-git": { + "name": "brand-git", + "category": "Brand", + "tags": ["brand", "git", "programming", "coding", "software", "perl", "boume shell", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef6f" + }, + "brand-github-copilot": { + "name": "brand-github-copilot", + "category": "Brand", + "tags": ["brand", "github", "copilot", "ai", "artificial", "intelligence", "autocomplete", "coding", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4a8" + }, + "brand-github": { + "name": "brand-github", + "category": "Brand", + "tags": ["brand", "github", "logo", "website", "hosting", "project", "programming", "software", "development", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ec1c" + }, + "brand-gitlab": { + "name": "brand-gitlab", + "category": "Brand", + "tags": ["brand", "gitlab", "logo", "website", "software", "code", "programming", "programmers", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec1d" + }, + "brand-gmail": { + "name": "brand-gmail", + "category": "Brand", + "tags": ["brand", "gmail", "google", "message", "mail", "communication", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa2" + }, + "brand-google-analytics": { + "name": "brand-google-analytics", + "category": "Brand", + "tags": ["brand", "google", "analytics", "advertising", "track", "website", "traffic", "e-commerce", "online", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edcb" + }, + "brand-google-big-query": { + "name": "brand-google-big-query", + "category": "Brand", + "tags": ["brand", "google", "big", "query", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f612" + }, + "brand-google-drive": { + "name": "brand-google-drive", + "category": "Brand", + "tags": ["brand", "google", "drive", "logo", "cloud", "disc", "documents", "sheet", "presentation", "file", "edit", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec1e" + }, + "brand-google-fit": { + "name": "brand-google-fit", + "category": "Brand", + "tags": ["brand", "google", "fit", "health", "tracking", "platform", "software", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f297" + }, + "brand-google-home": { + "name": "brand-google-home", + "category": "Brand", + "tags": ["brand", "google", "home", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f601" + }, + "brand-google-one": { + "name": "brand-google-one", + "category": "Brand", + "tags": ["brand", "google", "one", "data", "software", "storage", "cloud", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f232" + }, + "brand-google-photos": { + "name": "brand-google-photos", + "category": "Brand", + "tags": ["brand", "google", "photos", "gallery", "videos", "photography", "website", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20c" + }, + "brand-google-play": { + "name": "brand-google-play", + "category": "Brand", + "tags": ["brand", "google", "play", "logo", "application", "app", "shop", "store", "online", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed25" + }, + "brand-google-podcasts": { + "name": "brand-google-podcasts", + "category": "Brand", + "tags": ["brand", "google", "podcasts", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f656" + }, + "brand-google": { + "name": "brand-google", + "category": "Brand", + "tags": ["brand", "google", "logo", "enterprise", "browser", "internet", "web", "discover", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ec1f" + }, + "brand-grammarly": { + "name": "brand-grammarly", + "category": "Brand", + "tags": ["brand", "grammarly", "text", "editor", "detects", "mistakes", "grammar", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32b" + }, + "brand-graphql": { + "name": "brand-graphql", + "category": "Brand", + "tags": ["brand", "graphql", "software", "communication", "server", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32c" + }, + "brand-gravatar": { + "name": "brand-gravatar", + "category": "Brand", + "tags": ["brand", "gravatar", "avatar", "image", "face", "blog", "comment", "represent", "online", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edcc" + }, + "brand-grindr": { + "name": "brand-grindr", + "category": "Brand", + "tags": ["brand", "grindr", "app", "communication", "dating", "gay", "lgbt", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20d" + }, + "brand-guardian": { + "name": "brand-guardian", + "category": "Brand", + "tags": ["brand", "guardian", "news", "log", "british", "article", "blog", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4fb" + }, + "brand-gumroad": { + "name": "brand-gumroad", + "category": "Brand", + "tags": ["brand", "gumroad", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d6" + }, + "brand-hbo": { + "name": "brand-hbo", + "category": "Brand", + "tags": ["brand", "hbo", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f657" + }, + "brand-headlessui": { + "name": "brand-headlessui", + "category": "Brand", + "tags": ["brand", "headlessui", "tailwind", "css", "js", "javascript", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32d" + }, + "brand-hipchat": { + "name": "brand-hipchat", + "category": "Brand", + "tags": ["brand", "hipchat", "chat", "communicate", "communication", "talk", "discuss", "app", "collaborate", "collaboration", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edcd" + }, + "brand-html5": { + "name": "brand-html5", + "category": "Brand", + "tags": ["brand", "html5", "programming", "development", "web", "website", "technology", "markup", "language", "technology", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6c" + }, + "brand-inertia": { + "name": "brand-inertia", + "category": "Brand", + "tags": ["brand", "inertia", "create", "app", "online", "javascript", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34a" + }, + "brand-instagram": { + "name": "brand-instagram", + "category": "Brand", + "tags": ["brand", "instagram", "logo", "app", "application", "images", "photos", "videos", "post", "stories", "online", "community", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec20" + }, + "brand-intercom": { + "name": "brand-intercom", + "category": "Brand", + "tags": ["brand", "intercom", "chat", "communcation", "software", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1cf" + }, + "brand-javascript": { + "name": "brand-javascript", + "category": "Brand", + "tags": ["brand", "javascript", "js", "language", "programming", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef0c" + }, + "brand-kickstarter": { + "name": "brand-kickstarter", + "category": "Brand", + "tags": ["brand", "kickstarter", "crowdfunding", "platform", "project", "creative", "idea", "business", "launch", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edce" + }, + "brand-kotlin": { + "name": "brand-kotlin", + "category": "Brand", + "tags": ["brand", "kotlin", "programming", "language", "programmer", "development", "developer", "technology", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6d" + }, + "brand-laravel": { + "name": "brand-laravel", + "category": "Brand", + "tags": ["brand", "laravel", "framework", "software", "php", "modular", "application", "building", "system", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34b" + }, + "brand-lastfm": { + "name": "brand-lastfm", + "category": "Brand", + "tags": ["brand", "lastfm", "radio station", "website", "music", "media player", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f001" + }, + "brand-linkedin": { + "name": "brand-linkedin", + "category": "Brand", + "tags": ["brand", "linkedin", "logo", "website", "corporation", "work", "business", "internet", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8c" + }, + "brand-linktree": { + "name": "brand-linktree", + "category": "Brand", + "tags": ["brand", "linktree", "hyperlinks", "social media", "freemium service", "website", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e7" + }, + "brand-linqpad": { + "name": "brand-linqpad", + "category": "Brand", + "tags": ["brand", "linqpad", "framework", "programmers", "database", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f562" + }, + "brand-loom": { + "name": "brand-loom", + "category": "Brand", + "tags": ["brand", "loom", "video", "messages", "osx", "record", "screen", "camera", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef70" + }, + "brand-mailgun": { + "name": "brand-mailgun", + "category": "Brand", + "tags": ["brand", "mailgun", "delivery", "service", "tracking", "pickup", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32e" + }, + "brand-mantine": { + "name": "brand-mantine", + "category": "Brand", + "tags": ["brand", "mantine", "creation", "web", "application", "development", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f32f" + }, + "brand-mastercard": { + "name": "brand-mastercard", + "category": "Brand", + "tags": ["brand", "mastercard", "payment", "money", "debit", "finance", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef49" + }, + "brand-mastodon": { + "name": "brand-mastodon", + "category": "Brand", + "tags": ["brand", "mastodon", "web", "app", "social", "nodes", "network", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f250" + }, + "brand-matrix": { + "name": "brand-matrix", + "category": "Brand", + "tags": ["brand", "matrix", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5eb" + }, + "brand-mcdonalds": { + "name": "brand-mcdonalds", + "category": "Brand", + "tags": ["brand", "mcdonalds", "food", "cheeseburger", "hamburger", "fries", "fastfood", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f251" + }, + "brand-medium": { + "name": "brand-medium", + "category": "Brand", + "tags": ["brand", "medium", "logo", "website", "brand", "wordmark", "design", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec70" + }, + "brand-mercedes": { + "name": "brand-mercedes", + "category": "Brand", + "tags": ["brand", "mercedes", "car", "racing", "f1", "bus", "van", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f072" + }, + "brand-messenger": { + "name": "brand-messenger", + "category": "Brand", + "tags": ["brand", "messenger", "logo", "app", "application", "communication", "text", "messages", "communicator", "photos", "images", "videos", "giphy", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec71" + }, + "brand-meta": { + "name": "brand-meta", + "category": "Brand", + "tags": ["brand", "meta", "social media", "facebook", "fb", "instagram", "messegner", "giphy", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb0" + }, + "brand-miniprogram": { + "name": "brand-miniprogram", + "category": "Brand", + "tags": ["brand", "miniprogram", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f602" + }, + "brand-mixpanel": { + "name": "brand-mixpanel", + "category": "Brand", + "tags": ["brand", "mixpanel", "analytics", "buisness", "software", "application", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f397" + }, + "brand-monday": { + "name": "brand-monday", + "category": "Brand", + "tags": ["brand", "monday", "software", "application development", "cloud base platform", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f219" + }, + "brand-mongodb": { + "name": "brand-mongodb", + "category": "Brand", + "tags": ["brand", "mongodb", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f613" + }, + "brand-my-oppo": { + "name": "brand-my-oppo", + "category": "Brand", + "tags": ["brand", "my", "oppo", "mobile", "app", "services", "membership", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d7" + }, + "brand-mysql": { + "name": "brand-mysql", + "category": "Brand", + "tags": ["brand", "mysql", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f614" + }, + "brand-national-geographic": { + "name": "brand-national-geographic", + "category": "Brand", + "tags": ["brand", "national", "geographic", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f603" + }, + "brand-nem": { + "name": "brand-nem", + "category": "Brand", + "tags": ["brand", "nem", "coin", "crypto", "cryptocurrency", "digital", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a1" + }, + "brand-netbeans": { + "name": "brand-netbeans", + "category": "Brand", + "tags": ["brand", "netbeans", "software", "programming", "tools", "java", "mobile devices", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef71" + }, + "brand-netease-music": { + "name": "brand-netease-music", + "category": "Brand", + "tags": ["brand", "netease", "music", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f604" + }, + "brand-netflix": { + "name": "brand-netflix", + "category": "Brand", + "tags": ["brand", "netflix", "series", "tv", "episode", "movie", "film", "media", "watch", "app", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edcf" + }, + "brand-nexo": { + "name": "brand-nexo", + "category": "Brand", + "tags": ["brand", "nexo", "coin", "crypto", "cryptocurrency", "digital", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a2" + }, + "brand-nextcloud": { + "name": "brand-nextcloud", + "category": "Brand", + "tags": ["brand", "nextcloud", "software", "technology", "file", "hosting", "php", "javascript", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d8" + }, + "brand-nextjs": { + "name": "brand-nextjs", + "category": "Brand", + "tags": ["brand", "nextjs", "website creation", "web platform", "software", "web application functions", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0dd" + }, + "brand-nord-vpn": { + "name": "brand-nord-vpn", + "category": "Brand", + "tags": ["brand", "nord", "vpn", "protects", "device", "software", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f37f" + }, + "brand-notion": { + "name": "brand-notion", + "category": "Brand", + "tags": ["brand", "notion", "software", "note taking", "project management", "database", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef7b" + }, + "brand-npm": { + "name": "brand-npm", + "category": "Brand", + "tags": ["brand", "npm", "package", "manager", "node.js", "javascript", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f569" + }, + "brand-nuxt": { + "name": "brand-nuxt", + "category": "Brand", + "tags": ["brand", "nuxt", "software", "app development", "library", "javascript", "js", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0de" + }, + "brand-nytimes": { + "name": "brand-nytimes", + "category": "Brand", + "tags": ["brand", "nytimes", "magazines", "news", "newspapper", "website", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef8d" + }, + "brand-office": { + "name": "brand-office", + "category": "Brand", + "tags": ["brand", "office", "text", "editor", "software", "word", "excel", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f398" + }, + "brand-ok-ru": { + "name": "brand-ok-ru", + "category": "Brand", + "tags": ["brand", "ok", "ru", "socialmedia", "message", "posts", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f399" + }, + "brand-onedrive": { + "name": "brand-onedrive", + "category": "Brand", + "tags": ["brand", "onedrive", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d7" + }, + "brand-onlyfans": { + "name": "brand-onlyfans", + "category": "Brand", + "tags": ["brand", "onlyfans", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f605" + }, + "brand-open-source": { + "name": "brand-open-source", + "category": "Brand", + "tags": ["brand", "open", "source", "software", "code", "developer", "public", "licence", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd0" + }, + "brand-openvpn": { + "name": "brand-openvpn", + "category": "Brand", + "tags": ["brand", "openvpn", "software", "creating", "secure", "connection", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f39a" + }, + "brand-opera": { + "name": "brand-opera", + "category": "Brand", + "tags": ["brand", "opera", "logo", "browser", "internet", "free", "program", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec21" + }, + "brand-pagekit": { + "name": "brand-pagekit", + "category": "Brand", + "tags": ["brand", "pagekit", "content", "management", "system", "website", "component", "modular", "technology", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd1" + }, + "brand-patreon": { + "name": "brand-patreon", + "category": "Brand", + "tags": ["brand", "patreon", "artist", "software", "creator", "patron", "art", "subscription", "income", "earn", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd2" + }, + "brand-paypal": { + "name": "brand-paypal", + "category": "Brand", + "tags": ["brand", "paypal", "logo", "enterprise", "service", "payment", "internet", "businessman", "consumer", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec22" + }, + "brand-paypay": { + "name": "brand-paypay", + "category": "Brand", + "tags": ["brand", "paypay", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5ec" + }, + "brand-peanut": { + "name": "brand-peanut", + "category": "Brand", + "tags": ["brand", "peanut", "social", "app", "mobile", "women", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f39b" + }, + "brand-pepsi": { + "name": "brand-pepsi", + "category": "Brand", + "tags": ["brand", "pepsi", "food", "cola", "coke", "drink", "bottle", "carbonated", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f261" + }, + "brand-php": { + "name": "brand-php", + "category": "Brand", + "tags": ["brand", "php", "programming", "coding", "script", "format", "file", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef72" + }, + "brand-picsart": { + "name": "brand-picsart", + "category": "Brand", + "tags": ["brand", "picsart", "photo", "photography", "software", "video", "editing", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4d9" + }, + "brand-pinterest": { + "name": "brand-pinterest", + "category": "Brand", + "tags": ["brand", "pinterest", "logo", "website", "images", "materials", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8d" + }, + "brand-pocket": { + "name": "brand-pocket", + "category": "Brand", + "tags": ["brand", "pocket", "logo", "software", "application", "app", "mobile", "device", "gathering", "storage", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed00" + }, + "brand-polymer": { + "name": "brand-polymer", + "category": "Brand", + "tags": ["brand", "polymer", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f498" + }, + "brand-powershell": { + "name": "brand-powershell", + "category": "Brand", + "tags": ["brand", "powershell", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5ed" + }, + "brand-prisma": { + "name": "brand-prisma", + "category": "Brand", + "tags": ["brand", "prisma", "software", "open", "source", "tools", "developer", "platform", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f499" + }, + "brand-producthunt": { + "name": "brand-producthunt", + "category": "Brand", + "tags": ["brand", "producthunt", "technology", "product", "share", "discover", "new", "novelty", "web", "geek", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd3" + }, + "brand-pushbullet": { + "name": "brand-pushbullet", + "category": "Brand", + "tags": ["brand", "pushbullet", "data", "transfer", "tool", "software", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f330" + }, + "brand-pushover": { + "name": "brand-pushover", + "category": "Brand", + "tags": ["brand", "pushover", "notifications", "push", "cloud based", "mobile", "app", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20e" + }, + "brand-python": { + "name": "brand-python", + "category": "Brand", + "tags": ["brand", "python", "logo", "language", "programming", "source", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed01" + }, + "brand-qq": { + "name": "brand-qq", + "category": "Brand", + "tags": ["brand", "qq", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f606" + }, + "brand-react-native": { + "name": "brand-react-native", + "category": "Brand", + "tags": ["brand", "react", "native", "programming", "tools", "app", "javascript", "js", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef73" + }, + "brand-react": { + "name": "brand-react", + "category": "Brand", + "tags": ["brand", "react", "library", "javascript", "creation", "interface", "software", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34c" + }, + "brand-reason": { + "name": "brand-reason", + "category": "Brand", + "tags": ["brand", "reason", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49a" + }, + "brand-reddit": { + "name": "brand-reddit", + "category": "Brand", + "tags": ["brand", "reddit", "logo", "website", "information", "link", "internet", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8e" + }, + "brand-redhat": { + "name": "brand-redhat", + "category": "Brand", + "tags": ["brand", "redhat", "software", "entrepreneurship", "creation", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f331" + }, + "brand-redux": { + "name": "brand-redux", + "category": "Brand", + "tags": ["brand", "redux", "library", "javascript", "menagment", "centralization", "application", "status", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a8" + }, + "brand-revolut": { + "name": "brand-revolut", + "category": "Brand", + "tags": ["brand", "revolut", "bank", "money", "finance", "change", "currency", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4da" + }, + "brand-safari": { + "name": "brand-safari", + "category": "Brand", + "tags": ["brand", "safari", "logo", "browser", "internet", "iphone", "ipad", "MacBook", "compass", "apple", "discover", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec23" + }, + "brand-samsungpass": { + "name": "brand-samsungpass", + "category": "Brand", + "tags": ["brand", "samsungpass", "management", "storage", "personal", "information", "id", "password", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4db" + }, + "brand-sass": { + "name": "brand-sass", + "category": "Brand", + "tags": ["brand", "sass", "technology", "preprocessor", "script", "language", "programming", "css", "syntax", "compile", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd4" + }, + "brand-sentry": { + "name": "brand-sentry", + "category": "Brand", + "tags": ["brand", "sentry", "technology", "application", "monitoring", "error", "tracking", "software", "cloud", "development", "app", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd5" + }, + "brand-sharik": { + "name": "brand-sharik", + "category": "Brand", + "tags": ["brand", "sharik", "file", "sharing", "wifi", "mobile", "hotspot", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4dc" + }, + "brand-shazam": { + "name": "brand-shazam", + "category": "Brand", + "tags": ["brand", "shazam", "app", "technology", "device", "music", "sound", "play", "discover", "artist", "recognize", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd6" + }, + "brand-shopee": { + "name": "brand-shopee", + "category": "Brand", + "tags": ["brand", "shopee", "shopping", "online", "media", "shop", "ecommerce", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f252" + }, + "brand-sketch": { + "name": "brand-sketch", + "category": "Brand", + "tags": ["brand", "sketch", "logo", "editor", "edit", "graphic", "apple", "commercial", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec24" + }, + "brand-skype": { + "name": "brand-skype", + "category": "Brand", + "tags": ["brand", "skype", "logo", "application", "app", "communication", "talks", "call", "video", "internet", "camera", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed02" + }, + "brand-slack": { + "name": "brand-slack", + "category": "Brand", + "tags": ["brand", "slack", "logo", "free", "internet", "service", "stuff", "electron", "app", "application", "communicator", "textual", "audio", "multimedia", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec72" + }, + "brand-snapchat": { + "name": "brand-snapchat", + "category": "Brand", + "tags": ["brand", "snapchat", "logo", "app", "application", "photos", "sending", "images", "mobile", "video", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec25" + }, + "brand-snapseed": { + "name": "brand-snapseed", + "category": "Brand", + "tags": ["brand", "snapseed", "edit", "photo", "image", "editor", "google", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f253" + }, + "brand-snowflake": { + "name": "brand-snowflake", + "category": "Brand", + "tags": ["brand", "snowflake", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f615" + }, + "brand-socket-io": { + "name": "brand-socket-io", + "category": "Brand", + "tags": ["brand", "socket", "io", "library", "javascript", "web", "app", "communication", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49b" + }, + "brand-solidjs": { + "name": "brand-solidjs", + "category": "Brand", + "tags": ["brand", "solidjs", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5ee" + }, + "brand-soundcloud": { + "name": "brand-soundcloud", + "category": "Brand", + "tags": ["brand", "soundcloud", "technology", "audio", "distribution", "platform", "music", "upload", "promote", "streaming", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6e" + }, + "brand-spacehey": { + "name": "brand-spacehey", + "category": "Brand", + "tags": ["brand", "spacehey", "internet", "network", "social", "website", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4fc" + }, + "brand-spotify": { + "name": "brand-spotify", + "category": "Brand", + "tags": ["brand", "spotify", "logo", "app", "application", "platform", "music", "listening", "streaming", "podcast", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed03" + }, + "brand-stackoverflow": { + "name": "brand-stackoverflow", + "category": "Brand", + "tags": ["brand", "stackoverflow", "social", "media", "programming", "website", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef58" + }, + "brand-stackshare": { + "name": "brand-stackshare", + "category": "Brand", + "tags": ["brand", "stackshare", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f607" + }, + "brand-steam": { + "name": "brand-steam", + "category": "Brand", + "tags": ["brand", "steam", "technology", "video", "game", "digital", "distribution", "software", "player", "pc", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed6f" + }, + "brand-storybook": { + "name": "brand-storybook", + "category": "Brand", + "tags": ["brand", "storybook", "tool", "creation", "interface", "application", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f332" + }, + "brand-storytel": { + "name": "brand-storytel", + "category": "Brand", + "tags": ["brand", "storytel", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f608" + }, + "brand-strava": { + "name": "brand-strava", + "category": "Brand", + "tags": ["brand", "strava", "run", "ride", "hike", "activity", "gps", "sport", "app", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f254" + }, + "brand-stripe": { + "name": "brand-stripe", + "category": "Brand", + "tags": ["brand", "stripe", "technology", "payment", "processing", "money", "subscription", "finance", "financial", "software", "e-commerce", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd7" + }, + "brand-sublime-text": { + "name": "brand-sublime-text", + "category": "Brand", + "tags": ["brand", "sublime", "text", "software", "text", "editing", "programming", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef74" + }, + "brand-superhuman": { + "name": "brand-superhuman", + "category": "Brand", + "tags": ["brand", "superhuman", "software", "email", "productivity", "tools", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f50c" + }, + "brand-supernova": { + "name": "brand-supernova", + "category": "Brand", + "tags": ["brand", "supernova", "editor", "developer", "tools", "technology", "design", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49c" + }, + "brand-surfshark": { + "name": "brand-surfshark", + "category": "Brand", + "tags": ["brand", "surfshark", "vpn", "security", "ip", "network", "private", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f255" + }, + "brand-svelte": { + "name": "brand-svelte", + "category": "Brand", + "tags": ["brand", "svelte", "programming", "coding", "interface", "web app", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0df" + }, + "brand-symfony": { + "name": "brand-symfony", + "category": "Brand", + "tags": ["brand", "symfony", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f616" + }, + "brand-tabler": { + "name": "brand-tabler", + "category": "Brand", + "tags": ["brand", "tabler", "logo", "website", "dashboard", "download", "open-source", "ui", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec8f" + }, + "brand-tailwind": { + "name": "brand-tailwind", + "category": "Brand", + "tags": ["brand", "tailwind", "logo", "firm", "website", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca1" + }, + "brand-taobao": { + "name": "brand-taobao", + "category": "Brand", + "tags": ["brand", "taobao", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5ef" + }, + "brand-ted": { + "name": "brand-ted", + "category": "Brand", + "tags": ["brand", "ted", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f658" + }, + "brand-telegram": { + "name": "brand-telegram", + "category": "Brand", + "tags": ["brand", "telegram", "logo", "app", "application", "communicator", "internet", "cloud", "messages", "text", "images", "photos", "videos", "record", "file", "send", "icon", "stroke", "outline"], + "version": "1.9", + "unicode": "ec26" + }, + "brand-tether": { + "name": "brand-tether", + "category": "Brand", + "tags": ["brand", "tether", "coin", "crypto", "cryptocurrency", "digital", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a3" + }, + "brand-threejs": { + "name": "brand-threejs", + "category": "Brand", + "tags": ["brand", "threejs", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f0" + }, + "brand-tidal": { + "name": "brand-tidal", + "category": "Brand", + "tags": ["brand", "tidal", "technology", "subscription", "music", "podcast", "video", "streaming", "playlist", "party", "track", "song", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed70" + }, + "brand-tiktok": { + "name": "brand-tiktok", + "category": "Brand", + "tags": ["brand", "tiktok", "logo", "app", "application", "mobile", "video", "music", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec73" + }, + "brand-tinder": { + "name": "brand-tinder", + "category": "Brand", + "tags": ["brand", "tinder", "date", "dating", "app", "love", "affection", "affair", "couple", "technology", "networking", "swipe", "match", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed71" + }, + "brand-topbuzz": { + "name": "brand-topbuzz", + "category": "Brand", + "tags": ["brand", "topbuzz", "video", "gif", "articles", "news", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f50d" + }, + "brand-torchain": { + "name": "brand-torchain", + "category": "Brand", + "tags": ["brand", "torchain", "coin", "crypto", "cryptocurrency", "digital", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a4" + }, + "brand-toyota": { + "name": "brand-toyota", + "category": "Brand", + "tags": ["brand", "toyota", "car", "transport", "transportation", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f262" + }, + "brand-trello": { + "name": "brand-trello", + "category": "Brand", + "tags": ["brand", "trello", "visual", "tool", "board", "kanban", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f39d" + }, + "brand-tripadvisor": { + "name": "brand-tripadvisor", + "category": "Brand", + "tags": ["brand", "tripadvisor", "travel", "trip", "tourism", "website", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f002" + }, + "brand-tumblr": { + "name": "brand-tumblr", + "category": "Brand", + "tags": ["brand", "tumblr", "logo", "website", "platform", "blog", "community", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed04" + }, + "brand-twilio": { + "name": "brand-twilio", + "category": "Brand", + "tags": ["brand", "twilio", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f617" + }, + "brand-twitch": { + "name": "brand-twitch", + "category": "Brand", + "tags": ["brand", "twitch", "logo", "platform", "streaming", "streamers", "videos", "films", "chat", "subs", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed05" + }, + "brand-twitter": { + "name": "brand-twitter", + "category": "Brand", + "tags": ["brand", "twitter", "logo", "app", "application", "community", "social", "communication", "website", "user", "post", "images", "photos", "comment", "feedback", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ec27" + }, + "brand-typescript": { + "name": "brand-typescript", + "category": "Brand", + "tags": ["brand", "typescript", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f1" + }, + "brand-uber": { + "name": "brand-uber", + "category": "Brand", + "tags": ["brand", "uber", "taxi", "transport", "car", "food", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef75" + }, + "brand-ubuntu": { + "name": "brand-ubuntu", + "category": "Brand", + "tags": ["brand", "ubuntu", "os", "operating", "system", "linux", "gnu", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef59" + }, + "brand-unity": { + "name": "brand-unity", + "category": "Brand", + "tags": ["brand", "unity", "engine", "creation", "3d", "2d", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49d" + }, + "brand-unsplash": { + "name": "brand-unsplash", + "category": "Brand", + "tags": ["brand", "unsplash", "picture", "photo", "photography", "search", "image", "stock", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd8" + }, + "brand-upwork": { + "name": "brand-upwork", + "category": "Brand", + "tags": ["brand", "upwork", "freelancer", "software", "finance", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f39e" + }, + "brand-valorant": { + "name": "brand-valorant", + "category": "Brand", + "tags": ["brand", "valorant", "game", "fps", "videogame", "shooter", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f39f" + }, + "brand-vercel": { + "name": "brand-vercel", + "category": "Brand", + "tags": ["brand", "vercel", "develop", "preview", "programmers", "build", "publish", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef24" + }, + "brand-vimeo": { + "name": "brand-vimeo", + "category": "Brand", + "tags": ["brand", "vimeo", "logo", "website", "sharing", "watching", "video", "users", "icon", "stroke", "outline"], + "version": "1.23", + "unicode": "ed06" + }, + "brand-vinted": { + "name": "brand-vinted", + "category": "Brand", + "tags": ["brand", "vinted", "website", "clothes", "trading", "exchange", "sale", "shopping", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f20f" + }, + "brand-visa": { + "name": "brand-visa", + "category": "Brand", + "tags": ["brand", "visa", "payment", "card", "method", "pay", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f380" + }, + "brand-visual-studio": { + "name": "brand-visual-studio", + "category": "Brand", + "tags": ["brand", "visual", "studio", "software", "microsoft", "programming", "developers", "coding", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef76" + }, + "brand-vite": { + "name": "brand-vite", + "category": "Brand", + "tags": ["brand", "vite", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f2" + }, + "brand-vivaldi": { + "name": "brand-vivaldi", + "category": "Brand", + "tags": ["brand", "vivaldi", "browser", "internet", "web", "free", "program", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f210" + }, + "brand-vk": { + "name": "brand-vk", + "category": "Brand", + "tags": ["brand", "vk", "technology", "social", "media", "networking", "service", "russian", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed72" + }, + "brand-volkswagen": { + "name": "brand-volkswagen", + "category": "Brand", + "tags": ["brand", "volkswagen", "car", "vehicle", "transportation", "van", "traveling", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f50e" + }, + "brand-vsco": { + "name": "brand-vsco", + "category": "Brand", + "tags": ["brand", "vsco", "photography", "image", "application", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f334" + }, + "brand-vscode": { + "name": "brand-vscode", + "category": "Brand", + "tags": ["brand", "vscode", "code", "editor", "software", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f3a0" + }, + "brand-vue": { + "name": "brand-vue", + "category": "Brand", + "tags": ["brand", "vue", "programming", "coding", "javascript", "document", "software", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e0" + }, + "brand-walmart": { + "name": "brand-walmart", + "category": "Brand", + "tags": ["brand", "walmart", "shop", "supermarket", "food", "drinking", "groceries", "shopping", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f211" + }, + "brand-waze": { + "name": "brand-waze", + "category": "Brand", + "tags": ["brand", "waze", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d8" + }, + "brand-webflow": { + "name": "brand-webflow", + "category": "Brand", + "tags": ["brand", "webflow", "web", "website", "creation", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d2" + }, + "brand-wechat": { + "name": "brand-wechat", + "category": "Brand", + "tags": ["brand", "wechat", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f3" + }, + "brand-weibo": { + "name": "brand-weibo", + "category": "Brand", + "tags": ["brand", "weibo", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f609" + }, + "brand-whatsapp": { + "name": "brand-whatsapp", + "category": "Brand", + "tags": ["brand", "whatsapp", "logo", "app", "application", "communication", "text", "messages", "communicator", "photos", "images", "videos", "giphy", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec74" + }, + "brand-windows": { + "name": "brand-windows", + "category": "Brand", + "tags": ["brand", "windows", "logo", "system", "os", "computer", "microsoft", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecd8" + }, + "brand-windy": { + "name": "brand-windy", + "category": "Brand", + "tags": ["brand", "windy", "weather", "sun", "cold", "hot", "rain", "forecast", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4dd" + }, + "brand-wish": { + "name": "brand-wish", + "category": "Brand", + "tags": ["brand", "wish", "shopping", "online", "tools", "gadgets", "toys", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f212" + }, + "brand-wix": { + "name": "brand-wix", + "category": "Brand", + "tags": ["brand", "wix", "logo", "maker", "web", "website", "icon", "stroke", "outline"], + "version": "1.92", + "unicode": "f3a1" + }, + "brand-wordpress": { + "name": "brand-wordpress", + "category": "Brand", + "tags": ["brand", "wordpress", "logotype", "web", "website", "glyph", "social", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d3" + }, + "brand-xbox": { + "name": "brand-xbox", + "category": "Brand", + "tags": ["brand", "xbox", "game", "console", "videogame", "controller", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f298" + }, + "brand-xing": { + "name": "brand-xing", + "category": "Brand", + "tags": ["brand", "xing", "web", "media", "network", "site", "social", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21a" + }, + "brand-yahoo": { + "name": "brand-yahoo", + "category": "Brand", + "tags": ["brand", "yahoo", "web", "services", "technology", "inbox", "mail", "web", "news", "search", "icon", "stroke", "outline"], + "version": "1.32", + "unicode": "ed73" + }, + "brand-yatse": { + "name": "brand-yatse", + "category": "Brand", + "tags": ["brand", "yatse", "multimedia", "technology", "pilot", "software", "android", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f213" + }, + "brand-ycombinator": { + "name": "brand-ycombinator", + "category": "Brand", + "tags": ["brand", "ycombinator", "startup", "accelerator", "seed", "money", "launch", "company", "business", "invest", "funding", "icon", "stroke", "outline"], + "version": "1.36", + "unicode": "edd9" + }, + "brand-youtube-kids": { + "name": "brand-youtube-kids", + "category": "Brand", + "tags": ["brand", "youtube", "kids", "video", "program", "young", "children", "maker", "stories", "youtuber", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f214" + }, + "brand-youtube": { + "name": "brand-youtube", + "category": "Brand", + "tags": ["brand", "youtube", "logo", "platform", "channel", "film", "video", "youtuber", "maker", "comments", "stream", "streamer", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec90" + }, + "brand-zalando": { + "name": "brand-zalando", + "category": "Brand", + "tags": ["brand", "zalando", "footwear", "shoes", "clotches", "app", "online", "shop", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49e" + }, + "brand-zapier": { + "name": "brand-zapier", + "category": "Brand", + "tags": ["brand", "zapier", "automated", "create", "app", "buissnes", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f49f" + }, + "brand-zeit": { + "name": "brand-zeit", + "category": "Brand", + "tags": ["brand", "zeit", "consulting", "software", "icon", "stroke", "outline"], + "version": "1.86", + "unicode": "f335" + }, + "brand-zhihu": { + "name": "brand-zhihu", + "category": "Brand", + "tags": ["brand", "zhihu", "icon", "stroke", "outline"], + "version": "1.114", + "unicode": "f60a" + }, + "brand-zoom": { + "name": "brand-zoom", + "category": "Brand", + "tags": ["brand", "zoom", "program", "video", "chat", "meetings", "online", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f215" + }, + "brand-zulip": { + "name": "brand-zulip", + "category": "Brand", + "tags": ["brand", "zulip", "chat", "software", "phyton", "javascript", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4de" + }, + "brand-zwift": { + "name": "brand-zwift", + "category": "Brand", + "tags": ["brand", "zwift", "technology", "bike", "sport", "movement", "game", "icon", "stroke", "outline"], + "version": "1.71", + "unicode": "f216" + }, + "bread-off": { + "name": "bread-off", + "category": "Food", + "tags": ["bread", "off", "food", "breakfast", "sandwich", "toast", "baking", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3cb" + }, + "bread": { + "name": "bread", + "category": "Food", + "tags": ["bread", "food", "breakfast", "sandwich", "toast", "baking", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa3" + }, + "briefcase-off": { + "name": "briefcase-off", + "category": "", + "tags": ["briefcase", "off", "bag", "baggage", "folder", "carrier", "documents", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3cc" + }, + "briefcase": { + "name": "briefcase", + "category": "", + "tags": ["briefcase", "bag", "baggage", "folder", "carrier", "documents", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea46" + }, + "brightness-2": { + "name": "brightness-2", + "category": "Photography", + "tags": ["brightness", "2", "light", "screen", "level", "daytime", "sun", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee19" + }, + "brightness-down": { + "name": "brightness-down", + "category": "Photography", + "tags": ["brightness", "down", "dark", "darker", "screen", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7d" + }, + "brightness-half": { + "name": "brightness-half", + "category": "Photography", + "tags": ["brightness", "half", "light", "screen", "level", "daytime", "sun", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee1a" + }, + "brightness-off": { + "name": "brightness-off", + "category": "Photography", + "tags": ["brightness", "off", "light", "dark", "screen", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3cd" + }, + "brightness-up": { + "name": "brightness-up", + "category": "Photography", + "tags": ["brightness", "up", "light", "screen", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7e" + }, + "brightness": { + "name": "brightness", + "category": "Photography", + "tags": ["brightness", "light", "dark", "screen", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb7f" + }, + "broadcast-off": { + "name": "broadcast-off", + "category": "Devices", + "tags": ["broadcast", "off", "communication", "tv", "signal", "media", "sound", "connection", "network", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e8" + }, + "broadcast": { + "name": "broadcast", + "category": "Devices", + "tags": ["broadcast", "communication", "tv", "signal", "media", "sound", "connection", "network", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1e9" + }, + "browser-check": { + "name": "browser-check", + "category": "Devices", + "tags": ["browser", "check", "internet", "web", "display", "done", "tick", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd6" + }, + "browser-off": { + "name": "browser-off", + "category": "Devices", + "tags": ["browser", "off", "internet", "web", "display", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c1" + }, + "browser-plus": { + "name": "browser-plus", + "category": "Devices", + "tags": ["browser", "plus", "internet", "web", "display", "new", "add", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd7" + }, + "browser-x": { + "name": "browser-x", + "category": "Devices", + "tags": ["browser", "x", "internet", "web", "display", "close", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd8" + }, + "browser": { + "name": "browser", + "category": "Devices", + "tags": ["browser", "internet", "web", "display", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebb7" + }, + "brush-off": { + "name": "brush-off", + "category": "Design", + "tags": ["brush", "off", "paint", "art", "picture", "paintbrush", "painter", "theme", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c2" + }, + "brush": { + "name": "brush", + "category": "Design", + "tags": ["brush", "paint", "art", "picture", "paintbrush", "painter", "theme", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebb8" + }, + "bucket-droplet": { + "name": "bucket-droplet", + "category": "Design", + "tags": ["bucket", "droplet", "water", "liquid", "drop", "tool", "fill", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56a" + }, + "bucket-off": { + "name": "bucket-off", + "category": "Design", + "tags": ["bucket", "off", "collection", "container", "water", "liquid", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f103" + }, + "bucket": { + "name": "bucket", + "category": "Design", + "tags": ["bucket", "collection", "container", "water", "liquid", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea47" + }, + "bug-off": { + "name": "bug-off", + "category": "Nature", + "tags": ["bug", "off", "germ", "insect", "error", "nature", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c3" + }, + "bug": { + "name": "bug", + "category": "Nature", + "tags": ["bug", "germ", "insect", "error", "nature", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea48" + }, + "building-arch": { + "name": "building-arch", + "category": "Buildings", + "tags": ["building", "arch", "arc", "curve", "dome", "monument", "history", "architecture", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea49" + }, + "building-bank": { + "name": "building-bank", + "category": "Buildings", + "tags": ["building", "bank", "architecture", "city", "urban", "construction", "money", "credit", "loan", "workplace", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe2" + }, + "building-bridge-2": { + "name": "building-bridge-2", + "category": "Buildings", + "tags": ["building", "bridge", "2", "architecture", "urban", "river", "overpass", "city", "countryside", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4a" + }, + "building-bridge": { + "name": "building-bridge", + "category": "Buildings", + "tags": ["building", "bridge", "architecture", "urban", "river", "overpass", "city", "countryside", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4b" + }, + "building-broadcast-tower": { + "name": "building-broadcast-tower", + "category": "Buildings", + "tags": ["building", "broadcast", "tower", "communication", "internet", "signal", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4be" + }, + "building-carousel": { + "name": "building-carousel", + "category": "Buildings", + "tags": ["building", "carousel", "amusement", "park", "fair", "merry-go-round", "fun", "entertaianment", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed87" + }, + "building-castle": { + "name": "building-castle", + "category": "Buildings", + "tags": ["building", "castle", "king", "queen", "royal", "architecture", "medieval", "middle", "ages", "nobility", "tower", "fortress", "fort", "fortification", "princess", "prince", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed88" + }, + "building-church": { + "name": "building-church", + "category": "Buildings", + "tags": ["building", "church", "religion", "chapel", "sanctuary", "temple", "cathedral", "pray", "prayer", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4c" + }, + "building-circus": { + "name": "building-circus", + "category": "Buildings", + "tags": ["building", "circus", "tent", "show", "carnival", "clown", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4bf" + }, + "building-community": { + "name": "building-community", + "category": "Buildings", + "tags": ["building", "community", "place", "skyscraper", "district neighborhood", "area", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebf6" + }, + "building-cottage": { + "name": "building-cottage", + "category": "Buildings", + "tags": ["building", "cottage", "small", "house", "countryside", "live", "farm", "rural", "outskirts", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee1b" + }, + "building-estate": { + "name": "building-estate", + "category": "Buildings", + "tags": ["building", "estate", "office", "property", "work", "architecture", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a5" + }, + "building-factory-2": { + "name": "building-factory-2", + "category": "Buildings", + "tags": ["building", "factory", "2", "goods", "manufature", "machine", "trade", "produce", "product", "worker", "industry", "industrial", "site", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f082" + }, + "building-factory": { + "name": "building-factory", + "category": "Buildings", + "tags": ["building", "factory", "goods", "manufature", "machine", "trade", "produce", "product", "worker", "industry", "industrial", "site", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee1c" + }, + "building-fortress": { + "name": "building-fortress", + "category": "Buildings", + "tags": ["building", "fortress", "military", "town", "defend", "attack", "stronghold", "protect", "protection", "medieval", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed89" + }, + "building-hospital": { + "name": "building-hospital", + "category": "Buildings", + "tags": ["building", "hospital", "doctor", "sickness", "illness", "nurse", "medication", "emergency", "treat", "surgery", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4d" + }, + "building-lighthouse": { + "name": "building-lighthouse", + "category": "Buildings", + "tags": ["building", "lighthouse", "light", "sea", "tower", "beacon", "flash", "ship", "guide", "lightship", "leading", "watchtower", "signal", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed8a" + }, + "building-monument": { + "name": "building-monument", + "category": "Buildings", + "tags": ["building", "monument", "history", "memorial", "commemorative", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed26" + }, + "building-pavilion": { + "name": "building-pavilion", + "category": "Buildings", + "tags": ["building", "pavilion", "place", "party", "residence", "ornamentation", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebf7" + }, + "building-skyscraper": { + "name": "building-skyscraper", + "category": "Buildings", + "tags": ["building", "skyscraper", "city", "urban", "office", "workplace", "corporation", "hotel", "apartments", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec39" + }, + "building-stadium": { + "name": "building-stadium", + "category": "Buildings", + "tags": ["building", "stadium", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f641" + }, + "building-store": { + "name": "building-store", + "category": "Buildings", + "tags": ["building", "store", "shopping", "shop", "supermarket", "market", "products", "retail", "buy", "sell", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4e" + }, + "building-tunnel": { + "name": "building-tunnel", + "category": "Buildings", + "tags": ["building", "tunnel", "train", "road", "underground", "subway", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a6" + }, + "building-warehouse": { + "name": "building-warehouse", + "category": "Buildings", + "tags": ["building", "warehouse", "store", "inventory", "stuff", "things", "machinery", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe3" + }, + "building-wind-turbine": { + "name": "building-wind-turbine", + "category": "Buildings", + "tags": ["building", "wind", "turbine", "power", "ecology", "electricy", "energy", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c0" + }, + "building": { + "name": "building", + "category": "Buildings", + "tags": ["building", "flat", "office", "city", "urban", "scyscraper", "architecture", "construction", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea4f" + }, + "bulb-filled": { + "name": "bulb-filled", + "category": "Filled", + "tags": ["bulb", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66a" + }, + "bulb-off": { + "name": "bulb-off", + "category": "", + "tags": ["bulb", "off", "energy", "power", "electricity", "creativity", "light", "idea", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea50" + }, + "bulb": { + "name": "bulb", + "category": "", + "tags": ["bulb", "energy", "power", "electricity", "creativity", "light", "idea", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea51" + }, + "bulldozer": { + "name": "bulldozer", + "category": "Vehicles", + "tags": ["bulldozer", "tractor", "construction", "site", "build", "rear", "machine", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ee1d" + }, + "bus-off": { + "name": "bus-off", + "category": "Vehicles", + "tags": ["bus", "off", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ce" + }, + "bus-stop": { + "name": "bus-stop", + "category": "Vehicles", + "tags": ["bus", "stop", "transport", "station", "city", "travel", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d4" + }, + "bus": { + "name": "bus", + "category": "Vehicles", + "tags": ["bus", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe4" + }, + "businessplan": { + "name": "businessplan", + "category": "", + "tags": ["businessplan", "business", "money", "corporate", "document", "goal", "achieve", "manage", "roadmap", "grow", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee1e" + }, + "butterfly": { + "name": "butterfly", + "category": "Nature", + "tags": ["butterfly", "animal", "insect", "nature", "fly", "wings", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efd9" + }, + "c-sharp": { + "name": "c-sharp", + "category": "", + "tags": ["c", "sharp", "coding", "programming", "files", "language", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f003" + }, + "cactus-off": { + "name": "cactus-off", + "category": "Nature", + "tags": ["cactus", "off", "plant", "desert", "spikes", "nature", "garden", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3cf" + }, + "cactus": { + "name": "cactus", + "category": "Nature", + "tags": ["cactus", "plant", "desert", "spikes", "nature", "garden", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21b" + }, + "cake-off": { + "name": "cake-off", + "category": "", + "tags": ["cake", "off", "baking", "birthday", "party", "chocolate", "sweet", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f104" + }, + "cake": { + "name": "cake", + "category": "", + "tags": ["cake", "baking", "birthday", "party", "chocolate", "sweet", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f00f" + }, + "calculator-off": { + "name": "calculator-off", + "category": "", + "tags": ["calculator", "off", "math", "count", "add", "subtract", "multiply", "divide", "amount", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c4" + }, + "calculator": { + "name": "calculator", + "category": "", + "tags": ["calculator", "math", "count", "add", "subtract", "multiply", "divide", "amount", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb80" + }, + "calendar-due": { + "name": "calendar-due", + "category": "", + "tags": ["calendar", "due", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f621" + }, + "calendar-event": { + "name": "calendar-event", + "category": "System", + "tags": ["calendar", "event", "date", "day", "plan", "schedule", "agenda", "calender", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea52" + }, + "calendar-minus": { + "name": "calendar-minus", + "category": "System", + "tags": ["calendar", "minus", "date", "day", "plan", "schedule", "agenda", "calender", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebb9" + }, + "calendar-off": { + "name": "calendar-off", + "category": "System", + "tags": ["calendar", "off", "date", "day", "plan", "schedule", "agenda", "calender", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee1f" + }, + "calendar-plus": { + "name": "calendar-plus", + "category": "System", + "tags": ["calendar", "plus", "date", "day", "plan", "schedule", "agenda", "add", "calender", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebba" + }, + "calendar-stats": { + "name": "calendar-stats", + "category": "System", + "tags": ["calendar", "stats", "plan", "timetable", "schedule", "meeting", "busy", "month", "year", "date", "statistics", "calender", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee20" + }, + "calendar-time": { + "name": "calendar-time", + "category": "System", + "tags": ["calendar", "time", "plan", "timetable", "schedule", "meeting", "busy", "month", "year", "date", "calender", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee21" + }, + "calendar": { + "name": "calendar", + "category": "System", + "tags": ["calendar", "date", "day", "plan", "schedule", "agenda", "calender", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea53" + }, + "camera-minus": { + "name": "camera-minus", + "category": "Media", + "tags": ["camera", "minus", "video", "photo", "aperture", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3a" + }, + "camera-off": { + "name": "camera-off", + "category": "Media", + "tags": ["camera", "off", "video", "photo", "aperture", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecee" + }, + "camera-plus": { + "name": "camera-plus", + "category": "Media", + "tags": ["camera", "plus", "video", "photo", "aperture", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3b" + }, + "camera-rotate": { + "name": "camera-rotate", + "category": "Photography", + "tags": ["camera", "rotate", "photo", "photography", "picture", "face", "instagram", "portrait", "digital", "smartphone", "selfie", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee22" + }, + "camera-selfie": { + "name": "camera-selfie", + "category": "Photography", + "tags": ["camera", "selfie", "photo", "photography", "picture", "face", "instagram", "portrait", "digital", "smartphone", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee23" + }, + "camera": { + "name": "camera", + "category": "Media", + "tags": ["camera", "video", "photo", "aperture", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea54" + }, + "campfire": { + "name": "campfire", + "category": "", + "tags": ["campfire", "camping", "bonfire", "wood", "camp", "burn", "flame", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a7" + }, + "candle": { + "name": "candle", + "category": "", + "tags": ["candle", "light", "birthday", "decoration", "halloween", "fire", "christmas", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc6" + }, + "candy-off": { + "name": "candy-off", + "category": "Food", + "tags": ["candy", "off", "sweet", "food", "sugar", "cane", "halloween", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c5" + }, + "candy": { + "name": "candy", + "category": "Food", + "tags": ["candy", "sweet", "food", "sugar", "cane", "halloween", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef0d" + }, + "cane": { + "name": "cane", + "category": "", + "tags": ["cane", "candy", "christmas", "sweet", "food", "decoration", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f50f" + }, + "cannabis": { + "name": "cannabis", + "category": "", + "tags": ["cannabis", "marijuana", "weed", "drug", "cbd", "medical", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c1" + }, + "capture-off": { + "name": "capture-off", + "category": "Media", + "tags": ["capture", "off", "photo", "photographer", "sharpen", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c6" + }, + "capture": { + "name": "capture", + "category": "Media", + "tags": ["capture", "photo", "photographer", "sharpen", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3c" + }, + "car-crane": { + "name": "car-crane", + "category": "Vehicles", + "tags": ["car", "crane", "transport", "truck", "machine", "lifter", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef25" + }, + "car-crash": { + "name": "car-crash", + "category": "Vehicles", + "tags": ["car", "crash", "accident", "collision", "damage", "insurance", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa4" + }, + "car-off": { + "name": "car-off", + "category": "Vehicles", + "tags": ["car", "off", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c7" + }, + "car-turbine": { + "name": "car-turbine", + "category": "Vehicles", + "tags": ["car", "turbine", "detail", "service", "mechanic", "part", "power", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4fd" + }, + "car": { + "name": "car", + "category": "Vehicles", + "tags": ["car", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebbb" + }, + "caravan": { + "name": "caravan", + "category": "Vehicles", + "tags": ["caravan", "journey", "trip", "holidays", "camping", "trailer", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec7c" + }, + "cardboards-off": { + "name": "cardboards-off", + "category": "Devices", + "tags": ["cardboards", "off", "vr", "virtual reality", "watch", "viewer", "technology", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c8" + }, + "cardboards": { + "name": "cardboards", + "category": "Devices", + "tags": ["cardboards", "vr", "virtual reality", "watch", "viewer", "technology", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed74" + }, + "cards": { + "name": "cards", + "category": "", + "tags": ["cards", "game", "poker", "credit", "peyment", "casino", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f510" + }, + "caret-down": { + "name": "caret-down", + "category": "Arrows", + "tags": ["caret", "down", "next", "bottom", "dropdown", "show", "more", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5d" + }, + "caret-left": { + "name": "caret-left", + "category": "Arrows", + "tags": ["caret", "left", "back", "previous", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5e" + }, + "caret-right": { + "name": "caret-right", + "category": "Arrows", + "tags": ["caret", "right", "next", "play", "more", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb5f" + }, + "caret-up": { + "name": "caret-up", + "category": "Arrows", + "tags": ["caret", "up", "dropdown", "less", "up", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb60" + }, + "carousel-horizontal": { + "name": "carousel-horizontal", + "category": "", + "tags": ["carousel", "horizontal", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f659" + }, + "carousel-vertical": { + "name": "carousel-vertical", + "category": "", + "tags": ["carousel", "vertical", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65a" + }, + "carrot-off": { + "name": "carrot-off", + "category": "Food", + "tags": ["carrot", "off", "food", "healthy", "rabbit", "vegetable", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d0" + }, + "carrot": { + "name": "carrot", + "category": "Food", + "tags": ["carrot", "food", "healthy", "rabbit", "vegetable", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21c" + }, + "cash-banknote-off": { + "name": "cash-banknote-off", + "category": "E-commerce", + "tags": ["cash", "banknote", "off", "money", "pay", "bank", "dollar", "pound", "bank", "yen", "business", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee24" + }, + "cash-banknote": { + "name": "cash-banknote", + "category": "E-commerce", + "tags": ["cash", "banknote", "money", "pay", "bank", "dollar", "pound", "bank", "yen", "business", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee25" + }, + "cash-off": { + "name": "cash-off", + "category": "E-commerce", + "tags": ["cash", "off", "currency", "payment", "money", "pay", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f105" + }, + "cash": { + "name": "cash", + "category": "E-commerce", + "tags": ["cash", "currency", "payment", "money", "pay", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea55" + }, + "cast-off": { + "name": "cast-off", + "category": "Media", + "tags": ["cast", "off", "broadcast", "stream", "mirroring", "apple", "airplay", "chromecast", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0c9" + }, + "cast": { + "name": "cast", + "category": "Media", + "tags": ["cast", "broadcast", "stream", "mirroring", "apple", "airplay", "chromecast", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea56" + }, + "cat": { + "name": "cat", + "category": "Animals", + "tags": ["cat", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65b" + }, + "category-2": { + "name": "category-2", + "category": "Shapes", + "tags": ["category", "2", "folder", "menu", "tag", "game", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f5" + }, + "category": { + "name": "category", + "category": "Shapes", + "tags": ["category", "folder", "menu", "tag", "game", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f6" + }, + "ce-off": { + "name": "ce-off", + "category": "Symbols", + "tags": ["ce", "off", "sign", "marking", "administration", "administrative", "conformity", "health", "safety", "environment", "protection", "standards", "product", "europe", "eea", "economic", "area", "manufacture", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0ca" + }, + "ce": { + "name": "ce", + "category": "Symbols", + "tags": ["ce", "sign", "marking", "administration", "administrative", "conformity", "health", "safety", "environment", "protection", "standards", "product", "europe", "eea", "economic", "area", "manufacture", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed75" + }, + "cell-signal-1": { + "name": "cell-signal-1", + "category": "Devices", + "tags": ["cell", "signal", "1", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f083" + }, + "cell-signal-2": { + "name": "cell-signal-2", + "category": "Devices", + "tags": ["cell", "signal", "2", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f084" + }, + "cell-signal-3": { + "name": "cell-signal-3", + "category": "Devices", + "tags": ["cell", "signal", "3", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f085" + }, + "cell-signal-4": { + "name": "cell-signal-4", + "category": "Devices", + "tags": ["cell", "signal", "4", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f086" + }, + "cell-signal-5": { + "name": "cell-signal-5", + "category": "Devices", + "tags": ["cell", "signal", "5", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f087" + }, + "cell-signal-off": { + "name": "cell-signal-off", + "category": "Devices", + "tags": ["cell", "signal", "off", "mobile", "phone", "connetcion", "wireless", "network", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f088" + }, + "cell": { + "name": "cell", + "category": "", + "tags": ["cell", "biology", "molecule", "chemistry", "human", "laboratory", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f05f" + }, + "certificate-2-off": { + "name": "certificate-2-off", + "category": "Document", + "tags": ["certificate", "2", "off", "award", "license", "document", "achievement", "course", "complete", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0cb" + }, + "certificate-2": { + "name": "certificate-2", + "category": "Document", + "tags": ["certificate", "2", "award", "license", "document", "achievement", "course", "complete", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f073" + }, + "certificate-off": { + "name": "certificate-off", + "category": "Document", + "tags": ["certificate", "off", "document", "official", "attest", "signature", "birth", "death", "gift", "authenticity", "seal", "course", "complete", "qualification", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0cc" + }, + "certificate": { + "name": "certificate", + "category": "Document", + "tags": ["certificate", "document", "official", "attest", "signature", "birth", "death", "gift", "authenticity", "seal", "course", "complete", "qualification", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed76" + }, + "chair-director": { + "name": "chair-director", + "category": "", + "tags": ["chair", "director", "film", "seat", "furniture", "interior", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d5" + }, + "chalkboard-off": { + "name": "chalkboard-off", + "category": "Document", + "tags": ["chalkboard", "off", "school", "classroom", "education", "learn", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d1" + }, + "chalkboard": { + "name": "chalkboard", + "category": "Document", + "tags": ["chalkboard", "school", "classroom", "education", "learn", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34d" + }, + "charging-pile": { + "name": "charging-pile", + "category": "Vehicles", + "tags": ["charging", "pile", "electric", "electricity", "hybrid", "tesla", "station", "electronic", "point", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee26" + }, + "chart-arcs-3": { + "name": "chart-arcs-3", + "category": "Charts", + "tags": ["chart", "arcs", "3", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee27" + }, + "chart-arcs": { + "name": "chart-arcs", + "category": "Charts", + "tags": ["chart", "arcs", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee28" + }, + "chart-area-filled": { + "name": "chart-area-filled", + "category": "Filled", + "tags": ["chart", "area", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66b" + }, + "chart-area-line-filled": { + "name": "chart-area-line-filled", + "category": "Filled", + "tags": ["chart", "area", "line", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66c" + }, + "chart-area-line": { + "name": "chart-area-line", + "category": "Charts", + "tags": ["chart", "area", "line", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea57" + }, + "chart-area": { + "name": "chart-area", + "category": "Charts", + "tags": ["chart", "area", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea58" + }, + "chart-arrows-vertical": { + "name": "chart-arrows-vertical", + "category": "Charts", + "tags": ["chart", "arrows", "vertical", "statistics", "data", "value", "variable", "scale", "statistical", "level", "increase", "decrease", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee29" + }, + "chart-arrows": { + "name": "chart-arrows", + "category": "Charts", + "tags": ["chart", "arrows", "statistics", "data", "value", "variable", "scale", "statistical", "level", "increase", "decrease", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2a" + }, + "chart-bar-off": { + "name": "chart-bar-off", + "category": "Charts", + "tags": ["chart", "bar", "off", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d2" + }, + "chart-bar": { + "name": "chart-bar", + "category": "Charts", + "tags": ["chart", "bar", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea59" + }, + "chart-bubble-filled": { + "name": "chart-bubble-filled", + "category": "Filled", + "tags": ["chart", "bubble", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66d" + }, + "chart-bubble": { + "name": "chart-bubble", + "category": "Charts", + "tags": ["chart", "bubble", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec75" + }, + "chart-candle-filled": { + "name": "chart-candle-filled", + "category": "Filled", + "tags": ["chart", "candle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66e" + }, + "chart-candle": { + "name": "chart-candle", + "category": "Charts", + "tags": ["chart", "candle", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5a" + }, + "chart-circles": { + "name": "chart-circles", + "category": "Charts", + "tags": ["chart", "circles", "statistics", "analysis", "analyse", "graph", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2b" + }, + "chart-donut-2": { + "name": "chart-donut-2", + "category": "Charts", + "tags": ["chart", "donut", "2", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2c" + }, + "chart-donut-3": { + "name": "chart-donut-3", + "category": "Charts", + "tags": ["chart", "donut", "3", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2d" + }, + "chart-donut-4": { + "name": "chart-donut-4", + "category": "Charts", + "tags": ["chart", "donut", "4", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2e" + }, + "chart-donut-filled": { + "name": "chart-donut-filled", + "category": "Filled", + "tags": ["chart", "donut", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66f" + }, + "chart-donut": { + "name": "chart-donut", + "category": "Charts", + "tags": ["chart", "donut", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5b" + }, + "chart-dots-2": { + "name": "chart-dots-2", + "category": "Charts", + "tags": ["chart", "dots", "2", "graph", "diagram", "analyticks", "statistics", "data", "value", "variable", "scale", "statistical", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f097" + }, + "chart-dots-3": { + "name": "chart-dots-3", + "category": "Charts", + "tags": ["chart", "dots", "3", "graph", "diagram", "analyticks", "statistics", "data", "value", "variable", "scale", "statistical", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f098" + }, + "chart-dots": { + "name": "chart-dots", + "category": "Charts", + "tags": ["chart", "dots", "statistics", "data", "value", "variable", "scale", "statistical", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee2f" + }, + "chart-grid-dots": { + "name": "chart-grid-dots", + "category": "Charts", + "tags": ["chart", "grid", "dots", "graph", "diagram", "analytics", "statistics", "data", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c2" + }, + "chart-histogram": { + "name": "chart-histogram", + "category": "", + "tags": ["chart", "histogram", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65c" + }, + "chart-infographic": { + "name": "chart-infographic", + "category": "Charts", + "tags": ["chart", "infographic", "statistics", "data", "value", "variable", "scale", "statistical", "bar", "information", "report", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee30" + }, + "chart-line": { + "name": "chart-line", + "category": "Charts", + "tags": ["chart", "line", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5c" + }, + "chart-pie-2": { + "name": "chart-pie-2", + "category": "Charts", + "tags": ["chart", "pie", "2", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee31" + }, + "chart-pie-3": { + "name": "chart-pie-3", + "category": "Charts", + "tags": ["chart", "pie", "3", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee32" + }, + "chart-pie-4": { + "name": "chart-pie-4", + "category": "Charts", + "tags": ["chart", "pie", "4", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee33" + }, + "chart-pie-filled": { + "name": "chart-pie-filled", + "category": "Filled", + "tags": ["chart", "pie", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f670" + }, + "chart-pie-off": { + "name": "chart-pie-off", + "category": "Charts", + "tags": ["chart", "pie", "off", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d3" + }, + "chart-pie": { + "name": "chart-pie", + "category": "Charts", + "tags": ["chart", "pie", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5d" + }, + "chart-ppf": { + "name": "chart-ppf", + "category": "Charts", + "tags": ["chart", "ppf", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f618" + }, + "chart-radar": { + "name": "chart-radar", + "category": "Charts", + "tags": ["chart", "radar", "statistics", "data", "value", "two", "dimensions", "variable", "report", "points", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed77" + }, + "chart-sankey": { + "name": "chart-sankey", + "category": "Charts", + "tags": ["chart", "sankey", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f619" + }, + "chart-treemap": { + "name": "chart-treemap", + "category": "", + "tags": ["chart", "treemap", "diagram", "analytics", "buisness", "data", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f381" + }, + "check": { + "name": "check", + "category": "System", + "tags": ["check", "tick", "yes", "confirm", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5e" + }, + "checkbox": { + "name": "checkbox", + "category": "System", + "tags": ["checkbox", "survey", "confirm", "tick", "yes", "to-do", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "eba6" + }, + "checklist": { + "name": "checklist", + "category": "", + "tags": ["checklist", "task", "delivery", "clipboard", "document", "plan", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f074" + }, + "checks": { + "name": "checks", + "category": "System", + "tags": ["checks", "tick", "yes", "confirm", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebaa" + }, + "checkup-list": { + "name": "checkup-list", + "category": "Health", + "tags": ["checkup", "list", "car", "hospital", "health", "report", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5a" + }, + "cheese": { + "name": "cheese", + "category": "Food", + "tags": ["cheese", "food", "mouse", "cooking", "pizza", "sandwiches", "product", "edam", "gouda", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef26" + }, + "chef-hat-off": { + "name": "chef-hat-off", + "category": "", + "tags": ["chef", "hat", "off", "cooking", "kitchen", "restaurant", "food", "job", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d4" + }, + "chef-hat": { + "name": "chef-hat", + "category": "", + "tags": ["chef", "hat", "cooking", "kitchen", "restaurant", "food", "job", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21d" + }, + "cherry": { + "name": "cherry", + "category": "", + "tags": ["cherry", "fruit", "food", "sweet", "healthy", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f511" + }, + "chess-bishop": { + "name": "chess-bishop", + "category": "Sport", + "tags": ["chess", "bishop", "game", "figure", "strategy", "pawn", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56b" + }, + "chess-king": { + "name": "chess-king", + "category": "Sport", + "tags": ["chess", "king", "game", "figure", "strategy", "pawn", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56c" + }, + "chess-knight": { + "name": "chess-knight", + "category": "Sport", + "tags": ["chess", "knight", "game", "figure", "strategy", "pawn", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56d" + }, + "chess-queen": { + "name": "chess-queen", + "category": "Sport", + "tags": ["chess", "queen", "game", "figure", "strategy", "pawn", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56e" + }, + "chess-rook": { + "name": "chess-rook", + "category": "Sport", + "tags": ["chess", "rook", "game", "figure", "strategy", "pawn", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f56f" + }, + "chess": { + "name": "chess", + "category": "Sport", + "tags": ["chess", "game", "strategy", "pawn", "figure", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f382" + }, + "chevron-down-left": { + "name": "chevron-down-left", + "category": "Arrows", + "tags": ["chevron", "down", "left", "move", "aside", "bottom", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed09" + }, + "chevron-down-right": { + "name": "chevron-down-right", + "category": "Arrows", + "tags": ["chevron", "down", "right", "move", "aside", "bottom", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0a" + }, + "chevron-down": { + "name": "chevron-down", + "category": "Arrows", + "tags": ["chevron", "down", "move", "next", "swipe", "bottom", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea5f" + }, + "chevron-left": { + "name": "chevron-left", + "category": "Arrows", + "tags": ["chevron", "left", "move", "previous", "back", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea60" + }, + "chevron-right": { + "name": "chevron-right", + "category": "Arrows", + "tags": ["chevron", "right", "move", "checklist", "next", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea61" + }, + "chevron-up-left": { + "name": "chevron-up-left", + "category": "Arrows", + "tags": ["chevron", "up", "left", "move", "aside", "top", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0b" + }, + "chevron-up-right": { + "name": "chevron-up-right", + "category": "Arrows", + "tags": ["chevron", "up", "right", "move", "aside", "top", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0c" + }, + "chevron-up": { + "name": "chevron-up", + "category": "Arrows", + "tags": ["chevron", "up", "move", "top", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea62" + }, + "chevrons-down-left": { + "name": "chevrons-down-left", + "category": "Arrows", + "tags": ["chevrons", "down", "left", "move", "aside", "bottom", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0d" + }, + "chevrons-down-right": { + "name": "chevrons-down-right", + "category": "Arrows", + "tags": ["chevrons", "down", "right", "move", "aside", "bottom", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0e" + }, + "chevrons-down": { + "name": "chevrons-down", + "category": "Arrows", + "tags": ["chevrons", "down", "move", "bottom", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea63" + }, + "chevrons-left": { + "name": "chevrons-left", + "category": "Arrows", + "tags": ["chevrons", "left", "move", "back", "roll", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea64" + }, + "chevrons-right": { + "name": "chevrons-right", + "category": "Arrows", + "tags": ["chevrons", "right", "move", "next", "checklist", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea65" + }, + "chevrons-up-left": { + "name": "chevrons-up-left", + "category": "Arrows", + "tags": ["chevrons", "up", "left", "move", "aside", "top", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed0f" + }, + "chevrons-up-right": { + "name": "chevrons-up-right", + "category": "Arrows", + "tags": ["chevrons", "up", "right", "move", "aside", "top", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed10" + }, + "chevrons-up": { + "name": "chevrons-up", + "category": "Arrows", + "tags": ["chevrons", "up", "move", "top", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea66" + }, + "chisel": { + "name": "chisel", + "category": "", + "tags": ["chisel", "tool", "equipment", "work", "wood", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f383" + }, + "christmas-tree-off": { + "name": "christmas-tree-off", + "category": "Nature", + "tags": ["christmas", "tree", "off", "holidays", "pine", "decorate", "decoration", "gift", "present", "carol", "evergreen", "spruce", "fir", "winter", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d5" + }, + "christmas-tree": { + "name": "christmas-tree", + "category": "Nature", + "tags": ["christmas", "tree", "holidays", "pine", "decorate", "decoration", "gift", "present", "carol", "evergreen", "spruce", "fir", "winter", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed78" + }, + "circle-caret-down": { + "name": "circle-caret-down", + "category": "Arrows", + "tags": ["circle", "caret", "down", "direction", "shape", "south", "bottom", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4a9" + }, + "circle-caret-left": { + "name": "circle-caret-left", + "category": "Arrows", + "tags": ["circle", "caret", "left", "direction", "shape", "west", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4aa" + }, + "circle-caret-right": { + "name": "circle-caret-right", + "category": "Arrows", + "tags": ["circle", "caret", "right", "direction", "shape", "east", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4ab" + }, + "circle-caret-up": { + "name": "circle-caret-up", + "category": "Arrows", + "tags": ["circle", "caret", "up", "direction", "shape", "north", "top", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4ac" + }, + "circle-check": { + "name": "circle-check", + "category": "", + "tags": ["circle", "check", "accept", "true", "tick", "done", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea67" + }, + "circle-chevron-down": { + "name": "circle-chevron-down", + "category": "Arrows", + "tags": ["circle", "chevron", "down", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f622" + }, + "circle-chevron-left": { + "name": "circle-chevron-left", + "category": "Arrows", + "tags": ["circle", "chevron", "left", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f623" + }, + "circle-chevron-right": { + "name": "circle-chevron-right", + "category": "Arrows", + "tags": ["circle", "chevron", "right", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f624" + }, + "circle-chevron-up": { + "name": "circle-chevron-up", + "category": "Arrows", + "tags": ["circle", "chevron", "up", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f625" + }, + "circle-chevrons-down": { + "name": "circle-chevrons-down", + "category": "Arrows", + "tags": ["circle", "chevrons", "down", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f642" + }, + "circle-chevrons-left": { + "name": "circle-chevrons-left", + "category": "Arrows", + "tags": ["circle", "chevrons", "left", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f643" + }, + "circle-chevrons-right": { + "name": "circle-chevrons-right", + "category": "Arrows", + "tags": ["circle", "chevrons", "right", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f644" + }, + "circle-chevrons-up": { + "name": "circle-chevrons-up", + "category": "Arrows", + "tags": ["circle", "chevrons", "up", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f645" + }, + "circle-dashed": { + "name": "circle-dashed", + "category": "", + "tags": ["circle", "dashed", "shape", "line", "check", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed27" + }, + "circle-dot": { + "name": "circle-dot", + "category": "", + "tags": ["circle", "dot", "crosshair", "shape", "geometry", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb1" + }, + "circle-dotted": { + "name": "circle-dotted", + "category": "", + "tags": ["circle", "dotted", "shape", "point", "check", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed28" + }, + "circle-filled": { + "name": "circle-filled", + "category": "Filled", + "tags": ["circle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f671" + }, + "circle-half-2": { + "name": "circle-half-2", + "category": "Design", + "tags": ["circle", "half", "2", "shape", "split", "slash", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff3" + }, + "circle-half-vertical": { + "name": "circle-half-vertical", + "category": "", + "tags": ["circle", "half", "vertical", "shape", "split", "slash", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3e" + }, + "circle-half": { + "name": "circle-half", + "category": "", + "tags": ["circle", "half", "shape", "split", "slash", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3f" + }, + "circle-key": { + "name": "circle-key", + "category": "", + "tags": ["circle", "key", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f633" + }, + "circle-letter-a": { + "name": "circle-letter-a", + "category": "Letters", + "tags": ["circle", "letter", "a", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f441" + }, + "circle-letter-b": { + "name": "circle-letter-b", + "category": "Letters", + "tags": ["circle", "letter", "b", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f442" + }, + "circle-letter-c": { + "name": "circle-letter-c", + "category": "Letters", + "tags": ["circle", "letter", "c", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f443" + }, + "circle-letter-d": { + "name": "circle-letter-d", + "category": "Letters", + "tags": ["circle", "letter", "d", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f444" + }, + "circle-letter-e": { + "name": "circle-letter-e", + "category": "Letters", + "tags": ["circle", "letter", "e", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f445" + }, + "circle-letter-f": { + "name": "circle-letter-f", + "category": "Letters", + "tags": ["circle", "letter", "f", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f446" + }, + "circle-letter-g": { + "name": "circle-letter-g", + "category": "Letters", + "tags": ["circle", "letter", "g", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f447" + }, + "circle-letter-h": { + "name": "circle-letter-h", + "category": "Letters", + "tags": ["circle", "letter", "h", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f448" + }, + "circle-letter-i": { + "name": "circle-letter-i", + "category": "Letters", + "tags": ["circle", "letter", "i", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f449" + }, + "circle-letter-j": { + "name": "circle-letter-j", + "category": "Letters", + "tags": ["circle", "letter", "j", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44a" + }, + "circle-letter-k": { + "name": "circle-letter-k", + "category": "Letters", + "tags": ["circle", "letter", "k", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44b" + }, + "circle-letter-l": { + "name": "circle-letter-l", + "category": "Letters", + "tags": ["circle", "letter", "l", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44c" + }, + "circle-letter-m": { + "name": "circle-letter-m", + "category": "Letters", + "tags": ["circle", "letter", "m", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44d" + }, + "circle-letter-n": { + "name": "circle-letter-n", + "category": "Letters", + "tags": ["circle", "letter", "n", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44e" + }, + "circle-letter-o": { + "name": "circle-letter-o", + "category": "Letters", + "tags": ["circle", "letter", "o", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f44f" + }, + "circle-letter-p": { + "name": "circle-letter-p", + "category": "Letters", + "tags": ["circle", "letter", "p", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f450" + }, + "circle-letter-q": { + "name": "circle-letter-q", + "category": "Letters", + "tags": ["circle", "letter", "q", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f451" + }, + "circle-letter-r": { + "name": "circle-letter-r", + "category": "Letters", + "tags": ["circle", "letter", "r", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f452" + }, + "circle-letter-s": { + "name": "circle-letter-s", + "category": "Letters", + "tags": ["circle", "letter", "s", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f453" + }, + "circle-letter-t": { + "name": "circle-letter-t", + "category": "Letters", + "tags": ["circle", "letter", "t", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f454" + }, + "circle-letter-u": { + "name": "circle-letter-u", + "category": "Letters", + "tags": ["circle", "letter", "u", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f455" + }, + "circle-letter-v": { + "name": "circle-letter-v", + "category": "Letters", + "tags": ["circle", "letter", "v", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4ad" + }, + "circle-letter-w": { + "name": "circle-letter-w", + "category": "Letters", + "tags": ["circle", "letter", "w", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f456" + }, + "circle-letter-x": { + "name": "circle-letter-x", + "category": "Letters", + "tags": ["circle", "letter", "x", "cancel", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "f4ae" + }, + "circle-letter-y": { + "name": "circle-letter-y", + "category": "Letters", + "tags": ["circle", "letter", "y", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f457" + }, + "circle-letter-z": { + "name": "circle-letter-z", + "category": "Letters", + "tags": ["circle", "letter", "z", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f458" + }, + "circle-minus": { + "name": "circle-minus", + "category": "", + "tags": ["circle", "minus", "remove", "delete", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea68" + }, + "circle-number-0": { + "name": "circle-number-0", + "category": "Numbers", + "tags": ["circle", "number", "0", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee34" + }, + "circle-number-1": { + "name": "circle-number-1", + "category": "Numbers", + "tags": ["circle", "number", "1", "one", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee35" + }, + "circle-number-2": { + "name": "circle-number-2", + "category": "Numbers", + "tags": ["circle", "number", "2", "two", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee36" + }, + "circle-number-3": { + "name": "circle-number-3", + "category": "Numbers", + "tags": ["circle", "number", "3", "three", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee37" + }, + "circle-number-4": { + "name": "circle-number-4", + "category": "Numbers", + "tags": ["circle", "number", "4", "four", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee38" + }, + "circle-number-5": { + "name": "circle-number-5", + "category": "Numbers", + "tags": ["circle", "number", "5", "five", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee39" + }, + "circle-number-6": { + "name": "circle-number-6", + "category": "Numbers", + "tags": ["circle", "number", "6", "six", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3a" + }, + "circle-number-7": { + "name": "circle-number-7", + "category": "Numbers", + "tags": ["circle", "number", "7", "seven", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3b" + }, + "circle-number-8": { + "name": "circle-number-8", + "category": "Numbers", + "tags": ["circle", "number", "8", "eight", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3c" + }, + "circle-number-9": { + "name": "circle-number-9", + "category": "Numbers", + "tags": ["circle", "number", "9", "nine", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee3d" + }, + "circle-off": { + "name": "circle-off", + "category": "Shapes", + "tags": ["circle", "off", "false", "zero", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee40" + }, + "circle-plus": { + "name": "circle-plus", + "category": "", + "tags": ["circle", "plus", "add", "create", "new", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea69" + }, + "circle-rectangle-off": { + "name": "circle-rectangle-off", + "category": "", + "tags": ["circle", "rectangle", "off", "shape", "geometric", "geometry", "figure", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0cd" + }, + "circle-rectangle": { + "name": "circle-rectangle", + "category": "", + "tags": ["circle", "rectangle", "shape", "geometric", "geometry", "figure", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f010" + }, + "circle-square": { + "name": "circle-square", + "category": "Shapes", + "tags": ["circle", "square", "shape", "spot", "math", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece4" + }, + "circle-triangle": { + "name": "circle-triangle", + "category": "", + "tags": ["circle", "triangle", "arrow", "down", "shape", "geometry", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f011" + }, + "circle-x": { + "name": "circle-x", + "category": "", + "tags": ["circle", "x", "cancel", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6a" + }, + "circle": { + "name": "circle", + "category": "Shapes", + "tags": ["circle", "false", "zero", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6b" + }, + "circles-filled": { + "name": "circles-filled", + "category": "Filled", + "tags": ["circles", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f672" + }, + "circles-relation": { + "name": "circles-relation", + "category": "", + "tags": ["circles", "relation", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c3" + }, + "circles": { + "name": "circles", + "category": "Shapes", + "tags": ["circles", "shape", "marbles", "balls", "juggle", "spots", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece5" + }, + "circuit-ammeter": { + "name": "circuit-ammeter", + "category": "Electrical", + "tags": ["circuit", "ammeter", "diagram", "electric", "electricity", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f271" + }, + "circuit-battery": { + "name": "circuit-battery", + "category": "Electrical", + "tags": ["circuit", "battery", "diagram", "electric", "electricity", "power", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f272" + }, + "circuit-bulb": { + "name": "circuit-bulb", + "category": "Electrical", + "tags": ["circuit", "bulb", "lamp", "light", "electric", "electrical", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f273" + }, + "circuit-capacitor-polarized": { + "name": "circuit-capacitor-polarized", + "category": "Electrical", + "tags": ["circuit", "capacitor", "polarized", "diagram", "electric", "electrity", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f274" + }, + "circuit-capacitor": { + "name": "circuit-capacitor", + "category": "Electrical", + "tags": ["circuit", "capacitor", "diagram", "electric", "electrity", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f275" + }, + "circuit-cell-plus": { + "name": "circuit-cell-plus", + "category": "Electrical", + "tags": ["circuit", "cell", "plus", "electirc", "diagram", "electrity", "battery", "power", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f276" + }, + "circuit-cell": { + "name": "circuit-cell", + "category": "Electrical", + "tags": ["circuit", "cell", "electirc", "diagram", "electrity", "battery", "power", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f277" + }, + "circuit-changeover": { + "name": "circuit-changeover", + "category": "Electrical", + "tags": ["circuit", "changeover", "electirc", "diagram", "electrity", "change", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f278" + }, + "circuit-diode-zener": { + "name": "circuit-diode-zener", + "category": "Electrical", + "tags": ["circuit", "diode", "zener", "electirc", "electrity", "diagram", "digital", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f279" + }, + "circuit-diode": { + "name": "circuit-diode", + "category": "Electrical", + "tags": ["circuit", "diode", "diagram", "electic", "electronic", "led", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f27a" + }, + "circuit-ground-digital": { + "name": "circuit-ground-digital", + "category": "Electrical", + "tags": ["circuit", "ground", "digital", "electirc", "electrity", "diagram", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f27b" + }, + "circuit-ground": { + "name": "circuit-ground", + "category": "Electrical", + "tags": ["circuit", "ground", "electirc", "electrity", "diagram", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f27c" + }, + "circuit-inductor": { + "name": "circuit-inductor", + "category": "Electrical", + "tags": ["circuit", "inductor", "electirc", "electrity", "diagram", "coil", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f27d" + }, + "circuit-motor": { + "name": "circuit-motor", + "category": "Electrical", + "tags": ["circuit", "motor", "circuity", "diagram", "electric", "electricy", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f27e" + }, + "circuit-pushbutton": { + "name": "circuit-pushbutton", + "category": "Electrical", + "tags": ["circuit", "pushbutton", "diagram", "electric", "electricy", "open", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f27f" + }, + "circuit-resistor": { + "name": "circuit-resistor", + "category": "Electrical", + "tags": ["circuit", "resistor", "diagram", "electric", "electricy", "nema", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f280" + }, + "circuit-switch-closed": { + "name": "circuit-switch-closed", + "category": "Electrical", + "tags": ["circuit", "switch", "closed", "diagram", "electric", "electricy", "locked", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f281" + }, + "circuit-switch-open": { + "name": "circuit-switch-open", + "category": "Electrical", + "tags": ["circuit", "switch", "open", "diagram", "electric", "electricy", "opened", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f282" + }, + "circuit-voltmeter": { + "name": "circuit-voltmeter", + "category": "Electrical", + "tags": ["circuit", "voltmeter", "diagram", "electric", "electricy", "component", "icon", "stroke", "outline"], + "version": "1.77", + "unicode": "f283" + }, + "clear-all": { + "name": "clear-all", + "category": "", + "tags": ["clear", "all", "app", "clear", "all", "emails", "phone", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee41" + }, + "clear-formatting": { + "name": "clear-formatting", + "category": "Text", + "tags": ["clear", "formatting", "text", "return", "default", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe5" + }, + "click": { + "name": "click", + "category": "", + "tags": ["click", "select", "cursor", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebbc" + }, + "clipboard-check": { + "name": "clipboard-check", + "category": "Document", + "tags": ["clipboard", "check", "copy", "yes", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6c" + }, + "clipboard-copy": { + "name": "clipboard-copy", + "category": "Document", + "tags": ["clipboard", "copy", "duplicate", "paste", "document", "task", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f299" + }, + "clipboard-data": { + "name": "clipboard-data", + "category": "Document", + "tags": ["clipboard", "data", "document", "report", "file", "list", "analytics", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f563" + }, + "clipboard-heart": { + "name": "clipboard-heart", + "category": "Document", + "tags": ["clipboard", "heart", "medical", "health", "healthcare", "medicine", "hospital", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34e" + }, + "clipboard-list": { + "name": "clipboard-list", + "category": "Document", + "tags": ["clipboard", "list", "copy", "items", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6d" + }, + "clipboard-off": { + "name": "clipboard-off", + "category": "Document", + "tags": ["clipboard", "off", "copy", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0ce" + }, + "clipboard-plus": { + "name": "clipboard-plus", + "category": "Document", + "tags": ["clipboard", "plus", "document", "file", "add", "new", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb2" + }, + "clipboard-text": { + "name": "clipboard-text", + "category": "Document", + "tags": ["clipboard", "text", "document", "file", "report", "page", "note", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f089" + }, + "clipboard-typography": { + "name": "clipboard-typography", + "category": "Document", + "tags": ["clipboard", "typography", "document", "list", "raport", "paper", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f34f" + }, + "clipboard-x": { + "name": "clipboard-x", + "category": "Document", + "tags": ["clipboard", "x", "copy", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6e" + }, + "clipboard": { + "name": "clipboard", + "category": "Document", + "tags": ["clipboard", "copy", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea6f" + }, + "clock-2": { + "name": "clock-2", + "category": "System", + "tags": ["clock", "2", "time", "watch", "timer", "alarm", "date", "hour", "schedule", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f099" + }, + "clock-cancel": { + "name": "clock-cancel", + "category": "System", + "tags": ["clock", "cancel", "time", "delete", "remove", "close", "alarm", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f546" + }, + "clock-edit": { + "name": "clock-edit", + "category": "System", + "tags": ["clock", "edit", "time", "edit", "create", "alarm", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f547" + }, + "clock-hour-1": { + "name": "clock-hour-1", + "category": "System", + "tags": ["clock", "hour", "1", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f313" + }, + "clock-hour-10": { + "name": "clock-hour-10", + "category": "System", + "tags": ["clock", "hour", "10", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f314" + }, + "clock-hour-11": { + "name": "clock-hour-11", + "category": "System", + "tags": ["clock", "hour", "11", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f315" + }, + "clock-hour-12": { + "name": "clock-hour-12", + "category": "System", + "tags": ["clock", "hour", "12", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f316" + }, + "clock-hour-2": { + "name": "clock-hour-2", + "category": "System", + "tags": ["clock", "hour", "2", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f317" + }, + "clock-hour-3": { + "name": "clock-hour-3", + "category": "System", + "tags": ["clock", "hour", "3", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f318" + }, + "clock-hour-4": { + "name": "clock-hour-4", + "category": "System", + "tags": ["clock", "hour", "4", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f319" + }, + "clock-hour-5": { + "name": "clock-hour-5", + "category": "System", + "tags": ["clock", "hour", "5", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31a" + }, + "clock-hour-6": { + "name": "clock-hour-6", + "category": "System", + "tags": ["clock", "hour", "6", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31b" + }, + "clock-hour-7": { + "name": "clock-hour-7", + "category": "System", + "tags": ["clock", "hour", "7", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31c" + }, + "clock-hour-8": { + "name": "clock-hour-8", + "category": "System", + "tags": ["clock", "hour", "8", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31d" + }, + "clock-hour-9": { + "name": "clock-hour-9", + "category": "System", + "tags": ["clock", "hour", "9", "time", "watch", "timer", "alarm", "minutes", "seconds", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31e" + }, + "clock-off": { + "name": "clock-off", + "category": "System", + "tags": ["clock", "off", "time", "watch", "alarm", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0cf" + }, + "clock-pause": { + "name": "clock-pause", + "category": "System", + "tags": ["clock", "pause", "time", "stop", "pause", "wait", "rest", "false", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f548" + }, + "clock-play": { + "name": "clock-play", + "category": "System", + "tags": ["clock", "play", "time", "hour", "work", "alarm", "true", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f549" + }, + "clock-record": { + "name": "clock-record", + "category": "System", + "tags": ["clock", "record", "time", "watch", "alarm", "recording", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54a" + }, + "clock-stop": { + "name": "clock-stop", + "category": "System", + "tags": ["clock", "stop", "time", "watch", "alarm", "pause", "false", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54b" + }, + "clock": { + "name": "clock", + "category": "System", + "tags": ["clock", "time", "watch", "alarm", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea70" + }, + "clothes-rack-off": { + "name": "clothes-rack-off", + "category": "", + "tags": ["clothes", "rack", "off", "hanger", "furniture", "fashion", "clothing", "stand", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d6" + }, + "clothes-rack": { + "name": "clothes-rack", + "category": "", + "tags": ["clothes", "rack", "hanger", "furniture", "fashion", "clothing", "stand", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f285" + }, + "cloud-computing": { + "name": "cloud-computing", + "category": "", + "tags": ["cloud", "computing", "server", "network", "data", "storage", "share", "internet", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d0" + }, + "cloud-data-connection": { + "name": "cloud-data-connection", + "category": "", + "tags": ["cloud", "data", "connection", "media", "network", "storage", "access", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d1" + }, + "cloud-download": { + "name": "cloud-download", + "category": "System", + "tags": ["cloud", "download", "files", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea71" + }, + "cloud-filled": { + "name": "cloud-filled", + "category": "Filled", + "tags": ["cloud", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f673" + }, + "cloud-fog": { + "name": "cloud-fog", + "category": "Weather", + "tags": ["cloud", "fog", "weather", "online", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecd9" + }, + "cloud-lock-open": { + "name": "cloud-lock-open", + "category": "System", + "tags": ["cloud", "lock", "open", "unlock", "password", "private", "pass", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efda" + }, + "cloud-lock": { + "name": "cloud-lock", + "category": "System", + "tags": ["cloud", "lock", "security", "secure", "locked", "password", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efdb" + }, + "cloud-off": { + "name": "cloud-off", + "category": "Weather", + "tags": ["cloud", "off", "weather", "online", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed3e" + }, + "cloud-rain": { + "name": "cloud-rain", + "category": "Weather", + "tags": ["cloud", "rain", "weather", "dry", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea72" + }, + "cloud-snow": { + "name": "cloud-snow", + "category": "Weather", + "tags": ["cloud", "snow", "weather", "blizzard", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea73" + }, + "cloud-storm": { + "name": "cloud-storm", + "category": "Weather", + "tags": ["cloud", "storm", "weather", "lightning", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea74" + }, + "cloud-upload": { + "name": "cloud-upload", + "category": "System", + "tags": ["cloud", "upload", "files", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea75" + }, + "cloud": { + "name": "cloud", + "category": "Weather", + "tags": ["cloud", "weather", "online", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea76" + }, + "clover-2": { + "name": "clover-2", + "category": "", + "tags": ["clover", "2", "luck", "leaf", "patrick", "irleand", "irish", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21e" + }, + "clover": { + "name": "clover", + "category": "", + "tags": ["clover", "luck", "leaf", "patrick", "irleand", "irish", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1ea" + }, + "clubs-filled": { + "name": "clubs-filled", + "category": "Filled", + "tags": ["clubs", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f674" + }, + "clubs": { + "name": "clubs", + "category": "Shapes", + "tags": ["clubs", "card", "game", "casino", "gambling", "poker", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff4" + }, + "code-asterix": { + "name": "code-asterix", + "category": "Text", + "tags": ["code", "asterix", "coding", "programming", "html", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f312" + }, + "code-circle-2": { + "name": "code-circle-2", + "category": "Text", + "tags": ["code", "circle", "2", "coding", "programming", "development", "shape", "technology", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4fe" + }, + "code-circle": { + "name": "code-circle", + "category": "Text", + "tags": ["code", "circle", "coding", "programming", "development", "shape", "technology", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f4ff" + }, + "code-dots": { + "name": "code-dots", + "category": "Text", + "tags": ["code", "dots", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f61a" + }, + "code-minus": { + "name": "code-minus", + "category": "Text", + "tags": ["code", "minus", "remove", "delete", "insert", "braces", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee42" + }, + "code-off": { + "name": "code-off", + "category": "Text", + "tags": ["code", "off", "brackets", "source", "programming", "command", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d0" + }, + "code-plus": { + "name": "code-plus", + "category": "Text", + "tags": ["code", "plus", "add", "insert", "braces", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee43" + }, + "code": { + "name": "code", + "category": "Text", + "tags": ["code", "brackets", "source", "programming", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea77" + }, + "coffee-off": { + "name": "coffee-off", + "category": "Food", + "tags": ["coffee", "off", "espresso", "hot", "cup", "latte", "cafe", "drink", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f106" + }, + "coffee": { + "name": "coffee", + "category": "Food", + "tags": ["coffee", "espresso", "hot", "cup", "latte", "cafe", "drink", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef0e" + }, + "coffin": { + "name": "coffin", + "category": "", + "tags": ["coffin", "halloween", "death", "scary", "horror", "cementry", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f579" + }, + "coin-bitcoin": { + "name": "coin-bitcoin", + "category": "E-commerce", + "tags": ["coin", "bitcoin", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2be" + }, + "coin-euro": { + "name": "coin-euro", + "category": "E-commerce", + "tags": ["coin", "euro", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2bf" + }, + "coin-monero": { + "name": "coin-monero", + "category": "E-commerce", + "tags": ["coin", "monero", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a0" + }, + "coin-off": { + "name": "coin-off", + "category": "E-commerce", + "tags": ["coin", "off", "money", "earn", "salary", "change", "dollar", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d1" + }, + "coin-pound": { + "name": "coin-pound", + "category": "E-commerce", + "tags": ["coin", "pound", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c0" + }, + "coin-rupee": { + "name": "coin-rupee", + "category": "E-commerce", + "tags": ["coin", "rupee", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c1" + }, + "coin-yen": { + "name": "coin-yen", + "category": "E-commerce", + "tags": ["coin", "yen", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c2" + }, + "coin-yuan": { + "name": "coin-yuan", + "category": "E-commerce", + "tags": ["coin", "yuan", "money", "earn", "salary", "change", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c3" + }, + "coin": { + "name": "coin", + "category": "E-commerce", + "tags": ["coin", "money", "earn", "salary", "change", "dollar", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb82" + }, + "coins": { + "name": "coins", + "category": "", + "tags": ["coins", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65d" + }, + "color-filter": { + "name": "color-filter", + "category": "Design", + "tags": ["color", "filter", "hue", "brightness", "effects", "sotring", "tools", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a8" + }, + "color-picker-off": { + "name": "color-picker-off", + "category": "Design", + "tags": ["color", "picker", "off", "timbre", "saturation", "paint", "image", "brush", "choice", "selection", "sample", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d2" + }, + "color-picker": { + "name": "color-picker", + "category": "Design", + "tags": ["color", "picker", "timbre", "saturation", "paint", "image", "brush", "choice", "selection", "sample", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe6" + }, + "color-swatch-off": { + "name": "color-swatch-off", + "category": "Design", + "tags": ["color", "swatch", "off", "sample", "choice", "selection", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d3" + }, + "color-swatch": { + "name": "color-swatch", + "category": "Design", + "tags": ["color", "swatch", "sample", "choice", "selection", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb61" + }, + "column-insert-left": { + "name": "column-insert-left", + "category": "Database", + "tags": ["column", "insert", "left", "database", "table", "cells", "arrow", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee44" + }, + "column-insert-right": { + "name": "column-insert-right", + "category": "Database", + "tags": ["column", "insert", "right", "database", "table", "cells", "arrow", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee45" + }, + "columns-off": { + "name": "columns-off", + "category": "Text", + "tags": ["columns", "off", "text", "gap", "table", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d4" + }, + "columns": { + "name": "columns", + "category": "Text", + "tags": ["columns", "text", "gap", "table", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb83" + }, + "comet": { + "name": "comet", + "category": "Weather", + "tags": ["comet", "space", "universe", "star", "orb", "glow", "night", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec76" + }, + "command-off": { + "name": "command-off", + "category": "Symbols", + "tags": ["command", "off", "apple", "key", "keyboard", "cmd", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d7" + }, + "command": { + "name": "command", + "category": "Symbols", + "tags": ["command", "apple", "key", "keyboard", "cmd", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea78" + }, + "compass-off": { + "name": "compass-off", + "category": "Map", + "tags": ["compass", "off", "navigation", "safari", "travel", "direction", "discover", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d5" + }, + "compass": { + "name": "compass", + "category": "Map", + "tags": ["compass", "navigation", "safari", "travel", "direction", "discover", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea79" + }, + "components-off": { + "name": "components-off", + "category": "Design", + "tags": ["components", "off", "hardware", "technology", "electronic", "computer", "design", "ux", "figma", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d6" + }, + "components": { + "name": "components", + "category": "Design", + "tags": ["components", "hardware", "technology", "electronic", "computer", "design", "ux", "figma", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa5" + }, + "cone-2": { + "name": "cone-2", + "category": "", + "tags": ["cone", "2", "geometry", "math", "object", "shape", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efdc" + }, + "cone-off": { + "name": "cone-off", + "category": "", + "tags": ["cone", "off", "geometry", "math", "object", "shape", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d8" + }, + "cone": { + "name": "cone", + "category": "", + "tags": ["cone", "geometry", "math", "object", "shape", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efdd" + }, + "confetti-off": { + "name": "confetti-off", + "category": "", + "tags": ["confetti", "off", "party", "celebrate", "streamers", "paper", "parade", "wedding", "celebration", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3d9" + }, + "confetti": { + "name": "confetti", + "category": "", + "tags": ["confetti", "party", "celebrate", "streamers", "paper", "parade", "wedding", "celebration", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee46" + }, + "confucius": { + "name": "confucius", + "category": "Symbols", + "tags": ["confucius", "culture", "religion", "philosophy", "tradition", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58a" + }, + "container-off": { + "name": "container-off", + "category": "Design", + "tags": ["container", "off", "element", "html", "block", "store", "inside", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f107" + }, + "container": { + "name": "container", + "category": "Design", + "tags": ["container", "element", "html", "block", "store", "inside", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee47" + }, + "contrast-2-off": { + "name": "contrast-2-off", + "category": "Photography", + "tags": ["contrast", "2", "off", "edit", "paint", "photo", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3da" + }, + "contrast-2": { + "name": "contrast-2", + "category": "Photography", + "tags": ["contrast", "2", "edit", "paint", "photo", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc7" + }, + "contrast-off": { + "name": "contrast-off", + "category": "Photography", + "tags": ["contrast", "off", "edit", "paint", "photo", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3db" + }, + "contrast": { + "name": "contrast", + "category": "Photography", + "tags": ["contrast", "edit", "paint", "photo", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec4e" + }, + "cooker": { + "name": "cooker", + "category": "", + "tags": ["cooker", "kitchen", "cook", "oven", "chef", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57a" + }, + "cookie-man": { + "name": "cookie-man", + "category": "", + "tags": ["cookie", "man", "food", "christmas", "sweet", "bakery", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c4" + }, + "cookie-off": { + "name": "cookie-off", + "category": "Food", + "tags": ["cookie", "off", "food", "sweet", "cooking", "snack", "internet", "privacy", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d7" + }, + "cookie": { + "name": "cookie", + "category": "Food", + "tags": ["cookie", "food", "sweet", "cooking", "snack", "internet", "privacy", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef0f" + }, + "copy-off": { + "name": "copy-off", + "category": "Text", + "tags": ["copy", "off", "clipboard", "clone", "duplicate", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d8" + }, + "copy": { + "name": "copy", + "category": "Text", + "tags": ["copy", "clipboard", "clone", "duplicate", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7a" + }, + "copyleft-off": { + "name": "copyleft-off", + "category": "Symbols", + "tags": ["copyleft", "off", "licence", "license", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0d9" + }, + "copyleft": { + "name": "copyleft", + "category": "Symbols", + "tags": ["copyleft", "licence", "license", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3d" + }, + "copyright-off": { + "name": "copyright-off", + "category": "Symbols", + "tags": ["copyright", "off", "licence", "license", "icon", "stroke", "outline"], + "version": "1.63", + "unicode": "f0da" + }, + "copyright": { + "name": "copyright", + "category": "Symbols", + "tags": ["copyright", "licence", "license", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7b" + }, + "corner-down-left-double": { + "name": "corner-down-left-double", + "category": "Arrows", + "tags": ["corner", "down", "left", "double", "arrow", "previous", "back", "return", "below", "point", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee48" + }, + "corner-down-left": { + "name": "corner-down-left", + "category": "Arrows", + "tags": ["corner", "down", "left", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7c" + }, + "corner-down-right-double": { + "name": "corner-down-right-double", + "category": "Arrows", + "tags": ["corner", "down", "right", "double", "arrow", "next", "below", "forward", "point", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee49" + }, + "corner-down-right": { + "name": "corner-down-right", + "category": "Arrows", + "tags": ["corner", "down", "right", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7d" + }, + "corner-left-down-double": { + "name": "corner-left-down-double", + "category": "Arrows", + "tags": ["corner", "left", "down", "double", "arrow", "point", "below", "bottom", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4a" + }, + "corner-left-down": { + "name": "corner-left-down", + "category": "Arrows", + "tags": ["corner", "left", "down", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7e" + }, + "corner-left-up-double": { + "name": "corner-left-up-double", + "category": "Arrows", + "tags": ["corner", "left", "up", "double", "arrow", "point", "above", "top", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4b" + }, + "corner-left-up": { + "name": "corner-left-up", + "category": "Arrows", + "tags": ["corner", "left", "up", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea7f" + }, + "corner-right-down-double": { + "name": "corner-right-down-double", + "category": "Arrows", + "tags": ["corner", "right", "down", "double", "arrow", "point", "below", "bottom", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4c" + }, + "corner-right-down": { + "name": "corner-right-down", + "category": "Arrows", + "tags": ["corner", "right", "down", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea80" + }, + "corner-right-up-double": { + "name": "corner-right-up-double", + "category": "Arrows", + "tags": ["corner", "right", "up", "double", "arrow", "point", "above", "top", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4d" + }, + "corner-right-up": { + "name": "corner-right-up", + "category": "Arrows", + "tags": ["corner", "right", "up", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea81" + }, + "corner-up-left-double": { + "name": "corner-up-left-double", + "category": "Arrows", + "tags": ["corner", "up", "left", "double", "arrow", "point", "side", "previous", "back", "return", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4e" + }, + "corner-up-left": { + "name": "corner-up-left", + "category": "Arrows", + "tags": ["corner", "up", "left", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea82" + }, + "corner-up-right-double": { + "name": "corner-up-right-double", + "category": "Arrows", + "tags": ["corner", "up", "right", "double", "arrow", "next", "above", "forward", "point", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee4f" + }, + "corner-up-right": { + "name": "corner-up-right", + "category": "Arrows", + "tags": ["corner", "up", "right", "move", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea83" + }, + "cpu-2": { + "name": "cpu-2", + "category": "Devices", + "tags": ["cpu", "2", "processor", "computer", "chip", "hardware", "technology", "electronic", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f075" + }, + "cpu-off": { + "name": "cpu-off", + "category": "Devices", + "tags": ["cpu", "off", "processor", "computer", "chip", "hardware", "technology", "electronic", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f108" + }, + "cpu": { + "name": "cpu", + "category": "Devices", + "tags": ["cpu", "processor", "computer", "chip", "hardware", "technology", "electronic", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef8e" + }, + "crane-off": { + "name": "crane-off", + "category": "Vehicles", + "tags": ["crane", "off", "consturction", "building", "machine", "lifting", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f109" + }, + "crane": { + "name": "crane", + "category": "Vehicles", + "tags": ["crane", "consturction", "building", "machine", "lifting", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef27" + }, + "creative-commons-by": { + "name": "creative-commons-by", + "category": "", + "tags": ["creative", "commons", "by", "licence", "license", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f21f" + }, + "creative-commons-nc": { + "name": "creative-commons-nc", + "category": "", + "tags": ["creative", "commons", "nc", "licence", "license", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f220" + }, + "creative-commons-nd": { + "name": "creative-commons-nd", + "category": "", + "tags": ["creative", "commons", "nd", "licence", "license", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f221" + }, + "creative-commons-off": { + "name": "creative-commons-off", + "category": "", + "tags": ["creative", "commons", "off", "licence", "license", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10a" + }, + "creative-commons-sa": { + "name": "creative-commons-sa", + "category": "", + "tags": ["creative", "commons", "sa", "licence", "license", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f222" + }, + "creative-commons-zero": { + "name": "creative-commons-zero", + "category": "", + "tags": ["creative", "commons", "zero", "licence", "license", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f223" + }, + "creative-commons": { + "name": "creative-commons", + "category": "", + "tags": ["creative", "commons", "licence", "license", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb3" + }, + "credit-card-off": { + "name": "credit-card-off", + "category": "", + "tags": ["credit", "card", "off", "money", "purchase", "payment", "cc", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed11" + }, + "credit-card": { + "name": "credit-card", + "category": "", + "tags": ["credit", "card", "money", "purchase", "payment", "cc", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea84" + }, + "cricket": { + "name": "cricket", + "category": "Sport", + "tags": ["cricket", "ball", "game", "sport", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09a" + }, + "crop": { + "name": "crop", + "category": "Design", + "tags": ["crop", "photo", "image", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea85" + }, + "cross-filled": { + "name": "cross-filled", + "category": "Filled", + "tags": ["cross", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f675" + }, + "cross-off": { + "name": "cross-off", + "category": "Symbols", + "tags": ["cross", "off", "prayer", "church", "catholic", "jezus", "religion", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10b" + }, + "cross": { + "name": "cross", + "category": "Symbols", + "tags": ["cross", "prayer", "church", "catholic", "jezus", "religion", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef8f" + }, + "crosshair": { + "name": "crosshair", + "category": "", + "tags": ["crosshair", "reticle", "tag", "tracer", "measurement", "target", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3e" + }, + "crown-off": { + "name": "crown-off", + "category": "", + "tags": ["crown", "off", "symbol", "queen", "king", "prince", "princess", "dynasty", "royalty", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee50" + }, + "crown": { + "name": "crown", + "category": "", + "tags": ["crown", "symbol", "queen", "king", "prince", "princess", "dynasty", "royalty", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed12" + }, + "crutches-off": { + "name": "crutches-off", + "category": "Health", + "tags": ["crutches", "off", "hospital", "medical", "disability", "health", "leg", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10c" + }, + "crutches": { + "name": "crutches", + "category": "Health", + "tags": ["crutches", "hospital", "medical", "disability", "health", "leg", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5b" + }, + "crystal-ball": { + "name": "crystal-ball", + "category": "", + "tags": ["crystal", "ball", "magic", "fortune", "christmas", "witch", "future", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57b" + }, + "cube-send": { + "name": "cube-send", + "category": "", + "tags": ["cube", "send", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f61b" + }, + "cube-unfolded": { + "name": "cube-unfolded", + "category": "", + "tags": ["cube", "unfolded", "icon", "stroke", "outline"], + "version": "1.115", + "unicode": "f61c" + }, + "cup-off": { + "name": "cup-off", + "category": "Food", + "tags": ["cup", "off", "coffee", "drink", "water", "food", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10d" + }, + "cup": { + "name": "cup", + "category": "Food", + "tags": ["cup", "coffee", "drink", "water", "food", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef28" + }, + "curling": { + "name": "curling", + "category": "Sport", + "tags": ["curling", "game", "sport", "olympic", "winter", "snow", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc8" + }, + "curly-loop": { + "name": "curly-loop", + "category": "", + "tags": ["curly", "loop", "voicemail", "power", "infinity", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecda" + }, + "currency-afghani": { + "name": "currency-afghani", + "category": "Currencies", + "tags": ["currency", "afghani", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65e" + }, + "currency-bahraini": { + "name": "currency-bahraini", + "category": "Currencies", + "tags": ["currency", "bahraini", "bahraini", "bhd", "commerce", "dinar", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee51" + }, + "currency-baht": { + "name": "currency-baht", + "category": "Currencies", + "tags": ["currency", "baht", "thb", "thai", "baht", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "f08a" + }, + "currency-bitcoin": { + "name": "currency-bitcoin", + "category": "Currencies", + "tags": ["currency", "bitcoin", "crypto", "bitcoin", "lightning network", "mining", "digital", "blockchain", "p2p", "peer", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebab" + }, + "currency-cent": { + "name": "currency-cent", + "category": "Currencies", + "tags": ["currency", "cent", "cent", "coin", "money", "centavo", "penny", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee53" + }, + "currency-dinar": { + "name": "currency-dinar", + "category": "Currencies", + "tags": ["currency", "dinar", "kwd", "dinar", "kuwait", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee54" + }, + "currency-dirham": { + "name": "currency-dirham", + "category": "Currencies", + "tags": ["currency", "dirham", "trade", "aed", "uae", "dirham", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee55" + }, + "currency-dogecoin": { + "name": "currency-dogecoin", + "category": "Currencies", + "tags": ["currency", "dogecoin", "crypto", "bitcoin", "lightning network", "mining", "digital", "blockchain", "p2p", "peer", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef4b" + }, + "currency-dollar-australian": { + "name": "currency-dollar-australian", + "category": "Currencies", + "tags": ["currency", "dollar", "australian", "dollar", "aud", "australian", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee56" + }, + "currency-dollar-brunei": { + "name": "currency-dollar-brunei", + "category": "Currencies", + "tags": ["currency", "dollar", "brunei", "exchange", "buisness", "commerce", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f36c" + }, + "currency-dollar-canadian": { + "name": "currency-dollar-canadian", + "category": "Currencies", + "tags": ["currency", "dollar", "canadian", "trade", "dollar", "cad", "canadian", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee57" + }, + "currency-dollar-guyanese": { + "name": "currency-dollar-guyanese", + "category": "Currencies", + "tags": ["currency", "dollar", "guyanese", "exchange", "buisness", "commerce", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f36d" + }, + "currency-dollar-off": { + "name": "currency-dollar-off", + "category": "Currencies", + "tags": ["currency", "dollar", "off", "american", "us", "dollar", "usd", "sign", "bucks", "usa", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3dc" + }, + "currency-dollar-singapore": { + "name": "currency-dollar-singapore", + "category": "Currencies", + "tags": ["currency", "dollar", "singapore", "singapore", "dollar", "exchange", "sgd", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee58" + }, + "currency-dollar-zimbabwean": { + "name": "currency-dollar-zimbabwean", + "category": "Currencies", + "tags": ["currency", "dollar", "zimbabwean", "exchange", "buisness", "commerce", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f36e" + }, + "currency-dollar": { + "name": "currency-dollar", + "category": "Currencies", + "tags": ["currency", "dollar", "american", "us", "dollar", "usd", "sign", "bucks", "usa", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb84" + }, + "currency-dong": { + "name": "currency-dong", + "category": "Currencies", + "tags": ["currency", "dong", "vietnam", "exchange", "finance", "money", "cash", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f36f" + }, + "currency-dram": { + "name": "currency-dram", + "category": "Currencies", + "tags": ["currency", "dram", "exchange", "finance", "money", "cash", "armenia", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f370" + }, + "currency-ethereum": { + "name": "currency-ethereum", + "category": "Currencies", + "tags": ["currency", "ethereum", "ethereum", "digital", "crypto", "ether", "blockchain", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee59" + }, + "currency-euro-off": { + "name": "currency-euro-off", + "category": "Currencies", + "tags": ["currency", "euro", "off", "euro", "eur", "trade", "finance", "europe", "eu", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3dd" + }, + "currency-euro": { + "name": "currency-euro", + "category": "Currencies", + "tags": ["currency", "euro", "euro", "eur", "trade", "finance", "europe", "eu", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb85" + }, + "currency-forint": { + "name": "currency-forint", + "category": "Currencies", + "tags": ["currency", "forint", "huf", "hungarian", "business", "forint", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5a" + }, + "currency-frank": { + "name": "currency-frank", + "category": "Currencies", + "tags": ["currency", "frank", "chf", "business", "swiss", "franc", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5b" + }, + "currency-guarani": { + "name": "currency-guarani", + "category": "Currencies", + "tags": ["currency", "guarani", "exchange", "finance", "money", "cash", "paraguay", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f371" + }, + "currency-hryvnia": { + "name": "currency-hryvnia", + "category": "Currencies", + "tags": ["currency", "hryvnia", "exchange", "finance", "money", "cash", "ukraine", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f372" + }, + "currency-kip": { + "name": "currency-kip", + "category": "Currencies", + "tags": ["currency", "kip", "exchange", "finance", "money", "cash", "laos", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f373" + }, + "currency-krone-czech": { + "name": "currency-krone-czech", + "category": "Currencies", + "tags": ["currency", "krone", "czech", "czech", "czk", "koruna", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5c" + }, + "currency-krone-danish": { + "name": "currency-krone-danish", + "category": "Currencies", + "tags": ["currency", "krone", "danish", "krone", "dkk", "danish", "finance", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5d" + }, + "currency-krone-swedish": { + "name": "currency-krone-swedish", + "category": "Currencies", + "tags": ["currency", "krone", "swedish", "krone", "kronor", "krona", "swedish", "icelandic", "norwegian", "estonian", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5e" + }, + "currency-lari": { + "name": "currency-lari", + "category": "Currencies", + "tags": ["currency", "lari", "exchange", "finance", "money", "cash", "georgia", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f374" + }, + "currency-leu": { + "name": "currency-leu", + "category": "Currencies", + "tags": ["currency", "leu", "leu", "loti", "lempira", "lek", "lilangani", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee5f" + }, + "currency-lira": { + "name": "currency-lira", + "category": "Currencies", + "tags": ["currency", "lira", "lira", "trade", "turkish", "try", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee60" + }, + "currency-litecoin": { + "name": "currency-litecoin", + "category": "Currencies", + "tags": ["currency", "litecoin", "litecoin", "crypto", "segwit", "lightning network", "blockchain", "p2p", "peer", "transaction", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee61" + }, + "currency-lyd": { + "name": "currency-lyd", + "category": "Currencies", + "tags": ["currency", "lyd", "exchange", "finance", "money", "cash", "libya", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f375" + }, + "currency-manat": { + "name": "currency-manat", + "category": "Currencies", + "tags": ["currency", "manat", "exchange", "finance", "money", "cash", "azerbaijan", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f376" + }, + "currency-monero": { + "name": "currency-monero", + "category": "Currencies", + "tags": ["currency", "monero", "exchange", "finance", "money", "cash", "cryptocurrency", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f377" + }, + "currency-naira": { + "name": "currency-naira", + "category": "Currencies", + "tags": ["currency", "naira", "naira", "ngn", "nigerian", "trade", "money", "banknote", "pay", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee62" + }, + "currency-off": { + "name": "currency-off", + "category": "Currencies", + "tags": ["currency", "off", "target", "goal", "focus", "marketing", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3de" + }, + "currency-paanga": { + "name": "currency-paanga", + "category": "Currencies", + "tags": ["currency", "paanga", "exchange", "finance", "money", "cash", "tonga", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f378" + }, + "currency-peso": { + "name": "currency-peso", + "category": "Currencies", + "tags": ["currency", "peso", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65f" + }, + "currency-pound-off": { + "name": "currency-pound-off", + "category": "Currencies", + "tags": ["currency", "pound", "off", "gbp", "pound", "sterling", "british", "britain", "uk", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3df" + }, + "currency-pound": { + "name": "currency-pound", + "category": "Currencies", + "tags": ["currency", "pound", "gbp", "pound", "sterling", "british", "britain", "uk", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebac" + }, + "currency-quetzal": { + "name": "currency-quetzal", + "category": "Currencies", + "tags": ["currency", "quetzal", "exchange", "finance", "money", "cash", "guatemala", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f379" + }, + "currency-real": { + "name": "currency-real", + "category": "Currencies", + "tags": ["currency", "real", "brl", "brazilian", "real", "finance", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee63" + }, + "currency-renminbi": { + "name": "currency-renminbi", + "category": "Currencies", + "tags": ["currency", "renminbi", "renminbi", "cny", "chinese", "yuan", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee64" + }, + "currency-ripple": { + "name": "currency-ripple", + "category": "Currencies", + "tags": ["currency", "ripple", "ripple", "xrp", "digital", "crypto", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee65" + }, + "currency-riyal": { + "name": "currency-riyal", + "category": "Currencies", + "tags": ["currency", "riyal", "riyal", "sar", "saudi", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee66" + }, + "currency-rubel": { + "name": "currency-rubel", + "category": "Currencies", + "tags": ["currency", "rubel", "rub", "russian", "ruble", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee67" + }, + "currency-rufiyaa": { + "name": "currency-rufiyaa", + "category": "Currencies", + "tags": ["currency", "rufiyaa", "exchange", "finance", "money", "cash", "maldives", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f37a" + }, + "currency-rupee-nepalese": { + "name": "currency-rupee-nepalese", + "category": "Currencies", + "tags": ["currency", "rupee", "nepalese", "exchange", "finance", "money", "cash", "nepal", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f37b" + }, + "currency-rupee": { + "name": "currency-rupee", + "category": "Currencies", + "tags": ["currency", "rupee", "inr", "indian", "rupee", "exchange", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebad" + }, + "currency-shekel": { + "name": "currency-shekel", + "category": "Currencies", + "tags": ["currency", "shekel", "curency", "ils", "israeli", "shekel", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee68" + }, + "currency-solana": { + "name": "currency-solana", + "category": "Currencies", + "tags": ["currency", "solana", "crypto", "bitcoin", "mining", "digital", "cryptocurrency", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a1" + }, + "currency-som": { + "name": "currency-som", + "category": "Currencies", + "tags": ["currency", "som", "exchange", "finance", "money", "cash", "kyrgyzstan", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f37c" + }, + "currency-taka": { + "name": "currency-taka", + "category": "Currencies", + "tags": ["currency", "taka", "trade", "bangladesh", "bdt", "taka", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee69" + }, + "currency-tenge": { + "name": "currency-tenge", + "category": "Currencies", + "tags": ["currency", "tenge", "exchange", "finance", "money", "cash", "kazakhstan", "icon", "stroke", "outline"], + "version": "1.90", + "unicode": "f37d" + }, + "currency-tugrik": { + "name": "currency-tugrik", + "category": "Currencies", + "tags": ["currency", "tugrik", "tgrg", "mnt", "tugrik", "mongolian", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6a" + }, + "currency-won": { + "name": "currency-won", + "category": "Currencies", + "tags": ["currency", "won", "korean", "kpw", "north", "won", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6b" + }, + "currency-yen-off": { + "name": "currency-yen-off", + "category": "Currencies", + "tags": ["currency", "yen", "off", "japanese", "yen", "jpy", "chinese", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e0" + }, + "currency-yen": { + "name": "currency-yen", + "category": "Currencies", + "tags": ["currency", "yen", "japanese", "yen", "jpy", "chinese", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebae" + }, + "currency-yuan": { + "name": "currency-yuan", + "category": "Currencies", + "tags": ["currency", "yuan", "exchange", "finance", "money", "cash", "china", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29a" + }, + "currency-zloty": { + "name": "currency-zloty", + "category": "Currencies", + "tags": ["currency", "zloty", "poland", "pln", "zloty", "polish", "money", "banknote", "pay", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6c" + }, + "currency": { + "name": "currency", + "category": "Currencies", + "tags": ["currency", "target", "goal", "focus", "marketing", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa6" + }, + "current-location-off": { + "name": "current-location-off", + "category": "Map", + "tags": ["current", "location", "off", "localization", "maps", "navigation", "pin", "target", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10e" + }, + "current-location": { + "name": "current-location", + "category": "Map", + "tags": ["current", "location", "localization", "maps", "navigation", "pin", "target", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecef" + }, + "cursor-off": { + "name": "cursor-off", + "category": "", + "tags": ["cursor", "off", "editor", "indicate", "position", "input", "mouse", "type", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f10f" + }, + "cursor-text": { + "name": "cursor-text", + "category": "Text", + "tags": ["cursor", "text", "editor", "indicate", "position", "input", "mouse", "type", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6d" + }, + "cut": { + "name": "cut", + "category": "Design", + "tags": ["cut", "scissors", "divide", "hairdresser", "sharp", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea86" + }, + "cylinder": { + "name": "cylinder", + "category": "Shapes", + "tags": ["cylinder", "geometry", "gas", "tube", "object", "piston", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54c" + }, + "dashboard-off": { + "name": "dashboard-off", + "category": "System", + "tags": ["dashboard", "off", "home", "car", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e1" + }, + "dashboard": { + "name": "dashboard", + "category": "System", + "tags": ["dashboard", "home", "car", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea87" + }, + "database-export": { + "name": "database-export", + "category": "Database", + "tags": ["database", "export", "data", "backup", "file", "storage", "system", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6e" + }, + "database-import": { + "name": "database-import", + "category": "Database", + "tags": ["database", "import", "data", "file", "storage", "backup", "system", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee6f" + }, + "database-off": { + "name": "database-off", + "category": "Database", + "tags": ["database", "off", "storage", "data", "memory", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee70" + }, + "database": { + "name": "database", + "category": "Database", + "tags": ["database", "storage", "data", "memory", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea88" + }, + "deer": { + "name": "deer", + "category": "Animals", + "tags": ["deer", "animal", "christmas", "santa", "forest", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c5" + }, + "delta": { + "name": "delta", + "category": "", + "tags": ["delta", "letter", "alphabet", "greek", "math", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53c" + }, + "dental-broken": { + "name": "dental-broken", + "category": "", + "tags": ["dental", "broken", "tooth", "dentist", "medical", "care", "caries", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f286" + }, + "dental-off": { + "name": "dental-off", + "category": "Health", + "tags": ["dental", "off", "tooth", "toothbrush", "mouth", "hygiene", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f110" + }, + "dental": { + "name": "dental", + "category": "Health", + "tags": ["dental", "tooth", "toothbrush", "mouth", "hygiene", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f025" + }, + "details-off": { + "name": "details-off", + "category": "", + "tags": ["details", "off", "geometric", "half", "shape", "highlight", "triangle", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e2" + }, + "details": { + "name": "details", + "category": "", + "tags": ["details", "geometric", "half", "shape", "highlight", "triangle", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee71" + }, + "device-airpods-case": { + "name": "device-airpods-case", + "category": "Devices", + "tags": ["device", "airpods", "case", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f646" + }, + "device-airpods": { + "name": "device-airpods", + "category": "Devices", + "tags": ["device", "airpods", "music", "iphone", "apple", "wireless", "headphones", "sound", "earbuds", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5a9" + }, + "device-analytics": { + "name": "device-analytics", + "category": "Devices", + "tags": ["device", "analytics", "analyze", "analyse", "data", "traffic", "user", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee72" + }, + "device-audio-tape": { + "name": "device-audio-tape", + "category": "Devices", + "tags": ["device", "audio", "tape", "record", "music", "radio", "cassette", "recording", "play", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee73" + }, + "device-camera-phone": { + "name": "device-camera-phone", + "category": "Devices", + "tags": ["device", "camera", "phone", "smartphone", "technology", "photo", "gadget", "photography", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f233" + }, + "device-cctv-off": { + "name": "device-cctv-off", + "category": "Devices", + "tags": ["device", "cctv", "off", "closed", "circuit", "television", "video", "surveillance", "signal", "monitor", "record", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e3" + }, + "device-cctv": { + "name": "device-cctv", + "category": "Devices", + "tags": ["device", "cctv", "closed", "circuit", "television", "video", "surveillance", "signal", "monitor", "record", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee74" + }, + "device-computer-camera-off": { + "name": "device-computer-camera-off", + "category": "Devices", + "tags": ["device", "computer", "camera", "off", "video", "meeting", "record", "recording", "webcam", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee75" + }, + "device-computer-camera": { + "name": "device-computer-camera", + "category": "Devices", + "tags": ["device", "computer", "camera", "video", "meeting", "record", "recording", "webcam", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee76" + }, + "device-desktop-analytics": { + "name": "device-desktop-analytics", + "category": "Devices", + "tags": ["device", "desktop", "analytics", "monitor", "computer", "imac", "stats", "charts", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee77" + }, + "device-desktop-off": { + "name": "device-desktop-off", + "category": "Devices", + "tags": ["device", "desktop", "off", "monitor", "computer", "imac", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee78" + }, + "device-desktop": { + "name": "device-desktop", + "category": "Devices", + "tags": ["device", "desktop", "monitor", "computer", "imac", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea89" + }, + "device-floppy": { + "name": "device-floppy", + "category": "Devices", + "tags": ["device", "floppy", "save", "file", "disk", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb62" + }, + "device-gamepad-2": { + "name": "device-gamepad-2", + "category": "Devices", + "tags": ["device", "gamepad", "2", "play", "entertainment", "console", "joystick", "joypad", "controller", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d2" + }, + "device-gamepad": { + "name": "device-gamepad", + "category": "Devices", + "tags": ["device", "gamepad", "play", "entertainment", "console", "joystick", "joypad", "controller", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb63" + }, + "device-heart-monitor": { + "name": "device-heart-monitor", + "category": "Devices", + "tags": ["device", "heart", "monitor", "hospital", "rate", "healthcare", "health", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f060" + }, + "device-ipad-horizontal": { + "name": "device-ipad-horizontal", + "category": "Devices", + "tags": ["device", "ipad", "horizontal", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f647" + }, + "device-ipad": { + "name": "device-ipad", + "category": "Devices", + "tags": ["device", "ipad", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f648" + }, + "device-landline-phone": { + "name": "device-landline-phone", + "category": "Devices", + "tags": ["device", "landline", "phone", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f649" + }, + "device-laptop-off": { + "name": "device-laptop-off", + "category": "Devices", + "tags": ["device", "laptop", "off", "workstation", "mac", "notebook", "portable", "screen", "computer", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f061" + }, + "device-laptop": { + "name": "device-laptop", + "category": "Devices", + "tags": ["device", "laptop", "workstation", "mac", "notebook", "portable", "screen", "computer", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb64" + }, + "device-mobile-charging": { + "name": "device-mobile-charging", + "category": "Devices", + "tags": ["device", "mobile", "charging", "battery", "charge", "wireless", "cable", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f224" + }, + "device-mobile-message": { + "name": "device-mobile-message", + "category": "Devices", + "tags": ["device", "mobile", "message", "iphone", "phone", "smartphone", "cellphone", "sms", "texting", "chat", "text", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee79" + }, + "device-mobile-off": { + "name": "device-mobile-off", + "category": "Devices", + "tags": ["device", "mobile", "off", "iphone", "phone", "smartphone", "cellphone", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f062" + }, + "device-mobile-rotated": { + "name": "device-mobile-rotated", + "category": "Devices", + "tags": ["device", "mobile", "rotated", "iphone", "phone", "smartphone", "cellphone", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecdb" + }, + "device-mobile-vibration": { + "name": "device-mobile-vibration", + "category": "Devices", + "tags": ["device", "mobile", "vibration", "iphone", "phone", "smartphone", "cellphone", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb86" + }, + "device-mobile": { + "name": "device-mobile", + "category": "Devices", + "tags": ["device", "mobile", "iphone", "phone", "smartphone", "cellphone", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea8a" + }, + "device-nintendo-off": { + "name": "device-nintendo-off", + "category": "Devices", + "tags": ["device", "nintendo", "off", "gamepad", "technology", "game", "console", "controller", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f111" + }, + "device-nintendo": { + "name": "device-nintendo", + "category": "Devices", + "tags": ["device", "nintendo", "gamepad", "technology", "game", "console", "controller", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f026" + }, + "device-sd-card": { + "name": "device-sd-card", + "category": "Devices", + "tags": ["device", "sd", "card", "memory", "storage", "technology", "data", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f384" + }, + "device-sim-1": { + "name": "device-sim-1", + "category": "Devices", + "tags": ["device", "sim", "1", "card", "phone", "mobile", "smartphone", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4af" + }, + "device-sim-2": { + "name": "device-sim-2", + "category": "Devices", + "tags": ["device", "sim", "2", "card", "phone", "mobile", "smartphone", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b0" + }, + "device-sim-3": { + "name": "device-sim-3", + "category": "Devices", + "tags": ["device", "sim", "3", "card", "phone", "mobile", "smartphone", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b1" + }, + "device-sim": { + "name": "device-sim", + "category": "Devices", + "tags": ["device", "sim", "card", "phone", "mobile", "smartphone", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b2" + }, + "device-speaker-off": { + "name": "device-speaker-off", + "category": "Devices", + "tags": ["device", "speaker", "off", "sound", "music", "loud", "audio", "media", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f112" + }, + "device-speaker": { + "name": "device-speaker", + "category": "Devices", + "tags": ["device", "speaker", "sound", "music", "loud", "audio", "media", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ea8b" + }, + "device-tablet-off": { + "name": "device-tablet-off", + "category": "Devices", + "tags": ["device", "tablet", "off", "ipad", "mobile", "touchscreen", "portable", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f063" + }, + "device-tablet": { + "name": "device-tablet", + "category": "Devices", + "tags": ["device", "tablet", "ipad", "mobile", "touchscreen", "portable", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea8c" + }, + "device-tv-off": { + "name": "device-tv-off", + "category": "Devices", + "tags": ["device", "tv", "off", "screen", "display", "movie", "film", "watch", "audio", "video", "media", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f064" + }, + "device-tv-old": { + "name": "device-tv-old", + "category": "Devices", + "tags": ["device", "tv", "old", "film", "watch", "audio", "video", "media", "retro", "antenna", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d3" + }, + "device-tv": { + "name": "device-tv", + "category": "Devices", + "tags": ["device", "tv", "screen", "display", "movie", "film", "watch", "audio", "video", "media", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea8d" + }, + "device-watch-off": { + "name": "device-watch-off", + "category": "Devices", + "tags": ["device", "watch", "off", "arm", "hour", "date", "minutes", "sec.", "timer", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f065" + }, + "device-watch-stats-2": { + "name": "device-watch-stats-2", + "category": "Devices", + "tags": ["device", "watch", "stats", "2", "steps", "pulse", "hour", "date", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef7c" + }, + "device-watch-stats": { + "name": "device-watch-stats", + "category": "Devices", + "tags": ["device", "watch", "stats", "steps", "pulse", "hour", "date", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef7d" + }, + "device-watch": { + "name": "device-watch", + "category": "Devices", + "tags": ["device", "watch", "arm", "hour", "date", "minutes", "sec.", "timer", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebf9" + }, + "devices-2": { + "name": "devices-2", + "category": "Devices", + "tags": ["devices", "2", "computer", "monitor", "keyboard", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed29" + }, + "devices-off": { + "name": "devices-off", + "category": "Devices", + "tags": ["devices", "off", "computer", "laptop", "notebook", "tablet", "phone", "mobile", "mac", "iphone", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e4" + }, + "devices-pc-off": { + "name": "devices-pc-off", + "category": "Devices", + "tags": ["devices", "pc", "off", "computer", "monitor", "keyboard", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f113" + }, + "devices-pc": { + "name": "devices-pc", + "category": "Devices", + "tags": ["devices", "pc", "computer", "monitor", "keyboard", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee7a" + }, + "devices": { + "name": "devices", + "category": "Devices", + "tags": ["devices", "computer", "laptop", "notebook", "tablet", "phone", "mobile", "mac", "iphone", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb87" + }, + "dialpad-off": { + "name": "dialpad-off", + "category": "", + "tags": ["dialpad", "off", "keypad", "telephone", "phone", "call", "number", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f114" + }, + "dialpad": { + "name": "dialpad", + "category": "", + "tags": ["dialpad", "keypad", "telephone", "phone", "call", "number", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f067" + }, + "diamond-off": { + "name": "diamond-off", + "category": "", + "tags": ["diamond", "off", "jewellery", "crystal", "mineral", "jewelry", "ring", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f115" + }, + "diamond": { + "name": "diamond", + "category": "", + "tags": ["diamond", "jewellery", "crystal", "mineral", "jewelry", "ring", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb65" + }, + "diamonds-filled": { + "name": "diamonds-filled", + "category": "Filled", + "tags": ["diamonds", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f676" + }, + "diamonds": { + "name": "diamonds", + "category": "Shapes", + "tags": ["diamonds", "gambling", "game", "casino", "cards", "poker", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff5" + }, + "dice-1": { + "name": "dice-1", + "category": "", + "tags": ["dice", "1", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f08b" + }, + "dice-2": { + "name": "dice-2", + "category": "", + "tags": ["dice", "2", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f08c" + }, + "dice-3": { + "name": "dice-3", + "category": "", + "tags": ["dice", "3", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f08d" + }, + "dice-4": { + "name": "dice-4", + "category": "", + "tags": ["dice", "4", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f08e" + }, + "dice-5": { + "name": "dice-5", + "category": "", + "tags": ["dice", "5", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f08f" + }, + "dice-6": { + "name": "dice-6", + "category": "", + "tags": ["dice", "6", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f090" + }, + "dice": { + "name": "dice", + "category": "", + "tags": ["dice", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb66" + }, + "dimensions": { + "name": "dimensions", + "category": "Design", + "tags": ["dimensions", "width", "height", "size", "breadth", "depth", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee7b" + }, + "direction-horizontal": { + "name": "direction-horizontal", + "category": "", + "tags": ["direction", "horizontal", "travel", "navigation discover", "plane", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebfa" + }, + "direction-sign-off": { + "name": "direction-sign-off", + "category": "", + "tags": ["direction", "sign", "off", "arrow", "navigation", "forward", "right", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e5" + }, + "direction-sign": { + "name": "direction-sign", + "category": "", + "tags": ["direction", "sign", "arrow", "navigation", "forward", "right", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f7" + }, + "direction": { + "name": "direction", + "category": "", + "tags": ["direction", "travel", "navigation discover", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ebfb" + }, + "directions-off": { + "name": "directions-off", + "category": "Map", + "tags": ["directions", "off", "travel", "navigation", "discover", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f116" + }, + "directions": { + "name": "directions", + "category": "Map", + "tags": ["directions", "travel", "navigation", "discover", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea8e" + }, + "disabled-2": { + "name": "disabled-2", + "category": "Health", + "tags": ["disabled", "2", "wheelchair", "accessible", "handicapped", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebaf" + }, + "disabled-off": { + "name": "disabled-off", + "category": "Health", + "tags": ["disabled", "off", "wheelchair", "handicapped", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f117" + }, + "disabled": { + "name": "disabled", + "category": "Health", + "tags": ["disabled", "wheelchair", "handicapped", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea8f" + }, + "disc-golf": { + "name": "disc-golf", + "category": "Sport", + "tags": ["disc", "golf", "frisbee", "throw", "sport", "activity", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f385" + }, + "disc-off": { + "name": "disc-off", + "category": "Devices", + "tags": ["disc", "off", "cd", "music", "album", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f118" + }, + "disc": { + "name": "disc", + "category": "Devices", + "tags": ["disc", "cd", "music", "album", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea90" + }, + "discount-2-off": { + "name": "discount-2-off", + "category": "E-commerce", + "tags": ["discount", "2", "off", "sale", "reduction", "price", "cost", "money", "shopping", "bargain", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e6" + }, + "discount-2": { + "name": "discount-2", + "category": "E-commerce", + "tags": ["discount", "2", "sale", "reduction", "price", "cost", "money", "shopping", "bargain", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ee7c" + }, + "discount-check": { + "name": "discount-check", + "category": "", + "tags": ["discount", "check", "reduction", "price", "cost", "money", "shopping", "bargain", "tick", "done", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f8" + }, + "discount-off": { + "name": "discount-off", + "category": "E-commerce", + "tags": ["discount", "off", "sale", "reduction", "price", "cost", "money", "shopping", "bargain", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e7" + }, + "discount": { + "name": "discount", + "category": "E-commerce", + "tags": ["discount", "sale", "reduction", "price", "cost", "money", "shopping", "bargain", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ebbd" + }, + "divide": { + "name": "divide", + "category": "Math", + "tags": ["divide", "separate", "element", "multiple", "apart", "separator", "parts", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed5c" + }, + "dna-2-off": { + "name": "dna-2-off", + "category": "Health", + "tags": ["dna", "2", "off", "genetics", "biology", "chain", "genetic", "code", "virus", "organism", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f119" + }, + "dna-2": { + "name": "dna-2", + "category": "Health", + "tags": ["dna", "2", "genetics", "biology", "chain", "genetic", "code", "virus", "organism", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5c" + }, + "dna-off": { + "name": "dna-off", + "category": "Health", + "tags": ["dna", "off", "genetics", "biology", "chain", "genetic", "code", "virus", "organism", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11a" + }, + "dna": { + "name": "dna", + "category": "Health", + "tags": ["dna", "genetics", "biology", "chain", "genetic", "code", "virus", "organism", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee7d" + }, + "dog-bowl": { + "name": "dog-bowl", + "category": "Food", + "tags": ["dog", "bowl", "pet", "food", "animal", "bone", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef29" + }, + "dog": { + "name": "dog", + "category": "Animals", + "tags": ["dog", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f660" + }, + "door-enter": { + "name": "door-enter", + "category": "", + "tags": ["door", "enter", "entrance", "open", "in", "entry", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef4c" + }, + "door-exit": { + "name": "door-exit", + "category": "", + "tags": ["door", "exit", "out", "close", "leave", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef4d" + }, + "door-off": { + "name": "door-off", + "category": "", + "tags": ["door", "off", "entrance", "home", "house", "room", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11b" + }, + "door": { + "name": "door", + "category": "", + "tags": ["door", "entrance", "home", "house", "room", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef4e" + }, + "dots-circle-horizontal": { + "name": "dots-circle-horizontal", + "category": "System", + "tags": ["dots", "circle", "horizontal", "more", "options", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea91" + }, + "dots-diagonal-2": { + "name": "dots-diagonal-2", + "category": "System", + "tags": ["dots", "diagonal", "2", "hellip", "more", "ellipsis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea92" + }, + "dots-diagonal": { + "name": "dots-diagonal", + "category": "System", + "tags": ["dots", "diagonal", "hellip", "more", "ellipsis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea93" + }, + "dots-vertical": { + "name": "dots-vertical", + "category": "System", + "tags": ["dots", "vertical", "hellip", "more", "ellipsis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea94" + }, + "dots": { + "name": "dots", + "category": "System", + "tags": ["dots", "hellip", "more", "ellipsis", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea95" + }, + "download-off": { + "name": "download-off", + "category": "Arrows", + "tags": ["download", "off", "save", "arrow", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11c" + }, + "download": { + "name": "download", + "category": "Arrows", + "tags": ["download", "save", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea96" + }, + "drag-drop-2": { + "name": "drag-drop-2", + "category": "Design", + "tags": ["drag", "drop", "2", "location", "gesture", "move", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb88" + }, + "drag-drop": { + "name": "drag-drop", + "category": "Design", + "tags": ["drag", "drop", "location", "gesture", "move", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb89" + }, + "drone-off": { + "name": "drone-off", + "category": "Vehicles", + "tags": ["drone", "off", "device", "fly", "aircraft", "surveillance", "control", "autonomous", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee7e" + }, + "drone": { + "name": "drone", + "category": "Vehicles", + "tags": ["drone", "device", "fly", "aircraft", "surveillance", "control", "autonomous", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed79" + }, + "drop-circle": { + "name": "drop-circle", + "category": "", + "tags": ["drop", "circle", "water", "rain", "droplet", "oil", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efde" + }, + "droplet-filled-2": { + "name": "droplet-filled-2", + "category": "Design", + "tags": ["droplet", "filled", "2", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee7f" + }, + "droplet-filled": { + "name": "droplet-filled", + "category": "Filled", + "tags": ["droplet", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f677" + }, + "droplet-half-2": { + "name": "droplet-half-2", + "category": "Design", + "tags": ["droplet", "half", "2", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee81" + }, + "droplet-half-filled": { + "name": "droplet-half-filled", + "category": "Design", + "tags": ["droplet", "half", "filled", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee80" + }, + "droplet-half": { + "name": "droplet-half", + "category": "Design", + "tags": ["droplet", "half", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee82" + }, + "droplet-off": { + "name": "droplet-off", + "category": "Design", + "tags": ["droplet", "off", "water", "rain", "liquid", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee83" + }, + "droplet": { + "name": "droplet", + "category": "Design", + "tags": ["droplet", "water", "rain", "liquid", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea97" + }, + "e-passport": { + "name": "e-passport", + "category": "", + "tags": ["e", "passport", "id", "online", "mobile", "app", "travel", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4df" + }, + "ear-off": { + "name": "ear-off", + "category": "Health", + "tags": ["ear", "off", "sound", "listen", "music", "hear", "loud", "speakers", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee84" + }, + "ear": { + "name": "ear", + "category": "Health", + "tags": ["ear", "sound", "listen", "music", "hear", "loud", "speakers", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebce" + }, + "ease-in-control-point": { + "name": "ease-in-control-point", + "category": "Design", + "tags": ["ease", "in", "control", "point", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f570" + }, + "ease-in-out-control-points": { + "name": "ease-in-out-control-points", + "category": "Design", + "tags": ["ease", "in", "out", "control", "points", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f571" + }, + "ease-in-out": { + "name": "ease-in-out", + "category": "Design", + "tags": ["ease", "in", "out", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f572" + }, + "ease-in": { + "name": "ease-in", + "category": "Design", + "tags": ["ease", "in", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f573" + }, + "ease-out-control-point": { + "name": "ease-out-control-point", + "category": "Design", + "tags": ["ease", "out", "control", "point", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f574" + }, + "ease-out": { + "name": "ease-out", + "category": "Design", + "tags": ["ease", "out", "animation", "graph", "curve", "function", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f575" + }, + "edit-circle-off": { + "name": "edit-circle-off", + "category": "Design", + "tags": ["edit", "circle", "off", "pencil", "change", "update", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11d" + }, + "edit-circle": { + "name": "edit-circle", + "category": "Design", + "tags": ["edit", "circle", "pencil", "change", "update", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee85" + }, + "edit-off": { + "name": "edit-off", + "category": "Design", + "tags": ["edit", "off", "pencil", "change", "update", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11e" + }, + "edit": { + "name": "edit", + "category": "Design", + "tags": ["edit", "pencil", "change", "update", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea98" + }, + "egg-cracked": { + "name": "egg-cracked", + "category": "Food", + "tags": ["egg", "cracked", "breaking", "broken", "food", "breakfast", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d6" + }, + "egg-filled": { + "name": "egg-filled", + "category": "Filled", + "tags": ["egg", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f678" + }, + "egg-fried": { + "name": "egg-fried", + "category": "Food", + "tags": ["egg", "fried", "food", "breakfast", "cooking", "kitchen", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f386" + }, + "egg-off": { + "name": "egg-off", + "category": "Food", + "tags": ["egg", "off", "food", "easter", "chicken", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f11f" + }, + "egg": { + "name": "egg", + "category": "Food", + "tags": ["egg", "food", "easter", "chicken", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8a" + }, + "eggs": { + "name": "eggs", + "category": "Food", + "tags": ["eggs", "food", "chicken", "easter", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f500" + }, + "elevator-off": { + "name": "elevator-off", + "category": "", + "tags": ["elevator", "off", "hotel", "up", "down", "service", "door", "lift", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e8" + }, + "elevator": { + "name": "elevator", + "category": "", + "tags": ["elevator", "hotel", "up", "down", "service", "door", "lift", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efdf" + }, + "emergency-bed": { + "name": "emergency-bed", + "category": "Health", + "tags": ["emergency", "bed", "hospital", "medical", "patient", "medicine", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5d" + }, + "empathize-off": { + "name": "empathize-off", + "category": "Health", + "tags": ["empathize", "off", "pepole", "understund", "thinking", "care", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3e9" + }, + "empathize": { + "name": "empathize", + "category": "Health", + "tags": ["empathize", "pepole", "understund", "thinking", "care", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29b" + }, + "emphasis": { + "name": "emphasis", + "category": "Text", + "tags": ["emphasis", "highlight", "priority", "stress", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebcf" + }, + "engine-off": { + "name": "engine-off", + "category": "Vehicles", + "tags": ["engine", "off", "car", "motor", "automotive", "dashboard", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f120" + }, + "engine": { + "name": "engine", + "category": "Vehicles", + "tags": ["engine", "car", "motor", "automotive", "dashboard", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef7e" + }, + "equal-double": { + "name": "equal-double", + "category": "Math", + "tags": ["equal", "double", "coding", "programming", "code", "sign", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e1" + }, + "equal-not": { + "name": "equal-not", + "category": "Math", + "tags": ["equal", "not", "maths", "mathematics", "equation", "different", "value", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee86" + }, + "equal": { + "name": "equal", + "category": "Math", + "tags": ["equal", "maths", "mathematics", "equation", "same", "value", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee87" + }, + "eraser-off": { + "name": "eraser-off", + "category": "Text", + "tags": ["eraser", "off", "delete", "remove", "eliminate", "wipe-out", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f121" + }, + "eraser": { + "name": "eraser", + "category": "Text", + "tags": ["eraser", "delete", "remove", "eliminate", "wipe-out", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8b" + }, + "error-404-off": { + "name": "error-404-off", + "category": "", + "tags": ["error", "404", "off", "web", "page", "not", "found", "message", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f122" + }, + "error-404": { + "name": "error-404", + "category": "", + "tags": ["error", "404", "web", "page", "not", "found", "message", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f027" + }, + "exchange-off": { + "name": "exchange-off", + "category": "", + "tags": ["exchange", "off", "cantor", "money", "product", "product", "student", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f123" + }, + "exchange": { + "name": "exchange", + "category": "", + "tags": ["exchange", "cantor", "money", "product", "product", "student", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe7" + }, + "exclamation-circle": { + "name": "exclamation-circle", + "category": "", + "tags": ["exclamation", "circle", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f634" + }, + "exclamation-mark-off": { + "name": "exclamation-mark-off", + "category": "", + "tags": ["exclamation", "mark", "off", "warning", "caution", "alert", "danger", "!", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f124" + }, + "exclamation-mark": { + "name": "exclamation-mark", + "category": "", + "tags": ["exclamation", "mark", "warning", "caution", "alert", "danger", "!", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb4" + }, + "explicit-off": { + "name": "explicit-off", + "category": "", + "tags": ["explicit", "off", "adult", "content", "xxx", "curse", "words", "porn", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ea" + }, + "explicit": { + "name": "explicit", + "category": "", + "tags": ["explicit", "adult", "content", "xxx", "curse", "words", "porn", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f256" + }, + "exposure-0": { + "name": "exposure-0", + "category": "Photography", + "tags": ["exposure", "0", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29c" + }, + "exposure-minus-1": { + "name": "exposure-minus-1", + "category": "Photography", + "tags": ["exposure", "minus", "1", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29d" + }, + "exposure-minus-2": { + "name": "exposure-minus-2", + "category": "Photography", + "tags": ["exposure", "minus", "2", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29e" + }, + "exposure-off": { + "name": "exposure-off", + "category": "Photography", + "tags": ["exposure", "off", "light", "bright", "dark", "camera", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3eb" + }, + "exposure-plus-1": { + "name": "exposure-plus-1", + "category": "Photography", + "tags": ["exposure", "plus", "1", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f29f" + }, + "exposure-plus-2": { + "name": "exposure-plus-2", + "category": "Photography", + "tags": ["exposure", "plus", "2", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a0" + }, + "exposure": { + "name": "exposure", + "category": "Photography", + "tags": ["exposure", "light", "bright", "dark", "camera", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8c" + }, + "external-link-off": { + "name": "external-link-off", + "category": "System", + "tags": ["external", "link", "off", "connection", "outbound", "redirect", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f125" + }, + "external-link": { + "name": "external-link", + "category": "System", + "tags": ["external", "link", "connection", "outbound", "redirect", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea99" + }, + "eye-check": { + "name": "eye-check", + "category": "Health", + "tags": ["eye", "check", "sight", "visual", "view", "public", "approve", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee88" + }, + "eye-filled": { + "name": "eye-filled", + "category": "Filled", + "tags": ["eye", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f679" + }, + "eye-off": { + "name": "eye-off", + "category": "Health", + "tags": ["eye", "off", "view", "watch", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf0" + }, + "eye-table": { + "name": "eye-table", + "category": "Health", + "tags": ["eye", "table", "vision", "sight", "text", "ophthalmology", "disease", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5e" + }, + "eye": { + "name": "eye", + "category": "Health", + "tags": ["eye", "view", "watch", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9a" + }, + "eyeglass-2": { + "name": "eyeglass-2", + "category": "Health", + "tags": ["eyeglass", "2", "sight", "defect", "see", "vision", "frames", "lenses", "visually", "impaired", "myopia", "far-sighted", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee89" + }, + "eyeglass-off": { + "name": "eyeglass-off", + "category": "Health", + "tags": ["eyeglass", "off", "sight", "defect", "see", "vision", "frames", "lenses", "visually", "impaired", "myopia", "far-sighted", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f126" + }, + "eyeglass": { + "name": "eyeglass", + "category": "Health", + "tags": ["eyeglass", "sight", "defect", "see", "vision", "frames", "lenses", "visually", "impaired", "myopia", "far-sighted", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8a" + }, + "face-id-error": { + "name": "face-id-error", + "category": "", + "tags": ["face", "id", "error", "scan", "apple", "iphone", "ipad", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa7" + }, + "face-id": { + "name": "face-id", + "category": "", + "tags": ["face", "id", "apple", "iphone", "ipad", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9b" + }, + "face-mask-off": { + "name": "face-mask-off", + "category": "Health", + "tags": ["face", "mask", "off", "coronavirus", "virus", "medical", "hospital", "doctor", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f127" + }, + "face-mask": { + "name": "face-mask", + "category": "Health", + "tags": ["face", "mask", "coronavirus", "virus", "medical", "hospital", "doctor", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb5" + }, + "fall": { + "name": "fall", + "category": "Health", + "tags": ["fall", "collapse", "damage", "cliff", "height", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecb9" + }, + "feather-off": { + "name": "feather-off", + "category": "Nature", + "tags": ["feather", "off", "bird", "animal", "nature", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f128" + }, + "feather": { + "name": "feather", + "category": "Nature", + "tags": ["feather", "bird", "animal", "nature", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8b" + }, + "fence-off": { + "name": "fence-off", + "category": "Buildings", + "tags": ["fence", "off", "garden", "home", "house", "farm", "wood", "barrier", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f129" + }, + "fence": { + "name": "fence", + "category": "Buildings", + "tags": ["fence", "garden", "home", "house", "farm", "wood", "barrier", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2a" + }, + "fidget-spinner": { + "name": "fidget-spinner", + "category": "", + "tags": ["fidget", "spinner", "toy", "spinning", "gadget", "kids", "children", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f068" + }, + "file-3d": { + "name": "file-3d", + "category": "Document", + "tags": ["file", "3d", "model", "document", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f032" + }, + "file-alert": { + "name": "file-alert", + "category": "Document", + "tags": ["file", "alert", "danger", "risk", "warning", "check", "caution", "document", "error", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede6" + }, + "file-analytics": { + "name": "file-analytics", + "category": "Document", + "tags": ["file", "analytics", "data", "statistics", "report", "chart", "document", "paper", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede7" + }, + "file-arrow-left": { + "name": "file-arrow-left", + "category": "Document", + "tags": ["file", "arrow", "left", "document", "import", "page", "move", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f033" + }, + "file-arrow-right": { + "name": "file-arrow-right", + "category": "Document", + "tags": ["file", "arrow", "right", "document", "export", "page", "move", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f034" + }, + "file-barcode": { + "name": "file-barcode", + "category": "Document", + "tags": ["file", "barcode", "document", "code", "qr", "ticket", "scan", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f035" + }, + "file-broken": { + "name": "file-broken", + "category": "Document", + "tags": ["file", "broken", "document", "error", "demaged", "delete", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f501" + }, + "file-certificate": { + "name": "file-certificate", + "category": "Document", + "tags": ["file", "certificate", "certificate", "license", "diploma", "document", "format", "data", "paper", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed4d" + }, + "file-chart": { + "name": "file-chart", + "category": "Document", + "tags": ["file", "chart", "data", "graph", "analytics", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f036" + }, + "file-check": { + "name": "file-check", + "category": "Document", + "tags": ["file", "check", "list", "document", "accept", "done", "tick", "checkmark", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9c" + }, + "file-code-2": { + "name": "file-code-2", + "category": "Document", + "tags": ["file", "code", "2", "programming", "document", "developer", "technology", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede8" + }, + "file-code": { + "name": "file-code", + "category": "Document", + "tags": ["file", "code", "paper", "new", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd0" + }, + "file-database": { + "name": "file-database", + "category": "Document", + "tags": ["file", "database", "data", "storage", "folder", "format", "server", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f037" + }, + "file-delta": { + "name": "file-delta", + "category": "Document", + "tags": ["file", "delta", "data", "document", "extension", "paper", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53d" + }, + "file-description": { + "name": "file-description", + "category": "Document", + "tags": ["file", "description", "text", "paper", "report", "details", "job", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f028" + }, + "file-diff": { + "name": "file-diff", + "category": "Document", + "tags": ["file", "diff", "add", "create", "new", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf1" + }, + "file-digit": { + "name": "file-digit", + "category": "Document", + "tags": ["file", "digit", "boolean", "binary", "exe", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa8" + }, + "file-dislike": { + "name": "file-dislike", + "category": "Document", + "tags": ["file", "dislike", "rejected", "document", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2a" + }, + "file-dollar": { + "name": "file-dollar", + "category": "Document", + "tags": ["file", "dollar", "money", "finance", "invoice", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe0" + }, + "file-dots": { + "name": "file-dots", + "category": "Document", + "tags": ["file", "dots", "more", "menu", "info", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f038" + }, + "file-download": { + "name": "file-download", + "category": "Document", + "tags": ["file", "download", "save", "transfer", "input", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9d" + }, + "file-euro": { + "name": "file-euro", + "category": "Document", + "tags": ["file", "euro", "money", "finance", "buisness", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe1" + }, + "file-export": { + "name": "file-export", + "category": "Document", + "tags": ["file", "export", "arrow", "data", "paper", "document", "format", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "ede9" + }, + "file-function": { + "name": "file-function", + "category": "Document", + "tags": ["file", "function", "data", "document", "extension", "paper", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53e" + }, + "file-horizontal": { + "name": "file-horizontal", + "category": "Document", + "tags": ["file", "horizontal", "paper", "new", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb0" + }, + "file-import": { + "name": "file-import", + "category": "Document", + "tags": ["file", "import", "arrow", "data", "paper", "document", "format", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "edea" + }, + "file-infinity": { + "name": "file-infinity", + "category": "Document", + "tags": ["file", "infinity", "document", "eternity", "sync", "loop", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f502" + }, + "file-info": { + "name": "file-info", + "category": "Document", + "tags": ["file", "info", "info", "information", "informations", "paper", "file", "document", "page", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edec" + }, + "file-invoice": { + "name": "file-invoice", + "category": "Document", + "tags": ["file", "invoice", "accounting", "bill", "statement", "settlement", "finance", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb67" + }, + "file-lambda": { + "name": "file-lambda", + "category": "Document", + "tags": ["file", "lambda", "data", "document", "extension", "paper", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f53f" + }, + "file-like": { + "name": "file-like", + "category": "Document", + "tags": ["file", "like", "approved", "document", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2b" + }, + "file-minus": { + "name": "file-minus", + "category": "Document", + "tags": ["file", "minus", "remove", "delete", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9e" + }, + "file-music": { + "name": "file-music", + "category": "Document", + "tags": ["file", "music", "mp3", "wma", "wav", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ea9f" + }, + "file-off": { + "name": "file-off", + "category": "Document", + "tags": ["file", "off", "paper", "new", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf2" + }, + "file-orientation": { + "name": "file-orientation", + "category": "Document", + "tags": ["file", "orientation", "document", "arrow", "change", "modify", "page", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a1" + }, + "file-pencil": { + "name": "file-pencil", + "category": "Document", + "tags": ["file", "pencil", "edit", "write", "editing", "text", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f039" + }, + "file-percent": { + "name": "file-percent", + "category": "Document", + "tags": ["file", "percent", "data", "document", "extension", "paper", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f540" + }, + "file-phone": { + "name": "file-phone", + "category": "Document", + "tags": ["file", "phone", "save", "transfer", "input", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecdc" + }, + "file-plus": { + "name": "file-plus", + "category": "Document", + "tags": ["file", "plus", "add", "create", "new", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa0" + }, + "file-power": { + "name": "file-power", + "category": "Document", + "tags": ["file", "power", "archive", "energy", "battery", "ecology", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03a" + }, + "file-report": { + "name": "file-report", + "category": "Document", + "tags": ["file", "report", "stats", "data", "paper", "document", "chart", "format", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "eded" + }, + "file-rss": { + "name": "file-rss", + "category": "Document", + "tags": ["file", "rss", "extension", "format", "news", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03b" + }, + "file-scissors": { + "name": "file-scissors", + "category": "Document", + "tags": ["file", "scissors", "cut", "cutting", "tool", "cutter", "office", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03c" + }, + "file-search": { + "name": "file-search", + "category": "Document", + "tags": ["file", "search", "search", "data", "paper", "document", "format", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed5d" + }, + "file-settings": { + "name": "file-settings", + "category": "Document", + "tags": ["file", "settings", "edit", "options", "configuration", "control", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f029" + }, + "file-shredder": { + "name": "file-shredder", + "category": "Document", + "tags": ["file", "shredder", "shred", "destroy", "cut", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa1" + }, + "file-signal": { + "name": "file-signal", + "category": "Document", + "tags": ["file", "signal", "wi-fi", "connection", "internet", "online", "connected", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03d" + }, + "file-spreadsheet": { + "name": "file-spreadsheet", + "category": "Document", + "tags": ["file", "spreadsheet", "table", "extension", "excel", "format", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03e" + }, + "file-stack": { + "name": "file-stack", + "category": "Document", + "tags": ["file", "stack", "document", "duplicate", "data", "add", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f503" + }, + "file-star": { + "name": "file-star", + "category": "Document", + "tags": ["file", "star", "favourite", "bookmark", "like", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f03f" + }, + "file-symlink": { + "name": "file-symlink", + "category": "Document", + "tags": ["file", "symlink", "text", "format", "extension", "document", "format", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed53" + }, + "file-text": { + "name": "file-text", + "category": "Document", + "tags": ["file", "text", "data", "pdf", "txt", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa2" + }, + "file-time": { + "name": "file-time", + "category": "Document", + "tags": ["file", "time", "clock", "planning", "history", "watch", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f040" + }, + "file-typography": { + "name": "file-typography", + "category": "Document", + "tags": ["file", "typography", "font", "text", "format", "type", "size", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f041" + }, + "file-unknown": { + "name": "file-unknown", + "category": "Document", + "tags": ["file", "unknown", "missing", "unidentified", "anonymous", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f042" + }, + "file-upload": { + "name": "file-upload", + "category": "Document", + "tags": ["file", "upload", "save", "transfer", "input", "icon", "stroke", "outline"], + "version": "1.15", + "unicode": "ec91" + }, + "file-vector": { + "name": "file-vector", + "category": "Document", + "tags": ["file", "vector", "graphic", "eps", "format", "svg", "icon", "stroke", "outline"], + "version": "1.56", + "unicode": "f043" + }, + "file-x": { + "name": "file-x", + "category": "Document", + "tags": ["file", "x", "remove", "delete", "erase", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa3" + }, + "file-zip": { + "name": "file-zip", + "category": "Document", + "tags": ["file", "zip", "forms", "documents", "stack", "letter", "archive", "rar", "zipped", "extention", "bundle", "format", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed4e" + }, + "file": { + "name": "file", + "category": "Document", + "tags": ["file", "paper", "new", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa4" + }, + "files-off": { + "name": "files-off", + "category": "Document", + "tags": ["files", "off", "forms", "documents", "stack", "letter", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edee" + }, + "files": { + "name": "files", + "category": "Document", + "tags": ["files", "forms", "documents", "stack", "letter", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edef" + }, + "filter-off": { + "name": "filter-off", + "category": "System", + "tags": ["filter", "off", "funnel", "hopper", "filtration", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2c" + }, + "filter": { + "name": "filter", + "category": "System", + "tags": ["filter", "funnel", "hopper", "filtration", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa5" + }, + "fingerprint-off": { + "name": "fingerprint-off", + "category": "", + "tags": ["fingerprint", "off", "indentify", "mark", "surface", "security", "access", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12a" + }, + "fingerprint": { + "name": "fingerprint", + "category": "", + "tags": ["fingerprint", "indentify", "mark", "surface", "security", "access", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd1" + }, + "fire-hydrant-off": { + "name": "fire-hydrant-off", + "category": "", + "tags": ["fire", "hydrant", "off", "water", "emergency", "fireman", "safety", "urban", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ec" + }, + "fire-hydrant": { + "name": "fire-hydrant", + "category": "", + "tags": ["fire", "hydrant", "water", "emergency", "fireman", "safety", "urban", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3a9" + }, + "firetruck": { + "name": "firetruck", + "category": "Vehicles", + "tags": ["firetruck", "help", "rescuer", "vehicle", "fireman", "extinguishing", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe8" + }, + "first-aid-kit-off": { + "name": "first-aid-kit-off", + "category": "Health", + "tags": ["first", "aid", "kit", "off", "medical", "healthcare", "hospital", "health", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ed" + }, + "first-aid-kit": { + "name": "first-aid-kit", + "category": "Health", + "tags": ["first", "aid", "kit", "medical", "healthcare", "hospital", "health", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef5f" + }, + "fish-bone": { + "name": "fish-bone", + "category": "Animals", + "tags": ["fish", "bone", "food", "skeleton", "cat", "sea", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f287" + }, + "fish-christianity": { + "name": "fish-christianity", + "category": "Symbols", + "tags": ["fish", "christianity", "religion", "jesus", "faith", "christian", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58b" + }, + "fish-hook-off": { + "name": "fish-hook-off", + "category": "", + "tags": ["fish", "hook", "off", "fishing", "bait", "hanging", "catch", "water", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ee" + }, + "fish-hook": { + "name": "fish-hook", + "category": "", + "tags": ["fish", "hook", "fishing", "bait", "hanging", "catch", "water", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1f9" + }, + "fish-off": { + "name": "fish-off", + "category": "Animals", + "tags": ["fish", "off", "food", "sea", "animal", "fishing", "ocean", "sushi", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12b" + }, + "fish": { + "name": "fish", + "category": "Animals", + "tags": ["fish", "food", "sea", "animal", "fishing", "ocean", "sushi", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2b" + }, + "flag-2-off": { + "name": "flag-2-off", + "category": "Map", + "tags": ["flag", "2", "off", "banner", "pin", "report", "map", "warning", "alert", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12c" + }, + "flag-2": { + "name": "flag-2", + "category": "Map", + "tags": ["flag", "2", "banner", "pin", "report", "map", "warning", "alert", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8c" + }, + "flag-3": { + "name": "flag-3", + "category": "Map", + "tags": ["flag", "3", "banner", "pin", "report", "map", "warning", "alert", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8d" + }, + "flag-filled": { + "name": "flag-filled", + "category": "Filled", + "tags": ["flag", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67a" + }, + "flag-off": { + "name": "flag-off", + "category": "Map", + "tags": ["flag", "off", "banner", "pin", "report", "map", "warning", "alert", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12d" + }, + "flag": { + "name": "flag", + "category": "Map", + "tags": ["flag", "banner", "pin", "report", "map", "warning", "alert", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa6" + }, + "flame-off": { + "name": "flame-off", + "category": "", + "tags": ["flame", "off", "fire", "fireplace", "light", "burn", "bonfire", "smoke", "barbecue", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12e" + }, + "flame": { + "name": "flame", + "category": "", + "tags": ["flame", "fire", "fireplace", "light", "burn", "bonfire", "smoke", "barbecue", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ec2c" + }, + "flare": { + "name": "flare", + "category": "Weather", + "tags": ["flare", "shine", "flare", "heat", "sunlight", "hot", "sun", "heat", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8e" + }, + "flask-2-off": { + "name": "flask-2-off", + "category": "Health", + "tags": ["flask", "2", "off", "liquid", "container", "glass", "chemistry", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f12f" + }, + "flask-2": { + "name": "flask-2", + "category": "Health", + "tags": ["flask", "2", "liquid", "container", "glass", "chemistry", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef60" + }, + "flask-off": { + "name": "flask-off", + "category": "Health", + "tags": ["flask", "off", "liquid", "container", "glass", "chemistry", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f130" + }, + "flask": { + "name": "flask", + "category": "Health", + "tags": ["flask", "liquid", "container", "glass", "chemistry", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd2" + }, + "flip-flops": { + "name": "flip-flops", + "category": "", + "tags": ["flip", "flops", "summer", "sand", "sandals", "beach", "shoes", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f564" + }, + "flip-horizontal": { + "name": "flip-horizontal", + "category": "Design", + "tags": ["flip", "horizontal", "mirror", "rotate", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa7" + }, + "flip-vertical": { + "name": "flip-vertical", + "category": "Design", + "tags": ["flip", "vertical", "mirror", "rotate", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaa8" + }, + "float-center": { + "name": "float-center", + "category": "Text", + "tags": ["float", "center", "position", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb1" + }, + "float-left": { + "name": "float-left", + "category": "Text", + "tags": ["float", "left", "position", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb2" + }, + "float-none": { + "name": "float-none", + "category": "Text", + "tags": ["float", "none", "position", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed13" + }, + "float-right": { + "name": "float-right", + "category": "Text", + "tags": ["float", "right", "position", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb3" + }, + "flower-off": { + "name": "flower-off", + "category": "Nature", + "tags": ["flower", "off", "plant", "garden", "rose", "lotus", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f131" + }, + "flower": { + "name": "flower", + "category": "Nature", + "tags": ["flower", "plant", "garden", "rose", "lotus", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff6" + }, + "focus-2": { + "name": "focus-2", + "category": "Photography", + "tags": ["focus", "2", "spotlight", "attention", "center", "aim", "target", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd3" + }, + "focus-centered": { + "name": "focus-centered", + "category": "", + "tags": ["focus", "centered", "filter", "photo", "photography", "camera", "image", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02a" + }, + "focus": { + "name": "focus", + "category": "Photography", + "tags": ["focus", "target", "bullseye", "aim", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8d" + }, + "fold-down": { + "name": "fold-down", + "category": "Arrows", + "tags": ["fold", "down", "arrow", "move", "toggle", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed54" + }, + "fold-up": { + "name": "fold-up", + "category": "Arrows", + "tags": ["fold", "up", "arrow", "move", "toggle", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed55" + }, + "fold": { + "name": "fold", + "category": "Arrows", + "tags": ["fold", "arrow", "move", "merge", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed56" + }, + "folder-minus": { + "name": "folder-minus", + "category": "Document", + "tags": ["folder", "minus", "directory", "dir", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaaa" + }, + "folder-off": { + "name": "folder-off", + "category": "Document", + "tags": ["folder", "off", "cancel", "no", "directory", "dir", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed14" + }, + "folder-plus": { + "name": "folder-plus", + "category": "Document", + "tags": ["folder", "plus", "add", "create", "new", "directory", "dir", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaab" + }, + "folder-x": { + "name": "folder-x", + "category": "Document", + "tags": ["folder", "x", "directory", "dir", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaac" + }, + "folder": { + "name": "folder", + "category": "Document", + "tags": ["folder", "cancel", "no", "directory", "dir", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaad" + }, + "folders-off": { + "name": "folders-off", + "category": "Document", + "tags": ["folders", "off", "directory", "dir", "clone", "copy", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f133" + }, + "folders": { + "name": "folders", + "category": "Document", + "tags": ["folders", "directory", "dir", "clone", "copy", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaae" + }, + "forbid-2": { + "name": "forbid-2", + "category": "", + "tags": ["forbid", "2", "access", "restriction", "ban", "limit", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd4" + }, + "forbid": { + "name": "forbid", + "category": "", + "tags": ["forbid", "access", "restriction", "ban", "limit", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd5" + }, + "forklift": { + "name": "forklift", + "category": "Vehicles", + "tags": ["forklift", "store", "warehouse", "inventory", "exporting", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebe9" + }, + "forms": { + "name": "forms", + "category": "Text", + "tags": ["forms", "formbuilder", "input", "url", "textarea", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee8f" + }, + "fountain-off": { + "name": "fountain-off", + "category": "Math", + "tags": ["fountain", "off", "park", "decoration", "water", "spring", "public", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f134" + }, + "fountain": { + "name": "fountain", + "category": "Math", + "tags": ["fountain", "park", "decoration", "water", "spring", "public", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09b" + }, + "frame-off": { + "name": "frame-off", + "category": "Design", + "tags": ["frame", "off", "crop", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f135" + }, + "frame": { + "name": "frame", + "category": "Design", + "tags": ["frame", "crop", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaaf" + }, + "free-rights": { + "name": "free-rights", + "category": "", + "tags": ["free", "rights", "justice", "inviolability", "freedom", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb6" + }, + "fridge-off": { + "name": "fridge-off", + "category": "Devices", + "tags": ["fridge", "off", "kitchen", "cooler", "control", "freezer", "food", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ef" + }, + "fridge": { + "name": "fridge", + "category": "Devices", + "tags": ["fridge", "kitchen", "cooler", "control", "freezer", "food", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1fa" + }, + "friends-off": { + "name": "friends-off", + "category": "", + "tags": ["friends", "off", "people", "boy", "girl", "man", "woman", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f136" + }, + "friends": { + "name": "friends", + "category": "", + "tags": ["friends", "people", "boy", "girl", "man", "woman", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab0" + }, + "function-off": { + "name": "function-off", + "category": "Math", + "tags": ["function", "off", "math", "linear", "statyscics", "graph", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f0" + }, + "function": { + "name": "function", + "category": "Math", + "tags": ["function", "math", "linear", "statyscics", "graph", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f225" + }, + "garden-cart-off": { + "name": "garden-cart-off", + "category": "Vehicles", + "tags": ["garden", "cart", "off", "gardening", "conctruction", "wheel", "wheelbarrow", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f1" + }, + "garden-cart": { + "name": "garden-cart", + "category": "Vehicles", + "tags": ["garden", "cart", "gardening", "conctruction", "wheel", "wheelbarrow", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f23e" + }, + "gas-station-off": { + "name": "gas-station-off", + "category": "Map", + "tags": ["gas", "station", "off", "fuel", "oil", "cars", "vehicles", "shop", "distributor", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f137" + }, + "gas-station": { + "name": "gas-station", + "category": "Vehicles", + "tags": ["gas", "station", "fuel", "oil", "cars", "vehicles", "shop", "distributor", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec7d" + }, + "gauge-off": { + "name": "gauge-off", + "category": "System", + "tags": ["gauge", "off", "car", "dashboard", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f138" + }, + "gauge": { + "name": "gauge", + "category": "System", + "tags": ["gauge", "car", "dashboard", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab1" + }, + "gavel": { + "name": "gavel", + "category": "", + "tags": ["gavel", "justice", "law", "hammer", "legal", "auction", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef90" + }, + "gender-agender": { + "name": "gender-agender", + "category": "Gender", + "tags": ["gender", "agender", "identity", "genderless", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e1" + }, + "gender-androgyne": { + "name": "gender-androgyne", + "category": "Gender", + "tags": ["gender", "androgyne", "identity", "intersex", "feminine", "genderqueer", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e2" + }, + "gender-bigender": { + "name": "gender-bigender", + "category": "Gender", + "tags": ["gender", "bigender", "identity", "female", "bi", "sexual", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e3" + }, + "gender-demiboy": { + "name": "gender-demiboy", + "category": "Gender", + "tags": ["gender", "demiboy", "identity", "demimale", "demi", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e4" + }, + "gender-demigirl": { + "name": "gender-demigirl", + "category": "Gender", + "tags": ["gender", "demigirl", "identity", "demiwoman", "demifemale", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e5" + }, + "gender-epicene": { + "name": "gender-epicene", + "category": "Gender", + "tags": ["gender", "epicene", "identity", "genderqueer", "transgender", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e6" + }, + "gender-female": { + "name": "gender-female", + "category": "Gender", + "tags": ["gender", "female", "identity", "woman", "girl", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e7" + }, + "gender-femme": { + "name": "gender-femme", + "category": "Gender", + "tags": ["gender", "femme", "identity", "lesbian", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e8" + }, + "gender-genderfluid": { + "name": "gender-genderfluid", + "category": "Gender", + "tags": ["gender", "genderfluid", "identity", "indefinite", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0e9" + }, + "gender-genderless": { + "name": "gender-genderless", + "category": "Gender", + "tags": ["gender", "genderless", "identity", "unisex", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0ea" + }, + "gender-genderqueer": { + "name": "gender-genderqueer", + "category": "Gender", + "tags": ["gender", "genderqueer", "identity", "non binary", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0eb" + }, + "gender-hermaphrodite": { + "name": "gender-hermaphrodite", + "category": "Gender", + "tags": ["gender", "hermaphrodite", "identify", "intersexuality", "hybrid", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0ec" + }, + "gender-intergender": { + "name": "gender-intergender", + "category": "Gender", + "tags": ["gender", "intergender", "identity", "transgender", "intersex", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0ed" + }, + "gender-male": { + "name": "gender-male", + "category": "Gender", + "tags": ["gender", "male", "identity", "man", "boy", "person", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0ee" + }, + "gender-neutrois": { + "name": "gender-neutrois", + "category": "Gender", + "tags": ["gender", "neutrois", "identity", "none", "transgender", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0ef" + }, + "gender-third": { + "name": "gender-third", + "category": "Gender", + "tags": ["gender", "third", "identity", "none", "female", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f0" + }, + "gender-transgender": { + "name": "gender-transgender", + "category": "Gender", + "tags": ["gender", "transgender", "identity", "ladyboy", "lgbt", "gay", "homosexual", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f1" + }, + "gender-trasvesti": { + "name": "gender-trasvesti", + "category": "Gender", + "tags": ["gender", "trasvesti", "identity", "birth", "male", "female", "heterosexual", "homosexual", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f2" + }, + "geometry": { + "name": "geometry", + "category": "Map", + "tags": ["geometry", "build", "architecture", "create", "compass", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee90" + }, + "ghost-2": { + "name": "ghost-2", + "category": "", + "tags": ["ghost", "2", "spirit", "transparent", "fairytale", "horror", "movie", "shadow", "haunt", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57c" + }, + "ghost-off": { + "name": "ghost-off", + "category": "", + "tags": ["ghost", "off", "spirit", "transparent", "fairytale", "horror", "movie", "shadow", "haunt", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f2" + }, + "ghost": { + "name": "ghost", + "category": "", + "tags": ["ghost", "spirit", "transparent", "fairytale", "horror", "movie", "shadow", "haunt", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8e" + }, + "gif": { + "name": "gif", + "category": "", + "tags": ["gif", "file", "format", "animation", "image", "extension", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f257" + }, + "gift-card": { + "name": "gift-card", + "category": "", + "tags": ["gift", "card", "coupon", "present", "voucher", "shopping", "birthday", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3aa" + }, + "gift-off": { + "name": "gift-off", + "category": "", + "tags": ["gift", "off", "present", "birthday", "celebration", "wish", "bonus", "souvenire", "surprise", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f3" + }, + "gift": { + "name": "gift", + "category": "", + "tags": ["gift", "present", "birthday", "celebration", "wish", "bonus", "souvenire", "surprise", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb68" + }, + "git-branch-deleted": { + "name": "git-branch-deleted", + "category": "Version control", + "tags": ["git", "branch", "deleted", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57d" + }, + "git-branch": { + "name": "git-branch", + "category": "Version control", + "tags": ["git", "branch", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab2" + }, + "git-cherry-pick": { + "name": "git-cherry-pick", + "category": "Version control", + "tags": ["git", "cherry", "pick", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57e" + }, + "git-commit": { + "name": "git-commit", + "category": "Version control", + "tags": ["git", "commit", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab3" + }, + "git-compare": { + "name": "git-compare", + "category": "Version control", + "tags": ["git", "compare", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab4" + }, + "git-fork": { + "name": "git-fork", + "category": "Version control", + "tags": ["git", "fork", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb8f" + }, + "git-merge": { + "name": "git-merge", + "category": "Version control", + "tags": ["git", "merge", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab5" + }, + "git-pull-request-closed": { + "name": "git-pull-request-closed", + "category": "Version control", + "tags": ["git", "pull", "request", "closed", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef7f" + }, + "git-pull-request-draft": { + "name": "git-pull-request-draft", + "category": "Version control", + "tags": ["git", "pull", "request", "draft", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb7" + }, + "git-pull-request": { + "name": "git-pull-request", + "category": "Version control", + "tags": ["git", "pull", "request", "code", "version control", "command", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab6" + }, + "gizmo": { + "name": "gizmo", + "category": "", + "tags": ["gizmo", "system", "network", "tech", "connection", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02b" + }, + "glass-full": { + "name": "glass-full", + "category": "Food", + "tags": ["glass", "full", "wine", "cup", "goblet", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab7" + }, + "glass-off": { + "name": "glass-off", + "category": "Food", + "tags": ["glass", "off", "wine", "cup", "goblet", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee91" + }, + "glass": { + "name": "glass", + "category": "Food", + "tags": ["glass", "wine", "cup", "goblet", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eab8" + }, + "globe-off": { + "name": "globe-off", + "category": "Map", + "tags": ["globe", "off", "world", "travel", "journey", "trip", "planet", "earth", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f139" + }, + "globe": { + "name": "globe", + "category": "Map", + "tags": ["globe", "world", "travel", "journey", "trip", "planet", "earth", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eab9" + }, + "go-game": { + "name": "go-game", + "category": "", + "tags": ["go", "game", "strategy", "board", "mind", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f512" + }, + "golf-off": { + "name": "golf-off", + "category": "Sport", + "tags": ["golf", "off", "game", "ball", "play", "hole", "club-and-ball", "stroke", "luxury", "pitch", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f13a" + }, + "golf": { + "name": "golf", + "category": "Sport", + "tags": ["golf", "game", "ball", "play", "hole", "club-and-ball", "stroke", "luxury", "pitch", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed8c" + }, + "gps": { + "name": "gps", + "category": "Map", + "tags": ["gps", "navigation", "directions", "global", "positioning", "system", "satnav", "radionavigation", "system", "travel", "car", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7a" + }, + "gradienter": { + "name": "gradienter", + "category": "", + "tags": ["gradienter", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3ab" + }, + "grain": { + "name": "grain", + "category": "", + "tags": ["grain", "dots", "pattern", "random", "round", "circle", "nodes", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee92" + }, + "graph-off": { + "name": "graph-off", + "category": "", + "tags": ["graph", "off", "analytics", "raport", "statistics", "chart", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f4" + }, + "graph": { + "name": "graph", + "category": "", + "tags": ["graph", "analytics", "raport", "statistics", "chart", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f288" + }, + "grave-2": { + "name": "grave-2", + "category": "", + "tags": ["grave", "2", "cementry", "halloween", "death", "dead", "tomb", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f57f" + }, + "grave": { + "name": "grave", + "category": "", + "tags": ["grave", "cemetery", "halloween", "death", "dead", "tomb", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f580" + }, + "grid-dots": { + "name": "grid-dots", + "category": "System", + "tags": ["grid", "dots", "network", "pattern", "layout", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaba" + }, + "grid-pattern": { + "name": "grid-pattern", + "category": "", + "tags": ["grid", "pattern", "grid", "mesh", "net", "line", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efc9" + }, + "grill-fork": { + "name": "grill-fork", + "category": "Food", + "tags": ["grill", "fork", "cook", "cooking", "bbq", "meat", "tool", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35b" + }, + "grill-off": { + "name": "grill-off", + "category": "Food", + "tags": ["grill", "off", "food", "sasuage", "beef", "steak", "bbq", "cooking", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f5" + }, + "grill-spatula": { + "name": "grill-spatula", + "category": "Food", + "tags": ["grill", "spatula", "cook", "cooking", "bbq", "meat", "tool", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35c" + }, + "grill": { + "name": "grill", + "category": "Food", + "tags": ["grill", "food", "sasuage", "beef", "steak", "bbq", "cooking", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efa9" + }, + "grip-horizontal": { + "name": "grip-horizontal", + "category": "System", + "tags": ["grip", "horizontal", "picture", "abstract", "symbol", "design", "across", "dots", "drag", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec00" + }, + "grip-vertical": { + "name": "grip-vertical", + "category": "System", + "tags": ["grip", "vertical", "picture", "abstract", "symbol", "design", "upright", "dots", "drag", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec01" + }, + "growth": { + "name": "growth", + "category": "Nature", + "tags": ["growth", "seed", "harvest", "plant", "tree", "flower", "grain", "greenery", "garden", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee93" + }, + "guitar-pick-filled": { + "name": "guitar-pick-filled", + "category": "Filled", + "tags": ["guitar", "pick", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67b" + }, + "guitar-pick": { + "name": "guitar-pick", + "category": "", + "tags": ["guitar", "pick", "music", "instrument", "melody", "accesories", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c6" + }, + "h-1": { + "name": "h-1", + "category": "Text", + "tags": ["h", "1", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec94" + }, + "h-2": { + "name": "h-2", + "category": "Text", + "tags": ["h", "2", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec95" + }, + "h-3": { + "name": "h-3", + "category": "Text", + "tags": ["h", "3", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec96" + }, + "h-4": { + "name": "h-4", + "category": "Text", + "tags": ["h", "4", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec97" + }, + "h-5": { + "name": "h-5", + "category": "Text", + "tags": ["h", "5", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec98" + }, + "h-6": { + "name": "h-6", + "category": "Text", + "tags": ["h", "6", "header", "text", "editor", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec99" + }, + "hammer-off": { + "name": "hammer-off", + "category": "", + "tags": ["hammer", "off", "tool", "repair", "building", "consturction", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f13c" + }, + "hammer": { + "name": "hammer", + "category": "", + "tags": ["hammer", "tool", "repair", "building", "consturction", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef91" + }, + "hand-click": { + "name": "hand-click", + "category": "Gestures", + "tags": ["hand", "click", "gesture", "touch", "press", "phone", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef4f" + }, + "hand-finger-off": { + "name": "hand-finger-off", + "category": "Gestures", + "tags": ["hand", "finger", "off", "point", "show", "index", "forefinger", "body", "human", "palm", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f13d" + }, + "hand-finger": { + "name": "hand-finger", + "category": "Gestures", + "tags": ["hand", "finger", "point", "show", "index", "forefinger", "body", "human", "palm", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee94" + }, + "hand-grab": { + "name": "hand-grab", + "category": "Gestures", + "tags": ["hand", "grab", "hold", "fist", "drop", "catch", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f091" + }, + "hand-little-finger": { + "name": "hand-little-finger", + "category": "Gestures", + "tags": ["hand", "little", "finger", "small", "body", "human", "palm", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee95" + }, + "hand-middle-finger": { + "name": "hand-middle-finger", + "category": "Gestures", + "tags": ["hand", "middle", "finger", "signal", "gesture", "curse", "vulgarism", "abuse", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec2d" + }, + "hand-move": { + "name": "hand-move", + "category": "Gestures", + "tags": ["hand", "move", "gesture", "swipe", "right", "left", "up", "down", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef50" + }, + "hand-off": { + "name": "hand-off", + "category": "Gestures", + "tags": ["hand", "off", "disclaimer", "body", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed15" + }, + "hand-ring-finger": { + "name": "hand-ring-finger", + "category": "Gestures", + "tags": ["hand", "ring", "finger", "body", "human", "palm", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee96" + }, + "hand-rock": { + "name": "hand-rock", + "category": "Gestures", + "tags": ["hand", "rock", "heavy", "metal", "party", "concert", "rebel", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee97" + }, + "hand-sanitizer": { + "name": "hand-sanitizer", + "category": "", + "tags": ["hand", "sanitizer", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f4" + }, + "hand-stop": { + "name": "hand-stop", + "category": "Gestures", + "tags": ["hand", "stop", "forbiddance", "nixing", "ban", "interdicting", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec2e" + }, + "hand-three-fingers": { + "name": "hand-three-fingers", + "category": "Gestures", + "tags": ["hand", "three", "fingers", "body", "human", "palm", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee98" + }, + "hand-two-fingers": { + "name": "hand-two-fingers", + "category": "Gestures", + "tags": ["hand", "two", "fingers", "body", "human", "palm", "gesture", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee99" + }, + "hanger-2": { + "name": "hanger-2", + "category": "", + "tags": ["hanger", "2", "clothes", "wardrobe", "hook", "hang", "wooden", "plastic", "wire", "shop", "store", "clothing", "fashion", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09c" + }, + "hanger-off": { + "name": "hanger-off", + "category": "", + "tags": ["hanger", "off", "clothes", "wardrobe", "hook", "hang", "wooden", "plastic", "wire", "shop", "store", "clothing", "fashion", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f13e" + }, + "hanger": { + "name": "hanger", + "category": "", + "tags": ["hanger", "clothes", "wardrobe", "hook", "hang", "wooden", "plastic", "wire", "shop", "store", "clothing", "fashion", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9a" + }, + "hash": { + "name": "hash", + "category": "", + "tags": ["hash", "hashtag", "#", "instagram", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eabc" + }, + "haze": { + "name": "haze", + "category": "Weather", + "tags": ["haze", "climate", "meterology", "weather", "morning", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efaa" + }, + "heading-off": { + "name": "heading-off", + "category": "Text", + "tags": ["heading", "off", "main", "text", "headline", "style", "styling", "html", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f13f" + }, + "heading": { + "name": "heading", + "category": "Text", + "tags": ["heading", "main", "text", "headline", "style", "styling", "html", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9b" + }, + "headphones-off": { + "name": "headphones-off", + "category": "Media", + "tags": ["headphones", "off", "music", "headset", "audio", "sound", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1d" + }, + "headphones": { + "name": "headphones", + "category": "Media", + "tags": ["headphones", "music", "headset", "audio", "sound", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eabd" + }, + "headset-off": { + "name": "headset-off", + "category": "Media", + "tags": ["headset", "off", "music", "headphones", "audio", "sound", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f6" + }, + "headset": { + "name": "headset", + "category": "Media", + "tags": ["headset", "music", "headphones", "audio", "sound", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb90" + }, + "health-recognition": { + "name": "health-recognition", + "category": "", + "tags": ["health", "recognition", "life", "doctor", "healthy", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1fb" + }, + "heart-broken": { + "name": "heart-broken", + "category": "Health", + "tags": ["heart", "broken", "love", "emotion", "like", "favorite", "relationship", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecba" + }, + "heart-filled": { + "name": "heart-filled", + "category": "Filled", + "tags": ["heart", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67c" + }, + "heart-handshake": { + "name": "heart-handshake", + "category": "", + "tags": ["heart", "handshake", "support", "care", "friends", "couple", "relation", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f3" + }, + "heart-minus": { + "name": "heart-minus", + "category": "", + "tags": ["heart", "minus", "delete", "unfavourite", "remove", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f140" + }, + "heart-off": { + "name": "heart-off", + "category": "Shapes", + "tags": ["heart", "off", "love", "emotion", "like", "favorite", "relationship", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f141" + }, + "heart-plus": { + "name": "heart-plus", + "category": "", + "tags": ["heart", "plus", "add", "love", "favourite", "like", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f142" + }, + "heart-rate-monitor": { + "name": "heart-rate-monitor", + "category": "Health", + "tags": ["heart", "rate", "monitor", "medical", "pulse", "health", "hospital", "healthcare", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef61" + }, + "heart": { + "name": "heart", + "category": "Shapes", + "tags": ["heart", "love", "emotion", "like", "favorite", "relationship", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eabe" + }, + "heartbeat": { + "name": "heartbeat", + "category": "Health", + "tags": ["heartbeat", "pulse", "medical", "ecg", "cardiology", "fitness", "chart", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef92" + }, + "hearts-off": { + "name": "hearts-off", + "category": "Shapes", + "tags": ["hearts", "off", "love", "valentine", "romantic", "romance", "marriage", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f7" + }, + "hearts": { + "name": "hearts", + "category": "Shapes", + "tags": ["hearts", "love", "valentine", "romantic", "romance", "marriage", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f387" + }, + "helicopter-landing": { + "name": "helicopter-landing", + "category": "Vehicles", + "tags": ["helicopter", "landing", "pad", "helipad", "land", "takeoff", "navy", "travel", "aircraft", "platform", "fly", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed8d" + }, + "helicopter": { + "name": "helicopter", + "category": "Vehicles", + "tags": ["helicopter", "land", "takeoff", "navy", "travel", "aircraft", "platform", "fly", "pilot", "journey", "rotorcraft", "hover", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed8e" + }, + "helmet-off": { + "name": "helmet-off", + "category": "Sport", + "tags": ["helmet", "off", "safety", "f1", "racing", "motorcycle", "builder", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f143" + }, + "helmet": { + "name": "helmet", + "category": "Sport", + "tags": ["helmet", "safety", "f1", "racing", "motorcycle", "builder", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efca" + }, + "help-off": { + "name": "help-off", + "category": "", + "tags": ["help", "off", "tooltip", "assistance", "advice", "support", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f8" + }, + "help": { + "name": "help", + "category": "", + "tags": ["help", "tooltip", "assistance", "advice", "support", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eabf" + }, + "hexagon-3d": { + "name": "hexagon-3d", + "category": "", + "tags": ["hexagon", "3d", "geometry", "six", "dimensional", "shape", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c7" + }, + "hexagon-filled": { + "name": "hexagon-filled", + "category": "Filled", + "tags": ["hexagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67d" + }, + "hexagon-letter-a": { + "name": "hexagon-letter-a", + "category": "Letters", + "tags": ["hexagon", "letter", "a", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f463" + }, + "hexagon-letter-b": { + "name": "hexagon-letter-b", + "category": "Letters", + "tags": ["hexagon", "letter", "b", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f464" + }, + "hexagon-letter-c": { + "name": "hexagon-letter-c", + "category": "Letters", + "tags": ["hexagon", "letter", "c", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f465" + }, + "hexagon-letter-d": { + "name": "hexagon-letter-d", + "category": "Letters", + "tags": ["hexagon", "letter", "d", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f466" + }, + "hexagon-letter-e": { + "name": "hexagon-letter-e", + "category": "Letters", + "tags": ["hexagon", "letter", "e", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f467" + }, + "hexagon-letter-f": { + "name": "hexagon-letter-f", + "category": "Letters", + "tags": ["hexagon", "letter", "f", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f468" + }, + "hexagon-letter-g": { + "name": "hexagon-letter-g", + "category": "Letters", + "tags": ["hexagon", "letter", "g", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f469" + }, + "hexagon-letter-h": { + "name": "hexagon-letter-h", + "category": "Letters", + "tags": ["hexagon", "letter", "h", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46a" + }, + "hexagon-letter-i": { + "name": "hexagon-letter-i", + "category": "Letters", + "tags": ["hexagon", "letter", "i", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46b" + }, + "hexagon-letter-j": { + "name": "hexagon-letter-j", + "category": "Letters", + "tags": ["hexagon", "letter", "j", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46c" + }, + "hexagon-letter-k": { + "name": "hexagon-letter-k", + "category": "Letters", + "tags": ["hexagon", "letter", "k", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46d" + }, + "hexagon-letter-l": { + "name": "hexagon-letter-l", + "category": "Letters", + "tags": ["hexagon", "letter", "l", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46e" + }, + "hexagon-letter-m": { + "name": "hexagon-letter-m", + "category": "Letters", + "tags": ["hexagon", "letter", "m", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f46f" + }, + "hexagon-letter-n": { + "name": "hexagon-letter-n", + "category": "Letters", + "tags": ["hexagon", "letter", "n", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f470" + }, + "hexagon-letter-o": { + "name": "hexagon-letter-o", + "category": "Letters", + "tags": ["hexagon", "letter", "o", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f471" + }, + "hexagon-letter-p": { + "name": "hexagon-letter-p", + "category": "Letters", + "tags": ["hexagon", "letter", "p", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f472" + }, + "hexagon-letter-q": { + "name": "hexagon-letter-q", + "category": "Letters", + "tags": ["hexagon", "letter", "q", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f473" + }, + "hexagon-letter-r": { + "name": "hexagon-letter-r", + "category": "Letters", + "tags": ["hexagon", "letter", "r", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f474" + }, + "hexagon-letter-s": { + "name": "hexagon-letter-s", + "category": "Letters", + "tags": ["hexagon", "letter", "s", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f475" + }, + "hexagon-letter-t": { + "name": "hexagon-letter-t", + "category": "Letters", + "tags": ["hexagon", "letter", "t", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f476" + }, + "hexagon-letter-u": { + "name": "hexagon-letter-u", + "category": "Letters", + "tags": ["hexagon", "letter", "u", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f477" + }, + "hexagon-letter-v": { + "name": "hexagon-letter-v", + "category": "Letters", + "tags": ["hexagon", "letter", "v", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b3" + }, + "hexagon-letter-w": { + "name": "hexagon-letter-w", + "category": "Letters", + "tags": ["hexagon", "letter", "w", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f478" + }, + "hexagon-letter-x": { + "name": "hexagon-letter-x", + "category": "Letters", + "tags": ["hexagon", "letter", "x", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f479" + }, + "hexagon-letter-y": { + "name": "hexagon-letter-y", + "category": "Letters", + "tags": ["hexagon", "letter", "y", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47a" + }, + "hexagon-letter-z": { + "name": "hexagon-letter-z", + "category": "Letters", + "tags": ["hexagon", "letter", "z", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47b" + }, + "hexagon-number-0": { + "name": "hexagon-number-0", + "category": "Numbers", + "tags": ["hexagon", "number", "0", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f459" + }, + "hexagon-number-1": { + "name": "hexagon-number-1", + "category": "Numbers", + "tags": ["hexagon", "number", "1", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45a" + }, + "hexagon-number-2": { + "name": "hexagon-number-2", + "category": "Numbers", + "tags": ["hexagon", "number", "2", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45b" + }, + "hexagon-number-3": { + "name": "hexagon-number-3", + "category": "Numbers", + "tags": ["hexagon", "number", "3", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45c" + }, + "hexagon-number-4": { + "name": "hexagon-number-4", + "category": "Numbers", + "tags": ["hexagon", "number", "4", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45d" + }, + "hexagon-number-5": { + "name": "hexagon-number-5", + "category": "Numbers", + "tags": ["hexagon", "number", "5", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45e" + }, + "hexagon-number-6": { + "name": "hexagon-number-6", + "category": "Numbers", + "tags": ["hexagon", "number", "6", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f45f" + }, + "hexagon-number-7": { + "name": "hexagon-number-7", + "category": "Numbers", + "tags": ["hexagon", "number", "7", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f460" + }, + "hexagon-number-8": { + "name": "hexagon-number-8", + "category": "Numbers", + "tags": ["hexagon", "number", "8", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f461" + }, + "hexagon-number-9": { + "name": "hexagon-number-9", + "category": "Numbers", + "tags": ["hexagon", "number", "9", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f462" + }, + "hexagon-off": { + "name": "hexagon-off", + "category": "Shapes", + "tags": ["hexagon", "off", "shape", "geometric", "math", "2d", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9c" + }, + "hexagon": { + "name": "hexagon", + "category": "Shapes", + "tags": ["hexagon", "shape", "geometric", "math", "2d", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec02" + }, + "hexagons-off": { + "name": "hexagons-off", + "category": "Shapes", + "tags": ["hexagons", "off", "diagram", "chemistry", "modules", "geometric", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3f9" + }, + "hexagons": { + "name": "hexagons", + "category": "Shapes", + "tags": ["hexagons", "diagram", "chemistry", "modules", "geometric", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09d" + }, + "hierarchy-2": { + "name": "hierarchy-2", + "category": "Design", + "tags": ["hierarchy", "2", "relation", "above", "below", "status", "society", "important", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9d" + }, + "hierarchy-3": { + "name": "hierarchy-3", + "category": "Design", + "tags": ["hierarchy", "3", "relation", "above", "below", "status", "society", "important", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f289" + }, + "hierarchy-off": { + "name": "hierarchy-off", + "category": "Design", + "tags": ["hierarchy", "off", "relation", "above", "below", "status", "society", "important", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3fa" + }, + "hierarchy": { + "name": "hierarchy", + "category": "Design", + "tags": ["hierarchy", "relation", "above", "below", "status", "society", "important", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9e" + }, + "highlight-off": { + "name": "highlight-off", + "category": "Text", + "tags": ["highlight", "off", "marker", "important", "highlighter", "pen", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f144" + }, + "highlight": { + "name": "highlight", + "category": "Text", + "tags": ["highlight", "marker", "important", "highlighter", "pen", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef3f" + }, + "history-off": { + "name": "history-off", + "category": "System", + "tags": ["history", "off", "search", "see", "past", "card", "website", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3fb" + }, + "history-toggle": { + "name": "history-toggle", + "category": "", + "tags": ["history", "toggle", "true", "false", "control", "interface", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1fc" + }, + "history": { + "name": "history", + "category": "System", + "tags": ["history", "search", "see", "past", "card", "website", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebea" + }, + "home-2": { + "name": "home-2", + "category": "Buildings", + "tags": ["home", "2", "house", "dashboard", "living", "building", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eac0" + }, + "home-bolt": { + "name": "home-bolt", + "category": "Buildings", + "tags": ["home", "bolt", "electrity", "energy", "power", "lightning", "energetic", "house", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f336" + }, + "home-cancel": { + "name": "home-cancel", + "category": "Buildings", + "tags": ["home", "cancel", "delete", "house", "building", "close", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f350" + }, + "home-check": { + "name": "home-check", + "category": "Buildings", + "tags": ["home", "check", "house", "tick", "mark", "assure", "safety", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f337" + }, + "home-cog": { + "name": "home-cog", + "category": "Buildings", + "tags": ["home", "cog", "gear", "house", "building", "settings", "renovation", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f338" + }, + "home-dollar": { + "name": "home-dollar", + "category": "Buildings", + "tags": ["home", "dollar", "buisness", "house", "estate", "finance", "building", "money", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f339" + }, + "home-dot": { + "name": "home-dot", + "category": "Buildings", + "tags": ["home", "dot", "notification", "alert", "monitor", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33a" + }, + "home-down": { + "name": "home-down", + "category": "Buildings", + "tags": ["home", "down", "property", "estate", "bottom", "south", "house", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33b" + }, + "home-eco": { + "name": "home-eco", + "category": "Buildings", + "tags": ["home", "eco", "ecology", "energy", "nature", "leaf", "house", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f351" + }, + "home-edit": { + "name": "home-edit", + "category": "Buildings", + "tags": ["home", "edit", "house", "building", "renovation", "estate", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f352" + }, + "home-exclamation": { + "name": "home-exclamation", + "category": "Buildings", + "tags": ["home", "exclamation", "warning", "danger", "accident", "house", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33c" + }, + "home-hand": { + "name": "home-hand", + "category": "", + "tags": ["home", "hand", "house", "dashboard", "living", "building", "care", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f504" + }, + "home-heart": { + "name": "home-heart", + "category": "Buildings", + "tags": ["home", "heart", "love", "sweet", "dating", "care", "safety", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f353" + }, + "home-infinity": { + "name": "home-infinity", + "category": "", + "tags": ["home", "infinity", "house", "dashboard", "living", "building", "endless", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f505" + }, + "home-link": { + "name": "home-link", + "category": "Buildings", + "tags": ["home", "link", "address", "technology", "smart", "internet", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f354" + }, + "home-minus": { + "name": "home-minus", + "category": "Buildings", + "tags": ["home", "minus", "remove", "delete", "cancel", "close", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33d" + }, + "home-move": { + "name": "home-move", + "category": "Buildings", + "tags": ["home", "move", "relocation", "moving", "house", "change", "exchange", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33e" + }, + "home-off": { + "name": "home-off", + "category": "Buildings", + "tags": ["home", "off", "house", "dashboard", "living", "building", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f145" + }, + "home-plus": { + "name": "home-plus", + "category": "Buildings", + "tags": ["home", "plus", "add", "building", "new", "create", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f33f" + }, + "home-question": { + "name": "home-question", + "category": "Buildings", + "tags": ["home", "question", "support", "help", "information", "ask", "anwser", "?", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f340" + }, + "home-ribbon": { + "name": "home-ribbon", + "category": "Buildings", + "tags": ["home", "ribbon", "contract", "certifited", "achievement", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f355" + }, + "home-search": { + "name": "home-search", + "category": "Buildings", + "tags": ["home", "search", "find", "estate", "house", "building", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f341" + }, + "home-share": { + "name": "home-share", + "category": "Buildings", + "tags": ["home", "share", "house", "dashboard", "living", "building", "network", "link", "connection", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f342" + }, + "home-shield": { + "name": "home-shield", + "category": "Buildings", + "tags": ["home", "shield", "security", "safety", "secure", "safe", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f343" + }, + "home-signal": { + "name": "home-signal", + "category": "Buildings", + "tags": ["home", "signal", "wi-fi", "communication", "internet", "wireless", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f356" + }, + "home-star": { + "name": "home-star", + "category": "Buildings", + "tags": ["home", "star", "best", "favourite", "like", "house", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f344" + }, + "home-stats": { + "name": "home-stats", + "category": "Buildings", + "tags": ["home", "stats", "analytics", "business", "finance", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f345" + }, + "home-up": { + "name": "home-up", + "category": "Buildings", + "tags": ["home", "up", "arrow", "higher", "house", "north", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f346" + }, + "home-x": { + "name": "home-x", + "category": "Buildings", + "tags": ["home", "x", "false", "sale", "commerce", "icon", "stroke", "outline"], + "version": "1.87", + "unicode": "f347" + }, + "home": { + "name": "home", + "category": "Buildings", + "tags": ["home", "house", "dashboard", "living", "building", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac1" + }, + "horse-toy": { + "name": "horse-toy", + "category": "", + "tags": ["horse", "toy", "baby", "child", "kid", "rocking", "fun", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28a" + }, + "hotel-service": { + "name": "hotel-service", + "category": "", + "tags": ["hotel", "service", "food", "reception", "accommodation", "room", "bell", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef80" + }, + "hourglass-empty": { + "name": "hourglass-empty", + "category": "System", + "tags": ["hourglass", "empty", "material", "measure", "time", "timer", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f146" + }, + "hourglass-high": { + "name": "hourglass-high", + "category": "System", + "tags": ["hourglass", "high", "simple", "time", "timer", "clock", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f092" + }, + "hourglass-low": { + "name": "hourglass-low", + "category": "System", + "tags": ["hourglass", "low", "simple", "time", "timer", "clock", "icon", "stroke", "outline"], + "version": "1.60", + "unicode": "f093" + }, + "hourglass-off": { + "name": "hourglass-off", + "category": "System", + "tags": ["hourglass", "off", "time", "timer", "sand", "clock", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f147" + }, + "hourglass": { + "name": "hourglass", + "category": "System", + "tags": ["hourglass", "time", "timer", "sand", "clock", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef93" + }, + "ice-cream-2": { + "name": "ice-cream-2", + "category": "Food", + "tags": ["ice", "cream", "2", "sweet", "cold", "dessert", "food", "taste", "frozen", "snack", "flavour", "flavor", "cone", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee9f" + }, + "ice-cream-off": { + "name": "ice-cream-off", + "category": "Food", + "tags": ["ice", "cream", "off", "candy", "dessert", "frozen", "sweet", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f148" + }, + "ice-cream": { + "name": "ice-cream", + "category": "Food", + "tags": ["ice", "cream", "candy", "dessert", "frozen", "sweet", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac2" + }, + "ice-skating": { + "name": "ice-skating", + "category": "Sport", + "tags": ["ice", "skating", "winter", "skate", "sport", "figure", "activity", "hockey", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efcb" + }, + "icons-off": { + "name": "icons-off", + "category": "Shapes", + "tags": ["icons", "off", "design", "image", "picture", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3fc" + }, + "icons": { + "name": "icons", + "category": "Shapes", + "tags": ["icons", "design", "image", "picture", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d4" + }, + "id-badge-2": { + "name": "id-badge-2", + "category": "", + "tags": ["id", "badge", "2", "identification", "pass", "card", "identity", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f076" + }, + "id-badge-off": { + "name": "id-badge-off", + "category": "", + "tags": ["id", "badge", "off", "identification", "pass", "card", "identity", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3fd" + }, + "id-badge": { + "name": "id-badge", + "category": "", + "tags": ["id", "badge", "identification", "pass", "card", "identity", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff7" + }, + "id-off": { + "name": "id-off", + "category": "", + "tags": ["id", "off", "identification", "card", "personal details", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f149" + }, + "id": { + "name": "id", + "category": "", + "tags": ["id", "identification", "card", "personal details", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eac3" + }, + "inbox-off": { + "name": "inbox-off", + "category": "", + "tags": ["inbox", "off", "mail", "gmail", "email", "envelope", "post", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14a" + }, + "inbox": { + "name": "inbox", + "category": "", + "tags": ["inbox", "mail", "gmail", "email", "envelope", "post", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac4" + }, + "indent-decrease": { + "name": "indent-decrease", + "category": "Text", + "tags": ["indent", "decrease", "line", "position", "block", "margin", "paragraph", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb91" + }, + "indent-increase": { + "name": "indent-increase", + "category": "Text", + "tags": ["indent", "increase", "line", "position", "block", "margin", "paragraph", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb92" + }, + "infinity-off": { + "name": "infinity-off", + "category": "Math", + "tags": ["infinity", "off", "endless", "eternity", "continuum", "time", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3fe" + }, + "infinity": { + "name": "infinity", + "category": "Math", + "tags": ["infinity", "endless", "eternity", "continuum", "time", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb69" + }, + "info-circle": { + "name": "info-circle", + "category": "", + "tags": ["info", "circle", "information", "advice", "news", "tip", "sign", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac5" + }, + "info-square-rounded": { + "name": "info-square-rounded", + "category": "", + "tags": ["info", "square", "rounded", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f635" + }, + "info-square": { + "name": "info-square", + "category": "", + "tags": ["info", "square", "information", "advice", "news", "tip", "sign", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac6" + }, + "inner-shadow-bottom-left": { + "name": "inner-shadow-bottom-left", + "category": "Design", + "tags": ["inner", "shadow", "bottom", "left", "shape", "circle", "down", "south", "west", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f51e" + }, + "inner-shadow-bottom-right": { + "name": "inner-shadow-bottom-right", + "category": "Design", + "tags": ["inner", "shadow", "bottom", "right", "shape", "circle", "down", "south", "east", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f51f" + }, + "inner-shadow-bottom": { + "name": "inner-shadow-bottom", + "category": "Design", + "tags": ["inner", "shadow", "bottom", "shape", "circle", "down", "south", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f520" + }, + "inner-shadow-left": { + "name": "inner-shadow-left", + "category": "Design", + "tags": ["inner", "shadow", "left", "shape", "circle", "west", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f521" + }, + "inner-shadow-right": { + "name": "inner-shadow-right", + "category": "Design", + "tags": ["inner", "shadow", "right", "shape", "circle", "east", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f522" + }, + "inner-shadow-top-left": { + "name": "inner-shadow-top-left", + "category": "Design", + "tags": ["inner", "shadow", "top", "left", "shape", "circle", "up", "north", "west", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f523" + }, + "inner-shadow-top-right": { + "name": "inner-shadow-top-right", + "category": "Design", + "tags": ["inner", "shadow", "top", "right", "shape", "circle", "up", "north", "east", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f524" + }, + "inner-shadow-top": { + "name": "inner-shadow-top", + "category": "Design", + "tags": ["inner", "shadow", "top", "shape", "circle", "up", "north", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f525" + }, + "input-search": { + "name": "input-search", + "category": "Text", + "tags": ["input", "search", "find", "website", "field", "explore", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a2" + }, + "ironing-1": { + "name": "ironing-1", + "category": "Laundry", + "tags": ["ironing", "1", "clotches", "housework", "iron", "smooth", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f4" + }, + "ironing-2": { + "name": "ironing-2", + "category": "Laundry", + "tags": ["ironing", "2", "clotches", "housework", "iron", "smooth", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f5" + }, + "ironing-3": { + "name": "ironing-3", + "category": "Laundry", + "tags": ["ironing", "3", "clotches", "housework", "iron", "smooth", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f6" + }, + "ironing-off": { + "name": "ironing-off", + "category": "Laundry", + "tags": ["ironing", "off", "clotches", "housework", "iron", "smooth", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f7" + }, + "ironing-steam-off": { + "name": "ironing-steam-off", + "category": "Laundry", + "tags": ["ironing", "steam", "off", "clotches", "housework", "iron", "smooth", "water", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f8" + }, + "ironing-steam": { + "name": "ironing-steam", + "category": "Laundry", + "tags": ["ironing", "steam", "clotches", "housework", "iron", "smooth", "water", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2f9" + }, + "italic": { + "name": "italic", + "category": "Text", + "tags": ["italic", "typography", "font", "typeface", "emphasise", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb93" + }, + "jacket": { + "name": "jacket", + "category": "", + "tags": ["jacket", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f661" + }, + "jetpack": { + "name": "jetpack", + "category": "", + "tags": ["jetpack", "fly", "rocket", "transport", "space", "future", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f581" + }, + "jewish-star-filled": { + "name": "jewish-star-filled", + "category": "Filled", + "tags": ["jewish", "star", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67e" + }, + "jewish-star": { + "name": "jewish-star", + "category": "Symbols", + "tags": ["jewish", "star", "judaism", "israel", "religion", "bright", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f3ff" + }, + "jpg": { + "name": "jpg", + "category": "", + "tags": ["jpg", "file", "format", "type", "document", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3ac" + }, + "jump-rope": { + "name": "jump-rope", + "category": "Sport", + "tags": ["jump", "rope", "sport", "fitness", "workout", "gym", "skipping", "cardio", "fit", "shape", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed8f" + }, + "karate": { + "name": "karate", + "category": "Sport", + "tags": ["karate", "martial", "art", "self", "defence", "defend", "strike", "compat", "oriental", "fight", "kick", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed32" + }, + "kayak": { + "name": "kayak", + "category": "Sport", + "tags": ["kayak", "water", "adventure", "river", "camp", "sport", "summer", "activity", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d6" + }, + "kering": { + "name": "kering", + "category": "Text", + "tags": ["kering", "text", "editor", "font", "calligraphy", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb8" + }, + "key-off": { + "name": "key-off", + "category": "", + "tags": ["key", "off", "password", "login", "authentication", "secure", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14b" + }, + "key": { + "name": "key", + "category": "", + "tags": ["key", "password", "login", "authentication", "secure", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac7" + }, + "keyboard-hide": { + "name": "keyboard-hide", + "category": "Devices", + "tags": ["keyboard", "hide", "computer", "laptop", "device", "type", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec7e" + }, + "keyboard-off": { + "name": "keyboard-off", + "category": "Devices", + "tags": ["keyboard", "off", "computer", "laptop", "device", "type", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea0" + }, + "keyboard-show": { + "name": "keyboard-show", + "category": "Devices", + "tags": ["keyboard", "show", "computer", "laptop", "device", "type", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec7f" + }, + "keyboard": { + "name": "keyboard", + "category": "Devices", + "tags": ["keyboard", "computer", "laptop", "device", "type", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd6" + }, + "keyframe-align-center": { + "name": "keyframe-align-center", + "category": "", + "tags": ["keyframe", "align", "center", "middle", "animation", "shape", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f582" + }, + "keyframe-align-horizontal": { + "name": "keyframe-align-horizontal", + "category": "", + "tags": ["keyframe", "align", "horizontal", "animation", "shape", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f583" + }, + "keyframe-align-vertical": { + "name": "keyframe-align-vertical", + "category": "", + "tags": ["keyframe", "align", "vertical", "animation", "shape", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f584" + }, + "keyframe": { + "name": "keyframe", + "category": "", + "tags": ["keyframe", "animation", "shape", "design", "align", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f576" + }, + "keyframes": { + "name": "keyframes", + "category": "", + "tags": ["keyframes", "animation", "shape", "design", "align", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f585" + }, + "ladder-off": { + "name": "ladder-off", + "category": "", + "tags": ["ladder", "off", "up", "equipment", "garden", "climb", "climbing", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14c" + }, + "ladder": { + "name": "ladder", + "category": "", + "tags": ["ladder", "up", "equipment", "garden", "climb", "climbing", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe2" + }, + "lambda": { + "name": "lambda", + "category": "", + "tags": ["lambda", "letter", "alphabet", "greek", "math", "icon", "stroke", "outline"], + "version": "1.104", + "unicode": "f541" + }, + "lamp-2": { + "name": "lamp-2", + "category": "", + "tags": ["lamp", "2", "light", "room", "decoration", "electic", "energy", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09e" + }, + "lamp-off": { + "name": "lamp-off", + "category": "", + "tags": ["lamp", "off", "light", "room", "decoration", "electic", "energy", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14d" + }, + "lamp": { + "name": "lamp", + "category": "", + "tags": ["lamp", "light", "room", "decoration", "electic", "energy", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efab" + }, + "language-hiragana": { + "name": "language-hiragana", + "category": "Text", + "tags": ["language", "hiragana", "tongue", "country", "speech", "speak", "translate", "communication", "communicate", "english", "dialect", "dictionary", "word", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef77" + }, + "language-katakana": { + "name": "language-katakana", + "category": "Text", + "tags": ["language", "katakana", "tongue", "country", "speech", "speak", "translate", "communication", "communicate", "english", "dialect", "dictionary", "word", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef78" + }, + "language-off": { + "name": "language-off", + "category": "Text", + "tags": ["language", "off", "tongue", "country", "speech", "speak", "translate", "communication", "communicate", "english", "dialect", "dictionary", "word", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14e" + }, + "language": { + "name": "language", + "category": "Text", + "tags": ["language", "tongue", "country", "speech", "speak", "translate", "communication", "communicate", "english", "dialect", "dictionary", "word", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebbe" + }, + "lasso-off": { + "name": "lasso-off", + "category": "Design", + "tags": ["lasso", "off", "cowboy", "western", "sheriff", "man", "tool", "west", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f14f" + }, + "lasso-polygon": { + "name": "lasso-polygon", + "category": "Design", + "tags": ["lasso", "polygon", "geometry", "adobe", "tool", "shape", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f388" + }, + "lasso": { + "name": "lasso", + "category": "Design", + "tags": ["lasso", "cowboy", "western", "sheriff", "man", "tool", "west", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efac" + }, + "layers-difference": { + "name": "layers-difference", + "category": "Design", + "tags": ["layers", "difference", "stack", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac8" + }, + "layers-intersect-2": { + "name": "layers-intersect-2", + "category": "Design", + "tags": ["layers", "intersect", "2", "merge", "stack", "graphic", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff8" + }, + "layers-intersect": { + "name": "layers-intersect", + "category": "Design", + "tags": ["layers", "intersect", "stack", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eac9" + }, + "layers-linked": { + "name": "layers-linked", + "category": "Design", + "tags": ["layers", "linked", "data", "network", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea1" + }, + "layers-off": { + "name": "layers-off", + "category": "", + "tags": ["layers", "off", "stack", "document", "file", "pages", "graphic", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f150" + }, + "layers-subtract": { + "name": "layers-subtract", + "category": "Design", + "tags": ["layers", "subtract", "stack", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaca" + }, + "layers-union": { + "name": "layers-union", + "category": "Design", + "tags": ["layers", "union", "stack", "join", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eacb" + }, + "layout-2": { + "name": "layout-2", + "category": "Design", + "tags": ["layout", "2", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eacc" + }, + "layout-align-bottom": { + "name": "layout-align-bottom", + "category": "Design", + "tags": ["layout", "align", "bottom", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eacd" + }, + "layout-align-center": { + "name": "layout-align-center", + "category": "Design", + "tags": ["layout", "align", "center", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eace" + }, + "layout-align-left": { + "name": "layout-align-left", + "category": "Design", + "tags": ["layout", "align", "left", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eacf" + }, + "layout-align-middle": { + "name": "layout-align-middle", + "category": "Design", + "tags": ["layout", "align", "middle", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead0" + }, + "layout-align-right": { + "name": "layout-align-right", + "category": "Design", + "tags": ["layout", "align", "right", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead1" + }, + "layout-align-top": { + "name": "layout-align-top", + "category": "Design", + "tags": ["layout", "align", "top", "position", "element", "design", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead2" + }, + "layout-board-split": { + "name": "layout-board-split", + "category": "Design", + "tags": ["layout", "board", "split", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef94" + }, + "layout-board": { + "name": "layout-board", + "category": "Design", + "tags": ["layout", "board", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef95" + }, + "layout-bottombar-collapse": { + "name": "layout-bottombar-collapse", + "category": "Design", + "tags": ["layout", "bottombar", "collapse", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28b" + }, + "layout-bottombar-expand": { + "name": "layout-bottombar-expand", + "category": "Design", + "tags": ["layout", "bottombar", "expand", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28c" + }, + "layout-bottombar": { + "name": "layout-bottombar", + "category": "Design", + "tags": ["layout", "bottombar", "position", "element", "design", "grid", "footer", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ead3" + }, + "layout-cards": { + "name": "layout-cards", + "category": "Design", + "tags": ["layout", "cards", "position", "element", "design", "arrangement", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec13" + }, + "layout-collage": { + "name": "layout-collage", + "category": "Design", + "tags": ["layout", "collage", "grid", "dashboard", "image", "interface", "editing", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f389" + }, + "layout-columns": { + "name": "layout-columns", + "category": "Design", + "tags": ["layout", "columns", "grid", "column", "rows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead4" + }, + "layout-dashboard": { + "name": "layout-dashboard", + "category": "Design", + "tags": ["layout", "dashboard", "grid", "view", "display", "page", "masonry", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02c" + }, + "layout-distribute-horizontal": { + "name": "layout-distribute-horizontal", + "category": "Design", + "tags": ["layout", "distribute", "horizontal", "position", "element", "design", "around", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead5" + }, + "layout-distribute-vertical": { + "name": "layout-distribute-vertical", + "category": "Design", + "tags": ["layout", "distribute", "vertical", "position", "element", "design", "around", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead6" + }, + "layout-grid-add": { + "name": "layout-grid-add", + "category": "Design", + "tags": ["layout", "grid", "add", "layout", "table", "network", "pattern", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "edb9" + }, + "layout-grid": { + "name": "layout-grid", + "category": "Design", + "tags": ["layout", "grid", "layout", "table", "network", "pattern", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "edba" + }, + "layout-kanban": { + "name": "layout-kanban", + "category": "Design", + "tags": ["layout", "kanban", "position", "element", "design", "board", "processing", "task", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec3f" + }, + "layout-list": { + "name": "layout-list", + "category": "Design", + "tags": ["layout", "list", "position", "design", "element", "doable", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec14" + }, + "layout-navbar-collapse": { + "name": "layout-navbar-collapse", + "category": "Design", + "tags": ["layout", "navbar", "collapse", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28d" + }, + "layout-navbar-expand": { + "name": "layout-navbar-expand", + "category": "Design", + "tags": ["layout", "navbar", "expand", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28e" + }, + "layout-navbar": { + "name": "layout-navbar", + "category": "Design", + "tags": ["layout", "navbar", "grid", "row", "header", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead7" + }, + "layout-off": { + "name": "layout-off", + "category": "Design", + "tags": ["layout", "off", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f151" + }, + "layout-rows": { + "name": "layout-rows", + "category": "Design", + "tags": ["layout", "rows", "grid", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead8" + }, + "layout-sidebar-left-collapse": { + "name": "layout-sidebar-left-collapse", + "category": "Design", + "tags": ["layout", "sidebar", "left", "collapse", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f004" + }, + "layout-sidebar-left-expand": { + "name": "layout-sidebar-left-expand", + "category": "Design", + "tags": ["layout", "sidebar", "left", "expand", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f005" + }, + "layout-sidebar-right-collapse": { + "name": "layout-sidebar-right-collapse", + "category": "Design", + "tags": ["layout", "sidebar", "right", "collapse", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f006" + }, + "layout-sidebar-right-expand": { + "name": "layout-sidebar-right-expand", + "category": "Design", + "tags": ["layout", "sidebar", "right", "expand", "grid", "aside", "column", "columns", "menu", "navigation", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f007" + }, + "layout-sidebar-right": { + "name": "layout-sidebar-right", + "category": "Design", + "tags": ["layout", "sidebar", "right", "grid", "aside", "column", "columns", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ead9" + }, + "layout-sidebar": { + "name": "layout-sidebar", + "category": "Design", + "tags": ["layout", "sidebar", "grid", "aside", "column", "columns", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eada" + }, + "layout": { + "name": "layout", + "category": "Design", + "tags": ["layout", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eadb" + }, + "leaf-off": { + "name": "leaf-off", + "category": "Nature", + "tags": ["leaf", "off", "nature", "plant", "tree", "autumn", "fall", "greenery", "flower", "forest", "garden", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f400" + }, + "leaf": { + "name": "leaf", + "category": "Nature", + "tags": ["leaf", "nature", "plant", "tree", "autumn", "fall", "greenery", "flower", "forest", "garden", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed4f" + }, + "lego-off": { + "name": "lego-off", + "category": "", + "tags": ["lego", "off", "toy", "boy", "face", "play", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f401" + }, + "lego": { + "name": "lego", + "category": "", + "tags": ["lego", "toy", "boy", "face", "play", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eadc" + }, + "lemon-2": { + "name": "lemon-2", + "category": "Food", + "tags": ["lemon", "2", "fruit", "citrus", "lime", "food", "vitamin", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef81" + }, + "lemon": { + "name": "lemon", + "category": "Food", + "tags": ["lemon", "fruit", "citrus", "lime", "food", "vitamin", "slice", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef10" + }, + "letter-a": { + "name": "letter-a", + "category": "Letters", + "tags": ["letter", "a", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec50" + }, + "letter-b": { + "name": "letter-b", + "category": "Letters", + "tags": ["letter", "b", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec51" + }, + "letter-c": { + "name": "letter-c", + "category": "Letters", + "tags": ["letter", "c", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec52" + }, + "letter-case-lower": { + "name": "letter-case-lower", + "category": "Text", + "tags": ["letter", "case", "lower", "typography", "font", "text", "style", "content", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea2" + }, + "letter-case-toggle": { + "name": "letter-case-toggle", + "category": "Text", + "tags": ["letter", "case", "toggle", "typography", "font", "text", "style", "content", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea3" + }, + "letter-case-upper": { + "name": "letter-case-upper", + "category": "Text", + "tags": ["letter", "case", "upper", "typography", "font", "text", "style", "content", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea4" + }, + "letter-case": { + "name": "letter-case", + "category": "Text", + "tags": ["letter", "case", "typography", "font", "text", "style", "content", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea5" + }, + "letter-d": { + "name": "letter-d", + "category": "Letters", + "tags": ["letter", "d", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec53" + }, + "letter-e": { + "name": "letter-e", + "category": "Letters", + "tags": ["letter", "e", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec54" + }, + "letter-f": { + "name": "letter-f", + "category": "Letters", + "tags": ["letter", "f", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec55" + }, + "letter-g": { + "name": "letter-g", + "category": "Letters", + "tags": ["letter", "g", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec56" + }, + "letter-h": { + "name": "letter-h", + "category": "Letters", + "tags": ["letter", "h", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec57" + }, + "letter-i": { + "name": "letter-i", + "category": "Letters", + "tags": ["letter", "i", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec58" + }, + "letter-j": { + "name": "letter-j", + "category": "Letters", + "tags": ["letter", "j", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec59" + }, + "letter-k": { + "name": "letter-k", + "category": "Letters", + "tags": ["letter", "k", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5a" + }, + "letter-l": { + "name": "letter-l", + "category": "Letters", + "tags": ["letter", "l", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5b" + }, + "letter-m": { + "name": "letter-m", + "category": "Letters", + "tags": ["letter", "m", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5c" + }, + "letter-n": { + "name": "letter-n", + "category": "Letters", + "tags": ["letter", "n", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5d" + }, + "letter-o": { + "name": "letter-o", + "category": "Letters", + "tags": ["letter", "o", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5e" + }, + "letter-p": { + "name": "letter-p", + "category": "Letters", + "tags": ["letter", "p", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec5f" + }, + "letter-q": { + "name": "letter-q", + "category": "Letters", + "tags": ["letter", "q", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec60" + }, + "letter-r": { + "name": "letter-r", + "category": "Letters", + "tags": ["letter", "r", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec61" + }, + "letter-s": { + "name": "letter-s", + "category": "Letters", + "tags": ["letter", "s", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec62" + }, + "letter-spacing": { + "name": "letter-spacing", + "category": "Text", + "tags": ["letter", "spacing", "typography", "font", "space", "character", "word", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea6" + }, + "letter-t": { + "name": "letter-t", + "category": "Letters", + "tags": ["letter", "t", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec63" + }, + "letter-u": { + "name": "letter-u", + "category": "Letters", + "tags": ["letter", "u", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec64" + }, + "letter-v": { + "name": "letter-v", + "category": "Letters", + "tags": ["letter", "v", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec65" + }, + "letter-w": { + "name": "letter-w", + "category": "Letters", + "tags": ["letter", "w", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec66" + }, + "letter-x": { + "name": "letter-x", + "category": "Letters", + "tags": ["letter", "x", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec67" + }, + "letter-y": { + "name": "letter-y", + "category": "Letters", + "tags": ["letter", "y", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec68" + }, + "letter-z": { + "name": "letter-z", + "category": "Letters", + "tags": ["letter", "z", "alphabet", "symbol", "text", "code", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec69" + }, + "license-off": { + "name": "license-off", + "category": "", + "tags": ["license", "off", "authorisation", "permission", "consent", "permit", "document", "agree", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f153" + }, + "license": { + "name": "license", + "category": "", + "tags": ["license", "authorisation", "permission", "consent", "permit", "document", "agree", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc0" + }, + "lifebuoy-off": { + "name": "lifebuoy-off", + "category": "", + "tags": ["lifebuoy", "off", "life ring", "help", "support", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f154" + }, + "lifebuoy": { + "name": "lifebuoy", + "category": "", + "tags": ["lifebuoy", "life ring", "help", "support", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eadd" + }, + "line-dashed": { + "name": "line-dashed", + "category": "", + "tags": ["line", "dashed", "geometric", "segment", "link", "connection", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea7" + }, + "line-dotted": { + "name": "line-dotted", + "category": "", + "tags": ["line", "dotted", "geometric", "segment", "link", "connection", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea8" + }, + "line-height": { + "name": "line-height", + "category": "Text", + "tags": ["line", "height", "space", "inline", "display", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb94" + }, + "line": { + "name": "line", + "category": "Design", + "tags": ["line", "geometric", "segment", "link", "connection", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec40" + }, + "link-off": { + "name": "link-off", + "category": "Text", + "tags": ["link", "off", "chain", "url", "connection", "address", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f402" + }, + "link": { + "name": "link", + "category": "Text", + "tags": ["link", "chain", "url", "connection", "address", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eade" + }, + "list-check": { + "name": "list-check", + "category": "Text", + "tags": ["list", "check", "to-do", "checklist", "form", "template", "task", "reminder", "schedule", "agenda", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6a" + }, + "list-details": { + "name": "list-details", + "category": "Text", + "tags": ["list", "details", "to-do", "checklist", "form", "template", "task", "reminder", "schedule", "agenda", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef40" + }, + "list-numbers": { + "name": "list-numbers", + "category": "Text", + "tags": ["list", "numbers", "to-do", "checklist", "form", "template", "task", "reminder", "schedule", "agenda", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef11" + }, + "list-search": { + "name": "list-search", + "category": "Text", + "tags": ["list", "search", "find", "agenda", "shopping", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eea9" + }, + "list": { + "name": "list", + "category": "Text", + "tags": ["list", "task", "unordered", "bullets", "agenda", "shopping", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6b" + }, + "live-photo-off": { + "name": "live-photo-off", + "category": "Photography", + "tags": ["live", "photo", "off", "capture", "photo", "movement", "sound", "memory", "image", "camera", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f403" + }, + "live-photo": { + "name": "live-photo", + "category": "Photography", + "tags": ["live", "photo", "capture", "photo", "movement", "sound", "memory", "image", "camera", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eadf" + }, + "live-view": { + "name": "live-view", + "category": "Map", + "tags": ["live", "view", "camera", "preview", "image", "photo", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec6b" + }, + "loader-2": { + "name": "loader-2", + "category": "System", + "tags": ["loader", "2", "process", "download", "upload", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f226" + }, + "loader-3": { + "name": "loader-3", + "category": "", + "tags": ["loader", "3", "process", "download", "upload", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f513" + }, + "loader-quarter": { + "name": "loader-quarter", + "category": "System", + "tags": ["loader", "quarter", "process", "download", "upload", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca2" + }, + "loader": { + "name": "loader", + "category": "System", + "tags": ["loader", "process", "download", "upload", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca3" + }, + "location-broken": { + "name": "location-broken", + "category": "Map", + "tags": ["location", "broken", "delete", "map", "navigation", "pin", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c4" + }, + "location-filled": { + "name": "location-filled", + "category": "Filled", + "tags": ["location", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67f" + }, + "location-off": { + "name": "location-off", + "category": "Map", + "tags": ["location", "off", "navigation", "map", "direction", "discover", "travel", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f155" + }, + "location": { + "name": "location", + "category": "Map", + "tags": ["location", "navigation", "map", "direction", "discover", "travel", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae0" + }, + "lock-access-off": { + "name": "lock-access-off", + "category": "", + "tags": ["lock", "access", "off", "block", "limited", "restricted", "unavailable", "confidential", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f404" + }, + "lock-access": { + "name": "lock-access", + "category": "", + "tags": ["lock", "access", "block", "limited", "restricted", "unavailable", "confidential", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeaa" + }, + "lock-off": { + "name": "lock-off", + "category": "System", + "tags": ["lock", "off", "security", "password", "secure", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1e" + }, + "lock-open-off": { + "name": "lock-open-off", + "category": "System", + "tags": ["lock", "open", "off", "security", "password", "secure", "unprotected", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f156" + }, + "lock-open": { + "name": "lock-open", + "category": "System", + "tags": ["lock", "open", "security", "password", "secure", "unprotected", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae1" + }, + "lock-square-rounded": { + "name": "lock-square-rounded", + "category": "", + "tags": ["lock", "square", "rounded", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f636" + }, + "lock-square": { + "name": "lock-square", + "category": "", + "tags": ["lock", "square", "privaty", "safe", "secure", "privacy", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef51" + }, + "lock": { + "name": "lock", + "category": "System", + "tags": ["lock", "security", "password", "secure", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae2" + }, + "logic-and": { + "name": "logic-and", + "category": "Logic", + "tags": ["logic", "and", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f240" + }, + "logic-buffer": { + "name": "logic-buffer", + "category": "Logic", + "tags": ["logic", "buffer", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f241" + }, + "logic-nand": { + "name": "logic-nand", + "category": "Logic", + "tags": ["logic", "nand", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f242" + }, + "logic-nor": { + "name": "logic-nor", + "category": "Logic", + "tags": ["logic", "nor", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f243" + }, + "logic-not": { + "name": "logic-not", + "category": "Logic", + "tags": ["logic", "not", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f244" + }, + "logic-or": { + "name": "logic-or", + "category": "Logic", + "tags": ["logic", "or", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f245" + }, + "logic-xnor": { + "name": "logic-xnor", + "category": "Logic", + "tags": ["logic", "xnor", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f246" + }, + "logic-xor": { + "name": "logic-xor", + "category": "Logic", + "tags": ["logic", "xor", "gate", "technology", "electirical", "it", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f247" + }, + "login": { + "name": "login", + "category": "Arrows", + "tags": ["login", "initialize", "password", "enter", "account", "permission", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "eba7" + }, + "logout": { + "name": "logout", + "category": "Arrows", + "tags": ["logout", "exit", "shut", "unplug", "close", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "eba8" + }, + "lollipop-off": { + "name": "lollipop-off", + "category": "", + "tags": ["lollipop", "off", "candy", "food", "sweet", "halloween", "dessert", "sugar", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f157" + }, + "lollipop": { + "name": "lollipop", + "category": "", + "tags": ["lollipop", "candy", "food", "sweet", "halloween", "dessert", "sugar", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efcc" + }, + "luggage-off": { + "name": "luggage-off", + "category": "", + "tags": ["luggage", "off", "travel", "vacation", "suitcase", "bag", "holiday", "baggage", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f158" + }, + "luggage": { + "name": "luggage", + "category": "", + "tags": ["luggage", "travel", "vacation", "suitcase", "bag", "holiday", "baggage", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efad" + }, + "lungs-off": { + "name": "lungs-off", + "category": "Health", + "tags": ["lungs", "off", "anatomy", "human", "medical", "respiratory", "breathe", "organ", "human", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f405" + }, + "lungs": { + "name": "lungs", + "category": "Health", + "tags": ["lungs", "anatomy", "human", "medical", "respiratory", "breathe", "organ", "human", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef62" + }, + "macro-off": { + "name": "macro-off", + "category": "Photography", + "tags": ["macro", "off", "video", "photography", "photo", "camera", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f406" + }, + "macro": { + "name": "macro", + "category": "Photography", + "tags": ["macro", "video", "photography", "photo", "camera", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeab" + }, + "magnet-off": { + "name": "magnet-off", + "category": "", + "tags": ["magnet", "off", "magnetic field", "pole", "iron", "attract", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f159" + }, + "magnet": { + "name": "magnet", + "category": "", + "tags": ["magnet", "magnetic field", "pole", "iron", "attract", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae3" + }, + "mail-fast": { + "name": "mail-fast", + "category": "Communication", + "tags": ["mail", "fast", "send", "massage", "quick", "delivery", "speed", "communication", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f069" + }, + "mail-forward": { + "name": "mail-forward", + "category": "Communication", + "tags": ["mail", "forward", "send", "recipient", "email", "inbox", "message", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeac" + }, + "mail-off": { + "name": "mail-off", + "category": "Communication", + "tags": ["mail", "off", "inbox", "gmail", "email", "envelope", "message", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15a" + }, + "mail-opened": { + "name": "mail-opened", + "category": "Communication", + "tags": ["mail", "opened", "inbox", "gmail", "email", "envelope", "message", "read", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae4" + }, + "mail": { + "name": "mail", + "category": "Communication", + "tags": ["mail", "inbox", "gmail", "email", "envelope", "message", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae5" + }, + "mailbox-off": { + "name": "mailbox-off", + "category": "", + "tags": ["mailbox", "off", "send", "recipient", "email", "inbox", "message", "reply", "post", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15b" + }, + "mailbox": { + "name": "mailbox", + "category": "", + "tags": ["mailbox", "send", "recipient", "email", "inbox", "message", "reply", "post", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eead" + }, + "man": { + "name": "man", + "category": "", + "tags": ["man", "guy", "boy", "male", "gender", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae6" + }, + "manual-gearbox": { + "name": "manual-gearbox", + "category": "", + "tags": ["manual", "gearbox", "car", "vehicle", "torque", "transmission", "mechanics", "motor", "engine", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7b" + }, + "map-2": { + "name": "map-2", + "category": "Map", + "tags": ["map", "2", "navigation", "location", "travel", "pin", "position", "marker", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae7" + }, + "map-off": { + "name": "map-off", + "category": "Map", + "tags": ["map", "off", "navigation", "location", "travel", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15c" + }, + "map-pin-filled": { + "name": "map-pin-filled", + "category": "Filled", + "tags": ["map", "pin", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f680" + }, + "map-pin-off": { + "name": "map-pin-off", + "category": "Map", + "tags": ["map", "pin", "off", "navigation", "location", "travel", "pin", "position", "marker", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf3" + }, + "map-pin": { + "name": "map-pin", + "category": "Map", + "tags": ["map", "pin", "navigation", "location", "travel", "pin", "position", "marker", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae8" + }, + "map-pins": { + "name": "map-pins", + "category": "Map", + "tags": ["map", "pins", "place", "direction", "travel", "destination", "mark", "location", "address", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed5e" + }, + "map-search": { + "name": "map-search", + "category": "", + "tags": ["map", "search", "location", "navigation", "gps", "find", "pin", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef82" + }, + "map": { + "name": "map", + "category": "Map", + "tags": ["map", "navigation", "location", "travel", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eae9" + }, + "markdown-off": { + "name": "markdown-off", + "category": "Text", + "tags": ["markdown", "off", "price", "valuation", "cost", "exchange", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f407" + }, + "markdown": { + "name": "markdown", + "category": "Text", + "tags": ["markdown", "price", "valuation", "cost", "exchange", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec41" + }, + "marquee-2": { + "name": "marquee-2", + "category": "", + "tags": ["marquee", "2", "tag", "tracer", "html", "animation", "text", "graphic", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeae" + }, + "marquee-off": { + "name": "marquee-off", + "category": "", + "tags": ["marquee", "off", "tag", "tracer", "html", "animation", "text", "graphic", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15d" + }, + "marquee": { + "name": "marquee", + "category": "", + "tags": ["marquee", "tag", "tracer", "html", "animation", "text", "graphic", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec77" + }, + "mars": { + "name": "mars", + "category": "Symbols", + "tags": ["mars", "male", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec80" + }, + "mask-off": { + "name": "mask-off", + "category": "Design", + "tags": ["mask", "off", "edit", "layer", "mask", "tool", "design", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeaf" + }, + "mask": { + "name": "mask", + "category": "Design", + "tags": ["mask", "edit", "layer", "mask", "tool", "design", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb0" + }, + "masks-theater-off": { + "name": "masks-theater-off", + "category": "", + "tags": ["masks", "theater", "off", "cinema", "comedy", "acting", "face", "art", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f408" + }, + "masks-theater": { + "name": "masks-theater", + "category": "", + "tags": ["masks", "theater", "cinema", "comedy", "acting", "face", "art", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f263" + }, + "massage": { + "name": "massage", + "category": "Health", + "tags": ["massage", "physiotherapy", "spa", "relax", "sports", "therapy", "treatment", "spine", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb1" + }, + "matchstick": { + "name": "matchstick", + "category": "", + "tags": ["matchstick", "fire", "flame", "burn", "spark", "icon", "stroke", "outline"], + "version": "1.107", + "unicode": "f577" + }, + "math-1-divide-2": { + "name": "math-1-divide-2", + "category": "Math", + "tags": ["math", "1", "divide", "2", "calculations", "half", "mathematic", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e2" + }, + "math-1-divide-3": { + "name": "math-1-divide-3", + "category": "Math", + "tags": ["math", "1", "divide", "3", "calculations", "mathematic", "quarter", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e3" + }, + "math-avg": { + "name": "math-avg", + "category": "Math", + "tags": ["math", "avg", "symbol", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f4" + }, + "math-equal-greater": { + "name": "math-equal-greater", + "category": "Math", + "tags": ["math", "equal", "greater", "mathematic", "than", "more", "equation", "sign", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e4" + }, + "math-equal-lower": { + "name": "math-equal-lower", + "category": "Math", + "tags": ["math", "equal", "lower", "mathematic", "less", "than", "equation", "sign", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e5" + }, + "math-function-off": { + "name": "math-function-off", + "category": "Math", + "tags": ["math", "function", "off", "linear", "statyscics", "graph", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15e" + }, + "math-function-y": { + "name": "math-function-y", + "category": "Math", + "tags": ["math", "function", "y", "mathematic", "sign", "x", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e6" + }, + "math-function": { + "name": "math-function", + "category": "Math", + "tags": ["math", "function", "linear", "statyscics", "graph", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb2" + }, + "math-greater": { + "name": "math-greater", + "category": "Math", + "tags": ["math", "greater", "mathematic", "sign", "expression", "more", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e7" + }, + "math-integral-x": { + "name": "math-integral-x", + "category": "Math", + "tags": ["math", "integral", "x", "mathematic", "sign", "y", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e8" + }, + "math-integral": { + "name": "math-integral", + "category": "Math", + "tags": ["math", "integral", "mathematic", "sign", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4e9" + }, + "math-integrals": { + "name": "math-integrals", + "category": "Math", + "tags": ["math", "integrals", "mathematic", "sign", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4ea" + }, + "math-lower": { + "name": "math-lower", + "category": "Math", + "tags": ["math", "lower", "mathematic", "sign", "expressionm", "less", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4eb" + }, + "math-max": { + "name": "math-max", + "category": "Math", + "tags": ["math", "max", "symbol", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f5" + }, + "math-min": { + "name": "math-min", + "category": "Math", + "tags": ["math", "min", "symbol", "icon", "stroke", "outline"], + "version": "1.64", + "unicode": "f0f6" + }, + "math-not": { + "name": "math-not", + "category": "Math", + "tags": ["math", "not", "mathematic", "sign", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4ec" + }, + "math-off": { + "name": "math-off", + "category": "Math", + "tags": ["math", "off", "subject", "count", "plus", "minus", "times", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f409" + }, + "math-pi-divide-2": { + "name": "math-pi-divide-2", + "category": "Math", + "tags": ["math", "pi", "divide", "2", "mathematic", "sign", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4ed" + }, + "math-pi": { + "name": "math-pi", + "category": "Math", + "tags": ["math", "pi", "mathematic", "sign", "expression", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4ee" + }, + "math-symbols": { + "name": "math-symbols", + "category": "Math", + "tags": ["math", "symbols", "calculator", "equal", "plus", "multiplication", "minus", "math", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb3" + }, + "math-x-divide-2": { + "name": "math-x-divide-2", + "category": "Math", + "tags": ["math", "x", "divide", "2", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4ef" + }, + "math-x-divide-y-2": { + "name": "math-x-divide-y-2", + "category": "Math", + "tags": ["math", "x", "divide", "y", "2", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f0" + }, + "math-x-divide-y": { + "name": "math-x-divide-y", + "category": "Math", + "tags": ["math", "x", "divide", "y", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f1" + }, + "math-x-minus-x": { + "name": "math-x-minus-x", + "category": "Math", + "tags": ["math", "x", "minus", "x", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f2" + }, + "math-x-minus-y": { + "name": "math-x-minus-y", + "category": "Math", + "tags": ["math", "x", "minus", "y", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f3" + }, + "math-x-plus-x": { + "name": "math-x-plus-x", + "category": "Math", + "tags": ["math", "x", "plus", "x", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f4" + }, + "math-x-plus-y": { + "name": "math-x-plus-y", + "category": "Math", + "tags": ["math", "x", "plus", "y", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f5" + }, + "math-xy": { + "name": "math-xy", + "category": "Math", + "tags": ["math", "xy", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f6" + }, + "math-y-minus-y": { + "name": "math-y-minus-y", + "category": "Math", + "tags": ["math", "y", "minus", "y", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f7" + }, + "math-y-plus-y": { + "name": "math-y-plus-y", + "category": "Math", + "tags": ["math", "y", "plus", "y", "mathematic", "expression", "equation", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f8" + }, + "math": { + "name": "math", + "category": "Math", + "tags": ["math", "subject", "count", "plus", "minus", "times", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebeb" + }, + "maximize-off": { + "name": "maximize-off", + "category": "", + "tags": ["maximize", "off", "fullscreen", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f15f" + }, + "maximize": { + "name": "maximize", + "category": "", + "tags": ["maximize", "fullscreen", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaea" + }, + "meat-off": { + "name": "meat-off", + "category": "Food", + "tags": ["meat", "off", "food", "beef", "steak", "chicken", "sasuage", "dinner", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40a" + }, + "meat": { + "name": "meat", + "category": "Food", + "tags": ["meat", "food", "beef", "steak", "chicken", "sasuage", "dinner", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef12" + }, + "medal-2": { + "name": "medal-2", + "category": "", + "tags": ["medal", "2", "decorate", "uniform", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efcd" + }, + "medal": { + "name": "medal", + "category": "", + "tags": ["medal", "decorate", "uniform", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec78" + }, + "medical-cross-filled": { + "name": "medical-cross-filled", + "category": "Filled", + "tags": ["medical", "cross", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f681" + }, + "medical-cross-off": { + "name": "medical-cross-off", + "category": "Map", + "tags": ["medical", "cross", "off", "sign", "hospital", "help", "indication", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f160" + }, + "medical-cross": { + "name": "medical-cross", + "category": "Map", + "tags": ["medical", "cross", "sign", "hospital", "help", "indication", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec2f" + }, + "medicine-syrup": { + "name": "medicine-syrup", + "category": "Health", + "tags": ["medicine", "syrup", "bottle", "pharmacy", "healthcare", "health", "mixture", "drug", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef63" + }, + "meeple": { + "name": "meeple", + "category": "Sport", + "tags": ["meeple", "pawn", "board", "game", "wood", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f514" + }, + "menorah": { + "name": "menorah", + "category": "Symbols", + "tags": ["menorah", "judaism", "religion", "cultures", "jewish", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58c" + }, + "menu-2": { + "name": "menu-2", + "category": "System", + "tags": ["menu", "2", "bars", "hamburger", "navigation", "burger", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec42" + }, + "menu-order": { + "name": "menu-order", + "category": "System", + "tags": ["menu", "order", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f5" + }, + "menu": { + "name": "menu", + "category": "System", + "tags": ["menu", "bars", "hamburger", "navigation", "burger", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaeb" + }, + "message-2-code": { + "name": "message-2-code", + "category": "Communication", + "tags": ["message", "2", "code", "coding", "programming", "chat", "program", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f012" + }, + "message-2-off": { + "name": "message-2-off", + "category": "Communication", + "tags": ["message", "2", "off", "comment", "chat", "reply", "faq", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40b" + }, + "message-2-share": { + "name": "message-2-share", + "category": "Communication", + "tags": ["message", "2", "share", "sharing", "email", "mail", "communication", "post", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f077" + }, + "message-2": { + "name": "message-2", + "category": "Communication", + "tags": ["message", "2", "comment", "chat", "reply", "faq", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaec" + }, + "message-chatbot": { + "name": "message-chatbot", + "category": "Communication", + "tags": ["message", "chatbot", "automatic", "robot", "assistant", "support", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38a" + }, + "message-circle-2-filled": { + "name": "message-circle-2-filled", + "category": "Filled", + "tags": ["message", "circle", "2", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f682" + }, + "message-circle-2": { + "name": "message-circle-2", + "category": "Communication", + "tags": ["message", "circle", "2", "comment", "chat", "reply", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed3f" + }, + "message-circle-off": { + "name": "message-circle-off", + "category": "Communication", + "tags": ["message", "circle", "off", "comment", "chat", "reply", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed40" + }, + "message-circle": { + "name": "message-circle", + "category": "Communication", + "tags": ["message", "circle", "comment", "chat", "reply", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaed" + }, + "message-code": { + "name": "message-code", + "category": "Communication", + "tags": ["message", "code", "coding", "programming", "chat", "program", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f013" + }, + "message-dots": { + "name": "message-dots", + "category": "Communication", + "tags": ["message", "dots", "comment", "chat", "reply", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaee" + }, + "message-forward": { + "name": "message-forward", + "category": "Communication", + "tags": ["message", "forward", "email", "mail", "send", "chat", "communication", "arrow", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f28f" + }, + "message-language": { + "name": "message-language", + "category": "Communication", + "tags": ["message", "language", "communication", "translate", "alphabet", "letter", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efae" + }, + "message-off": { + "name": "message-off", + "category": "Communication", + "tags": ["message", "off", "comment", "chat", "reply", "communication", "conversation", "faq", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed41" + }, + "message-plus": { + "name": "message-plus", + "category": "Communication", + "tags": ["message", "plus", "comment", "chat", "reply", "communication", "conversation", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9a" + }, + "message-report": { + "name": "message-report", + "category": "Communication", + "tags": ["message", "report", "comment", "chat", "reply", "communication", "conversation", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9b" + }, + "message-share": { + "name": "message-share", + "category": "Communication", + "tags": ["message", "share", "sharing", "email", "mail", "communication", "post", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f078" + }, + "message": { + "name": "message", + "category": "Communication", + "tags": ["message", "comment", "chat", "reply", "communication", "conversation", "faq", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaef" + }, + "messages-off": { + "name": "messages-off", + "category": "Communication", + "tags": ["messages", "off", "chat", "reply", "comment", "conversation", "communication", "faq", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed42" + }, + "messages": { + "name": "messages", + "category": "Communication", + "tags": ["messages", "chat", "reply", "comment", "conversation", "communication", "faq", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6c" + }, + "meteor-off": { + "name": "meteor-off", + "category": "", + "tags": ["meteor", "off", "space", "comet", "astronomy", "galaxy", "cosmos", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40c" + }, + "meteor": { + "name": "meteor", + "category": "", + "tags": ["meteor", "space", "comet", "astronomy", "galaxy", "cosmos", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1fd" + }, + "mickey-filled": { + "name": "mickey-filled", + "category": "Filled", + "tags": ["mickey", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f683" + }, + "mickey": { + "name": "mickey", + "category": "", + "tags": ["mickey", "fable", "cartoon", "mouse", "kids", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a3" + }, + "microphone-2-off": { + "name": "microphone-2-off", + "category": "Media", + "tags": ["microphone", "2", "off", "record", "sound", "listen", "sing", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40d" + }, + "microphone-2": { + "name": "microphone-2", + "category": "Media", + "tags": ["microphone", "2", "record", "sound", "listen", "sing", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2c" + }, + "microphone-off": { + "name": "microphone-off", + "category": "Media", + "tags": ["microphone", "off", "record", "sound", "listen", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed16" + }, + "microphone": { + "name": "microphone", + "category": "Media", + "tags": ["microphone", "record", "sound", "listen", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf0" + }, + "microscope-off": { + "name": "microscope-off", + "category": "Health", + "tags": ["microscope", "off", "school", "education", "learning", "lab", "experimental", "chemistry", "biology", "medical", "bacteria", "technology", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40e" + }, + "microscope": { + "name": "microscope", + "category": "Health", + "tags": ["microscope", "school", "education", "learning", "lab", "experimental", "chemistry", "biology", "medical", "bacteria", "technology", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef64" + }, + "microwave-off": { + "name": "microwave-off", + "category": "", + "tags": ["microwave", "off", "oven", "kitchen", "cooking", "food", "cook", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f264" + }, + "microwave": { + "name": "microwave", + "category": "", + "tags": ["microwave", "oven", "kitchen", "cooking", "food", "cook", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f248" + }, + "military-award": { + "name": "military-award", + "category": "", + "tags": ["military", "award", "achievement", "honor", "badge", "medal", "prize", "army", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "f079" + }, + "military-rank": { + "name": "military-rank", + "category": "", + "tags": ["military", "rank", "soldier", "army", "private", "private second class", "private first class", "specialist", "corporal", "sergeant", "staff sergeant", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efcf" + }, + "milk-off": { + "name": "milk-off", + "category": "Food", + "tags": ["milk", "off", "food", "drink", "cow", "healthy", "breakfast", "bottle", "coffee", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f40f" + }, + "milk": { + "name": "milk", + "category": "Food", + "tags": ["milk", "food", "drink", "cow", "healthy", "breakfast", "bottle", "coffee", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef13" + }, + "milkshake": { + "name": "milkshake", + "category": "Food", + "tags": ["milkshake", "drink", "sweet", "food", "cocktail", "cream", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c8" + }, + "minimize": { + "name": "minimize", + "category": "", + "tags": ["minimize", "exit", "close", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf1" + }, + "minus-vertical": { + "name": "minus-vertical", + "category": "", + "tags": ["minus", "vertical", "subtract", "less", "divide", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb4" + }, + "minus": { + "name": "minus", + "category": "Math", + "tags": ["minus", "subtract", "less", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf2" + }, + "mist-off": { + "name": "mist-off", + "category": "Weather", + "tags": ["mist", "off", "weather", "visibility", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f410" + }, + "mist": { + "name": "mist", + "category": "Weather", + "tags": ["mist", "weather", "visibility", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec30" + }, + "moneybag": { + "name": "moneybag", + "category": "", + "tags": ["moneybag", "finance", "cash", "dollar", "currency", "bank", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f506" + }, + "mood-angry": { + "name": "mood-angry", + "category": "Mood", + "tags": ["mood", "angry", "mad", "feeling", "face", "nervous", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2de" + }, + "mood-annoyed-2": { + "name": "mood-annoyed-2", + "category": "Mood", + "tags": ["mood", "annoyed", "2", "appalled", "agitated", "upset", "angry", "face", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2df" + }, + "mood-annoyed": { + "name": "mood-annoyed", + "category": "Mood", + "tags": ["mood", "annoyed", "appalled", "agitated", "upset", "angry", "face", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e0" + }, + "mood-boy": { + "name": "mood-boy", + "category": "Mood", + "tags": ["mood", "boy", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2d" + }, + "mood-confuzed": { + "name": "mood-confuzed", + "category": "Mood", + "tags": ["mood", "confuzed", "face", "emoji", "emotion", "frown", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf3" + }, + "mood-crazy-happy": { + "name": "mood-crazy-happy", + "category": "Mood", + "tags": ["mood", "crazy", "happy", "good", "excited", "cheerful", "jolly", "delighted", "lucky", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed90" + }, + "mood-cry": { + "name": "mood-cry", + "category": "Mood", + "tags": ["mood", "cry", "face", "emoji", "emotion", "mad", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecbb" + }, + "mood-empty": { + "name": "mood-empty", + "category": "Mood", + "tags": ["mood", "empty", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eeb5" + }, + "mood-happy": { + "name": "mood-happy", + "category": "Mood", + "tags": ["mood", "happy", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf4" + }, + "mood-kid": { + "name": "mood-kid", + "category": "Mood", + "tags": ["mood", "kid", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec03" + }, + "mood-look-left": { + "name": "mood-look-left", + "category": "Mood", + "tags": ["mood", "look", "left", "west", "face", "direction", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c5" + }, + "mood-look-right": { + "name": "mood-look-right", + "category": "Mood", + "tags": ["mood", "look", "right", "east", "face", "direction", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c6" + }, + "mood-nerd": { + "name": "mood-nerd", + "category": "Mood", + "tags": ["mood", "nerd", "geek", "face", "bore", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e1" + }, + "mood-nervous": { + "name": "mood-nervous", + "category": "Mood", + "tags": ["mood", "nervous", "angry", "stressed", "worry", "frustrated", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef96" + }, + "mood-neutral": { + "name": "mood-neutral", + "category": "Mood", + "tags": ["mood", "neutral", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf5" + }, + "mood-off": { + "name": "mood-off", + "category": "", + "tags": ["mood", "off", "sad", "happy", "emoji", "smiley", "neutral", "face", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f161" + }, + "mood-sad-2": { + "name": "mood-sad-2", + "category": "Mood", + "tags": ["mood", "sad", "2", "face", "emoji", "emotion", "mad", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e2" + }, + "mood-sad-dizzy": { + "name": "mood-sad-dizzy", + "category": "Mood", + "tags": ["mood", "sad", "dizzy", "face", "emoji", "emotion", "mad", "displeased", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e3" + }, + "mood-sad-squint": { + "name": "mood-sad-squint", + "category": "Mood", + "tags": ["mood", "sad", "squint", "face", "emoji", "emotion", "mad", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e4" + }, + "mood-sad": { + "name": "mood-sad", + "category": "Mood", + "tags": ["mood", "sad", "face", "emoji", "emotion", "mad", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf6" + }, + "mood-sick": { + "name": "mood-sick", + "category": "Mood", + "tags": ["mood", "sick", "face", "emoji", "emotion", "suffering", "unhealthy", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e5" + }, + "mood-silence": { + "name": "mood-silence", + "category": "Mood", + "tags": ["mood", "silence", "face", "emoji", "emotion", "quiet", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e6" + }, + "mood-sing": { + "name": "mood-sing", + "category": "Mood", + "tags": ["mood", "sing", "face", "emoji", "emotion", "song", "melody", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c7" + }, + "mood-smile-beam": { + "name": "mood-smile-beam", + "category": "Mood", + "tags": ["mood", "smile", "beam", "face", "emoji", "emotion", "happy", "smiley", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e7" + }, + "mood-smile-dizzy": { + "name": "mood-smile-dizzy", + "category": "Mood", + "tags": ["mood", "smile", "dizzy", "face", "emoji", "emotion", "happy", "smiley", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e8" + }, + "mood-smile": { + "name": "mood-smile", + "category": "Mood", + "tags": ["mood", "smile", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf7" + }, + "mood-suprised": { + "name": "mood-suprised", + "category": "Mood", + "tags": ["mood", "suprised", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec04" + }, + "mood-tongue-wink-2": { + "name": "mood-tongue-wink-2", + "category": "Mood", + "tags": ["mood", "tongue", "wink", "2", "face", "emoji", "emotion", "happy", "joke", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2e9" + }, + "mood-tongue-wink": { + "name": "mood-tongue-wink", + "category": "Mood", + "tags": ["mood", "tongue", "wink", "face", "emoji", "emotion", "happy", "joke", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2ea" + }, + "mood-tongue": { + "name": "mood-tongue", + "category": "Mood", + "tags": ["mood", "tongue", "face", "emoji", "emotion", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb95" + }, + "mood-unamused": { + "name": "mood-unamused", + "category": "Mood", + "tags": ["mood", "unamused", "face", "emoji", "emotion", "unfunny", "unhappy", "unsmilling", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2eb" + }, + "mood-wink-2": { + "name": "mood-wink-2", + "category": "Mood", + "tags": ["mood", "wink", "2", "face", "emoji", "emotion", "smile", "funny", "happy", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2ec" + }, + "mood-wink": { + "name": "mood-wink", + "category": "Mood", + "tags": ["mood", "wink", "face", "emoji", "emotion", "smile", "funny", "happy", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2ed" + }, + "mood-wrrr": { + "name": "mood-wrrr", + "category": "Mood", + "tags": ["mood", "wrrr", "face", "emoji", "emotion", "disgusted", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2ee" + }, + "mood-xd": { + "name": "mood-xd", + "category": "Mood", + "tags": ["mood", "xd", "face", "emoji", "emotion", "funny", "happy", "smiley", "joke", "icon", "stroke", "outline"], + "version": "1.83", + "unicode": "f2ef" + }, + "moon-2": { + "name": "moon-2", + "category": "Weather", + "tags": ["moon", "2", "night", "dark mode", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece6" + }, + "moon-filled": { + "name": "moon-filled", + "category": "Filled", + "tags": ["moon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f684" + }, + "moon-off": { + "name": "moon-off", + "category": "Weather", + "tags": ["moon", "off", "night", "dark mode", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f162" + }, + "moon-stars": { + "name": "moon-stars", + "category": "Weather", + "tags": ["moon", "stars", "night", "dark mode", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece7" + }, + "moon": { + "name": "moon", + "category": "Weather", + "tags": ["moon", "night", "dark mode", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf8" + }, + "moped": { + "name": "moped", + "category": "Vehicles", + "tags": ["moped", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecbc" + }, + "motorbike": { + "name": "motorbike", + "category": "Vehicles", + "tags": ["motorbike", "engine", "ride", "trip", "journey", "road", "street", "vehicle", "motorcycle", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb6" + }, + "mountain-off": { + "name": "mountain-off", + "category": "", + "tags": ["mountain", "off", "alps", "camping", "mount everest", "trekking", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f411" + }, + "mountain": { + "name": "mountain", + "category": "", + "tags": ["mountain", "alps", "camping", "mount everest", "trekking", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef97" + }, + "mouse-2": { + "name": "mouse-2", + "category": "Devices", + "tags": ["mouse", "2", "computer", "hardware", "pointer", "cursor", "device", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d7" + }, + "mouse-off": { + "name": "mouse-off", + "category": "Devices", + "tags": ["mouse", "off", "pointer", "cursor", "device", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f163" + }, + "mouse": { + "name": "mouse", + "category": "Devices", + "tags": ["mouse", "pointer", "cursor", "device", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaf9" + }, + "moustache": { + "name": "moustache", + "category": "", + "tags": ["moustache", "man", "face", "beard", "male", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c9" + }, + "movie-off": { + "name": "movie-off", + "category": "Media", + "tags": ["movie", "off", "film", "video", "cinema", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f164" + }, + "movie": { + "name": "movie", + "category": "Media", + "tags": ["movie", "film", "video", "cinema", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eafa" + }, + "mug-off": { + "name": "mug-off", + "category": "Food", + "tags": ["mug", "off", "tea", "coffee", "drink", "container", "jug", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f165" + }, + "mug": { + "name": "mug", + "category": "Food", + "tags": ["mug", "tea", "coffee", "drink", "container", "jug", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eafb" + }, + "multiplier-0-5x": { + "name": "multiplier-0-5x", + "category": "Math", + "tags": ["multiplier", "0", "5x", "count", "calculate", "math", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef41" + }, + "multiplier-1-5x": { + "name": "multiplier-1-5x", + "category": "Math", + "tags": ["multiplier", "1", "5x", "count", "calculate", "math", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef42" + }, + "multiplier-1x": { + "name": "multiplier-1x", + "category": "Math", + "tags": ["multiplier", "1x", "count", "calculate", "math", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef43" + }, + "multiplier-2x": { + "name": "multiplier-2x", + "category": "Math", + "tags": ["multiplier", "2x", "count", "calculate", "math", "icon", "stroke", "outline"], + "version": "1.42", + "unicode": "ef44" + }, + "mushroom-off": { + "name": "mushroom-off", + "category": "Food", + "tags": ["mushroom", "off", "food", "vegetable", "cooking", "fungus", "mushrooming", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f412" + }, + "mushroom": { + "name": "mushroom", + "category": "Food", + "tags": ["mushroom", "food", "vegetable", "cooking", "fungus", "mushrooming", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef14" + }, + "music-off": { + "name": "music-off", + "category": "Media", + "tags": ["music", "off", "sound", "mp3", "album", "sound", "speakers", "melody", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f166" + }, + "music": { + "name": "music", + "category": "Media", + "tags": ["music", "sound", "mp3", "album", "sound", "speakers", "melody", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eafc" + }, + "navigation-filled": { + "name": "navigation-filled", + "category": "Filled", + "tags": ["navigation", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f685" + }, + "navigation-off": { + "name": "navigation-off", + "category": "Map", + "tags": ["navigation", "off", "map", "location", "direction", "pin", "gps", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f413" + }, + "navigation": { + "name": "navigation", + "category": "Map", + "tags": ["navigation", "map", "location", "direction", "pin", "gps", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c8" + }, + "needle-thread": { + "name": "needle-thread", + "category": "", + "tags": ["needle", "thread", "sewing", "tailoring", "craft", "tailor", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f507" + }, + "needle": { + "name": "needle", + "category": "", + "tags": ["needle", "sewing", "tailoring", "craft", "tailor", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f508" + }, + "network-off": { + "name": "network-off", + "category": "", + "tags": ["network", "off", "connection", "internet", "communication", "connect", "web", "signal", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f414" + }, + "network": { + "name": "network", + "category": "", + "tags": ["network", "connection", "internet", "communication", "connect", "web", "signal", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f09f" + }, + "new-section": { + "name": "new-section", + "category": "", + "tags": ["new", "section", "add", "element", "component", "layout", "page", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc1" + }, + "news-off": { + "name": "news-off", + "category": "Document", + "tags": ["news", "off", "newspaper", "article", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f167" + }, + "news": { + "name": "news", + "category": "Document", + "tags": ["news", "newspaper", "article", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eafd" + }, + "nfc-off": { + "name": "nfc-off", + "category": "Devices", + "tags": ["nfc", "off", "payment", "nfc", "cash", "chip", "shopping", "cashless", "pass", "contactless", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f168" + }, + "nfc": { + "name": "nfc", + "category": "Devices", + "tags": ["nfc", "payment", "nfc", "cash", "chip", "shopping", "cashless", "pass", "contactless", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb7" + }, + "no-copyright": { + "name": "no-copyright", + "category": "", + "tags": ["no", "copyright", "cancel", "copy", "restriction", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efb9" + }, + "no-creative-commons": { + "name": "no-creative-commons", + "category": "", + "tags": ["no", "creative", "commons", "license", "cancel", "copyrights", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efba" + }, + "no-derivatives": { + "name": "no-derivatives", + "category": "", + "tags": ["no", "derivatives", "law", "license", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efbb" + }, + "north-star": { + "name": "north-star", + "category": "Map", + "tags": ["north", "star", "compas", "location", "point", "christmas", "direction", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f014" + }, + "note-off": { + "name": "note-off", + "category": "Document", + "tags": ["note", "off", "checkbox", "brief", "record", "write", "message", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f169" + }, + "note": { + "name": "note", + "category": "Document", + "tags": ["note", "checkbox", "brief", "record", "write", "message", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6d" + }, + "notebook-off": { + "name": "notebook-off", + "category": "Document", + "tags": ["notebook", "off", "study", "learn", "diary", "write", "journal", "page", "paper", "jot down", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f415" + }, + "notebook": { + "name": "notebook", + "category": "Document", + "tags": ["notebook", "study", "learn", "diary", "write", "journal", "page", "paper", "jot down", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb96" + }, + "notes-off": { + "name": "notes-off", + "category": "Document", + "tags": ["notes", "off", "notetaking", "journal", "draft", "idea", "to-do list", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16a" + }, + "notes": { + "name": "notes", + "category": "Document", + "tags": ["notes", "notetaking", "journal", "draft", "idea", "to-do list", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6e" + }, + "notification-off": { + "name": "notification-off", + "category": "System", + "tags": ["notification", "off", "bell", "alarm", "reminder", "important", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16b" + }, + "notification": { + "name": "notification", + "category": "System", + "tags": ["notification", "bell", "alarm", "reminder", "important", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eafe" + }, + "number-0": { + "name": "number-0", + "category": "Numbers", + "tags": ["number", "0", "zero", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf0" + }, + "number-1": { + "name": "number-1", + "category": "Numbers", + "tags": ["number", "1", "one", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf1" + }, + "number-2": { + "name": "number-2", + "category": "Numbers", + "tags": ["number", "2", "two", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf2" + }, + "number-3": { + "name": "number-3", + "category": "Numbers", + "tags": ["number", "3", "three", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf3" + }, + "number-4": { + "name": "number-4", + "category": "Numbers", + "tags": ["number", "4", "four", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf4" + }, + "number-5": { + "name": "number-5", + "category": "Numbers", + "tags": ["number", "5", "five", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf5" + }, + "number-6": { + "name": "number-6", + "category": "Numbers", + "tags": ["number", "6", "six", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf6" + }, + "number-7": { + "name": "number-7", + "category": "Numbers", + "tags": ["number", "7", "seven", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf7" + }, + "number-8": { + "name": "number-8", + "category": "Numbers", + "tags": ["number", "8", "eight", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf8" + }, + "number-9": { + "name": "number-9", + "category": "Numbers", + "tags": ["number", "9", "nine", "maths", "value", "quantity", "calculate", "calculation", "total", "amount", "sum", "order", "digit", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edf9" + }, + "number": { + "name": "number", + "category": "", + "tags": ["number", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "math", "counting", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1fe" + }, + "numbers": { + "name": "numbers", + "category": "", + "tags": ["numbers", "math", "counting", "calculator", "calculate", "one", "two", "three", "four", "five", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f015" + }, + "nurse": { + "name": "nurse", + "category": "Health", + "tags": ["nurse", "hospital", "doctor", "medical", "woman", "emergency", "medicine", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef65" + }, + "octagon-filled": { + "name": "octagon-filled", + "category": "Filled", + "tags": ["octagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f686" + }, + "octagon-off": { + "name": "octagon-off", + "category": "Shapes", + "tags": ["octagon", "off", "shape", "geometric", "math", "2d", "building", "government", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb8" + }, + "octagon": { + "name": "octagon", + "category": "Shapes", + "tags": ["octagon", "shape", "geometric", "math", "2d", "building", "government", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecbd" + }, + "old": { + "name": "old", + "category": "Health", + "tags": ["old", "senior", "person", "elderly", "age", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeb9" + }, + "olympics-off": { + "name": "olympics-off", + "category": "Sport", + "tags": ["olympics", "off", "game", "play", "sport", "sportsman", "champion", "win", "medal", "sporting", "event", "competition", "athlete", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f416" + }, + "olympics": { + "name": "olympics", + "category": "Sport", + "tags": ["olympics", "game", "play", "sport", "sportsman", "champion", "win", "medal", "sporting", "event", "competition", "athlete", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeba" + }, + "om": { + "name": "om", + "category": "Symbols", + "tags": ["om", "hinduism", "religion", "hindu", "symbol", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58d" + }, + "omega": { + "name": "omega", + "category": "Math", + "tags": ["omega", "alphabet", "greek", "symbol", "final", "last", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb97" + }, + "outbound": { + "name": "outbound", + "category": "", + "tags": ["outbound", "call", "exit", "telephone", "out", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f249" + }, + "outlet": { + "name": "outlet", + "category": "", + "tags": ["outlet", "socket", "electricity", "electrical", "plug in", "device", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd7" + }, + "oval-filled": { + "name": "oval-filled", + "category": "Filled", + "tags": ["oval", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f687" + }, + "oval-vertical-filled": { + "name": "oval-vertical-filled", + "category": "Filled", + "tags": ["oval", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f688" + }, + "oval-vertical": { + "name": "oval-vertical", + "category": "Shapes", + "tags": ["oval", "vertical", "shape", "graphic", "circle", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02d" + }, + "oval": { + "name": "oval", + "category": "Shapes", + "tags": ["oval", "shape", "graphic", "egg", "circle", "zero", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02e" + }, + "overline": { + "name": "overline", + "category": "Text", + "tags": ["overline", "above", "overbar", "overscore", "horizontal", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eebb" + }, + "package-off": { + "name": "package-off", + "category": "E-commerce", + "tags": ["package", "off", "npm", "box", "container", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16c" + }, + "package": { + "name": "package", + "category": "E-commerce", + "tags": ["package", "npm", "box", "container", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eaff" + }, + "packages": { + "name": "packages", + "category": "", + "tags": ["packages", "delivery", "boxes", "storage", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2c9" + }, + "packge-export": { + "name": "packge-export", + "category": "", + "tags": ["packge", "export", "npm", "box", "container", "delivery", "logistic", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07a" + }, + "packge-import": { + "name": "packge-import", + "category": "", + "tags": ["packge", "import", "npm", "box", "container", "delivery", "shipping", "courier", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07b" + }, + "pacman": { + "name": "pacman", + "category": "", + "tags": ["pacman", "game", "play", "online", "maze", "eat", "dot", "ghost", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eebc" + }, + "page-break": { + "name": "page-break", + "category": "", + "tags": ["page", "break", "summary", "feature", "element", "css", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec81" + }, + "paint-off": { + "name": "paint-off", + "category": "Design", + "tags": ["paint", "off", "brush", "renovation", "refurbishment", "color", "wall", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16d" + }, + "paint": { + "name": "paint", + "category": "Design", + "tags": ["paint", "brush", "renovation", "refurbishment", "color", "wall", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb00" + }, + "palette-off": { + "name": "palette-off", + "category": "Design", + "tags": ["palette", "off", "color", "paint", "painter", "picture", "board", "artist", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16e" + }, + "palette": { + "name": "palette", + "category": "Design", + "tags": ["palette", "color", "paint", "painter", "picture", "board", "artist", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb01" + }, + "panorama-horizontal-off": { + "name": "panorama-horizontal-off", + "category": "Photography", + "tags": ["panorama", "horizontal", "off", "photo", "picture", "panoramic", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f417" + }, + "panorama-horizontal": { + "name": "panorama-horizontal", + "category": "Photography", + "tags": ["panorama", "horizontal", "photo", "picture", "panoramic", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed33" + }, + "panorama-vertical-off": { + "name": "panorama-vertical-off", + "category": "Photography", + "tags": ["panorama", "vertical", "off", "photo", "picture", "panoramic", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f418" + }, + "panorama-vertical": { + "name": "panorama-vertical", + "category": "Photography", + "tags": ["panorama", "vertical", "photo", "picture", "panoramic", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed34" + }, + "paper-bag-off": { + "name": "paper-bag-off", + "category": "Food", + "tags": ["paper", "bag", "off", "recycle", "shopping", "ecology", "food", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f16f" + }, + "paper-bag": { + "name": "paper-bag", + "category": "Food", + "tags": ["paper", "bag", "recycle", "shopping", "ecology", "food", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f02f" + }, + "paperclip": { + "name": "paperclip", + "category": "", + "tags": ["paperclip", "attachment", "annex", "hold", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb02" + }, + "parachute-off": { + "name": "parachute-off", + "category": "Vehicles", + "tags": ["parachute", "off", "plane", "aircraft", "land", "float", "pilot", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f170" + }, + "parachute": { + "name": "parachute", + "category": "Vehicles", + "tags": ["parachute", "plane", "aircraft", "land", "float", "pilot", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7c" + }, + "parentheses-off": { + "name": "parentheses-off", + "category": "Math", + "tags": ["parentheses", "off", "brackets", "aside", "punctuation", "mark", "insert", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f171" + }, + "parentheses": { + "name": "parentheses", + "category": "Math", + "tags": ["parentheses", "brackets", "aside", "punctuation", "mark", "insert", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd8" + }, + "parking-off": { + "name": "parking-off", + "category": "Map", + "tags": ["parking", "off", "sign", "car", "vehicle", "space", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f172" + }, + "parking": { + "name": "parking", + "category": "Map", + "tags": ["parking", "sign", "car", "vehicle", "space", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb03" + }, + "password": { + "name": "password", + "category": "", + "tags": ["password", "lock", "secure", "privacy", "locked", "login", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4ca" + }, + "paw-filled": { + "name": "paw-filled", + "category": "Filled", + "tags": ["paw", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f689" + }, + "paw-off": { + "name": "paw-off", + "category": "", + "tags": ["paw", "off", "animal", "dog", "cat", "foot", "pets", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f419" + }, + "paw": { + "name": "paw", + "category": "", + "tags": ["paw", "animal", "dog", "cat", "foot", "pets", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "eff9" + }, + "peace": { + "name": "peace", + "category": "Symbols", + "tags": ["peace", "love", "hippy", "minority", "opinion", "equilibrium", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecbe" + }, + "pencil-minus": { + "name": "pencil-minus", + "category": "Design", + "tags": ["pencil", "minus", "dash", "edit", "marker", "delete", "remove", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1eb" + }, + "pencil-off": { + "name": "pencil-off", + "category": "Design", + "tags": ["pencil", "off", "write", "draft", "edit", "note", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f173" + }, + "pencil-plus": { + "name": "pencil-plus", + "category": "Design", + "tags": ["pencil", "plus", "add", "edit", "write", "create", "more", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1ec" + }, + "pencil": { + "name": "pencil", + "category": "Design", + "tags": ["pencil", "write", "draft", "edit", "note", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb04" + }, + "pennant-2-filled": { + "name": "pennant-2-filled", + "category": "Filled", + "tags": ["pennant", "2", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68a" + }, + "pennant-2": { + "name": "pennant-2", + "category": "Map", + "tags": ["pennant", "2", "flag", "ship", "sports", "championship", "mark", "spot", "winner", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f06a" + }, + "pennant-filled": { + "name": "pennant-filled", + "category": "Filled", + "tags": ["pennant", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68b" + }, + "pennant-off": { + "name": "pennant-off", + "category": "Map", + "tags": ["pennant", "off", "flag", "ship", "sports", "championship", "mark", "spot", "winner", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f174" + }, + "pennant": { + "name": "pennant", + "category": "Map", + "tags": ["pennant", "flag", "ship", "sports", "championship", "mark", "spot", "winner", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7d" + }, + "pentagon-filled": { + "name": "pentagon-filled", + "category": "Filled", + "tags": ["pentagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68c" + }, + "pentagon-off": { + "name": "pentagon-off", + "category": "Shapes", + "tags": ["pentagon", "off", "shape", "figure", "math", "graphic", "geometry", "form", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41a" + }, + "pentagon": { + "name": "pentagon", + "category": "Shapes", + "tags": ["pentagon", "shape", "figure", "math", "graphic", "geometry", "form", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe3" + }, + "pentagram": { + "name": "pentagram", + "category": "", + "tags": ["pentagram", "evil", "scary", "satanism", "halloween", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f586" + }, + "pepper-off": { + "name": "pepper-off", + "category": "Food", + "tags": ["pepper", "off", "food", "spice", "chili", "jalapeño", "hot", "spicy", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f175" + }, + "pepper": { + "name": "pepper", + "category": "Food", + "tags": ["pepper", "food", "spice", "chili", "jalapeño", "hot", "spicy", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef15" + }, + "percentage": { + "name": "percentage", + "category": "Math", + "tags": ["percentage", "sign", "symbol", "math", "economics", "cash", "bank account", "chart", "graph", "diagram", "statistic", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf4" + }, + "perfume": { + "name": "perfume", + "category": "", + "tags": ["perfume", "spray", "smell", "cosmetics", "beauty", "scent", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f509" + }, + "perspective-off": { + "name": "perspective-off", + "category": "Shapes", + "tags": ["perspective", "off", "3d", "perspective", "transform", "reshape", "scale", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f176" + }, + "perspective": { + "name": "perspective", + "category": "Shapes", + "tags": ["perspective", "3d", "perspective", "transform", "reshape", "scale", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eebd" + }, + "phone-call": { + "name": "phone-call", + "category": "Devices", + "tags": ["phone", "call", "ring", "mobile", "conversation", "answer", "dial", "landline", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb05" + }, + "phone-calling": { + "name": "phone-calling", + "category": "Devices", + "tags": ["phone", "calling", "ring", "mobile", "conversation", "answer", "dial", "landline", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec43" + }, + "phone-check": { + "name": "phone-check", + "category": "Devices", + "tags": ["phone", "check", "ring", "mobile", "conversation", "answer", "dial", "landline", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec05" + }, + "phone-incoming": { + "name": "phone-incoming", + "category": "Devices", + "tags": ["phone", "incoming", "call", "answer", "mobile", "landline", "conversation", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb06" + }, + "phone-off": { + "name": "phone-off", + "category": "Devices", + "tags": ["phone", "off", "call", "mobile", "conversation", "landline", "answer", "number", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf5" + }, + "phone-outgoing": { + "name": "phone-outgoing", + "category": "Devices", + "tags": ["phone", "outgoing", "call", "signal", "mobile", "landline", "conversation", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb07" + }, + "phone-pause": { + "name": "phone-pause", + "category": "Devices", + "tags": ["phone", "pause", "call", "mute", "mobile", "landline", "conversation", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb08" + }, + "phone-plus": { + "name": "phone-plus", + "category": "Devices", + "tags": ["phone", "plus", "call", "signal", "mobile", "landline", "conversation", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec06" + }, + "phone-x": { + "name": "phone-x", + "category": "Devices", + "tags": ["phone", "x", "ring", "mobile", "conversation", "answer", "dial", "landline", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec07" + }, + "phone": { + "name": "phone", + "category": "Devices", + "tags": ["phone", "call", "mobile", "conversation", "landline", "answer", "number", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb09" + }, + "photo-cancel": { + "name": "photo-cancel", + "category": "Media", + "tags": ["photo", "cancel", "delete", "gallery", "image", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35d" + }, + "photo-check": { + "name": "photo-check", + "category": "Media", + "tags": ["photo", "check", "success", "complete", "image", "gallery", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35e" + }, + "photo-down": { + "name": "photo-down", + "category": "Media", + "tags": ["photo", "down", "image", "gallery", "download", "arrow", "south", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f35f" + }, + "photo-edit": { + "name": "photo-edit", + "category": "Media", + "tags": ["photo", "edit", "image", "gallery", "tool", "create", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f360" + }, + "photo-heart": { + "name": "photo-heart", + "category": "Media", + "tags": ["photo", "heart", "image", "gallery", "love", "romance", "wedding", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f361" + }, + "photo-minus": { + "name": "photo-minus", + "category": "Media", + "tags": ["photo", "minus", "image", "gallery", "delete", "remove", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f362" + }, + "photo-off": { + "name": "photo-off", + "category": "Media", + "tags": ["photo", "off", "image", "picture", "landscape", "camera", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf6" + }, + "photo-plus": { + "name": "photo-plus", + "category": "Media", + "tags": ["photo", "plus", "image", "gallery", "add", "new", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f363" + }, + "photo-search": { + "name": "photo-search", + "category": "Media", + "tags": ["photo", "search", "image", "gallery", "find", "zoom", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f364" + }, + "photo-shield": { + "name": "photo-shield", + "category": "Media", + "tags": ["photo", "shield", "image", "gallery", "safety", "secure", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f365" + }, + "photo-star": { + "name": "photo-star", + "category": "Media", + "tags": ["photo", "star", "image", "gallery", "favourite", "best", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f366" + }, + "photo-up": { + "name": "photo-up", + "category": "Media", + "tags": ["photo", "up", "image", "gallery", "load", "send", "arrow", "north", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38b" + }, + "photo-x": { + "name": "photo-x", + "category": "Media", + "tags": ["photo", "x", "image", "gallery", "delete", "remove", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f367" + }, + "photo": { + "name": "photo", + "category": "Media", + "tags": ["photo", "image", "picture", "landscape", "camera", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0a" + }, + "physotherapist": { + "name": "physotherapist", + "category": "Health", + "tags": ["physotherapist", "physiotherapy", "spa", "therapy", "treatment", "pain", "exercise", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eebe" + }, + "picture-in-picture-off": { + "name": "picture-in-picture-off", + "category": "Media", + "tags": ["picture", "in", "picture", "off", "size", "photo", "elements", "adjust", "image", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed43" + }, + "picture-in-picture-on": { + "name": "picture-in-picture-on", + "category": "Media", + "tags": ["picture", "in", "picture", "on", "size", "photo", "elements", "adjust", "image", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed44" + }, + "picture-in-picture-top": { + "name": "picture-in-picture-top", + "category": "", + "tags": ["picture", "in", "picture", "top", "browser", "shape", "rectangle", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe4" + }, + "picture-in-picture": { + "name": "picture-in-picture", + "category": "Media", + "tags": ["picture", "in", "picture", "size", "photo", "elements", "adjust", "image", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed35" + }, + "pig-money": { + "name": "pig-money", + "category": "Animals", + "tags": ["pig", "money", "coin", "finance", "saving", "bank", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38c" + }, + "pig-off": { + "name": "pig-off", + "category": "Animals", + "tags": ["pig", "off", "animal", "farm", "pork", "mud", "pink", "piggy", "bank", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f177" + }, + "pig": { + "name": "pig", + "category": "Animals", + "tags": ["pig", "animal", "farm", "pork", "mud", "pink", "piggy", "bank", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef52" + }, + "pilcrow": { + "name": "pilcrow", + "category": "Text", + "tags": ["pilcrow", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f6" + }, + "pill-off": { + "name": "pill-off", + "category": "Health", + "tags": ["pill", "off", "drug", "medication", "illness", "sickness", "doctor", "prescription", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f178" + }, + "pill": { + "name": "pill", + "category": "Health", + "tags": ["pill", "drug", "medication", "illness", "sickness", "doctor", "prescription", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ec44" + }, + "pills": { + "name": "pills", + "category": "Health", + "tags": ["pills", "drug", "medication", "illness", "sickness", "doctor", "prescription", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef66" + }, + "pin-filled": { + "name": "pin-filled", + "category": "Filled", + "tags": ["pin", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68d" + }, + "pin": { + "name": "pin", + "category": "Map", + "tags": ["pin", "thing", "localization", "maps", "clip", "place", "location", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9c" + }, + "ping-pong": { + "name": "ping-pong", + "category": "Sport", + "tags": ["ping", "pong", "table", "tennis", "ball", "sport", "racket", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38d" + }, + "pinned-filled": { + "name": "pinned-filled", + "category": "Filled", + "tags": ["pinned", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68e" + }, + "pinned-off": { + "name": "pinned-off", + "category": "Map", + "tags": ["pinned", "off", "board", "attach", "nail", "pointed", "corkboard", "favourite", "noticeboard", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed5f" + }, + "pinned": { + "name": "pinned", + "category": "Map", + "tags": ["pinned", "board", "attach", "nail", "pointed", "corkboard", "favourite", "noticeboard", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed60" + }, + "pizza-off": { + "name": "pizza-off", + "category": "Food", + "tags": ["pizza", "off", "food", "cheese", "italy", "pepperoni", "margherita", "capricciosa", "rucole", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f179" + }, + "pizza": { + "name": "pizza", + "category": "Food", + "tags": ["pizza", "food", "cheese", "italy", "pepperoni", "margherita", "capricciosa", "rucole", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edbb" + }, + "placeholder": { + "name": "placeholder", + "category": "", + "tags": ["placeholder", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f626" + }, + "plane-arrival": { + "name": "plane-arrival", + "category": "Vehicles", + "tags": ["plane", "arrival", "travel", "land", "journey", "trip", "airport", "baggage", "luggage", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb99" + }, + "plane-departure": { + "name": "plane-departure", + "category": "Vehicles", + "tags": ["plane", "departure", "travel", "take off", "journey", "trip", "airport", "baggage", "luggage", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9a" + }, + "plane-inflight": { + "name": "plane-inflight", + "category": "Vehicles", + "tags": ["plane", "inflight", "travel", "vacation", "summer", "sea", "ocean", "skies", "clouds", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef98" + }, + "plane-off": { + "name": "plane-off", + "category": "Vehicles", + "tags": ["plane", "off", "travel", "journey", "trip", "airport", "baggage", "luggage", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17a" + }, + "plane-tilt": { + "name": "plane-tilt", + "category": "Vehicles", + "tags": ["plane", "tilt", "up", "higher", "north", "travel", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1ed" + }, + "plane": { + "name": "plane", + "category": "Vehicles", + "tags": ["plane", "travel", "journey", "trip", "airport", "baggage", "luggage", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb6f" + }, + "planet-off": { + "name": "planet-off", + "category": "Map", + "tags": ["planet", "off", "earth", "uranus", "universe", "space", "galaxy", "orbit", "atmosphere", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17b" + }, + "planet": { + "name": "planet", + "category": "Map", + "tags": ["planet", "earth", "uranus", "universe", "space", "galaxy", "orbit", "atmosphere", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec08" + }, + "plant-2-off": { + "name": "plant-2-off", + "category": "Nature", + "tags": ["plant", "2", "off", "nature", "green", "flower", "pot", "tree", "leaf", "greenery", "root", "stem", "seed", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17c" + }, + "plant-2": { + "name": "plant-2", + "category": "Nature", + "tags": ["plant", "2", "nature", "green", "flower", "pot", "tree", "leaf", "greenery", "root", "stem", "seed", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7e" + }, + "plant-off": { + "name": "plant-off", + "category": "Nature", + "tags": ["plant", "off", "nature", "green", "flower", "pot", "tree", "leaf", "greenery", "root", "stem", "seed", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17d" + }, + "plant": { + "name": "plant", + "category": "Nature", + "tags": ["plant", "nature", "green", "flower", "pot", "tree", "leaf", "greenery", "root", "stem", "seed", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed50" + }, + "play-card-off": { + "name": "play-card-off", + "category": "", + "tags": ["play", "card", "off", "game", "magic", "trick", "casino", "entertainment", "spade", "heart", "diamond", "club", "playing", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17e" + }, + "play-card": { + "name": "play-card", + "category": "", + "tags": ["play", "card", "game", "magic", "trick", "casino", "entertainment", "spade", "heart", "diamond", "club", "playing", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eebf" + }, + "player-eject-filled": { + "name": "player-eject-filled", + "category": "Filled", + "tags": ["player", "eject", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68f" + }, + "player-eject": { + "name": "player-eject", + "category": "Media", + "tags": ["player", "eject", "media", "multimedia", "music", "audio", "control", "figures", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efbc" + }, + "player-pause-filled": { + "name": "player-pause-filled", + "category": "Filled", + "tags": ["player", "pause", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f690" + }, + "player-pause": { + "name": "player-pause", + "category": "Media", + "tags": ["player", "pause", "video", "film", "music", "player", "stop", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed45" + }, + "player-play-filled": { + "name": "player-play-filled", + "category": "Filled", + "tags": ["player", "play", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f691" + }, + "player-play": { + "name": "player-play", + "category": "Media", + "tags": ["player", "play", "start", "video", "film", "music", "player", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed46" + }, + "player-record-filled": { + "name": "player-record-filled", + "category": "Filled", + "tags": ["player", "record", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f692" + }, + "player-record": { + "name": "player-record", + "category": "Media", + "tags": ["player", "record", "music", "song", "playlist", "melody", "device", "voice", "recorder", "dictation", "machine", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed47" + }, + "player-skip-back-filled": { + "name": "player-skip-back-filled", + "category": "Filled", + "tags": ["player", "skip", "back", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f693" + }, + "player-skip-back": { + "name": "player-skip-back", + "category": "Media", + "tags": ["player", "skip", "back", "button", "player", "video", "film", "music", "cancel", "rewind", "reverse", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed48" + }, + "player-skip-forward-filled": { + "name": "player-skip-forward-filled", + "category": "Filled", + "tags": ["player", "skip", "forward", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f694" + }, + "player-skip-forward": { + "name": "player-skip-forward", + "category": "Media", + "tags": ["player", "skip", "forward", "button", "player", "video", "film", "music", "omit", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed49" + }, + "player-stop-filled": { + "name": "player-stop-filled", + "category": "Filled", + "tags": ["player", "stop", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f695" + }, + "player-stop": { + "name": "player-stop", + "category": "Media", + "tags": ["player", "stop", "music", "song", "playlist", "melody", "device", "voice", "silence", "break", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed4a" + }, + "player-track-next-filled": { + "name": "player-track-next-filled", + "category": "Filled", + "tags": ["player", "track", "next", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f696" + }, + "player-track-next": { + "name": "player-track-next", + "category": "Media", + "tags": ["player", "track", "next", "music", "forward", "play", "song", "playlist", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed4b" + }, + "player-track-prev-filled": { + "name": "player-track-prev-filled", + "category": "Filled", + "tags": ["player", "track", "prev", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f697" + }, + "player-track-prev": { + "name": "player-track-prev", + "category": "Media", + "tags": ["player", "track", "prev", "music", "forward", "play", "song", "playlist", "icon", "stroke", "outline"], + "version": "1.28", + "unicode": "ed4c" + }, + "playlist-add": { + "name": "playlist-add", + "category": "", + "tags": ["playlist", "add", "music", "spotify", "new", "create", "library", "album", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f008" + }, + "playlist-off": { + "name": "playlist-off", + "category": "Media", + "tags": ["playlist", "off", "music", "song", "artist", "spotify", "track", "play", "record", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f17f" + }, + "playlist-x": { + "name": "playlist-x", + "category": "", + "tags": ["playlist", "x", "false", "delete", "remove", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f009" + }, + "playlist": { + "name": "playlist", + "category": "Media", + "tags": ["playlist", "music", "song", "artist", "spotify", "track", "play", "record", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec0" + }, + "playstation-circle": { + "name": "playstation-circle", + "category": "Devices", + "tags": ["playstation", "circle", "controller", "console", "shape", "joystick", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2ad" + }, + "playstation-square": { + "name": "playstation-square", + "category": "Devices", + "tags": ["playstation", "square", "controller", "console", "shape", "joystick", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2ae" + }, + "playstation-triangle": { + "name": "playstation-triangle", + "category": "Devices", + "tags": ["playstation", "triangle", "controller", "console", "shape", "joystick", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2af" + }, + "playstation-x": { + "name": "playstation-x", + "category": "Devices", + "tags": ["playstation", "x", "controller", "console", "shape", "joystick", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b0" + }, + "plug-connected-x": { + "name": "plug-connected-x", + "category": "Devices", + "tags": ["plug", "connected", "x", "unfasten", "unplug", "disconnect", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a0" + }, + "plug-connected": { + "name": "plug-connected", + "category": "Devices", + "tags": ["plug", "connected", "power", "electricy", "cable", "socket", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f00a" + }, + "plug-off": { + "name": "plug-off", + "category": "Devices", + "tags": ["plug", "off", "electricity", "charger", "socket", "connection", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f180" + }, + "plug-x": { + "name": "plug-x", + "category": "Devices", + "tags": ["plug", "x", "electricity", "charger", "socket", "connection", "discharge", "end charging", "charge off", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a1" + }, + "plug": { + "name": "plug", + "category": "Devices", + "tags": ["plug", "electricity", "charger", "socket", "connection", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebd9" + }, + "plus": { + "name": "plus", + "category": "Math", + "tags": ["plus", "add", "create", "new", "+", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0b" + }, + "png": { + "name": "png", + "category": "", + "tags": ["png", "file", "format", "type", "document", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3ad" + }, + "podium-off": { + "name": "podium-off", + "category": "", + "tags": ["podium", "off", "speach", "microphone", "conference", "politics", "audience", "presentation", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41b" + }, + "podium": { + "name": "podium", + "category": "", + "tags": ["podium", "speach", "microphone", "conference", "politics", "audience", "presentation", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d8" + }, + "point-filled": { + "name": "point-filled", + "category": "Filled", + "tags": ["point", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f698" + }, + "point-off": { + "name": "point-off", + "category": "", + "tags": ["point", "off", "dot", "label", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f181" + }, + "point": { + "name": "point", + "category": "", + "tags": ["point", "dot", "label", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0c" + }, + "pointer": { + "name": "pointer", + "category": "System", + "tags": ["pointer", "cursor", "mouse", "point", "click", "arrow", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f265" + }, + "pokeball-off": { + "name": "pokeball-off", + "category": "Map", + "tags": ["pokeball", "off", "pokemon", "go", "catch", "game", "play", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41c" + }, + "pokeball": { + "name": "pokeball", + "category": "Map", + "tags": ["pokeball", "pokemon", "go", "catch", "game", "play", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec1" + }, + "poker-chip": { + "name": "poker-chip", + "category": "", + "tags": ["poker", "chip", "casino", "game", "money", "gambling", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f515" + }, + "polaroid": { + "name": "polaroid", + "category": "Photography", + "tags": ["polaroid", "picture", "photo", "camera", "polarization", "develop", "film", "lens", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec2" + }, + "polygon-off": { + "name": "polygon-off", + "category": "Design", + "tags": ["polygon", "off", "shape", "form", "geometry", "circle", "line", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f182" + }, + "polygon": { + "name": "polygon", + "category": "Design", + "tags": ["polygon", "shape", "form", "geometry", "circle", "line", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efd0" + }, + "poo": { + "name": "poo", + "category": "", + "tags": ["poo", "poop", "shit", "crap", "toilet", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f258" + }, + "pool-off": { + "name": "pool-off", + "category": "Sport", + "tags": ["pool", "off", "swim", "water", "swimmer", "holiday", "swimming", "vacation", "relax", "sport", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41d" + }, + "pool": { + "name": "pool", + "category": "Sport", + "tags": ["pool", "swim", "water", "swimmer", "holiday", "swimming", "vacation", "relax", "sport", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed91" + }, + "power": { + "name": "power", + "category": "Devices", + "tags": ["power", "on", "off", "turn on", "turn off", "electricity", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0d" + }, + "pray": { + "name": "pray", + "category": "", + "tags": ["pray", "religion", "faith", "christianity", "islam", "buddhism", "judaism", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecbf" + }, + "premium-rights": { + "name": "premium-rights", + "category": "", + "tags": ["premium", "rights", "money", "work", "job", "cash", "dollar", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efbd" + }, + "prescription": { + "name": "prescription", + "category": "Health", + "tags": ["prescription", "doctor", "pharmacy", "drug", "pills", "medical", "disease", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef99" + }, + "presentation-analytics": { + "name": "presentation-analytics", + "category": "Document", + "tags": ["presentation", "analytics", "slideshow", "display", "exhibition", "speech", "topic", "conference", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec3" + }, + "presentation-off": { + "name": "presentation-off", + "category": "Document", + "tags": ["presentation", "off", "slideshow", "display", "exhibition", "speech", "topic", "conference", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f183" + }, + "presentation": { + "name": "presentation", + "category": "Document", + "tags": ["presentation", "slideshow", "display", "exhibition", "speech", "topic", "conference", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb70" + }, + "printer-off": { + "name": "printer-off", + "category": "Devices", + "tags": ["printer", "off", "fax", "office", "device", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f184" + }, + "printer": { + "name": "printer", + "category": "Devices", + "tags": ["printer", "fax", "office", "device", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0e" + }, + "prison": { + "name": "prison", + "category": "", + "tags": ["prison", "jail", "policeman", "police", "cop", "handcuff", "arrest", "prisoner", "thief", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef79" + }, + "prompt": { + "name": "prompt", + "category": "", + "tags": ["prompt", "command line", "terminal", "code", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb0f" + }, + "propeller-off": { + "name": "propeller-off", + "category": "", + "tags": ["propeller", "off", "rotate", "blade", "spiral", "air", "ship", "fan", "power", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f185" + }, + "propeller": { + "name": "propeller", + "category": "", + "tags": ["propeller", "rotate", "blade", "spiral", "air", "ship", "fan", "power", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec4" + }, + "pumpkin-scary": { + "name": "pumpkin-scary", + "category": "", + "tags": ["pumpkin", "scary", "halloween", "horror", "spooky", "costume", "decoration", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f587" + }, + "puzzle-2": { + "name": "puzzle-2", + "category": "", + "tags": ["puzzle", "2", "jigsaw", "extension", "add-on", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef83" + }, + "puzzle-filled": { + "name": "puzzle-filled", + "category": "Filled", + "tags": ["puzzle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f699" + }, + "puzzle-off": { + "name": "puzzle-off", + "category": "", + "tags": ["puzzle", "off", "jigsaw", "extension", "add-on", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f186" + }, + "puzzle": { + "name": "puzzle", + "category": "", + "tags": ["puzzle", "jigsaw", "extension", "add-on", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb10" + }, + "pyramid-off": { + "name": "pyramid-off", + "category": "", + "tags": ["pyramid", "off", "pattern", "abstract", "geometric", "shape", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f187" + }, + "pyramid": { + "name": "pyramid", + "category": "", + "tags": ["pyramid", "pattern", "abstract", "geometric", "shape", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec5" + }, + "qrcode-off": { + "name": "qrcode-off", + "category": "Devices", + "tags": ["qrcode", "off", "scan", "data", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41e" + }, + "qrcode": { + "name": "qrcode", + "category": "Devices", + "tags": ["qrcode", "scan", "data", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb11" + }, + "question-circle": { + "name": "question-circle", + "category": "", + "tags": ["question", "circle", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f637" + }, + "question-mark": { + "name": "question-mark", + "category": "", + "tags": ["question", "mark", "sign", "symbol", "ask", "sentence", "word", "letters", "?", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9d" + }, + "quote-off": { + "name": "quote-off", + "category": "Text", + "tags": ["quote", "off", "chat", "message", "text", "punctuation", "quotation", "comment", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f188" + }, + "quote": { + "name": "quote", + "category": "Text", + "tags": ["quote", "chat", "message", "text", "punctuation", "quotation", "comment", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efbe" + }, + "radar-2": { + "name": "radar-2", + "category": "Map", + "tags": ["radar", "2", "location", "navigation", "gps", "find", "signal", "technology", "submarine", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f016" + }, + "radar-off": { + "name": "radar-off", + "category": "Map", + "tags": ["radar", "off", "location", "navigation", "gps", "find", "signal", "technology", "submarine", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f41f" + }, + "radar": { + "name": "radar", + "category": "Map", + "tags": ["radar", "location", "navigation", "gps", "find", "signal", "technology", "submarine", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f017" + }, + "radio-off": { + "name": "radio-off", + "category": "Media", + "tags": ["radio", "off", "music", "news", "sound", "broadcost", "communication", "station", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f420" + }, + "radio": { + "name": "radio", + "category": "Media", + "tags": ["radio", "music", "news", "sound", "broadcost", "communication", "station", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2d" + }, + "radioactive-off": { + "name": "radioactive-off", + "category": "Symbols", + "tags": ["radioactive", "off", "dangerous", "precarious", "danger", "sign", "symbol", "warning", "caution", "chernobyl", "reactor", "atomic", "powerhouses", "generator", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f189" + }, + "radioactive": { + "name": "radioactive", + "category": "Symbols", + "tags": ["radioactive", "dangerous", "precarious", "danger", "sign", "symbol", "warning", "caution", "chernobyl", "reactor", "atomic", "powerhouses", "generator", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecc0" + }, + "radius-bottom-left": { + "name": "radius-bottom-left", + "category": "", + "tags": ["radius", "bottom", "left", "round", "corner", "rounded", "border", "css", "style", "bottom", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec6" + }, + "radius-bottom-right": { + "name": "radius-bottom-right", + "category": "", + "tags": ["radius", "bottom", "right", "round", "corner", "rounded", "border", "css", "style", "top", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec7" + }, + "radius-top-left": { + "name": "radius-top-left", + "category": "", + "tags": ["radius", "top", "left", "round", "corner", "rounded", "border", "css", "style", "bottom", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec8" + }, + "radius-top-right": { + "name": "radius-top-right", + "category": "", + "tags": ["radius", "top", "right", "round", "corner", "rounded", "border", "css", "style", "top", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eec9" + }, + "rainbow-off": { + "name": "rainbow-off", + "category": "Weather", + "tags": ["rainbow", "off", "colorful", "weather", "colors", "colour", "nature", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18a" + }, + "rainbow": { + "name": "rainbow", + "category": "Weather", + "tags": ["rainbow", "colorful", "weather", "colors", "colour", "nature", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edbc" + }, + "rating-12-plus": { + "name": "rating-12-plus", + "category": "Symbols", + "tags": ["rating", "12", "plus", "film", "video", "photo", "movie", "age", "limiter", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f266" + }, + "rating-14-plus": { + "name": "rating-14-plus", + "category": "Symbols", + "tags": ["rating", "14", "plus", "film", "video", "photo", "movie", "age", "limiter", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f267" + }, + "rating-16-plus": { + "name": "rating-16-plus", + "category": "Symbols", + "tags": ["rating", "16", "plus", "film", "video", "photo", "movie", "age", "limiter", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f268" + }, + "rating-18-plus": { + "name": "rating-18-plus", + "category": "Symbols", + "tags": ["rating", "18", "plus", "film", "video", "photo", "movie", "age", "limiter", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f269" + }, + "rating-21-plus": { + "name": "rating-21-plus", + "category": "Symbols", + "tags": ["rating", "21", "plus", "film", "video", "photo", "movie", "age", "limiter", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26a" + }, + "razor-electric": { + "name": "razor-electric", + "category": "", + "tags": ["razor", "electric", "shaver", "barber", "grooming", "beard", "moustache", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b4" + }, + "razor": { + "name": "razor", + "category": "", + "tags": ["razor", "shaver", "barber", "grooming", "beard", "moustache", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b5" + }, + "receipt-2": { + "name": "receipt-2", + "category": "Document", + "tags": ["receipt", "2", "bill", "restaurant", "shop", "price", "pay", "money", "total", "tax", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edfa" + }, + "receipt-off": { + "name": "receipt-off", + "category": "Document", + "tags": ["receipt", "off", "bill", "restaurant", "shop", "price", "pay", "money", "total", "tax", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edfb" + }, + "receipt-refund": { + "name": "receipt-refund", + "category": "Document", + "tags": ["receipt", "refund", "bill", "restaurant", "shop", "price", "pay", "money", "total", "give", "back", "return", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edfc" + }, + "receipt-tax": { + "name": "receipt-tax", + "category": "Document", + "tags": ["receipt", "tax", "income", "percentage", "money", "finance", "charge", "obligation", "taxpayer", "vat", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "edbd" + }, + "receipt": { + "name": "receipt", + "category": "Document", + "tags": ["receipt", "bill", "restaurant", "shop", "price", "pay", "money", "total", "tax", "icon", "stroke", "outline"], + "version": "1.38", + "unicode": "edfd" + }, + "recharging": { + "name": "recharging", + "category": "", + "tags": ["recharging", "battery", "power", "charge", "socket", "electricity", "device", "phone", "laptop", "low", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeca" + }, + "record-mail-off": { + "name": "record-mail-off", + "category": "", + "tags": ["record", "mail", "off", "voice", "voicemail", "message", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18b" + }, + "record-mail": { + "name": "record-mail", + "category": "", + "tags": ["record", "mail", "voice", "voicemail", "message", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb12" + }, + "rectangle-filled": { + "name": "rectangle-filled", + "category": "Filled", + "tags": ["rectangle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69a" + }, + "rectangle-vertical-filled": { + "name": "rectangle-vertical-filled", + "category": "Filled", + "tags": ["rectangle", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69b" + }, + "rectangle-vertical": { + "name": "rectangle-vertical", + "category": "Shapes", + "tags": ["rectangle", "vertical", "shape", "geometric", "math", "upright", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed36" + }, + "rectangle": { + "name": "rectangle", + "category": "Shapes", + "tags": ["rectangle", "shape", "geometric", "math", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed37" + }, + "recycle-off": { + "name": "recycle-off", + "category": "Symbols", + "tags": ["recycle", "off", "trash", "rubbish", "recyclable", "reuse", "waste", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18c" + }, + "recycle": { + "name": "recycle", + "category": "Symbols", + "tags": ["recycle", "trash", "rubbish", "recyclable", "reuse", "waste", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9b" + }, + "refresh-alert": { + "name": "refresh-alert", + "category": "Arrows", + "tags": ["refresh", "alert", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "ed57" + }, + "refresh-dot": { + "name": "refresh-dot", + "category": "", + "tags": ["refresh", "dot", "again", "reload", "arrows", "loading", "replay", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efbf" + }, + "refresh-off": { + "name": "refresh-off", + "category": "Arrows", + "tags": ["refresh", "off", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18d" + }, + "refresh": { + "name": "refresh", + "category": "Arrows", + "tags": ["refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb13" + }, + "regex-off": { + "name": "regex-off", + "category": "Text", + "tags": ["regex", "off", "regular", "expression", "code", "replace", "programming", "coding", "variables", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f421" + }, + "regex": { + "name": "regex", + "category": "Text", + "tags": ["regex", "regular", "expression", "code", "replace", "programming", "coding", "variables", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f31f" + }, + "registered": { + "name": "registered", + "category": "", + "tags": ["registered", "copyright", "trademark", "rights", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb14" + }, + "relation-many-to-many": { + "name": "relation-many-to-many", + "category": "Database", + "tags": ["relation", "many", "to", "many", "data", "model", "analysis", "multiple", "connection", "database", "link", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed7f" + }, + "relation-one-to-many": { + "name": "relation-one-to-many", + "category": "Database", + "tags": ["relation", "one", "to", "many", "data", "model", "analysis", "multiple", "connection", "database", "link", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed80" + }, + "relation-one-to-one": { + "name": "relation-one-to-one", + "category": "Database", + "tags": ["relation", "one", "to", "one", "data", "model", "analysis", "connection", "database", "link", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed81" + }, + "reload": { + "name": "reload", + "category": "Arrows", + "tags": ["reload", "refresh", "repeat", "update", "sync", "loading", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3ae" + }, + "repeat-off": { + "name": "repeat-off", + "category": "Media", + "tags": ["repeat", "off", "reuse", "redo", "action", "replay", "loop", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18e" + }, + "repeat-once": { + "name": "repeat-once", + "category": "Media", + "tags": ["repeat", "once", "reuse", "redo", "action", "replay", "loop", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb71" + }, + "repeat": { + "name": "repeat", + "category": "Media", + "tags": ["repeat", "reuse", "redo", "action", "replay", "loop", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb72" + }, + "replace-filled": { + "name": "replace-filled", + "category": "Filled", + "tags": ["replace", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69c" + }, + "replace-off": { + "name": "replace-off", + "category": "", + "tags": ["replace", "off", "change", "place", "position", "move", "exchange", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f422" + }, + "replace": { + "name": "replace", + "category": "", + "tags": ["replace", "change", "place", "position", "move", "exchange", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc7" + }, + "report-analytics": { + "name": "report-analytics", + "category": "Document", + "tags": ["report", "analytics", "statistics", "results", "business", "sales", "analysis", "analyse", "bar", "chart", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eecb" + }, + "report-medical": { + "name": "report-medical", + "category": "Document", + "tags": ["report", "medical", "hospital", "doctor", "health", "sickness", "illness", "test", "results", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eecc" + }, + "report-money": { + "name": "report-money", + "category": "Document", + "tags": ["report", "money", "results", "business", "sales", "analysis", "analyse", "finance", "financial", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eecd" + }, + "report-off": { + "name": "report-off", + "category": "Document", + "tags": ["report", "off", "time", "timesheet", "analysis", "analyse", "results", "business", "company", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f18f" + }, + "report-search": { + "name": "report-search", + "category": "Document", + "tags": ["report", "search", "analytic", "statistics", "data", "results", "graph", "document", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef84" + }, + "report": { + "name": "report", + "category": "Document", + "tags": ["report", "time", "timesheet", "analysis", "analyse", "results", "business", "company", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eece" + }, + "resize": { + "name": "resize", + "category": "Design", + "tags": ["resize", "picture", "photo", "alter", "change", "height", "width", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eecf" + }, + "ribbon-health": { + "name": "ribbon-health", + "category": "Symbols", + "tags": ["ribbon", "health", "medical", "care", "heatlh", "medic", "healthcare", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58e" + }, + "ripple-off": { + "name": "ripple-off", + "category": "", + "tags": ["ripple", "off", "wave", "water", "breeze", "ocean", "sea", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f190" + }, + "ripple": { + "name": "ripple", + "category": "", + "tags": ["ripple", "wave", "water", "breeze", "ocean", "sea", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed82" + }, + "road-off": { + "name": "road-off", + "category": "Map", + "tags": ["road", "off", "car", "travel", "journey", "traffic", "highway", "route", "racing", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f191" + }, + "road-sign": { + "name": "road-sign", + "category": "Map", + "tags": ["road", "sign", "telltale", "prohibitive", "indicative", "cautionary", "codex", "restrictions", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecdd" + }, + "road": { + "name": "road", + "category": "Map", + "tags": ["road", "car", "travel", "journey", "traffic", "highway", "route", "racing", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f018" + }, + "robot-off": { + "name": "robot-off", + "category": "", + "tags": ["robot", "off", "technology", "ai", "machine", "bot", "android", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f192" + }, + "robot": { + "name": "robot", + "category": "", + "tags": ["robot", "technology", "ai", "machine", "bot", "android", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f00b" + }, + "rocket-off": { + "name": "rocket-off", + "category": "Map", + "tags": ["rocket", "off", "universe", "galaxy", "space", "journey", "discover", "extraterrestrial", "spaceship", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f193" + }, + "rocket": { + "name": "rocket", + "category": "Map", + "tags": ["rocket", "universe", "galaxy", "space", "journey", "discover", "extraterrestrial", "spaceship", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec45" + }, + "roller-skating": { + "name": "roller-skating", + "category": "Sport", + "tags": ["roller", "skating", "sport", "hobby", "fitness", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efd1" + }, + "rollercoaster-off": { + "name": "rollercoaster-off", + "category": "Vehicles", + "tags": ["rollercoaster", "off", "adrenaline", "height", "speed", "funfair", "fun", "attraction", "extreme", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f423" + }, + "rollercoaster": { + "name": "rollercoaster", + "category": "Vehicles", + "tags": ["rollercoaster", "adrenaline", "height", "speed", "funfair", "fun", "attraction", "extreme", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a2" + }, + "rosette-filled": { + "name": "rosette-filled", + "category": "Filled", + "tags": ["rosette", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69d" + }, + "rosette-number-0": { + "name": "rosette-number-0", + "category": "Numbers", + "tags": ["rosette", "number", "0", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f58f" + }, + "rosette-number-1": { + "name": "rosette-number-1", + "category": "Numbers", + "tags": ["rosette", "number", "1", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f590" + }, + "rosette-number-2": { + "name": "rosette-number-2", + "category": "Numbers", + "tags": ["rosette", "number", "2", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f591" + }, + "rosette-number-3": { + "name": "rosette-number-3", + "category": "Numbers", + "tags": ["rosette", "number", "3", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f592" + }, + "rosette-number-4": { + "name": "rosette-number-4", + "category": "Numbers", + "tags": ["rosette", "number", "4", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f593" + }, + "rosette-number-5": { + "name": "rosette-number-5", + "category": "Numbers", + "tags": ["rosette", "number", "5", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f594" + }, + "rosette-number-6": { + "name": "rosette-number-6", + "category": "Numbers", + "tags": ["rosette", "number", "6", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f595" + }, + "rosette-number-7": { + "name": "rosette-number-7", + "category": "Numbers", + "tags": ["rosette", "number", "7", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f596" + }, + "rosette-number-8": { + "name": "rosette-number-8", + "category": "Numbers", + "tags": ["rosette", "number", "8", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f597" + }, + "rosette-number-9": { + "name": "rosette-number-9", + "category": "Numbers", + "tags": ["rosette", "number", "9", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f598" + }, + "rosette": { + "name": "rosette", + "category": "Shapes", + "tags": ["rosette", "shape", "badge", "star", "medal", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f599" + }, + "rotate-2": { + "name": "rotate-2", + "category": "Arrows", + "tags": ["rotate", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb4" + }, + "rotate-360": { + "name": "rotate-360", + "category": "Arrows", + "tags": ["rotate", "360", "degree", "circle", "camera", "spin", "rotation", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef85" + }, + "rotate-clockwise-2": { + "name": "rotate-clockwise-2", + "category": "Arrows", + "tags": ["rotate", "clockwise", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.4", + "unicode": "ebb5" + }, + "rotate-clockwise": { + "name": "rotate-clockwise", + "category": "Arrows", + "tags": ["rotate", "clockwise", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb15" + }, + "rotate-dot": { + "name": "rotate-dot", + "category": "Arrows", + "tags": ["rotate", "dot", "direction", "degree", "circle", "camera", "spin", "rotation", "icon", "stroke", "outline"], + "version": "1.51", + "unicode": "efe5" + }, + "rotate-rectangle": { + "name": "rotate-rectangle", + "category": "Arrows", + "tags": ["rotate", "rectangle", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec15" + }, + "rotate": { + "name": "rotate", + "category": "Arrows", + "tags": ["rotate", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb16" + }, + "route-2": { + "name": "route-2", + "category": "", + "tags": ["route", "2", "path", "navigation", "map", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b6" + }, + "route-off": { + "name": "route-off", + "category": "Map", + "tags": ["route", "off", "path", "navigation", "map", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f194" + }, + "route": { + "name": "route", + "category": "Map", + "tags": ["route", "path", "navigation", "map", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb17" + }, + "router-off": { + "name": "router-off", + "category": "Devices", + "tags": ["router", "off", "wifi", "device", "wireless", "signal", "station", "cast", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f424" + }, + "router": { + "name": "router", + "category": "Devices", + "tags": ["router", "wifi", "device", "wireless", "signal", "station", "cast", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb18" + }, + "row-insert-bottom": { + "name": "row-insert-bottom", + "category": "Database", + "tags": ["row", "insert", "bottom", "table", "layout", "add", "below", "macro", "excel", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed0" + }, + "row-insert-top": { + "name": "row-insert-top", + "category": "Database", + "tags": ["row", "insert", "top", "table", "layout", "add", "below", "macro", "excel", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed1" + }, + "rss": { + "name": "rss", + "category": "", + "tags": ["rss", "feed", "subscribe", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb19" + }, + "rubber-stamp-off": { + "name": "rubber-stamp-off", + "category": "Document", + "tags": ["rubber", "stamp", "off", "rubber", "stamp", "seal", "letter", "mail", "document", "signature", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5aa" + }, + "rubber-stamp": { + "name": "rubber-stamp", + "category": "Document", + "tags": ["rubber", "stamp", "rubber", "stamp", "seal", "letter", "mail", "document", "signature", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5ab" + }, + "ruler-2-off": { + "name": "ruler-2-off", + "category": "", + "tags": ["ruler", "2", "off", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f195" + }, + "ruler-2": { + "name": "ruler-2", + "category": "", + "tags": ["ruler", "2", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed2" + }, + "ruler-3": { + "name": "ruler-3", + "category": "", + "tags": ["ruler", "3", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f290" + }, + "ruler-measure": { + "name": "ruler-measure", + "category": "", + "tags": ["ruler", "measure", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f291" + }, + "ruler-off": { + "name": "ruler-off", + "category": "", + "tags": ["ruler", "off", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f196" + }, + "ruler": { + "name": "ruler", + "category": "", + "tags": ["ruler", "maths", "dimensions", "size", "width", "length", "geometry", "measure", "technical", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb1a" + }, + "run": { + "name": "run", + "category": "Sport", + "tags": ["run", "jog", "dislocating", "movement", "motion", "sprint", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec82" + }, + "s-turn-down": { + "name": "s-turn-down", + "category": "Arrows", + "tags": ["s", "turn", "down", "arrow", "direction", "bottom", "south", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f516" + }, + "s-turn-left": { + "name": "s-turn-left", + "category": "Arrows", + "tags": ["s", "turn", "left", "arrow", "direction", "west", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f517" + }, + "s-turn-right": { + "name": "s-turn-right", + "category": "Arrows", + "tags": ["s", "turn", "right", "arrow", "direction", "east", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f518" + }, + "s-turn-up": { + "name": "s-turn-up", + "category": "Arrows", + "tags": ["s", "turn", "up", "arrow", "direction", "top", "north", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f519" + }, + "sailboat-2": { + "name": "sailboat-2", + "category": "Vehicles", + "tags": ["sailboat", "2", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f7" + }, + "sailboat-off": { + "name": "sailboat-off", + "category": "Vehicles", + "tags": ["sailboat", "off", "sailor", "journey", "sea", "lake", "ocean", "river", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f425" + }, + "sailboat": { + "name": "sailboat", + "category": "Vehicles", + "tags": ["sailboat", "sailor", "journey", "sea", "lake", "ocean", "river", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec83" + }, + "salad": { + "name": "salad", + "category": "Food", + "tags": ["salad", "food", "vegetable", "vegan", "healthy", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f50a" + }, + "salt": { + "name": "salt", + "category": "Food", + "tags": ["salt", "food", "cooking", "kitchen", "spice", "salty", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef16" + }, + "satellite-off": { + "name": "satellite-off", + "category": "Map", + "tags": ["satellite", "off", "orbit", "space", "moon", "earth", "planet", "communication", "information", "celestial", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f197" + }, + "satellite": { + "name": "satellite", + "category": "Map", + "tags": ["satellite", "orbit", "space", "moon", "earth", "planet", "communication", "information", "celestial", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed3" + }, + "sausage": { + "name": "sausage", + "category": "Food", + "tags": ["sausage", "food", "grill", "bonfire", "campfire", "meat", "hot-dog", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef17" + }, + "scale-off": { + "name": "scale-off", + "category": "", + "tags": ["scale", "off", "weigh", "balance", "amount", "heavy", "light", "libra", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f198" + }, + "scale-outline-off": { + "name": "scale-outline-off", + "category": "", + "tags": ["scale", "outline", "off", "weight", "weigh", "diet", "healthy", "measurement", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f199" + }, + "scale-outline": { + "name": "scale-outline", + "category": "", + "tags": ["scale", "outline", "weight", "weigh", "diet", "healthy", "measurement", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef53" + }, + "scale": { + "name": "scale", + "category": "", + "tags": ["scale", "weigh", "balance", "amount", "heavy", "light", "libra", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "ebc2" + }, + "scan-eye": { + "name": "scan-eye", + "category": "", + "tags": ["scan", "eye", "technology", "security", "safety", "safe", "secure", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f1ff" + }, + "scan": { + "name": "scan", + "category": "", + "tags": ["scan", "code", "barcode", "qr code", "app", "scanner", "document", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc8" + }, + "schema-off": { + "name": "schema-off", + "category": "Database", + "tags": ["schema", "off", "graph", "data", "infography", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f426" + }, + "schema": { + "name": "schema", + "category": "Database", + "tags": ["schema", "graph", "data", "infography", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f200" + }, + "school-bell": { + "name": "school-bell", + "category": "", + "tags": ["school", "bell", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64a" + }, + "school-off": { + "name": "school-off", + "category": "Map", + "tags": ["school", "off", "students", "class", "teachers", "professors", "doctors", "hall", "classroom", "subject", "science", "break", "lesson", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19a" + }, + "school": { + "name": "school", + "category": "Map", + "tags": ["school", "students", "class", "teachers", "professors", "doctors", "hall", "classroom", "subject", "science", "break", "lesson", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf7" + }, + "scissors-off": { + "name": "scissors-off", + "category": "Design", + "tags": ["scissors", "off", "cut", "paper", "file", "document", "hairdresser", "blade", "sharp", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19b" + }, + "scissors": { + "name": "scissors", + "category": "Design", + "tags": ["scissors", "cut", "paper", "file", "document", "hairdresser", "blade", "sharp", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb1b" + }, + "scooter-electric": { + "name": "scooter-electric", + "category": "Vehicles", + "tags": ["scooter", "electric", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ecc1" + }, + "scooter": { + "name": "scooter", + "category": "Vehicles", + "tags": ["scooter", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], + "version": "1.12", + "unicode": "ec6c" + }, + "screen-share-off": { + "name": "screen-share-off", + "category": "Devices", + "tags": ["screen", "share", "off", "monitor", "stream", "tv", "mirroring", "cast", "online", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed17" + }, + "screen-share": { + "name": "screen-share", + "category": "Devices", + "tags": ["screen", "share", "monitor", "stream", "tv", "mirroring", "cast", "online", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed18" + }, + "screenshot": { + "name": "screenshot", + "category": "", + "tags": ["screenshot", "image", "capture", "photo", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f201" + }, + "scribble-off": { + "name": "scribble-off", + "category": "", + "tags": ["scribble", "off", "kid", "doodle", "draw", "drawing", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f427" + }, + "scribble": { + "name": "scribble", + "category": "", + "tags": ["scribble", "kid", "doodle", "draw", "drawing", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a3" + }, + "script-minus": { + "name": "script-minus", + "category": "Document", + "tags": ["script", "minus", "code", "programming", "coding", "remove", "delete", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d7" + }, + "script-plus": { + "name": "script-plus", + "category": "Document", + "tags": ["script", "plus", "code", "programming", "coding", "add", "new", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d8" + }, + "script-x": { + "name": "script-x", + "category": "Document", + "tags": ["script", "x", "code", "programming", "coding", "remove", "delete", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2d9" + }, + "script": { + "name": "script", + "category": "Document", + "tags": ["script", "code", "programming", "coding", "document", "development", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2da" + }, + "scuba-mask-off": { + "name": "scuba-mask-off", + "category": "Sport", + "tags": ["scuba", "mask", "off", "dive", "diving", "water", "holiday", "underwater", "snorkeling", "equipment", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f428" + }, + "scuba-mask": { + "name": "scuba-mask", + "category": "Sport", + "tags": ["scuba", "mask", "dive", "diving", "water", "holiday", "underwater", "snorkeling", "equipment", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed4" + }, + "sdk": { + "name": "sdk", + "category": "", + "tags": ["sdk", "development", "programming", "programmer", "web", "app", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3af" + }, + "search-off": { + "name": "search-off", + "category": "", + "tags": ["search", "off", "find", "magnifier", "magnifying glass", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19c" + }, + "search": { + "name": "search", + "category": "", + "tags": ["search", "find", "magnifier", "magnifying glass", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb1c" + }, + "section-sign": { + "name": "section-sign", + "category": "", + "tags": ["section", "sign", "legal", "paragraph", "law", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f019" + }, + "section": { + "name": "section", + "category": "Design", + "tags": ["section", "html", "element", "layout", "divide", "position", "website", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed5" + }, + "seeding-off": { + "name": "seeding-off", + "category": "Nature", + "tags": ["seeding", "off", "nature", "greenery", "grow", "soil", "harvest", "plant", "flower", "tree", "leaf", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19d" + }, + "seeding": { + "name": "seeding", + "category": "Nature", + "tags": ["seeding", "nature", "greenery", "grow", "soil", "harvest", "plant", "flower", "tree", "leaf", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed51" + }, + "select": { + "name": "select", + "category": "", + "tags": ["select", "input", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9e" + }, + "selector": { + "name": "selector", + "category": "", + "tags": ["selector", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb1d" + }, + "send-off": { + "name": "send-off", + "category": "Communication", + "tags": ["send", "off", "message", "mail", "email", "gmail", "paper", "airplane", "aeroplane", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f429" + }, + "send": { + "name": "send", + "category": "Communication", + "tags": ["send", "message", "mail", "email", "gmail", "paper", "airplane", "aeroplane", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb1e" + }, + "seo": { + "name": "seo", + "category": "", + "tags": ["seo", "www", "web", "browser", "search", "result", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26b" + }, + "separator-horizontal": { + "name": "separator-horizontal", + "category": "Text", + "tags": ["separator", "horizontal", "divider", "space", "separate", "set apart", "flat-lying", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec79" + }, + "separator-vertical": { + "name": "separator-vertical", + "category": "Text", + "tags": ["separator", "vertical", "divider", "space", "separate", "set apart", "upright", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec7a" + }, + "separator": { + "name": "separator", + "category": "Text", + "tags": ["separator", "divider", "space", "separate", "set apart", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebda" + }, + "server-2": { + "name": "server-2", + "category": "Devices", + "tags": ["server", "2", "storage", "hosting", "www", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07c" + }, + "server-bolt": { + "name": "server-bolt", + "category": "Devices", + "tags": ["server", "bolt", "data", "database", "storage", "lighting", "power", "energy", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f320" + }, + "server-cog": { + "name": "server-cog", + "category": "Devices", + "tags": ["server", "cog", "settings", "storage", "data", "database", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f321" + }, + "server-off": { + "name": "server-off", + "category": "Devices", + "tags": ["server", "off", "storage", "hosting", "www", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19e" + }, + "server": { + "name": "server", + "category": "Devices", + "tags": ["server", "storage", "hosting", "www", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb1f" + }, + "servicemark": { + "name": "servicemark", + "category": "Symbols", + "tags": ["servicemark", "trademark", "sign", "symbol", "registration", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec09" + }, + "settings-2": { + "name": "settings-2", + "category": "", + "tags": ["settings", "2", "cog", "edit", "gear", "preferences", "tools", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5ac" + }, + "settings-automation": { + "name": "settings-automation", + "category": "System", + "tags": ["settings", "automation", "system", "technology", "automate", "configure", "device", "program", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed6" + }, + "settings-filled": { + "name": "settings-filled", + "category": "Filled", + "tags": ["settings", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69e" + }, + "settings-off": { + "name": "settings-off", + "category": "System", + "tags": ["settings", "off", "cog", "edit", "gear", "preferences", "tools", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f19f" + }, + "settings": { + "name": "settings", + "category": "System", + "tags": ["settings", "cog", "edit", "gear", "preferences", "tools", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb20" + }, + "shadow-off": { + "name": "shadow-off", + "category": "Photography", + "tags": ["shadow", "off", "dark", "sun", "area", "covered", "dim", "light", "css", "effect", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed7" + }, + "shadow": { + "name": "shadow", + "category": "Photography", + "tags": ["shadow", "dark", "sun", "area", "covered", "dim", "light", "css", "effect", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed8" + }, + "shape-2": { + "name": "shape-2", + "category": "Design", + "tags": ["shape", "2", "draw", "square", "form", "create", "outline", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eed9" + }, + "shape-3": { + "name": "shape-3", + "category": "Design", + "tags": ["shape", "3", "draw", "square", "form", "create", "outline", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeda" + }, + "shape-off": { + "name": "shape-off", + "category": "Design", + "tags": ["shape", "off", "draw", "square", "form", "create", "outline", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f1a0" + }, + "shape": { + "name": "shape", + "category": "Design", + "tags": ["shape", "draw", "square", "form", "create", "outline", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9c" + }, + "share-off": { + "name": "share-off", + "category": "", + "tags": ["share", "off", "network", "link", "connection", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f1a1" + }, + "share": { + "name": "share", + "category": "", + "tags": ["share", "network", "link", "connection", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb21" + }, + "shield-check": { + "name": "shield-check", + "category": "System", + "tags": ["shield", "check", "safety", "protect", "protection", "yes", "add", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb22" + }, + "shield-checkered": { + "name": "shield-checkered", + "category": "System", + "tags": ["shield", "checkered", "knight", "guard", "defence", "protect", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef9a" + }, + "shield-chevron": { + "name": "shield-chevron", + "category": "System", + "tags": ["shield", "chevron", "knight", "guard", "defence", "protect", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef9b" + }, + "shield-filled": { + "name": "shield-filled", + "category": "Filled", + "tags": ["shield", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69f" + }, + "shield-half-filled": { + "name": "shield-half-filled", + "category": "System", + "tags": ["shield", "half", "filled", "safe", "security", "secure", "safety", "protect", "protection", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f357" + }, + "shield-half": { + "name": "shield-half", + "category": "System", + "tags": ["shield", "half", "safe", "security", "secure", "safety", "protect", "protection", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f358" + }, + "shield-lock": { + "name": "shield-lock", + "category": "System", + "tags": ["shield", "lock", "secure", "security", "closed", "key", "safety", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed58" + }, + "shield-off": { + "name": "shield-off", + "category": "System", + "tags": ["shield", "off", "safety", "protect", "protection", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf8" + }, + "shield-x": { + "name": "shield-x", + "category": "System", + "tags": ["shield", "x", "unprotected", "protection", "cancel", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb23" + }, + "shield": { + "name": "shield", + "category": "System", + "tags": ["shield", "safety", "protect", "protection", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb24" + }, + "ship-off": { + "name": "ship-off", + "category": "Vehicles", + "tags": ["ship", "off", "sail", "sail across", "ocean", "river", "lake", "sea", "sailor", "journey", "transit", "manufactures", "containers", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42a" + }, + "ship": { + "name": "ship", + "category": "Vehicles", + "tags": ["ship", "sail", "sail across", "ocean", "river", "lake", "sea", "sailor", "journey", "transit", "manufactures", "containers", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec84" + }, + "shirt-filled": { + "name": "shirt-filled", + "category": "Filled", + "tags": ["shirt", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a0" + }, + "shirt-off": { + "name": "shirt-off", + "category": "", + "tags": ["shirt", "off", "gear", "outfit", "mocker", "icon", "stroke", "outline"], + "version": "1.66", + "unicode": "f1a2" + }, + "shirt-sport": { + "name": "shirt-sport", + "category": "", + "tags": ["shirt", "sport", "basketball", "soccer", "football", "player", "clothes", "game", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26c" + }, + "shirt": { + "name": "shirt", + "category": "", + "tags": ["shirt", "gear", "outfit", "mocker", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0a" + }, + "shoe-off": { + "name": "shoe-off", + "category": "", + "tags": ["shoe", "off", "sport", "boots", "boot", "footwear", "sneaker", "nike", "adidas", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a4" + }, + "shoe": { + "name": "shoe", + "category": "", + "tags": ["shoe", "sport", "boots", "boot", "footwear", "sneaker", "nike", "adidas", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efd2" + }, + "shopping-bag": { + "name": "shopping-bag", + "category": "E-commerce", + "tags": ["shopping", "bag", "icon", "stroke", "outline"], + "version": "1.113", + "unicode": "f5f8" + }, + "shopping-cart-discount": { + "name": "shopping-cart-discount", + "category": "E-commerce", + "tags": ["shopping", "cart", "discount", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eedb" + }, + "shopping-cart-off": { + "name": "shopping-cart-off", + "category": "E-commerce", + "tags": ["shopping", "cart", "off", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eedc" + }, + "shopping-cart-plus": { + "name": "shopping-cart-plus", + "category": "E-commerce", + "tags": ["shopping", "cart", "plus", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eedd" + }, + "shopping-cart-x": { + "name": "shopping-cart-x", + "category": "E-commerce", + "tags": ["shopping", "cart", "x", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eede" + }, + "shopping-cart": { + "name": "shopping-cart", + "category": "E-commerce", + "tags": ["shopping", "cart", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb25" + }, + "shovel": { + "name": "shovel", + "category": "", + "tags": ["shovel", "garden", "tool", "digging", "farm", "dirt", "gardening", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1d9" + }, + "shredder": { + "name": "shredder", + "category": "Devices", + "tags": ["shredder", "paper", "document", "destroy", "device", "office", "confidential", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eedf" + }, + "sign-left-filled": { + "name": "sign-left-filled", + "category": "Filled", + "tags": ["sign", "left", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a1" + }, + "sign-left": { + "name": "sign-left", + "category": "", + "tags": ["sign", "left", "direction", "west", "navigation", "arrow", "navigate", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f06b" + }, + "sign-right-filled": { + "name": "sign-right-filled", + "category": "Filled", + "tags": ["sign", "right", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a2" + }, + "sign-right": { + "name": "sign-right", + "category": "", + "tags": ["sign", "right", "direction", "east", "navigation", "arrow", "navigate", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f06c" + }, + "signal-3g": { + "name": "signal-3g", + "category": "Devices", + "tags": ["signal", "3g", "mobile", "network", "connetion", "wi-fi", "wireless", "smartphone", "technology", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1ee" + }, + "signal-4g-plus": { + "name": "signal-4g-plus", + "category": "Devices", + "tags": ["signal", "4g", "plus", "mobile", "network", "connetion", "wi-fi", "wireless", "smartphone", "technology", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f259" + }, + "signal-4g": { + "name": "signal-4g", + "category": "Devices", + "tags": ["signal", "4g", "mobile", "network", "connetion", "wi-fi", "wireless", "smartphone", "technology", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1ef" + }, + "signal-5g": { + "name": "signal-5g", + "category": "Devices", + "tags": ["signal", "5g", "mobile", "network", "connetion", "wi-fi", "wireless", "smartphone", "technology", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1f0" + }, + "signature-off": { + "name": "signature-off", + "category": "Text", + "tags": ["signature", "off", "name", "certficate", "sign", "edit", "write", "document", "writing", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a5" + }, + "signature": { + "name": "signature", + "category": "Text", + "tags": ["signature", "name", "certficate", "sign", "edit", "write", "document", "writing", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee0" + }, + "sitemap-off": { + "name": "sitemap-off", + "category": "", + "tags": ["sitemap", "off", "page", "webpage", "website", "list", "roadmap", "index", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a6" + }, + "sitemap": { + "name": "sitemap", + "category": "", + "tags": ["sitemap", "page", "webpage", "website", "list", "roadmap", "index", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9d" + }, + "skateboard-off": { + "name": "skateboard-off", + "category": "Vehicles", + "tags": ["skateboard", "off", "toy", "vehicle", "electrical", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42b" + }, + "skateboard": { + "name": "skateboard", + "category": "Vehicles", + "tags": ["skateboard", "toy", "vehicle", "electrical", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecc2" + }, + "skull": { + "name": "skull", + "category": "", + "tags": ["skull", "halloween", "skeleton", "dead", "pirate", "danger", "horror", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f292" + }, + "slash": { + "name": "slash", + "category": "Math", + "tags": ["slash", "sign", "divide", "dash", "icon", "stroke", "outline"], + "version": "1.100", + "unicode": "f4f9" + }, + "slashes": { + "name": "slashes", + "category": "", + "tags": ["slashes", "sign", "key", "button", "dash", "divide", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f588" + }, + "sleigh": { + "name": "sleigh", + "category": "Vehicles", + "tags": ["sleigh", "winter", "christmas", "snow", "santa", "transport", "sledge", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef9c" + }, + "slice": { + "name": "slice", + "category": "Design", + "tags": ["slice", "knife", "cut", "chop", "portion", "kitchen", "tool", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebdb" + }, + "slideshow": { + "name": "slideshow", + "category": "Text", + "tags": ["slideshow", "photo", "picture", "video", "presentation", "camera", "display", "ad", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc9" + }, + "smart-home-off": { + "name": "smart-home-off", + "category": "Buildings", + "tags": ["smart", "home", "off", "apple", "devices", "connection", "link", "wifi", "bluetooth", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a7" + }, + "smart-home": { + "name": "smart-home", + "category": "Buildings", + "tags": ["smart", "home", "apple", "devices", "connection", "link", "wifi", "bluetooth", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecde" + }, + "smoking-no": { + "name": "smoking-no", + "category": "Health", + "tags": ["smoking", "no", "ban", "prohibition", "cigarette", "public place", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecc3" + }, + "smoking": { + "name": "smoking", + "category": "Health", + "tags": ["smoking", "cigarette", "public place", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecc4" + }, + "snowflake-off": { + "name": "snowflake-off", + "category": "Weather", + "tags": ["snowflake", "off", "winter", "weather", "cold", "frost", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a8" + }, + "snowflake": { + "name": "snowflake", + "category": "Weather", + "tags": ["snowflake", "winter", "weather", "cold", "frost", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0b" + }, + "snowman": { + "name": "snowman", + "category": "", + "tags": ["snowman", "winter", "christmas", "snow", "cold", "frosty", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26d" + }, + "soccer-field": { + "name": "soccer-field", + "category": "Sport", + "tags": ["soccer", "field", "football", "pitch", "player", "vall", "goal", "goalkeeper", "kick", "ball", "score", "sport", "sportsman", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed92" + }, + "social-off": { + "name": "social-off", + "category": "", + "tags": ["social", "off", "society", "community", "collectivity", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1a9" + }, + "social": { + "name": "social", + "category": "", + "tags": ["social", "society", "community", "collectivity", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebec" + }, + "sock": { + "name": "sock", + "category": "", + "tags": ["sock", "clothing", "clothes", "foot", "feet", "leg", "knit", "wool", "cotton", "ankle", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee1" + }, + "sofa-off": { + "name": "sofa-off", + "category": "", + "tags": ["sofa", "off", "chair", "seat", "home", "furniture", "couch", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42c" + }, + "sofa": { + "name": "sofa", + "category": "", + "tags": ["sofa", "chair", "seat", "home", "furniture", "couch", "icon", "stroke", "outline"], + "version": "1.48", + "unicode": "efaf" + }, + "sort-0-9": { + "name": "sort-0-9", + "category": "Text", + "tags": ["sort", "0", "9", "numbers", "one", "two", "three", "four", "five", "numerical", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54d" + }, + "sort-9-0": { + "name": "sort-9-0", + "category": "Text", + "tags": ["sort", "9", "0", "numbers", "one", "two", "three", "four", "five", "numerical", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54e" + }, + "sort-a-z": { + "name": "sort-a-z", + "category": "Text", + "tags": ["sort", "a", "z", "alphabet", "letters", "alphabetical", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f54f" + }, + "sort-ascending-2": { + "name": "sort-ascending-2", + "category": "Text", + "tags": ["sort", "ascending", "2", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee2" + }, + "sort-ascending-letters": { + "name": "sort-ascending-letters", + "category": "Text", + "tags": ["sort", "ascending", "letters", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef18" + }, + "sort-ascending-numbers": { + "name": "sort-ascending-numbers", + "category": "Text", + "tags": ["sort", "ascending", "numbers", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef19" + }, + "sort-ascending": { + "name": "sort-ascending", + "category": "Text", + "tags": ["sort", "ascending", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb26" + }, + "sort-descending-2": { + "name": "sort-descending-2", + "category": "Text", + "tags": ["sort", "descending", "2", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee3" + }, + "sort-descending-letters": { + "name": "sort-descending-letters", + "category": "Text", + "tags": ["sort", "descending", "letters", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef1a" + }, + "sort-descending-numbers": { + "name": "sort-descending-numbers", + "category": "Text", + "tags": ["sort", "descending", "numbers", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef1b" + }, + "sort-descending": { + "name": "sort-descending", + "category": "Text", + "tags": ["sort", "descending", "filter", "classify", "arrange", "order", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb27" + }, + "sort-z-a": { + "name": "sort-z-a", + "category": "Text", + "tags": ["sort", "z", "a", "alphabet", "letters", "alphabetical", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f550" + }, + "sos": { + "name": "sos", + "category": "", + "tags": ["sos", "help", "emergency", "signal", "message", "alert", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f24a" + }, + "soup-off": { + "name": "soup-off", + "category": "Food", + "tags": ["soup", "off", "food", "cooking", "restaurant", "bowl", "hot", "kitchen", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42d" + }, + "soup": { + "name": "soup", + "category": "Food", + "tags": ["soup", "food", "cooking", "restaurant", "bowl", "hot", "kitchen", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2e" + }, + "source-code": { + "name": "source-code", + "category": "", + "tags": ["source", "code", "programming", "coding", "html", "development", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a2" + }, + "space-off": { + "name": "space-off", + "category": "Text", + "tags": ["space", "off", "keyboard", "type", "gap", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1aa" + }, + "space": { + "name": "space", + "category": "Text", + "tags": ["space", "keyboard", "type", "gap", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0c" + }, + "spacing-horizontal": { + "name": "spacing-horizontal", + "category": "", + "tags": ["spacing", "horizontal", "align", "between", "text", "gap", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef54" + }, + "spacing-vertical": { + "name": "spacing-vertical", + "category": "", + "tags": ["spacing", "vertical", "align", "between", "text", "gap", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef55" + }, + "spade-filled": { + "name": "spade-filled", + "category": "Filled", + "tags": ["spade", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a3" + }, + "spade": { + "name": "spade", + "category": "Shapes", + "tags": ["spade", "cards", "casino", "poker", "shapes", "gamble", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "effa" + }, + "speakerphone": { + "name": "speakerphone", + "category": "Media", + "tags": ["speakerphone", "voice", "loud", "microphone", "loudspeaker", "event", "protest", "speaker", "shout", "listen", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed61" + }, + "speedboat": { + "name": "speedboat", + "category": "Vehicles", + "tags": ["speedboat", "motorboat", "holiday", "sea", "ocean", "engine", "travel", "lake", "summer", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed93" + }, + "spider": { + "name": "spider", + "category": "Animals", + "tags": ["spider", "halloween", "animal", "scary", "horror", "cobweb", "insect", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f293" + }, + "spiral-off": { + "name": "spiral-off", + "category": "", + "tags": ["spiral", "off", "hypnosis", "rotation", "growth", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42e" + }, + "spiral": { + "name": "spiral", + "category": "", + "tags": ["spiral", "hypnosis", "rotation", "growth", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f294" + }, + "sport-billard": { + "name": "sport-billard", + "category": "Sport", + "tags": ["sport", "billard", "pool", "game", "ball", "pub", "entertainment", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee4" + }, + "spray": { + "name": "spray", + "category": "", + "tags": ["spray", "paint", "clean", "hygiene", "graffiti", "icon", "stroke", "outline"], + "version": "1.101", + "unicode": "f50b" + }, + "spy-off": { + "name": "spy-off", + "category": "", + "tags": ["spy", "off", "security", "incognito", "privacy", "browser", "web", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f42f" + }, + "spy": { + "name": "spy", + "category": "", + "tags": ["spy", "security", "incognito", "privacy", "browser", "web", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f227" + }, + "square-arrow-down": { + "name": "square-arrow-down", + "category": "Arrows", + "tags": ["square", "arrow", "down", "direction", "shape", "bottom", "south", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b7" + }, + "square-arrow-left": { + "name": "square-arrow-left", + "category": "Arrows", + "tags": ["square", "arrow", "left", "direction", "shape", "west", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b8" + }, + "square-arrow-right": { + "name": "square-arrow-right", + "category": "Arrows", + "tags": ["square", "arrow", "right", "direction", "shape", "east", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4b9" + }, + "square-arrow-up": { + "name": "square-arrow-up", + "category": "Arrows", + "tags": ["square", "arrow", "up", "direction", "shape", "north", "top", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4ba" + }, + "square-asterisk": { + "name": "square-asterisk", + "category": "", + "tags": ["square", "asterisk", "shapes", "star", "password", "security", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01a" + }, + "square-check": { + "name": "square-check", + "category": "", + "tags": ["square", "check", "checkbox", "yes", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb28" + }, + "square-chevron-down": { + "name": "square-chevron-down", + "category": "Arrows", + "tags": ["square", "chevron", "down", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f627" + }, + "square-chevron-left": { + "name": "square-chevron-left", + "category": "Arrows", + "tags": ["square", "chevron", "left", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f628" + }, + "square-chevron-right": { + "name": "square-chevron-right", + "category": "Arrows", + "tags": ["square", "chevron", "right", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f629" + }, + "square-chevron-up": { + "name": "square-chevron-up", + "category": "Arrows", + "tags": ["square", "chevron", "up", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f62a" + }, + "square-chevrons-down": { + "name": "square-chevrons-down", + "category": "Arrows", + "tags": ["square", "chevrons", "down", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64b" + }, + "square-chevrons-left": { + "name": "square-chevrons-left", + "category": "Arrows", + "tags": ["square", "chevrons", "left", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64c" + }, + "square-chevrons-right": { + "name": "square-chevrons-right", + "category": "Arrows", + "tags": ["square", "chevrons", "right", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64d" + }, + "square-chevrons-up": { + "name": "square-chevrons-up", + "category": "Arrows", + "tags": ["square", "chevrons", "up", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64e" + }, + "square-dot": { + "name": "square-dot", + "category": "", + "tags": ["square", "dot", "corner", "shape", "element", "point", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed59" + }, + "square-f0": { + "name": "square-f0", + "category": "", + "tags": ["square", "f0", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f526" + }, + "square-f1": { + "name": "square-f1", + "category": "", + "tags": ["square", "f1", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f527" + }, + "square-f2": { + "name": "square-f2", + "category": "", + "tags": ["square", "f2", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f528" + }, + "square-f3": { + "name": "square-f3", + "category": "", + "tags": ["square", "f3", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f529" + }, + "square-f4": { + "name": "square-f4", + "category": "", + "tags": ["square", "f4", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52a" + }, + "square-f5": { + "name": "square-f5", + "category": "", + "tags": ["square", "f5", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52b" + }, + "square-f6": { + "name": "square-f6", + "category": "", + "tags": ["square", "f6", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52c" + }, + "square-f7": { + "name": "square-f7", + "category": "", + "tags": ["square", "f7", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52d" + }, + "square-f8": { + "name": "square-f8", + "category": "", + "tags": ["square", "f8", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52e" + }, + "square-f9": { + "name": "square-f9", + "category": "", + "tags": ["square", "f9", "shape", "keyboard", "button", "key", "hotkey", "icon", "stroke", "outline"], + "version": "1.103", + "unicode": "f52f" + }, + "square-forbid-2": { + "name": "square-forbid-2", + "category": "", + "tags": ["square", "forbid", "2", "box", "disabled", "false", "block", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed5a" + }, + "square-forbid": { + "name": "square-forbid", + "category": "", + "tags": ["square", "forbid", "box", "disabled", "false", "block", "icon", "stroke", "outline"], + "version": "1.30", + "unicode": "ed5b" + }, + "square-half": { + "name": "square-half", + "category": "Design", + "tags": ["square", "half", "shapes", "pattern", "geometric", "highlight", "geometry", "icon", "stroke", "outline"], + "version": "1.52", + "unicode": "effb" + }, + "square-key": { + "name": "square-key", + "category": "", + "tags": ["square", "key", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f638" + }, + "square-letter-a": { + "name": "square-letter-a", + "category": "Letters", + "tags": ["square", "letter", "a", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47c" + }, + "square-letter-b": { + "name": "square-letter-b", + "category": "Letters", + "tags": ["square", "letter", "b", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47d" + }, + "square-letter-c": { + "name": "square-letter-c", + "category": "Letters", + "tags": ["square", "letter", "c", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47e" + }, + "square-letter-d": { + "name": "square-letter-d", + "category": "Letters", + "tags": ["square", "letter", "d", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f47f" + }, + "square-letter-e": { + "name": "square-letter-e", + "category": "Letters", + "tags": ["square", "letter", "e", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f480" + }, + "square-letter-f": { + "name": "square-letter-f", + "category": "Letters", + "tags": ["square", "letter", "f", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f481" + }, + "square-letter-g": { + "name": "square-letter-g", + "category": "Letters", + "tags": ["square", "letter", "g", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f482" + }, + "square-letter-h": { + "name": "square-letter-h", + "category": "Letters", + "tags": ["square", "letter", "h", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f483" + }, + "square-letter-i": { + "name": "square-letter-i", + "category": "Letters", + "tags": ["square", "letter", "i", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f484" + }, + "square-letter-j": { + "name": "square-letter-j", + "category": "Letters", + "tags": ["square", "letter", "j", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f485" + }, + "square-letter-k": { + "name": "square-letter-k", + "category": "Letters", + "tags": ["square", "letter", "k", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f486" + }, + "square-letter-l": { + "name": "square-letter-l", + "category": "Letters", + "tags": ["square", "letter", "l", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f487" + }, + "square-letter-m": { + "name": "square-letter-m", + "category": "Letters", + "tags": ["square", "letter", "m", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f488" + }, + "square-letter-n": { + "name": "square-letter-n", + "category": "Letters", + "tags": ["square", "letter", "n", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f489" + }, + "square-letter-o": { + "name": "square-letter-o", + "category": "Letters", + "tags": ["square", "letter", "o", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48a" + }, + "square-letter-p": { + "name": "square-letter-p", + "category": "Letters", + "tags": ["square", "letter", "p", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48b" + }, + "square-letter-q": { + "name": "square-letter-q", + "category": "Letters", + "tags": ["square", "letter", "q", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48c" + }, + "square-letter-r": { + "name": "square-letter-r", + "category": "Letters", + "tags": ["square", "letter", "r", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48d" + }, + "square-letter-s": { + "name": "square-letter-s", + "category": "Letters", + "tags": ["square", "letter", "s", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48e" + }, + "square-letter-t": { + "name": "square-letter-t", + "category": "Letters", + "tags": ["square", "letter", "t", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f48f" + }, + "square-letter-u": { + "name": "square-letter-u", + "category": "Letters", + "tags": ["square", "letter", "u", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f490" + }, + "square-letter-v": { + "name": "square-letter-v", + "category": "Letters", + "tags": ["square", "letter", "v", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.97", + "unicode": "f4bb" + }, + "square-letter-w": { + "name": "square-letter-w", + "category": "Letters", + "tags": ["square", "letter", "w", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f491" + }, + "square-letter-x": { + "name": "square-letter-x", + "category": "Letters", + "tags": ["square", "letter", "x", "cancel", "close", "delete", "remove", "times", "clear", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "f4bc" + }, + "square-letter-y": { + "name": "square-letter-y", + "category": "Letters", + "tags": ["square", "letter", "y", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f492" + }, + "square-letter-z": { + "name": "square-letter-z", + "category": "Letters", + "tags": ["square", "letter", "z", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.95", + "unicode": "f493" + }, + "square-minus": { + "name": "square-minus", + "category": "", + "tags": ["square", "minus", "remove", "indeterminate", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb29" + }, + "square-number-0": { + "name": "square-number-0", + "category": "Numbers", + "tags": ["square", "number", "0", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee5" + }, + "square-number-1": { + "name": "square-number-1", + "category": "Numbers", + "tags": ["square", "number", "1", "one", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee6" + }, + "square-number-2": { + "name": "square-number-2", + "category": "Numbers", + "tags": ["square", "number", "2", "two", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee7" + }, + "square-number-3": { + "name": "square-number-3", + "category": "Numbers", + "tags": ["square", "number", "3", "three", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee8" + }, + "square-number-4": { + "name": "square-number-4", + "category": "Numbers", + "tags": ["square", "number", "4", "four", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eee9" + }, + "square-number-5": { + "name": "square-number-5", + "category": "Numbers", + "tags": ["square", "number", "5", "five", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeea" + }, + "square-number-6": { + "name": "square-number-6", + "category": "Numbers", + "tags": ["square", "number", "6", "six", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeeb" + }, + "square-number-7": { + "name": "square-number-7", + "category": "Numbers", + "tags": ["square", "number", "7", "seven", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeec" + }, + "square-number-8": { + "name": "square-number-8", + "category": "Numbers", + "tags": ["square", "number", "8", "eight", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeed" + }, + "square-number-9": { + "name": "square-number-9", + "category": "Numbers", + "tags": ["square", "number", "9", "nine", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeee" + }, + "square-off": { + "name": "square-off", + "category": "Shapes", + "tags": ["square", "off", "checkbox", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeef" + }, + "square-plus": { + "name": "square-plus", + "category": "", + "tags": ["square", "plus", "add", "create", "new", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb2a" + }, + "square-root-2": { + "name": "square-root-2", + "category": "Math", + "tags": ["square", "root", "2", "mathematics", "maths", "science", "calculate", "calculator", "algebra", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef0" + }, + "square-root": { + "name": "square-root", + "category": "Math", + "tags": ["square", "root", "mathematics", "maths", "science", "calculate", "calculator", "algebra", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef1" + }, + "square-rotated-filled": { + "name": "square-rotated-filled", + "category": "Filled", + "tags": ["square", "rotated", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a4" + }, + "square-rotated-forbid-2": { + "name": "square-rotated-forbid-2", + "category": "", + "tags": ["square", "rotated", "forbid", "2", "shape", "geometry", "rhombus", "ban", "restricted", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01b" + }, + "square-rotated-forbid": { + "name": "square-rotated-forbid", + "category": "", + "tags": ["square", "rotated", "forbid", "shape", "geometry", "rhombus", "ban", "restricted", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01c" + }, + "square-rotated-off": { + "name": "square-rotated-off", + "category": "Shapes", + "tags": ["square", "rotated", "off", "shape", "sign", "geometry", "geometric", "quadrilateral", "rhombus", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef2" + }, + "square-rotated": { + "name": "square-rotated", + "category": "Shapes", + "tags": ["square", "rotated", "shape", "sign", "geometry", "geometric", "quadrilateral", "rhombus", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ecdf" + }, + "square-rounded-arrow-down": { + "name": "square-rounded-arrow-down", + "category": "", + "tags": ["square", "rounded", "arrow", "down", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f639" + }, + "square-rounded-arrow-left": { + "name": "square-rounded-arrow-left", + "category": "", + "tags": ["square", "rounded", "arrow", "left", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63a" + }, + "square-rounded-arrow-right": { + "name": "square-rounded-arrow-right", + "category": "", + "tags": ["square", "rounded", "arrow", "right", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63b" + }, + "square-rounded-arrow-up": { + "name": "square-rounded-arrow-up", + "category": "", + "tags": ["square", "rounded", "arrow", "up", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63c" + }, + "square-rounded-check": { + "name": "square-rounded-check", + "category": "", + "tags": ["square", "rounded", "check", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63d" + }, + "square-rounded-chevron-down": { + "name": "square-rounded-chevron-down", + "category": "Arrows", + "tags": ["square", "rounded", "chevron", "down", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f62b" + }, + "square-rounded-chevron-left": { + "name": "square-rounded-chevron-left", + "category": "Arrows", + "tags": ["square", "rounded", "chevron", "left", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f62c" + }, + "square-rounded-chevron-right": { + "name": "square-rounded-chevron-right", + "category": "Arrows", + "tags": ["square", "rounded", "chevron", "right", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f62d" + }, + "square-rounded-chevron-up": { + "name": "square-rounded-chevron-up", + "category": "Arrows", + "tags": ["square", "rounded", "chevron", "up", "icon", "stroke", "outline"], + "version": "1.116", + "unicode": "f62e" + }, + "square-rounded-chevrons-down": { + "name": "square-rounded-chevrons-down", + "category": "Arrows", + "tags": ["square", "rounded", "chevrons", "down", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f64f" + }, + "square-rounded-chevrons-left": { + "name": "square-rounded-chevrons-left", + "category": "Arrows", + "tags": ["square", "rounded", "chevrons", "left", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f650" + }, + "square-rounded-chevrons-right": { + "name": "square-rounded-chevrons-right", + "category": "Arrows", + "tags": ["square", "rounded", "chevrons", "right", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f651" + }, + "square-rounded-chevrons-up": { + "name": "square-rounded-chevrons-up", + "category": "Arrows", + "tags": ["square", "rounded", "chevrons", "up", "icon", "stroke", "outline"], + "version": "1.118", + "unicode": "f652" + }, + "square-rounded-filled": { + "name": "square-rounded-filled", + "category": "Filled", + "tags": ["square", "rounded", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a5" + }, + "square-rounded-letter-a": { + "name": "square-rounded-letter-a", + "category": "Letters", + "tags": ["square", "rounded", "letter", "a", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5ae" + }, + "square-rounded-letter-b": { + "name": "square-rounded-letter-b", + "category": "Letters", + "tags": ["square", "rounded", "letter", "b", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5af" + }, + "square-rounded-letter-c": { + "name": "square-rounded-letter-c", + "category": "Letters", + "tags": ["square", "rounded", "letter", "c", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b0" + }, + "square-rounded-letter-d": { + "name": "square-rounded-letter-d", + "category": "Letters", + "tags": ["square", "rounded", "letter", "d", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b1" + }, + "square-rounded-letter-e": { + "name": "square-rounded-letter-e", + "category": "Letters", + "tags": ["square", "rounded", "letter", "e", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b2" + }, + "square-rounded-letter-f": { + "name": "square-rounded-letter-f", + "category": "Letters", + "tags": ["square", "rounded", "letter", "f", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b3" + }, + "square-rounded-letter-g": { + "name": "square-rounded-letter-g", + "category": "Letters", + "tags": ["square", "rounded", "letter", "g", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b4" + }, + "square-rounded-letter-h": { + "name": "square-rounded-letter-h", + "category": "Letters", + "tags": ["square", "rounded", "letter", "h", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b5" + }, + "square-rounded-letter-i": { + "name": "square-rounded-letter-i", + "category": "Letters", + "tags": ["square", "rounded", "letter", "i", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b6" + }, + "square-rounded-letter-j": { + "name": "square-rounded-letter-j", + "category": "Letters", + "tags": ["square", "rounded", "letter", "j", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b7" + }, + "square-rounded-letter-k": { + "name": "square-rounded-letter-k", + "category": "Letters", + "tags": ["square", "rounded", "letter", "k", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b8" + }, + "square-rounded-letter-l": { + "name": "square-rounded-letter-l", + "category": "Letters", + "tags": ["square", "rounded", "letter", "l", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5b9" + }, + "square-rounded-letter-m": { + "name": "square-rounded-letter-m", + "category": "Letters", + "tags": ["square", "rounded", "letter", "m", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5ba" + }, + "square-rounded-letter-n": { + "name": "square-rounded-letter-n", + "category": "Letters", + "tags": ["square", "rounded", "letter", "n", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5bb" + }, + "square-rounded-letter-o": { + "name": "square-rounded-letter-o", + "category": "Letters", + "tags": ["square", "rounded", "letter", "o", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5bc" + }, + "square-rounded-letter-p": { + "name": "square-rounded-letter-p", + "category": "Letters", + "tags": ["square", "rounded", "letter", "p", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5bd" + }, + "square-rounded-letter-q": { + "name": "square-rounded-letter-q", + "category": "Letters", + "tags": ["square", "rounded", "letter", "q", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5be" + }, + "square-rounded-letter-r": { + "name": "square-rounded-letter-r", + "category": "Letters", + "tags": ["square", "rounded", "letter", "r", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5bf" + }, + "square-rounded-letter-s": { + "name": "square-rounded-letter-s", + "category": "Letters", + "tags": ["square", "rounded", "letter", "s", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c0" + }, + "square-rounded-letter-t": { + "name": "square-rounded-letter-t", + "category": "Letters", + "tags": ["square", "rounded", "letter", "t", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c1" + }, + "square-rounded-letter-u": { + "name": "square-rounded-letter-u", + "category": "Letters", + "tags": ["square", "rounded", "letter", "u", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c2" + }, + "square-rounded-letter-v": { + "name": "square-rounded-letter-v", + "category": "Letters", + "tags": ["square", "rounded", "letter", "v", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c3" + }, + "square-rounded-letter-w": { + "name": "square-rounded-letter-w", + "category": "Letters", + "tags": ["square", "rounded", "letter", "w", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c4" + }, + "square-rounded-letter-x": { + "name": "square-rounded-letter-x", + "category": "Letters", + "tags": ["square", "rounded", "letter", "x", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c5" + }, + "square-rounded-letter-y": { + "name": "square-rounded-letter-y", + "category": "Letters", + "tags": ["square", "rounded", "letter", "y", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c6" + }, + "square-rounded-letter-z": { + "name": "square-rounded-letter-z", + "category": "Letters", + "tags": ["square", "rounded", "letter", "z", "shape", "alphabet", "sign", "latin", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c7" + }, + "square-rounded-minus": { + "name": "square-rounded-minus", + "category": "", + "tags": ["square", "rounded", "minus", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63e" + }, + "square-rounded-number-0": { + "name": "square-rounded-number-0", + "category": "Numbers", + "tags": ["square", "rounded", "number", "0", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c8" + }, + "square-rounded-number-1": { + "name": "square-rounded-number-1", + "category": "Numbers", + "tags": ["square", "rounded", "number", "1", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5c9" + }, + "square-rounded-number-2": { + "name": "square-rounded-number-2", + "category": "Numbers", + "tags": ["square", "rounded", "number", "2", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5ca" + }, + "square-rounded-number-3": { + "name": "square-rounded-number-3", + "category": "Numbers", + "tags": ["square", "rounded", "number", "3", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5cb" + }, + "square-rounded-number-4": { + "name": "square-rounded-number-4", + "category": "Numbers", + "tags": ["square", "rounded", "number", "4", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5cc" + }, + "square-rounded-number-5": { + "name": "square-rounded-number-5", + "category": "Numbers", + "tags": ["square", "rounded", "number", "5", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5cd" + }, + "square-rounded-number-6": { + "name": "square-rounded-number-6", + "category": "Numbers", + "tags": ["square", "rounded", "number", "6", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5ce" + }, + "square-rounded-number-7": { + "name": "square-rounded-number-7", + "category": "Numbers", + "tags": ["square", "rounded", "number", "7", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5cf" + }, + "square-rounded-number-8": { + "name": "square-rounded-number-8", + "category": "Numbers", + "tags": ["square", "rounded", "number", "8", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5d0" + }, + "square-rounded-number-9": { + "name": "square-rounded-number-9", + "category": "Numbers", + "tags": ["square", "rounded", "number", "9", "shape", "number", "digit", "icon", "stroke", "outline"], + "version": "1.111", + "unicode": "f5d1" + }, + "square-rounded-plus": { + "name": "square-rounded-plus", + "category": "", + "tags": ["square", "rounded", "plus", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f63f" + }, + "square-rounded-x": { + "name": "square-rounded-x", + "category": "", + "tags": ["square", "rounded", "x", "icon", "stroke", "outline"], + "version": "1.117", + "unicode": "f640" + }, + "square-rounded": { + "name": "square-rounded", + "category": "Shapes", + "tags": ["square", "rounded", "shape", "box", "figure", "geometry", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f59a" + }, + "square-toggle-horizontal": { + "name": "square-toggle-horizontal", + "category": "Design", + "tags": ["square", "toggle", "horizontal", "box", "clone", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef3" + }, + "square-toggle": { + "name": "square-toggle", + "category": "Design", + "tags": ["square", "toggle", "box", "clone", "move", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef4" + }, + "square-x": { + "name": "square-x", + "category": "", + "tags": ["square", "x", "cancel", "close", "delete", "remove", "times", "clear", "no", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb2b" + }, + "square": { + "name": "square", + "category": "Shapes", + "tags": ["square", "checkbox", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb2c" + }, + "squares-diagonal": { + "name": "squares-diagonal", + "category": "Design", + "tags": ["squares", "diagonal", "boxes", "layers", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef5" + }, + "squares-filled": { + "name": "squares-filled", + "category": "Design", + "tags": ["squares", "filled", "boxes", "layers", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef6" + }, + "stack-2": { + "name": "stack-2", + "category": "Design", + "tags": ["stack", "2", "pile", "elements", "layout", "wrap", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef7" + }, + "stack-3": { + "name": "stack-3", + "category": "Design", + "tags": ["stack", "3", "pile", "elements", "layout", "wrap", "icon", "stroke", "outline"], + "version": "1.47", + "unicode": "ef9d" + }, + "stack-pop": { + "name": "stack-pop", + "category": "Design", + "tags": ["stack", "pop", "data", "level", "layout", "arrow", "out", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f234" + }, + "stack-push": { + "name": "stack-push", + "category": "Design", + "tags": ["stack", "push", "arrange", "data", "level", "layout", "arrow", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f235" + }, + "stack": { + "name": "stack", + "category": "Design", + "tags": ["stack", "pile", "elements", "layout", "wrap", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb2d" + }, + "stairs-down": { + "name": "stairs-down", + "category": "Map", + "tags": ["stairs", "down", "building", "step", "floor", "staircase", "clamber", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca4" + }, + "stairs-up": { + "name": "stairs-up", + "category": "Map", + "tags": ["stairs", "up", "building", "step", "floor", "staircase", "entryway", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca5" + }, + "stairs": { + "name": "stairs", + "category": "Map", + "tags": ["stairs", "building", "step", "floor", "staircase", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca6" + }, + "star-filled": { + "name": "star-filled", + "category": "Filled", + "tags": ["star", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a6" + }, + "star-half-filled": { + "name": "star-half-filled", + "category": "Filled", + "tags": ["star", "half", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a7" + }, + "star-half": { + "name": "star-half", + "category": "System", + "tags": ["star", "half", "favorite", "like", "mark", "bookmark", "grade", "icon", "stroke", "outline"], + "version": "1.24", + "unicode": "ed19" + }, + "star-off": { + "name": "star-off", + "category": "System", + "tags": ["star", "off", "favorite", "like", "mark", "bookmark", "grade", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed62" + }, + "star": { + "name": "star", + "category": "System", + "tags": ["star", "favorite", "like", "mark", "bookmark", "grade", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb2e" + }, + "stars-filled": { + "name": "stars-filled", + "category": "Filled", + "tags": ["stars", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a8" + }, + "stars-off": { + "name": "stars-off", + "category": "System", + "tags": ["stars", "off", "favorite", "like", "mark", "grade", "bookmark", "grade", "space", "universe", "extraterrestrial", "galaxy", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f430" + }, + "stars": { + "name": "stars", + "category": "System", + "tags": ["stars", "favorite", "like", "mark", "grade", "bookmark", "grade", "space", "universe", "extraterrestrial", "galaxy", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed38" + }, + "status-change": { + "name": "status-change", + "category": "", + "tags": ["status", "change", "available", "unavailable", "switch", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3b0" + }, + "steam": { + "name": "steam", + "category": "", + "tags": ["steam", "app", "social", "games", "platform", "software", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f24b" + }, + "steering-wheel-off": { + "name": "steering-wheel-off", + "category": "Vehicles", + "tags": ["steering", "wheel", "off", "drive", "vehicle", "direction", "turn", "holding", "racing", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f431" + }, + "steering-wheel": { + "name": "steering-wheel", + "category": "Vehicles", + "tags": ["steering", "wheel", "drive", "vehicle", "direction", "turn", "holding", "racing", "icon", "stroke", "outline"], + "version": "1.13", + "unicode": "ec7b" + }, + "step-into": { + "name": "step-into", + "category": "Arrows", + "tags": ["step", "into", "vector", "placement", "among", "within", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ece0" + }, + "step-out": { + "name": "step-out", + "category": "Arrows", + "tags": ["step", "out", "vector", "placement", "outside", "except", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ece1" + }, + "stereo-glasses": { + "name": "stereo-glasses", + "category": "", + "tags": ["stereo", "glasses", "cinema", "3d", "eyewear", "film", "movie", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4cb" + }, + "stethoscope-off": { + "name": "stethoscope-off", + "category": "Health", + "tags": ["stethoscope", "off", "doctor", "medical", "physician", "test", "examination", "health", "illness", "sickness", "scrutiny", "test", "hospital", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f432" + }, + "stethoscope": { + "name": "stethoscope", + "category": "Health", + "tags": ["stethoscope", "doctor", "medical", "physician", "test", "examination", "health", "illness", "sickness", "scrutiny", "test", "hospital", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "edbe" + }, + "sticker": { + "name": "sticker", + "category": "", + "tags": ["sticker", "label", "stamp", "adhesive", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb2f" + }, + "storm-off": { + "name": "storm-off", + "category": "", + "tags": ["storm", "off", "weather", "cloud", "lighting", "rain", "wind", "tornado", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f433" + }, + "storm": { + "name": "storm", + "category": "", + "tags": ["storm", "weather", "cloud", "lighting", "rain", "wind", "tornado", "icon", "stroke", "outline"], + "version": "1.74", + "unicode": "f24c" + }, + "stretching": { + "name": "stretching", + "category": "Sport", + "tags": ["stretching", "exercise", "yoga", "workout", "fitness", "gym", "body", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2db" + }, + "strikethrough": { + "name": "strikethrough", + "category": "Text", + "tags": ["strikethrough", "typography", "horizontal", "deleted", "removed", "unimportant", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9e" + }, + "submarine": { + "name": "submarine", + "category": "Vehicles", + "tags": ["submarine", "sea", "ocean", "underwater", "shipwater", "war", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed94" + }, + "subscript": { + "name": "subscript", + "category": "Text", + "tags": ["subscript", "typography", "below", "formula", "maths", "fraction", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eb9f" + }, + "subtask": { + "name": "subtask", + "category": "", + "tags": ["subtask", "management", "break down", "work", "icon", "stroke", "outline"], + "version": "1.16", + "unicode": "ec9f" + }, + "sum-off": { + "name": "sum-off", + "category": "Math", + "tags": ["sum", "off", "equation", "add", "plus", "amount", "total", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1ab" + }, + "sum": { + "name": "sum", + "category": "Math", + "tags": ["sum", "equation", "add", "plus", "amount", "total", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb73" + }, + "sun-filled": { + "name": "sun-filled", + "category": "Filled", + "tags": ["sun", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a9" + }, + "sun-high": { + "name": "sun-high", + "category": "Weather", + "tags": ["sun", "high", "temperature", "hot", "wheater", "thermometer", "forecast", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f236" + }, + "sun-low": { + "name": "sun-low", + "category": "Weather", + "tags": ["sun", "low", "temperature", "cold", "wheater", "thermometer", "forecast", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f237" + }, + "sun-moon": { + "name": "sun-moon", + "category": "Weather", + "tags": ["sun", "moon", "weather", "day", "night", "hot", "cold", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a3" + }, + "sun-off": { + "name": "sun-off", + "category": "Weather", + "tags": ["sun", "off", "weather", "light", "mode", "brightness", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed63" + }, + "sun-wind": { + "name": "sun-wind", + "category": "Weather", + "tags": ["sun", "wind", "temperature", "wheater", "thermometer", "forecast", "windy", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f238" + }, + "sun": { + "name": "sun", + "category": "Weather", + "tags": ["sun", "weather", "light", "mode", "brightness", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb30" + }, + "sunglasses": { + "name": "sunglasses", + "category": "Health", + "tags": ["sunglasses", "summer", "sun", "look", "shades", "eyewear", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f239" + }, + "sunrise": { + "name": "sunrise", + "category": "Weather", + "tags": ["sunrise", "west", "horizon", "landscape", "evening", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ef1c" + }, + "sunset-2": { + "name": "sunset-2", + "category": "Weather", + "tags": ["sunset", "2", "east", "horizon", "landscape", "morning", "icon", "stroke", "outline"], + "version": "1.73", + "unicode": "f23a" + }, + "sunset": { + "name": "sunset", + "category": "Weather", + "tags": ["sunset", "east", "horizon", "landscape", "morning", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec31" + }, + "superscript": { + "name": "superscript", + "category": "Text", + "tags": ["superscript", "typography", "above", "maths", "fraction", "trademark", "footer", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eba0" + }, + "svg": { + "name": "svg", + "category": "", + "tags": ["svg", "file", "format", "extension", "graphic", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f25a" + }, + "swimming": { + "name": "swimming", + "category": "Sport", + "tags": ["swimming", "sport", "water", "pool", "style", "athletics", "competitive", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec92" + }, + "swipe": { + "name": "swipe", + "category": "", + "tags": ["swipe", "right", "left", "gesture", "scroll", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f551" + }, + "switch-2": { + "name": "switch-2", + "category": "Arrows", + "tags": ["switch", "2", "arrows", "direction", "music", "spotify", "change", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edbf" + }, + "switch-3": { + "name": "switch-3", + "category": "", + "tags": ["switch", "3", "arrows", "direction", "music", "spotify", "change", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edc0" + }, + "switch-horizontal": { + "name": "switch-horizontal", + "category": "Arrows", + "tags": ["switch", "horizontal", "toggle", "left", "right", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb31" + }, + "switch-vertical": { + "name": "switch-vertical", + "category": "Arrows", + "tags": ["switch", "vertical", "toggle", "up", "down", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb32" + }, + "switch": { + "name": "switch", + "category": "Arrows", + "tags": ["switch", "toggle", "arrows", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb33" + }, + "sword-off": { + "name": "sword-off", + "category": "", + "tags": ["sword", "off", "weapon", "knight", "blade", "war", "minecraft", "warrior", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f434" + }, + "sword": { + "name": "sword", + "category": "", + "tags": ["sword", "weapon", "knight", "blade", "war", "minecraft", "warrior", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f030" + }, + "swords": { + "name": "swords", + "category": "", + "tags": ["swords", "weapon", "knight", "blade", "war", "minecraft", "warrior", "icon", "stroke", "outline"], + "version": "1.65", + "unicode": "f132" + }, + "table-alias": { + "name": "table-alias", + "category": "Database", + "tags": ["table", "alias", "data", "database", "chart", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f25b" + }, + "table-export": { + "name": "table-export", + "category": "Database", + "tags": ["table", "export", "spreadsheet", "layout", "grid", "arrange", "row", "column", "cells", "sheet", "arrow", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef8" + }, + "table-import": { + "name": "table-import", + "category": "Database", + "tags": ["table", "import", "spreadsheet", "layout", "grid", "arrange", "row", "column", "cells", "sheet", "arrow", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eef9" + }, + "table-off": { + "name": "table-off", + "category": "Database", + "tags": ["table", "off", "spreadsheet", "layout", "grid", "arrange", "row", "column", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eefa" + }, + "table-options": { + "name": "table-options", + "category": "Database", + "tags": ["table", "options", "edit", "chart", "customization", "repair", "settings", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f25c" + }, + "table-shortcut": { + "name": "table-shortcut", + "category": "Database", + "tags": ["table", "shortcut", "data", "database", "chart", "network", "server", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f25d" + }, + "table": { + "name": "table", + "category": "Database", + "tags": ["table", "spreadsheet", "layout", "grid", "arrange", "row", "column", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eba1" + }, + "tag-off": { + "name": "tag-off", + "category": "E-commerce", + "tags": ["tag", "off", "label", "price", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efc0" + }, + "tag": { + "name": "tag", + "category": "E-commerce", + "tags": ["tag", "label", "price", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb34" + }, + "tags-off": { + "name": "tags-off", + "category": "E-commerce", + "tags": ["tags", "off", "label", "price", "shopping", "promotion", "icon", "stroke", "outline"], + "version": "1.49", + "unicode": "efc1" + }, + "tags": { + "name": "tags", + "category": "E-commerce", + "tags": ["tags", "label", "price", "shopping", "promotion", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef86" + }, + "tallymark-1": { + "name": "tallymark-1", + "category": "Math", + "tags": ["tallymark", "1", "sign", "symbol", "numerical", "consistent", "system", "counting", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec46" + }, + "tallymark-2": { + "name": "tallymark-2", + "category": "Math", + "tags": ["tallymark", "2", "sign", "symbol", "numerical", "consistent", "system", "counting", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec47" + }, + "tallymark-3": { + "name": "tallymark-3", + "category": "Math", + "tags": ["tallymark", "3", "sign", "symbol", "numerical", "consistent", "system", "counting", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec48" + }, + "tallymark-4": { + "name": "tallymark-4", + "category": "Math", + "tags": ["tallymark", "4", "sign", "symbol", "numerical", "consistent", "system", "counting", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec49" + }, + "tallymarks": { + "name": "tallymarks", + "category": "Math", + "tags": ["tallymarks", "sign", "symbol", "numerical", "consistent", "system", "counting", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec4a" + }, + "tank": { + "name": "tank", + "category": "Vehicles", + "tags": ["tank", "war", "military", "armour", "vehicle", "gun", "attack", "shoot", "battle", "battlefield", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed95" + }, + "target-arrow": { + "name": "target-arrow", + "category": "Sport", + "tags": ["target", "arrow", "goal", "aim", "archery", "archer", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f51a" + }, + "target-off": { + "name": "target-off", + "category": "Map", + "tags": ["target", "off", "focus", "bullseye", "aim", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1ad" + }, + "target": { + "name": "target", + "category": "Map", + "tags": ["target", "focus", "bullseye", "aim", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb35" + }, + "teapot": { + "name": "teapot", + "category": "", + "tags": ["teapot", "kettle", "kitchen", "hot", "coffee", "kitchenware", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f552" + }, + "telescope-off": { + "name": "telescope-off", + "category": "", + "tags": ["telescope", "off", "astronomy", "moon", "observation", "vision", "space", "astrology", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1ae" + }, + "telescope": { + "name": "telescope", + "category": "", + "tags": ["telescope", "astronomy", "moon", "observation", "vision", "space", "astrology", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07d" + }, + "temperature-celsius": { + "name": "temperature-celsius", + "category": "Weather", + "tags": ["temperature", "celsius", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb36" + }, + "temperature-fahrenheit": { + "name": "temperature-fahrenheit", + "category": "Weather", + "tags": ["temperature", "fahrenheit", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb37" + }, + "temperature-minus": { + "name": "temperature-minus", + "category": "Weather", + "tags": ["temperature", "minus", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebed" + }, + "temperature-off": { + "name": "temperature-off", + "category": "Weather", + "tags": ["temperature", "off", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1af" + }, + "temperature-plus": { + "name": "temperature-plus", + "category": "Weather", + "tags": ["temperature", "plus", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebee" + }, + "temperature": { + "name": "temperature", + "category": "Weather", + "tags": ["temperature", "weather", "celcius", "fahrenheit", "cold", "hot", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb38" + }, + "template-off": { + "name": "template-off", + "category": "Design", + "tags": ["template", "off", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b0" + }, + "template": { + "name": "template", + "category": "Design", + "tags": ["template", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eb39" + }, + "tent-off": { + "name": "tent-off", + "category": "Map", + "tags": ["tent", "off", "camping", "holiday", "vacation", "outdoor", "survival", "travel", "adventure", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f435" + }, + "tent": { + "name": "tent", + "category": "Map", + "tags": ["tent", "camping", "holiday", "vacation", "outdoor", "survival", "travel", "adventure", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eefb" + }, + "terminal-2": { + "name": "terminal-2", + "category": "", + "tags": ["terminal", "2", "console", "command", "git", "command line", "command prompt", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebef" + }, + "terminal": { + "name": "terminal", + "category": "", + "tags": ["terminal", "console", "command", "git", "command line", "command prompt", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebdc" + }, + "test-pipe-2": { + "name": "test-pipe-2", + "category": "", + "tags": ["test", "pipe", "2", "sample", "color", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a4" + }, + "test-pipe-off": { + "name": "test-pipe-off", + "category": "", + "tags": ["test", "pipe", "off", "sample", "color", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b1" + }, + "test-pipe": { + "name": "test-pipe", + "category": "", + "tags": ["test", "pipe", "sample", "color", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3a" + }, + "tex": { + "name": "tex", + "category": "Text", + "tags": ["tex", "file", "document", "type", "format", "icon", "stroke", "outline"], + "version": "1.99", + "unicode": "f4e0" + }, + "text-caption": { + "name": "text-caption", + "category": "Text", + "tags": ["text", "caption", "document", "file", "lettering", "image", "picture", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a4" + }, + "text-color": { + "name": "text-color", + "category": "Text", + "tags": ["text", "color", "format", "document", "file", "edit", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2dc" + }, + "text-decrease": { + "name": "text-decrease", + "category": "Text", + "tags": ["text", "decrease", "indent", "minimalize", "smaller", "editor", "size", "edit", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f202" + }, + "text-direction-ltr": { + "name": "text-direction-ltr", + "category": "Text", + "tags": ["text", "direction", "ltr", "left", "right", "bidi", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eefc" + }, + "text-direction-rtl": { + "name": "text-direction-rtl", + "category": "Text", + "tags": ["text", "direction", "rtl", "left", "right", "bidi", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eefd" + }, + "text-increase": { + "name": "text-increase", + "category": "Text", + "tags": ["text", "increase", "expand", "margin", "size", "editor", "edit", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f203" + }, + "text-orientation": { + "name": "text-orientation", + "category": "Text", + "tags": ["text", "orientation", "aglinment", "file", "document", "edit", "right", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a4" + }, + "text-plus": { + "name": "text-plus", + "category": "Text", + "tags": ["text", "plus", "add", "new", "document", "file", "edit", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a5" + }, + "text-recognition": { + "name": "text-recognition", + "category": "Text", + "tags": ["text", "recognition", "language", "processing", "detection", "icon", "stroke", "outline"], + "version": "1.70", + "unicode": "f204" + }, + "text-resize": { + "name": "text-resize", + "category": "Design", + "tags": ["text", "resize", "edit", "editor", "scale", "font", "bigger", "smaller", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef87" + }, + "text-size": { + "name": "text-size", + "category": "Text", + "tags": ["text", "size", "font", "edit", "document", "type", "letter", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b1" + }, + "text-spellcheck": { + "name": "text-spellcheck", + "category": "Text", + "tags": ["text", "spellcheck", "grammar", "spelling", "ortography", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a6" + }, + "text-wrap-disabled": { + "name": "text-wrap-disabled", + "category": "Text", + "tags": ["text", "wrap", "disabled", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca7" + }, + "text-wrap": { + "name": "text-wrap", + "category": "Text", + "tags": ["text", "wrap", "text", "alignment", "position", "icon", "stroke", "outline"], + "version": "1.6", + "unicode": "ebdd" + }, + "texture": { + "name": "texture", + "category": "", + "tags": ["texture", "pattern", "abstract", "decoration", "background", "fashion", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f51b" + }, + "thermometer": { + "name": "thermometer", + "category": "Health", + "tags": ["thermometer", "temperature", "hot", "cold", "weather", "medical", "fever", "celsius", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef67" + }, + "thumb-down-filled": { + "name": "thumb-down-filled", + "category": "Filled", + "tags": ["thumb", "down", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6aa" + }, + "thumb-down-off": { + "name": "thumb-down-off", + "category": "System", + "tags": ["thumb", "down", "off", "dislike", "bad", "emotion", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f436" + }, + "thumb-down": { + "name": "thumb-down", + "category": "System", + "tags": ["thumb", "down", "dislike", "bad", "emotion", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3b" + }, + "thumb-up-filled": { + "name": "thumb-up-filled", + "category": "Filled", + "tags": ["thumb", "up", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ab" + }, + "thumb-up-off": { + "name": "thumb-up-off", + "category": "System", + "tags": ["thumb", "up", "off", "like", "emotion", "good", "love", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f437" + }, + "thumb-up": { + "name": "thumb-up", + "category": "System", + "tags": ["thumb", "up", "like", "emotion", "good", "love", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3c" + }, + "tic-tac": { + "name": "tic-tac", + "category": "Sport", + "tags": ["tic", "tac", "toe", "game", "strategy", "cross", "circle", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f51c" + }, + "ticket-off": { + "name": "ticket-off", + "category": "", + "tags": ["ticket", "off", "cinema", "event", "theatre", "entry", "fine", "coupon", "pass", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b2" + }, + "ticket": { + "name": "ticket", + "category": "", + "tags": ["ticket", "cinema", "event", "theatre", "entry", "fine", "coupon", "pass", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3d" + }, + "tie": { + "name": "tie", + "category": "", + "tags": ["tie", "suit", "buisness", "fashion", "clothes", "accessory", "clothing", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07e" + }, + "tilde": { + "name": "tilde", + "category": "", + "tags": ["tilde", "key", "sign", "about", "rounding", "math", "icon", "stroke", "outline"], + "version": "1.96", + "unicode": "f4a5" + }, + "tilt-shift-off": { + "name": "tilt-shift-off", + "category": "Photography", + "tags": ["tilt", "shift", "off", "filter", "shift", "photography", "photo", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b3" + }, + "tilt-shift": { + "name": "tilt-shift", + "category": "Photography", + "tags": ["tilt", "shift", "filter", "shift", "photography", "photo", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eefe" + }, + "timeline-event-exclamation": { + "name": "timeline-event-exclamation", + "category": "", + "tags": ["timeline", "event", "exclamation", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f662" + }, + "timeline-event-minus": { + "name": "timeline-event-minus", + "category": "", + "tags": ["timeline", "event", "minus", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f663" + }, + "timeline-event-plus": { + "name": "timeline-event-plus", + "category": "", + "tags": ["timeline", "event", "plus", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f664" + }, + "timeline-event-text": { + "name": "timeline-event-text", + "category": "", + "tags": ["timeline", "event", "text", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f665" + }, + "timeline-event-x": { + "name": "timeline-event-x", + "category": "", + "tags": ["timeline", "event", "x", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f666" + }, + "timeline-event": { + "name": "timeline-event", + "category": "", + "tags": ["timeline", "event", "process", "plan", "planning", "diagram", "chart", "roadmap", "icon", "stroke", "outline"], + "version": "1.105", + "unicode": "f553" + }, + "timeline": { + "name": "timeline", + "category": "", + "tags": ["timeline", "process", "plan", "planning", "diagram", "chart", "roadmap", "icon", "stroke", "outline"], + "version": "1.55", + "unicode": "f031" + }, + "tir": { + "name": "tir", + "category": "Vehicles", + "tags": ["tir", "delivery", "transportation", "transport", "logistics", "vehicle", "goods", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebf0" + }, + "toggle-left": { + "name": "toggle-left", + "category": "System", + "tags": ["toggle", "left", "on", "off", "switch", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3e" + }, + "toggle-right": { + "name": "toggle-right", + "category": "System", + "tags": ["toggle", "right", "on", "off", "switch", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb3f" + }, + "toilet-paper-off": { + "name": "toilet-paper-off", + "category": "", + "tags": ["toilet", "paper", "off", "bathroom", "hygiene", "wc", "cleaning", "rubbing", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b4" + }, + "toilet-paper": { + "name": "toilet-paper", + "category": "", + "tags": ["toilet", "paper", "bathroom", "hygiene", "wc", "cleaning", "rubbing", "icon", "stroke", "outline"], + "version": "1.50", + "unicode": "efd3" + }, + "tool": { + "name": "tool", + "category": "System", + "tags": ["tool", "preferences", "edit", "settings", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb40" + }, + "tools-kitchen-2-off": { + "name": "tools-kitchen-2-off", + "category": "Map", + "tags": ["tools", "kitchen", "2", "off", "knife", "fork", "spoon", "cutlery", "eat", "restaurant", "menu", "cafe", "cook", "cut", "soup", "dinner", "breakfast", "dining", "plate", "dish", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b5" + }, + "tools-kitchen-2": { + "name": "tools-kitchen-2", + "category": "Map", + "tags": ["tools", "kitchen", "2", "knife", "fork", "spoon", "cutlery", "eat", "restaurant", "menu", "cafe", "cook", "cut", "soup", "dinner", "breakfast", "dining", "plate", "dish", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "eeff" + }, + "tools-kitchen-off": { + "name": "tools-kitchen-off", + "category": "Map", + "tags": ["tools", "kitchen", "off", "knife", "fork", "spoon", "cutlery", "eat", "restaurant", "menu", "cafe", "cook", "cut", "soup", "dinner", "breakfast", "dining", "plate", "dish", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b6" + }, + "tools-kitchen": { + "name": "tools-kitchen", + "category": "Map", + "tags": ["tools", "kitchen", "knife", "fork", "spoon", "cutlery", "eat", "restaurant", "menu", "cafe", "cook", "cut", "soup", "dinner", "breakfast", "dining", "plate", "dish", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed64" + }, + "tools-off": { + "name": "tools-off", + "category": "Design", + "tags": ["tools", "off", "preferences", "edit", "settings", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b7" + }, + "tools": { + "name": "tools", + "category": "Design", + "tags": ["tools", "preferences", "edit", "settings", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebca" + }, + "tooltip": { + "name": "tooltip", + "category": "System", + "tags": ["tooltip", "info", "help", "information", "advise", "icon", "stroke", "outline"], + "version": "1.82", + "unicode": "f2dd" + }, + "topology-bus": { + "name": "topology-bus", + "category": "Computers", + "tags": ["topology", "bus", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5d9" + }, + "topology-complex": { + "name": "topology-complex", + "category": "Computers", + "tags": ["topology", "complex", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5da" + }, + "topology-full-hierarchy": { + "name": "topology-full-hierarchy", + "category": "Computers", + "tags": ["topology", "full", "hierarchy", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5db" + }, + "topology-full": { + "name": "topology-full", + "category": "Computers", + "tags": ["topology", "full", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5dc" + }, + "topology-ring-2": { + "name": "topology-ring-2", + "category": "Computers", + "tags": ["topology", "ring", "2", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5dd" + }, + "topology-ring-3": { + "name": "topology-ring-3", + "category": "Computers", + "tags": ["topology", "ring", "3", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5de" + }, + "topology-ring": { + "name": "topology-ring", + "category": "Computers", + "tags": ["topology", "ring", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5df" + }, + "topology-star-2": { + "name": "topology-star-2", + "category": "Computers", + "tags": ["topology", "star", "2", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e0" + }, + "topology-star-3": { + "name": "topology-star-3", + "category": "Computers", + "tags": ["topology", "star", "3", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e1" + }, + "topology-star-ring-2": { + "name": "topology-star-ring-2", + "category": "Computers", + "tags": ["topology", "star", "ring", "2", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e2" + }, + "topology-star-ring-3": { + "name": "topology-star-ring-3", + "category": "Computers", + "tags": ["topology", "star", "ring", "3", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e3" + }, + "topology-star-ring": { + "name": "topology-star-ring", + "category": "Computers", + "tags": ["topology", "star", "ring", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e4" + }, + "topology-star": { + "name": "topology-star", + "category": "Computers", + "tags": ["topology", "star", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e5" + }, + "torii": { + "name": "torii", + "category": "Symbols", + "tags": ["torii", "japan", "gate", "asia", "building", "monument", "icon", "stroke", "outline"], + "version": "1.109", + "unicode": "f59b" + }, + "tornado": { + "name": "tornado", + "category": "Weather", + "tags": ["tornado", "wind", "rotate", "storm", "spin", "spinning", "air", "catastrophe", "vortex", "icon", "stroke", "outline"], + "version": "1.20", + "unicode": "ece2" + }, + "tournament": { + "name": "tournament", + "category": "Sport", + "tags": ["tournament", "competition", "competitor", "sport", "game", "play", "champion", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecd0" + }, + "tower-off": { + "name": "tower-off", + "category": "Buildings", + "tags": ["tower", "off", "building", "castle", "fortress", "palace", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2ca" + }, + "tower": { + "name": "tower", + "category": "Buildings", + "tags": ["tower", "building", "castle", "fortress", "palace", "icon", "stroke", "outline"], + "version": "1.81", + "unicode": "f2cb" + }, + "track": { + "name": "track", + "category": "Vehicles", + "tags": ["track", "trail", "path", "route", "train", "railway", "railroad", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef00" + }, + "tractor": { + "name": "tractor", + "category": "Vehicles", + "tags": ["tractor", "countryside", "vehicle", "harvest", "machine", "motor", "farm", "trailer", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0d" + }, + "trademark": { + "name": "trademark", + "category": "Symbols", + "tags": ["trademark", "legal", "product", "company", "own", "ownership", "brand", "law", "right", "certificate", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0e" + }, + "traffic-cone-off": { + "name": "traffic-cone-off", + "category": "Map", + "tags": ["traffic", "cone", "off", "street", "road", "vehicle", "repair", "warning", "lane", "drive", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b8" + }, + "traffic-cone": { + "name": "traffic-cone", + "category": "Map", + "tags": ["traffic", "cone", "street", "road", "vehicle", "repair", "warning", "lane", "drive", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec0f" + }, + "traffic-lights-off": { + "name": "traffic-lights-off", + "category": "Map", + "tags": ["traffic", "lights", "off", "street", "road", "green", "red", "yellow", "vehicle", "stop", "drive", "crossing", "pedestrian", "crossroads", "junction", "intersection", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1b9" + }, + "traffic-lights": { + "name": "traffic-lights", + "category": "Map", + "tags": ["traffic", "lights", "street", "road", "green", "red", "yellow", "vehicle", "stop", "drive", "crossing", "pedestrian", "crossroads", "junction", "intersection", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ed39" + }, + "train": { + "name": "train", + "category": "Vehicles", + "tags": ["train", "railway", "rails", "tgv", "journey", "travel", "network", "route", "passenger", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed96" + }, + "transfer-in": { + "name": "transfer-in", + "category": "E-commerce", + "tags": ["transfer", "in", "input", "insert", "import", "send", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef2f" + }, + "transfer-out": { + "name": "transfer-out", + "category": "E-commerce", + "tags": ["transfer", "out", "output", "export", "send", "icon", "stroke", "outline"], + "version": "1.41", + "unicode": "ef30" + }, + "transform-filled": { + "name": "transform-filled", + "category": "Filled", + "tags": ["transform", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ac" + }, + "transform": { + "name": "transform", + "category": "", + "tags": ["transform", "change", "convert", "adaptation", "direction", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38e" + }, + "transition-bottom": { + "name": "transition-bottom", + "category": "Arrows", + "tags": ["transition", "bottom", "direction", "south", "down", "moving", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b2" + }, + "transition-left": { + "name": "transition-left", + "category": "Arrows", + "tags": ["transition", "left", "direction", "west", "moving", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b3" + }, + "transition-right": { + "name": "transition-right", + "category": "Arrows", + "tags": ["transition", "right", "direction", "east", "moving", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b4" + }, + "transition-top": { + "name": "transition-top", + "category": "Arrows", + "tags": ["transition", "top", "direction", "north", "up", "moving", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b5" + }, + "trash-off": { + "name": "trash-off", + "category": "System", + "tags": ["trash", "off", "garbage", "delete", "remove", "bin", "ash-bin", "uninstall", "dustbin", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed65" + }, + "trash-x": { + "name": "trash-x", + "category": "", + "tags": ["trash", "x", "bin", "litter", "recycle", "remove", "delete", "throw", "away", "waste", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef88" + }, + "trash": { + "name": "trash", + "category": "System", + "tags": ["trash", "garbage", "delete", "remove", "bin", "ash-bin", "uninstall", "dustbin", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb41" + }, + "tree": { + "name": "tree", + "category": "Map", + "tags": ["tree", "nature", "greenery", "park", "leaf", "trunk", "stem", "root", "forest", "garden", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef01" + }, + "trees": { + "name": "trees", + "category": "Map", + "tags": ["trees", "nature", "greenery", "park", "leaf", "trunk", "stem", "root", "forest", "garden", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "ec10" + }, + "trekking": { + "name": "trekking", + "category": "Sport", + "tags": ["trekking", "adventure", "travel", "walking", "hiking", "activity", "icon", "stroke", "outline"], + "version": "1.110", + "unicode": "f5ad" + }, + "trending-down-2": { + "name": "trending-down-2", + "category": "Arrows", + "tags": ["trending", "down", "2", "arrow", "decrease", "fall", "progress", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edc1" + }, + "trending-down-3": { + "name": "trending-down-3", + "category": "Arrows", + "tags": ["trending", "down", "3", "arrow", "decrease", "fall", "progress", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edc2" + }, + "trending-down": { + "name": "trending-down", + "category": "Arrows", + "tags": ["trending", "down", "arrow", "decrease", "fall", "progress", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb42" + }, + "trending-up-2": { + "name": "trending-up-2", + "category": "Arrows", + "tags": ["trending", "up", "2", "arrow", "grow", "increase", "progress", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edc3" + }, + "trending-up-3": { + "name": "trending-up-3", + "category": "Arrows", + "tags": ["trending", "up", "3", "arrow", "grow", "increase", "progress", "icon", "stroke", "outline"], + "version": "1.35", + "unicode": "edc4" + }, + "trending-up": { + "name": "trending-up", + "category": "Arrows", + "tags": ["trending", "up", "arrow", "grow", "increase", "progress", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb43" + }, + "triangle-filled": { + "name": "triangle-filled", + "category": "Filled", + "tags": ["triangle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ad" + }, + "triangle-inverted-filled": { + "name": "triangle-inverted-filled", + "category": "Filled", + "tags": ["triangle", "inverted", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ae" + }, + "triangle-inverted": { + "name": "triangle-inverted", + "category": "", + "tags": ["triangle", "inverted", "shape", "geometry", "geometric", "graphic", "pyramid", "design", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01d" + }, + "triangle-off": { + "name": "triangle-off", + "category": "Shapes", + "tags": ["triangle", "off", "delta", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef02" + }, + "triangle-square-circle": { + "name": "triangle-square-circle", + "category": "Shapes", + "tags": ["triangle", "square", "circle", "shape", "geometry", "round", "angle", "icon", "stroke", "outline"], + "version": "1.21", + "unicode": "ece8" + }, + "triangle": { + "name": "triangle", + "category": "Shapes", + "tags": ["triangle", "delta", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb44" + }, + "triangles": { + "name": "triangles", + "category": "Shapes", + "tags": ["triangles", "shapes", "figure", "geometry", "geometric", "pyramid", "design", "icon", "stroke", "outline"], + "version": "1.61", + "unicode": "f0a5" + }, + "trident": { + "name": "trident", + "category": "", + "tags": ["trident", "three", "spear", "weapon", "sharp", "tool", "icon", "stroke", "outline"], + "version": "1.18", + "unicode": "ecc5" + }, + "trolley": { + "name": "trolley", + "category": "Vehicles", + "tags": ["trolley", "shopping", "market", "shop", "delivery", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4cc" + }, + "trophy-filled": { + "name": "trophy-filled", + "category": "Filled", + "tags": ["trophy", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6af" + }, + "trophy-off": { + "name": "trophy-off", + "category": "", + "tags": ["trophy", "off", "success", "win", "prize", "winner", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f438" + }, + "trophy": { + "name": "trophy", + "category": "", + "tags": ["trophy", "success", "win", "prize", "winner", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb45" + }, + "trowel": { + "name": "trowel", + "category": "", + "tags": ["trowel", "tool", "garden", "equipment", "mason", "cement", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f368" + }, + "truck-delivery": { + "name": "truck-delivery", + "category": "E-commerce", + "tags": ["truck", "delivery", "order", "purchase", "online", "shop", "store", "e-commerce", "lorry", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec4b" + }, + "truck-loading": { + "name": "truck-loading", + "category": "E-commerce", + "tags": ["truck", "loading", "transport", "delivery", "logistics", "vehicle", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1da" + }, + "truck-off": { + "name": "truck-off", + "category": "Vehicles", + "tags": ["truck", "off", "transport", "vahicle", "van", "lorry", "cargo", "delivery", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef03" + }, + "truck-return": { + "name": "truck-return", + "category": "E-commerce", + "tags": ["truck", "return", "order", "purchase", "online", "shop", "store", "e-commerce", "lorry", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec4c" + }, + "truck": { + "name": "truck", + "category": "Vehicles", + "tags": ["truck", "transport", "vahicle", "van", "lorry", "cargo", "delivery", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc4" + }, + "txt": { + "name": "txt", + "category": "", + "tags": ["txt", "file", "format", "type", "document", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3b1" + }, + "typography-off": { + "name": "typography-off", + "category": "Text", + "tags": ["typography", "off", "type", "display", "typeface", "point size", "line length", "line-spacing", "letter-spacing", "font", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1ba" + }, + "typography": { + "name": "typography", + "category": "Text", + "tags": ["typography", "type", "display", "typeface", "point size", "line length", "line-spacing", "letter-spacing", "font", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebc5" + }, + "uf-off": { + "name": "uf-off", + "category": "", + "tags": ["uf", "off", "alien", "space", "astronomy", "spaceship", "galaxy", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26e" + }, + "ufo": { + "name": "ufo", + "category": "", + "tags": ["ufo", "alien", "space", "astronomy", "spaceship", "galaxy", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f26f" + }, + "umbrella-filled": { + "name": "umbrella-filled", + "category": "Filled", + "tags": ["umbrella", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b0" + }, + "umbrella-off": { + "name": "umbrella-off", + "category": "", + "tags": ["umbrella", "off", "rain", "weather", "storm", "wet", "autumn", "fall", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1bb" + }, + "umbrella": { + "name": "umbrella", + "category": "", + "tags": ["umbrella", "rain", "weather", "storm", "wet", "autumn", "fall", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebf1" + }, + "underline": { + "name": "underline", + "category": "Text", + "tags": ["underline", "underscore", "emphasis", "horizontal", "typography", "icon", "stroke", "outline"], + "version": "1.1", + "unicode": "eba2" + }, + "unlink": { + "name": "unlink", + "category": "Text", + "tags": ["unlink", "chain", "url", "address", "remove", "broke", "unconnect", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb46" + }, + "upload": { + "name": "upload", + "category": "Arrows", + "tags": ["upload", "file", "arrow", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb47" + }, + "urgent": { + "name": "urgent", + "category": "", + "tags": ["urgent", "alert", "important", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb48" + }, + "usb": { + "name": "usb", + "category": "", + "tags": ["usb", "drive", "cable", "plug", "device", "technology", "connect", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f00c" + }, + "user-check": { + "name": "user-check", + "category": "", + "tags": ["user", "check", "tick", "person", "account", "role", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb49" + }, + "user-circle": { + "name": "user-circle", + "category": "", + "tags": ["user", "circle", "account", "avatar", "profile", "role", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef68" + }, + "user-exclamation": { + "name": "user-exclamation", + "category": "", + "tags": ["user", "exclamation", "user", "account", "note", "excitement", "admiration", "mark", "icon", "stroke", "outline"], + "version": "1.8", + "unicode": "ec12" + }, + "user-minus": { + "name": "user-minus", + "category": "", + "tags": ["user", "minus", "remove", "cancel", "person", "account", "unsubscribe", "role", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4a" + }, + "user-off": { + "name": "user-off", + "category": "", + "tags": ["user", "off", "person", "account", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecf9" + }, + "user-plus": { + "name": "user-plus", + "category": "", + "tags": ["user", "plus", "add", "create", "new", "person", "people", "follow", "subscribe", "role", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4b" + }, + "user-search": { + "name": "user-search", + "category": "", + "tags": ["user", "search", "find", "account", "profile", "magnifier", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef89" + }, + "user-x": { + "name": "user-x", + "category": "", + "tags": ["user", "x", "cancel", "remove", "person", "account", "unsubscribe", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4c" + }, + "user": { + "name": "user", + "category": "", + "tags": ["user", "person", "account", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4d" + }, + "users": { + "name": "users", + "category": "", + "tags": ["users", "people", "persons", "accounts", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebf2" + }, + "uv-index": { + "name": "uv-index", + "category": "Weather", + "tags": ["uv", "index", "sun", "ultraviolet", "radiation", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3b2" + }, + "ux-circle": { + "name": "ux-circle", + "category": "Design", + "tags": ["ux", "circle", "user", "experience", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f369" + }, + "vaccine-bottle-off": { + "name": "vaccine-bottle-off", + "category": "Health", + "tags": ["vaccine", "bottle", "off", "medical", "medicine", "pharmacy", "covid", "virus", "drug", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f439" + }, + "vaccine-bottle": { + "name": "vaccine-bottle", + "category": "Health", + "tags": ["vaccine", "bottle", "medical", "medicine", "pharmacy", "covid", "virus", "drug", "icon", "stroke", "outline"], + "version": "1.44", + "unicode": "ef69" + }, + "vaccine-off": { + "name": "vaccine-off", + "category": "Health", + "tags": ["vaccine", "off", "illness", "sickness", "disease", "injection", "medicine", "medical", "doctor", "nurse", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1bc" + }, + "vaccine": { + "name": "vaccine", + "category": "Health", + "tags": ["vaccine", "illness", "sickness", "disease", "injection", "medicine", "medical", "doctor", "nurse", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef04" + }, + "vacuum-cleaner": { + "name": "vacuum-cleaner", + "category": "", + "tags": ["vacuum", "cleaner", "icon", "stroke", "outline"], + "version": "1.112", + "unicode": "f5e6" + }, + "variable-minus": { + "name": "variable-minus", + "category": "Math", + "tags": ["variable", "minus", "false", "delete", "maths", "mathematics", "science", "calculate", "function", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f36a" + }, + "variable-off": { + "name": "variable-off", + "category": "Math", + "tags": ["variable", "off", "maths", "mathematics", "science", "calculate", "function", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1bd" + }, + "variable-plus": { + "name": "variable-plus", + "category": "Math", + "tags": ["variable", "plus", "add", "new", "maths", "mathematics", "science", "calculate", "function", "icon", "stroke", "outline"], + "version": "1.89", + "unicode": "f36b" + }, + "variable": { + "name": "variable", + "category": "Math", + "tags": ["variable", "maths", "mathematics", "science", "calculate", "function", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef05" + }, + "vector-bezier-2": { + "name": "vector-bezier-2", + "category": "Design", + "tags": ["vector", "bezier", "2", "curve", "parametric", "design", "vector graphics", "representation", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "f1a3" + }, + "vector-bezier-arc": { + "name": "vector-bezier-arc", + "category": "Design", + "tags": ["vector", "bezier", "arc", "curve", "drafting", "reshape", "shape", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4cd" + }, + "vector-bezier-circle": { + "name": "vector-bezier-circle", + "category": "Design", + "tags": ["vector", "bezier", "circle", "curve", "drafting", "reshape", "shape", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4ce" + }, + "vector-bezier": { + "name": "vector-bezier", + "category": "Design", + "tags": ["vector", "bezier", "curve", "parametric", "design", "vector graphics", "representation", "icon", "stroke", "outline"], + "version": "1.27", + "unicode": "ef1d" + }, + "vector-off": { + "name": "vector-off", + "category": "Design", + "tags": ["vector", "off", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1be" + }, + "vector-spline": { + "name": "vector-spline", + "category": "Design", + "tags": ["vector", "spline", "math", "line", "curve", "geometry", "icon", "stroke", "outline"], + "version": "1.106", + "unicode": "f565" + }, + "vector-triangle-off": { + "name": "vector-triangle-off", + "category": "Design", + "tags": ["vector", "triangle", "off", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1bf" + }, + "vector-triangle": { + "name": "vector-triangle", + "category": "Design", + "tags": ["vector", "triangle", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca8" + }, + "vector": { + "name": "vector", + "category": "Design", + "tags": ["vector", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "eca9" + }, + "venus": { + "name": "venus", + "category": "Symbols", + "tags": ["venus", "female", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec86" + }, + "versions-filled": { + "name": "versions-filled", + "category": "Filled", + "tags": ["versions", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b1" + }, + "versions-off": { + "name": "versions-off", + "category": "", + "tags": ["versions", "off", "app", "variation", "different", "variant", "alternative", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c0" + }, + "versions": { + "name": "versions", + "category": "", + "tags": ["versions", "app", "variation", "different", "variant", "alternative", "icon", "stroke", "outline"], + "version": "1.29", + "unicode": "ed52" + }, + "video-minus": { + "name": "video-minus", + "category": "Media", + "tags": ["video", "minus", "film", "shoot", "recording", "taping", "camera", "remotion", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed1f" + }, + "video-off": { + "name": "video-off", + "category": "Media", + "tags": ["video", "off", "film", "shoot", "recording", "taping", "camera", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed20" + }, + "video-plus": { + "name": "video-plus", + "category": "Media", + "tags": ["video", "plus", "film", "shoot", "recording", "taping", "camera", "closeup", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed21" + }, + "video": { + "name": "video", + "category": "Media", + "tags": ["video", "film", "shoot", "recording", "taping", "camera", "icon", "stroke", "outline"], + "version": "1.25", + "unicode": "ed22" + }, + "view-360-off": { + "name": "view-360-off", + "category": "", + "tags": ["view", "360", "off", "panoramic", "degrees", "image", "around", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c1" + }, + "view-360": { + "name": "view-360", + "category": "", + "tags": ["view", "360", "panoramic", "degrees", "image", "around", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed84" + }, + "viewfinder-off": { + "name": "viewfinder-off", + "category": "Map", + "tags": ["viewfinder", "off", "target", "aim", "focus", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c2" + }, + "viewfinder": { + "name": "viewfinder", + "category": "Map", + "tags": ["viewfinder", "target", "aim", "focus", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4e" + }, + "viewport-narrow": { + "name": "viewport-narrow", + "category": "Devices", + "tags": ["viewport", "narrow", "data", "account", "excel", "tight", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebf3" + }, + "viewport-wide": { + "name": "viewport-wide", + "category": "Devices", + "tags": ["viewport", "wide", "data", "account", "broad", "excel", "icon", "stroke", "outline"], + "version": "1.7", + "unicode": "ebf4" + }, + "vinyl": { + "name": "vinyl", + "category": "Devices", + "tags": ["vinyl", "music", "audio", "dj", "sound", "retro", "musical", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f00d" + }, + "vip-off": { + "name": "vip-off", + "category": "", + "tags": ["vip", "off", "premium", "exclusive", "staff", "expensive", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43a" + }, + "vip": { + "name": "vip", + "category": "", + "tags": ["vip", "premium", "exclusive", "staff", "expensive", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3b3" + }, + "virus-off": { + "name": "virus-off", + "category": "Health", + "tags": ["virus", "off", "infection", "illness", "cell", "infectious", "health", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed66" + }, + "virus-search": { + "name": "virus-search", + "category": "Health", + "tags": ["virus", "search", "covid", "coronavirus", "biology", "infection", "infected", "cell", "viral", "infectious", "disease", "icon", "stroke", "outline"], + "version": "1.31", + "unicode": "ed67" + }, + "virus": { + "name": "virus", + "category": "Health", + "tags": ["virus", "infection", "illness", "cell", "infectious", "health", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb74" + }, + "vocabulary-off": { + "name": "vocabulary-off", + "category": "Text", + "tags": ["vocabulary", "off", "language", "traffic", "text", "book", "study", "dictionary", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43b" + }, + "vocabulary": { + "name": "vocabulary", + "category": "Text", + "tags": ["vocabulary", "language", "traffic", "text", "book", "study", "dictionary", "icon", "stroke", "outline"], + "version": "1.40", + "unicode": "ef1e" + }, + "volume-2": { + "name": "volume-2", + "category": "Media", + "tags": ["volume", "2", "music", "sound", "speaker", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb4f" + }, + "volume-3": { + "name": "volume-3", + "category": "Media", + "tags": ["volume", "3", "mute", "music", "sound", "false", "speaker", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb50" + }, + "volume-off": { + "name": "volume-off", + "category": "Media", + "tags": ["volume", "off", "music", "sound", "speaker", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c3" + }, + "volume": { + "name": "volume", + "category": "Media", + "tags": ["volume", "music", "sound", "speaker", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb51" + }, + "walk": { + "name": "walk", + "category": "Sport", + "tags": ["walk", "ambulation", "dislocating", "movement", "motion", "destination", "icon", "stroke", "outline"], + "version": "1.14", + "unicode": "ec87" + }, + "wall-off": { + "name": "wall-off", + "category": "", + "tags": ["wall", "off", "brick", "security", "firewall", "building", "renovation", "consturction", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43c" + }, + "wall": { + "name": "wall", + "category": "", + "tags": ["wall", "brick", "security", "firewall", "building", "renovation", "consturction", "icon", "stroke", "outline"], + "version": "1.45", + "unicode": "ef7a" + }, + "wallet-off": { + "name": "wallet-off", + "category": "", + "tags": ["wallet", "off", "money", "pay", "banknote", "coin", "payment", "bank", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c4" + }, + "wallet": { + "name": "wallet", + "category": "", + "tags": ["wallet", "money", "pay", "banknote", "coin", "payment", "bank", "icon", "stroke", "outline"], + "version": "1.2", + "unicode": "eb75" + }, + "wallpaper-off": { + "name": "wallpaper-off", + "category": "", + "tags": ["wallpaper", "off", "picture", "image", "photo", "decoration", "house", "room", "decor", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c5" + }, + "wallpaper": { + "name": "wallpaper", + "category": "", + "tags": ["wallpaper", "picture", "image", "photo", "decoration", "house", "room", "decor", "icon", "stroke", "outline"], + "version": "1.43", + "unicode": "ef56" + }, + "wand-off": { + "name": "wand-off", + "category": "", + "tags": ["wand", "off", "magic", "tool", "color", "pixel", "design", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c6" + }, + "wand": { + "name": "wand", + "category": "", + "tags": ["wand", "magic", "tool", "color", "pixel", "design", "icon", "stroke", "outline"], + "version": "1.5", + "unicode": "ebcb" + }, + "wash-dry-1": { + "name": "wash-dry-1", + "category": "Laundry", + "tags": ["wash", "dry", "1", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2fa" + }, + "wash-dry-2": { + "name": "wash-dry-2", + "category": "Laundry", + "tags": ["wash", "dry", "2", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2fb" + }, + "wash-dry-3": { + "name": "wash-dry-3", + "category": "Laundry", + "tags": ["wash", "dry", "3", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2fc" + }, + "wash-dry-a": { + "name": "wash-dry-a", + "category": "Laundry", + "tags": ["wash", "dry", "a", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2fd" + }, + "wash-dry-dip": { + "name": "wash-dry-dip", + "category": "Laundry", + "tags": ["wash", "dry", "dip", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2fe" + }, + "wash-dry-f": { + "name": "wash-dry-f", + "category": "Laundry", + "tags": ["wash", "dry", "f", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f2ff" + }, + "wash-dry-hang": { + "name": "wash-dry-hang", + "category": "Laundry", + "tags": ["wash", "dry", "hang", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f300" + }, + "wash-dry-off": { + "name": "wash-dry-off", + "category": "Laundry", + "tags": ["wash", "dry", "off", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f301" + }, + "wash-dry-p": { + "name": "wash-dry-p", + "category": "Laundry", + "tags": ["wash", "dry", "p", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f302" + }, + "wash-dry-shade": { + "name": "wash-dry-shade", + "category": "Laundry", + "tags": ["wash", "dry", "shade", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f303" + }, + "wash-dry-w": { + "name": "wash-dry-w", + "category": "Laundry", + "tags": ["wash", "dry", "w", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f322" + }, + "wash-dry": { + "name": "wash-dry", + "category": "Laundry", + "tags": ["wash", "dry", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f304" + }, + "wash-dryclean-off": { + "name": "wash-dryclean-off", + "category": "Laundry", + "tags": ["wash", "dryclean", "off", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.85", + "unicode": "f323" + }, + "wash-dryclean": { + "name": "wash-dryclean", + "category": "Laundry", + "tags": ["wash", "dryclean", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f305" + }, + "wash-gentle": { + "name": "wash-gentle", + "category": "Laundry", + "tags": ["wash", "gentle", "laundry", "clean", "clear", "clothes", "machine", "delicate", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f306" + }, + "wash-machine": { + "name": "wash-machine", + "category": "Devices", + "tags": ["wash", "machine", "bathroom", "clean", "cleaning", "laundry", "machine", "clothes", "icon", "stroke", "outline"], + "version": "1.75", + "unicode": "f25e" + }, + "wash-off": { + "name": "wash-off", + "category": "Laundry", + "tags": ["wash", "off", "clean", "cleaning", "hygiene", "laundry", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f307" + }, + "wash-press": { + "name": "wash-press", + "category": "Laundry", + "tags": ["wash", "press", "laundry", "clean", "clear", "clothes", "machine", "permanent", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f308" + }, + "wash-temperature-1": { + "name": "wash-temperature-1", + "category": "Laundry", + "tags": ["wash", "temperature", "1", "laundry", "clean", "clear", "clothes", "low", "cold", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f309" + }, + "wash-temperature-2": { + "name": "wash-temperature-2", + "category": "Laundry", + "tags": ["wash", "temperature", "2", "laundry", "clean", "clear", "clothes", "low", "cold", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30a" + }, + "wash-temperature-3": { + "name": "wash-temperature-3", + "category": "Laundry", + "tags": ["wash", "temperature", "3", "laundry", "clean", "clear", "clothes", "medium", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30b" + }, + "wash-temperature-4": { + "name": "wash-temperature-4", + "category": "Laundry", + "tags": ["wash", "temperature", "4", "laundry", "clean", "clear", "clothes", "high", "hot", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30c" + }, + "wash-temperature-5": { + "name": "wash-temperature-5", + "category": "Laundry", + "tags": ["wash", "temperature", "5", "laundry", "clean", "clear", "clothes", "high", "hot", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30d" + }, + "wash-temperature-6": { + "name": "wash-temperature-6", + "category": "Laundry", + "tags": ["wash", "temperature", "6", "laundry", "clean", "clear", "clothes", "high", "hot", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30e" + }, + "wash-tumble-dry": { + "name": "wash-tumble-dry", + "category": "Laundry", + "tags": ["wash", "tumble", "dry", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f30f" + }, + "wash-tumble-off": { + "name": "wash-tumble-off", + "category": "Laundry", + "tags": ["wash", "tumble", "off", "laundry", "clean", "clear", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f310" + }, + "wash": { + "name": "wash", + "category": "Laundry", + "tags": ["wash", "clean", "cleaning", "hygiene", "laundry", "clothes", "icon", "stroke", "outline"], + "version": "1.84", + "unicode": "f311" + }, + "wave-saw-tool": { + "name": "wave-saw-tool", + "category": "", + "tags": ["wave", "saw", "tool", "pulse", "signal", "ratio", "rate", "volume", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecd3" + }, + "wave-sine": { + "name": "wave-sine", + "category": "", + "tags": ["wave", "sine", "pulse", "signal", "ratio", "rate", "volume", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecd4" + }, + "wave-square": { + "name": "wave-square", + "category": "", + "tags": ["wave", "square", "pulse", "signal", "ratio", "rate", "volume", "icon", "stroke", "outline"], + "version": "1.19", + "unicode": "ecd5" + }, + "webhook-off": { + "name": "webhook-off", + "category": "", + "tags": ["webhook", "off", "communication", "interaction", "comunity", "browser", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43d" + }, + "webhook": { + "name": "webhook", + "category": "", + "tags": ["webhook", "communication", "interaction", "comunity", "browser", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01e" + }, + "weight": { + "name": "weight", + "category": "", + "tags": ["weight", "gym", "fitness", "balance", "exercise", "sport", "icon", "stroke", "outline"], + "version": "1.108", + "unicode": "f589" + }, + "wheelchair-off": { + "name": "wheelchair-off", + "category": "Vehicles", + "tags": ["wheelchair", "off", "disabled", "disability", "patient", "medical", "handicapped", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43e" + }, + "wheelchair": { + "name": "wheelchair", + "category": "Vehicles", + "tags": ["wheelchair", "disabled", "disability", "patient", "medical", "handicapped", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1db" + }, + "whirl": { + "name": "whirl", + "category": "", + "tags": ["whirl", "cosmos", "galaxy", "space", "spin", "spiral", "hypnosis", "icon", "stroke", "outline"], + "version": "1.102", + "unicode": "f51d" + }, + "wifi-0": { + "name": "wifi-0", + "category": "Devices", + "tags": ["wifi", "0", "online", "connection", "signal", "wireless", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eba3" + }, + "wifi-1": { + "name": "wifi-1", + "category": "Devices", + "tags": ["wifi", "1", "online", "connection", "signal", "wireless", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eba4" + }, + "wifi-2": { + "name": "wifi-2", + "category": "Devices", + "tags": ["wifi", "2", "online", "connection", "signal", "wireless", "icon", "stroke", "outline"], + "version": "1.3", + "unicode": "eba5" + }, + "wifi-off": { + "name": "wifi-off", + "category": "Devices", + "tags": ["wifi", "off", "online", "connection", "signal", "wireless", "icon", "stroke", "outline"], + "version": "1.22", + "unicode": "ecfa" + }, + "wifi": { + "name": "wifi", + "category": "Devices", + "tags": ["wifi", "online", "connection", "signal", "wireless", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb52" + }, + "wind-off": { + "name": "wind-off", + "category": "Weather", + "tags": ["wind", "off", "weather", "breeze", "tornado", "typhoon", "cyclone", "hurricane", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c7" + }, + "wind": { + "name": "wind", + "category": "Weather", + "tags": ["wind", "weather", "breeze", "tornado", "typhoon", "cyclone", "hurricane", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec34" + }, + "windmill-filled": { + "name": "windmill-filled", + "category": "Filled", + "tags": ["windmill", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b2" + }, + "windmill-off": { + "name": "windmill-off", + "category": "", + "tags": ["windmill", "off", "generate", "power", "blade", "energy", "electricity", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c8" + }, + "windmill": { + "name": "windmill", + "category": "", + "tags": ["windmill", "generate", "power", "blade", "energy", "electricity", "icon", "stroke", "outline"], + "version": "1.33", + "unicode": "ed85" + }, + "window-maximize": { + "name": "window-maximize", + "category": "System", + "tags": ["window", "maximize", "fullscreen", "browser", "size", "full", "resize", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1f1" + }, + "window-minimize": { + "name": "window-minimize", + "category": "System", + "tags": ["window", "minimize", "screen", "browser", "size", "resize", "minimum", "icon", "stroke", "outline"], + "version": "1.69", + "unicode": "f1f2" + }, + "window-off": { + "name": "window-off", + "category": "", + "tags": ["window", "off", "house", "view", "glass", "apartment", "vehicle", "light", "frame", "home", "building", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1c9" + }, + "window": { + "name": "window", + "category": "", + "tags": ["window", "house", "view", "glass", "apartment", "vehicle", "light", "frame", "home", "building", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef06" + }, + "windsock": { + "name": "windsock", + "category": "", + "tags": ["windsock", "weather", "meteorology", "windy", "storm", "wind", "icon", "stroke", "outline"], + "version": "1.58", + "unicode": "f06d" + }, + "wiper-wash": { + "name": "wiper-wash", + "category": "Vehicles", + "tags": ["wiper", "wash", "car", "pane", "vehicle", "sprinkler", "scour", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecaa" + }, + "wiper": { + "name": "wiper", + "category": "Vehicles", + "tags": ["wiper", "car", "pane", "vehicle", "sprinkler", "scour", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecab" + }, + "woman": { + "name": "woman", + "category": "", + "tags": ["woman", "girl", "female", "gender", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb53" + }, + "wood": { + "name": "wood", + "category": "", + "tags": ["wood", "tree", "forest", "natural", "timber", "log", "icon", "stroke", "outline"], + "version": "1.88", + "unicode": "f359" + }, + "world-download": { + "name": "world-download", + "category": "Map", + "tags": ["world", "download", "global", "down", "globe", "arrow", "earth", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef8a" + }, + "world-latitude": { + "name": "world-latitude", + "category": "Map", + "tags": ["world", "latitude", "earth", "globe", "global", "language", "union", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2e" + }, + "world-longitude": { + "name": "world-longitude", + "category": "Map", + "tags": ["world", "longitude", "earth", "globe", "global", "language", "union", "icon", "stroke", "outline"], + "version": "1.26", + "unicode": "ed2f" + }, + "world-off": { + "name": "world-off", + "category": "Map", + "tags": ["world", "off", "earth", "globe", "global", "language", "union", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1ca" + }, + "world-upload": { + "name": "world-upload", + "category": "Map", + "tags": ["world", "upload", "earth", "global", "up", "globe", "arrow", "internet", "icon", "stroke", "outline"], + "version": "1.46", + "unicode": "ef8b" + }, + "world-www": { + "name": "world-www", + "category": "Map", + "tags": ["world", "www", "internet", "online", "web", "website", "browser", "icon", "stroke", "outline"], + "version": "1.91", + "unicode": "f38f" + }, + "world": { + "name": "world", + "category": "Map", + "tags": ["world", "earth", "globe", "global", "language", "union", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb54" + }, + "wrecking-ball": { + "name": "wrecking-ball", + "category": "Vehicles", + "tags": ["wrecking", "ball", "demolish", "building", "wrecker", "metal", "swing", "knock", "down", "icon", "stroke", "outline"], + "version": "1.34", + "unicode": "ed97" + }, + "writing-off": { + "name": "writing-off", + "category": "Text", + "tags": ["writing", "off", "name", "certficate", "sign", "edit", "write", "document", "pen", "drawing", "contract", "signature", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1cb" + }, + "writing-sign-off": { + "name": "writing-sign-off", + "category": "Text", + "tags": ["writing", "sign", "off", "name", "certficate", "sign", "edit", "write", "document", "writing", "pen", "icon", "stroke", "outline"], + "version": "1.67", + "unicode": "f1cc" + }, + "writing-sign": { + "name": "writing-sign", + "category": "Text", + "tags": ["writing", "sign", "name", "certficate", "sign", "edit", "write", "document", "writing", "pen", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef07" + }, + "writing": { + "name": "writing", + "category": "Text", + "tags": ["writing", "name", "certficate", "sign", "edit", "write", "document", "pen", "drawing", "contract", "signature", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef08" + }, + "x": { + "name": "x", + "category": "", + "tags": ["x", "cancel", "remove", "delete", "empty", "close", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb55" + }, + "xbox-a": { + "name": "xbox-a", + "category": "Devices", + "tags": ["xbox", "a", "controller", "joystick", "button", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b6" + }, + "xbox-b": { + "name": "xbox-b", + "category": "Devices", + "tags": ["xbox", "b", "controller", "joystick", "button", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b7" + }, + "xbox-x": { + "name": "xbox-x", + "category": "Devices", + "tags": ["xbox", "x", "controller", "joystick", "button", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b8" + }, + "xbox-y": { + "name": "xbox-y", + "category": "Devices", + "tags": ["xbox", "y", "controller", "joystick", "button", "icon", "stroke", "outline"], + "version": "1.80", + "unicode": "f2b9" + }, + "yin-yang": { + "name": "yin-yang", + "category": "Symbols", + "tags": ["yin", "yang", "equality", "good", "evil", "balance", "peace", "icon", "stroke", "outline"], + "version": "1.10", + "unicode": "ec35" + }, + "yoga": { + "name": "yoga", + "category": "Sport", + "tags": ["yoga", "pose", "sport", "meditation", "fitness", "icon", "stroke", "outline"], + "version": "1.54", + "unicode": "f01f" + }, + "zeppelin-off": { + "name": "zeppelin-off", + "category": "Vehicles", + "tags": ["zeppelin", "off", "airship", "transport", "ballon", "flying", "travel", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f43f" + }, + "zeppelin": { + "name": "zeppelin", + "category": "Vehicles", + "tags": ["zeppelin", "airship", "transport", "ballon", "flying", "travel", "icon", "stroke", "outline"], + "version": "1.76", + "unicode": "f270" + }, + "zip": { + "name": "zip", + "category": "", + "tags": ["zip", "file", "document", "folder", "compress", "archive", "icon", "stroke", "outline"], + "version": "1.93", + "unicode": "f3b4" + }, + "zodiac-aquarius": { + "name": "zodiac-aquarius", + "category": "Zodiac", + "tags": ["zodiac", "aquarius", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecac" + }, + "zodiac-aries": { + "name": "zodiac-aries", + "category": "Zodiac", + "tags": ["zodiac", "aries", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecad" + }, + "zodiac-cancer": { + "name": "zodiac-cancer", + "category": "Zodiac", + "tags": ["zodiac", "cancer", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecae" + }, + "zodiac-capricorn": { + "name": "zodiac-capricorn", + "category": "Zodiac", + "tags": ["zodiac", "capricorn", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecaf" + }, + "zodiac-gemini": { + "name": "zodiac-gemini", + "category": "Zodiac", + "tags": ["zodiac", "gemini", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb0" + }, + "zodiac-leo": { + "name": "zodiac-leo", + "category": "Zodiac", + "tags": ["zodiac", "leo", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb1" + }, + "zodiac-libra": { + "name": "zodiac-libra", + "category": "Zodiac", + "tags": ["zodiac", "libra", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb2" + }, + "zodiac-pisces": { + "name": "zodiac-pisces", + "category": "Zodiac", + "tags": ["zodiac", "pisces", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb3" + }, + "zodiac-sagittarius": { + "name": "zodiac-sagittarius", + "category": "Zodiac", + "tags": ["zodiac", "sagittarius", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb4" + }, + "zodiac-scorpio": { + "name": "zodiac-scorpio", + "category": "Zodiac", + "tags": ["zodiac", "scorpio", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb5" + }, + "zodiac-taurus": { + "name": "zodiac-taurus", + "category": "Zodiac", + "tags": ["zodiac", "taurus", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb6" + }, + "zodiac-virgo": { + "name": "zodiac-virgo", + "category": "Zodiac", + "tags": ["zodiac", "virgo", "sign", "horoscope", "constellation", "stars", "icon", "stroke", "outline"], + "version": "1.17", + "unicode": "ecb7" + }, + "zoom-cancel": { + "name": "zoom-cancel", + "category": "Map", + "tags": ["zoom", "cancel", "magnifying glass", "icon", "stroke", "outline"], + "version": "1.11", + "unicode": "ec4d" + }, + "zoom-check": { + "name": "zoom-check", + "category": "Map", + "tags": ["zoom", "check", "verify", "magnifying", "glass", "magnifier", "ok", "done", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef09" + }, + "zoom-code": { + "name": "zoom-code", + "category": "Map", + "tags": ["zoom", "code", "inspect", "marketing", "search", "markup", "coding", "magnifier", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f07f" + }, + "zoom-exclamation": { + "name": "zoom-exclamation", + "category": "Map", + "tags": ["zoom", "exclamation", "alert", "caution", "error", "search", "warning", "icon", "stroke", "outline"], + "version": "1.59", + "unicode": "f080" + }, + "zoom-in-area": { + "name": "zoom-in-area", + "category": "Map", + "tags": ["zoom", "in", "area", "selected", "square", "magnifier", "enlargement", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1dc" + }, + "zoom-in": { + "name": "zoom-in", + "category": "Map", + "tags": ["zoom", "in", "magnifying glass", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb56" + }, + "zoom-money": { + "name": "zoom-money", + "category": "Map", + "tags": ["zoom", "money", "magnifying", "glass", "magnifier", "earn", "pay", "sum", "total", "finance", "financial", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ef0a" + }, + "zoom-out-area": { + "name": "zoom-out-area", + "category": "Map", + "tags": ["zoom", "out", "area", "selected", "square", "magnifier", "diminishing", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1dd" + }, + "zoom-out": { + "name": "zoom-out", + "category": "Map", + "tags": ["zoom", "out", "magnifying glass", "icon", "stroke", "outline"], + "version": "1.0", + "unicode": "eb57" + }, + "zoom-pan": { + "name": "zoom-pan", + "category": "Map", + "tags": ["zoom", "pan", "enlargement", "shifting", "magnifier", "icon", "stroke", "outline"], + "version": "1.68", + "unicode": "f1de" + }, + "zoom-question": { + "name": "zoom-question", + "category": "Map", + "tags": ["zoom", "question", "ask", "help", "support", "cue", "?", "icon", "stroke", "outline"], + "version": "1.37", + "unicode": "edeb" + }, + "zoom-replace": { + "name": "zoom-replace", + "category": "Map", + "tags": ["zoom", "replace", "find", "change", "switch", "swap", "icon", "stroke", "outline"], + "version": "1.79", + "unicode": "f2a7" + }, + "zoom-reset": { + "name": "zoom-reset", + "category": "Map", + "tags": ["zoom", "reset", "refresh", "default", "settings", "vision", "icon", "stroke", "outline"], + "version": "1.78", + "unicode": "f295" + }, + "zzz-off": { + "name": "zzz-off", + "category": "", + "tags": ["zzz", "off", "sleep", "sleeping", "bed", "dream", "snooze", "rest", "icon", "stroke", "outline"], + "version": "1.94", + "unicode": "f440" + }, + "zzz": { + "name": "zzz", + "category": "", + "tags": ["zzz", "sleep", "sleeping", "bed", "dream", "snooze", "rest", "icon", "stroke", "outline"], + "version": "1.72", + "unicode": "f228" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 000000000..805f3ab77 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,18526 @@ +lockfileVersion: 5.4 + +importers: + + .: + specifiers: + '@babel/cli': ^7.20.7 + '@babel/core': 7.11.6 + '@babel/parser': 7.11.5 + '@babel/plugin-transform-runtime': ^7.19.6 + '@babel/preset-env': 7.11.5 + '@babel/preset-react': 7.10.4 + '@release-it-plugins/workspaces': ^3.2.0 + '@rollup/plugin-babel': 5.2.1 + '@rollup/plugin-commonjs': 15.1.0 + '@rollup/plugin-node-resolve': 9.0.0 + '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 + '@svgr/core': 5.4.0 + '@vue/babel-plugin-jsx': ^1.1.1 + adm-zip: ^0.5.10 + cheerio: ^1.0.0-rc.12 + clean-css: 4.2.3 + csv-parser: ^3.0.0 + fs-extra: ^10.1.0 + glob: 7.1.6 + gulp: 4.0.2 + gulp-iconfont: 11.0.1 + gulp-svgo: ^2.2.1 + gulp-zip: 5.1.0 + html-minifier: ^4.0.0 + lerna: ^6.4.0 + lodash.template: 4.5.0 + minimist: 1.2.6 + node-sass: 8.0.0 + parse-svg-path: ^0.1.2 + prettier: ^2.8.1 + release-it: 15.6.0 + rollup: 2.78.1 + rollup-plugin-esbuild: ^4.10.2 + rollup-plugin-filesize: 9.1.2 + rollup-plugin-license: ^3.0.1 + rollup-plugin-peer-deps-external: 2.2.4 + rollup-plugin-rename: ^1.0.1 + rollup-plugin-svelte: ^7.1.0 + rollup-plugin-terser: 7.0.2 + rollup-plugin-visualizer: ^5.8.3 + svg-outline-stroke: 1.3.1 + svgo: ^2.8.0 + svgpath: ^2.6.0 + svgson: ^5.2.1 + devDependencies: + '@babel/cli': 7.20.7_@babel+core@7.11.6 + '@babel/core': 7.11.6 + '@babel/parser': 7.11.5 + '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.11.6 + '@babel/preset-env': 7.11.5_@babel+core@7.11.6 + '@babel/preset-react': 7.10.4_@babel+core@7.11.6 + '@release-it-plugins/workspaces': 3.2.0_release-it@15.6.0 + '@rollup/plugin-babel': 5.2.1_b644q46buv54od2vqg3a6ywbxm + '@rollup/plugin-commonjs': 15.1.0_rollup@2.78.1 + '@rollup/plugin-node-resolve': 9.0.0_rollup@2.78.1 + '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 + '@svgr/core': 5.4.0 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.11.6 + adm-zip: 0.5.10 + cheerio: 1.0.0-rc.12 + clean-css: 4.2.3 + csv-parser: 3.0.0 + fs-extra: 10.1.0 + glob: 7.1.6 + gulp: 4.0.2 + gulp-iconfont: 11.0.1 + gulp-svgo: 2.2.1 + gulp-zip: 5.1.0_gulp@4.0.2 + html-minifier: 4.0.0 + lerna: 6.4.0 + lodash.template: 4.5.0 + minimist: 1.2.6 + node-sass: 8.0.0 + parse-svg-path: 0.1.2 + prettier: 2.8.1 + release-it: 15.6.0 + rollup: 2.78.1 + rollup-plugin-esbuild: 4.10.3_rollup@2.78.1 + rollup-plugin-filesize: 9.1.2 + rollup-plugin-license: 3.0.1_rollup@2.78.1 + rollup-plugin-peer-deps-external: 2.2.4_rollup@2.78.1 + rollup-plugin-rename: 1.0.1_rollup@2.78.1 + rollup-plugin-svelte: 7.1.0_rollup@2.78.1 + rollup-plugin-terser: 7.0.2_rollup@2.78.1 + rollup-plugin-visualizer: 5.9.0_rollup@2.78.1 + svg-outline-stroke: 1.3.1 + svgo: 2.8.0 + svgpath: 2.6.0 + svgson: 5.2.1 + + packages/icons: + specifiers: {} + + packages/icons-eps: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-pdf: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-png: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-preact: + specifiers: + '@preact/preset-vite': ^2.5.0 + '@tabler/icons': 2.0.0-beta.2 + '@testing-library/jest-dom': ^5.16.5 + '@testing-library/preact': ^3.2.2 + babel-preset-preact: ^2.0.0 + jest: ^29.3.1 + preact: ^10.11.3 + vitest: ^0.26.3 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + '@preact/preset-vite': 2.5.0_preact@10.11.3 + '@testing-library/jest-dom': 5.16.5 + '@testing-library/preact': 3.2.2_preact@10.11.3 + babel-preset-preact: 2.0.0 + jest: 29.3.1 + preact: 10.11.3 + vitest: 0.26.3 + + packages/icons-react: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + '@testing-library/react': ^11.2.6 + babel-preset-react-app: ^10.0.0 + jest: ^26.6.3 + prop-types: ^15.8.1 + react: ^17.0.2 + react-dom: ^17.0.2 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + '@testing-library/react': 11.2.7_sfoxds7t5ydpegc3knd667wn6m + babel-preset-react-app: 10.0.1 + jest: 26.6.3 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + + packages/icons-solidjs: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + babel-preset-solid: ^1.5.4 + solid-js: ^1.4.7 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + babel-preset-solid: 1.6.6 + solid-js: 1.6.6 + + packages/icons-svelte: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + '@testing-library/jest-dom': ^5.16.2 + '@testing-library/svelte': ^3.0.3 + '@tsconfig/svelte': ^3.0.0 + jest: ^28.1.3 + jsdom: ^20.0.3 + rollup-plugin-svelte: ^7.1.0 + svelte: ^3.53.1 + svelte-check: ^2.9.2 + svelte-preprocess: ^4.10.7 + svelte-strip: ^1.0.3 + typescript: ^4.9.3 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + '@testing-library/jest-dom': 5.16.5 + '@testing-library/svelte': 3.2.2_svelte@3.55.0 + '@tsconfig/svelte': 3.0.0 + jest: 28.1.3 + jsdom: 20.0.3 + rollup-plugin-svelte: 7.1.0_svelte@3.55.0 + svelte: 3.55.0 + svelte-check: 2.10.3_svelte@3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm + svelte-strip: 1.0.3_svelte@3.55.0 + typescript: 4.9.4 + + packages/icons-vue: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + '@testing-library/vue': ^6.6.1 + '@vue/compiler-sfc': ^3.2.45 + '@vue/test-utils': ^2.2.4 + vue: ^3.2.45 + vue-jest: ^5.0.0-alpha.10 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + '@testing-library/vue': 6.6.1_tfvhctuaqmmqnirfl65c47tqwu + '@vue/compiler-sfc': 3.2.45 + '@vue/test-utils': 2.2.6_vue@3.2.45 + vue: 3.2.45 + vue-jest: 5.0.0-alpha.10_vue@3.2.45 + + packages/icons-webfont: + specifiers: + '@tabler/icons': 2.0.0-beta.2 + webfont: ^11.2.26 + dependencies: + '@tabler/icons': link:../icons + devDependencies: + webfont: 11.2.26 + + test/test-preact: + specifiers: + '@babel/plugin-transform-react-jsx': ^7.20.7 + '@babel/plugin-transform-react-jsx-development': ^7.18.6 + '@preact/preset-vite': ^2.4.0 + '@tabler/icons-preact': 2.0.0-beta.2 + babel-plugin-transform-hook-names: ^1.0.2 + preact: ^10.11.3 + typescript: ^4.9.3 + vite: ^4.0.0 + dependencies: + '@tabler/icons-preact': link:../../packages/icons-preact + preact: 10.11.3 + devDependencies: + '@babel/plugin-transform-react-jsx': 7.20.7 + '@babel/plugin-transform-react-jsx-development': 7.18.6 + '@preact/preset-vite': 2.5.0_preact@10.11.3+vite@4.0.4 + babel-plugin-transform-hook-names: 1.0.2 + typescript: 4.9.4 + vite: 4.0.4 + + test/test-react: + specifiers: + '@tabler/icons-react': 2.0.0-beta.2 + '@types/react': ^18.0.26 + '@types/react-dom': ^18.0.9 + '@vitejs/plugin-react': ^3.0.0 + react: ^18.2.0 + react-dom: ^18.2.0 + typescript: ^4.9.3 + vite: ^4.0.0 + dependencies: + '@tabler/icons-react': link:../../packages/icons-react + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + devDependencies: + '@types/react': 18.0.26 + '@types/react-dom': 18.0.10 + '@vitejs/plugin-react': 3.0.1_vite@4.0.4 + typescript: 4.9.4 + vite: 4.0.4 + + test/test-svelte: + specifiers: + '@sveltejs/vite-plugin-svelte': ^2.0.0 + '@tabler/icons-svelte': 2.0.0-beta.2 + '@tsconfig/svelte': ^3.0.0 + svelte: ^3.54.0 + svelte-check: ^2.10.0 + tslib: ^2.4.1 + typescript: ^4.9.3 + vite: ^4.0.0 + dependencies: + '@tabler/icons-svelte': link:../../packages/icons-svelte + devDependencies: + '@sveltejs/vite-plugin-svelte': 2.0.2_svelte@3.55.0+vite@4.0.4 + '@tsconfig/svelte': 3.0.0 + svelte: 3.55.0 + svelte-check: 2.10.3_svelte@3.55.0 + tslib: 2.4.1 + typescript: 4.9.4 + vite: 4.0.4 + + test/test-vue: + specifiers: + '@tabler/icons-vue': 2.0.0-beta.2 + '@vitejs/plugin-vue': ^4.0.0 + typescript: ^4.9.3 + vite: ^4.0.0 + vue: ^3.2.45 + vue-tsc: ^1.0.11 + dependencies: + '@tabler/icons-vue': link:../../packages/icons-vue + vue: 3.2.45 + devDependencies: + '@vitejs/plugin-vue': 4.0.0_vite@4.0.4+vue@3.2.45 + typescript: 4.9.4 + vite: 4.0.4 + vue-tsc: 1.0.24_typescript@4.9.4 + +packages: + + /@adobe/css-tools/4.0.1: + resolution: {integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==} + dev: true + + /@ampproject/remapping/2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.17 + dev: true + + /@babel/cli/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-WylgcELHB66WwQqItxNILsMlaTd8/SO6SgTTjMp4uCI7P4QyH1r3nqgFmO3BfM4AtfniHgFMH3EpYFj/zynBkQ==} + engines: {node: '>=6.9.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@jridgewell/trace-mapping': 0.3.17 + commander: 4.1.1 + convert-source-map: 1.9.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.5.3 + dev: true + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/compat-data/7.20.10: + resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core/7.11.6: + resolution: {integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 + '@babel/parser': 7.11.5 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.1 + semver: 5.7.1 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/core/7.20.7: + resolution: {integrity: sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator/7.20.7: + resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-explode-assignable-expression': 7.18.6 + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.11.6 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: true + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.20.7 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-create-class-features-plugin/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.20.7 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.11.6: + resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.2 + dev: true + + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.7: + resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.2 + dev: true + + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.11.6: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.7: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-explode-assignable-expression/7.18.6: + resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-hoist-variables/7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-member-expression-to-functions/7.20.7: + resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-module-imports/7.16.0: + resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-module-transforms/7.20.11: + resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.20.2 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression/7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-replace-supers/7.20.7: + resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.20.7 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers/7.20.0: + resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-split-export-declaration/7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-wrap-function/7.20.5: + resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.19.0 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helpers/7.20.7: + resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.19.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.11.5: + resolution: {integrity: sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@babel/parser/7.20.7: + resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.7 + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-decorators/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-JB45hbUweYpwAGjkiM7uCyXMENH2lG+9r3G2E+ttc2PRXAoEkpfd/KW5jDg4j8RS6tLtTG1jZi9LbHZVSfs1/A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.11.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.6 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 + dev: true + + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.7: + resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.11.6: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.7: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.11.6: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.7: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.7: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.7: + resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.7: + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.7: + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.11.6: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.7: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.11.6: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.7: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.11.6: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.7: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.7: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.11.6: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.7: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.7: + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.11.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.11.6: + resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.7: + resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-classes/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.11.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/template': 7.20.7 + dev: true + + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/template': 7.20.7 + dev: true + + /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.7: + resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.7 + dev: true + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.11.6: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.7: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.11.6 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.11.6: + resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.7: + resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs/7.20.11: + resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.11.6: + resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.7: + resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.11.6: + resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.7: + resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.11.6: + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.7: + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx-development/7.18.6: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/plugin-transform-react-jsx': 7.20.7 + dev: true + + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.11.6 + dev: true + + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7 + dev: true + + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.11.6: + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.7: + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx/7.20.7: + resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6 + '@babel/types': 7.20.7 + dev: true + + /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.11.6 + '@babel/types': 7.20.7 + dev: true + + /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/types': 7.20.7 + dev: true + + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.11.6: + resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.1 + dev: true + + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.7: + resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.1 + dev: true + + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.11.6: + resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.11.6 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.11.6 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.11.6 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.7: + resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.7 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.7 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.7 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.11.6: + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: true + + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: true + + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.11.6: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.7: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.7: + resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.11.6: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.7: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.11.6: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/preset-env/7.11.5_@babel+core@7.11.6: + resolution: {integrity: sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.11.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.11.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.6 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.11.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.11.6 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.11.6 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.11.6 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.11.6 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.11.6 + '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.11.6 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.11.6 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.11.6 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.11.6 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.11.6 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.11.6 + '@babel/preset-modules': 0.1.5_@babel+core@7.11.6 + '@babel/types': 7.20.7 + browserslist: 4.21.4 + core-js-compat: 3.27.1 + invariant: 2.2.4 + levenary: 1.1.1 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-env/7.20.2_@babel+core@7.20.7: + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.7 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.7 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.7 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.7 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.7 + '@babel/types': 7.20.7 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.7 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.7 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.7 + core-js-compat: 3.27.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-modules/0.1.5_@babel+core@7.11.6: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.11.6 + '@babel/types': 7.20.7 + esutils: 2.0.3 + dev: true + + /@babel/preset-modules/0.1.5_@babel+core@7.20.7: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7 + '@babel/types': 7.20.7 + esutils: 2.0.3 + dev: true + + /@babel/preset-react/7.10.4_@babel+core@7.11.6: + resolution: {integrity: sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.11.6 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.11.6 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.11.6 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.11.6 + dev: true + + /@babel/preset-react/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.7 + dev: true + + /@babel/preset-typescript/7.18.6_@babel+core@7.20.7: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/runtime-corejs3/7.20.7: + resolution: {integrity: sha512-jr9lCZ4RbRQmCR28Q8U8Fu49zvFqLxTY9AMOUz+iyMohMoAgpEcVxY+wJNay99oXOpOcCTODkk70NDN2aaJEeg==} + engines: {node: '>=6.9.0'} + dependencies: + core-js-pure: 3.27.1 + regenerator-runtime: 0.13.11 + dev: true + + /@babel/runtime/7.20.7: + resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + dev: true + + /@babel/template/7.20.7: + resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + dev: true + + /@babel/traverse/7.20.10: + resolution: {integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.20.7: + resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + + /@bcoe/v8-coverage/0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + dev: true + + /@cnakazawa/watch/1.0.4: + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} + hasBin: true + dependencies: + exec-sh: 0.3.6 + minimist: 1.2.6 + dev: true + + /@esbuild/android-arm/0.16.14: + resolution: {integrity: sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64/0.16.14: + resolution: {integrity: sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64/0.16.14: + resolution: {integrity: sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64/0.16.14: + resolution: {integrity: sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64/0.16.14: + resolution: {integrity: sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64/0.16.14: + resolution: {integrity: sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64/0.16.14: + resolution: {integrity: sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm/0.16.14: + resolution: {integrity: sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64/0.16.14: + resolution: {integrity: sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32/0.16.14: + resolution: {integrity: sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.16.14: + resolution: {integrity: sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el/0.16.14: + resolution: {integrity: sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64/0.16.14: + resolution: {integrity: sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64/0.16.14: + resolution: {integrity: sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x/0.16.14: + resolution: {integrity: sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64/0.16.14: + resolution: {integrity: sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64/0.16.14: + resolution: {integrity: sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64/0.16.14: + resolution: {integrity: sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64/0.16.14: + resolution: {integrity: sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64/0.16.14: + resolution: {integrity: sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32/0.16.14: + resolution: {integrity: sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64/0.16.14: + resolution: {integrity: sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@gar/promisify/1.1.3: + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + dev: true + + /@hutson/parse-repository-url/3.0.2: + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + dev: true + + /@iarna/toml/2.2.5: + resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} + dev: true + + /@isaacs/string-locale-compare/1.1.0: + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + dev: true + + /@istanbuljs/load-nyc-config/1.1.0: + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + dev: true + + /@istanbuljs/schema/0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + dev: true + + /@jest/console/26.6.2: + resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + chalk: 4.1.2 + jest-message-util: 26.6.2 + jest-util: 26.6.2 + slash: 3.0.0 + dev: true + + /@jest/console/28.1.3: + resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + chalk: 4.1.2 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + dev: true + + /@jest/console/29.3.1: + resolution: {integrity: sha512-IRE6GD47KwcqA09RIWrabKdHPiKDGgtAL31xDxbi/RjQMsr+lY+ppxmHwY0dUEV3qvvxZzoe5Hl0RXZJOjQNUg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + chalk: 4.1.2 + jest-message-util: 29.3.1 + jest-util: 29.3.1 + slash: 3.0.0 + dev: true + + /@jest/core/26.6.3: + resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/console': 26.6.2 + '@jest/reporters': 26.6.2 + '@jest/test-result': 26.6.2 + '@jest/transform': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 26.6.2 + jest-config: 26.6.3 + jest-haste-map: 26.6.2 + jest-message-util: 26.6.2 + jest-regex-util: 26.0.0 + jest-resolve: 26.6.2 + jest-resolve-dependencies: 26.6.3 + jest-runner: 26.6.3 + jest-runtime: 26.6.3 + jest-snapshot: 26.6.2 + jest-util: 26.6.2 + jest-validate: 26.6.2 + jest-watcher: 26.6.2 + micromatch: 4.0.5 + p-each-series: 2.2.0 + rimraf: 3.0.2 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /@jest/core/28.1.3: + resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/console': 28.1.3 + '@jest/reporters': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.7.1 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 28.1.3 + jest-config: 28.1.3_@types+node@18.11.18 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-resolve-dependencies: 28.1.3 + jest-runner: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + jest-watcher: 28.1.3 + micromatch: 4.0.5 + pretty-format: 28.1.3 + rimraf: 3.0.2 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + + /@jest/core/29.3.1: + resolution: {integrity: sha512-0ohVjjRex985w5MmO5L3u5GR1O30DexhBSpuwx2P+9ftyqHdJXnk7IUWiP80oHMvt7ubHCJHxV0a0vlKVuZirw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/console': 29.3.1 + '@jest/reporters': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.7.1 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 29.2.0 + jest-config: 29.3.1_@types+node@18.11.18 + jest-haste-map: 29.3.1 + jest-message-util: 29.3.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.1 + jest-resolve-dependencies: 29.3.1 + jest-runner: 29.3.1 + jest-runtime: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + jest-watcher: 29.3.1 + micromatch: 4.0.5 + pretty-format: 29.3.1 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + + /@jest/environment/26.6.2: + resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/fake-timers': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + jest-mock: 26.6.2 + dev: true + + /@jest/environment/28.1.3: + resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + jest-mock: 28.1.3 + dev: true + + /@jest/environment/29.3.1: + resolution: {integrity: sha512-pMmvfOPmoa1c1QpfFW0nXYtNLpofqo4BrCIk6f2kW4JFeNlHV2t3vd+3iDLf31e2ot2Mec0uqZfmI+U0K2CFag==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/fake-timers': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + jest-mock: 29.3.1 + dev: true + + /@jest/expect-utils/28.1.3: + resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-get-type: 28.0.2 + dev: true + + /@jest/expect-utils/29.3.1: + resolution: {integrity: sha512-wlrznINZI5sMjwvUoLVk617ll/UYfGIZNxmbU+Pa7wmkL4vYzhV9R2pwVqUh4NWWuLQWkI8+8mOkxs//prKQ3g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-get-type: 29.2.0 + dev: true + + /@jest/expect/28.1.3: + resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + expect: 28.1.3 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/expect/29.3.1: + resolution: {integrity: sha512-QivM7GlSHSsIAWzgfyP8dgeExPRZ9BIe2LsdPyEhCGkZkoyA+kGsoIzbKAfZCvvRzfZioKwPtCZIt5SaoxYCvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + expect: 29.3.1 + jest-snapshot: 29.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/fake-timers/26.6.2: + resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + '@sinonjs/fake-timers': 6.0.1 + '@types/node': 18.11.18 + jest-message-util: 26.6.2 + jest-mock: 26.6.2 + jest-util: 26.6.2 + dev: true + + /@jest/fake-timers/28.1.3: + resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 18.11.18 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: true + + /@jest/fake-timers/29.3.1: + resolution: {integrity: sha512-iHTL/XpnDlFki9Tq0Q1GGuVeQ8BHZGIYsvCO5eN/O/oJaRzofG9Xndd9HuSDBI/0ZS79pg0iwn07OMTQ7ngF2A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 18.11.18 + jest-message-util: 29.3.1 + jest-mock: 29.3.1 + jest-util: 29.3.1 + dev: true + + /@jest/globals/26.6.2: + resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/environment': 26.6.2 + '@jest/types': 26.6.2 + expect: 26.6.2 + dev: true + + /@jest/globals/28.1.3: + resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/types': 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/globals/29.3.1: + resolution: {integrity: sha512-cTicd134vOcwO59OPaB6AmdHQMCtWOe+/DitpTZVxWgMJ+YvXL1HNAmPyiGbSHmF/mXVBkvlm8YYtQhyHPnV6Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.3.1 + '@jest/expect': 29.3.1 + '@jest/types': 29.3.1 + jest-mock: 29.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters/26.6.2: + resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} + engines: {node: '>= 10.14.2'} + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 26.6.2 + '@jest/test-result': 26.6.2 + '@jest/transform': 26.6.2 + '@jest/types': 26.6.2 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + jest-haste-map: 26.6.2 + jest-resolve: 26.6.2 + jest-util: 26.6.2 + jest-worker: 26.6.2 + slash: 3.0.0 + source-map: 0.6.1 + string-length: 4.0.2 + terminal-link: 2.1.1 + v8-to-istanbul: 7.1.2 + optionalDependencies: + node-notifier: 8.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters/28.1.3: + resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 18.11.18 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + jest-worker: 28.1.3 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + terminal-link: 2.1.1 + v8-to-istanbul: 9.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters/29.3.1: + resolution: {integrity: sha512-GhBu3YFuDrcAYW/UESz1JphEAbvUjaY2vShRZRoRY1mxpCMB3yGSJ4j9n0GxVlEOdCf7qjvUfBCrTUUqhVfbRA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 18.11.18 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + jest-message-util: 29.3.1 + jest-util: 29.3.1 + jest-worker: 29.3.1 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/schemas/28.1.3: + resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@sinclair/typebox': 0.24.51 + dev: true + + /@jest/schemas/29.0.0: + resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.24.51 + dev: true + + /@jest/source-map/26.6.2: + resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} + engines: {node: '>= 10.14.2'} + dependencies: + callsites: 3.1.0 + graceful-fs: 4.2.10 + source-map: 0.6.1 + dev: true + + /@jest/source-map/28.1.2: + resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.10 + dev: true + + /@jest/source-map/29.2.0: + resolution: {integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.10 + dev: true + + /@jest/test-result/26.6.2: + resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/console': 26.6.2 + '@jest/types': 26.6.2 + '@types/istanbul-lib-coverage': 2.0.4 + collect-v8-coverage: 1.0.1 + dev: true + + /@jest/test-result/28.1.3: + resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + collect-v8-coverage: 1.0.1 + dev: true + + /@jest/test-result/29.3.1: + resolution: {integrity: sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.3.1 + '@jest/types': 29.3.1 + '@types/istanbul-lib-coverage': 2.0.4 + collect-v8-coverage: 1.0.1 + dev: true + + /@jest/test-sequencer/26.6.3: + resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/test-result': 26.6.2 + graceful-fs: 4.2.10 + jest-haste-map: 26.6.2 + jest-runner: 26.6.3 + jest-runtime: 26.6.3 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /@jest/test-sequencer/28.1.3: + resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/test-result': 28.1.3 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + slash: 3.0.0 + dev: true + + /@jest/test-sequencer/29.3.1: + resolution: {integrity: sha512-IqYvLbieTv20ArgKoAMyhLHNrVHJfzO6ARZAbQRlY4UGWfdDnLlZEF0BvKOMd77uIiIjSZRwq3Jb3Fa3I8+2UA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/test-result': 29.3.1 + graceful-fs: 4.2.10 + jest-haste-map: 29.3.1 + slash: 3.0.0 + dev: true + + /@jest/transform/26.6.2: + resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@babel/core': 7.20.7 + '@jest/types': 26.6.2 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.10 + jest-haste-map: 26.6.2 + jest-regex-util: 26.0.0 + jest-util: 26.6.2 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/transform/28.1.3: + resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/core': 7.20.7 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.17 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/transform/29.3.1: + resolution: {integrity: sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/core': 7.20.7 + '@jest/types': 29.3.1 + '@jridgewell/trace-mapping': 0.3.17 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.10 + jest-haste-map: 29.3.1 + jest-regex-util: 29.2.0 + jest-util: 29.3.1 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/types/26.6.2: + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 18.11.18 + '@types/yargs': 15.0.14 + chalk: 4.1.2 + dev: true + + /@jest/types/28.1.3: + resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 18.11.18 + '@types/yargs': 17.0.18 + chalk: 4.1.2 + dev: true + + /@jest/types/29.3.1: + resolution: {integrity: sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.0.0 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 18.11.18 + '@types/yargs': 17.0.18 + chalk: 4.1.2 + dev: true + + /@jimp/bmp/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + bmp-js: 0.1.0 + dev: true + + /@jimp/core/0.14.0: + resolution: {integrity: sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w==} + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/utils': 0.14.0 + any-base: 1.1.0 + buffer: 5.7.1 + exif-parser: 0.1.12 + file-type: 9.0.0 + load-bmfont: 1.4.1 + mkdirp: 0.5.6 + phin: 2.9.3 + pixelmatch: 4.0.2 + tinycolor2: 1.5.2 + dev: true + + /@jimp/custom/0.14.0: + resolution: {integrity: sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA==} + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/core': 0.14.0 + dev: true + + /@jimp/gif/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + gifwrap: 0.9.4 + omggif: 1.0.10 + dev: true + + /@jimp/jpeg/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + jpeg-js: 0.4.4 + dev: true + + /@jimp/plugin-blit/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-blur/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-circle/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-color/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + tinycolor2: 1.5.2 + dev: true + + /@jimp/plugin-contain/0.14.0_atzow7c7z3rxphgj3ycbcfc7du: + resolution: {integrity: sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-scale': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-blit': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-scale': 0.14.0_dnjajzlrw7tj7gkph5zzcsobsa + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-cover/0.14.0_cmwkwndotcukelhzzy7qfggfhq: + resolution: {integrity: sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-crop': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-scale': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-crop': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-scale': 0.14.0_dnjajzlrw7tj7gkph5zzcsobsa + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-crop/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-displace/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-dither/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-fisheye/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-flip/0.14.0_egz5qy63qcuglqunvauxsismu4: + resolution: {integrity: sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-rotate': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-rotate': 0.14.0_nitfkm2iiqsjd5dqctkqjdhryu + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-gaussian/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-invert/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-mask/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-normalize/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-print/0.14.0_lhhsyseurtfetoblh726nyhfha: + resolution: {integrity: sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-blit': 0.14.0_@jimp+custom@0.14.0 + '@jimp/utils': 0.14.0 + load-bmfont: 1.4.1 + dev: true + + /@jimp/plugin-resize/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-rotate/0.14.0_nitfkm2iiqsjd5dqctkqjdhryu: + resolution: {integrity: sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + '@jimp/plugin-crop': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-blit': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-crop': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-scale/0.14.0_dnjajzlrw7tj7gkph5zzcsobsa: + resolution: {integrity: sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-shadow/0.14.0_jhz7k2d2s3ip6ssk34veacb4wy: + resolution: {integrity: sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blur': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-blur': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugin-threshold/0.14.0_yvpuowyu3hipklrsdaf6scfd4u: + resolution: {integrity: sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-color': '>=0.8.0' + '@jimp/plugin-resize': '>=0.8.0' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-color': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/utils': 0.14.0 + dev: true + + /@jimp/plugins/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugin-blit': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-blur': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-circle': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-color': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-contain': 0.14.0_atzow7c7z3rxphgj3ycbcfc7du + '@jimp/plugin-cover': 0.14.0_cmwkwndotcukelhzzy7qfggfhq + '@jimp/plugin-crop': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-displace': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-dither': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-fisheye': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-flip': 0.14.0_egz5qy63qcuglqunvauxsismu4 + '@jimp/plugin-gaussian': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-invert': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-mask': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-normalize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-print': 0.14.0_lhhsyseurtfetoblh726nyhfha + '@jimp/plugin-resize': 0.14.0_@jimp+custom@0.14.0 + '@jimp/plugin-rotate': 0.14.0_nitfkm2iiqsjd5dqctkqjdhryu + '@jimp/plugin-scale': 0.14.0_dnjajzlrw7tj7gkph5zzcsobsa + '@jimp/plugin-shadow': 0.14.0_jhz7k2d2s3ip6ssk34veacb4wy + '@jimp/plugin-threshold': 0.14.0_yvpuowyu3hipklrsdaf6scfd4u + timm: 1.7.1 + dev: true + + /@jimp/png/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/utils': 0.14.0 + pngjs: 3.4.0 + dev: true + + /@jimp/tiff/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + utif: 2.0.1 + dev: true + + /@jimp/types/0.14.0_@jimp+custom@0.14.0: + resolution: {integrity: sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/bmp': 0.14.0_@jimp+custom@0.14.0 + '@jimp/custom': 0.14.0 + '@jimp/gif': 0.14.0_@jimp+custom@0.14.0 + '@jimp/jpeg': 0.14.0_@jimp+custom@0.14.0 + '@jimp/png': 0.14.0_@jimp+custom@0.14.0 + '@jimp/tiff': 0.14.0_@jimp+custom@0.14.0 + timm: 1.7.1 + dev: true + + /@jimp/utils/0.14.0: + resolution: {integrity: sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A==} + dependencies: + '@babel/runtime': 7.20.7 + regenerator-runtime: 0.13.11 + dev: true + + /@jridgewell/gen-mapping/0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.17 + dev: true + + /@jridgewell/resolve-uri/3.1.0: + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array/1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 + dev: true + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: true + + /@jridgewell/trace-mapping/0.3.17: + resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@lerna/add/6.4.0: + resolution: {integrity: sha512-xLsYRqfF4l78wLcOGCeiYw/YCBwRlX76+PAvLTD//7f4o8Xygowp1Uqb+a4n2oWmvDlilHiTxs424oTds6n75w==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/bootstrap': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/npm-conf': 6.4.0 + '@lerna/validation-error': 6.4.0 + dedent: 0.7.0 + npm-package-arg: 8.1.1 + p-map: 4.0.0 + pacote: 13.6.2 + semver: 7.3.8 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/bootstrap/6.4.0: + resolution: {integrity: sha512-tgaFJDitwtwAO2kWIdcOWYjcLb6VdEZpakcDPMRICfCyKpcPQ62OYGkjMASzDhgkdJE0wgWRJKBoPUKUVc1I5w==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/has-npm-version': 6.4.0 + '@lerna/npm-install': 6.4.0 + '@lerna/package-graph': 6.4.0 + '@lerna/pulse-till-done': 6.4.0 + '@lerna/rimraf-dir': 6.4.0 + '@lerna/run-lifecycle': 6.4.0 + '@lerna/run-topologically': 6.4.0 + '@lerna/symlink-binary': 6.4.0 + '@lerna/symlink-dependencies': 6.4.0 + '@lerna/validation-error': 6.4.0 + '@npmcli/arborist': 5.3.0 + dedent: 0.7.0 + get-port: 5.1.1 + multimatch: 5.0.0 + npm-package-arg: 8.1.1 + npmlog: 6.0.2 + p-map: 4.0.0 + p-map-series: 2.1.0 + p-waterfall: 2.1.1 + semver: 7.3.8 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/changed/6.4.0: + resolution: {integrity: sha512-9LJ3bb64xNi+XsUnb1KrVSvJybU4+UQmT5rSI/f3UpwLKjKNJuqauFnLgy1S0fWq4Lvd6H5W8BJOYiLJtaUiFw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/collect-updates': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/listable': 6.4.0 + '@lerna/output': 6.4.0 + dev: true + + /@lerna/check-working-tree/6.4.0: + resolution: {integrity: sha512-8CHlAoOCg6rmay1vzQYQccozsozlSdYUxJ6D7jZxMBHoDVMHSxS0q3efOkzCj3EsAOzf5TuOhVB8T2ms8/ckQw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/collect-uncommitted': 6.4.0 + '@lerna/describe-ref': 6.4.0 + '@lerna/validation-error': 6.4.0 + dev: true + + /@lerna/child-process/6.4.0: + resolution: {integrity: sha512-5lNIjdHMx0G32TCLhwb1B4htH1utKP05lE+SeICUz03GFjQQw6UukCnoUf0Ae8ROsisXCwTFjiNxRxdnEcXTfA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + chalk: 4.1.2 + execa: 5.1.1 + strong-log-transformer: 2.1.0 + dev: true + + /@lerna/clean/6.4.0: + resolution: {integrity: sha512-NG3qbcTemcvI4RFF0sjwENCFHZivbbbFwo+Y+Y3IRFl3h6g6FF3GGByIizK/ZyKIeB/xpdisF9Ck0rums4J1Sg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/prompt': 6.4.0 + '@lerna/pulse-till-done': 6.4.0 + '@lerna/rimraf-dir': 6.4.0 + p-map: 4.0.0 + p-map-series: 2.1.0 + p-waterfall: 2.1.1 + dev: true + + /@lerna/cli/6.4.0: + resolution: {integrity: sha512-HYLDKEM1flTkJEGRiWFP/kOnXnvcJUNV0vlWoJbmUCPZFsSGCVEQvSshrwPxF2hABYi1m/UgHhGbWkbRUcH11Q==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/global-options': 6.4.0 + dedent: 0.7.0 + npmlog: 6.0.2 + yargs: 16.2.0 + dev: true + + /@lerna/collect-uncommitted/6.4.0: + resolution: {integrity: sha512-TLL4YXgf39R/DODvsGgKIYO91ebmZlQnthA84yDnZXnEN0cCmOCEHTgvIeWFFV3UrxAUbW3ChcccwVeiWiakhA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + chalk: 4.1.2 + npmlog: 6.0.2 + dev: true + + /@lerna/collect-updates/6.4.0: + resolution: {integrity: sha512-szBOZCq5TiIKgdlQ/bPrvWm4DTVamHvOLdsCtx/Kp+W/2gioJL1ds7+PouJaPlQ8g7uMf5iP6s9tOxxiB459ug==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/describe-ref': 6.4.0 + minimatch: 3.1.2 + npmlog: 6.0.2 + slash: 3.0.0 + dev: true + + /@lerna/command/6.4.0: + resolution: {integrity: sha512-aToAXY79oqnQqob0043PJ+Ae56f/XADIRpWGN45DvLmnLAOBcQdISyJCJHCFHALLEKA4f29vgaC8LFAl5J03Ag==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/package-graph': 6.4.0 + '@lerna/project': 6.4.0 + '@lerna/validation-error': 6.4.0 + '@lerna/write-log-file': 6.4.0 + clone-deep: 4.0.1 + dedent: 0.7.0 + execa: 5.1.1 + is-ci: 2.0.0 + npmlog: 6.0.2 + dev: true + + /@lerna/conventional-commits/6.4.0: + resolution: {integrity: sha512-rbf7FCLatthMacQUXV3o/o8KSDi0a0nXsDW7v0wNow1KFPUhK5pc0m8a4TxiXMiLDVVn0YzVNHmoP0ns2vyCnA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/validation-error': 6.4.0 + conventional-changelog-angular: 5.0.13 + conventional-changelog-core: 4.2.4 + conventional-recommended-bump: 6.1.0 + fs-extra: 9.1.0 + get-stream: 6.0.1 + npm-package-arg: 8.1.1 + npmlog: 6.0.2 + pify: 5.0.0 + semver: 7.3.8 + dev: true + + /@lerna/create-symlink/6.4.0: + resolution: {integrity: sha512-M4m1ujGImF9oTGGH3FK1HIHko9tG/l9bZtEfUA/Lv32d23QtKOVJ3e+iUmodHkogWI33d4UD1ORw8pROHoSH9Q==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + cmd-shim: 5.0.0 + fs-extra: 9.1.0 + npmlog: 6.0.2 + dev: true + + /@lerna/create/6.4.0: + resolution: {integrity: sha512-stywh4hsKfdNm093d/Nga6Otoz+P/lxzUXmNzoo8+T6ug9o9qBQZGbYCqON4VSvJNU0htgAJ9O8RnOZqCoqw5A==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/npm-conf': 6.4.0 + '@lerna/validation-error': 6.4.0 + dedent: 0.7.0 + fs-extra: 9.1.0 + init-package-json: 3.0.2 + npm-package-arg: 8.1.1 + p-reduce: 2.1.0 + pacote: 13.6.2 + pify: 5.0.0 + semver: 7.3.8 + slash: 3.0.0 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 4.0.0 + yargs-parser: 20.2.4 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/describe-ref/6.4.0: + resolution: {integrity: sha512-hlPaz+NUCKhocL5R8c7nDc3rurcG1CGlZeWqTIz09VwU2hhXD5VGKcPJKpQQPLI2I0fzXAQoxjE5gunMUgZkfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + npmlog: 6.0.2 + dev: true + + /@lerna/diff/6.4.0: + resolution: {integrity: sha512-Ih0m+qdB17ycRTYcSqtDkhKOTqrKv3QNzOFrQlfH/f0y0ljJSaLzOzA3eRHnRG41M9jlQ8o0J2NM6PtWOodi+Q==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/validation-error': 6.4.0 + npmlog: 6.0.2 + dev: true + + /@lerna/exec/6.4.0: + resolution: {integrity: sha512-AFz5kMoBJtRr5HK5MJIQGnW8Jp4wPFTIYPvxgNvNAFJum9skrk2bfEFUJ/e2G5imd0zSNzm7pZHzRujEcD6tJA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/profiler': 6.4.0 + '@lerna/run-topologically': 6.4.0 + '@lerna/validation-error': 6.4.0 + p-map: 4.0.0 + dev: true + + /@lerna/filter-options/6.4.0: + resolution: {integrity: sha512-ezKSB0eEXCnNjecZLQcUyuCOf0jQcb8JVcCncbHbjsQdP8apTnXrKPoVlMwDJ/ihWK13Z3myJcVJXfoqiuvveQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/collect-updates': 6.4.0 + '@lerna/filter-packages': 6.4.0 + dedent: 0.7.0 + npmlog: 6.0.2 + dev: true + + /@lerna/filter-packages/6.4.0: + resolution: {integrity: sha512-h9Z1Zy3Ihn03HIiaAutFwUMMKoV8pMHJaX1sGKqDzt3q+5TdX/TDbhzcbjo84LK3WaUCV54x3bLsm5z58HbkHA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/validation-error': 6.4.0 + multimatch: 5.0.0 + npmlog: 6.0.2 + dev: true + + /@lerna/get-npm-exec-opts/6.4.0: + resolution: {integrity: sha512-qOu0mgWpLvpnfrSa10jci5+9GU1VcnQvMHywalY5IjpmbDT+RQjb/ELZfrWihSvx5QawVwUYXaAJ5mqRppwvfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + npmlog: 6.0.2 + dev: true + + /@lerna/get-packed/6.4.0: + resolution: {integrity: sha512-tqfmg301LQcQ+miGno7x0sdkAGwDfrAsFstzoh2sfYmua+rc5XBWnwpE1QUTHJOU2WHD/GPrbfQRGhwHyKCkpw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + fs-extra: 9.1.0 + ssri: 9.0.1 + tar: 6.1.13 + dev: true + + /@lerna/github-client/6.4.0: + resolution: {integrity: sha512-0PVcyMs6vusYYddvUDaBKwHwReqNGa9HSPIYfI1EnmVUnGz2KwVI8duXuo30tZibB1jpgsDNsF8RNxnjPjmZnQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@octokit/plugin-enterprise-rest': 6.0.1 + '@octokit/rest': 19.0.5 + git-url-parse: 13.1.0 + npmlog: 6.0.2 + transitivePeerDependencies: + - encoding + dev: true + + /@lerna/gitlab-client/6.4.0: + resolution: {integrity: sha512-1BTPV74cyBbCC+bD0QRibIkpvZUOjxk9kNC4EGb5TsXofI/5U3ePWfQUd3CKfZ5Or7gR68obwjVXvQga/Csf4A==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + node-fetch: 2.6.7 + npmlog: 6.0.2 + transitivePeerDependencies: + - encoding + dev: true + + /@lerna/global-options/6.4.0: + resolution: {integrity: sha512-YQ3i3Z0wXzYQbqEN1qQmKW8O3SQw/o+H/j9PAn7VJ1FvVJHKQryiSAUscTh3qOrRipLBds1gEdQxBOQHcr0RMw==} + engines: {node: ^14.15.0 || >=16.0.0} + dev: true + + /@lerna/has-npm-version/6.4.0: + resolution: {integrity: sha512-01mBJtqCgbCxx7HHOXTZXQuWX+43o1hzhdjHxhkmf41vjrEKHaAAQ6NZYrzldX3vylFXByYX4ksYtvoSFuNRvQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + semver: 7.3.8 + dev: true + + /@lerna/import/6.4.0: + resolution: {integrity: sha512-7n/9VargFVJQPNj/uwXZwkKiUSjzD4ZJ74RDRiQQk3VYm7SH37C0l8/Z7jzUR1P8K8ZXgG3di3DMuGnkW/pDpw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/prompt': 6.4.0 + '@lerna/pulse-till-done': 6.4.0 + '@lerna/validation-error': 6.4.0 + dedent: 0.7.0 + fs-extra: 9.1.0 + p-map-series: 2.1.0 + dev: true + + /@lerna/info/6.4.0: + resolution: {integrity: sha512-sQvW26EMHLGMZBwMMyu/3xq0rCnjoX1CwPfd9BevqhJqiqG/ByARN7Y//xx3R78X5/8bJINaddDYZiqn1O1bcQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/output': 6.4.0 + envinfo: 7.8.1 + dev: true + + /@lerna/init/6.4.0: + resolution: {integrity: sha512-Gvd3K43EAb9EbgeXnAHqP+U0L0dnMtsuwqRlZK7eE12zq1XeRRNRbwPYX7C6NcskQG1rCEXdNYFfuEfjW1UGYg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/project': 6.4.0 + fs-extra: 9.1.0 + p-map: 4.0.0 + write-json-file: 4.3.0 + dev: true + + /@lerna/link/6.4.0: + resolution: {integrity: sha512-iwE77+W/nfbXETXpp2+T2scL/hWIIsQ2a8Vs/w3xWwaJYntNkJroyFUWnYjdTNSGuqJeUBxGOubKKUvgGGHp8w==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/package-graph': 6.4.0 + '@lerna/symlink-dependencies': 6.4.0 + '@lerna/validation-error': 6.4.0 + p-map: 4.0.0 + slash: 3.0.0 + dev: true + + /@lerna/list/6.4.0: + resolution: {integrity: sha512-PQxYzJ0PUrIlI5d2b2j0aBP08cQMXLxRpA6hua7k6uhoe0ygp4avn+Dv9CXkAj1GgdvhU61pRFTkFmlQr2RTTA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/listable': 6.4.0 + '@lerna/output': 6.4.0 + dev: true + + /@lerna/listable/6.4.0: + resolution: {integrity: sha512-g/86PO8bMYxbtV4oRS8JjeqYimtN5v5C16PIxtLEPtDK9sYx7EOCleTS1dI5FyQ1qMA4JdMU5eBPelNCtKbsYg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/query-graph': 6.4.0 + chalk: 4.1.2 + columnify: 1.6.0 + dev: true + + /@lerna/log-packed/6.4.0: + resolution: {integrity: sha512-+ZbhilD/x5s9MzUGqCa43PWWlxGhANta2uQOHOwbBVkBMhCMythdcbgfO3rnfrIUU1JdQCGbUUXO5hUkm09QFA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + byte-size: 7.0.1 + columnify: 1.6.0 + has-unicode: 2.0.1 + npmlog: 6.0.2 + dev: true + + /@lerna/npm-conf/6.4.0: + resolution: {integrity: sha512-2T7sg6XV00hsXk2OL7PscNwRxANsllDQwwdJMT4mzTSZWxGzhwXtgJ15sZXCt+PNOUjsSvGhwZthxp555GfA8Q==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + config-chain: 1.1.13 + pify: 5.0.0 + dev: true + + /@lerna/npm-dist-tag/6.4.0: + resolution: {integrity: sha512-df26FdMitwG20YViW7WXba/6N33BBHxI46RSiNEH0CNrqH4MxKztO9nVzxoxznqTOEEiXjOlUq+fKWxPKOj+hg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/otplease': 6.4.0 + npm-package-arg: 8.1.1 + npm-registry-fetch: 13.3.1 + npmlog: 6.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/npm-install/6.4.0: + resolution: {integrity: sha512-F5YciWIq17SVXy4sFaPmHBv7C4IwBK6CbSot/aHAfBw0m7pDAwuTjMXwX14wfLqRsSpYbKOzT5xTWn6RaH9+nw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/get-npm-exec-opts': 6.4.0 + fs-extra: 9.1.0 + npm-package-arg: 8.1.1 + npmlog: 6.0.2 + signal-exit: 3.0.7 + write-pkg: 4.0.0 + dev: true + + /@lerna/npm-publish/6.4.0: + resolution: {integrity: sha512-E8tz5HvPoO0Rt8gcDRV4W4Z/Bnv3uVeKyNQYa4w5GCHEWb7f2oHOicDkjafN2dRjYr1a3X1v4k8grB8gUItnCw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/otplease': 6.4.0 + '@lerna/run-lifecycle': 6.4.0 + fs-extra: 9.1.0 + libnpmpublish: 6.0.5 + npm-package-arg: 8.1.1 + npmlog: 6.0.2 + pify: 5.0.0 + read-package-json: 5.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/npm-run-script/6.4.0: + resolution: {integrity: sha512-ebNX56fFLPm2+WZYo9s+zGk9l2axnoe1qwOqTvHHx9i+7aV630rm6nl9IgI6ivpt6zVPgWvVdU9ez+6bcopQuw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + '@lerna/get-npm-exec-opts': 6.4.0 + npmlog: 6.0.2 + dev: true + + /@lerna/otplease/6.4.0: + resolution: {integrity: sha512-IoI8MeVk1GaBDVCc//GDqLrVh/OziMXhocjxcdh54NS5D2vtXu4BEVThjJMzsQI9svIfUsQurF/mL7xsFfxKdQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/prompt': 6.4.0 + dev: true + + /@lerna/output/6.4.0: + resolution: {integrity: sha512-J9mS9lx+qZbuKZvvkxk39osuPK4FV2sLxtR+9EBXAVu39AXYb8DMsN8S6KLXt0ff+XbIr3m6xQRf4c0hTu0P1A==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + npmlog: 6.0.2 + dev: true + + /@lerna/pack-directory/6.4.0: + resolution: {integrity: sha512-gKWtBhRbI0e6+3kqIogqg0K6QxnNrvJMGDTFkyvVRhKmH4tNEpeKhBM4yNtJdTGIOcm+Tu9IKzm+nkk6r0GzHQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/get-packed': 6.4.0 + '@lerna/package': 6.4.0 + '@lerna/run-lifecycle': 6.4.0 + '@lerna/temp-write': 6.4.0 + npm-packlist: 5.1.3 + npmlog: 6.0.2 + tar: 6.1.13 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/package-graph/6.4.0: + resolution: {integrity: sha512-3Z1IyexsjNV/uGK8hfvUCcwP7je+MFXTxG33malZBKi9a7hEhV0ssb29ZKwetjtkCqefsVUNFTjyn7DR1YSjzg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/prerelease-id-from-version': 6.4.0 + '@lerna/validation-error': 6.4.0 + npm-package-arg: 8.1.1 + npmlog: 6.0.2 + semver: 7.3.8 + dev: true + + /@lerna/package/6.4.0: + resolution: {integrity: sha512-/nYlPQbsypYJHLcQSptIAa1oGXoTyjSyk9uH9PW/YVl6SywqcNinT72OPAEfKgpl+61swzz/NPqdoAiPr/s3Sg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + load-json-file: 6.2.0 + npm-package-arg: 8.1.1 + write-pkg: 4.0.0 + dev: true + + /@lerna/prerelease-id-from-version/6.4.0: + resolution: {integrity: sha512-D3P5O4y7C7t4mutsTGynAJ4JwDy4QR/mJGBRpzSCb/W9o3p/oS9BHNAWuoADPOMVCs/VDVc5omH8CKO6tYP8gQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + semver: 7.3.8 + dev: true + + /@lerna/profiler/6.4.0: + resolution: {integrity: sha512-YmsmJj0mb4gefa3Px0EoiRAVjmorz5rym7BZut3nWmn41paebRKeQkMlpZDxUQo37N3b8b/UpBdMZNzlHfDb4g==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + fs-extra: 9.1.0 + npmlog: 6.0.2 + upath: 2.0.1 + dev: true + + /@lerna/project/6.4.0: + resolution: {integrity: sha512-LDA6qo4pYxhUKUtKArLS6Nw+cx7h4timzssf2goKJvJtlTDMslRXYbPGHHgbmTKuqRL3whfNFLVhLjnY2tq9ew==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/package': 6.4.0 + '@lerna/validation-error': 6.4.0 + cosmiconfig: 7.0.1 + dedent: 0.7.0 + dot-prop: 6.0.1 + glob-parent: 5.1.2 + globby: 11.0.4 + js-yaml: 4.1.0 + load-json-file: 6.2.0 + npmlog: 6.0.2 + p-map: 4.0.0 + resolve-from: 5.0.0 + write-json-file: 4.3.0 + dev: true + + /@lerna/prompt/6.4.0: + resolution: {integrity: sha512-tQ8NcRZDqIOhohOPh5rL2WpY/7KQBZqi1yYeC89UP+Syxfsd333NtuG+EHQ/f2duMQuuGclBmTIce5empaejxQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + inquirer: 8.2.5 + npmlog: 6.0.2 + dev: true + + /@lerna/publish/6.4.0_nx@15.4.5+typescript@4.9.4: + resolution: {integrity: sha512-8TQSB794jjRejC3OPiTs81v3rv3DhNrkrbgFOrASx4suvH1SHsJKRXSS4xsCLiyv9b8NzodxfCPmSriOAhynUw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/check-working-tree': 6.4.0 + '@lerna/child-process': 6.4.0 + '@lerna/collect-updates': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/describe-ref': 6.4.0 + '@lerna/log-packed': 6.4.0 + '@lerna/npm-conf': 6.4.0 + '@lerna/npm-dist-tag': 6.4.0 + '@lerna/npm-publish': 6.4.0 + '@lerna/otplease': 6.4.0 + '@lerna/output': 6.4.0 + '@lerna/pack-directory': 6.4.0 + '@lerna/prerelease-id-from-version': 6.4.0 + '@lerna/prompt': 6.4.0 + '@lerna/pulse-till-done': 6.4.0 + '@lerna/run-lifecycle': 6.4.0 + '@lerna/run-topologically': 6.4.0 + '@lerna/validation-error': 6.4.0 + '@lerna/version': 6.4.0_nx@15.4.5+typescript@4.9.4 + fs-extra: 9.1.0 + libnpmaccess: 6.0.4 + npm-package-arg: 8.1.1 + npm-registry-fetch: 13.3.1 + npmlog: 6.0.2 + p-map: 4.0.0 + p-pipe: 3.1.0 + pacote: 13.6.2 + semver: 7.3.8 + transitivePeerDependencies: + - bluebird + - encoding + - nx + - supports-color + - typescript + dev: true + + /@lerna/pulse-till-done/6.4.0: + resolution: {integrity: sha512-Di7KLRAoRBN0rag5jDbZlV9WpH+a3L50AIIasSEr2vwMd/w/vPdRAyJ8uJ6zwAUdTyYYxIpeFL43IaMFtH6zeQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + npmlog: 6.0.2 + dev: true + + /@lerna/query-graph/6.4.0: + resolution: {integrity: sha512-nh+NeYBs21qKwsJmYT1aa+LG5Q1LVLOgyW25cR3lsTvibtGccrua19nt97Va9Seuknnvz8/UkQ0LUrz8eSXjqw==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/package-graph': 6.4.0 + dev: true + + /@lerna/resolve-symlink/6.4.0: + resolution: {integrity: sha512-fFNrsGN5VxOERBezz9c2EzxdZO/eG6nf8sKzWq8MnbABeVsAxaUb6gAcMtvXxCP+qGCH0ECJIbv16CyrkelgcA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + fs-extra: 9.1.0 + npmlog: 6.0.2 + read-cmd-shim: 3.0.1 + dev: true + + /@lerna/rimraf-dir/6.4.0: + resolution: {integrity: sha512-p1kPWlnYg6otbfMN95ojZPPLK+r+FE2EvaxCIMHJIYPo5rmdhYg+07uUASck+de/AuRgqpT5OGmjrAauRpWxeA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/child-process': 6.4.0 + npmlog: 6.0.2 + path-exists: 4.0.0 + rimraf: 3.0.2 + dev: true + + /@lerna/run-lifecycle/6.4.0: + resolution: {integrity: sha512-45r4VfSK+EwC6emVEzIidTglFlRSUlr/jmfHnZt5wWdY8laGGf21zs0g70w9tgdXW5J6PQmjgoAnoUAafbn5aA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/npm-conf': 6.4.0 + '@npmcli/run-script': 4.2.1 + npmlog: 6.0.2 + p-queue: 6.6.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@lerna/run-topologically/6.4.0: + resolution: {integrity: sha512-Wwsg2JhckeQKeHJdCHV6yZQh1akLcMAvVBEWpAmEEM1Kyb4hsUI/1LEexjexddjOmz8ZDjBH9uhuj5FE5q2qmg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/query-graph': 6.4.0 + p-queue: 6.6.2 + dev: true + + /@lerna/run/6.4.0: + resolution: {integrity: sha512-tJ0TbcR9mG0IcaWahT2rm4RTpHdYgwRNEv/NHE/MuckNGew7D8D+IAyOHtV4dCc7hc1ccbWFD1QioEiSKmd3ag==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/command': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/npm-run-script': 6.4.0 + '@lerna/output': 6.4.0 + '@lerna/profiler': 6.4.0 + '@lerna/run-topologically': 6.4.0 + '@lerna/timer': 6.4.0 + '@lerna/validation-error': 6.4.0 + fs-extra: 9.1.0 + nx: 15.4.5 + p-map: 4.0.0 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + + /@lerna/symlink-binary/6.4.0: + resolution: {integrity: sha512-PwIaSD4pbBv/E5ulGE1dTOOOzpyec4jT1QHEeVfYOQNJKn3rh7Rx8B/PFN58pHuuUtUrLbb/Qajt02LYqdT1Dg==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/create-symlink': 6.4.0 + '@lerna/package': 6.4.0 + fs-extra: 9.1.0 + p-map: 4.0.0 + dev: true + + /@lerna/symlink-dependencies/6.4.0: + resolution: {integrity: sha512-ivaBmPqKUb956K3gnH+0FrI0xMqiATu6grJmHNvYSixgKyS3eE694FGRwv3Fgm5a/e0TZ9FlbkPgBR+h78D3nA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/create-symlink': 6.4.0 + '@lerna/resolve-symlink': 6.4.0 + '@lerna/symlink-binary': 6.4.0 + fs-extra: 9.1.0 + p-map: 4.0.0 + p-map-series: 2.1.0 + dev: true + + /@lerna/temp-write/6.4.0: + resolution: {integrity: sha512-73sVS9SIIulRUip8jAbhkQ8NuXN++cuRqbENPU6+P2Z9l98L1qHdIVY2gzEPZgk8nKhIDc50vkHkIpIABukY4Q==} + dependencies: + graceful-fs: 4.2.10 + is-stream: 2.0.1 + make-dir: 3.1.0 + temp-dir: 1.0.0 + uuid: 8.3.2 + dev: true + + /@lerna/timer/6.4.0: + resolution: {integrity: sha512-8A8El4Z6J7RGShXWZOxwvZIUfyWsQ4WCm0ZZgaw/nUhSJhMl5H4LEmHW5j8+rE8awr7OovNEGTzc5FwbHWrYlg==} + engines: {node: ^14.15.0 || >=16.0.0} + dev: true + + /@lerna/validation-error/6.4.0: + resolution: {integrity: sha512-lsfZMp8/DuwTUGJUNOOAlW/tuhj/wqprqQL+KH1rd/53zYx5rglZnQBiyHndS1SsV2FSj0JPZtvuO89o5qEInA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + npmlog: 6.0.2 + dev: true + + /@lerna/version/6.4.0_nx@15.4.5+typescript@4.9.4: + resolution: {integrity: sha512-E5+8s0IMrQA9LEKo3npV/VRBZCgD7a3ZLPSlloX3SAFT9ZRJOE/RC1ajLxomL4q2StafuEriLH3cYujOBOAefA==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + '@lerna/check-working-tree': 6.4.0 + '@lerna/child-process': 6.4.0 + '@lerna/collect-updates': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/conventional-commits': 6.4.0 + '@lerna/github-client': 6.4.0 + '@lerna/gitlab-client': 6.4.0 + '@lerna/output': 6.4.0 + '@lerna/prerelease-id-from-version': 6.4.0 + '@lerna/prompt': 6.4.0 + '@lerna/run-lifecycle': 6.4.0 + '@lerna/run-topologically': 6.4.0 + '@lerna/temp-write': 6.4.0 + '@lerna/validation-error': 6.4.0 + '@nrwl/devkit': 15.4.5_nx@15.4.5+typescript@4.9.4 + chalk: 4.1.2 + dedent: 0.7.0 + load-json-file: 6.2.0 + minimatch: 3.1.2 + npmlog: 6.0.2 + p-map: 4.0.0 + p-pipe: 3.1.0 + p-reduce: 2.1.0 + p-waterfall: 2.1.1 + semver: 7.3.8 + slash: 3.0.0 + write-json-file: 4.3.0 + transitivePeerDependencies: + - bluebird + - encoding + - nx + - supports-color + - typescript + dev: true + + /@lerna/write-log-file/6.4.0: + resolution: {integrity: sha512-cH9Lqtj6zjPTghaDqbJy3r/2q0CGWwIdcVTi/22gCwYQwZpavhJAr0BxgS2du4EK5a5iccHUj4dZXVFchQY0mQ==} + engines: {node: ^14.15.0 || >=16.0.0} + dependencies: + npmlog: 6.0.2 + write-file-atomic: 4.0.2 + dev: true + + /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3: + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + requiresBuild: true + dev: true + optional: true + + /@nodelib/fs.scandir/2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat/2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk/1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@npmcli/arborist/5.3.0: + resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + '@isaacs/string-locale-compare': 1.1.0 + '@npmcli/installed-package-contents': 1.0.7 + '@npmcli/map-workspaces': 2.0.4 + '@npmcli/metavuln-calculator': 3.1.1 + '@npmcli/move-file': 2.0.1 + '@npmcli/name-from-folder': 1.0.1 + '@npmcli/node-gyp': 2.0.0 + '@npmcli/package-json': 2.0.0 + '@npmcli/run-script': 4.2.1 + bin-links: 3.0.3 + cacache: 16.1.3 + common-ancestor-path: 1.0.1 + json-parse-even-better-errors: 2.3.1 + json-stringify-nice: 1.1.4 + mkdirp: 1.0.4 + mkdirp-infer-owner: 2.0.0 + nopt: 5.0.0 + npm-install-checks: 5.0.0 + npm-package-arg: 9.1.2 + npm-pick-manifest: 7.0.2 + npm-registry-fetch: 13.3.1 + npmlog: 6.0.2 + pacote: 13.6.2 + parse-conflict-json: 2.0.2 + proc-log: 2.0.1 + promise-all-reject-late: 1.0.1 + promise-call-limit: 1.0.1 + read-package-json-fast: 2.0.3 + readdir-scoped-modules: 1.1.0 + rimraf: 3.0.2 + semver: 7.3.8 + ssri: 9.0.1 + treeverse: 2.0.0 + walk-up-path: 1.0.0 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@npmcli/fs/1.1.1: + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.3.8 + dev: true + + /@npmcli/fs/2.1.2: + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.3.8 + dev: true + + /@npmcli/git/2.1.0: + resolution: {integrity: sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==} + dependencies: + '@npmcli/promise-spawn': 1.3.2 + lru-cache: 6.0.0 + mkdirp: 1.0.4 + npm-pick-manifest: 6.1.1 + promise-inflight: 1.0.1 + promise-retry: 2.0.1 + semver: 7.3.8 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + dev: true + + /@npmcli/git/3.0.2: + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/promise-spawn': 3.0.0 + lru-cache: 7.14.1 + mkdirp: 1.0.4 + npm-pick-manifest: 7.0.2 + proc-log: 2.0.1 + promise-inflight: 1.0.1 + promise-retry: 2.0.1 + semver: 7.3.8 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + dev: true + + /@npmcli/installed-package-contents/1.0.7: + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} + hasBin: true + dependencies: + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + dev: true + + /@npmcli/map-workspaces/2.0.4: + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/name-from-folder': 1.0.1 + glob: 8.0.3 + minimatch: 5.1.2 + read-package-json-fast: 2.0.3 + dev: true + + /@npmcli/metavuln-calculator/3.1.1: + resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + cacache: 16.1.3 + json-parse-even-better-errors: 2.3.1 + pacote: 13.6.2 + semver: 7.3.8 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@npmcli/move-file/1.1.2: + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + dev: true + + /@npmcli/move-file/2.0.1: + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + dev: true + + /@npmcli/name-from-folder/1.0.1: + resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} + dev: true + + /@npmcli/node-gyp/1.0.3: + resolution: {integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==} + dev: true + + /@npmcli/node-gyp/2.0.0: + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + + /@npmcli/package-json/2.0.0: + resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + json-parse-even-better-errors: 2.3.1 + dev: true + + /@npmcli/promise-spawn/1.3.2: + resolution: {integrity: sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==} + dependencies: + infer-owner: 1.0.4 + dev: true + + /@npmcli/promise-spawn/3.0.0: + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + infer-owner: 1.0.4 + dev: true + + /@npmcli/run-script/1.8.6: + resolution: {integrity: sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==} + dependencies: + '@npmcli/node-gyp': 1.0.3 + '@npmcli/promise-spawn': 1.3.2 + node-gyp: 7.1.2 + read-package-json-fast: 2.0.3 + dev: true + + /@npmcli/run-script/4.2.1: + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/node-gyp': 2.0.0 + '@npmcli/promise-spawn': 3.0.0 + node-gyp: 9.3.1 + read-package-json-fast: 2.0.3 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@nrwl/cli/15.4.5: + resolution: {integrity: sha512-f13s0/hzS9jsV1+QPr1Lp3Um+3dOHD8gEP2h7uw17rEPrtJ5ggRKMj/HcZ9dkT9zDM9EmPtVTb6k38ON+NWcUw==} + dependencies: + nx: 15.4.5 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + + /@nrwl/devkit/15.4.5_nx@15.4.5+typescript@4.9.4: + resolution: {integrity: sha512-oag+wJgusKz+rwvgcVy9i8bNtTo7ikbjVVtSOmyVBE0ZrgN1CMFjugBj4FEjKGtd73djjpvW9Mm36uJRujrc2w==} + peerDependencies: + nx: '>= 14 <= 16' + dependencies: + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 + ejs: 3.1.8 + ignore: 5.2.4 + nx: 15.4.5 + semver: 7.3.4 + tslib: 2.4.1 + transitivePeerDependencies: + - typescript + dev: true + + /@nrwl/tao/15.4.5: + resolution: {integrity: sha512-UMtxXxTWqbyZOdyD9Zt2IsDY/JVXIFZtY6pO4jPha7+UIHWf2Zi8Dszs6UoUTS4mqpNMIkKymwpZGtkDTfiAJA==} + hasBin: true + dependencies: + nx: 15.4.5 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + + /@octokit/auth-token/3.0.2: + resolution: {integrity: sha512-pq7CwIMV1kmzkFTimdwjAINCXKTajZErLB4wMLYapR2nuB/Jpr66+05wOTZMSCBXP6n4DdDWT2W19Bm17vU69Q==} + engines: {node: '>= 14'} + dependencies: + '@octokit/types': 8.0.0 + dev: true + + /@octokit/core/4.1.0: + resolution: {integrity: sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==} + engines: {node: '>= 14'} + dependencies: + '@octokit/auth-token': 3.0.2 + '@octokit/graphql': 5.0.4 + '@octokit/request': 6.2.2 + '@octokit/request-error': 3.0.2 + '@octokit/types': 8.0.0 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/endpoint/7.0.3: + resolution: {integrity: sha512-57gRlb28bwTsdNXq+O3JTQ7ERmBTuik9+LelgcLIVfYwf235VHbN9QNo4kXExtp/h8T423cR5iJThKtFYxC7Lw==} + engines: {node: '>= 14'} + dependencies: + '@octokit/types': 8.0.0 + is-plain-object: 5.0.0 + universal-user-agent: 6.0.0 + dev: true + + /@octokit/graphql/5.0.4: + resolution: {integrity: sha512-amO1M5QUQgYQo09aStR/XO7KAl13xpigcy/kI8/N1PnZYSS69fgte+xA4+c2DISKqUZfsh0wwjc2FaCt99L41A==} + engines: {node: '>= 14'} + dependencies: + '@octokit/request': 6.2.2 + '@octokit/types': 8.0.0 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/openapi-types/14.0.0: + resolution: {integrity: sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw==} + dev: true + + /@octokit/plugin-enterprise-rest/6.0.1: + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + dev: true + + /@octokit/plugin-paginate-rest/5.0.1_@octokit+core@4.1.0: + resolution: {integrity: sha512-7A+rEkS70pH36Z6JivSlR7Zqepz3KVucEFVDnSrgHXzG7WLAzYwcHZbKdfTXHwuTHbkT1vKvz7dHl1+HNf6Qyw==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' + dependencies: + '@octokit/core': 4.1.0 + '@octokit/types': 8.0.0 + dev: true + + /@octokit/plugin-request-log/1.0.4_@octokit+core@4.1.0: + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 4.1.0 + dev: true + + /@octokit/plugin-rest-endpoint-methods/6.7.0_@octokit+core@4.1.0: + resolution: {integrity: sha512-orxQ0fAHA7IpYhG2flD2AygztPlGYNAdlzYz8yrD8NDgelPfOYoRPROfEyIe035PlxvbYrgkfUZIhSBKju/Cvw==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 4.1.0 + '@octokit/types': 8.0.0 + deprecation: 2.3.1 + dev: true + + /@octokit/request-error/3.0.2: + resolution: {integrity: sha512-WMNOFYrSaX8zXWoJg9u/pKgWPo94JXilMLb2VManNOby9EZxrQaBe/QSC4a1TzpAlpxofg2X/jMnCyZgL6y7eg==} + engines: {node: '>= 14'} + dependencies: + '@octokit/types': 8.0.0 + deprecation: 2.3.1 + once: 1.4.0 + dev: true + + /@octokit/request/6.2.2: + resolution: {integrity: sha512-6VDqgj0HMc2FUX2awIs+sM6OwLgwHvAi4KCK3mT2H2IKRt6oH9d0fej5LluF5mck1lRR/rFWN0YIDSYXYSylbw==} + engines: {node: '>= 14'} + dependencies: + '@octokit/endpoint': 7.0.3 + '@octokit/request-error': 3.0.2 + '@octokit/types': 8.0.0 + is-plain-object: 5.0.0 + node-fetch: 2.6.7 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/rest/19.0.5: + resolution: {integrity: sha512-+4qdrUFq2lk7Va+Qff3ofREQWGBeoTKNqlJO+FGjFP35ZahP+nBenhZiGdu8USSgmq4Ky3IJ/i4u0xbLqHaeow==} + engines: {node: '>= 14'} + dependencies: + '@octokit/core': 4.1.0 + '@octokit/plugin-paginate-rest': 5.0.1_@octokit+core@4.1.0 + '@octokit/plugin-request-log': 1.0.4_@octokit+core@4.1.0 + '@octokit/plugin-rest-endpoint-methods': 6.7.0_@octokit+core@4.1.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/types/8.0.0: + resolution: {integrity: sha512-65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg==} + dependencies: + '@octokit/openapi-types': 14.0.0 + dev: true + + /@parcel/watcher/2.0.4: + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + requiresBuild: true + dependencies: + node-addon-api: 3.2.1 + node-gyp-build: 4.6.0 + dev: true + + /@phenomnomnominal/tsquery/4.1.1_typescript@4.9.4: + resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} + peerDependencies: + typescript: ^3 || ^4 + dependencies: + esquery: 1.4.0 + typescript: 4.9.4 + dev: true + + /@pnpm/network.ca-file/1.0.2: + resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} + engines: {node: '>=12.22.0'} + dependencies: + graceful-fs: 4.2.10 + dev: true + + /@pnpm/npm-conf/1.0.5: + resolution: {integrity: sha512-hD8ml183638O3R6/Txrh0L8VzGOrFXgRtRDG4qQC4tONdZ5Z1M+tlUUDUvrjYdmK6G+JTBTeaCLMna11cXzi8A==} + engines: {node: '>=12'} + dependencies: + '@pnpm/network.ca-file': 1.0.2 + config-chain: 1.1.13 + dev: true + + /@preact/preset-vite/2.5.0_preact@10.11.3: + resolution: {integrity: sha512-BUhfB2xQ6ex0yPkrT1Z3LbfPzjpJecOZwQ/xJrXGFSZD84+ObyS//41RdEoQCMWsM0t7UHGaujUxUBub7WM1Jw==} + peerDependencies: + '@babel/core': 7.x + vite: 2.x || 3.x || 4.x + dependencies: + '@babel/plugin-transform-react-jsx': 7.20.7 + '@babel/plugin-transform-react-jsx-development': 7.18.6 + '@prefresh/vite': 2.2.9_preact@10.11.3 + '@rollup/pluginutils': 4.2.1 + babel-plugin-transform-hook-names: 1.0.2 + debug: 4.3.4 + kolorist: 1.6.0 + resolve: 1.22.1 + transitivePeerDependencies: + - preact + - supports-color + dev: true + + /@preact/preset-vite/2.5.0_preact@10.11.3+vite@4.0.4: + resolution: {integrity: sha512-BUhfB2xQ6ex0yPkrT1Z3LbfPzjpJecOZwQ/xJrXGFSZD84+ObyS//41RdEoQCMWsM0t7UHGaujUxUBub7WM1Jw==} + peerDependencies: + '@babel/core': 7.x + vite: 2.x || 3.x || 4.x + dependencies: + '@babel/plugin-transform-react-jsx': 7.20.7 + '@babel/plugin-transform-react-jsx-development': 7.18.6 + '@prefresh/vite': 2.2.9_preact@10.11.3+vite@4.0.4 + '@rollup/pluginutils': 4.2.1 + babel-plugin-transform-hook-names: 1.0.2 + debug: 4.3.4 + kolorist: 1.6.0 + resolve: 1.22.1 + vite: 4.0.4 + transitivePeerDependencies: + - preact + - supports-color + dev: true + + /@prefresh/babel-plugin/0.4.4: + resolution: {integrity: sha512-/EvgIFMDL+nd20WNvMO0JQnzIl1EJPgmSaSYrZUww7A+aSdKsi37aL07TljrZR1cBMuzFxcr4xvqsUQLFJEukw==} + dev: true + + /@prefresh/core/1.4.1_preact@10.11.3: + resolution: {integrity: sha512-og1vaBj3LMJagVncNrDb37Gqc0cWaUcDbpVt5hZtsN4i2Iwzd/5hyTsDHvlMirhSym3wL9ihU0Xa2VhSaOue7g==} + peerDependencies: + preact: ^10.0.0 + dependencies: + preact: 10.11.3 + dev: true + + /@prefresh/utils/1.1.3: + resolution: {integrity: sha512-Mb9abhJTOV4yCfkXrMrcgFiFT7MfNOw8sDa+XyZBdq/Ai2p4Zyxqsb3EgHLOEdHpMj6J9aiZ54W8H6FTam1u+A==} + dev: true + + /@prefresh/vite/2.2.9_preact@10.11.3: + resolution: {integrity: sha512-1ERBF85Ja9/lkrfaltmo4Gca7R2ClQPSHHDDysFgfvPzHmLUeyB0x9WHwhwov/AA1DnyPhsfYT54z3yQd8XrgA==} + peerDependencies: + preact: ^10.4.0 + vite: '>=2.0.0-beta.3' + dependencies: + '@babel/core': 7.20.7 + '@prefresh/babel-plugin': 0.4.4 + '@prefresh/core': 1.4.1_preact@10.11.3 + '@prefresh/utils': 1.1.3 + '@rollup/pluginutils': 4.2.1 + preact: 10.11.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@prefresh/vite/2.2.9_preact@10.11.3+vite@4.0.4: + resolution: {integrity: sha512-1ERBF85Ja9/lkrfaltmo4Gca7R2ClQPSHHDDysFgfvPzHmLUeyB0x9WHwhwov/AA1DnyPhsfYT54z3yQd8XrgA==} + peerDependencies: + preact: ^10.4.0 + vite: '>=2.0.0-beta.3' + dependencies: + '@babel/core': 7.20.7 + '@prefresh/babel-plugin': 0.4.4 + '@prefresh/core': 1.4.1_preact@10.11.3 + '@prefresh/utils': 1.1.3 + '@rollup/pluginutils': 4.2.1 + preact: 10.11.3 + vite: 4.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@release-it-plugins/workspaces/3.2.0_release-it@15.6.0: + resolution: {integrity: sha512-ooEIgwb4qwGFQa9kXoTaQDHgD2Vymy5Z/aKL1JefnVUg1hiKL8Lh5fEfkDXggeXetTYk+SaFm2YNLrVOarX+Kw==} + engines: {node: '>= 14'} + peerDependencies: + release-it: ^14.0.0 || ^15.2.0 + dependencies: + detect-indent: 6.1.0 + detect-newline: 3.1.0 + release-it: 15.6.0 + semver: 7.3.8 + url-join: 4.0.1 + validate-peer-dependencies: 1.2.0 + walk-sync: 2.2.0 + yaml: 2.2.1 + dev: true + + /@rollup/plugin-babel/5.2.1_b644q46buv54od2vqg3a6ywbxm: + resolution: {integrity: sha512-Jd7oqFR2dzZJ3NWANDyBjwTtX/lYbZpVcmkHrfQcpvawHs9E4c0nYk5U2mfZ6I/DZcIvy506KZJi54XK/jxH7A==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-imports': 7.18.6 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + rollup: 2.78.1 + dev: true + + /@rollup/plugin-commonjs/15.1.0_rollup@2.78.1: + resolution: {integrity: sha512-xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.22.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.2.3 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.1 + rollup: 2.78.1 + dev: true + + /@rollup/plugin-node-resolve/9.0.0_rollup@2.78.1: + resolution: {integrity: sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + '@types/resolve': 1.17.1 + builtin-modules: 3.3.0 + deepmerge: 4.2.2 + is-module: 1.0.0 + resolve: 1.22.1 + rollup: 2.78.1 + dev: true + + /@rollup/pluginutils/3.1.0_rollup@2.78.1: + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.78.1 + dev: true + + /@rollup/pluginutils/4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@sinclair/typebox/0.24.51: + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: true + + /@sindresorhus/is/5.3.0: + resolution: {integrity: sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==} + engines: {node: '>=14.16'} + dev: true + + /@sinonjs/commons/1.8.6: + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + dependencies: + type-detect: 4.0.8 + dev: true + + /@sinonjs/fake-timers/6.0.1: + resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} + dependencies: + '@sinonjs/commons': 1.8.6 + dev: true + + /@sinonjs/fake-timers/9.1.2: + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + dependencies: + '@sinonjs/commons': 1.8.6 + dev: true + + /@sveltejs/vite-plugin-svelte/2.0.2_svelte@3.55.0+vite@4.0.4: + resolution: {integrity: sha512-xCEan0/NNpQuL0l5aS42FjwQ6wwskdxC3pW1OeFtEKNZwRg7Evro9lac9HesGP6TdFsTv2xMes5ASQVKbCacxg==} + engines: {node: ^14.18.0 || >= 16} + peerDependencies: + svelte: ^3.54.0 + vite: ^4.0.0 + dependencies: + debug: 4.3.4 + deepmerge: 4.2.2 + kleur: 4.1.5 + magic-string: 0.27.0 + svelte: 3.55.0 + svelte-hmr: 0.15.1_svelte@3.55.0 + vite: 4.0.4 + vitefu: 0.2.4_vite@4.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@svgr/babel-plugin-add-jsx-attribute/5.4.0: + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-remove-jsx-attribute/5.4.0: + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1: + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1: + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-svg-dynamic-title/5.4.0: + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-svg-em-dimensions/5.4.0: + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-transform-react-native-svg/5.4.0: + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-plugin-transform-svg-component/5.5.0: + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + dev: true + + /@svgr/babel-preset/5.5.0: + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} + dependencies: + '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 + '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 + '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 + '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 + '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 + '@svgr/babel-plugin-transform-svg-component': 5.5.0 + dev: true + + /@svgr/core/5.4.0: + resolution: {integrity: sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ==} + engines: {node: '>=10'} + dependencies: + '@svgr/plugin-jsx': 5.5.0 + camelcase: 6.3.0 + cosmiconfig: 6.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@svgr/hast-util-to-babel-ast/5.5.0: + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@svgr/plugin-jsx/5.5.0: + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} + dependencies: + '@babel/core': 7.20.7 + '@svgr/babel-preset': 5.5.0 + '@svgr/hast-util-to-babel-ast': 5.5.0 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@szmarczak/http-timer/5.0.1: + resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} + engines: {node: '>=14.16'} + dependencies: + defer-to-connect: 2.0.1 + dev: true + + /@testing-library/dom/7.31.2: + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} + engines: {node: '>=10'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/runtime': 7.20.7 + '@types/aria-query': 4.2.2 + aria-query: 4.2.2 + chalk: 4.1.2 + dom-accessibility-api: 0.5.15 + lz-string: 1.4.4 + pretty-format: 26.6.2 + dev: true + + /@testing-library/dom/8.19.1: + resolution: {integrity: sha512-P6iIPyYQ+qH8CvGauAqanhVnjrnRe0IZFSYCeGkSRW9q3u8bdVn2NPI+lasFyVsEQn1J/IFmp5Aax41+dAP9wg==} + engines: {node: '>=12'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/runtime': 7.20.7 + '@types/aria-query': 5.0.1 + aria-query: 5.1.3 + chalk: 4.1.2 + dom-accessibility-api: 0.5.15 + lz-string: 1.4.4 + pretty-format: 27.5.1 + dev: true + + /@testing-library/jest-dom/5.16.5: + resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + dependencies: + '@adobe/css-tools': 4.0.1 + '@babel/runtime': 7.20.7 + '@types/testing-library__jest-dom': 5.14.5 + aria-query: 5.1.3 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.15 + lodash: 4.17.21 + redent: 3.0.0 + dev: true + + /@testing-library/preact/3.2.2_preact@10.11.3: + resolution: {integrity: sha512-mMPEp/9TOOqf3QqDHY02ieGFfRbi8fAxZvRifn+vOzrdNcCR1zchwPA6BvqXG3wAweRan4QJioYgEc1cePeC3g==} + engines: {node: '>= 12'} + peerDependencies: + preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' + dependencies: + '@testing-library/dom': 8.19.1 + preact: 10.11.3 + dev: true + + /@testing-library/react/11.2.7_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==} + engines: {node: '>=10'} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.20.7 + '@testing-library/dom': 7.31.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + dev: true + + /@testing-library/svelte/3.2.2_svelte@3.55.0: + resolution: {integrity: sha512-IKwZgqbekC3LpoRhSwhd0JswRGxKdAGkf39UiDXTywK61YyLXbCYoR831e/UUC6EeNW4hiHPY+2WuovxOgI5sw==} + engines: {node: '>= 10'} + peerDependencies: + svelte: 3.x + dependencies: + '@testing-library/dom': 8.19.1 + svelte: 3.55.0 + dev: true + + /@testing-library/vue/6.6.1_tfvhctuaqmmqnirfl65c47tqwu: + resolution: {integrity: sha512-vpyBPrHzKTwEGS7ehUC8/IXgnqTBEMk6jd52Gouf51arG2jUorPhmkbsxUwJOyxz6L0gj2ZcmWnznG1OJcTCDQ==} + engines: {node: '>=12'} + peerDependencies: + '@vue/compiler-sfc': '>= 3' + vue: '>= 3' + dependencies: + '@babel/runtime': 7.20.7 + '@testing-library/dom': 8.19.1 + '@vue/compiler-sfc': 3.2.45 + '@vue/test-utils': 2.2.6_vue@3.2.45 + vue: 3.2.45 + dev: true + + /@tootallnate/once/1.1.2: + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + dev: true + + /@tootallnate/once/2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true + + /@trysound/sax/0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + dev: true + + /@tsconfig/svelte/3.0.0: + resolution: {integrity: sha512-pYrtLtOwku/7r1i9AMONsJMVYAtk3hzOfiGNekhtq5tYBGA7unMve8RvUclKLMT3PrihvJqUmzsRGh0RP84hKg==} + dev: true + + /@types/aria-query/4.2.2: + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + dev: true + + /@types/aria-query/5.0.1: + resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + dev: true + + /@types/babel__core/7.1.20: + resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==} + dependencies: + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + '@types/babel__generator': 7.6.4 + '@types/babel__template': 7.4.1 + '@types/babel__traverse': 7.18.3 + dev: true + + /@types/babel__generator/7.6.4: + resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@types/babel__template/7.4.1: + resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + dependencies: + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + dev: true + + /@types/babel__traverse/7.18.3: + resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} + dependencies: + '@babel/types': 7.20.7 + dev: true + + /@types/chai-subset/1.3.3: + resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + dependencies: + '@types/chai': 4.3.4 + dev: true + + /@types/chai/4.3.4: + resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} + dev: true + + /@types/estree/0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true + + /@types/estree/1.0.0: + resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} + dev: true + + /@types/glob/8.0.0: + resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 18.11.18 + dev: true + + /@types/graceful-fs/4.1.5: + resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} + dependencies: + '@types/node': 18.11.18 + dev: true + + /@types/http-cache-semantics/4.0.1: + resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} + dev: true + + /@types/istanbul-lib-coverage/2.0.4: + resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: true + + /@types/istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + dev: true + + /@types/istanbul-reports/3.0.1: + resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + dependencies: + '@types/istanbul-lib-report': 3.0.0 + dev: true + + /@types/jest/29.2.5: + resolution: {integrity: sha512-H2cSxkKgVmqNHXP7TC2L/WUorrZu8ZigyRywfVzv6EyBlxj39n4C00hjXYQWsbwqgElaj/CiAeSRmk5GoaKTgw==} + dependencies: + expect: 29.3.1 + pretty-format: 29.3.1 + dev: true + + /@types/minimatch/3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true + + /@types/minimatch/5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + dev: true + + /@types/minimist/1.2.2: + resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + dev: true + + /@types/node/16.9.1: + resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==} + dev: true + + /@types/node/18.11.18: + resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} + dev: true + + /@types/normalize-package-data/2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + + /@types/parse-json/4.0.0: + resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + dev: true + + /@types/prettier/2.7.2: + resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} + dev: true + + /@types/prop-types/15.7.5: + resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + dev: true + + /@types/pug/2.0.6: + resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} + dev: true + + /@types/q/1.5.5: + resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} + dev: true + + /@types/react-dom/18.0.10: + resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} + dependencies: + '@types/react': 18.0.26 + dev: true + + /@types/react/18.0.26: + resolution: {integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.2 + csstype: 3.1.1 + dev: true + + /@types/resolve/1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 18.11.18 + dev: true + + /@types/sass/1.43.1: + resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} + dependencies: + '@types/node': 18.11.18 + dev: true + + /@types/scheduler/0.16.2: + resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} + dev: true + + /@types/stack-utils/2.0.1: + resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: true + + /@types/strip-bom/3.0.0: + resolution: {integrity: sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==} + dev: true + + /@types/strip-json-comments/0.0.30: + resolution: {integrity: sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==} + dev: true + + /@types/testing-library__jest-dom/5.14.5: + resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} + dependencies: + '@types/jest': 29.2.5 + dev: true + + /@types/yargs-parser/21.0.0: + resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + dev: true + + /@types/yargs/15.0.14: + resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==} + dependencies: + '@types/yargs-parser': 21.0.0 + dev: true + + /@types/yargs/17.0.18: + resolution: {integrity: sha512-eIJR1UER6ur3EpKM3d+2Pgd+ET+k6Kn9B4ZItX0oPjjVI5PrfaRjKyLT5UYendDpLuoiJMNJvovLQbEXqhsPaw==} + dependencies: + '@types/yargs-parser': 21.0.0 + dev: true + + /@vitejs/plugin-react/3.0.1_vite@4.0.4: + resolution: {integrity: sha512-mx+QvYwIbbpOIJw+hypjnW1lAbKDHtWK5ibkF/V1/oMBu8HU/chb+SnqJDAsLq1+7rGqjktCEomMTM5KShzUKQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.7 + magic-string: 0.27.0 + react-refresh: 0.14.0 + vite: 4.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@vitejs/plugin-vue/4.0.0_vite@4.0.4+vue@3.2.45: + resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0 + vue: ^3.2.25 + dependencies: + vite: 4.0.4 + vue: 3.2.45 + dev: true + + /@volar/language-core/1.0.24: + resolution: {integrity: sha512-vTN+alJiWwK0Pax6POqrmevbtFW2dXhjwWiW/MW4f48eDYPLdyURWcr8TixO7EN/nHsUBj2udT7igFKPtjyAKg==} + dependencies: + '@volar/source-map': 1.0.24 + muggle-string: 0.1.0 + dev: true + + /@volar/source-map/1.0.24: + resolution: {integrity: sha512-Qsv/tkplx18pgBr8lKAbM1vcDqgkGKQzbChg6NW+v0CZc3G7FLmK+WrqEPzKlN7Cwdc6XVL559Nod8WKAfKr4A==} + dependencies: + muggle-string: 0.1.0 + dev: true + + /@volar/typescript/1.0.24: + resolution: {integrity: sha512-f8hCSk+PfKR1/RQHxZ79V1NpDImHoivqoizK+mstphm25tn/YJ/JnKNjZHB+o21fuW0yKlI26NV3jkVb2Cc/7A==} + dependencies: + '@volar/language-core': 1.0.24 + dev: true + + /@volar/vue-language-core/1.0.24: + resolution: {integrity: sha512-2NTJzSgrwKu6uYwPqLiTMuAzi7fAY3yFy5PJ255bGJc82If0Xr+cW8pC80vpjG0D/aVLmlwAdO4+Ya2BI8GdDg==} + dependencies: + '@volar/language-core': 1.0.24 + '@volar/source-map': 1.0.24 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-sfc': 3.2.45 + '@vue/reactivity': 3.2.45 + '@vue/shared': 3.2.45 + minimatch: 5.1.2 + vue-template-compiler: 2.7.14 + dev: true + + /@volar/vue-typescript/1.0.24: + resolution: {integrity: sha512-9a25oHDvGaNC0okRS47uqJI6FxY4hUQZUsxeOUFHcqVxZEv8s17LPuP/pMMXyz7jPygrZubB/qXqHY5jEu/akA==} + dependencies: + '@volar/typescript': 1.0.24 + '@volar/vue-language-core': 1.0.24 + dev: true + + /@vue/babel-helper-vue-transform-on/1.0.2: + resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} + dev: true + + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.11.6: + resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} + dependencies: + '@babel/helper-module-imports': 7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.11.6 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + '@vue/babel-helper-vue-transform-on': 1.0.2 + camelcase: 6.3.0 + html-tags: 3.2.0 + svg-tags: 1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + /@vue/compiler-core/3.2.45: + resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} + dependencies: + '@babel/parser': 7.20.7 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + source-map: 0.6.1 + + /@vue/compiler-dom/3.2.45: + resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} + dependencies: + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/compiler-sfc/3.2.45: + resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} + dependencies: + '@babel/parser': 7.20.7 + '@vue/compiler-core': 3.2.45 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-ssr': 3.2.45 + '@vue/reactivity-transform': 3.2.45 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.20 + source-map: 0.6.1 + + /@vue/compiler-ssr/3.2.45: + resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} + dependencies: + '@vue/compiler-dom': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/reactivity-transform/3.2.45: + resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} + dependencies: + '@babel/parser': 7.20.7 + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + magic-string: 0.25.9 + + /@vue/reactivity/3.2.45: + resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==} + dependencies: + '@vue/shared': 3.2.45 + + /@vue/runtime-core/3.2.45: + resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==} + dependencies: + '@vue/reactivity': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/runtime-dom/3.2.45: + resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==} + dependencies: + '@vue/runtime-core': 3.2.45 + '@vue/shared': 3.2.45 + csstype: 2.6.21 + + /@vue/server-renderer/3.2.45_vue@3.2.45: + resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==} + peerDependencies: + vue: 3.2.45 + dependencies: + '@vue/compiler-ssr': 3.2.45 + '@vue/shared': 3.2.45 + vue: 3.2.45 + + /@vue/shared/3.2.45: + resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} + + /@vue/test-utils/2.2.6_vue@3.2.45: + resolution: {integrity: sha512-64zHtJZdG7V/U2L0j/z3Pt5bSygccI3xs+Kl7LB73AZK4MQ8WONJhqDQPK8leUFFA9CmmoJygeky7zcl2hX10A==} + peerDependencies: + vue: ^3.0.1 + dependencies: + vue: 3.2.45 + dev: true + + /@xmldom/xmldom/0.7.9: + resolution: {integrity: sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==} + engines: {node: '>=10.0.0'} + dev: true + + /@yarnpkg/lockfile/1.1.0: + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + dev: true + + /@yarnpkg/parsers/3.0.0-rc.35: + resolution: {integrity: sha512-J6ySgEdQUqAmlttvZOoXOEsrDTAnHyR/MtEvuAG5a+gwKY/2Cc7xn4CWcpgfuwkp+0a4vXmt2BDwzacDoGDN1g==} + engines: {node: '>=14.15.0'} + dependencies: + js-yaml: 3.14.1 + tslib: 2.4.1 + dev: true + + /@zkochan/js-yaml/0.0.6: + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /JSONStream/1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /a-sync-waterfall/1.0.1: + resolution: {integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==} + dev: true + + /abab/2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + dev: true + + /abbrev/1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true + + /acorn-globals/6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + dev: true + + /acorn-globals/7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + dependencies: + acorn: 8.8.1 + acorn-walk: 8.2.0 + dev: true + + /acorn-walk/7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn-walk/8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn/7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn/8.8.1: + resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /add-stream/1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + dev: true + + /adm-zip/0.5.10: + resolution: {integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==} + engines: {node: '>=6.0'} + dev: true + + /agent-base/6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /agentkeepalive/4.2.1: + resolution: {integrity: sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==} + engines: {node: '>= 8.0.0'} + dependencies: + debug: 4.3.4 + depd: 1.1.2 + humanize-ms: 1.2.1 + transitivePeerDependencies: + - supports-color + dev: true + + /aggregate-error/3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + dev: true + + /ajv/6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-align/3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + dependencies: + string-width: 4.2.3 + dev: true + + /ansi-colors/1.1.0: + resolution: {integrity: sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-wrap: 0.1.0 + dev: true + + /ansi-colors/4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + dev: true + + /ansi-escapes/4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-escapes/6.0.0: + resolution: {integrity: sha512-IG23inYII3dWlU2EyiAiGj6Bwal5GzsgPMwjYGvc1HPE2dgbj4ZB5ToWBKSquKw74nB3TIuOwaI6/jSULzfgrw==} + engines: {node: '>=14.16'} + dependencies: + type-fest: 3.5.1 + dev: true + + /ansi-gray/0.1.1: + resolution: {integrity: sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-wrap: 0.1.0 + dev: true + + /ansi-regex/2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + dev: true + + /ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-regex/6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + + /ansi-styles/2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + dev: true + + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles/5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + dev: true + + /ansi-styles/6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: true + + /ansi-wrap/0.1.0: + resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} + engines: {node: '>=0.10.0'} + dev: true + + /any-base/1.1.0: + resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==} + dev: true + + /anymatch/2.0.0: + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + dependencies: + micromatch: 3.1.10 + normalize-path: 2.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /append-buffer/1.0.2: + resolution: {integrity: sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==} + engines: {node: '>=0.10.0'} + dependencies: + buffer-equal: 1.0.1 + dev: true + + /aproba/1.2.0: + resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + dev: true + + /aproba/2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + dev: true + + /archy/1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + dev: true + + /are-we-there-yet/1.1.7: + resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} + dependencies: + delegates: 1.0.0 + readable-stream: 2.3.7 + dev: true + + /are-we-there-yet/3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.0 + dev: true + + /argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse/2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /aria-query/4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} + dependencies: + '@babel/runtime': 7.20.7 + '@babel/runtime-corejs3': 7.20.7 + dev: true + + /aria-query/5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + dependencies: + deep-equal: 2.1.0 + dev: true + + /arr-diff/4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + dev: true + + /arr-filter/1.1.2: + resolution: {integrity: sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==} + engines: {node: '>=0.10.0'} + dependencies: + make-iterator: 1.0.1 + dev: true + + /arr-flatten/1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + dev: true + + /arr-map/2.0.2: + resolution: {integrity: sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==} + engines: {node: '>=0.10.0'} + dependencies: + make-iterator: 1.0.1 + dev: true + + /arr-union/3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + dev: true + + /array-differ/1.0.0: + resolution: {integrity: sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==} + engines: {node: '>=0.10.0'} + dev: true + + /array-differ/3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + dev: true + + /array-each/1.0.1: + resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==} + engines: {node: '>=0.10.0'} + dev: true + + /array-find-index/1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + dev: true + + /array-ify/1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-initial/1.1.0: + resolution: {integrity: sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==} + engines: {node: '>=0.10.0'} + dependencies: + array-slice: 1.1.0 + is-number: 4.0.0 + dev: true + + /array-last/1.3.0: + resolution: {integrity: sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 4.0.0 + dev: true + + /array-slice/1.1.0: + resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==} + engines: {node: '>=0.10.0'} + dev: true + + /array-sort/1.0.0: + resolution: {integrity: sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==} + engines: {node: '>=0.10.0'} + dependencies: + default-compare: 1.0.0 + get-value: 2.0.6 + kind-of: 5.1.0 + dev: true + + /array-union/2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array-uniq/1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} + dev: true + + /array-unique/0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + dev: true + + /array.prototype.flatmap/1.2.4: + resolution: {integrity: sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + function-bind: 1.1.1 + dev: true + + /array.prototype.map/1.0.5: + resolution: {integrity: sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + dev: true + + /array.prototype.reduce/1.0.5: + resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + dev: true + + /arrify/1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /arrify/2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + dev: true + + /asap/2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + dev: true + + /asn1/0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /assert-plus/1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true + + /assertion-error/1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + dev: true + + /assign-symbols/1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + dev: true + + /ast-types/0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + dependencies: + tslib: 2.4.1 + dev: true + + /async-done/1.3.2: + resolution: {integrity: sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==} + engines: {node: '>= 0.10'} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + process-nextick-args: 2.0.1 + stream-exhaust: 1.0.2 + dev: true + + /async-each/1.0.3: + resolution: {integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==} + dev: true + + /async-foreach/0.1.3: + resolution: {integrity: sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==} + dev: true + + /async-retry/1.3.3: + resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + dependencies: + retry: 0.13.1 + dev: true + + /async-settle/1.0.0: + resolution: {integrity: sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==} + engines: {node: '>= 0.10'} + dependencies: + async-done: 1.3.2 + dev: true + + /async/3.2.4: + resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + dev: true + + /asynckit/0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + + /at-least-node/1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + + /atob/2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + dev: true + + /available-typed-arrays/1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /aws-sign2/0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true + + /aws4/1.11.0: + resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} + dev: true + + /axios/1.2.2: + resolution: {integrity: sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==} + dependencies: + follow-redirects: 1.15.2 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: true + + /babel-jest/26.6.3_@babel+core@7.20.7: + resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@jest/transform': 26.6.2 + '@jest/types': 26.6.2 + '@types/babel__core': 7.1.20 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 26.6.2_@babel+core@7.20.7 + chalk: 4.1.2 + graceful-fs: 4.2.10 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-jest/28.1.3_@babel+core@7.20.7: + resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.20.7 + '@jest/transform': 28.1.3 + '@types/babel__core': 7.1.20 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 28.1.3_@babel+core@7.20.7 + chalk: 4.1.2 + graceful-fs: 4.2.10 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-jest/29.3.1_@babel+core@7.20.7: + resolution: {integrity: sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.20.7 + '@jest/transform': 29.3.1 + '@types/babel__core': 7.1.20 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.2.0_@babel+core@7.20.7 + chalk: 4.1.2 + graceful-fs: 4.2.10 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-istanbul/6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + dependencies: + '@babel/helper-plugin-utils': 7.20.2 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-jest-hoist/26.6.2: + resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} + engines: {node: '>= 10.14.2'} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + '@types/babel__core': 7.1.20 + '@types/babel__traverse': 7.18.3 + dev: true + + /babel-plugin-jest-hoist/28.1.3: + resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + '@types/babel__core': 7.1.20 + '@types/babel__traverse': 7.18.3 + dev: true + + /babel-plugin-jest-hoist/29.2.0: + resolution: {integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + '@types/babel__core': 7.1.20 + '@types/babel__traverse': 7.18.3 + dev: true + + /babel-plugin-jsx-dom-expressions/0.35.9: + resolution: {integrity: sha512-YXb+I4dej5E94bzPzPBECUT5Q5vuSQJzsq1NgW8fe4gsgg6vcy6c6VqixgtY0UU8udKTc1Ls5CmgaFDj2fO9lA==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-module-imports': 7.16.0 + '@babel/plugin-syntax-jsx': 7.18.6 + '@babel/types': 7.20.7 + html-entities: 2.3.2 + dev: true + + /babel-plugin-macros/3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + dependencies: + '@babel/runtime': 7.20.7 + cosmiconfig: 7.0.1 + resolve: 1.22.1 + dev: true + + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.11.6: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.11.6 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.11.6 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.7: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.11.6: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.11.6 + core-js-compat: 3.27.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.7: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 + core-js-compat: 3.27.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.11.6: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.11.6 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.7: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-transform-hook-names/1.0.2: + resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} + peerDependencies: + '@babel/core': ^7.12.10 + dev: true + + /babel-plugin-transform-react-remove-prop-types/0.4.24: + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} + dev: true + + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.7: + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7 + dev: true + + /babel-preset-jest/26.6.2_@babel+core@7.20.7: + resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + babel-plugin-jest-hoist: 26.6.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 + dev: true + + /babel-preset-jest/28.1.3_@babel+core@7.20.7: + resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + babel-plugin-jest-hoist: 28.1.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 + dev: true + + /babel-preset-jest/29.2.0_@babel+core@7.20.7: + resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.7 + babel-plugin-jest-hoist: 29.2.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 + dev: true + + /babel-preset-preact/2.0.0: + resolution: {integrity: sha512-gqJCALE4XXEienLkzgAQ351XyoVHTIiZRAKjEJupK7cTVhFyovEuSrVoNrTNrUu3R78vAarjxkrR6j0vr+Rg8Q==} + dependencies: + '@babel/plugin-transform-react-jsx': 7.20.7 + transitivePeerDependencies: + - '@babel/core' + dev: true + + /babel-preset-react-app/10.0.1: + resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} + dependencies: + '@babel/core': 7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-decorators': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.7 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.7 + '@babel/preset-env': 7.20.2_@babel+core@7.20.7 + '@babel/preset-react': 7.18.6_@babel+core@7.20.7 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.7 + '@babel/runtime': 7.20.7 + babel-plugin-macros: 3.1.0 + babel-plugin-transform-react-remove-prop-types: 0.4.24 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-preset-solid/1.6.6: + resolution: {integrity: sha512-uG6svyjDRmQxLtRyydlJjFkvlOGYEd/xvfUZu58UuzJdiv40lZ34K+EcgbAFD85JPUdlnkr6bbHUpUXP/VK+Jg==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + babel-plugin-jsx-dom-expressions: 0.35.9 + dev: true + + /bach/1.2.0: + resolution: {integrity: sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==} + engines: {node: '>= 0.10'} + dependencies: + arr-filter: 1.1.2 + arr-flatten: 1.1.0 + arr-map: 2.0.2 + array-each: 1.0.1 + array-initial: 1.1.0 + array-last: 1.3.0 + async-done: 1.3.2 + async-settle: 1.0.0 + now-and-later: 2.0.1 + dev: true + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base/0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.0 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + dev: true + + /base64-js/1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /bcrypt-pbkdf/1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + dependencies: + tweetnacl: 0.14.5 + dev: true + + /beeper/1.1.1: + resolution: {integrity: sha512-3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==} + engines: {node: '>=0.10.0'} + dev: true + + /before-after-hook/2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true + + /bin-links/3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + cmd-shim: 5.0.0 + mkdirp-infer-owner: 2.0.0 + npm-normalize-package-bin: 2.0.0 + read-cmd-shim: 3.0.1 + rimraf: 3.0.2 + write-file-atomic: 4.0.2 + dev: true + + /binary-extensions/1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} + dev: true + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /bindings/1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + dependencies: + file-uri-to-path: 1.0.0 + dev: true + + /bl/4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /bl/5.1.0: + resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} + dependencies: + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /bmp-js/0.1.0: + resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==} + dev: true + + /boolbase/1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /boxen/5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + dependencies: + ansi-align: 3.0.1 + camelcase: 6.3.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + string-width: 4.2.3 + type-fest: 0.20.2 + widest-line: 3.1.0 + wrap-ansi: 7.0.0 + dev: true + + /boxen/7.0.1: + resolution: {integrity: sha512-8k2eH6SRAK00NDl1iX5q17RJ8rfl53TajdYxE3ssMLehbg487dEVgsad4pIsZb/QqBgYWIl6JOauMTLGX2Kpkw==} + engines: {node: '>=14.16'} + dependencies: + ansi-align: 3.0.1 + camelcase: 7.0.1 + chalk: 5.1.2 + cli-boxes: 3.0.0 + string-width: 5.1.2 + type-fest: 2.19.0 + widest-line: 4.0.1 + wrap-ansi: 8.0.1 + dev: true + + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion/2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces/2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /brotli-size/4.0.0: + resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==} + engines: {node: '>= 10.16.0'} + dependencies: + duplexer: 0.1.1 + dev: true + + /browser-process-hrtime/1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + dev: true + + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001441 + electron-to-chromium: 1.4.284 + node-releases: 2.0.8 + update-browserslist-db: 1.0.10_browserslist@4.21.4 + dev: true + + /bser/2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + dependencies: + node-int64: 0.4.0 + dev: true + + /buffer-crc32/0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + + /buffer-equal/0.0.1: + resolution: {integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==} + engines: {node: '>=0.4.0'} + dev: true + + /buffer-equal/1.0.1: + resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==} + engines: {node: '>=0.4'} + dev: true + + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /buffer/5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /buffer/6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /bufferstreams/1.1.3: + resolution: {integrity: sha512-HaJnVuslRF4g2kSDeyl++AaVizoitCpL9PglzCYwy0uHHyvWerfvEb8jWmYbF1z4kiVFolGomnxSGl+GUQp2jg==} + engines: {node: '>= 0.10.0'} + dependencies: + readable-stream: 2.3.7 + dev: true + + /bufferstreams/3.0.0: + resolution: {integrity: sha512-Qg0ggJUWJq90vtg4lDsGN9CDWvzBMQxhiEkSOD/sJfYt6BLect3eV1/S6K7SCSKJ34n60rf6U5eUPmQENVE4UA==} + engines: {node: '>=8.12.0'} + dependencies: + readable-stream: 3.6.0 + dev: true + + /builtin-modules/3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + + /builtins/1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + dev: true + + /builtins/5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.3.8 + dev: true + + /byte-size/7.0.1: + resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} + engines: {node: '>=10'} + dev: true + + /bytes/3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + dev: true + + /cacache/15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} + dependencies: + '@npmcli/fs': 1.1.1 + '@npmcli/move-file': 1.1.2 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 7.2.3 + infer-owner: 1.0.4 + lru-cache: 6.0.0 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 8.0.1 + tar: 6.1.13 + unique-filename: 1.1.1 + transitivePeerDependencies: + - bluebird + dev: true + + /cacache/16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/fs': 2.1.2 + '@npmcli/move-file': 2.0.1 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 8.0.3 + infer-owner: 1.0.4 + lru-cache: 7.14.1 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 9.0.1 + tar: 6.1.13 + unique-filename: 2.0.1 + transitivePeerDependencies: + - bluebird + dev: true + + /cache-base/1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.0 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + dev: true + + /cacheable-lookup/7.0.0: + resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} + engines: {node: '>=14.16'} + dev: true + + /cacheable-request/10.2.5: + resolution: {integrity: sha512-5RwYYCfzjNPsyJxb/QpaM0bfzx+kw5/YpDhZPm9oMIDntHFQ9YXeyV47ZvzlTE0XrrrbyO2UITJH4GF9eRLdXQ==} + engines: {node: '>=14.16'} + dependencies: + '@types/http-cache-semantics': 4.0.1 + get-stream: 6.0.1 + http-cache-semantics: 4.1.0 + keyv: 4.5.2 + mimic-response: 4.0.0 + normalize-url: 8.0.0 + responselike: 3.0.0 + dev: true + + /call-bind/1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.3 + dev: true + + /caller-callsite/2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + dependencies: + callsites: 2.0.0 + dev: true + + /caller-path/2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + dependencies: + caller-callsite: 2.0.0 + dev: true + + /callsites/2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + dev: true + + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camel-case/3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + dev: true + + /camelcase-keys/6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase/3.0.0: + resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==} + engines: {node: '>=0.10.0'} + dev: true + + /camelcase/5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /camelcase/7.0.1: + resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} + engines: {node: '>=14.16'} + dev: true + + /caniuse-lite/1.0.30001441: + resolution: {integrity: sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==} + dev: true + + /capture-exit/2.0.0: + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} + dependencies: + rsvp: 4.8.5 + dev: true + + /caseless/0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true + + /chai/4.3.7: + resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 4.1.3 + get-func-name: 2.0.0 + loupe: 2.3.6 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + + /chalk/1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + dev: true + + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk/4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk/5.1.2: + resolution: {integrity: sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: true + + /char-regex/1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + dev: true + + /chardet/0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true + + /check-error/1.0.2: + resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + dev: true + + /cheerio-select/2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + dependencies: + boolbase: 1.0.0 + css-select: 5.1.0 + css-what: 6.1.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.0.1 + dev: true + + /cheerio/1.0.0-rc.12: + resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + engines: {node: '>= 6'} + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.0.1 + htmlparser2: 8.0.1 + parse5: 7.1.2 + parse5-htmlparser2-tree-adapter: 7.0.0 + dev: true + + /chokidar/2.1.8: + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + dependencies: + anymatch: 2.0.0 + async-each: 1.0.3 + braces: 2.3.2 + glob-parent: 3.1.0 + inherits: 2.0.4 + is-binary-path: 1.0.1 + is-glob: 4.0.3 + normalize-path: 3.0.0 + path-is-absolute: 1.0.1 + readdirp: 2.2.1 + upath: 1.2.0 + optionalDependencies: + fsevents: 1.2.13 + transitivePeerDependencies: + - supports-color + dev: true + + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + requiresBuild: true + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /chownr/1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + dev: true + + /chownr/2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + dev: true + + /ci-info/2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + dev: true + + /ci-info/3.7.1: + resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==} + engines: {node: '>=8'} + dev: true + + /cjs-module-lexer/0.6.0: + resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} + dev: true + + /cjs-module-lexer/1.2.2: + resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} + dev: true + + /class-utils/0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + dev: true + + /clean-css/4.2.3: + resolution: {integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==} + engines: {node: '>= 4.0'} + dependencies: + source-map: 0.6.1 + dev: true + + /clean-stack/2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + dev: true + + /cli-boxes/2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + dev: true + + /cli-boxes/3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + dev: true + + /cli-cursor/3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-cursor/4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + restore-cursor: 4.0.0 + dev: true + + /cli-spinners/2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + dev: true + + /cli-spinners/2.7.0: + resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} + engines: {node: '>=6'} + dev: true + + /cli-width/3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true + + /cli-width/4.0.0: + resolution: {integrity: sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==} + engines: {node: '>= 12'} + dev: true + + /cliui/3.2.0: + resolution: {integrity: sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==} + dependencies: + string-width: 1.0.2 + strip-ansi: 3.0.1 + wrap-ansi: 2.1.0 + dev: true + + /cliui/6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + dev: true + + /cliui/7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone-buffer/1.0.0: + resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} + engines: {node: '>= 0.10'} + dev: true + + /clone-deep/4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + dev: true + + /clone-stats/0.0.1: + resolution: {integrity: sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==} + dev: true + + /clone-stats/1.0.0: + resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} + dev: true + + /clone/1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + + /clone/2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + dev: true + + /cloneable-readable/1.1.3: + resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==} + dependencies: + inherits: 2.0.4 + process-nextick-args: 2.0.1 + readable-stream: 2.3.7 + dev: true + + /cmd-shim/5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + mkdirp-infer-owner: 2.0.0 + dev: true + + /co/4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + dev: true + + /coa/2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} + dependencies: + '@types/q': 1.5.5 + chalk: 2.4.2 + q: 1.5.1 + dev: true + + /code-point-at/1.1.0: + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} + dev: true + + /collect-v8-coverage/1.0.1: + resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} + dev: true + + /collection-map/1.0.0: + resolution: {integrity: sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-map: 2.0.2 + for-own: 1.0.0 + make-iterator: 1.0.1 + dev: true + + /collection-visit/1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + dev: true + + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name/1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /color-string/1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + dev: true + + /color-support/1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + dev: true + + /color/3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + dependencies: + color-convert: 1.9.3 + color-string: 1.9.1 + dev: true + + /colors/1.4.0: + resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} + engines: {node: '>=0.1.90'} + dev: true + + /columnify/1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} + dependencies: + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /combined-stream/1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + + /commander/2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true + + /commander/4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: true + + /commander/5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + dev: true + + /commander/7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + + /commenting/1.1.0: + resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==} + dev: true + + /common-ancestor-path/1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + dev: true + + /commondir/1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: true + + /compare-func/2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /component-emitter/1.3.0: + resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + dev: true + + /concat-map/0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /concat-stream/1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 2.3.7 + typedarray: 0.0.6 + dev: true + + /concat-stream/2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.0 + typedarray: 0.0.6 + dev: true + + /config-chain/1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + dev: true + + /configstore/6.0.0: + resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} + engines: {node: '>=12'} + dependencies: + dot-prop: 6.0.1 + graceful-fs: 4.2.10 + unique-string: 3.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 5.1.0 + dev: true + + /console-control-strings/1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + dev: true + + /conventional-changelog-angular/5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-core/4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} + dependencies: + add-stream: 1.0.0 + conventional-changelog-writer: 5.0.1 + conventional-commits-parser: 3.2.4 + dateformat: 3.0.3 + get-pkg-repo: 4.2.1 + git-raw-commits: 2.0.11 + git-remote-origin-url: 2.0.0 + git-semver-tags: 4.1.1 + lodash: 4.17.21 + normalize-package-data: 3.0.3 + q: 1.5.1 + read-pkg: 3.0.0 + read-pkg-up: 3.0.0 + through2: 4.0.2 + dev: true + + /conventional-changelog-preset-loader/2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + dev: true + + /conventional-changelog-writer/5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + conventional-commits-filter: 2.0.7 + dateformat: 3.0.3 + handlebars: 4.7.7 + json-stringify-safe: 5.0.1 + lodash: 4.17.21 + meow: 8.1.2 + semver: 6.3.0 + split: 1.0.1 + through2: 4.0.2 + dev: true + + /conventional-commits-filter/2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 + dev: true + + /conventional-commits-parser/3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /conventional-recommended-bump/6.1.0: + resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + concat-stream: 2.0.0 + conventional-changelog-preset-loader: 2.3.4 + conventional-commits-filter: 2.0.7 + conventional-commits-parser: 3.2.4 + git-raw-commits: 2.0.11 + git-semver-tags: 4.1.1 + meow: 8.1.2 + q: 1.5.1 + dev: true + + /convert-source-map/1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + dev: true + + /convert-source-map/2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + dev: true + + /copy-descriptor/0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + dev: true + + /copy-props/2.0.5: + resolution: {integrity: sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==} + dependencies: + each-props: 1.3.2 + is-plain-object: 5.0.0 + dev: true + + /core-js-compat/3.27.1: + resolution: {integrity: sha512-Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA==} + dependencies: + browserslist: 4.21.4 + dev: true + + /core-js-pure/3.27.1: + resolution: {integrity: sha512-BS2NHgwwUppfeoqOXqi08mUqS5FiZpuRuJJpKsaME7kJz0xxuk0xkhDdfMIlP/zLa80krBqss1LtD7f889heAw==} + requiresBuild: true + dev: true + + /core-util-is/1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true + + /core-util-is/1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + dev: true + + /cosmiconfig/5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + dependencies: + import-fresh: 2.0.0 + is-directory: 0.3.1 + js-yaml: 3.14.1 + parse-json: 4.0.0 + dev: true + + /cosmiconfig/6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cosmiconfig/7.0.1: + resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cosmiconfig/8.0.0: + resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==} + engines: {node: '>=14'} + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + dev: true + + /cross-spawn/6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.1 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn/7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto-random-string/4.0.0: + resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} + engines: {node: '>=12'} + dependencies: + type-fest: 1.4.0 + dev: true + + /css-select-base-adapter/0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + dev: true + + /css-select/2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + dependencies: + boolbase: 1.0.0 + css-what: 3.4.2 + domutils: 1.7.0 + nth-check: 1.0.2 + dev: true + + /css-select/4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + dev: true + + /css-select/5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.0.1 + nth-check: 2.1.1 + dev: true + + /css-tree/1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} + dependencies: + mdn-data: 2.0.4 + source-map: 0.6.1 + dev: true + + /css-tree/1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + dev: true + + /css-what/3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + dev: true + + /css-what/6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: true + + /css.escape/1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + dev: true + + /css/2.2.4: + resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==} + dependencies: + inherits: 2.0.4 + source-map: 0.6.1 + source-map-resolve: 0.5.3 + urix: 0.1.0 + dev: true + + /csso/4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + dependencies: + css-tree: 1.1.3 + dev: true + + /cssom/0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + dev: true + + /cssom/0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + dev: true + + /cssom/0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + dev: true + + /cssstyle/2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + dependencies: + cssom: 0.3.8 + dev: true + + /csstype/2.6.21: + resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} + + /csstype/3.1.1: + resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} + dev: true + + /csv-parser/3.0.0: + resolution: {integrity: sha512-s6OYSXAK3IdKqYO33y09jhypG/bSDHPuyCme/IdEHfWpLf/jKcpitVFyOC6UemgGk8v7Q5u2XE0vvwmanxhGlQ==} + engines: {node: '>= 10'} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /cubic2quad/1.2.1: + resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==} + dev: true + + /d/1.0.1: + resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} + dependencies: + es5-ext: 0.10.62 + type: 1.2.0 + dev: true + + /dargs/7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /dashdash/1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + dependencies: + assert-plus: 1.0.0 + dev: true + + /data-uri-to-buffer/3.0.1: + resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} + engines: {node: '>= 6'} + dev: true + + /data-uri-to-buffer/4.0.0: + resolution: {integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==} + engines: {node: '>= 12'} + dev: true + + /data-urls/2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + dev: true + + /data-urls/3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + dev: true + + /dateformat/2.2.0: + resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==} + dev: true + + /dateformat/3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + dev: true + + /de-indent/1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + dev: true + + /debug/2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /debuglog/1.0.1: + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} + dev: true + + /decamelize-keys/1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize/1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decimal.js/10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true + + /decode-uri-component/0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + dev: true + + /decompress-response/4.2.1: + resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==} + engines: {node: '>=8'} + dependencies: + mimic-response: 2.1.0 + dev: true + + /decompress-response/6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + dependencies: + mimic-response: 3.1.0 + dev: true + + /dedent/0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dev: true + + /deep-eql/4.1.3: + resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} + engines: {node: '>=6'} + dependencies: + type-detect: 4.0.8 + dev: true + + /deep-equal/2.1.0: + resolution: {integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==} + dependencies: + call-bind: 1.0.2 + es-get-iterator: 1.1.2 + get-intrinsic: 1.1.3 + is-arguments: 1.1.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 + isarray: 2.0.5 + object-is: 1.1.5 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + side-channel: 1.0.4 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.9 + dev: true + + /deep-extend/0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: true + + /deep-is/0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /deep-rename-keys/0.2.1: + resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + rename-keys: 1.2.0 + dev: true + + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: true + + /default-compare/1.0.0: + resolution: {integrity: sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 5.1.0 + dev: true + + /default-resolution/2.0.0: + resolution: {integrity: sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==} + engines: {node: '>= 0.10'} + dev: true + + /defaults/1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + dependencies: + clone: 1.0.4 + dev: true + + /defer-to-connect/2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + dev: true + + /define-lazy-prop/2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + dev: true + + /define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /define-property/0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 0.1.6 + dev: true + + /define-property/1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + dev: true + + /define-property/2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + isobject: 3.0.1 + dev: true + + /degenerator/3.0.2: + resolution: {integrity: sha512-c0mef3SNQo56t6urUU6tdQAs+ThoD0o9B9MJ8HEt7NQcGEILCRFqQb7ZbP9JAv+QF1Ky5plydhMR/IrqWDm+TQ==} + engines: {node: '>= 6'} + dependencies: + ast-types: 0.13.4 + escodegen: 1.14.3 + esprima: 4.0.1 + vm2: 3.9.13 + dev: true + + /delayed-stream/1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true + + /delegates/1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + dev: true + + /depd/1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + dev: true + + /depd/2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + dev: true + + /deprecation/2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: true + + /detect-file/1.0.0: + resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} + engines: {node: '>=0.10.0'} + dev: true + + /detect-indent/5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + dev: true + + /detect-indent/6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + + /detect-libc/1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + + /detect-newline/3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + dev: true + + /dezalgo/1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + dependencies: + asap: 2.0.6 + wrappy: 1.0.2 + dev: true + + /diff-sequences/26.6.2: + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} + dev: true + + /diff-sequences/28.1.1: + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true + + /diff-sequences/29.3.1: + resolution: {integrity: sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /dir-glob/3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /dom-accessibility-api/0.5.15: + resolution: {integrity: sha512-8o+oVqLQZoruQPYy3uAAQtc6YbtSiRq5aPJBhJ82YTJRHvI6ofhYAkC81WmjFTnfUbqg6T3aCglIpU9p/5e7Cw==} + dev: true + + /dom-serializer/0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + dependencies: + domelementtype: 2.3.0 + entities: 2.2.0 + dev: true + + /dom-serializer/1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + dev: true + + /dom-serializer/2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.4.0 + dev: true + + /dom-walk/0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + dev: true + + /domelementtype/1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + dev: true + + /domelementtype/2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domexception/2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + dependencies: + webidl-conversions: 5.0.0 + dev: true + + /domexception/4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + dependencies: + webidl-conversions: 7.0.0 + dev: true + + /domhandler/4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domhandler/5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils/1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + dependencies: + dom-serializer: 0.2.2 + domelementtype: 1.3.1 + dev: true + + /domutils/2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + dev: true + + /domutils/3.0.1: + resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: true + + /dot-prop/5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /dot-prop/6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} + dependencies: + is-obj: 2.0.0 + dev: true + + /dotenv/10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + dev: true + + /duplexer/0.1.1: + resolution: {integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==} + dev: true + + /duplexer/0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /duplexer2/0.0.2: + resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==} + dependencies: + readable-stream: 1.1.14 + dev: true + + /duplexer2/0.1.4: + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + dependencies: + readable-stream: 2.3.7 + dev: true + + /duplexify/3.7.1: + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + dependencies: + end-of-stream: 1.4.4 + inherits: 2.0.4 + readable-stream: 2.3.7 + stream-shift: 1.0.1 + dev: true + + /each-props/1.3.2: + resolution: {integrity: sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==} + dependencies: + is-plain-object: 2.0.4 + object.defaults: 1.1.0 + dev: true + + /eastasianwidth/0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + + /ecc-jsbn/0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + dev: true + + /ejs/3.1.8: + resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + jake: 10.8.5 + dev: true + + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} + dev: true + + /emittery/0.10.2: + resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} + engines: {node: '>=12'} + dev: true + + /emittery/0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + dev: true + + /emittery/0.7.2: + resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} + engines: {node: '>=10'} + dev: true + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /emoji-regex/9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + + /encoding/0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + requiresBuild: true + dependencies: + iconv-lite: 0.6.3 + dev: true + optional: true + + /end-of-stream/1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /enquirer/2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + dev: true + + /ensure-posix-path/1.1.1: + resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==} + dev: true + + /entities/2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + dev: true + + /entities/4.4.0: + resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} + engines: {node: '>=0.12'} + dev: true + + /env-paths/2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + dev: true + + /envinfo/7.8.1: + resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /err-code/2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + dev: true + + /error-ex/1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract/1.20.5: + resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.3 + get-symbol-description: 1.0.0 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.4 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + safe-regex-test: 1.0.0 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + unbox-primitive: 1.0.2 + dev: true + + /es-array-method-boxes-properly/1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + dev: true + + /es-get-iterator/1.1.2: + resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + has-symbols: 1.0.3 + is-arguments: 1.1.1 + is-map: 2.0.2 + is-set: 2.0.2 + is-string: 1.0.7 + isarray: 2.0.5 + dev: true + + /es-module-lexer/0.9.3: + resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} + dev: true + + /es-to-primitive/1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /es5-ext/0.10.62: + resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} + engines: {node: '>=0.10'} + requiresBuild: true + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + next-tick: 1.1.0 + dev: true + + /es6-iterator/2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-symbol: 3.1.3 + dev: true + + /es6-promise/3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + dev: true + + /es6-symbol/3.1.3: + resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} + dependencies: + d: 1.0.1 + ext: 1.7.0 + dev: true + + /es6-weak-map/2.0.3: + resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + dev: true + + /esbuild/0.16.14: + resolution: {integrity: sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.16.14 + '@esbuild/android-arm64': 0.16.14 + '@esbuild/android-x64': 0.16.14 + '@esbuild/darwin-arm64': 0.16.14 + '@esbuild/darwin-x64': 0.16.14 + '@esbuild/freebsd-arm64': 0.16.14 + '@esbuild/freebsd-x64': 0.16.14 + '@esbuild/linux-arm': 0.16.14 + '@esbuild/linux-arm64': 0.16.14 + '@esbuild/linux-ia32': 0.16.14 + '@esbuild/linux-loong64': 0.16.14 + '@esbuild/linux-mips64el': 0.16.14 + '@esbuild/linux-ppc64': 0.16.14 + '@esbuild/linux-riscv64': 0.16.14 + '@esbuild/linux-s390x': 0.16.14 + '@esbuild/linux-x64': 0.16.14 + '@esbuild/netbsd-x64': 0.16.14 + '@esbuild/openbsd-x64': 0.16.14 + '@esbuild/sunos-x64': 0.16.14 + '@esbuild/win32-arm64': 0.16.14 + '@esbuild/win32-ia32': 0.16.14 + '@esbuild/win32-x64': 0.16.14 + dev: true + + /escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-goat/4.0.0: + resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} + engines: {node: '>=12'} + dev: true + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp/2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + dev: true + + /escape-string-regexp/5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + dev: true + + /escodegen/1.14.3: + resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} + engines: {node: '>=4.0'} + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 4.3.0 + esutils: 2.0.3 + optionator: 0.8.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /escodegen/2.0.0: + resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} + engines: {node: '>=6.0'} + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionator: 0.8.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery/1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse/5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker/0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + dev: true + + /estree-walker/1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true + + /estree-walker/2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + /esutils/2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /eventemitter3/2.0.3: + resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} + dev: true + + /eventemitter3/4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + dev: true + + /exec-sh/0.3.6: + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + dev: true + + /execa/1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + dev: true + + /execa/4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa/5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa/6.1.0: + resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 3.0.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + + /exif-parser/0.1.12: + resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==} + dev: true + + /exit/0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + dev: true + + /expand-brackets/2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /expand-template/2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + dev: true + + /expand-tilde/2.0.2: + resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} + engines: {node: '>=0.10.0'} + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /expect/26.6.2: + resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + ansi-styles: 4.3.0 + jest-get-type: 26.3.0 + jest-matcher-utils: 26.6.2 + jest-message-util: 26.6.2 + jest-regex-util: 26.0.0 + dev: true + + /expect/28.1.3: + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/expect-utils': 28.1.3 + jest-get-type: 28.0.2 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + dev: true + + /expect/29.3.1: + resolution: {integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/expect-utils': 29.3.1 + jest-get-type: 29.2.0 + jest-matcher-utils: 29.3.1 + jest-message-util: 29.3.1 + jest-util: 29.3.1 + dev: true + + /ext/1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + dependencies: + type: 2.7.2 + dev: true + + /extend-shallow/2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + dev: true + + /extend-shallow/3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + dev: true + + /extend/3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: true + + /external-editor/3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /extglob/2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /extract-from-css/0.4.4: + resolution: {integrity: sha512-41qWGBdtKp9U7sgBxAQ7vonYqSXzgW/SiAYzq4tdWSVhAShvpVCH1nyvPQgjse6EdgbW7Y7ERdT3674/lKr65A==} + engines: {node: '>=0.10.0', npm: '>=2.0.0'} + dependencies: + css: 2.2.4 + dev: true + + /extsprintf/1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true + + /fancy-log/1.3.3: + resolution: {integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==} + engines: {node: '>= 0.10'} + dependencies: + ansi-gray: 0.1.1 + color-support: 1.1.3 + parse-node-version: 1.0.1 + time-stamp: 1.1.0 + dev: true + + /fast-deep-equal/3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-glob/3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-glob/3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein/1.1.4: + resolution: {integrity: sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==} + dev: true + + /fast-levenshtein/2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq/1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + dependencies: + reusify: 1.0.4 + dev: true + + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + dependencies: + bser: 2.1.1 + dev: true + + /fetch-blob/3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.2.1 + dev: true + + /figures/3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /figures/5.0.0: + resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==} + engines: {node: '>=14'} + dependencies: + escape-string-regexp: 5.0.0 + is-unicode-supported: 1.3.0 + dev: true + + /file-type/9.0.0: + resolution: {integrity: sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==} + engines: {node: '>=6'} + dev: true + + /file-uri-to-path/1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + dev: true + + /file-uri-to-path/2.0.0: + resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==} + engines: {node: '>= 6'} + dev: true + + /filelist/1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + dependencies: + minimatch: 5.1.2 + dev: true + + /filesize/6.4.0: + resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==} + engines: {node: '>= 0.4.0'} + dev: true + + /fill-range/4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + dev: true + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-up/1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + dependencies: + path-exists: 2.1.0 + pinkie-promise: 2.0.1 + dev: true + + /find-up/2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up/4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /findup-sync/2.0.0: + resolution: {integrity: sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==} + engines: {node: '>= 0.10'} + dependencies: + detect-file: 1.0.0 + is-glob: 3.1.0 + micromatch: 3.1.10 + resolve-dir: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /findup-sync/3.0.0: + resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==} + engines: {node: '>= 0.10'} + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 3.1.10 + resolve-dir: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /fined/1.2.0: + resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==} + engines: {node: '>= 0.10'} + dependencies: + expand-tilde: 2.0.2 + is-plain-object: 2.0.4 + object.defaults: 1.1.0 + object.pick: 1.3.0 + parse-filepath: 1.0.2 + dev: true + + /flagged-respawn/1.0.1: + resolution: {integrity: sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==} + engines: {node: '>= 0.10'} + dev: true + + /flat/5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + dev: true + + /flush-write-stream/1.1.1: + resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.7 + dev: true + + /follow-redirects/1.15.2: + resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: true + + /for-each/0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /for-in/1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + dev: true + + /for-own/1.0.0: + resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + dev: true + + /forever-agent/0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true + + /form-data-encoder/2.1.4: + resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} + engines: {node: '>= 14.17'} + dev: true + + /form-data/2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data/3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data/4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /formdata-polyfill/4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + dependencies: + fetch-blob: 3.2.0 + dev: true + + /fragment-cache/0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + dependencies: + map-cache: 0.2.2 + dev: true + + /fs-constants/1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + dev: true + + /fs-extra/10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs-extra/8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 4.0.0 + universalify: 0.1.2 + dev: true + + /fs-extra/9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs-minipass/2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /fs-mkdirp-stream/1.0.0: + resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==} + engines: {node: '>= 0.10'} + dependencies: + graceful-fs: 4.2.10 + through2: 2.0.5 + dev: true + + /fs-readdir-recursive/1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + dev: true + + /fs.realpath/1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents/1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. + requiresBuild: true + dependencies: + bindings: 1.5.0 + nan: 2.17.0 + dev: true + optional: true + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /ftp/0.3.10: + resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==} + engines: {node: '>=0.8.0'} + dependencies: + readable-stream: 1.1.14 + xregexp: 2.0.0 + dev: true + + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true + + /function.prototype.name/1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names/1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gauge/2.7.4: + resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + dev: true + + /gauge/4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + dev: true + + /gaze/1.1.3: + resolution: {integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==} + engines: {node: '>= 4.0.0'} + dependencies: + globule: 1.3.4 + dev: true + + /gensync/1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + + /geometry-interfaces/1.1.4: + resolution: {integrity: sha512-qD6OdkT6NcES9l4Xx3auTpwraQruU7dARbQPVO71MKvkGYw5/z/oIiGymuFXrRaEQa5Y67EIojUpaLeGEa5hGA==} + dev: true + + /get-caller-file/1.0.3: + resolution: {integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==} + dev: true + + /get-caller-file/2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-func-name/2.0.0: + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + dev: true + + /get-intrinsic/1.1.3: + resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-package-type/0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + dev: true + + /get-pkg-repo/4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + dependencies: + '@hutson/parse-repository-url': 3.0.2 + hosted-git-info: 4.1.0 + through2: 2.0.5 + yargs: 16.2.0 + dev: true + + /get-port/5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + dev: true + + /get-stdin/4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + dev: true + + /get-stream/4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream/5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream/6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + dev: true + + /get-uri/3.0.2: + resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 1.1.2 + data-uri-to-buffer: 3.0.1 + debug: 4.3.4 + file-uri-to-path: 2.0.0 + fs-extra: 8.1.0 + ftp: 0.3.10 + transitivePeerDependencies: + - supports-color + dev: true + + /get-value/2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + dev: true + + /getpass/0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + dependencies: + assert-plus: 1.0.0 + dev: true + + /gifwrap/0.9.4: + resolution: {integrity: sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==} + dependencies: + image-q: 4.0.0 + omggif: 1.0.10 + dev: true + + /git-raw-commits/2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /git-remote-origin-url/2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + dependencies: + gitconfiglocal: 1.0.0 + pify: 2.3.0 + dev: true + + /git-semver-tags/4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + meow: 8.1.2 + semver: 6.3.0 + dev: true + + /git-up/7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + dependencies: + is-ssh: 1.4.0 + parse-url: 8.1.0 + dev: true + + /git-url-parse/13.1.0: + resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} + dependencies: + git-up: 7.0.0 + dev: true + + /gitconfiglocal/1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + dependencies: + ini: 1.3.8 + dev: true + + /github-from-package/0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + dev: true + + /glob-parent/3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + dependencies: + is-glob: 3.1.0 + path-dirname: 1.0.2 + dev: true + + /glob-parent/5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-promise/5.0.1_glob@8.0.3: + resolution: {integrity: sha512-NvgDgLv2xE6W8EC1zCLtTQNd2UN0toCaHiBiRc9/uKQ/wSC+WWs7BtaPcJzHgKMfvIP8oD+2KgNpzCx9YB8/0Q==} + engines: {node: '>=16'} + requiresBuild: true + peerDependencies: + glob: ^8.0.3 + dependencies: + '@types/glob': 8.0.0 + glob: 8.0.3 + npm-install-peers: 1.2.2 + dev: true + + /glob-stream/6.1.0: + resolution: {integrity: sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==} + engines: {node: '>= 0.10'} + dependencies: + extend: 3.0.2 + glob: 7.2.3 + glob-parent: 3.1.0 + is-negated-glob: 1.0.0 + ordered-read-streams: 1.0.1 + pumpify: 1.5.1 + readable-stream: 2.3.7 + remove-trailing-separator: 1.1.0 + to-absolute-glob: 2.0.2 + unique-stream: 2.3.1 + dev: true + + /glob-watcher/5.0.5: + resolution: {integrity: sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==} + engines: {node: '>= 0.10'} + dependencies: + anymatch: 2.0.0 + async-done: 1.3.2 + chokidar: 2.1.8 + is-negated-glob: 1.0.0 + just-debounce: 1.1.0 + normalize-path: 3.0.0 + object.defaults: 1.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /glob/7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob/7.1.6: + resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob/8.0.3: + resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.2 + once: 1.4.0 + dev: true + + /global-dirs/3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + dependencies: + ini: 2.0.0 + dev: true + + /global-modules/1.0.0: + resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} + engines: {node: '>=0.10.0'} + dependencies: + global-prefix: 1.0.2 + is-windows: 1.0.2 + resolve-dir: 1.0.1 + dev: true + + /global-prefix/1.0.2: + resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + homedir-polyfill: 1.0.3 + ini: 1.3.8 + is-windows: 1.0.2 + which: 1.3.1 + dev: true + + /global/4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + dependencies: + min-document: 2.19.0 + process: 0.11.10 + dev: true + + /globals/11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + + /globby/11.0.4: + resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby/13.1.2: + resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + + /globule/1.3.4: + resolution: {integrity: sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==} + engines: {node: '>= 0.10'} + dependencies: + glob: 7.1.6 + lodash: 4.17.21 + minimatch: 3.0.8 + dev: true + + /glogg/1.0.2: + resolution: {integrity: sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==} + engines: {node: '>= 0.10'} + dependencies: + sparkles: 1.0.1 + dev: true + + /gopd/1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.1.3 + dev: true + + /got/12.5.3: + resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==} + engines: {node: '>=14.16'} + dependencies: + '@sindresorhus/is': 5.3.0 + '@szmarczak/http-timer': 5.0.1 + cacheable-lookup: 7.0.0 + cacheable-request: 10.2.5 + decompress-response: 6.0.0 + form-data-encoder: 2.1.4 + get-stream: 6.0.1 + http2-wrapper: 2.2.0 + lowercase-keys: 3.0.0 + p-cancelable: 3.0.0 + responselike: 3.0.0 + dev: true + + /graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: true + + /growly/1.3.0: + resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} + dev: true + optional: true + + /gulp-cli/2.3.0: + resolution: {integrity: sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==} + engines: {node: '>= 0.10'} + hasBin: true + dependencies: + ansi-colors: 1.1.0 + archy: 1.0.0 + array-sort: 1.0.0 + color-support: 1.1.3 + concat-stream: 1.6.2 + copy-props: 2.0.5 + fancy-log: 1.3.3 + gulplog: 1.0.0 + interpret: 1.4.0 + isobject: 3.0.1 + liftoff: 3.1.0 + matchdep: 2.0.0 + mute-stdout: 1.0.1 + pretty-hrtime: 1.0.3 + replace-homedir: 1.0.0 + semver-greatest-satisfied-range: 1.1.0 + v8flags: 3.2.0 + yargs: 7.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /gulp-iconfont/11.0.1: + resolution: {integrity: sha512-/BD0ofW4AzBriL/J2m5gONq655Gco0ZZUhW7O2PibHv2KtGLShA1TOFRH5YRBE7almQ0UO3wwvAwNn5NLg1tLQ==} + engines: {node: '>=12'} + dependencies: + gulp-spawn: 1.0.0 + gulp-svg2ttf: 2.0.1 + gulp-svgicons2svgfont: 5.0.1 + gulp-ttf2eot: 1.1.2 + gulp-ttf2woff: 1.1.1 + gulp-ttf2woff2: 4.0.1 + multipipe: 4.0.0 + streamfilter: 3.0.0 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /gulp-spawn/1.0.0: + resolution: {integrity: sha512-epOLLYkh9pkqPZHZNw5pVPzNFSS1Dta2Ya+rTwqF/Rvqy0kCQcLaTic87MPxcyJniNRs+ajhnvm7WnzMjkJPpw==} + engines: {node: '>=12'} + dependencies: + plexer: 2.0.0 + plugin-error: 1.0.1 + dev: true + + /gulp-svg2ttf/2.0.1: + resolution: {integrity: sha512-L0oi56jjFKSGXSZfmG1YKwiC5pe5JrQtF5a54xgAqUSBtAcSfBYC2JfOatF2qefIUu+uLCH8rPmfSZozw+WYng==} + engines: {node: '>= 0.10.0'} + dependencies: + bufferstreams: 1.1.3 + gulp-util: 3.0.8 + readable-stream: 2.3.7 + svg2ttf: 4.3.0 + dev: true + + /gulp-svgicons2svgfont/5.0.1: + resolution: {integrity: sha512-wXPQGpQ8bjP2oV25Cq39+r+RjPRQ4u4aCAmBXsXm48Lsx7xfDdTG8dE8uZcheK68pcHTdNm+FK1QMKhKYbwMGA==} + engines: {node: '>= 6.11.1'} + dependencies: + fancy-log: 1.3.3 + plugin-error: 1.0.1 + readable-stream: 2.3.7 + streamifier: 0.1.1 + svgicons2svgfont: 9.2.0 + vinyl: 2.2.1 + dev: true + + /gulp-svgo/2.2.1: + resolution: {integrity: sha512-SjAwrSGTyLOdGcXphCQuwSQyWNWTgTLbmgx7WYGAXrzuQSacA5dgxKDp7TPl5GrbdOpzMzXYnwlnDndzp95jtg==} + engines: {node: '>=8.0.0'} + dependencies: + svgo: 1.3.2 + dev: true + + /gulp-ttf2eot/1.1.2: + resolution: {integrity: sha512-B2NwwG+QVMF6ETzeXwZHx6MeYEx0oHguIj0ZjPhqtKM3iXuDOrYbT2054q73cTI6hn2GMNAQWy11GjZM+LUxRg==} + engines: {node: '>= 0.10.0'} + dependencies: + bufferstreams: 1.1.3 + gulp-util: 3.0.8 + readable-stream: 2.3.7 + ttf2eot: 2.0.0 + dev: true + + /gulp-ttf2woff/1.1.1: + resolution: {integrity: sha512-l230Pv3CzE9OND8GlXyrdLvBjrfS2VCVs8g0+L6DaglqnW7aZFvZdeDH5VFe0zfp16n/zNPf4HBNfNStn9iXDA==} + engines: {node: '>= 0.10.0'} + dependencies: + bufferstreams: 1.1.3 + gulp-util: 3.0.8 + readable-stream: 2.3.7 + ttf2woff: 2.0.2 + dev: true + + /gulp-ttf2woff2/4.0.1: + resolution: {integrity: sha512-VkeQaXqTud/e4mDLIuWzRbR7+1QGkmmpRYek/cFZTe7pwsQJshisqSwPwxM7CBrypD7zK8WEH3ktNzFSsyanVg==} + engines: {node: '>=12'} + dependencies: + bufferstreams: 3.0.0 + plugin-error: 1.0.1 + readable-stream: 3.6.0 + replace-ext: 2.0.0 + ttf2woff2: 4.0.5 + vinyl: 2.2.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /gulp-util/3.0.8: + resolution: {integrity: sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==} + engines: {node: '>=0.10'} + deprecated: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5 + dependencies: + array-differ: 1.0.0 + array-uniq: 1.0.3 + beeper: 1.1.1 + chalk: 1.1.3 + dateformat: 2.2.0 + fancy-log: 1.3.3 + gulplog: 1.0.0 + has-gulplog: 0.1.0 + lodash._reescape: 3.0.0 + lodash._reevaluate: 3.0.0 + lodash._reinterpolate: 3.0.0 + lodash.template: 3.6.2 + minimist: 1.2.6 + multipipe: 0.1.2 + object-assign: 3.0.0 + replace-ext: 0.0.1 + through2: 2.0.5 + vinyl: 0.5.3 + dev: true + + /gulp-zip/5.1.0_gulp@4.0.2: + resolution: {integrity: sha512-XZr/y91IliK/SpR74g3TkZejGkGEmK7CSDjSghT1jXshgO+dFvpLIz9w9fpuwkew6i7k4F+G24TubNgq1ISzEw==} + engines: {node: '>=8'} + peerDependencies: + gulp: '>=4' + peerDependenciesMeta: + gulp: + optional: true + dependencies: + get-stream: 5.2.0 + gulp: 4.0.2 + plugin-error: 1.0.1 + through2: 3.0.2 + vinyl: 2.2.1 + yazl: 2.5.1 + dev: true + + /gulp/4.0.2: + resolution: {integrity: sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==} + engines: {node: '>= 0.10'} + hasBin: true + dependencies: + glob-watcher: 5.0.5 + gulp-cli: 2.3.0 + undertaker: 1.3.0 + vinyl-fs: 3.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /gulplog/1.0.0: + resolution: {integrity: sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==} + engines: {node: '>= 0.10'} + dependencies: + glogg: 1.0.2 + dev: true + + /gzip-size/6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + dev: true + + /handlebars/4.7.7: + resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} + engines: {node: '>=0.4.7'} + hasBin: true + dependencies: + minimist: 1.2.6 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.17.4 + dev: true + + /har-schema/2.0.0: + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} + dev: true + + /har-validator/5.1.5: + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} + deprecated: this library is no longer supported + dependencies: + ajv: 6.12.6 + har-schema: 2.0.0 + dev: true + + /hard-rejection/2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-ansi/2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: 2.1.1 + dev: true + + /has-bigints/1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag/3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-gulplog/0.1.0: + resolution: {integrity: sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==} + engines: {node: '>= 0.10'} + dependencies: + sparkles: 1.0.1 + dev: true + + /has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.3 + dev: true + + /has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-unicode/2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + dev: true + + /has-value/0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + dev: true + + /has-value/1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + dev: true + + /has-values/0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + dev: true + + /has-values/1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + dev: true + + /has-yarn/3.0.0: + resolution: {integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: true + + /he/1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + dev: true + + /homedir-polyfill/1.0.3: + resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} + engines: {node: '>=0.10.0'} + dependencies: + parse-passwd: 1.0.0 + dev: true + + /hosted-git-info/2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info/3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /hosted-git-info/4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /hosted-git-info/5.2.1: + resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + lru-cache: 7.14.1 + dev: true + + /html-encoding-sniffer/2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} + dependencies: + whatwg-encoding: 1.0.5 + dev: true + + /html-encoding-sniffer/3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + dependencies: + whatwg-encoding: 2.0.0 + dev: true + + /html-entities/2.3.2: + resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==} + dev: true + + /html-escaper/2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + dev: true + + /html-minifier/4.0.0: + resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} + engines: {node: '>=6'} + hasBin: true + dependencies: + camel-case: 3.0.0 + clean-css: 4.2.3 + commander: 2.20.3 + he: 1.2.0 + param-case: 2.1.1 + relateurl: 0.2.7 + uglify-js: 3.17.4 + dev: true + + /html-tags/3.2.0: + resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==} + engines: {node: '>=8'} + dev: true + + /htmlparser2/8.0.1: + resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.0.1 + entities: 4.4.0 + dev: true + + /http-cache-semantics/4.1.0: + resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} + dev: true + + /http-errors/2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + dev: true + + /http-proxy-agent/4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /http-proxy-agent/5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /http-signature/1.2.0: + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} + dependencies: + assert-plus: 1.0.0 + jsprim: 1.4.2 + sshpk: 1.17.0 + dev: true + + /http2-wrapper/2.2.0: + resolution: {integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==} + engines: {node: '>=10.19.0'} + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + dev: true + + /https-proxy-agent/5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /human-signals/1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true + + /human-signals/2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /human-signals/3.0.1: + resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} + engines: {node: '>=12.20.0'} + dev: true + + /humanize-ms/1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + dependencies: + ms: 2.1.3 + dev: true + + /iconv-lite/0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /iconv-lite/0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754/1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /ignore-walk/3.0.4: + resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} + dependencies: + minimatch: 3.1.2 + dev: true + + /ignore-walk/5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minimatch: 5.1.2 + dev: true + + /ignore/5.2.4: + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} + dev: true + + /image-q/4.0.0: + resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==} + dependencies: + '@types/node': 16.9.1 + dev: true + + /import-fresh/2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + dependencies: + caller-path: 2.0.0 + resolve-from: 3.0.0 + dev: true + + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-lazy/4.0.0: + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} + dev: true + + /import-local/3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + dev: true + + /imurmurhash/0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string/4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /infer-owner/1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + dev: true + + /inflight/1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini/1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /ini/2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + dev: true + + /init-package-json/3.0.2: + resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + npm-package-arg: 9.1.2 + promzard: 0.3.0 + read: 1.0.7 + read-package-json: 5.0.2 + semver: 7.3.8 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 4.0.0 + dev: true + + /inquirer/8.2.5: + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /inquirer/9.1.4: + resolution: {integrity: sha512-9hiJxE5gkK/cM2d1mTEnuurGTAoHebbkX0BYl3h7iEg7FYfuNIom+nDfBCSWtvSnoSrWCeBxqqBZu26xdlJlXA==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 6.0.0 + chalk: 5.1.2 + cli-cursor: 4.0.0 + cli-width: 4.0.0 + external-editor: 3.1.0 + figures: 5.0.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 6.1.2 + run-async: 2.4.1 + rxjs: 7.8.0 + string-width: 5.1.2 + strip-ansi: 7.0.1 + through: 2.3.8 + wrap-ansi: 8.0.1 + dev: true + + /internal-slot/1.0.4: + resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.3 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /interpret/1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + dev: true + + /invariant/2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + dependencies: + loose-envify: 1.4.0 + dev: true + + /invert-kv/1.0.0: + resolution: {integrity: sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==} + engines: {node: '>=0.10.0'} + dev: true + + /ip/1.1.8: + resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} + dev: true + + /ip/2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + dev: true + + /is-absolute/1.0.0: + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} + dependencies: + is-relative: 1.0.0 + is-windows: 1.0.2 + dev: true + + /is-accessor-descriptor/0.1.6: + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-accessor-descriptor/1.0.0: + resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /is-arguments/1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-arrayish/0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-arrayish/0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + dev: true + + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path/1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} + dependencies: + binary-extensions: 1.13.1 + dev: true + + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-buffer/1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + dev: true + + /is-callable/1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-ci/2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + dependencies: + ci-info: 2.0.0 + dev: true + + /is-ci/3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + dependencies: + ci-info: 3.7.1 + dev: true + + /is-core-module/2.11.0: + resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + dependencies: + has: 1.0.3 + dev: true + + /is-data-descriptor/0.1.4: + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-data-descriptor/1.0.0: + resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-descriptor/0.1.6: + resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 0.1.6 + is-data-descriptor: 0.1.4 + kind-of: 5.1.0 + dev: true + + /is-descriptor/1.0.2: + resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 1.0.0 + is-data-descriptor: 1.0.0 + kind-of: 6.0.3 + dev: true + + /is-directory/0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + dev: true + + /is-docker/2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + dev: true + + /is-extendable/0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + dev: true + + /is-extendable/1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: 2.0.4 + dev: true + + /is-extglob/2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-fullwidth-code-point/1.0.0: + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} + dependencies: + number-is-nan: 1.0.1 + dev: true + + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-function/1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + dev: true + + /is-generator-fn/2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + dev: true + + /is-glob/3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-glob/4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-installed-globally/0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + dev: true + + /is-interactive/1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true + + /is-interactive/2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + dev: true + + /is-lambda/1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + dev: true + + /is-map/2.0.2: + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + dev: true + + /is-module/1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true + + /is-negated-glob/1.0.0: + resolution: {integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==} + engines: {node: '>=0.10.0'} + dev: true + + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-npm/6.0.0: + resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /is-number-object/1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-number/4.0.0: + resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-obj/2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-path-inside/3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-plain-obj/1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-obj/2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + dev: true + + /is-plain-object/2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /is-plain-object/5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: true + + /is-potential-custom-element-name/1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true + + /is-reference/1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + dependencies: + '@types/estree': 1.0.0 + dev: true + + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-relative/1.0.0: + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} + dependencies: + is-unc-path: 1.0.0 + dev: true + + /is-set/2.0.2: + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + dev: true + + /is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-ssh/1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + dependencies: + protocols: 2.0.1 + dev: true + + /is-stream/1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-stream/3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path/1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-typed-array/1.1.10: + resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /is-typedarray/1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + dev: true + + /is-unc-path/1.0.0: + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} + dependencies: + unc-path-regex: 0.1.2 + dev: true + + /is-unicode-supported/0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + + /is-unicode-supported/1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} + dev: true + + /is-utf8/0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + dev: true + + /is-valid-glob/1.0.0: + resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-weakmap/2.0.1: + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + dev: true + + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-weakset/2.0.2: + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + dev: true + + /is-windows/1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-wsl/2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + dependencies: + is-docker: 2.2.1 + dev: true + + /is-yarn-global/0.4.1: + resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==} + engines: {node: '>=12'} + dev: true + + /isarray/0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + dev: true + + /isarray/1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + dev: true + + /isarray/2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + + /isexe/2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /isobject/2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + dependencies: + isarray: 1.0.0 + dev: true + + /isobject/3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + dev: true + + /isstream/0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true + + /istanbul-lib-coverage/3.2.0: + resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} + engines: {node: '>=8'} + dev: true + + /istanbul-lib-instrument/4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.20.7 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-instrument/5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.20.7 + '@babel/parser': 7.20.7 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} + engines: {node: '>=8'} + dependencies: + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 + supports-color: 7.2.0 + dev: true + + /istanbul-lib-source-maps/4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-reports/3.1.5: + resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} + engines: {node: '>=8'} + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 + dev: true + + /iterate-iterator/1.0.2: + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + dev: true + + /iterate-value/1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + dependencies: + es-get-iterator: 1.1.2 + iterate-iterator: 1.0.2 + dev: true + + /jake/10.8.5: + resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + async: 3.2.4 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + dev: true + + /jest-changed-files/26.6.2: + resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + execa: 4.1.0 + throat: 5.0.0 + dev: true + + /jest-changed-files/28.1.3: + resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + execa: 5.1.1 + p-limit: 3.1.0 + dev: true + + /jest-changed-files/29.2.0: + resolution: {integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + execa: 5.1.1 + p-limit: 3.1.0 + dev: true + + /jest-circus/28.1.3: + resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + chalk: 4.1.2 + co: 4.6.0 + dedent: 0.7.0 + is-generator-fn: 2.1.0 + jest-each: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + p-limit: 3.1.0 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-circus/29.3.1: + resolution: {integrity: sha512-wpr26sEvwb3qQQbdlmei+gzp6yoSSoSL6GsLPxnuayZSMrSd5Ka7IjAvatpIernBvT2+Ic6RLTg+jSebScmasg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.3.1 + '@jest/expect': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + chalk: 4.1.2 + co: 4.6.0 + dedent: 0.7.0 + is-generator-fn: 2.1.0 + jest-each: 29.3.1 + jest-matcher-utils: 29.3.1 + jest-message-util: 29.3.1 + jest-runtime: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 + p-limit: 3.1.0 + pretty-format: 29.3.1 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-cli/26.6.3: + resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} + engines: {node: '>= 10.14.2'} + hasBin: true + dependencies: + '@jest/core': 26.6.3 + '@jest/test-result': 26.6.2 + '@jest/types': 26.6.2 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + is-ci: 2.0.0 + jest-config: 26.6.3 + jest-util: 26.6.2 + jest-validate: 26.6.2 + prompts: 2.4.2 + yargs: 15.4.1 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /jest-cli/28.1.3: + resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + prompts: 2.4.2 + yargs: 17.6.2 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest-cli/29.3.1: + resolution: {integrity: sha512-TO/ewvwyvPOiBBuWZ0gm04z3WWP8TIK8acgPzE4IxgsLKQgb377NYGrQLc3Wl/7ndWzIH2CDNNsUjGxwLL43VQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + prompts: 2.4.2 + yargs: 17.6.2 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest-config/26.6.3: + resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} + engines: {node: '>= 10.14.2'} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.7 + '@jest/test-sequencer': 26.6.3 + '@jest/types': 26.6.2 + babel-jest: 26.6.3_@babel+core@7.20.7 + chalk: 4.1.2 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-environment-jsdom: 26.6.2 + jest-environment-node: 26.6.2 + jest-get-type: 26.3.0 + jest-jasmine2: 26.6.3 + jest-regex-util: 26.0.0 + jest-resolve: 26.6.2 + jest-util: 26.6.2 + jest-validate: 26.6.2 + micromatch: 4.0.5 + pretty-format: 26.6.2 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + dev: true + + /jest-config/28.1.3: + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.7 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + babel-jest: 28.1.3_@babel+core@7.20.7 + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-config/28.1.3_@types+node@18.11.18: + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.7 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + babel-jest: 28.1.3_@babel+core@7.20.7 + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-config/29.3.1: + resolution: {integrity: sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.7 + '@jest/test-sequencer': 29.3.1 + '@jest/types': 29.3.1 + babel-jest: 29.3.1_@babel+core@7.20.7 + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 29.3.1 + jest-environment-node: 29.3.1 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.1 + jest-runner: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.3.1 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-config/29.3.1_@types+node@18.11.18: + resolution: {integrity: sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.7 + '@jest/test-sequencer': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + babel-jest: 29.3.1_@babel+core@7.20.7 + chalk: 4.1.2 + ci-info: 3.7.1 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 29.3.1 + jest-environment-node: 29.3.1 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.1 + jest-runner: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.3.1 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-diff/26.6.2: + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} + dependencies: + chalk: 4.1.2 + diff-sequences: 26.6.2 + jest-get-type: 26.3.0 + pretty-format: 26.6.2 + dev: true + + /jest-diff/28.1.3: + resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 28.1.1 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-diff/29.3.1: + resolution: {integrity: sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 29.3.1 + jest-get-type: 29.2.0 + pretty-format: 29.3.1 + dev: true + + /jest-docblock/26.0.0: + resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} + engines: {node: '>= 10.14.2'} + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-docblock/28.1.1: + resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-docblock/29.2.0: + resolution: {integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-each/26.6.2: + resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + chalk: 4.1.2 + jest-get-type: 26.3.0 + jest-util: 26.6.2 + pretty-format: 26.6.2 + dev: true + + /jest-each/28.1.3: + resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + chalk: 4.1.2 + jest-get-type: 28.0.2 + jest-util: 28.1.3 + pretty-format: 28.1.3 + dev: true + + /jest-each/29.3.1: + resolution: {integrity: sha512-qrZH7PmFB9rEzCSl00BWjZYuS1BSOH8lLuC0azQE9lQrAx3PWGKHTDudQiOSwIy5dGAJh7KA0ScYlCP7JxvFYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + chalk: 4.1.2 + jest-get-type: 29.2.0 + jest-util: 29.3.1 + pretty-format: 29.3.1 + dev: true + + /jest-environment-jsdom/26.6.2: + resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/environment': 26.6.2 + '@jest/fake-timers': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + jest-mock: 26.6.2 + jest-util: 26.6.2 + jsdom: 16.7.0 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + dev: true + + /jest-environment-node/26.6.2: + resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/environment': 26.6.2 + '@jest/fake-timers': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + jest-mock: 26.6.2 + jest-util: 26.6.2 + dev: true + + /jest-environment-node/28.1.3: + resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: true + + /jest-environment-node/29.3.1: + resolution: {integrity: sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.3.1 + '@jest/fake-timers': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + jest-mock: 29.3.1 + jest-util: 29.3.1 + dev: true + + /jest-get-type/26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + dev: true + + /jest-get-type/28.0.2: + resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true + + /jest-get-type/29.2.0: + resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /jest-haste-map/26.6.2: + resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + '@types/graceful-fs': 4.1.5 + '@types/node': 18.11.18 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.10 + jest-regex-util: 26.0.0 + jest-serializer: 26.6.2 + jest-util: 26.6.2 + jest-worker: 26.6.2 + micromatch: 4.0.5 + sane: 4.1.0 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-haste-map/28.1.3: + resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/graceful-fs': 4.1.5 + '@types/node': 18.11.18 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.10 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + jest-worker: 28.1.3 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /jest-haste-map/29.3.1: + resolution: {integrity: sha512-/FFtvoG1xjbbPXQLFef+WSU4yrc0fc0Dds6aRPBojUid7qlPqZvxdUBA03HW0fnVHXVCnCdkuoghYItKNzc/0A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + '@types/graceful-fs': 4.1.5 + '@types/node': 18.11.18 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.10 + jest-regex-util: 29.2.0 + jest-util: 29.3.1 + jest-worker: 29.3.1 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /jest-jasmine2/26.6.3: + resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} + engines: {node: '>= 10.14.2'} + dependencies: + '@babel/traverse': 7.20.10 + '@jest/environment': 26.6.2 + '@jest/source-map': 26.6.2 + '@jest/test-result': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + chalk: 4.1.2 + co: 4.6.0 + expect: 26.6.2 + is-generator-fn: 2.1.0 + jest-each: 26.6.2 + jest-matcher-utils: 26.6.2 + jest-message-util: 26.6.2 + jest-runtime: 26.6.3 + jest-snapshot: 26.6.2 + jest-util: 26.6.2 + pretty-format: 26.6.2 + throat: 5.0.0 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /jest-leak-detector/26.6.2: + resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} + engines: {node: '>= 10.14.2'} + dependencies: + jest-get-type: 26.3.0 + pretty-format: 26.6.2 + dev: true + + /jest-leak-detector/28.1.3: + resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-leak-detector/29.3.1: + resolution: {integrity: sha512-3DA/VVXj4zFOPagGkuqHnSQf1GZBmmlagpguxEERO6Pla2g84Q1MaVIB3YMxgUaFIaYag8ZnTyQgiZ35YEqAQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-get-type: 29.2.0 + pretty-format: 29.3.1 + dev: true + + /jest-matcher-utils/26.6.2: + resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} + engines: {node: '>= 10.14.2'} + dependencies: + chalk: 4.1.2 + jest-diff: 26.6.2 + jest-get-type: 26.3.0 + pretty-format: 26.6.2 + dev: true + + /jest-matcher-utils/28.1.3: + resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-matcher-utils/29.3.1: + resolution: {integrity: sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 29.3.1 + jest-get-type: 29.2.0 + pretty-format: 29.3.1 + dev: true + + /jest-message-util/26.6.2: + resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} + engines: {node: '>= 10.14.2'} + dependencies: + '@babel/code-frame': 7.18.6 + '@jest/types': 26.6.2 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 26.6.2 + slash: 3.0.0 + stack-utils: 2.0.6 + dev: true + + /jest-message-util/28.1.3: + resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/code-frame': 7.18.6 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + dev: true + + /jest-message-util/29.3.1: + resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/code-frame': 7.18.6 + '@jest/types': 29.3.1 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 29.3.1 + slash: 3.0.0 + stack-utils: 2.0.6 + dev: true + + /jest-mock/26.6.2: + resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + dev: true + + /jest-mock/28.1.3: + resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + dev: true + + /jest-mock/29.3.1: + resolution: {integrity: sha512-H8/qFDtDVMFvFP4X8NuOT3XRDzOUTz+FeACjufHzsOIBAxivLqkB1PoLCaJx9iPPQ8dZThHPp/G3WRWyMgA3JA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + jest-util: 29.3.1 + dev: true + + /jest-pnp-resolver/1.2.3_jest-resolve@26.6.2: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 26.6.2 + dev: true + + /jest-pnp-resolver/1.2.3_jest-resolve@28.1.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 28.1.3 + dev: true + + /jest-pnp-resolver/1.2.3_jest-resolve@29.3.1: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 29.3.1 + dev: true + + /jest-regex-util/26.0.0: + resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} + engines: {node: '>= 10.14.2'} + dev: true + + /jest-regex-util/28.0.2: + resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true + + /jest-regex-util/29.2.0: + resolution: {integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /jest-resolve-dependencies/26.6.3: + resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + jest-regex-util: 26.0.0 + jest-snapshot: 26.6.2 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve-dependencies/28.1.3: + resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-regex-util: 28.0.2 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve-dependencies/29.3.1: + resolution: {integrity: sha512-Vk0cYq0byRw2WluNmNWGqPeRnZ3p3hHmjJMp2dyyZeYIfiBskwq4rpiuGFR6QGAdbj58WC7HN4hQHjf2mpvrLA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-regex-util: 29.2.0 + jest-snapshot: 29.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve/26.6.2: + resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + chalk: 4.1.2 + graceful-fs: 4.2.10 + jest-pnp-resolver: 1.2.3_jest-resolve@26.6.2 + jest-util: 26.6.2 + read-pkg-up: 7.0.1 + resolve: 1.22.1 + slash: 3.0.0 + dev: true + + /jest-resolve/28.1.3: + resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-pnp-resolver: 1.2.3_jest-resolve@28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + resolve: 1.22.1 + resolve.exports: 1.1.0 + slash: 3.0.0 + dev: true + + /jest-resolve/29.3.1: + resolution: {integrity: sha512-amXJgH/Ng712w3Uz5gqzFBBjxV8WFLSmNjoreBGMqxgCz5cH7swmBZzgBaCIOsvb0NbpJ0vgaSFdJqMdT+rADw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.10 + jest-haste-map: 29.3.1 + jest-pnp-resolver: 1.2.3_jest-resolve@29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + resolve: 1.22.1 + resolve.exports: 1.1.0 + slash: 3.0.0 + dev: true + + /jest-runner/26.6.3: + resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/console': 26.6.2 + '@jest/environment': 26.6.2 + '@jest/test-result': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + chalk: 4.1.2 + emittery: 0.7.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-config: 26.6.3 + jest-docblock: 26.0.0 + jest-haste-map: 26.6.2 + jest-leak-detector: 26.6.2 + jest-message-util: 26.6.2 + jest-resolve: 26.6.2 + jest-runtime: 26.6.3 + jest-util: 26.6.2 + jest-worker: 26.6.2 + source-map-support: 0.5.21 + throat: 5.0.0 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /jest-runner/28.1.3: + resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/console': 28.1.3 + '@jest/environment': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + chalk: 4.1.2 + emittery: 0.10.2 + graceful-fs: 4.2.10 + jest-docblock: 28.1.1 + jest-environment-node: 28.1.3 + jest-haste-map: 28.1.3 + jest-leak-detector: 28.1.3 + jest-message-util: 28.1.3 + jest-resolve: 28.1.3 + jest-runtime: 28.1.3 + jest-util: 28.1.3 + jest-watcher: 28.1.3 + jest-worker: 28.1.3 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runner/29.3.1: + resolution: {integrity: sha512-oFvcwRNrKMtE6u9+AQPMATxFcTySyKfLhvso7Sdk/rNpbhg4g2GAGCopiInk1OP4q6gz3n6MajW4+fnHWlU3bA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.3.1 + '@jest/environment': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + chalk: 4.1.2 + emittery: 0.13.1 + graceful-fs: 4.2.10 + jest-docblock: 29.2.0 + jest-environment-node: 29.3.1 + jest-haste-map: 29.3.1 + jest-leak-detector: 29.3.1 + jest-message-util: 29.3.1 + jest-resolve: 29.3.1 + jest-runtime: 29.3.1 + jest-util: 29.3.1 + jest-watcher: 29.3.1 + jest-worker: 29.3.1 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runtime/26.6.3: + resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} + engines: {node: '>= 10.14.2'} + hasBin: true + dependencies: + '@jest/console': 26.6.2 + '@jest/environment': 26.6.2 + '@jest/fake-timers': 26.6.2 + '@jest/globals': 26.6.2 + '@jest/source-map': 26.6.2 + '@jest/test-result': 26.6.2 + '@jest/transform': 26.6.2 + '@jest/types': 26.6.2 + '@types/yargs': 15.0.14 + chalk: 4.1.2 + cjs-module-lexer: 0.6.0 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-config: 26.6.3 + jest-haste-map: 26.6.2 + jest-message-util: 26.6.2 + jest-mock: 26.6.2 + jest-regex-util: 26.0.0 + jest-resolve: 26.6.2 + jest-snapshot: 26.6.2 + jest-util: 26.6.2 + jest-validate: 26.6.2 + slash: 3.0.0 + strip-bom: 4.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /jest-runtime/28.1.3: + resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/globals': 28.1.3 + '@jest/source-map': 28.1.2 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + cjs-module-lexer: 1.2.2 + collect-v8-coverage: 1.0.1 + execa: 5.1.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runtime/29.3.1: + resolution: {integrity: sha512-jLzkIxIqXwBEOZx7wx9OO9sxoZmgT2NhmQKzHQm1xwR1kNW/dn0OjxR424VwHHf1SPN6Qwlb5pp1oGCeFTQ62A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.3.1 + '@jest/fake-timers': 29.3.1 + '@jest/globals': 29.3.1 + '@jest/source-map': 29.2.0 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + chalk: 4.1.2 + cjs-module-lexer: 1.2.2 + collect-v8-coverage: 1.0.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-haste-map: 29.3.1 + jest-message-util: 29.3.1 + jest-mock: 29.3.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-serializer/26.6.2: + resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} + engines: {node: '>= 10.14.2'} + dependencies: + '@types/node': 18.11.18 + graceful-fs: 4.2.10 + dev: true + + /jest-snapshot/26.6.2: + resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} + engines: {node: '>= 10.14.2'} + dependencies: + '@babel/types': 7.20.7 + '@jest/types': 26.6.2 + '@types/babel__traverse': 7.18.3 + '@types/prettier': 2.7.2 + chalk: 4.1.2 + expect: 26.6.2 + graceful-fs: 4.2.10 + jest-diff: 26.6.2 + jest-get-type: 26.3.0 + jest-haste-map: 26.6.2 + jest-matcher-utils: 26.6.2 + jest-message-util: 26.6.2 + jest-resolve: 26.6.2 + natural-compare: 1.4.0 + pretty-format: 26.6.2 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-snapshot/28.1.3: + resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/core': 7.20.7 + '@babel/generator': 7.20.7 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + '@jest/expect-utils': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/babel__traverse': 7.18.3 + '@types/prettier': 2.7.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 + chalk: 4.1.2 + expect: 28.1.3 + graceful-fs: 4.2.10 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + jest-haste-map: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + natural-compare: 1.4.0 + pretty-format: 28.1.3 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-snapshot/29.3.1: + resolution: {integrity: sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/core': 7.20.7 + '@babel/generator': 7.20.7 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + '@jest/expect-utils': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/babel__traverse': 7.18.3 + '@types/prettier': 2.7.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 + chalk: 4.1.2 + expect: 29.3.1 + graceful-fs: 4.2.10 + jest-diff: 29.3.1 + jest-get-type: 29.2.0 + jest-haste-map: 29.3.1 + jest-matcher-utils: 29.3.1 + jest-message-util: 29.3.1 + jest-util: 29.3.1 + natural-compare: 1.4.0 + pretty-format: 29.3.1 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-util/26.6.2: + resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + chalk: 4.1.2 + graceful-fs: 4.2.10 + is-ci: 2.0.0 + micromatch: 4.0.5 + dev: true + + /jest-util/28.1.3: + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + chalk: 4.1.2 + ci-info: 3.7.1 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + dev: true + + /jest-util/29.3.1: + resolution: {integrity: sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + chalk: 4.1.2 + ci-info: 3.7.1 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + dev: true + + /jest-validate/26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/types': 26.6.2 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 26.3.0 + leven: 3.1.0 + pretty-format: 26.6.2 + dev: true + + /jest-validate/28.1.3: + resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 28.0.2 + leven: 3.1.0 + pretty-format: 28.1.3 + dev: true + + /jest-validate/29.3.1: + resolution: {integrity: sha512-N9Lr3oYR2Mpzuelp1F8negJR3YE+L1ebk1rYA5qYo9TTY3f9OWdptLoNSPP9itOCBIRBqjt/S5XHlzYglLN67g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.3.1 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.2.0 + leven: 3.1.0 + pretty-format: 29.3.1 + dev: true + + /jest-watcher/26.6.2: + resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} + engines: {node: '>= 10.14.2'} + dependencies: + '@jest/test-result': 26.6.2 + '@jest/types': 26.6.2 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + jest-util: 26.6.2 + string-length: 4.0.2 + dev: true + + /jest-watcher/28.1.3: + resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.10.2 + jest-util: 28.1.3 + string-length: 4.0.2 + dev: true + + /jest-watcher/29.3.1: + resolution: {integrity: sha512-RspXG2BQFDsZSRKGCT/NiNa8RkQ1iKAjrO0//soTMWx/QUt+OcxMqMSBxz23PYGqUuWm2+m2mNNsmj0eIoOaFg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 18.11.18 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.3.1 + string-length: 4.0.2 + dev: true + + /jest-worker/26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 18.11.18 + merge-stream: 2.0.0 + supports-color: 7.2.0 + dev: true + + /jest-worker/28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@types/node': 18.11.18 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest-worker/29.3.1: + resolution: {integrity: sha512-lY4AnnmsEWeiXirAIA0c9SDPbuCBq8IYuDVL8PMm0MZ2PEs2yPvRA/J64QBXuZp7CYKrDM/rmNrc9/i3KJQncw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@types/node': 18.11.18 + jest-util: 29.3.1 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest/26.6.3: + resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} + engines: {node: '>= 10.14.2'} + hasBin: true + dependencies: + '@jest/core': 26.6.3 + import-local: 3.1.0 + jest-cli: 26.6.3 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /jest/28.1.3: + resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 28.1.3 + '@jest/types': 28.1.3 + import-local: 3.1.0 + jest-cli: 28.1.3 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest/29.3.1: + resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.3.1 + '@jest/types': 29.3.1 + import-local: 3.1.0 + jest-cli: 29.3.1 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jimp/0.14.0: + resolution: {integrity: sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA==} + dependencies: + '@babel/runtime': 7.20.7 + '@jimp/custom': 0.14.0 + '@jimp/plugins': 0.14.0_@jimp+custom@0.14.0 + '@jimp/types': 0.14.0_@jimp+custom@0.14.0 + regenerator-runtime: 0.13.11 + dev: true + + /joycon/3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + dev: true + + /jpeg-js/0.4.4: + resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==} + dev: true + + /js-base64/2.6.4: + resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} + dev: true + + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + /js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml/4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsbn/0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true + + /jsdom/16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + acorn: 8.8.1 + acorn-globals: 6.0.0 + cssom: 0.4.4 + cssstyle: 2.3.0 + data-urls: 2.0.0 + decimal.js: 10.4.3 + domexception: 2.0.1 + escodegen: 2.0.0 + form-data: 3.0.1 + html-encoding-sniffer: 2.0.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.2 + parse5: 6.0.1 + saxes: 5.0.1 + symbol-tree: 3.2.4 + tough-cookie: 4.1.2 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 2.0.0 + webidl-conversions: 6.1.0 + whatwg-encoding: 1.0.5 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + ws: 7.5.9 + xml-name-validator: 3.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsdom/20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + acorn: 8.8.1 + acorn-globals: 7.0.1 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.4.3 + domexception: 4.0.0 + escodegen: 2.0.0 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.2 + parse5: 7.1.2 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.2 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.12.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsesc/0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + dev: true + + /jsesc/2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /json-buffer/3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + + /json-parse-better-errors/1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + dev: true + + /json-parse-even-better-errors/2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse/0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-schema/0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json-stringify-nice/1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + dev: true + + /json-stringify-safe/5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true + + /json5/2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /jsonc-parser/3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: true + + /jsonfile/4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + optionalDependencies: + graceful-fs: 4.2.10 + dev: true + + /jsonfile/6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.10 + dev: true + + /jsonparse/1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /jsprim/1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + dev: true + + /just-debounce/1.1.0: + resolution: {integrity: sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==} + dev: true + + /just-diff-apply/5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + dev: true + + /just-diff/5.2.0: + resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} + dev: true + + /keyv/4.5.2: + resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} + dependencies: + json-buffer: 3.0.1 + dev: true + + /kind-of/3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: true + + /kind-of/4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: true + + /kind-of/5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + dev: true + + /kind-of/6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /kleur/3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: true + + /kleur/4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true + + /kolorist/1.6.0: + resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==} + dev: true + + /last-run/1.1.1: + resolution: {integrity: sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==} + engines: {node: '>= 0.10'} + dependencies: + default-resolution: 2.0.0 + es6-weak-map: 2.0.3 + dev: true + + /latest-version/7.0.0: + resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} + engines: {node: '>=14.16'} + dependencies: + package-json: 8.1.0 + dev: true + + /lazystream/1.0.1: + resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} + engines: {node: '>= 0.6.3'} + dependencies: + readable-stream: 2.3.7 + dev: true + + /lcid/1.0.0: + resolution: {integrity: sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==} + engines: {node: '>=0.10.0'} + dependencies: + invert-kv: 1.0.0 + dev: true + + /lead/1.0.0: + resolution: {integrity: sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==} + engines: {node: '>= 0.10'} + dependencies: + flush-write-stream: 1.1.1 + dev: true + + /lerna/6.4.0: + resolution: {integrity: sha512-XqfWovJwkHFoCkNXpidJgzyl6lE523Y29tKvMoGTOfOnEmC05Fadj7wLnNHomP8UEL7A+63Wau5bC5ymigfeRw==} + engines: {node: ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + '@lerna/add': 6.4.0 + '@lerna/bootstrap': 6.4.0 + '@lerna/changed': 6.4.0 + '@lerna/clean': 6.4.0 + '@lerna/cli': 6.4.0 + '@lerna/command': 6.4.0 + '@lerna/create': 6.4.0 + '@lerna/diff': 6.4.0 + '@lerna/exec': 6.4.0 + '@lerna/filter-options': 6.4.0 + '@lerna/import': 6.4.0 + '@lerna/info': 6.4.0 + '@lerna/init': 6.4.0 + '@lerna/link': 6.4.0 + '@lerna/list': 6.4.0 + '@lerna/publish': 6.4.0_nx@15.4.5+typescript@4.9.4 + '@lerna/run': 6.4.0 + '@lerna/validation-error': 6.4.0 + '@lerna/version': 6.4.0_nx@15.4.5+typescript@4.9.4 + '@nrwl/devkit': 15.4.5_nx@15.4.5+typescript@4.9.4 + import-local: 3.1.0 + inquirer: 8.2.5 + npmlog: 6.0.2 + nx: 15.4.5 + typescript: 4.9.4 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - bluebird + - debug + - encoding + - supports-color + dev: true + + /leven/3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: true + + /levenary/1.1.1: + resolution: {integrity: sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==} + engines: {node: '>= 6'} + dependencies: + leven: 3.1.0 + dev: true + + /levn/0.3.0: + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.1.2 + type-check: 0.3.2 + dev: true + + /libnpmaccess/6.0.4: + resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + aproba: 2.0.0 + minipass: 3.3.6 + npm-package-arg: 9.1.2 + npm-registry-fetch: 13.3.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /libnpmpublish/6.0.5: + resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + normalize-package-data: 4.0.1 + npm-package-arg: 9.1.2 + npm-registry-fetch: 13.3.1 + semver: 7.3.8 + ssri: 9.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /liftoff/3.1.0: + resolution: {integrity: sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==} + engines: {node: '>= 0.8'} + dependencies: + extend: 3.0.2 + findup-sync: 3.0.0 + fined: 1.2.0 + flagged-respawn: 1.0.1 + is-plain-object: 2.0.4 + object.map: 1.0.1 + rechoir: 0.6.2 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /lines-and-columns/1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /load-bmfont/1.4.1: + resolution: {integrity: sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==} + dependencies: + buffer-equal: 0.0.1 + mime: 1.6.0 + parse-bmfont-ascii: 1.0.6 + parse-bmfont-binary: 1.0.6 + parse-bmfont-xml: 1.1.4 + phin: 2.9.3 + xhr: 2.6.0 + xtend: 4.0.2 + dev: true + + /load-json-file/1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: 4.2.10 + parse-json: 2.2.0 + pify: 2.3.0 + pinkie-promise: 2.0.1 + strip-bom: 2.0.0 + dev: true + + /load-json-file/4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.10 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /load-json-file/6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + dependencies: + graceful-fs: 4.2.10 + parse-json: 5.2.0 + strip-bom: 4.0.0 + type-fest: 0.6.0 + dev: true + + /local-pkg/0.4.2: + resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} + engines: {node: '>=14'} + dev: true + + /locate-path/2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path/5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /lodash._basecopy/3.0.1: + resolution: {integrity: sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==} + dev: true + + /lodash._basetostring/3.0.1: + resolution: {integrity: sha512-mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA==} + dev: true + + /lodash._basevalues/3.0.0: + resolution: {integrity: sha512-H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg==} + dev: true + + /lodash._getnative/3.9.1: + resolution: {integrity: sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==} + dev: true + + /lodash._isiterateecall/3.0.9: + resolution: {integrity: sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==} + dev: true + + /lodash._reescape/3.0.0: + resolution: {integrity: sha512-Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ==} + dev: true + + /lodash._reevaluate/3.0.0: + resolution: {integrity: sha512-OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w==} + dev: true + + /lodash._reinterpolate/3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + dev: true + + /lodash._root/3.0.1: + resolution: {integrity: sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ==} + dev: true + + /lodash.debounce/4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + dev: true + + /lodash.escape/3.2.0: + resolution: {integrity: sha512-n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ==} + dependencies: + lodash._root: 3.0.1 + dev: true + + /lodash.isarguments/3.1.0: + resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} + dev: true + + /lodash.isarray/3.0.4: + resolution: {integrity: sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==} + dev: true + + /lodash.ismatch/4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: true + + /lodash.keys/3.1.2: + resolution: {integrity: sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==} + dependencies: + lodash._getnative: 3.9.1 + lodash.isarguments: 3.1.0 + lodash.isarray: 3.0.4 + dev: true + + /lodash.restparam/3.6.1: + resolution: {integrity: sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==} + dev: true + + /lodash.template/3.6.2: + resolution: {integrity: sha512-0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ==} + dependencies: + lodash._basecopy: 3.0.1 + lodash._basetostring: 3.0.1 + lodash._basevalues: 3.0.0 + lodash._isiterateecall: 3.0.9 + lodash._reinterpolate: 3.0.0 + lodash.escape: 3.2.0 + lodash.keys: 3.1.2 + lodash.restparam: 3.6.1 + lodash.templatesettings: 3.1.1 + dev: true + + /lodash.template/4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + dependencies: + lodash._reinterpolate: 3.0.0 + lodash.templatesettings: 4.2.0 + dev: true + + /lodash.templatesettings/3.1.1: + resolution: {integrity: sha512-TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ==} + dependencies: + lodash._reinterpolate: 3.0.0 + lodash.escape: 3.2.0 + dev: true + + /lodash.templatesettings/4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + dependencies: + lodash._reinterpolate: 3.0.0 + dev: true + + /lodash/4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: true + + /log-symbols/4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-symbols/5.1.0: + resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} + engines: {node: '>=12'} + dependencies: + chalk: 5.1.2 + is-unicode-supported: 1.3.0 + dev: true + + /loose-envify/1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /loupe/2.3.6: + resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + dependencies: + get-func-name: 2.0.0 + dev: true + + /lower-case/1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + dev: true + + /lowercase-keys/3.0.0: + resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /lru-cache/5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + dependencies: + yallist: 3.1.1 + dev: true + + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /lru-cache/7.14.1: + resolution: {integrity: sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==} + engines: {node: '>=12'} + dev: true + + /lz-string/1.4.4: + resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} + hasBin: true + dev: true + + /macos-release/3.1.0: + resolution: {integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /magic-string/0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + + /magic-string/0.26.7: + resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} + engines: {node: '>=12'} + dependencies: + sourcemap-codec: 1.4.8 + dev: true + + /magic-string/0.27.0: + resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /make-dir/2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + dependencies: + pify: 4.0.1 + semver: 5.7.1 + dev: true + + /make-dir/3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: true + + /make-fetch-happen/10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + agentkeepalive: 4.2.1 + cacache: 16.1.3 + http-cache-semantics: 4.1.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 7.14.1 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 2.1.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + negotiator: 0.6.3 + promise-retry: 2.0.1 + socks-proxy-agent: 7.0.0 + ssri: 9.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /make-fetch-happen/9.1.0: + resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==} + engines: {node: '>= 10'} + dependencies: + agentkeepalive: 4.2.1 + cacache: 15.3.0 + http-cache-semantics: 4.1.0 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 6.0.0 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 1.4.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + negotiator: 0.6.3 + promise-retry: 2.0.1 + socks-proxy-agent: 6.2.1 + ssri: 8.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /make-iterator/1.0.1: + resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /makeerror/1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + dependencies: + tmpl: 1.0.5 + dev: true + + /map-cache/0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj/1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj/4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /map-visit/1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + dependencies: + object-visit: 1.0.1 + dev: true + + /matchdep/2.0.0: + resolution: {integrity: sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==} + engines: {node: '>= 0.10.0'} + dependencies: + findup-sync: 2.0.0 + micromatch: 3.1.10 + resolve: 1.22.1 + stack-trace: 0.0.10 + transitivePeerDependencies: + - supports-color + dev: true + + /matcher-collection/2.0.1: + resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} + engines: {node: 6.* || 8.* || >= 10.*} + dependencies: + '@types/minimatch': 3.0.5 + minimatch: 3.1.2 + dev: true + + /mdn-data/2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + dev: true + + /mdn-data/2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + dev: true + + /meow/8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /meow/9.0.0: + resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2/1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /microbuffer/1.0.0: + resolution: {integrity: sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA==} + dev: true + + /micromatch/3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mime/1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /mimic-fn/2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /mimic-fn/4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + + /mimic-response/2.1.0: + resolution: {integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==} + engines: {node: '>=8'} + dev: true + + /mimic-response/3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + dev: true + + /mimic-response/4.0.0: + resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /min-document/2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + dependencies: + dom-walk: 0.1.2 + dev: true + + /min-indent/1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch/3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/5.1.2: + resolution: {integrity: sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist-options/4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist/1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /minipass-collect/1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-fetch/1.4.1: + resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==} + engines: {node: '>=8'} + dependencies: + minipass: 3.3.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + dev: true + + /minipass-fetch/2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.3.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + dev: true + + /minipass-flush/1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-json-stream/1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + dependencies: + jsonparse: 1.3.1 + minipass: 3.3.6 + dev: true + + /minipass-pipeline/1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-sized/1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass/3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + dependencies: + yallist: 4.0.0 + dev: true + + /minipass/4.0.0: + resolution: {integrity: sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==} + engines: {node: '>=8'} + dependencies: + yallist: 4.0.0 + dev: true + + /minizlib/2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + dev: true + + /mixin-deep/1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + dev: true + + /mkdirp-classic/0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + dev: true + + /mkdirp-infer-owner/2.0.0: + resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} + engines: {node: '>=10'} + dependencies: + chownr: 2.0.0 + infer-owner: 1.0.4 + mkdirp: 1.0.4 + dev: true + + /mkdirp/0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /mkdirp/1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + dev: true + + /mlly/1.0.0: + resolution: {integrity: sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==} + dependencies: + acorn: 8.8.1 + pathe: 1.0.0 + pkg-types: 1.0.1 + ufo: 1.0.1 + dev: true + + /modify-values/1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + dev: true + + /moment/2.29.4: + resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==} + dev: true + + /mri/1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + + /ms/2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: true + + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms/2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: true + + /muggle-string/0.1.0: + resolution: {integrity: sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==} + dev: true + + /multimatch/5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + dependencies: + '@types/minimatch': 3.0.5 + array-differ: 3.0.0 + array-union: 2.1.0 + arrify: 2.0.1 + minimatch: 3.1.2 + dev: true + + /multipipe/0.1.2: + resolution: {integrity: sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==} + dependencies: + duplexer2: 0.0.2 + dev: true + + /multipipe/4.0.0: + resolution: {integrity: sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ==} + dependencies: + duplexer2: 0.1.4 + object-assign: 4.1.1 + dev: true + + /mute-stdout/1.0.1: + resolution: {integrity: sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==} + engines: {node: '>= 0.10'} + dev: true + + /mute-stream/0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true + + /nan/2.17.0: + resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} + dev: true + + /nanoid/3.3.4: + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /nanomatch/1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /napi-build-utils/1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + dev: true + + /natural-compare/1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /neatequal/1.0.0: + resolution: {integrity: sha512-sVt5awO4a4w24QmAthdrCPiVRW3naB8FGLdyadin01BH+6BzNPEBwGrpwCczQvPlULS6uXTItTe1PJ5P0kYm7A==} + dependencies: + varstream: 0.3.2 + dev: true + + /negotiator/0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: true + + /neo-async/2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + dev: true + + /netmask/2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + dev: true + + /new-github-release-url/2.0.0: + resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + type-fest: 2.19.0 + dev: true + + /next-tick/1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + dev: true + + /nice-try/1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /no-case/2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + dependencies: + lower-case: 1.1.4 + dev: true + + /node-abi/2.30.1: + resolution: {integrity: sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==} + dependencies: + semver: 5.7.1 + dev: true + + /node-addon-api/3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + dev: true + + /node-domexception/1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + dev: true + + /node-fetch/2.6.7: + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /node-fetch/3.3.0: + resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + data-uri-to-buffer: 4.0.0 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + dev: true + + /node-gyp-build/4.6.0: + resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} + hasBin: true + dev: true + + /node-gyp/7.1.2: + resolution: {integrity: sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==} + engines: {node: '>= 10.12.0'} + hasBin: true + dependencies: + env-paths: 2.2.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + nopt: 5.0.0 + npmlog: 4.1.2 + request: 2.88.2 + rimraf: 3.0.2 + semver: 7.3.8 + tar: 6.1.13 + which: 2.0.2 + dev: true + + /node-gyp/8.4.1: + resolution: {integrity: sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==} + engines: {node: '>= 10.12.0'} + hasBin: true + dependencies: + env-paths: 2.2.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + make-fetch-happen: 9.1.0 + nopt: 5.0.0 + npmlog: 6.0.2 + rimraf: 3.0.2 + semver: 7.3.8 + tar: 6.1.13 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /node-gyp/9.3.1: + resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true + dependencies: + env-paths: 2.2.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + make-fetch-happen: 10.2.1 + nopt: 6.0.0 + npmlog: 6.0.2 + rimraf: 3.0.2 + semver: 7.3.8 + tar: 6.1.13 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /node-int64/0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + dev: true + + /node-notifier/8.0.2: + resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} + requiresBuild: true + dependencies: + growly: 1.3.0 + is-wsl: 2.2.0 + semver: 7.3.8 + shellwords: 0.1.1 + uuid: 8.3.2 + which: 2.0.2 + dev: true + optional: true + + /node-releases/2.0.8: + resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} + dev: true + + /node-sass/8.0.0: + resolution: {integrity: sha512-jPzqCF2/e6JXw6r3VxfIqYc8tKQdkj5Z/BDATYyG6FL6b/LuYBNFGFVhus0mthcWifHm/JzBpKAd+3eXsWeK/A==} + engines: {node: '>=14'} + hasBin: true + requiresBuild: true + dependencies: + async-foreach: 0.1.3 + chalk: 4.1.2 + cross-spawn: 7.0.3 + gaze: 1.1.3 + get-stdin: 4.0.1 + glob: 7.2.3 + lodash: 4.17.21 + make-fetch-happen: 10.2.1 + meow: 9.0.0 + nan: 2.17.0 + node-gyp: 8.4.1 + sass-graph: 4.0.1 + stdout-stream: 1.4.1 + true-case-path: 2.2.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /nopt/5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + + /nopt/6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + + /normalize-package-data/2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.1 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data/3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.11.0 + semver: 7.3.8 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data/4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + hosted-git-info: 5.2.1 + is-core-module: 2.11.0 + semver: 7.3.8 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path/2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} + dependencies: + remove-trailing-separator: 1.1.0 + dev: true + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-url/8.0.0: + resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} + engines: {node: '>=14.16'} + dev: true + + /now-and-later/2.0.1: + resolution: {integrity: sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==} + engines: {node: '>= 0.10'} + dependencies: + once: 1.4.0 + dev: true + + /npm-bundled/1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + dependencies: + npm-normalize-package-bin: 1.0.1 + dev: true + + /npm-bundled/2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + npm-normalize-package-bin: 2.0.0 + dev: true + + /npm-install-checks/4.0.0: + resolution: {integrity: sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==} + engines: {node: '>=10'} + dependencies: + semver: 7.3.8 + dev: true + + /npm-install-checks/5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + semver: 7.3.8 + dev: true + + /npm-install-peers/1.2.2: + resolution: {integrity: sha512-2KUOQVNbfr0FQmu4rJu+5lmmlrf17/Gh+Wm9GRR/P9GDiVqvPxr2I4KapNhLVJDJvodW18sUzSHM5XC8QQwvGw==} + hasBin: true + dependencies: + chalk: 1.1.3 + npm: 6.14.18 + dev: true + + /npm-normalize-package-bin/1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + dev: true + + /npm-normalize-package-bin/2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + + /npm-package-arg/8.1.1: + resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 3.0.8 + semver: 7.3.8 + validate-npm-package-name: 3.0.0 + dev: true + + /npm-package-arg/8.1.5: + resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + semver: 7.3.8 + validate-npm-package-name: 3.0.0 + dev: true + + /npm-package-arg/9.1.2: + resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + hosted-git-info: 5.2.1 + proc-log: 2.0.1 + semver: 7.3.8 + validate-npm-package-name: 4.0.0 + dev: true + + /npm-packlist/2.2.2: + resolution: {integrity: sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + glob: 7.2.3 + ignore-walk: 3.0.4 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + dev: true + + /npm-packlist/5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + glob: 8.0.3 + ignore-walk: 5.0.1 + npm-bundled: 2.0.1 + npm-normalize-package-bin: 2.0.0 + dev: true + + /npm-pick-manifest/6.1.1: + resolution: {integrity: sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==} + dependencies: + npm-install-checks: 4.0.0 + npm-normalize-package-bin: 1.0.1 + npm-package-arg: 8.1.5 + semver: 7.3.8 + dev: true + + /npm-pick-manifest/7.0.2: + resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + npm-install-checks: 5.0.0 + npm-normalize-package-bin: 2.0.0 + npm-package-arg: 9.1.2 + semver: 7.3.8 + dev: true + + /npm-registry-fetch/11.0.0: + resolution: {integrity: sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==} + engines: {node: '>=10'} + dependencies: + make-fetch-happen: 9.1.0 + minipass: 3.3.6 + minipass-fetch: 1.4.1 + minipass-json-stream: 1.0.1 + minizlib: 2.1.2 + npm-package-arg: 8.1.5 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /npm-registry-fetch/13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + make-fetch-happen: 10.2.1 + minipass: 3.3.6 + minipass-fetch: 2.1.2 + minipass-json-stream: 1.0.1 + minizlib: 2.1.2 + npm-package-arg: 9.1.2 + proc-log: 2.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /npm-run-path/2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + dependencies: + path-key: 2.0.1 + dev: true + + /npm-run-path/4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /npm-run-path/5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + + /npm/6.14.18: + resolution: {integrity: sha512-p3SjqSchSuNQUqbJBgwdv0L3O6bKkaSfQrQzJsskNpNKLg0g37c5xTXFV0SqTlX9GWvoGxBELVJMRWq0J8oaLA==} + engines: {node: 6 >=6.2.0 || 8 || >=9.3.0} + hasBin: true + dev: true + bundledDependencies: + - abbrev + - ansicolors + - ansistyles + - aproba + - archy + - bin-links + - bluebird + - byte-size + - cacache + - call-limit + - chownr + - ci-info + - cli-columns + - cli-table3 + - cmd-shim + - columnify + - config-chain + - debuglog + - detect-indent + - detect-newline + - dezalgo + - editor + - figgy-pudding + - find-npm-prefix + - fs-vacuum + - fs-write-stream-atomic + - gentle-fs + - glob + - graceful-fs + - has-unicode + - hosted-git-info + - iferr + - imurmurhash + - infer-owner + - inflight + - inherits + - ini + - init-package-json + - is-cidr + - json-parse-better-errors + - JSONStream + - lazy-property + - libcipm + - libnpm + - libnpmaccess + - libnpmhook + - libnpmorg + - libnpmsearch + - libnpmteam + - libnpx + - lock-verify + - lockfile + - lodash._baseindexof + - lodash._baseuniq + - lodash._bindcallback + - lodash._cacheindexof + - lodash._createcache + - lodash._getnative + - lodash.clonedeep + - lodash.restparam + - lodash.union + - lodash.uniq + - lodash.without + - lru-cache + - meant + - mississippi + - mkdirp + - move-concurrently + - node-gyp + - nopt + - normalize-package-data + - npm-audit-report + - npm-cache-filename + - npm-install-checks + - npm-lifecycle + - npm-package-arg + - npm-packlist + - npm-pick-manifest + - npm-profile + - npm-registry-fetch + - npm-user-validate + - npmlog + - once + - opener + - osenv + - pacote + - path-is-inside + - promise-inflight + - qrcode-terminal + - query-string + - qw + - read-cmd-shim + - read-installed + - read-package-json + - read-package-tree + - read + - readable-stream + - readdir-scoped-modules + - request + - retry + - rimraf + - safe-buffer + - semver + - sha + - slide + - sorted-object + - sorted-union-stream + - ssri + - stringify-package + - tar + - text-table + - tiny-relative-date + - uid-number + - umask + - unique-filename + - unpipe + - update-notifier + - uuid + - validate-npm-package-license + - validate-npm-package-name + - which + - worker-farm + - write-file-atomic + + /npmlog/4.1.2: + resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} + dependencies: + are-we-there-yet: 1.1.7 + console-control-strings: 1.1.0 + gauge: 2.7.4 + set-blocking: 2.0.0 + dev: true + + /npmlog/6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + are-we-there-yet: 3.0.1 + console-control-strings: 1.1.0 + gauge: 4.0.4 + set-blocking: 2.0.0 + dev: true + + /nth-check/1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + dependencies: + boolbase: 1.0.0 + dev: true + + /nth-check/2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /number-is-nan/1.0.1: + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} + dev: true + + /nunjucks/3.2.3: + resolution: {integrity: sha512-psb6xjLj47+fE76JdZwskvwG4MYsQKXUtMsPh6U0YMvmyjRtKRFcxnlXGWglNybtNTNVmGdp94K62/+NjF5FDQ==} + engines: {node: '>= 6.9.0'} + hasBin: true + peerDependencies: + chokidar: ^3.3.0 + peerDependenciesMeta: + chokidar: + optional: true + dependencies: + a-sync-waterfall: 1.0.1 + asap: 2.0.6 + commander: 5.1.0 + dev: true + + /nwsapi/2.2.2: + resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} + dev: true + + /nx/15.4.5: + resolution: {integrity: sha512-1spZL6sgOV8JJJuN8W5CLtJYwTOnlyaV32jPXfidavU0QMS8MP+rW3+NUQ9Uzc1UYhOu8llZWtnen93neVGQRw==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + dependencies: + '@nrwl/cli': 15.4.5 + '@nrwl/tao': 15.4.5 + '@parcel/watcher': 2.0.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.0-rc.35 + '@zkochan/js-yaml': 0.0.6 + axios: 1.2.2 + chalk: 4.1.0 + chokidar: 3.5.3 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 7.0.4 + dotenv: 10.0.0 + enquirer: 2.3.6 + fast-glob: 3.2.7 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 10.1.0 + glob: 7.1.4 + ignore: 5.2.4 + js-yaml: 4.1.0 + jsonc-parser: 3.2.0 + minimatch: 3.0.5 + npm-run-path: 4.0.1 + open: 8.4.0 + semver: 7.3.4 + string-width: 4.2.3 + strong-log-transformer: 2.1.0 + tar-stream: 2.2.0 + tmp: 0.2.1 + tsconfig-paths: 4.1.2 + tslib: 2.4.1 + v8-compile-cache: 2.3.0 + yargs: 17.6.2 + yargs-parser: 21.1.1 + transitivePeerDependencies: + - debug + dev: true + + /oauth-sign/0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + dev: true + + /object-assign/3.0.0: + resolution: {integrity: sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==} + engines: {node: '>=0.10.0'} + dev: true + + /object-assign/4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: true + + /object-copy/0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + dev: true + + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + + /object-is/1.1.5: + resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + dev: true + + /object-keys/1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object-visit/1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.defaults/1.1.0: + resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==} + engines: {node: '>=0.10.0'} + dependencies: + array-each: 1.0.1 + array-slice: 1.1.0 + for-own: 1.0.0 + isobject: 3.0.1 + dev: true + + /object.getownpropertydescriptors/2.1.5: + resolution: {integrity: sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==} + engines: {node: '>= 0.8'} + dependencies: + array.prototype.reduce: 1.0.5 + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + dev: true + + /object.map/1.0.1: + resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==} + engines: {node: '>=0.10.0'} + dependencies: + for-own: 1.0.0 + make-iterator: 1.0.1 + dev: true + + /object.pick/1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /object.reduce/1.0.1: + resolution: {integrity: sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==} + engines: {node: '>=0.10.0'} + dependencies: + for-own: 1.0.0 + make-iterator: 1.0.1 + dev: true + + /object.values/1.1.6: + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + dev: true + + /omggif/1.0.10: + resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==} + dev: true + + /omit-deep/0.3.0: + resolution: {integrity: sha512-Lbl/Ma59sss2b15DpnWnGmECBRL8cRl/PjPbPMVW+Y8zIQzRrwMaI65Oy6HvxyhYeILVKBJb2LWeG81bj5zbMg==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: 2.0.4 + unset-value: 0.1.2 + dev: true + + /once/1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime/5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /onetime/6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + + /open/8.4.0: + resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} + engines: {node: '>=12'} + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + dev: true + + /optionator/0.8.3: + resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.3.0 + prelude-ls: 1.1.2 + type-check: 0.3.2 + word-wrap: 1.2.3 + dev: true + + /ora/5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.7.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /ora/6.1.2: + resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + bl: 5.1.0 + chalk: 5.1.2 + cli-cursor: 4.0.0 + cli-spinners: 2.7.0 + is-interactive: 2.0.0 + is-unicode-supported: 1.3.0 + log-symbols: 5.1.0 + strip-ansi: 7.0.1 + wcwidth: 1.0.1 + dev: true + + /ordered-read-streams/1.0.1: + resolution: {integrity: sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==} + dependencies: + readable-stream: 2.3.7 + dev: true + + /os-locale/1.4.0: + resolution: {integrity: sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==} + engines: {node: '>=0.10.0'} + dependencies: + lcid: 1.0.0 + dev: true + + /os-name/5.0.1: + resolution: {integrity: sha512-0EQpaHUHq7olp2/YFUr+0vZi9tMpDTblHGz+Ch5RntKxiRXOAY0JOz1UlxhSjMSksHvkm13eD6elJj3M8Ht/kw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + macos-release: 3.1.0 + windows-release: 5.0.1 + dev: true + + /os-tmpdir/1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true + + /p-cancelable/3.0.0: + resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} + engines: {node: '>=12.20'} + dev: true + + /p-each-series/2.2.0: + resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} + engines: {node: '>=8'} + dev: true + + /p-finally/1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + dev: true + + /p-limit/1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit/2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit/3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate/2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate/4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-map-series/2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + dev: true + + /p-map/4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-pipe/3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + dev: true + + /p-queue/6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + dev: true + + /p-reduce/2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + dev: true + + /p-timeout/3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + dependencies: + p-finally: 1.0.0 + dev: true + + /p-try/1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true + + /p-try/2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /p-waterfall/2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} + dependencies: + p-reduce: 2.1.0 + dev: true + + /pac-proxy-agent/5.0.0: + resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==} + engines: {node: '>= 8'} + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.3.4 + get-uri: 3.0.2 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + pac-resolver: 5.0.1 + raw-body: 2.5.1 + socks-proxy-agent: 5.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /pac-resolver/5.0.1: + resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==} + engines: {node: '>= 8'} + dependencies: + degenerator: 3.0.2 + ip: 1.1.8 + netmask: 2.0.2 + dev: true + + /package-json/8.1.0: + resolution: {integrity: sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg==} + engines: {node: '>=14.16'} + dependencies: + got: 12.5.3 + registry-auth-token: 5.0.1 + registry-url: 6.0.1 + semver: 7.3.8 + dev: true + + /package-name-regex/2.0.6: + resolution: {integrity: sha512-gFL35q7kbE/zBaPA3UKhp2vSzcPYx2ecbYuwv1ucE9Il6IIgBDweBlH8D68UFGZic2MkllKa2KHCfC1IQBQUYA==} + engines: {node: '>=12'} + dev: true + + /pacote/11.3.5: + resolution: {integrity: sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@npmcli/git': 2.1.0 + '@npmcli/installed-package-contents': 1.0.7 + '@npmcli/promise-spawn': 1.3.2 + '@npmcli/run-script': 1.8.6 + cacache: 15.3.0 + chownr: 2.0.0 + fs-minipass: 2.1.0 + infer-owner: 1.0.4 + minipass: 3.3.6 + mkdirp: 1.0.4 + npm-package-arg: 8.1.5 + npm-packlist: 2.2.2 + npm-pick-manifest: 6.1.1 + npm-registry-fetch: 11.0.0 + promise-retry: 2.0.1 + read-package-json-fast: 2.0.3 + rimraf: 3.0.2 + ssri: 8.0.1 + tar: 6.1.13 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /pacote/13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + '@npmcli/git': 3.0.2 + '@npmcli/installed-package-contents': 1.0.7 + '@npmcli/promise-spawn': 3.0.0 + '@npmcli/run-script': 4.2.1 + cacache: 16.1.3 + chownr: 2.0.0 + fs-minipass: 2.1.0 + infer-owner: 1.0.4 + minipass: 3.3.6 + mkdirp: 1.0.4 + npm-package-arg: 9.1.2 + npm-packlist: 5.1.3 + npm-pick-manifest: 7.0.2 + npm-registry-fetch: 13.3.1 + proc-log: 2.0.1 + promise-retry: 2.0.1 + read-package-json: 5.0.2 + read-package-json-fast: 2.0.3 + rimraf: 3.0.2 + ssri: 9.0.1 + tar: 6.1.13 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /pako/1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + dev: true + + /param-case/2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + dependencies: + no-case: 2.3.2 + dev: true + + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-bmfont-ascii/1.0.6: + resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==} + dev: true + + /parse-bmfont-binary/1.0.6: + resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==} + dev: true + + /parse-bmfont-xml/1.1.4: + resolution: {integrity: sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==} + dependencies: + xml-parse-from-string: 1.0.1 + xml2js: 0.4.23 + dev: true + + /parse-conflict-json/2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + json-parse-even-better-errors: 2.3.1 + just-diff: 5.2.0 + just-diff-apply: 5.5.0 + dev: true + + /parse-filepath/1.0.2: + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} + dependencies: + is-absolute: 1.0.0 + map-cache: 0.2.2 + path-root: 0.1.1 + dev: true + + /parse-headers/2.0.5: + resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} + dev: true + + /parse-json/2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + dependencies: + error-ex: 1.3.2 + dev: true + + /parse-json/4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json/5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.18.6 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-node-version/1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + dev: true + + /parse-passwd/1.0.0: + resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} + engines: {node: '>=0.10.0'} + dev: true + + /parse-path/7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + dependencies: + protocols: 2.0.1 + dev: true + + /parse-svg-path/0.1.2: + resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==} + dev: true + + /parse-url/8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + dependencies: + parse-path: 7.0.0 + dev: true + + /parse5-htmlparser2-tree-adapter/7.0.0: + resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + dependencies: + domhandler: 5.0.3 + parse5: 7.1.2 + dev: true + + /parse5/6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + dev: true + + /parse5/7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.4.0 + dev: true + + /pascalcase/0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + dev: true + + /path-dirname/1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + dev: true + + /path-exists/2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + dependencies: + pinkie-promise: 2.0.1 + dev: true + + /path-exists/3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + dev: true + + /path-exists/4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute/1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key/2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + dev: true + + /path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-key/4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-root-regex/0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} + dev: true + + /path-root/0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} + dependencies: + path-root-regex: 0.1.2 + dev: true + + /path-type/1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: 4.2.10 + pify: 2.3.0 + pinkie-promise: 2.0.1 + dev: true + + /path-type/3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + dependencies: + pify: 3.0.0 + dev: true + + /path-type/4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /pathe/0.2.0: + resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} + dev: true + + /pathe/1.0.0: + resolution: {integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==} + dev: true + + /pathval/1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + dev: true + + /performance-now/2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + dev: true + + /phin/2.9.3: + resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==} + dev: true + + /picocolors/1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pify/2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + dev: true + + /pify/3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + dev: true + + /pify/4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: true + + /pify/5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + dev: true + + /pinkie-promise/2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + dependencies: + pinkie: 2.0.4 + dev: true + + /pinkie/2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + dev: true + + /pirates/4.0.5: + resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} + engines: {node: '>= 6'} + dev: true + + /pixelmatch/4.0.2: + resolution: {integrity: sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==} + hasBin: true + dependencies: + pngjs: 3.4.0 + dev: true + + /pkg-dir/4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + dev: true + + /pkg-types/1.0.1: + resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==} + dependencies: + jsonc-parser: 3.2.0 + mlly: 1.0.0 + pathe: 1.0.0 + dev: true + + /plexer/2.0.0: + resolution: {integrity: sha512-MWAhwDaaaNA9sfbZz00HjSxrwOxEUD8BW4pHG0obnjvJpyG3RcOjSIcDIQFW3NP+RDJlzPbyXdgCR3V24tyUdw==} + engines: {node: '>=8.12.0'} + dependencies: + isstream: 0.1.2 + readable-stream: 3.6.0 + dev: true + + /plugin-error/1.0.1: + resolution: {integrity: sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==} + engines: {node: '>= 0.10'} + dependencies: + ansi-colors: 1.1.0 + arr-diff: 4.0.0 + arr-union: 3.1.0 + extend-shallow: 3.0.2 + dev: true + + /pngjs/3.4.0: + resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} + engines: {node: '>=4.0.0'} + dev: true + + /posix-character-classes/0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + dev: true + + /postcss/8.4.20: + resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /potrace/2.1.8: + resolution: {integrity: sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g==} + dependencies: + jimp: 0.14.0 + dev: true + + /preact/10.11.3: + resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==} + + /prebuild-install/6.1.4: + resolution: {integrity: sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==} + engines: {node: '>=6'} + hasBin: true + dependencies: + detect-libc: 1.0.3 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.6 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 2.30.1 + npmlog: 4.1.2 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 3.1.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: true + + /prelude-ls/1.1.2: + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} + engines: {node: '>= 0.8.0'} + dev: true + + /prettier/2.8.1: + resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /pretty-format/26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + dependencies: + '@jest/types': 26.6.2 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + react-is: 17.0.2 + dev: true + + /pretty-format/27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + dev: true + + /pretty-format/28.1.3: + resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /pretty-format/29.3.1: + resolution: {integrity: sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.0.0 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /pretty-hrtime/1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} + dev: true + + /proc-log/2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + + /process-nextick-args/2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + dev: true + + /process/0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + dev: true + + /promise-all-reject-late/1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + dev: true + + /promise-call-limit/1.0.1: + resolution: {integrity: sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q==} + dev: true + + /promise-inflight/1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + dev: true + + /promise-retry/2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + dependencies: + err-code: 2.0.3 + retry: 0.12.0 + dev: true + + /promise.allsettled/1.0.6: + resolution: {integrity: sha512-22wJUOD3zswWFqgwjNHa1965LvqTX87WPu/lreY2KSd7SVcERfuZ4GfUaOnJNnvtoIv2yXT/W00YIGMetXtFXg==} + engines: {node: '>= 0.4'} + dependencies: + array.prototype.map: 1.0.5 + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + get-intrinsic: 1.1.3 + iterate-value: 1.0.2 + dev: true + + /prompts/2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: true + + /promzard/0.3.0: + resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} + dependencies: + read: 1.0.7 + dev: true + + /prop-types/15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + dev: true + + /proto-list/1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + dev: true + + /protocols/2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + dev: true + + /proxy-agent/5.0.0: + resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==} + engines: {node: '>= 8'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + lru-cache: 5.1.1 + pac-proxy-agent: 5.0.0 + proxy-from-env: 1.1.0 + socks-proxy-agent: 5.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /proxy-from-env/1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + dev: true + + /psl/1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + + /pump/2.0.1: + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /pump/3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /pumpify/1.5.1: + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + dependencies: + duplexify: 3.7.1 + inherits: 2.0.4 + pump: 2.0.1 + dev: true + + /punycode/2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /pupa/3.1.0: + resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} + engines: {node: '>=12.20'} + dependencies: + escape-goat: 4.0.0 + dev: true + + /q/1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /qs/6.5.3: + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} + engines: {node: '>=0.6'} + dev: true + + /querystringify/2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask/1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /quick-lru/4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /quick-lru/5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + dev: true + + /randombytes/2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /raw-body/2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: true + + /rc/1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.6 + strip-json-comments: 2.0.1 + dev: true + + /react-dom/17.0.2_react@17.0.2: + resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} + peerDependencies: + react: 17.0.2 + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react: 17.0.2 + scheduler: 0.20.2 + dev: true + + /react-dom/18.2.0_react@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + + /react-is/16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + dev: true + + /react-is/17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + dev: true + + /react-is/18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: true + + /react-refresh/0.14.0: + resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} + engines: {node: '>=0.10.0'} + dev: true + + /react/17.0.2: + resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + dev: true + + /react/18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + dev: false + + /read-cmd-shim/3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + + /read-package-json-fast/2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} + dependencies: + json-parse-even-better-errors: 2.3.1 + npm-normalize-package-bin: 1.0.1 + dev: true + + /read-package-json/5.0.2: + resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + glob: 8.0.3 + json-parse-even-better-errors: 2.3.1 + normalize-package-data: 4.0.1 + npm-normalize-package-bin: 2.0.0 + dev: true + + /read-pkg-up/1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + dependencies: + find-up: 1.1.2 + read-pkg: 1.1.0 + dev: true + + /read-pkg-up/3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + dependencies: + find-up: 2.1.0 + read-pkg: 3.0.0 + dev: true + + /read-pkg-up/7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg/1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + dependencies: + load-json-file: 1.1.0 + normalize-package-data: 2.5.0 + path-type: 1.1.0 + dev: true + + /read-pkg/3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + dev: true + + /read-pkg/5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /read/1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + dependencies: + mute-stream: 0.0.8 + dev: true + + /readable-stream/1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + dev: true + + /readable-stream/2.3.7: + resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + dev: true + + /readable-stream/3.6.0: + resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdir-scoped-modules/1.1.0: + resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + debuglog: 1.0.1 + dezalgo: 1.0.4 + graceful-fs: 4.2.10 + once: 1.4.0 + dev: true + + /readdirp/2.2.1: + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} + dependencies: + graceful-fs: 4.2.10 + micromatch: 3.1.10 + readable-stream: 2.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /rechoir/0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + dependencies: + resolve: 1.22.1 + dev: true + + /redent/3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regenerate-unicode-properties/10.1.0: + resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate/1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + dev: true + + /regenerator-runtime/0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: true + + /regenerator-transform/0.15.1: + resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} + dependencies: + '@babel/runtime': 7.20.7 + dev: true + + /regex-not/1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + dev: true + + /regexp.prototype.flags/1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpu-core/5.2.2: + resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.0 + regjsgen: 0.7.1 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + dev: true + + /registry-auth-token/5.0.1: + resolution: {integrity: sha512-UfxVOj8seK1yaIOiieV4FIP01vfBDLsY0H9sQzi9EbbUdJiuuBjJgLa1DpImXMNPnVkBD4eVxTEXcrZA6kfpJA==} + engines: {node: '>=14'} + dependencies: + '@pnpm/npm-conf': 1.0.5 + dev: true + + /registry-url/6.0.1: + resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} + engines: {node: '>=12'} + dependencies: + rc: 1.2.8 + dev: true + + /regjsgen/0.7.1: + resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} + dev: true + + /regjsparser/0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /relateurl/0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + dev: true + + /release-it/15.6.0: + resolution: {integrity: sha512-NXewgzO8QV1LOFjn2K7/dgE1Y1cG+2JiLOU/x9X/Lq9UdFn2hTH1r9SSrufCxG+y/Rp+oN8liYTsNptKrj92kg==} + engines: {node: '>=14.9'} + hasBin: true + dependencies: + '@iarna/toml': 2.2.5 + '@octokit/rest': 19.0.5 + async-retry: 1.3.3 + chalk: 5.1.2 + cosmiconfig: 8.0.0 + execa: 6.1.0 + git-url-parse: 13.1.0 + globby: 13.1.2 + got: 12.5.3 + inquirer: 9.1.4 + is-ci: 3.0.1 + lodash: 4.17.21 + mime-types: 2.1.35 + new-github-release-url: 2.0.0 + node-fetch: 3.3.0 + open: 8.4.0 + ora: 6.1.2 + os-name: 5.0.1 + promise.allsettled: 1.0.6 + proxy-agent: 5.0.0 + semver: 7.3.8 + shelljs: 0.8.5 + update-notifier: 6.0.2 + url-join: 5.0.0 + wildcard-match: 5.1.2 + yargs-parser: 21.1.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /remove-bom-buffer/3.0.0: + resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + is-utf8: 0.2.1 + dev: true + + /remove-bom-stream/1.2.0: + resolution: {integrity: sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==} + engines: {node: '>= 0.10'} + dependencies: + remove-bom-buffer: 3.0.0 + safe-buffer: 5.2.1 + through2: 2.0.5 + dev: true + + /remove-trailing-separator/1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + dev: true + + /rename-keys/1.2.0: + resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} + engines: {node: '>= 0.8.0'} + dev: true + + /repeat-element/1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + dev: true + + /repeat-string/1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + dev: true + + /replace-ext/0.0.1: + resolution: {integrity: sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==} + engines: {node: '>= 0.4'} + dev: true + + /replace-ext/1.0.1: + resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} + engines: {node: '>= 0.10'} + dev: true + + /replace-ext/2.0.0: + resolution: {integrity: sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==} + engines: {node: '>= 10'} + dev: true + + /replace-homedir/1.0.0: + resolution: {integrity: sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==} + engines: {node: '>= 0.10'} + dependencies: + homedir-polyfill: 1.0.3 + is-absolute: 1.0.0 + remove-trailing-separator: 1.1.0 + dev: true + + /request/2.88.2: + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + dependencies: + aws-sign2: 0.7.0 + aws4: 1.11.0 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + har-validator: 5.1.5 + http-signature: 1.2.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + oauth-sign: 0.9.0 + performance-now: 2.1.0 + qs: 6.5.3 + safe-buffer: 5.2.1 + tough-cookie: 2.5.0 + tunnel-agent: 0.6.0 + uuid: 3.4.0 + dev: true + + /require-directory/2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /require-main-filename/1.0.1: + resolution: {integrity: sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==} + dev: true + + /require-main-filename/2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + dev: true + + /require-relative/0.8.7: + resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==} + dev: true + + /requires-port/1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + dev: true + + /resolve-alpn/1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + dev: true + + /resolve-cwd/3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + dependencies: + resolve-from: 5.0.0 + dev: true + + /resolve-dir/1.0.1: + resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + global-modules: 1.0.0 + dev: true + + /resolve-from/3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + dev: true + + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from/5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-options/1.1.0: + resolution: {integrity: sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==} + engines: {node: '>= 0.10'} + dependencies: + value-or-function: 3.0.0 + dev: true + + /resolve-package-path/3.1.0: + resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} + engines: {node: 10.* || >= 12} + dependencies: + path-root: 0.1.1 + resolve: 1.22.1 + dev: true + + /resolve-url/0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + dev: true + + /resolve.exports/1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + dev: true + + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.11.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /responselike/3.0.0: + resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} + engines: {node: '>=14.16'} + dependencies: + lowercase-keys: 3.0.0 + dev: true + + /restore-cursor/3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /restore-cursor/4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /ret/0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + dev: true + + /retry/0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + dev: true + + /retry/0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + dev: true + + /reusify/1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf/2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup-plugin-esbuild/4.10.3_rollup@2.78.1: + resolution: {integrity: sha512-RILwUCgnCL5vo8vyZ/ZpwcqRuE5KmLizEv6BujBQfgXFZ6ggcS0FiYvQN+gsTJfWCMaU37l0Fosh4eEufyO97Q==} + engines: {node: '>=12'} + peerDependencies: + esbuild: '>=0.10.1' + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 4.2.1 + debug: 4.3.4 + es-module-lexer: 0.9.3 + joycon: 3.1.1 + jsonc-parser: 3.2.0 + rollup: 2.78.1 + transitivePeerDependencies: + - supports-color + dev: true + + /rollup-plugin-filesize/9.1.2: + resolution: {integrity: sha512-m2fE9hFaKgWKisJzyWXctOFKlgMRelo/58HgeC0lXUK/qykxiqkr6bsrotlvo2bvrwPsjgT7scNdQSr6qtl37A==} + engines: {node: '>=10.0.0'} + dependencies: + '@babel/runtime': 7.20.7 + boxen: 5.1.2 + brotli-size: 4.0.0 + colors: 1.4.0 + filesize: 6.4.0 + gzip-size: 6.0.0 + pacote: 11.3.5 + terser: 5.16.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /rollup-plugin-license/3.0.1_rollup@2.78.1: + resolution: {integrity: sha512-/lec6Y94Y3wMfTDeYTO/jSXII0GQ/XkDZCiqkMKxyU5D5nGPaxr/2JNYvAgYsoCYuOLGOanKDPjCCQiTT96p7A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.0.0 || ^2.0.0 || ^3.0.0 + dependencies: + commenting: 1.1.0 + glob: 7.2.3 + lodash: 4.17.21 + magic-string: 0.26.7 + mkdirp: 1.0.4 + moment: 2.29.4 + package-name-regex: 2.0.6 + rollup: 2.78.1 + spdx-expression-validate: 2.0.0 + spdx-satisfies: 5.0.1 + dev: true + + /rollup-plugin-peer-deps-external/2.2.4_rollup@2.78.1: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + dependencies: + rollup: 2.78.1 + dev: true + + /rollup-plugin-rename/1.0.1_rollup@2.78.1: + resolution: {integrity: sha512-gISyKmUmIMNcHASejxuxFWOSjnAM5ehqiMo0o0xnmCnguwojYXRZ6maM9xhlYKZ8PPCAo1oTSyC79wiI0LKX5g==} + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + estree-walker: 2.0.2 + magic-string: 0.25.9 + transitivePeerDependencies: + - rollup + dev: true + + /rollup-plugin-svelte/7.1.0_rollup@2.78.1: + resolution: {integrity: sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg==} + engines: {node: '>=10'} + peerDependencies: + rollup: '>=2.0.0' + svelte: '>=3.5.0' + dependencies: + require-relative: 0.8.7 + rollup: 2.78.1 + rollup-pluginutils: 2.8.2 + dev: true + + /rollup-plugin-svelte/7.1.0_svelte@3.55.0: + resolution: {integrity: sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg==} + engines: {node: '>=10'} + peerDependencies: + rollup: '>=2.0.0' + svelte: '>=3.5.0' + dependencies: + require-relative: 0.8.7 + rollup-pluginutils: 2.8.2 + svelte: 3.55.0 + dev: true + + /rollup-plugin-terser/7.0.2_rollup@2.78.1: + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + peerDependencies: + rollup: ^2.0.0 + dependencies: + '@babel/code-frame': 7.18.6 + jest-worker: 26.6.2 + rollup: 2.78.1 + serialize-javascript: 4.0.0 + terser: 5.16.1 + dev: true + + /rollup-plugin-visualizer/5.9.0_rollup@2.78.1: + resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} + engines: {node: '>=14'} + hasBin: true + peerDependencies: + rollup: 2.x || 3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + open: 8.4.0 + picomatch: 2.3.1 + rollup: 2.78.1 + source-map: 0.7.4 + yargs: 17.6.2 + dev: true + + /rollup-pluginutils/2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + dependencies: + estree-walker: 0.6.1 + dev: true + + /rollup/2.78.1: + resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rollup/3.9.1: + resolution: {integrity: sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rsvp/4.8.5: + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} + dev: true + + /run-async/2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true + + /run-parallel/1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /rxjs/7.8.0: + resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} + dependencies: + tslib: 2.4.1 + dev: true + + /sade/1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + dependencies: + mri: 1.2.0 + dev: true + + /safe-buffer/5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true + + /safe-buffer/5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safe-regex-test/1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-regex: 1.1.4 + dev: true + + /safe-regex/1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + dependencies: + ret: 0.1.15 + dev: true + + /safer-buffer/2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /sander/0.5.1: + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + dependencies: + es6-promise: 3.3.1 + graceful-fs: 4.2.10 + mkdirp: 0.5.6 + rimraf: 2.7.1 + dev: true + + /sane/4.1.0: + resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true + dependencies: + '@cnakazawa/watch': 1.0.4 + anymatch: 2.0.0 + capture-exit: 2.0.0 + exec-sh: 0.3.6 + execa: 1.0.0 + fb-watchman: 2.0.2 + micromatch: 3.1.10 + minimist: 1.2.6 + walker: 1.0.8 + transitivePeerDependencies: + - supports-color + dev: true + + /sass-graph/4.0.1: + resolution: {integrity: sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==} + engines: {node: '>=12'} + hasBin: true + dependencies: + glob: 7.2.3 + lodash: 4.17.21 + scss-tokenizer: 0.4.3 + yargs: 17.6.2 + dev: true + + /sax/1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true + + /saxes/5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + dependencies: + xmlchars: 2.2.0 + dev: true + + /saxes/6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + dependencies: + xmlchars: 2.2.0 + dev: true + + /scheduler/0.20.2: + resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + dev: true + + /scheduler/0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + dev: false + + /scss-tokenizer/0.4.3: + resolution: {integrity: sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==} + dependencies: + js-base64: 2.6.4 + source-map: 0.7.4 + dev: true + + /semver-diff/4.0.0: + resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} + engines: {node: '>=12'} + dependencies: + semver: 7.3.8 + dev: true + + /semver-greatest-satisfied-range/1.1.0: + resolution: {integrity: sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==} + engines: {node: '>= 0.10'} + dependencies: + sver-compat: 1.5.0 + dev: true + + /semver/5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + dev: true + + /semver/6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + + /semver/7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /serialize-javascript/4.0.0: + resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + dependencies: + randombytes: 2.1.0 + dev: true + + /set-blocking/2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + dev: true + + /set-value/2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + dev: true + + /setprototypeof/1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + dev: true + + /shallow-clone/3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + dependencies: + kind-of: 6.0.3 + dev: true + + /sharp/0.28.1: + resolution: {integrity: sha512-4mCGMEN4ntaVuFGwHx7FvkJQkIgbI+S+F9a3bI7ugdvKjPr4sF7/ibvlRKhJyzhoQi+ODM+XYY1de8xs7MHbfA==} + engines: {node: '>=10'} + requiresBuild: true + dependencies: + color: 3.2.1 + detect-libc: 1.0.3 + node-addon-api: 3.2.1 + prebuild-install: 6.1.4 + semver: 7.3.8 + simple-get: 3.1.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: true + + /shebang-command/1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex/1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + dev: true + + /shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /shelljs/0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + dependencies: + glob: 7.2.3 + interpret: 1.4.0 + rechoir: 0.6.2 + dev: true + + /shellwords/0.1.1: + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} + dev: true + optional: true + + /side-channel/1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + object-inspect: 1.12.2 + dev: true + + /signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /simple-concat/1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + dev: true + + /simple-get/3.1.1: + resolution: {integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==} + dependencies: + decompress-response: 4.2.1 + once: 1.4.0 + simple-concat: 1.0.1 + dev: true + + /simple-swizzle/0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + dependencies: + is-arrayish: 0.3.2 + dev: true + + /sisteransi/1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: true + + /slash/2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + dev: true + + /slash/3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /slash/4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + dev: true + + /smart-buffer/4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true + + /snapdragon-node/2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + dev: true + + /snapdragon-util/3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /snapdragon/0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks-proxy-agent/5.0.1: + resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks-proxy-agent/6.2.1: + resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} + engines: {node: '>= 10'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks-proxy-agent/7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks/2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} + engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + dependencies: + ip: 2.0.0 + smart-buffer: 4.2.0 + dev: true + + /solid-js/1.6.6: + resolution: {integrity: sha512-5x33mEbPI8QLuywvFjQP4krjWDr8xiYFgZx9KCBH7b0ZzypQCHaUubob7bK6i+1u6nhaAqhWtvXS587Kb8DShA==} + dependencies: + csstype: 3.1.1 + dev: true + + /sorcery/0.10.0: + resolution: {integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g==} + hasBin: true + dependencies: + buffer-crc32: 0.2.13 + minimist: 1.2.6 + sander: 0.5.1 + sourcemap-codec: 1.4.8 + dev: true + + /sort-keys/2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + dependencies: + is-plain-obj: 1.1.0 + dev: true + + /sort-keys/4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} + dependencies: + is-plain-obj: 2.1.0 + dev: true + + /source-map-js/1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /source-map-resolve/0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + dev: true + + /source-map-support/0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-support/0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-url/0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + dev: true + + /source-map/0.5.6: + resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map/0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map/0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + /source-map/0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + dev: true + + /sourcemap-codec/1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + + /sparkles/1.0.1: + resolution: {integrity: sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==} + engines: {node: '>= 0.10'} + dev: true + + /spdx-compare/1.0.0: + resolution: {integrity: sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==} + dependencies: + array-find-index: 1.0.2 + spdx-expression-parse: 3.0.1 + spdx-ranges: 2.1.1 + dev: true + + /spdx-correct/3.1.1: + resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.12 + dev: true + + /spdx-exceptions/2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse/3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.12 + dev: true + + /spdx-expression-validate/2.0.0: + resolution: {integrity: sha512-b3wydZLM+Tc6CFvaRDBOF9d76oGIHNCLYFeHbftFXUWjnfZWganmDmvtM5sm1cRwJc/VDBMLyGGrsLFd1vOxbg==} + dependencies: + spdx-expression-parse: 3.0.1 + dev: true + + /spdx-license-ids/3.0.12: + resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + dev: true + + /spdx-ranges/2.1.1: + resolution: {integrity: sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==} + dev: true + + /spdx-satisfies/5.0.1: + resolution: {integrity: sha512-Nwor6W6gzFp8XX4neaKQ7ChV4wmpSh2sSDemMFSzHxpTw460jxFYeOn+jq4ybnSSw/5sc3pjka9MQPouksQNpw==} + dependencies: + spdx-compare: 1.0.0 + spdx-expression-parse: 3.0.1 + spdx-ranges: 2.1.1 + dev: true + + /split-string/3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + dev: true + + /split/1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + dev: true + + /split2/3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /sprintf-js/1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: true + + /sshpk/1.17.0: + resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + dev: true + + /ssri/8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /ssri/9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.3.6 + dev: true + + /stable/0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + dev: true + + /stack-trace/0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + dev: true + + /stack-utils/2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + dependencies: + escape-string-regexp: 2.0.0 + dev: true + + /static-extend/0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + dev: true + + /statuses/2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + dev: true + + /stdout-stream/1.4.1: + resolution: {integrity: sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==} + dependencies: + readable-stream: 2.3.7 + dev: true + + /stream-exhaust/1.0.2: + resolution: {integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==} + dev: true + + /stream-shift/1.0.1: + resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} + dev: true + + /streamfilter/3.0.0: + resolution: {integrity: sha512-kvKNfXCmUyC8lAXSSHCIXBUlo/lhsLcCU/OmzACZYpRUdtKIH68xYhm/+HI15jFJYtNJGYtCgn2wmIiExY1VwA==} + engines: {node: '>=8.12.0'} + dependencies: + readable-stream: 3.6.0 + dev: true + + /streamifier/0.1.1: + resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==} + engines: {node: '>=0.10'} + dev: true + + /string-length/4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + dev: true + + /string-width/1.0.2: + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + dev: true + + /string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string-width/5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.0.1 + dev: true + + /string.fromcodepoint/0.2.1: + resolution: {integrity: sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg==} + dev: true + + /string.prototype.codepointat/0.2.1: + resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==} + dev: true + + /string.prototype.trimend/1.0.6: + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + dev: true + + /string.prototype.trimstart/1.0.6: + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + dev: true + + /string_decoder/0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + dev: true + + /string_decoder/1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /string_decoder/1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi/3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: 2.1.1 + dev: true + + /strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi/7.0.1: + resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom/2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + dependencies: + is-utf8: 0.2.1 + dev: true + + /strip-bom/3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-bom/4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + dev: true + + /strip-eof/1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + dev: true + + /strip-final-newline/2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-final-newline/3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + + /strip-indent/3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments/2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + dev: true + + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /strip-literal/1.0.0: + resolution: {integrity: sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==} + dependencies: + acorn: 8.8.1 + dev: true + + /strong-log-transformer/2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + dependencies: + duplexer: 0.1.2 + minimist: 1.2.6 + through: 2.3.8 + dev: true + + /supports-color/2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + dev: true + + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-color/8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-hyperlinks/2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: true + + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /svelte-check/2.10.3_svelte@3.55.0: + resolution: {integrity: sha512-Nt1aWHTOKFReBpmJ1vPug0aGysqPwJh2seM1OvICfM2oeyaA62mOiy5EvkXhltGfhCcIQcq2LoE0l1CwcWPjlw==} + hasBin: true + peerDependencies: + svelte: ^3.24.0 + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + chokidar: 3.5.3 + fast-glob: 3.2.12 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm + typescript: 4.9.4 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - node-sass + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + dev: true + + /svelte-hmr/0.15.1_svelte@3.55.0: + resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + svelte: '>=3.19.0' + dependencies: + svelte: 3.55.0 + dev: true + + /svelte-preprocess/4.10.7_niwyv7xychq2ag6arq5eqxbomm: + resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} + engines: {node: '>= 9.11.2'} + requiresBuild: true + peerDependencies: + '@babel/core': ^7.10.2 + coffeescript: ^2.5.1 + less: ^3.11.3 || ^4.0.0 + node-sass: '*' + postcss: ^7 || ^8 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 + pug: ^3.0.0 + sass: ^1.26.8 + stylus: ^0.55.0 + sugarss: ^2.0.0 + svelte: ^3.23.0 + typescript: ^3.9.5 || ^4.0.0 + peerDependenciesMeta: + '@babel/core': + optional: true + coffeescript: + optional: true + less: + optional: true + node-sass: + optional: true + postcss: + optional: true + postcss-load-config: + optional: true + pug: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + typescript: + optional: true + dependencies: + '@types/pug': 2.0.6 + '@types/sass': 1.43.1 + detect-indent: 6.1.0 + magic-string: 0.25.9 + sorcery: 0.10.0 + strip-indent: 3.0.0 + svelte: 3.55.0 + typescript: 4.9.4 + dev: true + + /svelte-strip/1.0.3_svelte@3.55.0: + resolution: {integrity: sha512-B2xyeRaLRFNZBAhjKu73Zp5H3NHs35II0w6kkT1QpcM54iqkWYcueimeZKXHIF+KBuYQvgq7BKZFCQNhWYSxyg==} + hasBin: true + peerDependencies: + svelte: ^3.0.0 + dependencies: + glob: 8.0.3 + glob-promise: 5.0.1_glob@8.0.3 + minimatch: 5.1.2 + svelte: 3.55.0 + svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm + typescript: 4.9.4 + yargs: 17.6.2 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - node-sass + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + dev: true + + /svelte/3.55.0: + resolution: {integrity: sha512-uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA==} + engines: {node: '>= 8'} + dev: true + + /sver-compat/1.5.0: + resolution: {integrity: sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==} + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + dev: true + + /svg-outline-stroke/1.3.1: + resolution: {integrity: sha512-nfSJw3wFJCB8lVupuhD4SZjExZS72W2CF4QDr9tHRxXlbmTUqWKU3uDMMf3EIgryC6Pl458G+Ct9jesM5NUBXQ==} + engines: {node: '>=8'} + dependencies: + potrace: 2.1.8 + sharp: 0.28.1 + dev: true + + /svg-parser/2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + dev: true + + /svg-pathdata/5.0.5: + resolution: {integrity: sha512-TAAvLNSE3fEhyl/Da19JWfMAdhSXTYeviXsLSoDT1UM76ADj5ndwAPX1FKQEgB/gFMPavOy6tOqfalXKUiXrow==} + engines: {node: '>=6.9.5'} + dev: true + + /svg-pathdata/6.0.3: + resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==} + engines: {node: '>=12.0.0'} + dev: true + + /svg-tags/1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + dev: true + + /svg2ttf/4.3.0: + resolution: {integrity: sha512-LZ0B7zzHWLWbzLzwaKGHQvPOuxCXLReIb3LSxFSGUy1gMw2Utk6KGNbTmbmRL6Rk1qDSmTixnDrQgnXaL9n0CA==} + hasBin: true + dependencies: + argparse: 1.0.10 + cubic2quad: 1.2.1 + lodash: 4.17.21 + microbuffer: 1.0.0 + svgpath: 2.6.0 + xmldom: 0.1.31 + dev: true + + /svg2ttf/6.0.3: + resolution: {integrity: sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==} + hasBin: true + dependencies: + '@xmldom/xmldom': 0.7.9 + argparse: 2.0.1 + cubic2quad: 1.2.1 + lodash: 4.17.21 + microbuffer: 1.0.0 + svgpath: 2.6.0 + dev: true + + /svgicons2svgfont/10.0.6: + resolution: {integrity: sha512-fUgQEVg3XwTbOHvlXahHGqCet5Wvfo1bV4DCvbSRvjsOCPCRunYbG4dUJCPegps37BMph3eOrfoobhH5AWuC6A==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + commander: 7.2.0 + geometry-interfaces: 1.1.4 + glob: 7.2.3 + neatequal: 1.0.0 + readable-stream: 3.6.0 + sax: 1.2.4 + svg-pathdata: 6.0.3 + dev: true + + /svgicons2svgfont/9.2.0: + resolution: {integrity: sha512-mWeiuob7L2ZTcnAEP4JvSQ1pnIsGjV16ykQ0fCiiXqoUAQ/iNsDvBc601ojjfP89eCPtr3IVZ9mDxYpdxYO3xQ==} + engines: {node: '>=6.9.5'} + hasBin: true + dependencies: + array.prototype.flatmap: 1.2.4 + commander: 4.1.1 + geometry-interfaces: 1.1.4 + glob: 7.2.3 + neatequal: 1.0.0 + readable-stream: 3.6.0 + sax: 1.2.4 + string.fromcodepoint: 0.2.1 + string.prototype.codepointat: 0.2.1 + svg-pathdata: 5.0.5 + dev: true + + /svgo/1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + dependencies: + chalk: 2.4.2 + coa: 2.0.2 + css-select: 2.1.0 + css-select-base-adapter: 0.1.1 + css-tree: 1.0.0-alpha.37 + csso: 4.2.0 + js-yaml: 3.14.1 + mkdirp: 0.5.6 + object.values: 1.1.6 + sax: 1.2.4 + stable: 0.1.8 + unquote: 1.1.1 + util.promisify: 1.0.1 + dev: true + + /svgo/2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.0.0 + stable: 0.1.8 + dev: true + + /svgpath/2.6.0: + resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==} + dev: true + + /svgson/5.2.1: + resolution: {integrity: sha512-nbM6QuyZiKzQ0Uo51VDta93YJAr96ikyT40PsgJRrzynOGsOlnmJ6zAK5hUFyE5gnxcg7yuOPUWbUlmV9K0+Dg==} + dependencies: + deep-rename-keys: 0.2.1 + omit-deep: 0.3.0 + xml-reader: 2.4.3 + dev: true + + /symbol-tree/3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true + + /tar-fs/2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + dev: true + + /tar-stream/2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /tar/6.1.13: + resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} + engines: {node: '>=10'} + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 4.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + dev: true + + /temp-dir/1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + dev: true + + /terminal-link/2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} + dependencies: + ansi-escapes: 4.3.2 + supports-hyperlinks: 2.3.0 + dev: true + + /terser/5.16.1: + resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.1 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + + /test-exclude/6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + dev: true + + /text-extensions/1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /throat/5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + dev: true + + /through/2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /through2-filter/3.0.0: + resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==} + dependencies: + through2: 2.0.5 + xtend: 4.0.2 + dev: true + + /through2/2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + dependencies: + readable-stream: 2.3.7 + xtend: 4.0.2 + dev: true + + /through2/3.0.2: + resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} + dependencies: + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /through2/4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /time-stamp/1.1.0: + resolution: {integrity: sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==} + engines: {node: '>=0.10.0'} + dev: true + + /timm/1.7.1: + resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==} + dev: true + + /tinybench/2.3.1: + resolution: {integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==} + dev: true + + /tinycolor2/1.5.2: + resolution: {integrity: sha512-h80m9GPFGbcLzZByXlNSEhp1gf8Dy+VX/2JCGUZsWLo7lV1mnE/XlxGYgRBoMLJh1lIDXP0EMC4RPTjlRaV+Bg==} + dev: true + + /tinypool/0.3.0: + resolution: {integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==} + engines: {node: '>=14.0.0'} + dev: true + + /tinyspy/1.0.2: + resolution: {integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==} + engines: {node: '>=14.0.0'} + dev: true + + /tmp/0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /tmp/0.2.1: + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} + dependencies: + rimraf: 3.0.2 + dev: true + + /tmpl/1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + dev: true + + /to-absolute-glob/2.0.2: + resolution: {integrity: sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==} + engines: {node: '>=0.10.0'} + dependencies: + is-absolute: 1.0.0 + is-negated-glob: 1.0.0 + dev: true + + /to-fast-properties/2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + /to-object-path/0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /to-regex-range/2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + dev: true + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /to-regex/3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + dev: true + + /to-through/2.0.0: + resolution: {integrity: sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==} + engines: {node: '>= 0.10'} + dependencies: + through2: 2.0.5 + dev: true + + /toidentifier/1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + dev: true + + /tough-cookie/2.5.0: + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} + dependencies: + psl: 1.9.0 + punycode: 2.1.1 + dev: true + + /tough-cookie/4.1.2: + resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.1.1 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /tr46/0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + dev: true + + /tr46/2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + dependencies: + punycode: 2.1.1 + dev: true + + /tr46/3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + dependencies: + punycode: 2.1.1 + dev: true + + /treeverse/2.0.0: + resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true + + /trim-newlines/3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /true-case-path/2.2.1: + resolution: {integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==} + dev: true + + /tsconfig-paths/4.1.2: + resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} + engines: {node: '>=6'} + dependencies: + json5: 2.2.3 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tsconfig/7.0.0: + resolution: {integrity: sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==} + dependencies: + '@types/strip-bom': 3.0.0 + '@types/strip-json-comments': 0.0.30 + strip-bom: 3.0.0 + strip-json-comments: 2.0.1 + dev: true + + /tslib/2.4.1: + resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + dev: true + + /ttf2eot/2.0.0: + resolution: {integrity: sha512-U56aG2Ylw7psLOmakjemAzmpqVgeadwENg9oaDjaZG5NYX4WB6+7h74bNPcc+0BXsoU5A/XWiHabDXyzFOmsxQ==} + hasBin: true + dependencies: + argparse: 1.0.10 + microbuffer: 1.0.0 + dev: true + + /ttf2woff/2.0.2: + resolution: {integrity: sha512-X68badwBjAy/+itU49scLjXUL094up+rHuYk+YAOTTBYSUMOmLZ7VyhZJuqQESj1gnyLAC2/5V8Euv+mExmyPA==} + hasBin: true + dependencies: + argparse: 1.0.10 + microbuffer: 1.0.0 + pako: 1.0.11 + dev: true + + /ttf2woff2/4.0.5: + resolution: {integrity: sha512-zpoU0NopfjoyVqkFeQ722SyKk/n607mm5OHxuDS/wCCSy82B8H3hHXrezftA2KMbKqfJIjie2lsJHdvPnBGbsw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + dependencies: + bindings: 1.5.0 + bufferstreams: 3.0.0 + nan: 2.17.0 + node-gyp: 9.3.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /tunnel-agent/0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /tweetnacl/0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true + + /type-check/0.3.2: + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.1.2 + dev: true + + /type-detect/4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: true + + /type-fest/0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest/0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest/0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true + + /type-fest/0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + dev: true + + /type-fest/0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest/0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-fest/1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: true + + /type-fest/2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + dev: true + + /type-fest/3.5.1: + resolution: {integrity: sha512-70T99cpILFk2fzwuljwWxmazSphFrdOe3gRHbp6bqs71pxFBbJwFqnmkLO2lQL6aLHxHmYAnP/sL+AJWpT70jA==} + engines: {node: '>=14.16'} + dev: true + + /type/1.2.0: + resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} + dev: true + + /type/2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + dev: true + + /typedarray-to-buffer/3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + dependencies: + is-typedarray: 1.0.0 + dev: true + + /typedarray/0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + dev: true + + /typescript/4.9.4: + resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + + /ufo/1.0.1: + resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} + dev: true + + /uglify-js/3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + engines: {node: '>=0.8.0'} + hasBin: true + dev: true + + /unbox-primitive/1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unc-path-regex/0.1.2: + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} + dev: true + + /undertaker-registry/1.0.1: + resolution: {integrity: sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==} + engines: {node: '>= 0.10'} + dev: true + + /undertaker/1.3.0: + resolution: {integrity: sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==} + engines: {node: '>= 0.10'} + dependencies: + arr-flatten: 1.1.0 + arr-map: 2.0.2 + bach: 1.2.0 + collection-map: 1.0.0 + es6-weak-map: 2.0.3 + fast-levenshtein: 1.1.4 + last-run: 1.1.1 + object.defaults: 1.1.0 + object.reduce: 1.0.1 + undertaker-registry: 1.0.1 + dev: true + + /unicode-canonical-property-names-ecmascript/2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + dev: true + + /unicode-match-property-ecmascript/2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 + dev: true + + /unicode-match-property-value-ecmascript/2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} + dev: true + + /unicode-property-aliases-ecmascript/2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + dev: true + + /union-value/1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + dev: true + + /unique-filename/1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + dependencies: + unique-slug: 2.0.2 + dev: true + + /unique-filename/2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + unique-slug: 3.0.0 + dev: true + + /unique-slug/2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + dependencies: + imurmurhash: 0.1.4 + dev: true + + /unique-slug/3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + dev: true + + /unique-stream/2.3.1: + resolution: {integrity: sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==} + dependencies: + json-stable-stringify-without-jsonify: 1.0.1 + through2-filter: 3.0.0 + dev: true + + /unique-string/3.0.0: + resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} + engines: {node: '>=12'} + dependencies: + crypto-random-string: 4.0.0 + dev: true + + /universal-user-agent/6.0.0: + resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} + dev: true + + /universalify/0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: true + + /universalify/0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + + /universalify/2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + + /unpipe/1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + dev: true + + /unquote/1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + dev: true + + /unset-value/0.1.2: + resolution: {integrity: sha512-yhv5I4TsldLdE3UcVQn0hD2T5sNCPv4+qm/CTUpRKIpwthYRIipsAPdsrNpOI79hPQa0rTTeW22Fq6JWRcTgNg==} + engines: {node: '>=0.10.0'} + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + dev: true + + /unset-value/1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + dev: true + + /upath/1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} + dev: true + + /upath/2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + dev: true + + /update-browserslist-db/1.0.10_browserslist@4.21.4: + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.4 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /update-notifier/6.0.2: + resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==} + engines: {node: '>=14.16'} + dependencies: + boxen: 7.0.1 + chalk: 5.1.2 + configstore: 6.0.0 + has-yarn: 3.0.0 + import-lazy: 4.0.0 + is-ci: 3.0.1 + is-installed-globally: 0.4.0 + is-npm: 6.0.0 + is-yarn-global: 0.4.1 + latest-version: 7.0.0 + pupa: 3.1.0 + semver: 7.3.8 + semver-diff: 4.0.0 + xdg-basedir: 5.1.0 + dev: true + + /upper-case/1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + dev: true + + /uri-js/4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /urix/0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + dev: true + + /url-join/4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + dev: true + + /url-join/5.0.0: + resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /url-parse/1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /use/3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + dev: true + + /utif/2.0.1: + resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==} + dependencies: + pako: 1.0.11 + dev: true + + /util-deprecate/1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /util.promisify/1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + dependencies: + define-properties: 1.1.4 + es-abstract: 1.20.5 + has-symbols: 1.0.3 + object.getownpropertydescriptors: 2.1.5 + dev: true + + /uuid/3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + dev: true + + /uuid/8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + dev: true + + /v8-compile-cache/2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /v8-to-istanbul/7.1.2: + resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} + engines: {node: '>=10.10.0'} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + convert-source-map: 1.9.0 + source-map: 0.7.4 + dev: true + + /v8-to-istanbul/9.0.1: + resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} + engines: {node: '>=10.12.0'} + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + '@types/istanbul-lib-coverage': 2.0.4 + convert-source-map: 1.9.0 + dev: true + + /v8flags/3.2.0: + resolution: {integrity: sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==} + engines: {node: '>= 0.10'} + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /validate-npm-package-license/3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.1.1 + spdx-expression-parse: 3.0.1 + dev: true + + /validate-npm-package-name/3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + dependencies: + builtins: 1.0.3 + dev: true + + /validate-npm-package-name/4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + builtins: 5.0.1 + dev: true + + /validate-peer-dependencies/1.2.0: + resolution: {integrity: sha512-nd2HUpKc6RWblPZQ2GDuI65sxJ2n/UqZwSBVtj64xlWjMx0m7ZB2m9b2JS3v1f+n9VWH/dd1CMhkHfP6pIdckA==} + dependencies: + resolve-package-path: 3.1.0 + semver: 7.3.8 + dev: true + + /value-or-function/3.0.0: + resolution: {integrity: sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==} + engines: {node: '>= 0.10'} + dev: true + + /varstream/0.3.2: + resolution: {integrity: sha512-OpR3Usr9dGZZbDttlTxdviGdxiURI0prX68+DuaN/JfIDbK9ZOmREKM6PgmelsejMnhgjXmEEEgf+E4NbsSqMg==} + engines: {node: '>=0.10.*'} + hasBin: true + dependencies: + readable-stream: 1.1.14 + dev: true + + /verror/1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + dev: true + + /vinyl-fs/3.0.3: + resolution: {integrity: sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==} + engines: {node: '>= 0.10'} + dependencies: + fs-mkdirp-stream: 1.0.0 + glob-stream: 6.1.0 + graceful-fs: 4.2.10 + is-valid-glob: 1.0.0 + lazystream: 1.0.1 + lead: 1.0.0 + object.assign: 4.1.4 + pumpify: 1.5.1 + readable-stream: 2.3.7 + remove-bom-buffer: 3.0.0 + remove-bom-stream: 1.2.0 + resolve-options: 1.1.0 + through2: 2.0.5 + to-through: 2.0.0 + value-or-function: 3.0.0 + vinyl: 2.2.1 + vinyl-sourcemap: 1.1.0 + dev: true + + /vinyl-sourcemap/1.1.0: + resolution: {integrity: sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==} + engines: {node: '>= 0.10'} + dependencies: + append-buffer: 1.0.2 + convert-source-map: 1.9.0 + graceful-fs: 4.2.10 + normalize-path: 2.1.1 + now-and-later: 2.0.1 + remove-bom-buffer: 3.0.0 + vinyl: 2.2.1 + dev: true + + /vinyl/0.5.3: + resolution: {integrity: sha512-P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==} + engines: {node: '>= 0.9'} + dependencies: + clone: 1.0.4 + clone-stats: 0.0.1 + replace-ext: 0.0.1 + dev: true + + /vinyl/2.2.1: + resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} + engines: {node: '>= 0.10'} + dependencies: + clone: 2.1.2 + clone-buffer: 1.0.0 + clone-stats: 1.0.0 + cloneable-readable: 1.1.3 + remove-trailing-separator: 1.1.0 + replace-ext: 1.0.1 + dev: true + + /vite-node/0.26.3_@types+node@18.11.18: + resolution: {integrity: sha512-Te2bq0Bfvq6XiO718I+1EinMjpNYKws6SNHKOmVbILAQimKoZKDd+IZLlkaYcBXPpK3HFe2U80k8Zw+m3w/a2w==} + engines: {node: '>=v14.16.0'} + hasBin: true + dependencies: + debug: 4.3.4 + mlly: 1.0.0 + pathe: 0.2.0 + source-map: 0.6.1 + source-map-support: 0.5.21 + vite: 4.0.4_@types+node@18.11.18 + transitivePeerDependencies: + - '@types/node' + - less + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite/4.0.4: + resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.16.14 + postcss: 8.4.20 + resolve: 1.22.1 + rollup: 3.9.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite/4.0.4_@types+node@18.11.18: + resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 18.11.18 + esbuild: 0.16.14 + postcss: 8.4.20 + resolve: 1.22.1 + rollup: 3.9.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vitefu/0.2.4_vite@4.0.4: + resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 + peerDependenciesMeta: + vite: + optional: true + dependencies: + vite: 4.0.4 + dev: true + + /vitest/0.26.3: + resolution: {integrity: sha512-FmHxU9aUCxTi23keF3vxb/Qp0lYXaaJ+jRLGOUmMS3qVTOJvgGE+f1VArupA6pEhaG2Ans4X+zV9dqM5WISMbg==} + engines: {node: '>=v14.16.0'} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + dependencies: + '@types/chai': 4.3.4 + '@types/chai-subset': 1.3.3 + '@types/node': 18.11.18 + acorn: 8.8.1 + acorn-walk: 8.2.0 + chai: 4.3.7 + debug: 4.3.4 + local-pkg: 0.4.2 + source-map: 0.6.1 + strip-literal: 1.0.0 + tinybench: 2.3.1 + tinypool: 0.3.0 + tinyspy: 1.0.2 + vite: 4.0.4_@types+node@18.11.18 + vite-node: 0.26.3_@types+node@18.11.18 + transitivePeerDependencies: + - less + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vm2/3.9.13: + resolution: {integrity: sha512-0rvxpB8P8Shm4wX2EKOiMp7H2zq+HUE/UwodY0pCZXs9IffIKZq6vUti5OgkVCTakKo9e/fgO4X1fkwfjWxE3Q==} + engines: {node: '>=6.0'} + hasBin: true + dependencies: + acorn: 8.8.1 + acorn-walk: 8.2.0 + dev: true + + /vue-jest/5.0.0-alpha.10_vue@3.2.45: + resolution: {integrity: sha512-iN62cTi4AL0UsgxEyVeJtHG6qXEv+8Ci2wX1vP3b/dAZvyBRmqy5aJHQrP6VCEuio+HgHQ1LAZ+ccM2pouBmlg==} + peerDependencies: + '@babel/core': 7.x + babel-jest: '>= 24 < 27' + jest: '>= 24 < 27 ' + ts-jest: '>= 24 < 27 ' + typescript: '>= 3.x' + vue: ^3.0.0-0 + peerDependenciesMeta: + ts-jest: + optional: true + typescript: + optional: true + dependencies: + '@babel/plugin-transform-modules-commonjs': 7.20.11 + chalk: 2.4.2 + convert-source-map: 1.9.0 + extract-from-css: 0.4.4 + source-map: 0.5.6 + tsconfig: 7.0.0 + vue: 3.2.45 + transitivePeerDependencies: + - supports-color + dev: true + + /vue-template-compiler/2.7.14: + resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + dev: true + + /vue-tsc/1.0.24_typescript@4.9.4: + resolution: {integrity: sha512-mmU1s5SAqE1nByQAiQnao9oU4vX+mSdsgI8H57SfKH6UVzq/jP9+Dbi2GaV+0b4Cn361d2ln8m6xeU60ApiEXg==} + hasBin: true + peerDependencies: + typescript: '*' + dependencies: + '@volar/vue-language-core': 1.0.24 + '@volar/vue-typescript': 1.0.24 + typescript: 4.9.4 + dev: true + + /vue/3.2.45: + resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==} + dependencies: + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-sfc': 3.2.45 + '@vue/runtime-dom': 3.2.45 + '@vue/server-renderer': 3.2.45_vue@3.2.45 + '@vue/shared': 3.2.45 + + /w3c-hr-time/1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + dependencies: + browser-process-hrtime: 1.0.0 + dev: true + + /w3c-xmlserializer/2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + dependencies: + xml-name-validator: 3.0.0 + dev: true + + /w3c-xmlserializer/4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + dependencies: + xml-name-validator: 4.0.0 + dev: true + + /walk-sync/2.2.0: + resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==} + engines: {node: 8.* || >= 10.*} + dependencies: + '@types/minimatch': 3.0.5 + ensure-posix-path: 1.1.1 + matcher-collection: 2.0.1 + minimatch: 3.1.2 + dev: true + + /walk-up-path/1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + dev: true + + /walker/1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + dependencies: + makeerror: 1.0.12 + dev: true + + /wawoff2/2.0.1: + resolution: {integrity: sha512-r0CEmvpH63r4T15ebFqeOjGqU4+EgTx4I510NtK35EMciSdcTxCw3Byy3JnBonz7iyIFZ0AbVo0bbFpEVuhCYA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /wcwidth/1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + dependencies: + defaults: 1.0.4 + dev: true + + /web-streams-polyfill/3.2.1: + resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} + engines: {node: '>= 8'} + dev: true + + /webfont/11.2.26: + resolution: {integrity: sha512-ms9abzcJGMBj5yVTpNfAcyQB0SNzmi10aBlKLC7kAt1TQ5eZqieRhvhxN1BrXaizWV0nksp6vLqBfaJmBWmF7Q==} + engines: {node: '>= 12.0.0'} + hasBin: true + dependencies: + cosmiconfig: 5.2.1 + deepmerge: 4.2.2 + globby: 11.0.4 + meow: 9.0.0 + nunjucks: 3.2.3 + p-limit: 3.1.0 + parse-json: 5.2.0 + resolve-from: 5.0.0 + svg2ttf: 6.0.3 + svgicons2svgfont: 10.0.6 + ttf2eot: 2.0.0 + ttf2woff: 2.0.2 + wawoff2: 2.0.1 + xml2js: 0.4.23 + transitivePeerDependencies: + - chokidar + dev: true + + /webidl-conversions/3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + dev: true + + /webidl-conversions/5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + dev: true + + /webidl-conversions/6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + dev: true + + /webidl-conversions/7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true + + /whatwg-encoding/1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + dependencies: + iconv-lite: 0.4.24 + dev: true + + /whatwg-encoding/2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + dependencies: + iconv-lite: 0.6.3 + dev: true + + /whatwg-mimetype/2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + dev: true + + /whatwg-mimetype/3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true + + /whatwg-url/11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + dev: true + + /whatwg-url/5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + dev: true + + /whatwg-url/8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + dependencies: + lodash: 4.17.21 + tr46: 2.1.0 + webidl-conversions: 6.1.0 + dev: true + + /which-boxed-primitive/1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-collection/1.0.1: + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + dependencies: + is-map: 2.0.2 + is-set: 2.0.2 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 + dev: true + + /which-module/1.0.0: + resolution: {integrity: sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==} + dev: true + + /which-module/2.0.0: + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + dev: true + + /which-typed-array/1.1.9: + resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 + dev: true + + /which/1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wide-align/1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + dependencies: + string-width: 4.2.3 + dev: true + + /widest-line/3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + dependencies: + string-width: 4.2.3 + dev: true + + /widest-line/4.0.1: + resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + dev: true + + /wildcard-match/5.1.2: + resolution: {integrity: sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ==} + dev: true + + /windows-release/5.0.1: + resolution: {integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + execa: 5.1.1 + dev: true + + /word-wrap/1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wordwrap/1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + dev: true + + /wrap-ansi/2.1.0: + resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==} + engines: {node: '>=0.10.0'} + dependencies: + string-width: 1.0.2 + strip-ansi: 3.0.1 + dev: true + + /wrap-ansi/6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi/8.0.1: + resolution: {integrity: sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.0.1 + dev: true + + /wrappy/1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /write-file-atomic/2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + dependencies: + graceful-fs: 4.2.10 + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /write-file-atomic/3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + + /write-file-atomic/4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /write-json-file/3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} + dependencies: + detect-indent: 5.0.0 + graceful-fs: 4.2.10 + make-dir: 2.1.0 + pify: 4.0.1 + sort-keys: 2.0.0 + write-file-atomic: 2.4.3 + dev: true + + /write-json-file/4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} + dependencies: + detect-indent: 6.1.0 + graceful-fs: 4.2.10 + is-plain-obj: 2.1.0 + make-dir: 3.1.0 + sort-keys: 4.2.0 + write-file-atomic: 3.0.3 + dev: true + + /write-pkg/4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} + dependencies: + sort-keys: 2.0.0 + type-fest: 0.4.1 + write-json-file: 3.2.0 + dev: true + + /ws/7.5.9: + resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /ws/8.12.0: + resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /xdg-basedir/5.1.0: + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} + dev: true + + /xhr/2.6.0: + resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} + dependencies: + global: 4.4.0 + is-function: 1.0.2 + parse-headers: 2.0.5 + xtend: 4.0.2 + dev: true + + /xml-lexer/0.2.2: + resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} + dependencies: + eventemitter3: 2.0.3 + dev: true + + /xml-name-validator/3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + dev: true + + /xml-name-validator/4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + + /xml-parse-from-string/1.0.1: + resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==} + dev: true + + /xml-reader/2.4.3: + resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} + dependencies: + eventemitter3: 2.0.3 + xml-lexer: 0.2.2 + dev: true + + /xml2js/0.4.23: + resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} + engines: {node: '>=4.0.0'} + dependencies: + sax: 1.2.4 + xmlbuilder: 11.0.1 + dev: true + + /xmlbuilder/11.0.1: + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} + dev: true + + /xmlchars/2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true + + /xmldom/0.1.31: + resolution: {integrity: sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==} + engines: {node: '>=0.1'} + deprecated: Deprecated due to CVE-2021-21366 resolved in 0.5.0 + dev: true + + /xregexp/2.0.0: + resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==} + dev: true + + /xtend/4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + dev: true + + /y18n/3.2.2: + resolution: {integrity: sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==} + dev: true + + /y18n/4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + dev: true + + /y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist/3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + dev: true + + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml/1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yaml/2.2.1: + resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + engines: {node: '>= 14'} + dev: true + + /yargs-parser/18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs-parser/20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + dev: true + + /yargs-parser/20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + + /yargs-parser/5.0.1: + resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==} + dependencies: + camelcase: 3.0.0 + object.assign: 4.1.4 + dev: true + + /yargs/15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.0 + y18n: 4.0.3 + yargs-parser: 18.1.3 + dev: true + + /yargs/16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + dev: true + + /yargs/17.6.2: + resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yargs/7.1.2: + resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==} + dependencies: + camelcase: 3.0.0 + cliui: 3.2.0 + decamelize: 1.2.0 + get-caller-file: 1.0.3 + os-locale: 1.4.0 + read-pkg-up: 1.0.1 + require-directory: 2.1.1 + require-main-filename: 1.0.1 + set-blocking: 2.0.0 + string-width: 1.0.2 + which-module: 1.0.0 + y18n: 3.2.2 + yargs-parser: 5.0.1 + dev: true + + /yazl/2.5.1: + resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} + dependencies: + buffer-crc32: 0.2.13 + dev: true + + /yocto-queue/0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 000000000..a21eb43f9 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +packages: + - 'packages/*' + - 'test/*' diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index 29466d812..000000000 --- a/rollup.config.js +++ /dev/null @@ -1,97 +0,0 @@ -import resolve from "@rollup/plugin-node-resolve"; -import commonjs from "@rollup/plugin-commonjs"; -import filesize from "rollup-plugin-filesize"; -import babel from "@rollup/plugin-babel"; -import external from "rollup-plugin-peer-deps-external"; -import { terser } from "rollup-plugin-terser"; -import pkg from "./package.json"; - -const input = "icons-react/index.js"; - -const minifyExtension = (pathToFile) => pathToFile.replace(/\.js$/, ".min.js"); - -const plugins = [ - babel({ - exclude: "node_modules/**", - }), - external(), - resolve(), - commonjs(), - terser(), - filesize(), -]; - -export default [ - // CommonJS (for Node) - { - input, - output: { - file: pkg.main, - format: "cjs", - sourcemap: true, - }, - plugins, - }, - // CommonJS (for Node) minified - { - input, - output: { - file: minifyExtension(pkg.main), - format: "cjs", - sourcemap: true, - }, - plugins - }, - // UMD (for browser) - { - input, - output: { - file: pkg['umd:main'], - format: "umd", - sourcemap: true, - name: "tablerIcons", - globals: { - react: "React", - "react-dom": "ReactDOM", - }, - }, - plugins, - }, - // UMD (for browser) minified - { - input, - output: { - file: minifyExtension(pkg['umd:main']), - format: "umd", - sourcemap: true, - name: "tablerIcons", - globals: { - react: "React", - "react-dom": "ReactDOM", - }, - }, - plugins - }, - // ESM (for bundlers) - { - input, - output: { - file: pkg.module, - format: "es", - sourcemap: true, - exports: "named", - }, - plugins, - }, - // ESM (for bundlers) minified - { - input, - output: { - file: minifyExtension(pkg.module), - format: "es", - sourcemap: true, - exports: "named", - }, - plugins - }, -]; diff --git a/src/_icons/123.svg b/src/_icons/123.svg index cb9051d7e..ac327bcb9 100644 --- a/src/_icons/123.svg +++ b/src/_icons/123.svg @@ -4,7 +4,5 @@ unicode: "f554" version: "1.106" --- - - - + diff --git a/src/_icons/24-hours.svg b/src/_icons/24-hours.svg index d0d9e7d43..aa8faf7dd 100644 --- a/src/_icons/24-hours.svg +++ b/src/_icons/24-hours.svg @@ -3,9 +3,5 @@ unicode: "f5e7" version: "1.113" --- - - - - - + diff --git a/src/_icons/2fa.svg b/src/_icons/2fa.svg index 0173c536e..e191eb228 100644 --- a/src/_icons/2fa.svg +++ b/src/_icons/2fa.svg @@ -4,9 +4,5 @@ version: "1.17" unicode: "eca0" --- - - - - - + diff --git a/src/_icons/360-view.svg b/src/_icons/360-view.svg index 47f499792..0db5ae907 100644 --- a/src/_icons/360-view.svg +++ b/src/_icons/360-view.svg @@ -4,8 +4,5 @@ unicode: "f566" version: "1.107" --- - - - - + diff --git a/src/_icons/360.svg b/src/_icons/360.svg index 16fba8791..200fc6b3a 100644 --- a/src/_icons/360.svg +++ b/src/_icons/360.svg @@ -3,6 +3,5 @@ unicode: "f62f" version: "1.117" --- - - + diff --git a/src/_icons/3d-cube-sphere-off.svg b/src/_icons/3d-cube-sphere-off.svg index ae01de5f8..34de097f9 100644 --- a/src/_icons/3d-cube-sphere-off.svg +++ b/src/_icons/3d-cube-sphere-off.svg @@ -4,16 +4,5 @@ unicode: "f3b5" version: "1.94" --- - - - - - - - - - - - - + diff --git a/src/_icons/3d-cube-sphere.svg b/src/_icons/3d-cube-sphere.svg index 83825e686..d1774c26d 100644 --- a/src/_icons/3d-cube-sphere.svg +++ b/src/_icons/3d-cube-sphere.svg @@ -4,16 +4,5 @@ version: "1.20" unicode: "ecd7" --- - - - - - - - - - - - - + diff --git a/src/_icons/3d-rotate.svg b/src/_icons/3d-rotate.svg index fd13a428e..0d8ab771c 100644 --- a/src/_icons/3d-rotate.svg +++ b/src/_icons/3d-rotate.svg @@ -4,9 +4,5 @@ version: "1.55" unicode: "f020" --- - - - - - + diff --git a/src/_icons/a-b-2.svg b/src/_icons/a-b-2.svg index 3cca741b2..d02e13da2 100644 --- a/src/_icons/a-b-2.svg +++ b/src/_icons/a-b-2.svg @@ -4,9 +4,5 @@ version: "1.76" unicode: "f25f" --- - - - - - + diff --git a/src/_icons/a-b-off.svg b/src/_icons/a-b-off.svg index 3d8ea56a1..594321834 100644 --- a/src/_icons/a-b-off.svg +++ b/src/_icons/a-b-off.svg @@ -4,9 +4,5 @@ version: "1.62" unicode: "f0a6" --- - - - - - + diff --git a/src/_icons/a-b.svg b/src/_icons/a-b.svg index a3578e3ee..a0283f791 100644 --- a/src/_icons/a-b.svg +++ b/src/_icons/a-b.svg @@ -4,7 +4,5 @@ version: "1.11" unicode: "ec36" --- - - - + diff --git a/src/_icons/abacus-off.svg b/src/_icons/abacus-off.svg index 6e650d31d..2f8a02807 100644 --- a/src/_icons/abacus-off.svg +++ b/src/_icons/abacus-off.svg @@ -5,16 +5,5 @@ unicode: "f3b6" version: "1.94" --- - - - - - - - - - - - - + diff --git a/src/_icons/abacus.svg b/src/_icons/abacus.svg index 5374aff26..5d27145e9 100644 --- a/src/_icons/abacus.svg +++ b/src/_icons/abacus.svg @@ -5,15 +5,5 @@ category: Math unicode: "f05c" --- - - - - - - - - - - - + diff --git a/src/_icons/abc.svg b/src/_icons/abc.svg index efbaf7223..2fa06f3a1 100644 --- a/src/_icons/abc.svg +++ b/src/_icons/abc.svg @@ -4,8 +4,5 @@ unicode: "f567" version: "1.107" --- - - - - + diff --git a/src/_icons/access-point-off.svg b/src/_icons/access-point-off.svg index 62507e68f..3e60fe958 100644 --- a/src/_icons/access-point-off.svg +++ b/src/_icons/access-point-off.svg @@ -5,9 +5,5 @@ version: "1.25" unicode: "ed1a" --- - - - - - + diff --git a/src/_icons/access-point.svg b/src/_icons/access-point.svg index 579e512ad..693196683 100644 --- a/src/_icons/access-point.svg +++ b/src/_icons/access-point.svg @@ -5,9 +5,5 @@ version: "1.25" unicode: "ed1b" --- - - - - - + diff --git a/src/_icons/accessible-off.svg b/src/_icons/accessible-off.svg index 9c578d688..0bf9c5752 100644 --- a/src/_icons/accessible-off.svg +++ b/src/_icons/accessible-off.svg @@ -4,8 +4,5 @@ version: "1.62" unicode: "f0a7" --- - - - - + diff --git a/src/_icons/accessible.svg b/src/_icons/accessible.svg index ca0e1ce86..ce20cc6f7 100644 --- a/src/_icons/accessible.svg +++ b/src/_icons/accessible.svg @@ -4,7 +4,5 @@ version: "1.4" unicode: "eba9" --- - - - + diff --git a/src/_icons/ad-2.svg b/src/_icons/ad-2.svg index 52038bbca..35f169e22 100644 --- a/src/_icons/ad-2.svg +++ b/src/_icons/ad-2.svg @@ -5,10 +5,5 @@ version: "1.41" unicode: "ef1f" --- - - - - - - + diff --git a/src/_icons/ad-off.svg b/src/_icons/ad-off.svg index 133ee16de..40f530043 100644 --- a/src/_icons/ad-off.svg +++ b/src/_icons/ad-off.svg @@ -5,10 +5,5 @@ unicode: "f3b7" version: "1.94" --- - - - - - - + diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg index 251302108..ef89fee2f 100644 --- a/src/_icons/ad.svg +++ b/src/_icons/ad.svg @@ -5,8 +5,5 @@ version: "1.1" unicode: "ea02" --- - - - - + diff --git a/src/_icons/address-book-off.svg b/src/_icons/address-book-off.svg index 338055adb..d7ae1c768 100644 --- a/src/_icons/address-book-off.svg +++ b/src/_icons/address-book-off.svg @@ -4,11 +4,5 @@ unicode: "f3b8" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/address-book.svg b/src/_icons/address-book.svg index 3a280597c..7faecd3e3 100644 --- a/src/_icons/address-book.svg +++ b/src/_icons/address-book.svg @@ -4,10 +4,5 @@ version: "1.55" unicode: "f021" --- - - - - - - + diff --git a/src/_icons/adjustments-alt.svg b/src/_icons/adjustments-alt.svg index 534338965..bada53cff 100644 --- a/src/_icons/adjustments-alt.svg +++ b/src/_icons/adjustments-alt.svg @@ -5,13 +5,5 @@ version: "1.11" unicode: "ec37" --- - - - - - - - - - + diff --git a/src/_icons/adjustments-horizontal.svg b/src/_icons/adjustments-horizontal.svg index 456f2b218..805c6fa0e 100644 --- a/src/_icons/adjustments-horizontal.svg +++ b/src/_icons/adjustments-horizontal.svg @@ -5,13 +5,5 @@ version: "1.11" unicode: "ec38" --- - - - - - - - - - + diff --git a/src/_icons/adjustments-off.svg b/src/_icons/adjustments-off.svg index eb03aaa20..c79e65f52 100644 --- a/src/_icons/adjustments-off.svg +++ b/src/_icons/adjustments-off.svg @@ -5,16 +5,5 @@ version: "1.62" unicode: "f0a8" --- - - - - - - - - - - - - + diff --git a/src/_icons/adjustments.svg b/src/_icons/adjustments.svg index d6379d365..cc2674fe3 100644 --- a/src/_icons/adjustments.svg +++ b/src/_icons/adjustments.svg @@ -5,13 +5,5 @@ version: "1.0" unicode: "ea03" --- - - - - - - - - - + diff --git a/src/_icons/affiliate.svg b/src/_icons/affiliate.svg index aa42449b4..6d9d182e3 100644 --- a/src/_icons/affiliate.svg +++ b/src/_icons/affiliate.svg @@ -4,10 +4,5 @@ version: "1.39" unicode: "edff" --- - - - - - - + diff --git a/src/_icons/air-balloon.svg b/src/_icons/air-balloon.svg index 9d0f6bafb..14d5be7a4 100644 --- a/src/_icons/air-balloon.svg +++ b/src/_icons/air-balloon.svg @@ -5,7 +5,5 @@ unicode: "f4a6" version: "1.97" --- - - - + diff --git a/src/_icons/air-conditioning-disabled.svg b/src/_icons/air-conditioning-disabled.svg index 85467bff1..4a0dab9f3 100644 --- a/src/_icons/air-conditioning-disabled.svg +++ b/src/_icons/air-conditioning-disabled.svg @@ -4,6 +4,5 @@ version: "1.105" unicode: "f542" --- - - + diff --git a/src/_icons/air-conditioning.svg b/src/_icons/air-conditioning.svg index d28b6e0cb..062b8e700 100644 --- a/src/_icons/air-conditioning.svg +++ b/src/_icons/air-conditioning.svg @@ -4,9 +4,5 @@ version: "1.93" unicode: "f3a2" --- - - - - - + diff --git a/src/_icons/alarm-minus.svg b/src/_icons/alarm-minus.svg index 7ad0bef93..2dd441ab1 100644 --- a/src/_icons/alarm-minus.svg +++ b/src/_icons/alarm-minus.svg @@ -3,8 +3,5 @@ unicode: "f630" version: "1.117" --- - - - - + diff --git a/src/_icons/alarm-off.svg b/src/_icons/alarm-off.svg index 9a1010af4..ff5737022 100644 --- a/src/_icons/alarm-off.svg +++ b/src/_icons/alarm-off.svg @@ -4,9 +4,5 @@ version: "1.62" unicode: "f0a9" --- - - - - - + diff --git a/src/_icons/alarm-plus.svg b/src/_icons/alarm-plus.svg index 89073ebd6..5d50abae9 100644 --- a/src/_icons/alarm-plus.svg +++ b/src/_icons/alarm-plus.svg @@ -3,9 +3,5 @@ unicode: "f631" version: "1.117" --- - - - - - + diff --git a/src/_icons/alarm-snooze.svg b/src/_icons/alarm-snooze.svg index 61ed2ceac..cb8553277 100644 --- a/src/_icons/alarm-snooze.svg +++ b/src/_icons/alarm-snooze.svg @@ -3,8 +3,5 @@ unicode: "f632" version: "1.117" --- - - - - + diff --git a/src/_icons/alarm.svg b/src/_icons/alarm.svg index 375a105d1..7f4ec2e11 100644 --- a/src/_icons/alarm.svg +++ b/src/_icons/alarm.svg @@ -4,8 +4,5 @@ version: "1.1" unicode: "ea04" --- - - - - + diff --git a/src/_icons/album-off.svg b/src/_icons/album-off.svg index fbf715021..179d02792 100644 --- a/src/_icons/album-off.svg +++ b/src/_icons/album-off.svg @@ -4,7 +4,5 @@ unicode: "f3b9" version: "1.94" --- - - - + diff --git a/src/_icons/album.svg b/src/_icons/album.svg index 0b86a0eff..4c1582fd4 100644 --- a/src/_icons/album.svg +++ b/src/_icons/album.svg @@ -4,6 +4,5 @@ version: "1.55" unicode: "f022" --- - - + diff --git a/src/_icons/alert-circle.svg b/src/_icons/alert-circle.svg index 5a9dbd43f..ccc6fece4 100644 --- a/src/_icons/alert-circle.svg +++ b/src/_icons/alert-circle.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "ea05" --- - - - + diff --git a/src/_icons/alert-octagon.svg b/src/_icons/alert-octagon.svg index f65dc0f1f..818a8da96 100644 --- a/src/_icons/alert-octagon.svg +++ b/src/_icons/alert-octagon.svg @@ -4,7 +4,5 @@ version: "1.19" unicode: "ecc6" --- - - - + diff --git a/src/_icons/alert-triangle.svg b/src/_icons/alert-triangle.svg index 447b13df0..532bbe1d4 100644 --- a/src/_icons/alert-triangle.svg +++ b/src/_icons/alert-triangle.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea06" --- - - + diff --git a/src/_icons/alien.svg b/src/_icons/alien.svg index 39c4b2d73..ee190409f 100644 --- a/src/_icons/alien.svg +++ b/src/_icons/alien.svg @@ -4,8 +4,5 @@ version: "1.7" unicode: "ebde" --- - - - - + diff --git a/src/_icons/align-box-bottom-center.svg b/src/_icons/align-box-bottom-center.svg index d58c8d5a9..49528d815 100644 --- a/src/_icons/align-box-bottom-center.svg +++ b/src/_icons/align-box-bottom-center.svg @@ -5,8 +5,5 @@ unicode: "f530" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-bottom-left.svg b/src/_icons/align-box-bottom-left.svg index dbb3a8cc6..ada1370ed 100644 --- a/src/_icons/align-box-bottom-left.svg +++ b/src/_icons/align-box-bottom-left.svg @@ -5,8 +5,5 @@ unicode: "f531" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-bottom-right.svg b/src/_icons/align-box-bottom-right.svg index 6c93b59c4..a5c525ce0 100644 --- a/src/_icons/align-box-bottom-right.svg +++ b/src/_icons/align-box-bottom-right.svg @@ -5,8 +5,5 @@ unicode: "f532" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-left-bottom.svg b/src/_icons/align-box-left-bottom.svg index 72113daa2..e0e0b9b71 100644 --- a/src/_icons/align-box-left-bottom.svg +++ b/src/_icons/align-box-left-bottom.svg @@ -5,8 +5,5 @@ unicode: "f533" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-left-middle.svg b/src/_icons/align-box-left-middle.svg index daa5ff534..43b1219d0 100644 --- a/src/_icons/align-box-left-middle.svg +++ b/src/_icons/align-box-left-middle.svg @@ -5,8 +5,5 @@ unicode: "f534" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-left-top.svg b/src/_icons/align-box-left-top.svg index 743c5da65..d6c66c0cb 100644 --- a/src/_icons/align-box-left-top.svg +++ b/src/_icons/align-box-left-top.svg @@ -5,8 +5,5 @@ unicode: "f535" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-right-bottom.svg b/src/_icons/align-box-right-bottom.svg index 0d8d718d4..dfab30db6 100644 --- a/src/_icons/align-box-right-bottom.svg +++ b/src/_icons/align-box-right-bottom.svg @@ -5,8 +5,5 @@ unicode: "f536" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-right-middle.svg b/src/_icons/align-box-right-middle.svg index e0ef3e206..5a7f48950 100644 --- a/src/_icons/align-box-right-middle.svg +++ b/src/_icons/align-box-right-middle.svg @@ -5,8 +5,5 @@ unicode: "f537" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-right-top.svg b/src/_icons/align-box-right-top.svg index 98552134b..0e4f8b9c0 100644 --- a/src/_icons/align-box-right-top.svg +++ b/src/_icons/align-box-right-top.svg @@ -5,8 +5,5 @@ unicode: "f538" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-top-center.svg b/src/_icons/align-box-top-center.svg index 79fa624ca..7c6016186 100644 --- a/src/_icons/align-box-top-center.svg +++ b/src/_icons/align-box-top-center.svg @@ -5,8 +5,5 @@ unicode: "f539" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-top-left.svg b/src/_icons/align-box-top-left.svg index fe633096d..73634d35a 100644 --- a/src/_icons/align-box-top-left.svg +++ b/src/_icons/align-box-top-left.svg @@ -5,8 +5,5 @@ unicode: "f53a" version: "1.104" --- - - - - + diff --git a/src/_icons/align-box-top-right.svg b/src/_icons/align-box-top-right.svg index 24e83f0fe..56da6ca31 100644 --- a/src/_icons/align-box-top-right.svg +++ b/src/_icons/align-box-top-right.svg @@ -5,8 +5,5 @@ unicode: "f53b" version: "1.104" --- - - - - + diff --git a/src/_icons/align-center.svg b/src/_icons/align-center.svg index 047531f9b..e5b47966e 100644 --- a/src/_icons/align-center.svg +++ b/src/_icons/align-center.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea07" --- - - - + diff --git a/src/_icons/align-justified.svg b/src/_icons/align-justified.svg index 4aa42974a..99a4f8812 100644 --- a/src/_icons/align-justified.svg +++ b/src/_icons/align-justified.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea08" --- - - - + diff --git a/src/_icons/align-left.svg b/src/_icons/align-left.svg index 2ef3170da..03df73f1d 100644 --- a/src/_icons/align-left.svg +++ b/src/_icons/align-left.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea09" --- - - - + diff --git a/src/_icons/align-right.svg b/src/_icons/align-right.svg index b58702754..0b9ba849e 100644 --- a/src/_icons/align-right.svg +++ b/src/_icons/align-right.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea0a" --- - - - + diff --git a/src/_icons/alphabet-cyrillic.svg b/src/_icons/alphabet-cyrillic.svg index d4dedcf2c..747c02208 100644 --- a/src/_icons/alphabet-cyrillic.svg +++ b/src/_icons/alphabet-cyrillic.svg @@ -5,6 +5,5 @@ version: "1.69" unicode: "f1df" --- - - + diff --git a/src/_icons/alphabet-greek.svg b/src/_icons/alphabet-greek.svg index 53f8ea11d..3a8be17bb 100644 --- a/src/_icons/alphabet-greek.svg +++ b/src/_icons/alphabet-greek.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1e0" --- - - - + diff --git a/src/_icons/alphabet-latin.svg b/src/_icons/alphabet-latin.svg index bffef76a4..aa3c8273f 100644 --- a/src/_icons/alphabet-latin.svg +++ b/src/_icons/alphabet-latin.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1e1" --- - - - + diff --git a/src/_icons/ambulance.svg b/src/_icons/ambulance.svg index 38db349e1..3ce443be1 100644 --- a/src/_icons/ambulance.svg +++ b/src/_icons/ambulance.svg @@ -5,8 +5,5 @@ version: "1.8" unicode: "ebf5" --- - - - - + diff --git a/src/_icons/analyze-off.svg b/src/_icons/analyze-off.svg index 8bb17a2ec..19c3b8ee2 100644 --- a/src/_icons/analyze-off.svg +++ b/src/_icons/analyze-off.svg @@ -4,10 +4,5 @@ unicode: "f3ba" version: "1.94" --- - - - - - - + diff --git a/src/_icons/analyze.svg b/src/_icons/analyze.svg index cfb02b4d5..a7f5a8fef 100644 --- a/src/_icons/analyze.svg +++ b/src/_icons/analyze.svg @@ -4,9 +4,5 @@ version: "1.93" unicode: "f3a3" --- - - - - - + diff --git a/src/_icons/anchor-off.svg b/src/_icons/anchor-off.svg index a39b5960c..32ecc6970 100644 --- a/src/_icons/anchor-off.svg +++ b/src/_icons/anchor-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f0f7" --- - - - - - - + diff --git a/src/_icons/anchor.svg b/src/_icons/anchor.svg index 2dee385cf..09b4d0f56 100644 --- a/src/_icons/anchor.svg +++ b/src/_icons/anchor.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb76" --- - - + diff --git a/src/_icons/angle.svg b/src/_icons/angle.svg index 7a1dd8c29..0bb6b2ede 100644 --- a/src/_icons/angle.svg +++ b/src/_icons/angle.svg @@ -5,9 +5,5 @@ version: "1.41" unicode: "ef20" --- - - - - - + diff --git a/src/_icons/ankh.svg b/src/_icons/ankh.svg index 56d24f5dc..4cd826505 100644 --- a/src/_icons/ankh.svg +++ b/src/_icons/ankh.svg @@ -5,6 +5,5 @@ version: "1.68" unicode: "f1cd" --- - - + diff --git a/src/_icons/antenna-bars-1.svg b/src/_icons/antenna-bars-1.svg index a71c42fd1..930568a34 100644 --- a/src/_icons/antenna-bars-1.svg +++ b/src/_icons/antenna-bars-1.svg @@ -5,8 +5,5 @@ version: "1.19" unicode: "ecc7" --- - - - - + diff --git a/src/_icons/antenna-bars-2.svg b/src/_icons/antenna-bars-2.svg index a74e31c99..04a6fcd6c 100644 --- a/src/_icons/antenna-bars-2.svg +++ b/src/_icons/antenna-bars-2.svg @@ -5,8 +5,5 @@ version: "1.19" unicode: "ecc8" --- - - - - + diff --git a/src/_icons/antenna-bars-3.svg b/src/_icons/antenna-bars-3.svg index afe0f3e66..ff55e236c 100644 --- a/src/_icons/antenna-bars-3.svg +++ b/src/_icons/antenna-bars-3.svg @@ -5,8 +5,5 @@ version: "1.19" unicode: "ecc9" --- - - - - + diff --git a/src/_icons/antenna-bars-4.svg b/src/_icons/antenna-bars-4.svg index 613ff237d..c36293b09 100644 --- a/src/_icons/antenna-bars-4.svg +++ b/src/_icons/antenna-bars-4.svg @@ -5,8 +5,5 @@ version: "1.19" unicode: "ecca" --- - - - - + diff --git a/src/_icons/antenna-bars-5.svg b/src/_icons/antenna-bars-5.svg index fcaf5dd20..8098f31cc 100644 --- a/src/_icons/antenna-bars-5.svg +++ b/src/_icons/antenna-bars-5.svg @@ -5,8 +5,5 @@ version: "1.19" unicode: "eccb" --- - - - - + diff --git a/src/_icons/antenna-bars-off.svg b/src/_icons/antenna-bars-off.svg index 0b16c4fb0..01b6e53fa 100644 --- a/src/_icons/antenna-bars-off.svg +++ b/src/_icons/antenna-bars-off.svg @@ -4,10 +4,5 @@ version: "1.62" unicode: "f0aa" --- - - - - - - + diff --git a/src/_icons/antenna-off.svg b/src/_icons/antenna-off.svg index 754276719..8b2f35f25 100644 --- a/src/_icons/antenna-off.svg +++ b/src/_icons/antenna-off.svg @@ -4,11 +4,5 @@ unicode: "f3bb" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/antenna.svg b/src/_icons/antenna.svg index 2e83f69a6..99c1c9450 100644 --- a/src/_icons/antenna.svg +++ b/src/_icons/antenna.svg @@ -4,10 +4,5 @@ version: "1.61" unicode: "f094" --- - - - - - - + diff --git a/src/_icons/aperture-off.svg b/src/_icons/aperture-off.svg index d6da7f084..e556c82d0 100644 --- a/src/_icons/aperture-off.svg +++ b/src/_icons/aperture-off.svg @@ -5,11 +5,5 @@ unicode: "f3bc" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/aperture.svg b/src/_icons/aperture.svg index 09c54fc4f..afdc80682 100644 --- a/src/_icons/aperture.svg +++ b/src/_icons/aperture.svg @@ -5,10 +5,5 @@ version: "1.2" unicode: "eb58" --- - - - - - - + diff --git a/src/_icons/api-app-off.svg b/src/_icons/api-app-off.svg index 7bbd333e8..ab698e678 100644 --- a/src/_icons/api-app-off.svg +++ b/src/_icons/api-app-off.svg @@ -4,9 +4,5 @@ version: "1.62" unicode: "f0ab" --- - - - - - + diff --git a/src/_icons/api-app.svg b/src/_icons/api-app.svg index d1f79a575..d117e537d 100644 --- a/src/_icons/api-app.svg +++ b/src/_icons/api-app.svg @@ -4,8 +4,5 @@ version: "1.53" unicode: "effc" --- - - - - + diff --git a/src/_icons/api-off.svg b/src/_icons/api-off.svg index 5b4f03690..dc59a6932 100644 --- a/src/_icons/api-off.svg +++ b/src/_icons/api-off.svg @@ -4,9 +4,5 @@ version: "1.65" unicode: "f0f8" --- - - - - - + diff --git a/src/_icons/api.svg b/src/_icons/api.svg index 244449cb4..ffcd56de3 100644 --- a/src/_icons/api.svg +++ b/src/_icons/api.svg @@ -4,8 +4,5 @@ version: "1.53" unicode: "effd" --- - - - - + diff --git a/src/_icons/app-window.svg b/src/_icons/app-window.svg index 166bf6fcb..cc731f6ee 100644 --- a/src/_icons/app-window.svg +++ b/src/_icons/app-window.svg @@ -4,7 +4,5 @@ version: "1.52" unicode: "efe6" --- - - - + diff --git a/src/_icons/apple.svg b/src/_icons/apple.svg index 2600f3fc0..666f890cb 100644 --- a/src/_icons/apple.svg +++ b/src/_icons/apple.svg @@ -5,7 +5,5 @@ version: "1.41" unicode: "ef21" --- - - - + diff --git a/src/_icons/apps-off.svg b/src/_icons/apps-off.svg index cbcd8bb0b..ef470a540 100644 --- a/src/_icons/apps-off.svg +++ b/src/_icons/apps-off.svg @@ -4,10 +4,5 @@ version: "1.62" unicode: "f0ac" --- - - - - - - + diff --git a/src/_icons/apps.svg b/src/_icons/apps.svg index 3e046d789..086a68126 100644 --- a/src/_icons/apps.svg +++ b/src/_icons/apps.svg @@ -4,9 +4,5 @@ version: "1.5" unicode: "ebb6" --- - - - - - + diff --git a/src/_icons/archive-off.svg b/src/_icons/archive-off.svg index e0d7b2bd0..77ff9aa71 100644 --- a/src/_icons/archive-off.svg +++ b/src/_icons/archive-off.svg @@ -5,8 +5,5 @@ version: "1.62" unicode: "f0ad" --- - - - - + diff --git a/src/_icons/archive.svg b/src/_icons/archive.svg index 9f1f01826..36bac648b 100644 --- a/src/_icons/archive.svg +++ b/src/_icons/archive.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea0b" --- - - - + diff --git a/src/_icons/armchair-2-off.svg b/src/_icons/armchair-2-off.svg index d01de70ac..39bfd0657 100644 --- a/src/_icons/armchair-2-off.svg +++ b/src/_icons/armchair-2-off.svg @@ -4,10 +4,5 @@ unicode: "f3bd" version: "1.94" --- - - - - - - + diff --git a/src/_icons/armchair-2.svg b/src/_icons/armchair-2.svg index 9a0e9db5a..c0abf2592 100644 --- a/src/_icons/armchair-2.svg +++ b/src/_icons/armchair-2.svg @@ -4,9 +4,5 @@ version: "1.52" unicode: "efe7" --- - - - - - + diff --git a/src/_icons/armchair-off.svg b/src/_icons/armchair-off.svg index 481df460f..8fe9ba585 100644 --- a/src/_icons/armchair-off.svg +++ b/src/_icons/armchair-off.svg @@ -4,9 +4,5 @@ unicode: "f3be" version: "1.94" --- - - - - - + diff --git a/src/_icons/armchair.svg b/src/_icons/armchair.svg index 82a977a6d..b886f86f3 100644 --- a/src/_icons/armchair.svg +++ b/src/_icons/armchair.svg @@ -4,8 +4,5 @@ version: "1.48" unicode: "ef9e" --- - - - - + diff --git a/src/_icons/arrow-autofit-content.svg b/src/_icons/arrow-autofit-content.svg index cbd77e7ef..c4289fb8c 100644 --- a/src/_icons/arrow-autofit-content.svg +++ b/src/_icons/arrow-autofit-content.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef31" --- - - - - - + diff --git a/src/_icons/arrow-autofit-down.svg b/src/_icons/arrow-autofit-down.svg index 79b8faa87..cfa5006db 100644 --- a/src/_icons/arrow-autofit-down.svg +++ b/src/_icons/arrow-autofit-down.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef32" --- - - - + diff --git a/src/_icons/arrow-autofit-height.svg b/src/_icons/arrow-autofit-height.svg index 2a3a149da..4f0585cfb 100644 --- a/src/_icons/arrow-autofit-height.svg +++ b/src/_icons/arrow-autofit-height.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef33" --- - - - - - + diff --git a/src/_icons/arrow-autofit-left.svg b/src/_icons/arrow-autofit-left.svg index 391cb0503..3403a43d7 100644 --- a/src/_icons/arrow-autofit-left.svg +++ b/src/_icons/arrow-autofit-left.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef34" --- - - - + diff --git a/src/_icons/arrow-autofit-right.svg b/src/_icons/arrow-autofit-right.svg index 60bad0e0e..b33cb7a32 100644 --- a/src/_icons/arrow-autofit-right.svg +++ b/src/_icons/arrow-autofit-right.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef35" --- - - - + diff --git a/src/_icons/arrow-autofit-up.svg b/src/_icons/arrow-autofit-up.svg index 82554ded1..650ada683 100644 --- a/src/_icons/arrow-autofit-up.svg +++ b/src/_icons/arrow-autofit-up.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef36" --- - - - + diff --git a/src/_icons/arrow-autofit-width.svg b/src/_icons/arrow-autofit-width.svg index daac3bc6c..67a5f3429 100644 --- a/src/_icons/arrow-autofit-width.svg +++ b/src/_icons/arrow-autofit-width.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef37" --- - - - - - + diff --git a/src/_icons/arrow-bar-down.svg b/src/_icons/arrow-bar-down.svg index fa4ed524e..20304bf82 100644 --- a/src/_icons/arrow-bar-down.svg +++ b/src/_icons/arrow-bar-down.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea0d" --- - - - - + diff --git a/src/_icons/arrow-bar-left.svg b/src/_icons/arrow-bar-left.svg index 71eca8795..da4bbef7c 100644 --- a/src/_icons/arrow-bar-left.svg +++ b/src/_icons/arrow-bar-left.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea0e" --- - - - - + diff --git a/src/_icons/arrow-bar-right.svg b/src/_icons/arrow-bar-right.svg index 2ebf9e434..e7d78892f 100644 --- a/src/_icons/arrow-bar-right.svg +++ b/src/_icons/arrow-bar-right.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea0f" --- - - - - + diff --git a/src/_icons/arrow-bar-to-down.svg b/src/_icons/arrow-bar-to-down.svg index c66d7901a..8222b6870 100644 --- a/src/_icons/arrow-bar-to-down.svg +++ b/src/_icons/arrow-bar-to-down.svg @@ -5,8 +5,5 @@ version: "1.15" unicode: "ec88" --- - - - - + diff --git a/src/_icons/arrow-bar-to-left.svg b/src/_icons/arrow-bar-to-left.svg index 2f846ad8a..90a9b374e 100644 --- a/src/_icons/arrow-bar-to-left.svg +++ b/src/_icons/arrow-bar-to-left.svg @@ -5,8 +5,5 @@ version: "1.15" unicode: "ec89" --- - - - - + diff --git a/src/_icons/arrow-bar-to-right.svg b/src/_icons/arrow-bar-to-right.svg index e2bae26c0..64de79c0f 100644 --- a/src/_icons/arrow-bar-to-right.svg +++ b/src/_icons/arrow-bar-to-right.svg @@ -5,8 +5,5 @@ version: "1.15" unicode: "ec8a" --- - - - - + diff --git a/src/_icons/arrow-bar-to-up.svg b/src/_icons/arrow-bar-to-up.svg index a0bb4b816..8d0b48997 100644 --- a/src/_icons/arrow-bar-to-up.svg +++ b/src/_icons/arrow-bar-to-up.svg @@ -5,8 +5,5 @@ version: "1.15" unicode: "ec8b" --- - - - - + diff --git a/src/_icons/arrow-bar-up.svg b/src/_icons/arrow-bar-up.svg index 4b1d55cfe..4d6bbc5e7 100644 --- a/src/_icons/arrow-bar-up.svg +++ b/src/_icons/arrow-bar-up.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea10" --- - - - - + diff --git a/src/_icons/arrow-bear-left-2.svg b/src/_icons/arrow-bear-left-2.svg index b3e9c72e8..c172d0f0e 100644 --- a/src/_icons/arrow-bear-left-2.svg +++ b/src/_icons/arrow-bear-left-2.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f044" --- - - - + diff --git a/src/_icons/arrow-bear-left.svg b/src/_icons/arrow-bear-left.svg index c95ddc990..ae16a2455 100644 --- a/src/_icons/arrow-bear-left.svg +++ b/src/_icons/arrow-bear-left.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f045" --- - - + diff --git a/src/_icons/arrow-bear-right-2.svg b/src/_icons/arrow-bear-right-2.svg index f2f6b4dd5..ed2e33fc2 100644 --- a/src/_icons/arrow-bear-right-2.svg +++ b/src/_icons/arrow-bear-right-2.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f046" --- - - - + diff --git a/src/_icons/arrow-bear-right.svg b/src/_icons/arrow-bear-right.svg index ef075010a..1df771d3d 100644 --- a/src/_icons/arrow-bear-right.svg +++ b/src/_icons/arrow-bear-right.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f047" --- - - + diff --git a/src/_icons/arrow-big-down-line.svg b/src/_icons/arrow-big-down-line.svg index 7cfa2f841..35397b651 100644 --- a/src/_icons/arrow-big-down-line.svg +++ b/src/_icons/arrow-big-down-line.svg @@ -5,6 +5,5 @@ version: "1.52" unicode: "efe8" --- - - + diff --git a/src/_icons/arrow-big-down-lines.svg b/src/_icons/arrow-big-down-lines.svg index 6fd3e82a2..d48b4801b 100644 --- a/src/_icons/arrow-big-down-lines.svg +++ b/src/_icons/arrow-big-down-lines.svg @@ -5,7 +5,5 @@ version: "1.52" unicode: "efe9" --- - - - + diff --git a/src/_icons/arrow-big-left-line.svg b/src/_icons/arrow-big-left-line.svg index fb13b5903..9f1210df1 100644 --- a/src/_icons/arrow-big-left-line.svg +++ b/src/_icons/arrow-big-left-line.svg @@ -5,6 +5,5 @@ version: "1.52" unicode: "efea" --- - - + diff --git a/src/_icons/arrow-big-left-lines.svg b/src/_icons/arrow-big-left-lines.svg index 561fe81d3..7ffefa1af 100644 --- a/src/_icons/arrow-big-left-lines.svg +++ b/src/_icons/arrow-big-left-lines.svg @@ -5,7 +5,5 @@ version: "1.52" unicode: "efeb" --- - - - + diff --git a/src/_icons/arrow-big-right-line.svg b/src/_icons/arrow-big-right-line.svg index 84eca07de..088258bf7 100644 --- a/src/_icons/arrow-big-right-line.svg +++ b/src/_icons/arrow-big-right-line.svg @@ -5,6 +5,5 @@ version: "1.52" unicode: "efec" --- - - + diff --git a/src/_icons/arrow-big-right-lines.svg b/src/_icons/arrow-big-right-lines.svg index 5af7c5deb..69626e03c 100644 --- a/src/_icons/arrow-big-right-lines.svg +++ b/src/_icons/arrow-big-right-lines.svg @@ -5,7 +5,5 @@ version: "1.52" unicode: "efed" --- - - - + diff --git a/src/_icons/arrow-big-up-line.svg b/src/_icons/arrow-big-up-line.svg index c3d62e1c8..d6c70c45c 100644 --- a/src/_icons/arrow-big-up-line.svg +++ b/src/_icons/arrow-big-up-line.svg @@ -5,6 +5,5 @@ version: "1.52" unicode: "efee" --- - - + diff --git a/src/_icons/arrow-big-up-lines.svg b/src/_icons/arrow-big-up-lines.svg index 4136b9895..df64efa56 100644 --- a/src/_icons/arrow-big-up-lines.svg +++ b/src/_icons/arrow-big-up-lines.svg @@ -5,7 +5,5 @@ version: "1.52" unicode: "efef" --- - - - + diff --git a/src/_icons/arrow-bounce.svg b/src/_icons/arrow-bounce.svg index 91bdf7084..04afd2677 100644 --- a/src/_icons/arrow-bounce.svg +++ b/src/_icons/arrow-bounce.svg @@ -5,7 +5,5 @@ version: "1.93" unicode: "f3a4" --- - - - + diff --git a/src/_icons/arrow-curve-left.svg b/src/_icons/arrow-curve-left.svg index 045ccfdf7..ac5607eb1 100644 --- a/src/_icons/arrow-curve-left.svg +++ b/src/_icons/arrow-curve-left.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f048" --- - - + diff --git a/src/_icons/arrow-curve-right.svg b/src/_icons/arrow-curve-right.svg index 6b88b2097..e99fa8d40 100644 --- a/src/_icons/arrow-curve-right.svg +++ b/src/_icons/arrow-curve-right.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f049" --- - - + diff --git a/src/_icons/arrow-down-bar.svg b/src/_icons/arrow-down-bar.svg index 833756f05..949515cbe 100644 --- a/src/_icons/arrow-down-bar.svg +++ b/src/_icons/arrow-down-bar.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed98" --- - - - + diff --git a/src/_icons/arrow-down-circle.svg b/src/_icons/arrow-down-circle.svg index ede9c7286..9c58fc99f 100644 --- a/src/_icons/arrow-down-circle.svg +++ b/src/_icons/arrow-down-circle.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea11" --- - - - - + diff --git a/src/_icons/arrow-down-left-circle.svg b/src/_icons/arrow-down-left-circle.svg index 7c3a3625a..d668f75aa 100644 --- a/src/_icons/arrow-down-left-circle.svg +++ b/src/_icons/arrow-down-left-circle.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea12" --- - - - + diff --git a/src/_icons/arrow-down-left.svg b/src/_icons/arrow-down-left.svg index b357f0e3b..11b1417a5 100644 --- a/src/_icons/arrow-down-left.svg +++ b/src/_icons/arrow-down-left.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea13" --- - - + diff --git a/src/_icons/arrow-down-rhombus.svg b/src/_icons/arrow-down-rhombus.svg index 0d886766b..1b4bd7209 100644 --- a/src/_icons/arrow-down-rhombus.svg +++ b/src/_icons/arrow-down-rhombus.svg @@ -4,7 +4,5 @@ unicode: "f61d" version: "1.116" --- - - - + diff --git a/src/_icons/arrow-down-right-circle.svg b/src/_icons/arrow-down-right-circle.svg index fbc5920e4..cc6bf998e 100644 --- a/src/_icons/arrow-down-right-circle.svg +++ b/src/_icons/arrow-down-right-circle.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea14" --- - - - + diff --git a/src/_icons/arrow-down-right.svg b/src/_icons/arrow-down-right.svg index b94b689ed..2635f79de 100644 --- a/src/_icons/arrow-down-right.svg +++ b/src/_icons/arrow-down-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea15" --- - - + diff --git a/src/_icons/arrow-down-square.svg b/src/_icons/arrow-down-square.svg index 0b6265b24..72756f3bf 100644 --- a/src/_icons/arrow-down-square.svg +++ b/src/_icons/arrow-down-square.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed9a" --- - - - + diff --git a/src/_icons/arrow-down-tail.svg b/src/_icons/arrow-down-tail.svg index e94f60439..33bfeda72 100644 --- a/src/_icons/arrow-down-tail.svg +++ b/src/_icons/arrow-down-tail.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed9b" --- - - - + diff --git a/src/_icons/arrow-down.svg b/src/_icons/arrow-down.svg index 2e0f17487..c5f8f2684 100644 --- a/src/_icons/arrow-down.svg +++ b/src/_icons/arrow-down.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea16" --- - - - + diff --git a/src/_icons/arrow-fork.svg b/src/_icons/arrow-fork.svg index cc4fa1c5c..520bbdbf4 100644 --- a/src/_icons/arrow-fork.svg +++ b/src/_icons/arrow-fork.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f04a" --- - - - - + diff --git a/src/_icons/arrow-guide.svg b/src/_icons/arrow-guide.svg index 10f319e95..419362e00 100644 --- a/src/_icons/arrow-guide.svg +++ b/src/_icons/arrow-guide.svg @@ -5,7 +5,5 @@ version: "1.73" unicode: "f22a" --- - - - + diff --git a/src/_icons/arrow-iteration.svg b/src/_icons/arrow-iteration.svg index 461da726e..d0c47e370 100644 --- a/src/_icons/arrow-iteration.svg +++ b/src/_icons/arrow-iteration.svg @@ -5,7 +5,5 @@ unicode: "f578" version: "1.108" --- - - - + diff --git a/src/_icons/arrow-left-bar.svg b/src/_icons/arrow-left-bar.svg index d952b1feb..c61d8c007 100644 --- a/src/_icons/arrow-left-bar.svg +++ b/src/_icons/arrow-left-bar.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed9c" --- - - - + diff --git a/src/_icons/arrow-left-circle.svg b/src/_icons/arrow-left-circle.svg index 56417cffb..b98787284 100644 --- a/src/_icons/arrow-left-circle.svg +++ b/src/_icons/arrow-left-circle.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ea18" --- - - - + diff --git a/src/_icons/arrow-left-rhombus.svg b/src/_icons/arrow-left-rhombus.svg index 09be5ac52..388474013 100644 --- a/src/_icons/arrow-left-rhombus.svg +++ b/src/_icons/arrow-left-rhombus.svg @@ -4,7 +4,5 @@ unicode: "f61e" version: "1.116" --- - - - + diff --git a/src/_icons/arrow-left-right.svg b/src/_icons/arrow-left-right.svg index fef5c2192..00a1d1480 100644 --- a/src/_icons/arrow-left-right.svg +++ b/src/_icons/arrow-left-right.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f04b" --- - - - - + diff --git a/src/_icons/arrow-left-square.svg b/src/_icons/arrow-left-square.svg index 288110d75..52b97c77b 100644 --- a/src/_icons/arrow-left-square.svg +++ b/src/_icons/arrow-left-square.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed9d" --- - - - + diff --git a/src/_icons/arrow-left-tail.svg b/src/_icons/arrow-left-tail.svg index f66c5cca1..79c4494c9 100644 --- a/src/_icons/arrow-left-tail.svg +++ b/src/_icons/arrow-left-tail.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ed9e" --- - - - + diff --git a/src/_icons/arrow-left.svg b/src/_icons/arrow-left.svg index 9f4f92a19..01c3627d0 100644 --- a/src/_icons/arrow-left.svg +++ b/src/_icons/arrow-left.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea19" --- - - - + diff --git a/src/_icons/arrow-loop-left-2.svg b/src/_icons/arrow-loop-left-2.svg index 28d9bdce2..fe7b4dc5d 100644 --- a/src/_icons/arrow-loop-left-2.svg +++ b/src/_icons/arrow-loop-left-2.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f04c" --- - - + diff --git a/src/_icons/arrow-loop-left.svg b/src/_icons/arrow-loop-left.svg index f30096878..5b8408837 100644 --- a/src/_icons/arrow-loop-left.svg +++ b/src/_icons/arrow-loop-left.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "ed9f" --- - - + diff --git a/src/_icons/arrow-loop-right-2.svg b/src/_icons/arrow-loop-right-2.svg index ade39e0a4..305675b36 100644 --- a/src/_icons/arrow-loop-right-2.svg +++ b/src/_icons/arrow-loop-right-2.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f04d" --- - - + diff --git a/src/_icons/arrow-loop-right.svg b/src/_icons/arrow-loop-right.svg index 060da9a6b..be95ceec5 100644 --- a/src/_icons/arrow-loop-right.svg +++ b/src/_icons/arrow-loop-right.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "eda0" --- - - + diff --git a/src/_icons/arrow-merge-both.svg b/src/_icons/arrow-merge-both.svg index 115bfaa3e..f2d308f4d 100644 --- a/src/_icons/arrow-merge-both.svg +++ b/src/_icons/arrow-merge-both.svg @@ -5,8 +5,5 @@ version: "1.74" unicode: "f23b" --- - - - - + diff --git a/src/_icons/arrow-merge-left.svg b/src/_icons/arrow-merge-left.svg index b322e55da..ddfbf9a19 100644 --- a/src/_icons/arrow-merge-left.svg +++ b/src/_icons/arrow-merge-left.svg @@ -5,7 +5,5 @@ version: "1.74" unicode: "f23c" --- - - - + diff --git a/src/_icons/arrow-merge-right.svg b/src/_icons/arrow-merge-right.svg index 1c295e54f..81837eb70 100644 --- a/src/_icons/arrow-merge-right.svg +++ b/src/_icons/arrow-merge-right.svg @@ -5,7 +5,5 @@ version: "1.74" unicode: "f23d" --- - - - + diff --git a/src/_icons/arrow-merge.svg b/src/_icons/arrow-merge.svg index a7045332e..e91dcebad 100644 --- a/src/_icons/arrow-merge.svg +++ b/src/_icons/arrow-merge.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f04e" --- - - - + diff --git a/src/_icons/arrow-move-down.svg b/src/_icons/arrow-move-down.svg index e65703acb..692c4b626 100644 --- a/src/_icons/arrow-move-down.svg +++ b/src/_icons/arrow-move-down.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2ba" --- - - - + diff --git a/src/_icons/arrow-move-left.svg b/src/_icons/arrow-move-left.svg index 732e4422a..5c0b344f3 100644 --- a/src/_icons/arrow-move-left.svg +++ b/src/_icons/arrow-move-left.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2bb" --- - - - + diff --git a/src/_icons/arrow-move-right.svg b/src/_icons/arrow-move-right.svg index 0e42ba529..ad6320a50 100644 --- a/src/_icons/arrow-move-right.svg +++ b/src/_icons/arrow-move-right.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2bc" --- - - - + diff --git a/src/_icons/arrow-move-up.svg b/src/_icons/arrow-move-up.svg index f0aa7a139..7ec133cda 100644 --- a/src/_icons/arrow-move-up.svg +++ b/src/_icons/arrow-move-up.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2bd" --- - - - + diff --git a/src/_icons/arrow-narrow-down.svg b/src/_icons/arrow-narrow-down.svg index 536c30f2a..ec0a9feb7 100644 --- a/src/_icons/arrow-narrow-down.svg +++ b/src/_icons/arrow-narrow-down.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea1a" --- - - - + diff --git a/src/_icons/arrow-narrow-left.svg b/src/_icons/arrow-narrow-left.svg index ca4435902..6c42fb63c 100644 --- a/src/_icons/arrow-narrow-left.svg +++ b/src/_icons/arrow-narrow-left.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea1b" --- - - - + diff --git a/src/_icons/arrow-narrow-right.svg b/src/_icons/arrow-narrow-right.svg index 456204fce..0ac91fd77 100644 --- a/src/_icons/arrow-narrow-right.svg +++ b/src/_icons/arrow-narrow-right.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea1c" --- - - - + diff --git a/src/_icons/arrow-narrow-up.svg b/src/_icons/arrow-narrow-up.svg index 62434d24c..35c855dc0 100644 --- a/src/_icons/arrow-narrow-up.svg +++ b/src/_icons/arrow-narrow-up.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea1d" --- - - - + diff --git a/src/_icons/arrow-ramp-left-2.svg b/src/_icons/arrow-ramp-left-2.svg index c02cc0495..29d2a1f51 100644 --- a/src/_icons/arrow-ramp-left-2.svg +++ b/src/_icons/arrow-ramp-left-2.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f04f" --- - - - + diff --git a/src/_icons/arrow-ramp-left-3.svg b/src/_icons/arrow-ramp-left-3.svg index 6a470312c..046604dbe 100644 --- a/src/_icons/arrow-ramp-left-3.svg +++ b/src/_icons/arrow-ramp-left-3.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f050" --- - - - + diff --git a/src/_icons/arrow-ramp-left.svg b/src/_icons/arrow-ramp-left.svg index 8cb76bcfb..1238813bd 100644 --- a/src/_icons/arrow-ramp-left.svg +++ b/src/_icons/arrow-ramp-left.svg @@ -5,8 +5,5 @@ version: "1.28" unicode: "ed3c" --- - - - - + diff --git a/src/_icons/arrow-ramp-right-2.svg b/src/_icons/arrow-ramp-right-2.svg index 317abb380..563ccb8b7 100644 --- a/src/_icons/arrow-ramp-right-2.svg +++ b/src/_icons/arrow-ramp-right-2.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f051" --- - - - + diff --git a/src/_icons/arrow-ramp-right-3.svg b/src/_icons/arrow-ramp-right-3.svg index 6e04612e8..90fbf3b87 100644 --- a/src/_icons/arrow-ramp-right-3.svg +++ b/src/_icons/arrow-ramp-right-3.svg @@ -5,7 +5,5 @@ version: "1.57" unicode: "f052" --- - - - + diff --git a/src/_icons/arrow-ramp-right.svg b/src/_icons/arrow-ramp-right.svg index d01a0ea48..57bcb3352 100644 --- a/src/_icons/arrow-ramp-right.svg +++ b/src/_icons/arrow-ramp-right.svg @@ -5,8 +5,5 @@ version: "1.28" unicode: "ed3d" --- - - - - + diff --git a/src/_icons/arrow-right-bar.svg b/src/_icons/arrow-right-bar.svg index 75f52f99f..eb3de11ba 100644 --- a/src/_icons/arrow-right-bar.svg +++ b/src/_icons/arrow-right-bar.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda1" --- - - - + diff --git a/src/_icons/arrow-right-circle.svg b/src/_icons/arrow-right-circle.svg index cf1d6ceed..d4384ca3a 100644 --- a/src/_icons/arrow-right-circle.svg +++ b/src/_icons/arrow-right-circle.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "ea1e" --- - - - + diff --git a/src/_icons/arrow-right-rhombus.svg b/src/_icons/arrow-right-rhombus.svg index ef5854b7a..3a3273412 100644 --- a/src/_icons/arrow-right-rhombus.svg +++ b/src/_icons/arrow-right-rhombus.svg @@ -4,7 +4,5 @@ unicode: "f61f" version: "1.116" --- - - - + diff --git a/src/_icons/arrow-right-square.svg b/src/_icons/arrow-right-square.svg index 37e6f80ee..0270b23db 100644 --- a/src/_icons/arrow-right-square.svg +++ b/src/_icons/arrow-right-square.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda2" --- - - - + diff --git a/src/_icons/arrow-right-tail.svg b/src/_icons/arrow-right-tail.svg index b70234a83..8ef061fde 100644 --- a/src/_icons/arrow-right-tail.svg +++ b/src/_icons/arrow-right-tail.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda3" --- - - - + diff --git a/src/_icons/arrow-right.svg b/src/_icons/arrow-right.svg index cd6051b9f..d103a0da5 100644 --- a/src/_icons/arrow-right.svg +++ b/src/_icons/arrow-right.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea1f" --- - - - + diff --git a/src/_icons/arrow-rotary-first-left.svg b/src/_icons/arrow-rotary-first-left.svg index 1395b2c4e..5117ce343 100644 --- a/src/_icons/arrow-rotary-first-left.svg +++ b/src/_icons/arrow-rotary-first-left.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f053" --- - - - - + diff --git a/src/_icons/arrow-rotary-first-right.svg b/src/_icons/arrow-rotary-first-right.svg index 1a3ad3018..5fefa698b 100644 --- a/src/_icons/arrow-rotary-first-right.svg +++ b/src/_icons/arrow-rotary-first-right.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f054" --- - - - - + diff --git a/src/_icons/arrow-rotary-last-left.svg b/src/_icons/arrow-rotary-last-left.svg index 2ee6e7add..bbb89b5a2 100644 --- a/src/_icons/arrow-rotary-last-left.svg +++ b/src/_icons/arrow-rotary-last-left.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f055" --- - - - - + diff --git a/src/_icons/arrow-rotary-last-right.svg b/src/_icons/arrow-rotary-last-right.svg index 7fbd1958d..c05a16f87 100644 --- a/src/_icons/arrow-rotary-last-right.svg +++ b/src/_icons/arrow-rotary-last-right.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f056" --- - - - - + diff --git a/src/_icons/arrow-rotary-left.svg b/src/_icons/arrow-rotary-left.svg index 981adcfa0..4493a6741 100644 --- a/src/_icons/arrow-rotary-left.svg +++ b/src/_icons/arrow-rotary-left.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f057" --- - - - - + diff --git a/src/_icons/arrow-rotary-right.svg b/src/_icons/arrow-rotary-right.svg index 856b90aa2..333b7ad89 100644 --- a/src/_icons/arrow-rotary-right.svg +++ b/src/_icons/arrow-rotary-right.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f058" --- - - - - + diff --git a/src/_icons/arrow-rotary-straight.svg b/src/_icons/arrow-rotary-straight.svg index 52531799c..a0205f475 100644 --- a/src/_icons/arrow-rotary-straight.svg +++ b/src/_icons/arrow-rotary-straight.svg @@ -5,8 +5,5 @@ version: "1.57" unicode: "f059" --- - - - - + diff --git a/src/_icons/arrow-roundabout-left.svg b/src/_icons/arrow-roundabout-left.svg index 9d790943e..362c54a6a 100644 --- a/src/_icons/arrow-roundabout-left.svg +++ b/src/_icons/arrow-roundabout-left.svg @@ -5,6 +5,5 @@ version: "1.73" unicode: "f22b" --- - - + diff --git a/src/_icons/arrow-roundabout-right.svg b/src/_icons/arrow-roundabout-right.svg index 7d9278d3d..5fef63ad7 100644 --- a/src/_icons/arrow-roundabout-right.svg +++ b/src/_icons/arrow-roundabout-right.svg @@ -5,6 +5,5 @@ version: "1.73" unicode: "f22c" --- - - + diff --git a/src/_icons/arrow-sharp-turn-left.svg b/src/_icons/arrow-sharp-turn-left.svg index 40ddc9276..d726a561f 100644 --- a/src/_icons/arrow-sharp-turn-left.svg +++ b/src/_icons/arrow-sharp-turn-left.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f05a" --- - - + diff --git a/src/_icons/arrow-sharp-turn-right.svg b/src/_icons/arrow-sharp-turn-right.svg index db55a97e8..1986ce951 100644 --- a/src/_icons/arrow-sharp-turn-right.svg +++ b/src/_icons/arrow-sharp-turn-right.svg @@ -5,6 +5,5 @@ version: "1.57" unicode: "f05b" --- - - + diff --git a/src/_icons/arrow-up-bar.svg b/src/_icons/arrow-up-bar.svg index 426a9b3cb..67f9cb3e0 100644 --- a/src/_icons/arrow-up-bar.svg +++ b/src/_icons/arrow-up-bar.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda4" --- - - - + diff --git a/src/_icons/arrow-up-circle.svg b/src/_icons/arrow-up-circle.svg index f722b0416..a749f7a44 100644 --- a/src/_icons/arrow-up-circle.svg +++ b/src/_icons/arrow-up-circle.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea20" --- - - - - + diff --git a/src/_icons/arrow-up-left-circle.svg b/src/_icons/arrow-up-left-circle.svg index 07329cb9f..86b4df0cb 100644 --- a/src/_icons/arrow-up-left-circle.svg +++ b/src/_icons/arrow-up-left-circle.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea21" --- - - - + diff --git a/src/_icons/arrow-up-left.svg b/src/_icons/arrow-up-left.svg index 2a1f9644e..5e5864460 100644 --- a/src/_icons/arrow-up-left.svg +++ b/src/_icons/arrow-up-left.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea22" --- - - + diff --git a/src/_icons/arrow-up-rhombus.svg b/src/_icons/arrow-up-rhombus.svg index f5d1a54bc..ae686a62a 100644 --- a/src/_icons/arrow-up-rhombus.svg +++ b/src/_icons/arrow-up-rhombus.svg @@ -4,7 +4,5 @@ unicode: "f620" version: "1.116" --- - - - + diff --git a/src/_icons/arrow-up-right-circle.svg b/src/_icons/arrow-up-right-circle.svg index 66ffcd96d..bfd311a71 100644 --- a/src/_icons/arrow-up-right-circle.svg +++ b/src/_icons/arrow-up-right-circle.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea23" --- - - - + diff --git a/src/_icons/arrow-up-right.svg b/src/_icons/arrow-up-right.svg index f26cd0f60..f7571bb40 100644 --- a/src/_icons/arrow-up-right.svg +++ b/src/_icons/arrow-up-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea24" --- - - + diff --git a/src/_icons/arrow-up-square.svg b/src/_icons/arrow-up-square.svg index 2ffc6a11d..f29831bab 100644 --- a/src/_icons/arrow-up-square.svg +++ b/src/_icons/arrow-up-square.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda6" --- - - - + diff --git a/src/_icons/arrow-up-tail.svg b/src/_icons/arrow-up-tail.svg index 99f0bffb9..444505842 100644 --- a/src/_icons/arrow-up-tail.svg +++ b/src/_icons/arrow-up-tail.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "eda7" --- - - - + diff --git a/src/_icons/arrow-up.svg b/src/_icons/arrow-up.svg index 35193d7c6..728280e13 100644 --- a/src/_icons/arrow-up.svg +++ b/src/_icons/arrow-up.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea25" --- - - - + diff --git a/src/_icons/arrow-wave-left-down.svg b/src/_icons/arrow-wave-left-down.svg index 96276b53e..204fd4fa5 100644 --- a/src/_icons/arrow-wave-left-down.svg +++ b/src/_icons/arrow-wave-left-down.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "eda8" --- - - + diff --git a/src/_icons/arrow-wave-left-up.svg b/src/_icons/arrow-wave-left-up.svg index 8416a7053..dfac5cb3b 100644 --- a/src/_icons/arrow-wave-left-up.svg +++ b/src/_icons/arrow-wave-left-up.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "eda9" --- - - + diff --git a/src/_icons/arrow-wave-right-down.svg b/src/_icons/arrow-wave-right-down.svg index 565856d70..01d4b3862 100644 --- a/src/_icons/arrow-wave-right-down.svg +++ b/src/_icons/arrow-wave-right-down.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edaa" --- - - + diff --git a/src/_icons/arrow-wave-right-up.svg b/src/_icons/arrow-wave-right-up.svg index 002d522d2..b84ac9f2a 100644 --- a/src/_icons/arrow-wave-right-up.svg +++ b/src/_icons/arrow-wave-right-up.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edab" --- - - + diff --git a/src/_icons/arrow-zig-zag.svg b/src/_icons/arrow-zig-zag.svg index dbf869f8c..7e635d006 100644 --- a/src/_icons/arrow-zig-zag.svg +++ b/src/_icons/arrow-zig-zag.svg @@ -5,6 +5,5 @@ unicode: "f4a7" version: "1.97" --- - - + diff --git a/src/_icons/arrows-cross.svg b/src/_icons/arrows-cross.svg index 46b64d910..b7377e275 100644 --- a/src/_icons/arrows-cross.svg +++ b/src/_icons/arrows-cross.svg @@ -5,9 +5,5 @@ category: Arrows unicode: "effe" --- - - - - - + diff --git a/src/_icons/arrows-diagonal-2.svg b/src/_icons/arrows-diagonal-2.svg index 77408ae23..f07797e3c 100644 --- a/src/_icons/arrows-diagonal-2.svg +++ b/src/_icons/arrows-diagonal-2.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea26" --- - - - - + diff --git a/src/_icons/arrows-diagonal-minimize-2.svg b/src/_icons/arrows-diagonal-minimize-2.svg index 5dfd3c31c..88958205c 100644 --- a/src/_icons/arrows-diagonal-minimize-2.svg +++ b/src/_icons/arrows-diagonal-minimize-2.svg @@ -5,8 +5,5 @@ version: "1.42" unicode: "ef38" --- - - - - + diff --git a/src/_icons/arrows-diagonal-minimize.svg b/src/_icons/arrows-diagonal-minimize.svg index 2bf0fb315..1cc0d636b 100644 --- a/src/_icons/arrows-diagonal-minimize.svg +++ b/src/_icons/arrows-diagonal-minimize.svg @@ -5,8 +5,5 @@ version: "1.42" unicode: "ef39" --- - - - - + diff --git a/src/_icons/arrows-diagonal.svg b/src/_icons/arrows-diagonal.svg index ba7474890..f39a67f6a 100644 --- a/src/_icons/arrows-diagonal.svg +++ b/src/_icons/arrows-diagonal.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea27" --- - - - - + diff --git a/src/_icons/arrows-diff.svg b/src/_icons/arrows-diff.svg index 0ded8945c..748413c64 100644 --- a/src/_icons/arrows-diff.svg +++ b/src/_icons/arrows-diff.svg @@ -5,10 +5,5 @@ version: "1.79" unicode: "f296" --- - - - - - - + diff --git a/src/_icons/arrows-double-ne-sw.svg b/src/_icons/arrows-double-ne-sw.svg index f90a6087c..c2b15d694 100644 --- a/src/_icons/arrows-double-ne-sw.svg +++ b/src/_icons/arrows-double-ne-sw.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "edde" --- - - - - + diff --git a/src/_icons/arrows-double-nw-se.svg b/src/_icons/arrows-double-nw-se.svg index 004568feb..0d9bcf425 100644 --- a/src/_icons/arrows-double-nw-se.svg +++ b/src/_icons/arrows-double-nw-se.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "eddf" --- - - - - + diff --git a/src/_icons/arrows-double-se-nw.svg b/src/_icons/arrows-double-se-nw.svg index bb5f657dc..c41102f2e 100644 --- a/src/_icons/arrows-double-se-nw.svg +++ b/src/_icons/arrows-double-se-nw.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "ede0" --- - - - - + diff --git a/src/_icons/arrows-double-sw-ne.svg b/src/_icons/arrows-double-sw-ne.svg index 9e7623af4..e623b8a8c 100644 --- a/src/_icons/arrows-double-sw-ne.svg +++ b/src/_icons/arrows-double-sw-ne.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "ede1" --- - - - - + diff --git a/src/_icons/arrows-down-up.svg b/src/_icons/arrows-down-up.svg index decb9b233..dbc92ff71 100644 --- a/src/_icons/arrows-down-up.svg +++ b/src/_icons/arrows-down-up.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edac" --- - - - - + diff --git a/src/_icons/arrows-down.svg b/src/_icons/arrows-down.svg index 05c68e8fa..44ac00d39 100644 --- a/src/_icons/arrows-down.svg +++ b/src/_icons/arrows-down.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edad" --- - - - - + diff --git a/src/_icons/arrows-exchange-2.svg b/src/_icons/arrows-exchange-2.svg index 45a273586..ee203df62 100644 --- a/src/_icons/arrows-exchange-2.svg +++ b/src/_icons/arrows-exchange-2.svg @@ -5,6 +5,5 @@ version: "1.70" unicode: "f1f3" --- - - + diff --git a/src/_icons/arrows-exchange.svg b/src/_icons/arrows-exchange.svg index e841aae20..2a2058488 100644 --- a/src/_icons/arrows-exchange.svg +++ b/src/_icons/arrows-exchange.svg @@ -5,6 +5,5 @@ version: "1.70" unicode: "f1f4" --- - - + diff --git a/src/_icons/arrows-horizontal.svg b/src/_icons/arrows-horizontal.svg index 15dafb5e0..51c228893 100644 --- a/src/_icons/arrows-horizontal.svg +++ b/src/_icons/arrows-horizontal.svg @@ -5,7 +5,5 @@ version: "1.2" unicode: "eb59" --- - - - + diff --git a/src/_icons/arrows-join-2.svg b/src/_icons/arrows-join-2.svg index 26fb1a59c..dd489ad82 100644 --- a/src/_icons/arrows-join-2.svg +++ b/src/_icons/arrows-join-2.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "edae" --- - - - + diff --git a/src/_icons/arrows-join.svg b/src/_icons/arrows-join.svg index 4b323f56a..1ad5eda68 100644 --- a/src/_icons/arrows-join.svg +++ b/src/_icons/arrows-join.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "edaf" --- - - - + diff --git a/src/_icons/arrows-left-down.svg b/src/_icons/arrows-left-down.svg index 9dc2e8f6d..981722870 100644 --- a/src/_icons/arrows-left-down.svg +++ b/src/_icons/arrows-left-down.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee00" --- - - - + diff --git a/src/_icons/arrows-left-right.svg b/src/_icons/arrows-left-right.svg index f25335425..a2e1bcbdf 100644 --- a/src/_icons/arrows-left-right.svg +++ b/src/_icons/arrows-left-right.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb0" --- - - - - + diff --git a/src/_icons/arrows-left.svg b/src/_icons/arrows-left.svg index 8f826e07a..d8c30e933 100644 --- a/src/_icons/arrows-left.svg +++ b/src/_icons/arrows-left.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb1" --- - - - - + diff --git a/src/_icons/arrows-maximize.svg b/src/_icons/arrows-maximize.svg index fa0ed9316..cf7239d7d 100644 --- a/src/_icons/arrows-maximize.svg +++ b/src/_icons/arrows-maximize.svg @@ -5,12 +5,5 @@ version: "1.0" unicode: "ea28" --- - - - - - - - - + diff --git a/src/_icons/arrows-minimize.svg b/src/_icons/arrows-minimize.svg index 03d4eda4c..d4aaf7694 100644 --- a/src/_icons/arrows-minimize.svg +++ b/src/_icons/arrows-minimize.svg @@ -5,12 +5,5 @@ version: "1.0" unicode: "ea29" --- - - - - - - - - + diff --git a/src/_icons/arrows-move-horizontal.svg b/src/_icons/arrows-move-horizontal.svg index f521810b2..44e83d49a 100644 --- a/src/_icons/arrows-move-horizontal.svg +++ b/src/_icons/arrows-move-horizontal.svg @@ -5,8 +5,5 @@ version: "1.73" unicode: "f22d" --- - - - - + diff --git a/src/_icons/arrows-move-vertical.svg b/src/_icons/arrows-move-vertical.svg index 25155d55a..4b1785df1 100644 --- a/src/_icons/arrows-move-vertical.svg +++ b/src/_icons/arrows-move-vertical.svg @@ -5,8 +5,5 @@ version: "1.73" unicode: "f22e" --- - - - - + diff --git a/src/_icons/arrows-move.svg b/src/_icons/arrows-move.svg index 4947c8320..b3d18099c 100644 --- a/src/_icons/arrows-move.svg +++ b/src/_icons/arrows-move.svg @@ -5,12 +5,5 @@ version: "1.73" unicode: "f22f" --- - - - - - - - - + diff --git a/src/_icons/arrows-random.svg b/src/_icons/arrows-random.svg index e5e351590..f3ff5a410 100644 --- a/src/_icons/arrows-random.svg +++ b/src/_icons/arrows-random.svg @@ -5,12 +5,5 @@ category: Arrows unicode: "f095" --- - - - - - - - - + diff --git a/src/_icons/arrows-right-down.svg b/src/_icons/arrows-right-down.svg index 875ca3136..b49df44ab 100644 --- a/src/_icons/arrows-right-down.svg +++ b/src/_icons/arrows-right-down.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee01" --- - - - + diff --git a/src/_icons/arrows-right-left.svg b/src/_icons/arrows-right-left.svg index 66a053f7d..f1f60006d 100644 --- a/src/_icons/arrows-right-left.svg +++ b/src/_icons/arrows-right-left.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb2" --- - - - - + diff --git a/src/_icons/arrows-right.svg b/src/_icons/arrows-right.svg index 44ca0380e..ac1e125d8 100644 --- a/src/_icons/arrows-right.svg +++ b/src/_icons/arrows-right.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb3" --- - - - - + diff --git a/src/_icons/arrows-shuffle-2.svg b/src/_icons/arrows-shuffle-2.svg index d1af70df4..b59567dd7 100644 --- a/src/_icons/arrows-shuffle-2.svg +++ b/src/_icons/arrows-shuffle-2.svg @@ -5,8 +5,5 @@ version: "1.53" unicode: "efff" --- - - - - + diff --git a/src/_icons/arrows-shuffle.svg b/src/_icons/arrows-shuffle.svg index 310a1c216..648e64fc1 100644 --- a/src/_icons/arrows-shuffle.svg +++ b/src/_icons/arrows-shuffle.svg @@ -5,8 +5,5 @@ category: Arrows unicode: "f000" --- - - - - + diff --git a/src/_icons/arrows-sort.svg b/src/_icons/arrows-sort.svg index 1d4f21ed2..457b9b6a6 100644 --- a/src/_icons/arrows-sort.svg +++ b/src/_icons/arrows-sort.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb5a" --- - - + diff --git a/src/_icons/arrows-split-2.svg b/src/_icons/arrows-split-2.svg index fe2515b47..6d04eb10b 100644 --- a/src/_icons/arrows-split-2.svg +++ b/src/_icons/arrows-split-2.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb4" --- - - - - + diff --git a/src/_icons/arrows-split.svg b/src/_icons/arrows-split.svg index 60a3ce5fa..c4172769b 100644 --- a/src/_icons/arrows-split.svg +++ b/src/_icons/arrows-split.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb5" --- - - - - + diff --git a/src/_icons/arrows-transfer-down.svg b/src/_icons/arrows-transfer-down.svg index 8d1fe5392..b7e84caf6 100644 --- a/src/_icons/arrows-transfer-down.svg +++ b/src/_icons/arrows-transfer-down.svg @@ -5,10 +5,5 @@ version: "1.82" unicode: "f2cc" --- - - - - - - + diff --git a/src/_icons/arrows-transfer-up.svg b/src/_icons/arrows-transfer-up.svg index 281677d15..4c322df6e 100644 --- a/src/_icons/arrows-transfer-up.svg +++ b/src/_icons/arrows-transfer-up.svg @@ -5,10 +5,5 @@ version: "1.82" unicode: "f2cd" --- - - - - - - + diff --git a/src/_icons/arrows-up-down.svg b/src/_icons/arrows-up-down.svg index 6037d730e..a4b89c9e7 100644 --- a/src/_icons/arrows-up-down.svg +++ b/src/_icons/arrows-up-down.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb6" --- - - - - + diff --git a/src/_icons/arrows-up-left.svg b/src/_icons/arrows-up-left.svg index 31fe5199a..b6ab58507 100644 --- a/src/_icons/arrows-up-left.svg +++ b/src/_icons/arrows-up-left.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee02" --- - - - + diff --git a/src/_icons/arrows-up-right.svg b/src/_icons/arrows-up-right.svg index 5293da96e..294edd65e 100644 --- a/src/_icons/arrows-up-right.svg +++ b/src/_icons/arrows-up-right.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee03" --- - - - + diff --git a/src/_icons/arrows-up.svg b/src/_icons/arrows-up.svg index e68d1b9fa..7ff8f0d4a 100644 --- a/src/_icons/arrows-up.svg +++ b/src/_icons/arrows-up.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edb7" --- - - - - + diff --git a/src/_icons/arrows-vertical.svg b/src/_icons/arrows-vertical.svg index 758a841b6..89fa7526c 100644 --- a/src/_icons/arrows-vertical.svg +++ b/src/_icons/arrows-vertical.svg @@ -5,7 +5,5 @@ version: "1.2" unicode: "eb5b" --- - - - + diff --git a/src/_icons/artboard-off.svg b/src/_icons/artboard-off.svg index 26029927a..20f49d1e2 100644 --- a/src/_icons/artboard-off.svg +++ b/src/_icons/artboard-off.svg @@ -5,15 +5,5 @@ version: "1.62" unicode: "f0ae" --- - - - - - - - - - - - + diff --git a/src/_icons/artboard.svg b/src/_icons/artboard.svg index ff7e30dfa..82be19b33 100644 --- a/src/_icons/artboard.svg +++ b/src/_icons/artboard.svg @@ -5,13 +5,5 @@ version: "1.1" unicode: "ea2a" --- - - - - - - - - - + diff --git a/src/_icons/article-off.svg b/src/_icons/article-off.svg index e4eb9ae3d..0cb2baf1b 100644 --- a/src/_icons/article-off.svg +++ b/src/_icons/article-off.svg @@ -4,9 +4,5 @@ unicode: "f3bf" version: "1.94" --- - - - - - + diff --git a/src/_icons/article.svg b/src/_icons/article.svg index bc1d26de0..479e4530a 100644 --- a/src/_icons/article.svg +++ b/src/_icons/article.svg @@ -4,8 +4,5 @@ version: "1.69" unicode: "f1e2" --- - - - - + diff --git a/src/_icons/aspect-ratio-off.svg b/src/_icons/aspect-ratio-off.svg index 7897fd686..856f9bc5e 100644 --- a/src/_icons/aspect-ratio-off.svg +++ b/src/_icons/aspect-ratio-off.svg @@ -5,8 +5,5 @@ version: "1.62" unicode: "f0af" --- - - - - + diff --git a/src/_icons/aspect-ratio.svg b/src/_icons/aspect-ratio.svg index 3367ddd31..09e407697 100644 --- a/src/_icons/aspect-ratio.svg +++ b/src/_icons/aspect-ratio.svg @@ -5,7 +5,5 @@ version: "1.27" unicode: "ed30" --- - - - + diff --git a/src/_icons/assembly-off.svg b/src/_icons/assembly-off.svg index 93c0dbfcd..d77422a78 100644 --- a/src/_icons/assembly-off.svg +++ b/src/_icons/assembly-off.svg @@ -4,7 +4,5 @@ unicode: "f3c0" version: "1.94" --- - - - + diff --git a/src/_icons/assembly.svg b/src/_icons/assembly.svg index f1f4b9785..2d5f2607f 100644 --- a/src/_icons/assembly.svg +++ b/src/_icons/assembly.svg @@ -4,6 +4,5 @@ version: "1.75" unicode: "f24d" --- - - + diff --git a/src/_icons/asset.svg b/src/_icons/asset.svg index 65bea92df..4920bdaff 100644 --- a/src/_icons/asset.svg +++ b/src/_icons/asset.svg @@ -4,10 +4,5 @@ version: "1.68" unicode: "f1ce" --- - - - - - - + diff --git a/src/_icons/asterisk-simple.svg b/src/_icons/asterisk-simple.svg index e672f8677..3db61c403 100644 --- a/src/_icons/asterisk-simple.svg +++ b/src/_icons/asterisk-simple.svg @@ -5,9 +5,5 @@ version: "1.51" unicode: "efd4" --- - - - - - + diff --git a/src/_icons/asterisk.svg b/src/_icons/asterisk.svg index c25b6fd71..89a9cb62b 100644 --- a/src/_icons/asterisk.svg +++ b/src/_icons/asterisk.svg @@ -5,10 +5,5 @@ version: "1.51" unicode: "efd5" --- - - - - - - + diff --git a/src/_icons/at-off.svg b/src/_icons/at-off.svg index ad9896332..5bdeb8c08 100644 --- a/src/_icons/at-off.svg +++ b/src/_icons/at-off.svg @@ -4,7 +4,5 @@ version: "1.62" unicode: "f0b0" --- - - - + diff --git a/src/_icons/at.svg b/src/_icons/at.svg index 11663245f..017c3bdbc 100644 --- a/src/_icons/at.svg +++ b/src/_icons/at.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea2b" --- - - + diff --git a/src/_icons/atom-2.svg b/src/_icons/atom-2.svg index 43f153c53..6a65bb28b 100644 --- a/src/_icons/atom-2.svg +++ b/src/_icons/atom-2.svg @@ -4,11 +4,5 @@ version: "1.7" unicode: "ebdf" --- - - - - - - - + diff --git a/src/_icons/atom-off.svg b/src/_icons/atom-off.svg index 75a487444..52399041e 100644 --- a/src/_icons/atom-off.svg +++ b/src/_icons/atom-off.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f0f9" --- - - - - + diff --git a/src/_icons/atom.svg b/src/_icons/atom.svg index 231ec2d2b..d29c0d1c1 100644 --- a/src/_icons/atom.svg +++ b/src/_icons/atom.svg @@ -4,7 +4,5 @@ version: "1.3" unicode: "eb79" --- - - - + diff --git a/src/_icons/augmented-reality-2.svg b/src/_icons/augmented-reality-2.svg index 0ee2384e1..5ff3c7233 100644 --- a/src/_icons/augmented-reality-2.svg +++ b/src/_icons/augmented-reality-2.svg @@ -4,9 +4,5 @@ unicode: "f37e" version: "1.91" --- - - - - - + diff --git a/src/_icons/augmented-reality-off.svg b/src/_icons/augmented-reality-off.svg index a5284d53c..2c543c674 100644 --- a/src/_icons/augmented-reality-off.svg +++ b/src/_icons/augmented-reality-off.svg @@ -4,12 +4,5 @@ unicode: "f3c1" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/augmented-reality.svg b/src/_icons/augmented-reality.svg index c6a5debc2..d1c36344a 100644 --- a/src/_icons/augmented-reality.svg +++ b/src/_icons/augmented-reality.svg @@ -4,11 +4,5 @@ version: "1.55" unicode: "f023" --- - - - - - - - + diff --git a/src/_icons/award-off.svg b/src/_icons/award-off.svg index b669de622..4b25e6128 100644 --- a/src/_icons/award-off.svg +++ b/src/_icons/award-off.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f0fa" --- - - - - + diff --git a/src/_icons/award.svg b/src/_icons/award.svg index fc59ebde5..b87b3c9b6 100644 --- a/src/_icons/award.svg +++ b/src/_icons/award.svg @@ -4,7 +4,5 @@ version: "1.1" unicode: "ea2c" --- - - - + diff --git a/src/_icons/axe.svg b/src/_icons/axe.svg index 1619510bc..541497d5a 100644 --- a/src/_icons/axe.svg +++ b/src/_icons/axe.svg @@ -4,6 +4,5 @@ version: "1.48" unicode: "ef9f" --- - - + diff --git a/src/_icons/axis-x.svg b/src/_icons/axis-x.svg index 6288ddcba..375514fbb 100644 --- a/src/_icons/axis-x.svg +++ b/src/_icons/axis-x.svg @@ -5,9 +5,5 @@ version: "1.43" unicode: "ef45" --- - - - - - + diff --git a/src/_icons/axis-y.svg b/src/_icons/axis-y.svg index 1eab35493..2ae2d1dc7 100644 --- a/src/_icons/axis-y.svg +++ b/src/_icons/axis-y.svg @@ -5,9 +5,5 @@ version: "1.43" unicode: "ef46" --- - - - - - + diff --git a/src/_icons/baby-bottle.svg b/src/_icons/baby-bottle.svg index 207bab818..d5418dc2d 100644 --- a/src/_icons/baby-bottle.svg +++ b/src/_icons/baby-bottle.svg @@ -3,7 +3,5 @@ unicode: "f5d2" version: "1.112" --- - - - + diff --git a/src/_icons/baby-carriage.svg b/src/_icons/baby-carriage.svg index 147c276b7..2673b15ba 100644 --- a/src/_icons/baby-carriage.svg +++ b/src/_icons/baby-carriage.svg @@ -4,10 +4,5 @@ version: "1.58" unicode: "f05d" --- - - - - - - + diff --git a/src/_icons/backhoe.svg b/src/_icons/backhoe.svg index bb83824da..627ed9c19 100644 --- a/src/_icons/backhoe.svg +++ b/src/_icons/backhoe.svg @@ -5,12 +5,5 @@ version: "1.34" unicode: "ed86" --- - - - - - - - - + diff --git a/src/_icons/backpack-off.svg b/src/_icons/backpack-off.svg index 72c12332c..16e5121cb 100644 --- a/src/_icons/backpack-off.svg +++ b/src/_icons/backpack-off.svg @@ -4,8 +4,5 @@ unicode: "f3c2" version: "1.94" --- - - - - + diff --git a/src/_icons/backpack.svg b/src/_icons/backpack.svg index 3403270bc..d61f2a6f8 100644 --- a/src/_icons/backpack.svg +++ b/src/_icons/backpack.svg @@ -4,8 +4,5 @@ version: "1.43" unicode: "ef47" --- - - - - + diff --git a/src/_icons/backspace.svg b/src/_icons/backspace.svg index 99ae884a3..e4dd240a9 100644 --- a/src/_icons/backspace.svg +++ b/src/_icons/backspace.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea2d" --- - - + diff --git a/src/_icons/badge-3d.svg b/src/_icons/badge-3d.svg index c864ed815..1bcca61c2 100644 --- a/src/_icons/badge-3d.svg +++ b/src/_icons/badge-3d.svg @@ -4,7 +4,5 @@ unicode: "f555" version: "1.106" --- - - - + diff --git a/src/_icons/badge-4k.svg b/src/_icons/badge-4k.svg index 24e191f8f..d963382c0 100644 --- a/src/_icons/badge-4k.svg +++ b/src/_icons/badge-4k.svg @@ -4,10 +4,5 @@ unicode: "f556" version: "1.106" --- - - - - - - + diff --git a/src/_icons/badge-8k.svg b/src/_icons/badge-8k.svg index 18a091a0f..eaaf14e8c 100644 --- a/src/_icons/badge-8k.svg +++ b/src/_icons/badge-8k.svg @@ -4,9 +4,5 @@ unicode: "f557" version: "1.106" --- - - - - - + diff --git a/src/_icons/badge-ad.svg b/src/_icons/badge-ad.svg index 3010ac8e0..d269dc918 100644 --- a/src/_icons/badge-ad.svg +++ b/src/_icons/badge-ad.svg @@ -4,8 +4,5 @@ unicode: "f558" version: "1.106" --- - - - - + diff --git a/src/_icons/badge-ar.svg b/src/_icons/badge-ar.svg index e49f0ee3c..f1a3df985 100644 --- a/src/_icons/badge-ar.svg +++ b/src/_icons/badge-ar.svg @@ -4,8 +4,5 @@ unicode: "f559" version: "1.106" --- - - - - + diff --git a/src/_icons/badge-cc.svg b/src/_icons/badge-cc.svg index fc441d6f8..8906627a5 100644 --- a/src/_icons/badge-cc.svg +++ b/src/_icons/badge-cc.svg @@ -4,7 +4,5 @@ unicode: "f55a" version: "1.106" --- - - - + diff --git a/src/_icons/badge-filled.svg b/src/_icons/badge-filled.svg new file mode 100644 index 000000000..ec73eedf0 --- /dev/null +++ b/src/_icons/badge-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f667" +--- + + + diff --git a/src/_icons/badge-hd.svg b/src/_icons/badge-hd.svg index 049f0879b..25aeeb933 100644 --- a/src/_icons/badge-hd.svg +++ b/src/_icons/badge-hd.svg @@ -4,9 +4,5 @@ unicode: "f55b" version: "1.106" --- - - - - - + diff --git a/src/_icons/badge-off.svg b/src/_icons/badge-off.svg index 5f68e8060..e3993eb8d 100644 --- a/src/_icons/badge-off.svg +++ b/src/_icons/badge-off.svg @@ -4,6 +4,5 @@ version: "1.65" unicode: "f0fb" --- - - + diff --git a/src/_icons/badge-sd.svg b/src/_icons/badge-sd.svg index c73d7c9d4..56f9bcbbe 100644 --- a/src/_icons/badge-sd.svg +++ b/src/_icons/badge-sd.svg @@ -4,7 +4,5 @@ unicode: "f55c" version: "1.106" --- - - - + diff --git a/src/_icons/badge-tm.svg b/src/_icons/badge-tm.svg index ca6966011..97632eae6 100644 --- a/src/_icons/badge-tm.svg +++ b/src/_icons/badge-tm.svg @@ -4,8 +4,5 @@ unicode: "f55d" version: "1.106" --- - - - - + diff --git a/src/_icons/badge-vo.svg b/src/_icons/badge-vo.svg index f4e1aa56e..dfee0eb2e 100644 --- a/src/_icons/badge-vo.svg +++ b/src/_icons/badge-vo.svg @@ -4,7 +4,5 @@ unicode: "f55e" version: "1.106" --- - - - + diff --git a/src/_icons/badge-vr.svg b/src/_icons/badge-vr.svg index d09ef0cd3..0bbdd5b72 100644 --- a/src/_icons/badge-vr.svg +++ b/src/_icons/badge-vr.svg @@ -4,7 +4,5 @@ unicode: "f55f" version: "1.106" --- - - - + diff --git a/src/_icons/badge-wc.svg b/src/_icons/badge-wc.svg index 3782c27a4..ec86774e5 100644 --- a/src/_icons/badge-wc.svg +++ b/src/_icons/badge-wc.svg @@ -4,7 +4,5 @@ unicode: "f560" version: "1.106" --- - - - + diff --git a/src/_icons/badges-off.svg b/src/_icons/badges-off.svg index b5303c7c7..12c337792 100644 --- a/src/_icons/badges-off.svg +++ b/src/_icons/badges-off.svg @@ -4,7 +4,5 @@ version: "1.65" unicode: "f0fc" --- - - - + diff --git a/src/_icons/badges.svg b/src/_icons/badges.svg index d4e09bf45..cb69cb6d9 100644 --- a/src/_icons/badges.svg +++ b/src/_icons/badges.svg @@ -4,6 +4,5 @@ version: "1.50" unicode: "efc3" --- - - + diff --git a/src/_icons/baguette.svg b/src/_icons/baguette.svg index d1146dccc..5cd01b8da 100644 --- a/src/_icons/baguette.svg +++ b/src/_icons/baguette.svg @@ -5,8 +5,5 @@ version: "1.93" unicode: "f3a5" --- - - - - + diff --git a/src/_icons/ball-american-football-off.svg b/src/_icons/ball-american-football-off.svg index 2c56e6065..e782bc936 100644 --- a/src/_icons/ball-american-football-off.svg +++ b/src/_icons/ball-american-football-off.svg @@ -5,10 +5,5 @@ unicode: "f3c3" version: "1.94" --- - - - - - - + diff --git a/src/_icons/ball-american-football.svg b/src/_icons/ball-american-football.svg index bed3ba2a7..3f9b122f4 100644 --- a/src/_icons/ball-american-football.svg +++ b/src/_icons/ball-american-football.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee04" --- - - - - - - + diff --git a/src/_icons/ball-baseball.svg b/src/_icons/ball-baseball.svg index 2267b9ba0..05bcd0491 100644 --- a/src/_icons/ball-baseball.svg +++ b/src/_icons/ball-baseball.svg @@ -5,13 +5,5 @@ version: "1.48" unicode: "efa0" --- - - - - - - - - - + diff --git a/src/_icons/ball-basketball.svg b/src/_icons/ball-basketball.svg index 9f95788d2..90e101aac 100644 --- a/src/_icons/ball-basketball.svg +++ b/src/_icons/ball-basketball.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ec28" --- - - - - - + diff --git a/src/_icons/ball-bowling.svg b/src/_icons/ball-bowling.svg index c11a518aa..19fa2bdd6 100644 --- a/src/_icons/ball-bowling.svg +++ b/src/_icons/ball-bowling.svg @@ -5,8 +5,5 @@ version: "1.10" unicode: "ec29" --- - - - - + diff --git a/src/_icons/ball-football-off.svg b/src/_icons/ball-football-off.svg index 2a6f69b60..95a12412d 100644 --- a/src/_icons/ball-football-off.svg +++ b/src/_icons/ball-football-off.svg @@ -5,12 +5,5 @@ version: "1.39" unicode: "ee05" --- - - - - - - - - + diff --git a/src/_icons/ball-football.svg b/src/_icons/ball-football.svg index c2fb3f211..2f3c52c2f 100644 --- a/src/_icons/ball-football.svg +++ b/src/_icons/ball-football.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee06" --- - - - + diff --git a/src/_icons/ball-tennis.svg b/src/_icons/ball-tennis.svg index 9d119d413..53d3d6142 100644 --- a/src/_icons/ball-tennis.svg +++ b/src/_icons/ball-tennis.svg @@ -5,7 +5,5 @@ version: "1.10" unicode: "ec2a" --- - - - + diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg index 2eaaa24c4..0ffe38390 100644 --- a/src/_icons/ball-volleyball.svg +++ b/src/_icons/ball-volleyball.svg @@ -5,11 +5,5 @@ version: "1.10" unicode: "ec2b" --- - - - - - - - + diff --git a/src/_icons/ballon-off.svg b/src/_icons/ballon-off.svg index 16f77d989..0076134a3 100644 --- a/src/_icons/ballon-off.svg +++ b/src/_icons/ballon-off.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f0fd" --- - - - - + diff --git a/src/_icons/ballon.svg b/src/_icons/ballon.svg index 1d3d57770..0c6797960 100644 --- a/src/_icons/ballon.svg +++ b/src/_icons/ballon.svg @@ -4,7 +4,5 @@ version: "1.42" unicode: "ef3a" --- - - - + diff --git a/src/_icons/ballpen-off.svg b/src/_icons/ballpen-off.svg index cd6d70f60..746581699 100644 --- a/src/_icons/ballpen-off.svg +++ b/src/_icons/ballpen-off.svg @@ -4,9 +4,5 @@ version: "1.62" unicode: "f0b1" --- - - - - - + diff --git a/src/_icons/ballpen.svg b/src/_icons/ballpen.svg index e4488a7c8..4908457fb 100644 --- a/src/_icons/ballpen.svg +++ b/src/_icons/ballpen.svg @@ -4,7 +4,5 @@ version: "1.59" unicode: "f06e" --- - - - + diff --git a/src/_icons/ban.svg b/src/_icons/ban.svg index 8af07d96c..4c5c1cd0d 100644 --- a/src/_icons/ban.svg +++ b/src/_icons/ban.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea2e" --- - - + diff --git a/src/_icons/bandage-off.svg b/src/_icons/bandage-off.svg index 5582dbcc9..788db52e4 100644 --- a/src/_icons/bandage-off.svg +++ b/src/_icons/bandage-off.svg @@ -5,8 +5,5 @@ unicode: "f3c4" version: "1.94" --- - - - - + diff --git a/src/_icons/bandage.svg b/src/_icons/bandage.svg index 8d0890636..005b93e78 100644 --- a/src/_icons/bandage.svg +++ b/src/_icons/bandage.svg @@ -5,9 +5,5 @@ category: Health unicode: "eb7a" --- - - - - - + diff --git a/src/_icons/barbell-off.svg b/src/_icons/barbell-off.svg index b6e39448e..fe3288354 100644 --- a/src/_icons/barbell-off.svg +++ b/src/_icons/barbell-off.svg @@ -5,12 +5,5 @@ version: "1.62" unicode: "f0b2" --- - - - - - - - - + diff --git a/src/_icons/barbell.svg b/src/_icons/barbell.svg index ad4cb0cc1..da63e1f98 100644 --- a/src/_icons/barbell.svg +++ b/src/_icons/barbell.svg @@ -5,11 +5,5 @@ version: "1.52" unicode: "eff0" --- - - - - - - - + diff --git a/src/_icons/barcode-off.svg b/src/_icons/barcode-off.svg index e211b12fa..786741a80 100644 --- a/src/_icons/barcode-off.svg +++ b/src/_icons/barcode-off.svg @@ -4,13 +4,5 @@ version: "1.62" unicode: "f0b3" --- - - - - - - - - - + diff --git a/src/_icons/barcode.svg b/src/_icons/barcode.svg index 67455f089..36597f363 100644 --- a/src/_icons/barcode.svg +++ b/src/_icons/barcode.svg @@ -4,12 +4,5 @@ version: "1.5" unicode: "ebc6" --- - - - - - - - - + diff --git a/src/_icons/barrel-off.svg b/src/_icons/barrel-off.svg index 2553ac9b6..80d56dcd5 100644 --- a/src/_icons/barrel-off.svg +++ b/src/_icons/barrel-off.svg @@ -4,10 +4,5 @@ version: "1.65" unicode: "f0fe" --- - - - - - - + diff --git a/src/_icons/barrel.svg b/src/_icons/barrel.svg index 7ae9e8c2b..8e7fc1167 100644 --- a/src/_icons/barrel.svg +++ b/src/_icons/barrel.svg @@ -4,9 +4,5 @@ version: "1.59" unicode: "f0b4" --- - - - - - + diff --git a/src/_icons/barrier-block-off.svg b/src/_icons/barrier-block-off.svg index 3fcff4cc0..bc0fa140c 100644 --- a/src/_icons/barrier-block-off.svg +++ b/src/_icons/barrier-block-off.svg @@ -4,17 +4,5 @@ version: "1.62" unicode: "f0b5" --- - - - - - - - - - - - - - + diff --git a/src/_icons/barrier-block.svg b/src/_icons/barrier-block.svg index 84ffd0c6d..90bcef347 100644 --- a/src/_icons/barrier-block.svg +++ b/src/_icons/barrier-block.svg @@ -4,14 +4,5 @@ version: "1.54" unicode: "f00e" --- - - - - - - - - - - + diff --git a/src/_icons/baseline.svg b/src/_icons/baseline.svg index d51d2511e..09ec6ef6d 100644 --- a/src/_icons/baseline.svg +++ b/src/_icons/baseline.svg @@ -5,7 +5,5 @@ category: Text unicode: "f024" --- - - - + diff --git a/src/_icons/basket-off.svg b/src/_icons/basket-off.svg index 3ce558d55..510bcf217 100644 --- a/src/_icons/basket-off.svg +++ b/src/_icons/basket-off.svg @@ -5,10 +5,5 @@ version: "1.62" unicode: "f0b6" --- - - - - - - + diff --git a/src/_icons/basket.svg b/src/_icons/basket.svg index be59f4229..1fc5b073d 100644 --- a/src/_icons/basket.svg +++ b/src/_icons/basket.svg @@ -5,7 +5,5 @@ version: "1.7" unicode: "ebe1" --- - - - + diff --git a/src/_icons/bat.svg b/src/_icons/bat.svg index 4ec2f0d82..fdaa9d3d5 100644 --- a/src/_icons/bat.svg +++ b/src/_icons/bat.svg @@ -5,6 +5,5 @@ version: "1.78" unicode: "f284" --- - - + diff --git a/src/_icons/bath-off.svg b/src/_icons/bath-off.svg index 9d3674611..1c3ae440c 100644 --- a/src/_icons/bath-off.svg +++ b/src/_icons/bath-off.svg @@ -4,9 +4,5 @@ version: "1.65" unicode: "f0ff" --- - - - - - + diff --git a/src/_icons/bath.svg b/src/_icons/bath.svg index 9b5f5aac8..5046c32f0 100644 --- a/src/_icons/bath.svg +++ b/src/_icons/bath.svg @@ -4,8 +4,5 @@ version: "1.43" unicode: "ef48" --- - - - - + diff --git a/src/_icons/battery-1.svg b/src/_icons/battery-1.svg index a7020191f..6deceb3c1 100644 --- a/src/_icons/battery-1.svg +++ b/src/_icons/battery-1.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea2f" --- - - + diff --git a/src/_icons/battery-2.svg b/src/_icons/battery-2.svg index 39f7a81b1..b88e37093 100644 --- a/src/_icons/battery-2.svg +++ b/src/_icons/battery-2.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea30" --- - - - + diff --git a/src/_icons/battery-3.svg b/src/_icons/battery-3.svg index 888d0edee..049753ce6 100644 --- a/src/_icons/battery-3.svg +++ b/src/_icons/battery-3.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea31" --- - - - - + diff --git a/src/_icons/battery-4.svg b/src/_icons/battery-4.svg index 26adc4988..5ec20e1a0 100644 --- a/src/_icons/battery-4.svg +++ b/src/_icons/battery-4.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "ea32" --- - - - - - + diff --git a/src/_icons/battery-automotive.svg b/src/_icons/battery-automotive.svg index eafe1b7d8..715ee5f5a 100644 --- a/src/_icons/battery-automotive.svg +++ b/src/_icons/battery-automotive.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee07" --- - - - - - - + diff --git a/src/_icons/battery-charging-2.svg b/src/_icons/battery-charging-2.svg index fe4780e14..db7c79f26 100644 --- a/src/_icons/battery-charging-2.svg +++ b/src/_icons/battery-charging-2.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef3b" --- - - - - - + diff --git a/src/_icons/battery-charging.svg b/src/_icons/battery-charging.svg index 30cf9d569..d24c0f127 100644 --- a/src/_icons/battery-charging.svg +++ b/src/_icons/battery-charging.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea33" --- - - - + diff --git a/src/_icons/battery-eco.svg b/src/_icons/battery-eco.svg index f80a733c4..6698420cb 100644 --- a/src/_icons/battery-eco.svg +++ b/src/_icons/battery-eco.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef3c" --- - - - + diff --git a/src/_icons/battery-filled.svg b/src/_icons/battery-filled.svg new file mode 100644 index 000000000..653aff745 --- /dev/null +++ b/src/_icons/battery-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f668" +--- + + + diff --git a/src/_icons/battery-off.svg b/src/_icons/battery-off.svg index 531301347..ed32fa66d 100644 --- a/src/_icons/battery-off.svg +++ b/src/_icons/battery-off.svg @@ -5,6 +5,5 @@ version: "1.25" unicode: "ed1c" --- - - + diff --git a/src/_icons/beach-off.svg b/src/_icons/beach-off.svg index e8e898b5d..b15aede4b 100644 --- a/src/_icons/beach-off.svg +++ b/src/_icons/beach-off.svg @@ -5,11 +5,5 @@ version: "1.62" unicode: "f0b7" --- - - - - - - - + diff --git a/src/_icons/beach.svg b/src/_icons/beach.svg index 351981cab..dcdd6a587 100644 --- a/src/_icons/beach.svg +++ b/src/_icons/beach.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef3d" --- - - - - - + diff --git a/src/_icons/bed-off.svg b/src/_icons/bed-off.svg index 6d2dc516c..eaf5382c0 100644 --- a/src/_icons/bed-off.svg +++ b/src/_icons/bed-off.svg @@ -5,11 +5,5 @@ version: "1.65" unicode: "f100" --- - - - - - - - + diff --git a/src/_icons/bed.svg b/src/_icons/bed.svg index 6c4c96d94..a0a7cb7ca 100644 --- a/src/_icons/bed.svg +++ b/src/_icons/bed.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb5c" --- - - + diff --git a/src/_icons/beer-off.svg b/src/_icons/beer-off.svg index 182717fe7..3bf2f5692 100644 --- a/src/_icons/beer-off.svg +++ b/src/_icons/beer-off.svg @@ -5,7 +5,5 @@ version: "1.65" unicode: "f101" --- - - - + diff --git a/src/_icons/beer.svg b/src/_icons/beer.svg index 4f6bf45ca..dbeaa14a2 100644 --- a/src/_icons/beer.svg +++ b/src/_icons/beer.svg @@ -5,6 +5,5 @@ version: "1.48" unicode: "efa1" --- - - + diff --git a/src/_icons/bell-filled.svg b/src/_icons/bell-filled.svg new file mode 100644 index 000000000..c5b22179c --- /dev/null +++ b/src/_icons/bell-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f669" +--- + + + + diff --git a/src/_icons/bell-minus.svg b/src/_icons/bell-minus.svg index 6aee14dc2..9f50c3d6c 100644 --- a/src/_icons/bell-minus.svg +++ b/src/_icons/bell-minus.svg @@ -5,7 +5,5 @@ version: "1.37" unicode: "ede2" --- - - - + diff --git a/src/_icons/bell-off.svg b/src/_icons/bell-off.svg index 7cdc581d7..7fc0c25da 100644 --- a/src/_icons/bell-off.svg +++ b/src/_icons/bell-off.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ece9" --- - - - + diff --git a/src/_icons/bell-plus.svg b/src/_icons/bell-plus.svg index 76f7e6a49..f9c01002f 100644 --- a/src/_icons/bell-plus.svg +++ b/src/_icons/bell-plus.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "ede3" --- - - - - + diff --git a/src/_icons/bell-ringing-2.svg b/src/_icons/bell-ringing-2.svg index beaad0b2e..a539600cb 100644 --- a/src/_icons/bell-ringing-2.svg +++ b/src/_icons/bell-ringing-2.svg @@ -5,6 +5,5 @@ version: "1.37" unicode: "ede4" --- - - + diff --git a/src/_icons/bell-ringing.svg b/src/_icons/bell-ringing.svg index 8110970b7..ae8c981ff 100644 --- a/src/_icons/bell-ringing.svg +++ b/src/_icons/bell-ringing.svg @@ -5,8 +5,5 @@ version: "1.24" unicode: "ed07" --- - - - - + diff --git a/src/_icons/bell-school.svg b/src/_icons/bell-school.svg index 448e560c0..8aad59015 100644 --- a/src/_icons/bell-school.svg +++ b/src/_icons/bell-school.svg @@ -4,9 +4,5 @@ version: "1.58" unicode: "f05e" --- - - - - - + diff --git a/src/_icons/bell-x.svg b/src/_icons/bell-x.svg index 0db012205..bc2e5208d 100644 --- a/src/_icons/bell-x.svg +++ b/src/_icons/bell-x.svg @@ -5,7 +5,5 @@ version: "1.37" unicode: "ede5" --- - - - + diff --git a/src/_icons/bell-z.svg b/src/_icons/bell-z.svg index 9f77a3c5d..1b28ad44b 100644 --- a/src/_icons/bell-z.svg +++ b/src/_icons/bell-z.svg @@ -4,7 +4,5 @@ version: "1.52" unicode: "eff1" --- - - - + diff --git a/src/_icons/bell.svg b/src/_icons/bell.svg index 9a23f1840..268bd8706 100644 --- a/src/_icons/bell.svg +++ b/src/_icons/bell.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea35" --- - - + diff --git a/src/_icons/bible.svg b/src/_icons/bible.svg index e78bb3ba5..4c37796c3 100644 --- a/src/_icons/bible.svg +++ b/src/_icons/bible.svg @@ -4,8 +4,5 @@ version: "1.50" unicode: "efc4" --- - - - - + diff --git a/src/_icons/bike-off.svg b/src/_icons/bike-off.svg index ca07d02ce..b7a13cd96 100644 --- a/src/_icons/bike-off.svg +++ b/src/_icons/bike-off.svg @@ -5,9 +5,5 @@ version: "1.62" unicode: "f0b8" --- - - - - - + diff --git a/src/_icons/bike.svg b/src/_icons/bike.svg index 6a65c7a0d..f45abc4fb 100644 --- a/src/_icons/bike.svg +++ b/src/_icons/bike.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea36" --- - - - - + diff --git a/src/_icons/binary-off.svg b/src/_icons/binary-off.svg index 7a74df3c3..76b49df89 100644 --- a/src/_icons/binary-off.svg +++ b/src/_icons/binary-off.svg @@ -4,11 +4,5 @@ unicode: "f3c5" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/binary-tree-2.svg b/src/_icons/binary-tree-2.svg index 1f95d0238..3a802b089 100644 --- a/src/_icons/binary-tree-2.svg +++ b/src/_icons/binary-tree-2.svg @@ -3,11 +3,5 @@ unicode: "f5d3" version: "1.112" --- - - - - - - - + diff --git a/src/_icons/binary-tree.svg b/src/_icons/binary-tree.svg index be5e5b996..05845ff26 100644 --- a/src/_icons/binary-tree.svg +++ b/src/_icons/binary-tree.svg @@ -3,13 +3,5 @@ unicode: "f5d4" version: "1.112" --- - - - - - - - - - + diff --git a/src/_icons/binary.svg b/src/_icons/binary.svg index 72ff9590f..fcc887483 100644 --- a/src/_icons/binary.svg +++ b/src/_icons/binary.svg @@ -4,8 +4,5 @@ version: "1.39" unicode: "ee08" --- - - - - + diff --git a/src/_icons/biohazard-off.svg b/src/_icons/biohazard-off.svg index 5a74b7afb..a3df396c6 100644 --- a/src/_icons/biohazard-off.svg +++ b/src/_icons/biohazard-off.svg @@ -5,12 +5,5 @@ version: "1.63" unicode: "f0b9" --- - - - - - - - - + diff --git a/src/_icons/biohazard.svg b/src/_icons/biohazard.svg index fd8667649..ef14fa3a9 100644 --- a/src/_icons/biohazard.svg +++ b/src/_icons/biohazard.svg @@ -5,6 +5,5 @@ version: "1.18" unicode: "ecb8" --- - - + diff --git a/src/_icons/blade.svg b/src/_icons/blade.svg index 1c7446b1b..3b80b2e58 100644 --- a/src/_icons/blade.svg +++ b/src/_icons/blade.svg @@ -4,10 +4,5 @@ unicode: "f4bd" version: "1.98" --- - - - - - - + diff --git a/src/_icons/bleach-chlorine.svg b/src/_icons/bleach-chlorine.svg index ab5e78763..795e0d001 100644 --- a/src/_icons/bleach-chlorine.svg +++ b/src/_icons/bleach-chlorine.svg @@ -5,7 +5,5 @@ unicode: "f2f0" version: "1.84" --- - - - + diff --git a/src/_icons/bleach-no-chlorine.svg b/src/_icons/bleach-no-chlorine.svg index f4d315431..7be383fdb 100644 --- a/src/_icons/bleach-no-chlorine.svg +++ b/src/_icons/bleach-no-chlorine.svg @@ -5,7 +5,5 @@ unicode: "f2f1" version: "1.84" --- - - - + diff --git a/src/_icons/bleach-off.svg b/src/_icons/bleach-off.svg index 41888f7d9..6dea86a4a 100644 --- a/src/_icons/bleach-off.svg +++ b/src/_icons/bleach-off.svg @@ -5,6 +5,5 @@ unicode: "f2f2" version: "1.84" --- - - + diff --git a/src/_icons/blockquote.svg b/src/_icons/blockquote.svg index 465cecc5e..cf44f2331 100644 --- a/src/_icons/blockquote.svg +++ b/src/_icons/blockquote.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee09" --- - - - - - - + diff --git a/src/_icons/bluetooth-connected.svg b/src/_icons/bluetooth-connected.svg index 9b137bb10..f07675e46 100644 --- a/src/_icons/bluetooth-connected.svg +++ b/src/_icons/bluetooth-connected.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ecea" --- - - - + diff --git a/src/_icons/bluetooth-off.svg b/src/_icons/bluetooth-off.svg index e2c5673fb..49325e282 100644 --- a/src/_icons/bluetooth-off.svg +++ b/src/_icons/bluetooth-off.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "eceb" --- - - + diff --git a/src/_icons/bluetooth-x.svg b/src/_icons/bluetooth-x.svg index 169b76d6c..7170d6eb2 100644 --- a/src/_icons/bluetooth-x.svg +++ b/src/_icons/bluetooth-x.svg @@ -4,7 +4,5 @@ version: "1.60" unicode: "f081" --- - - - + diff --git a/src/_icons/bluetooth.svg b/src/_icons/bluetooth.svg index 7561d547d..d6d3b705d 100644 --- a/src/_icons/bluetooth.svg +++ b/src/_icons/bluetooth.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea37" --- - + diff --git a/src/_icons/blur-off.svg b/src/_icons/blur-off.svg index d1c7b5021..b3750c01e 100644 --- a/src/_icons/blur-off.svg +++ b/src/_icons/blur-off.svg @@ -5,12 +5,5 @@ unicode: "f3c6" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/blur.svg b/src/_icons/blur.svg index e2293b047..a81947f17 100644 --- a/src/_icons/blur.svg +++ b/src/_icons/blur.svg @@ -5,11 +5,5 @@ version: "1.47" unicode: "ef8c" --- - - - - - - - + diff --git a/src/_icons/bmp.svg b/src/_icons/bmp.svg index ce835e08b..5bcd643fa 100644 --- a/src/_icons/bmp.svg +++ b/src/_icons/bmp.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3a6" --- - - - + diff --git a/src/_icons/bold-off.svg b/src/_icons/bold-off.svg index 43dde3c03..e10c479a5 100644 --- a/src/_icons/bold-off.svg +++ b/src/_icons/bold-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0ba" --- - - - + diff --git a/src/_icons/bold.svg b/src/_icons/bold.svg index cb6de3ebc..21846ddb7 100644 --- a/src/_icons/bold.svg +++ b/src/_icons/bold.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb7b" --- - - + diff --git a/src/_icons/bolt-off.svg b/src/_icons/bolt-off.svg index 1d6858e5c..6f64013eb 100644 --- a/src/_icons/bolt-off.svg +++ b/src/_icons/bolt-off.svg @@ -4,6 +4,5 @@ version: "1.22" unicode: "ecec" --- - - + diff --git a/src/_icons/bolt.svg b/src/_icons/bolt.svg index b6762d768..9cce01800 100644 --- a/src/_icons/bolt.svg +++ b/src/_icons/bolt.svg @@ -4,5 +4,5 @@ version: "1.0" unicode: "ea38" --- - + diff --git a/src/_icons/bomb.svg b/src/_icons/bomb.svg index 07b74ea6d..e576facc3 100644 --- a/src/_icons/bomb.svg +++ b/src/_icons/bomb.svg @@ -4,7 +4,5 @@ unicode: "f59c" version: "1.110" --- - - - + diff --git a/src/_icons/bone-off.svg b/src/_icons/bone-off.svg index 9430bf3f0..0b02121db 100644 --- a/src/_icons/bone-off.svg +++ b/src/_icons/bone-off.svg @@ -5,6 +5,5 @@ version: "1.63" unicode: "f0bb" --- - - + diff --git a/src/_icons/bone.svg b/src/_icons/bone.svg index 6ce8caeab..880ab41fd 100644 --- a/src/_icons/bone.svg +++ b/src/_icons/bone.svg @@ -5,5 +5,5 @@ version: "1.35" unicode: "edb8" --- - + diff --git a/src/_icons/bong-off.svg b/src/_icons/bong-off.svg index 5df077593..2c67aca0f 100644 --- a/src/_icons/bong-off.svg +++ b/src/_icons/bong-off.svg @@ -4,8 +4,5 @@ unicode: "f3c7" version: "1.94" --- - - - - + diff --git a/src/_icons/bong.svg b/src/_icons/bong.svg index c880edf30..7a8eb87f7 100644 --- a/src/_icons/bong.svg +++ b/src/_icons/bong.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3a7" --- - - - + diff --git a/src/_icons/book-2.svg b/src/_icons/book-2.svg index ab69ef998..6978b7267 100644 --- a/src/_icons/book-2.svg +++ b/src/_icons/book-2.svg @@ -5,7 +5,5 @@ version: "1.50" unicode: "efc5" --- - - - + diff --git a/src/_icons/book-download.svg b/src/_icons/book-download.svg index 929d751b7..7e8fd3929 100644 --- a/src/_icons/book-download.svg +++ b/src/_icons/book-download.svg @@ -5,8 +5,5 @@ category: Document unicode: "f070" --- - - - - + diff --git a/src/_icons/book-off.svg b/src/_icons/book-off.svg index 4242d7765..2dd6fc1f5 100644 --- a/src/_icons/book-off.svg +++ b/src/_icons/book-off.svg @@ -5,10 +5,5 @@ version: "1.63" unicode: "f0bc" --- - - - - - - + diff --git a/src/_icons/book-upload.svg b/src/_icons/book-upload.svg index 47ad7f410..c4d71bb37 100644 --- a/src/_icons/book-upload.svg +++ b/src/_icons/book-upload.svg @@ -5,8 +5,5 @@ category: Document unicode: "f071" --- - - - - + diff --git a/src/_icons/book.svg b/src/_icons/book.svg index d6ecf9da2..f857403a1 100644 --- a/src/_icons/book.svg +++ b/src/_icons/book.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "ea39" --- - - - - - + diff --git a/src/_icons/bookmark-off.svg b/src/_icons/bookmark-off.svg index e76252194..29eee19aa 100644 --- a/src/_icons/bookmark-off.svg +++ b/src/_icons/bookmark-off.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "eced" --- - - + diff --git a/src/_icons/bookmarks-off.svg b/src/_icons/bookmarks-off.svg index e0d5c555f..f317e7bed 100644 --- a/src/_icons/bookmarks-off.svg +++ b/src/_icons/bookmarks-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0bd" --- - - - + diff --git a/src/_icons/bookmarks.svg b/src/_icons/bookmarks.svg index 1f6552560..50af279c3 100644 --- a/src/_icons/bookmarks.svg +++ b/src/_icons/bookmarks.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed08" --- - - + diff --git a/src/_icons/books-off.svg b/src/_icons/books-off.svg index a4fcabfac..916ab30d9 100644 --- a/src/_icons/books-off.svg +++ b/src/_icons/books-off.svg @@ -5,15 +5,5 @@ version: "1.63" unicode: "f0be" --- - - - - - - - - - - - + diff --git a/src/_icons/books.svg b/src/_icons/books.svg index b25676f7e..778eff1e4 100644 --- a/src/_icons/books.svg +++ b/src/_icons/books.svg @@ -5,11 +5,5 @@ version: "1.52" unicode: "eff2" --- - - - - - - - + diff --git a/src/_icons/border-all.svg b/src/_icons/border-all.svg index c792051dd..7b86ef751 100644 --- a/src/_icons/border-all.svg +++ b/src/_icons/border-all.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea3b" --- - - - + diff --git a/src/_icons/border-bottom.svg b/src/_icons/border-bottom.svg index 8dd303db0..d4698d384 100644 --- a/src/_icons/border-bottom.svg +++ b/src/_icons/border-bottom.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea3c" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-horizontal.svg b/src/_icons/border-horizontal.svg index ede5f12c7..1541e599d 100644 --- a/src/_icons/border-horizontal.svg +++ b/src/_icons/border-horizontal.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea3d" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-inner.svg b/src/_icons/border-inner.svg index d2d9bc0e4..939d1fc03 100644 --- a/src/_icons/border-inner.svg +++ b/src/_icons/border-inner.svg @@ -5,18 +5,5 @@ version: "1.0" unicode: "ea3e" --- - - - - - - - - - - - - - - + diff --git a/src/_icons/border-left.svg b/src/_icons/border-left.svg index b0c4d8f84..67db549be 100644 --- a/src/_icons/border-left.svg +++ b/src/_icons/border-left.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea3f" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-none.svg b/src/_icons/border-none.svg index 4f16db579..2e5be5730 100644 --- a/src/_icons/border-none.svg +++ b/src/_icons/border-none.svg @@ -5,25 +5,5 @@ version: "1.0" unicode: "ea40" --- - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-outer.svg b/src/_icons/border-outer.svg index d0d7a557f..c50654292 100644 --- a/src/_icons/border-outer.svg +++ b/src/_icons/border-outer.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "ea41" --- - - - - - - + diff --git a/src/_icons/border-radius.svg b/src/_icons/border-radius.svg index 40bbed0bc..4cc856ab7 100644 --- a/src/_icons/border-radius.svg +++ b/src/_icons/border-radius.svg @@ -5,16 +5,5 @@ version: "1.3" unicode: "eb7c" --- - - - - - - - - - - - - + diff --git a/src/_icons/border-right.svg b/src/_icons/border-right.svg index 86e9ce087..b46c72da2 100644 --- a/src/_icons/border-right.svg +++ b/src/_icons/border-right.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea42" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-style-2.svg b/src/_icons/border-style-2.svg index 83536ace7..f8014fa2b 100644 --- a/src/_icons/border-style-2.svg +++ b/src/_icons/border-style-2.svg @@ -5,13 +5,5 @@ version: "1.41" unicode: "ef22" --- - - - - - - - - - + diff --git a/src/_icons/border-style.svg b/src/_icons/border-style.svg index 89c51efcf..faff0cf5b 100644 --- a/src/_icons/border-style.svg +++ b/src/_icons/border-style.svg @@ -5,12 +5,5 @@ version: "1.39" unicode: "ee0a" --- - - - - - - - - + diff --git a/src/_icons/border-top.svg b/src/_icons/border-top.svg index b48875941..506baa3ff 100644 --- a/src/_icons/border-top.svg +++ b/src/_icons/border-top.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea43" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/border-vertical.svg b/src/_icons/border-vertical.svg index b4eafe184..bc13509e0 100644 --- a/src/_icons/border-vertical.svg +++ b/src/_icons/border-vertical.svg @@ -5,21 +5,5 @@ version: "1.0" unicode: "ea44" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/bottle-off.svg b/src/_icons/bottle-off.svg index a3c306761..5289e8820 100644 --- a/src/_icons/bottle-off.svg +++ b/src/_icons/bottle-off.svg @@ -5,8 +5,5 @@ unicode: "f3c8" version: "1.94" --- - - - - + diff --git a/src/_icons/bottle.svg b/src/_icons/bottle.svg index b509dbcaf..3e882f699 100644 --- a/src/_icons/bottle.svg +++ b/src/_icons/bottle.svg @@ -5,7 +5,5 @@ version: "1.40" unicode: "ef0b" --- - - - + diff --git a/src/_icons/bounce-left.svg b/src/_icons/bounce-left.svg index 7af6ff7b8..4146b7c92 100644 --- a/src/_icons/bounce-left.svg +++ b/src/_icons/bounce-left.svg @@ -5,6 +5,5 @@ unicode: "f59d" version: "1.110" --- - - + diff --git a/src/_icons/bounce-right.svg b/src/_icons/bounce-right.svg index a9e241821..0b71197a0 100644 --- a/src/_icons/bounce-right.svg +++ b/src/_icons/bounce-right.svg @@ -5,6 +5,5 @@ unicode: "f59e" version: "1.110" --- - - + diff --git a/src/_icons/bow.svg b/src/_icons/bow.svg index f55fbee6a..bd3659cdb 100644 --- a/src/_icons/bow.svg +++ b/src/_icons/bow.svg @@ -5,8 +5,5 @@ version: "1.61" unicode: "f096" --- - - - - + diff --git a/src/_icons/box-align-bottom-left.svg b/src/_icons/box-align-bottom-left.svg index 187bdac8d..a1a6739ed 100644 --- a/src/_icons/box-align-bottom-left.svg +++ b/src/_icons/box-align-bottom-left.svg @@ -5,14 +5,5 @@ version: "1.82" unicode: "f2ce" --- - - - - - - - - - - + diff --git a/src/_icons/box-align-bottom-right.svg b/src/_icons/box-align-bottom-right.svg index d28a5be76..6df375626 100644 --- a/src/_icons/box-align-bottom-right.svg +++ b/src/_icons/box-align-bottom-right.svg @@ -5,14 +5,5 @@ version: "1.82" unicode: "f2cf" --- - - - - - - - - - - + diff --git a/src/_icons/box-align-bottom.svg b/src/_icons/box-align-bottom.svg index 9531749a2..f163e68f5 100644 --- a/src/_icons/box-align-bottom.svg +++ b/src/_icons/box-align-bottom.svg @@ -5,11 +5,5 @@ version: "1.80" unicode: "f2a8" --- - - - - - - - + diff --git a/src/_icons/box-align-left.svg b/src/_icons/box-align-left.svg index 7e6835694..eee43a123 100644 --- a/src/_icons/box-align-left.svg +++ b/src/_icons/box-align-left.svg @@ -5,11 +5,5 @@ version: "1.80" unicode: "f2a9" --- - - - - - - - + diff --git a/src/_icons/box-align-right.svg b/src/_icons/box-align-right.svg index a5d18fdf8..ecfec14ef 100644 --- a/src/_icons/box-align-right.svg +++ b/src/_icons/box-align-right.svg @@ -5,11 +5,5 @@ version: "1.80" unicode: "f2aa" --- - - - - - - - + diff --git a/src/_icons/box-align-top-left.svg b/src/_icons/box-align-top-left.svg index c6f726fa1..a018d7ec0 100644 --- a/src/_icons/box-align-top-left.svg +++ b/src/_icons/box-align-top-left.svg @@ -5,14 +5,5 @@ version: "1.82" unicode: "f2d0" --- - - - - - - - - - - + diff --git a/src/_icons/box-align-top-right.svg b/src/_icons/box-align-top-right.svg index 373cff8c5..e8702547a 100644 --- a/src/_icons/box-align-top-right.svg +++ b/src/_icons/box-align-top-right.svg @@ -5,14 +5,5 @@ version: "1.82" unicode: "f2d1" --- - - - - - - - - - - + diff --git a/src/_icons/box-align-top.svg b/src/_icons/box-align-top.svg index d6f1e9c5c..f2acfba20 100644 --- a/src/_icons/box-align-top.svg +++ b/src/_icons/box-align-top.svg @@ -5,11 +5,5 @@ version: "1.80" unicode: "f2ab" --- - - - - - - - + diff --git a/src/_icons/box-margin.svg b/src/_icons/box-margin.svg index caa5fb50d..1d95c90d8 100644 --- a/src/_icons/box-margin.svg +++ b/src/_icons/box-margin.svg @@ -5,21 +5,5 @@ version: "1.39" unicode: "ee0b" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/box-model-2-off.svg b/src/_icons/box-model-2-off.svg index 954ec29e8..3875db3fe 100644 --- a/src/_icons/box-model-2-off.svg +++ b/src/_icons/box-model-2-off.svg @@ -5,7 +5,5 @@ unicode: "f3c9" version: "1.94" --- - - - + diff --git a/src/_icons/box-model-2.svg b/src/_icons/box-model-2.svg index 6807d6f2d..9a77622c3 100644 --- a/src/_icons/box-model-2.svg +++ b/src/_icons/box-model-2.svg @@ -5,6 +5,5 @@ version: "1.41" unicode: "ef23" --- - - + diff --git a/src/_icons/box-model-off.svg b/src/_icons/box-model-off.svg index d7275a427..6fa6ee296 100644 --- a/src/_icons/box-model-off.svg +++ b/src/_icons/box-model-off.svg @@ -5,11 +5,5 @@ unicode: "f3ca" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/box-model.svg b/src/_icons/box-model.svg index 2e77e2d83..8ab64d5ff 100644 --- a/src/_icons/box-model.svg +++ b/src/_icons/box-model.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee0c" --- - - - - - - + diff --git a/src/_icons/box-multiple-0.svg b/src/_icons/box-multiple-0.svg index f9acfcd53..add4dc400 100644 --- a/src/_icons/box-multiple-0.svg +++ b/src/_icons/box-multiple-0.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee0d" --- - - - + diff --git a/src/_icons/box-multiple-1.svg b/src/_icons/box-multiple-1.svg index 3354e1138..e32ae843b 100644 --- a/src/_icons/box-multiple-1.svg +++ b/src/_icons/box-multiple-1.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee0e" --- - - - + diff --git a/src/_icons/box-multiple-2.svg b/src/_icons/box-multiple-2.svg index 93bb4dd7b..0fb2f3d00 100644 --- a/src/_icons/box-multiple-2.svg +++ b/src/_icons/box-multiple-2.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee0f" --- - - - + diff --git a/src/_icons/box-multiple-3.svg b/src/_icons/box-multiple-3.svg index bb877bbfd..4f979e004 100644 --- a/src/_icons/box-multiple-3.svg +++ b/src/_icons/box-multiple-3.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee10" --- - - - - + diff --git a/src/_icons/box-multiple-4.svg b/src/_icons/box-multiple-4.svg index da6e0d38d..e6bdf395f 100644 --- a/src/_icons/box-multiple-4.svg +++ b/src/_icons/box-multiple-4.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee11" --- - - - + diff --git a/src/_icons/box-multiple-5.svg b/src/_icons/box-multiple-5.svg index d39634058..08f1a23aa 100644 --- a/src/_icons/box-multiple-5.svg +++ b/src/_icons/box-multiple-5.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee12" --- - - - + diff --git a/src/_icons/box-multiple-6.svg b/src/_icons/box-multiple-6.svg index 465a4c1af..b66db9f59 100644 --- a/src/_icons/box-multiple-6.svg +++ b/src/_icons/box-multiple-6.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee13" --- - - - - + diff --git a/src/_icons/box-multiple-7.svg b/src/_icons/box-multiple-7.svg index a22e461e3..3446ca0a3 100644 --- a/src/_icons/box-multiple-7.svg +++ b/src/_icons/box-multiple-7.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee14" --- - - - + diff --git a/src/_icons/box-multiple-8.svg b/src/_icons/box-multiple-8.svg index 238cf131c..44e997112 100644 --- a/src/_icons/box-multiple-8.svg +++ b/src/_icons/box-multiple-8.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee15" --- - - - - + diff --git a/src/_icons/box-multiple-9.svg b/src/_icons/box-multiple-9.svg index b06723580..fab08a73e 100644 --- a/src/_icons/box-multiple-9.svg +++ b/src/_icons/box-multiple-9.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee16" --- - - - - + diff --git a/src/_icons/box-multiple.svg b/src/_icons/box-multiple.svg index 6b5586242..7669ea8fc 100644 --- a/src/_icons/box-multiple.svg +++ b/src/_icons/box-multiple.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "ee17" --- - - + diff --git a/src/_icons/box-off.svg b/src/_icons/box-off.svg index bf47676be..7656c8850 100644 --- a/src/_icons/box-off.svg +++ b/src/_icons/box-off.svg @@ -4,9 +4,5 @@ version: "1.65" unicode: "f102" --- - - - - - + diff --git a/src/_icons/box-padding.svg b/src/_icons/box-padding.svg index 270860ee6..cd9a5f7ea 100644 --- a/src/_icons/box-padding.svg +++ b/src/_icons/box-padding.svg @@ -5,13 +5,5 @@ version: "1.39" unicode: "ee18" --- - - - - - - - - - + diff --git a/src/_icons/box-seam.svg b/src/_icons/box-seam.svg index 75a42d443..109285e7e 100644 --- a/src/_icons/box-seam.svg +++ b/src/_icons/box-seam.svg @@ -4,9 +4,5 @@ unicode: "f561" version: "1.106" --- - - - - - + diff --git a/src/_icons/box.svg b/src/_icons/box.svg index 0241c553e..a688c4381 100644 --- a/src/_icons/box.svg +++ b/src/_icons/box.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "ea45" --- - - - - + diff --git a/src/_icons/braces-off.svg b/src/_icons/braces-off.svg index 81cd78cca..35153c548 100644 --- a/src/_icons/braces-off.svg +++ b/src/_icons/braces-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0bf" --- - - - + diff --git a/src/_icons/braces.svg b/src/_icons/braces.svg index 5369c5319..c61254ab7 100644 --- a/src/_icons/braces.svg +++ b/src/_icons/braces.svg @@ -5,6 +5,5 @@ version: "1.6" unicode: "ebcc" --- - - + diff --git a/src/_icons/brackets-contain-end.svg b/src/_icons/brackets-contain-end.svg index 4c80ae3a6..16d307837 100644 --- a/src/_icons/brackets-contain-end.svg +++ b/src/_icons/brackets-contain-end.svg @@ -5,8 +5,5 @@ version: "1.69" unicode: "f1e3" --- - - - - + diff --git a/src/_icons/brackets-contain-start.svg b/src/_icons/brackets-contain-start.svg index 140464862..73320d642 100644 --- a/src/_icons/brackets-contain-start.svg +++ b/src/_icons/brackets-contain-start.svg @@ -5,8 +5,5 @@ version: "1.69" unicode: "f1e4" --- - - - - + diff --git a/src/_icons/brackets-contain.svg b/src/_icons/brackets-contain.svg index 751052067..b6c9f47c8 100644 --- a/src/_icons/brackets-contain.svg +++ b/src/_icons/brackets-contain.svg @@ -5,9 +5,5 @@ version: "1.69" unicode: "f1e5" --- - - - - - + diff --git a/src/_icons/brackets-off.svg b/src/_icons/brackets-off.svg index bbaa0f769..24c2693fa 100644 --- a/src/_icons/brackets-off.svg +++ b/src/_icons/brackets-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0c0" --- - - - + diff --git a/src/_icons/brackets.svg b/src/_icons/brackets.svg index 600d9d6fc..a4561ac64 100644 --- a/src/_icons/brackets.svg +++ b/src/_icons/brackets.svg @@ -5,6 +5,5 @@ version: "1.6" unicode: "ebcd" --- - - + diff --git a/src/_icons/braile.svg b/src/_icons/braile.svg index 53a96edf8..1894f1515 100644 --- a/src/_icons/braile.svg +++ b/src/_icons/braile.svg @@ -4,10 +4,5 @@ version: "1.105" unicode: "f545" --- - - - - - - + diff --git a/src/_icons/brain.svg b/src/_icons/brain.svg index d375758ae..9dbf1e853 100644 --- a/src/_icons/brain.svg +++ b/src/_icons/brain.svg @@ -4,10 +4,5 @@ unicode: "f59f" version: "1.110" --- - - - - - - + diff --git a/src/_icons/brand-4chan.svg b/src/_icons/brand-4chan.svg index e375cd612..d4e756a95 100644 --- a/src/_icons/brand-4chan.svg +++ b/src/_icons/brand-4chan.svg @@ -5,9 +5,5 @@ unicode: "f494" version: "1.96" --- - - - - - + diff --git a/src/_icons/brand-abstract.svg b/src/_icons/brand-abstract.svg index 2a37e4254..5cd90c275 100644 --- a/src/_icons/brand-abstract.svg +++ b/src/_icons/brand-abstract.svg @@ -5,7 +5,5 @@ unicode: "f495" version: "1.96" --- - - - + diff --git a/src/_icons/brand-adobe.svg b/src/_icons/brand-adobe.svg index 83d77ae9a..a7d22c077 100644 --- a/src/_icons/brand-adobe.svg +++ b/src/_icons/brand-adobe.svg @@ -5,5 +5,5 @@ version: "1.64" unicode: "f0dc" --- - + diff --git a/src/_icons/brand-adonis-js.svg b/src/_icons/brand-adonis-js.svg index 91feaeaa3..5ee960778 100644 --- a/src/_icons/brand-adonis-js.svg +++ b/src/_icons/brand-adonis-js.svg @@ -5,6 +5,5 @@ unicode: "f496" version: "1.96" --- - - + diff --git a/src/_icons/brand-airtable.svg b/src/_icons/brand-airtable.svg index 5751d8306..8014877f6 100644 --- a/src/_icons/brand-airtable.svg +++ b/src/_icons/brand-airtable.svg @@ -5,7 +5,5 @@ version: "1.45" unicode: "ef6a" --- - - - + diff --git a/src/_icons/brand-algolia.svg b/src/_icons/brand-algolia.svg index 85bb22657..174e59732 100644 --- a/src/_icons/brand-algolia.svg +++ b/src/_icons/brand-algolia.svg @@ -5,9 +5,5 @@ unicode: "f390" version: "1.92" --- - - - - - + diff --git a/src/_icons/brand-alpine-js.svg b/src/_icons/brand-alpine-js.svg index d23adc5cd..faab32a6a 100644 --- a/src/_icons/brand-alpine-js.svg +++ b/src/_icons/brand-alpine-js.svg @@ -5,6 +5,5 @@ unicode: "f324" version: "1.86" --- - - + diff --git a/src/_icons/brand-amazon.svg b/src/_icons/brand-amazon.svg index b785c0ed9..a2b988860 100644 --- a/src/_icons/brand-amazon.svg +++ b/src/_icons/brand-amazon.svg @@ -5,6 +5,5 @@ version: "1.73" unicode: "f230" --- - - + diff --git a/src/_icons/brand-amd.svg b/src/_icons/brand-amd.svg index 12b47407b..42e8a3321 100644 --- a/src/_icons/brand-amd.svg +++ b/src/_icons/brand-amd.svg @@ -4,6 +4,5 @@ unicode: "f653" version: "1.119" --- - - + diff --git a/src/_icons/brand-amigo.svg b/src/_icons/brand-amigo.svg index 7259615b7..3baac39f0 100644 --- a/src/_icons/brand-amigo.svg +++ b/src/_icons/brand-amigo.svg @@ -4,6 +4,5 @@ unicode: "f5f9" version: "1.114" --- - - + diff --git a/src/_icons/brand-amongus.svg b/src/_icons/brand-amongus.svg index f919a7dc1..cabf60a15 100644 --- a/src/_icons/brand-amongus.svg +++ b/src/_icons/brand-amongus.svg @@ -5,7 +5,5 @@ version: "1.71" unicode: "f205" --- - - - + diff --git a/src/_icons/brand-android.svg b/src/_icons/brand-android.svg index 5bcaf1aeb..b14621ac8 100644 --- a/src/_icons/brand-android.svg +++ b/src/_icons/brand-android.svg @@ -5,11 +5,5 @@ version: "1.9" unicode: "ec16" --- - - - - - - - + diff --git a/src/_icons/brand-angular.svg b/src/_icons/brand-angular.svg index 868553eaa..8065c2808 100644 --- a/src/_icons/brand-angular.svg +++ b/src/_icons/brand-angular.svg @@ -5,7 +5,5 @@ version: "1.45" unicode: "ef6b" --- - - - + diff --git a/src/_icons/brand-ao3.svg b/src/_icons/brand-ao3.svg index 7957149af..cf979a419 100644 --- a/src/_icons/brand-ao3.svg +++ b/src/_icons/brand-ao3.svg @@ -4,7 +4,5 @@ unicode: "f5e8" version: "1.113" --- - - - + diff --git a/src/_icons/brand-appgallery.svg b/src/_icons/brand-appgallery.svg index d581f095a..6bd41869f 100644 --- a/src/_icons/brand-appgallery.svg +++ b/src/_icons/brand-appgallery.svg @@ -5,6 +5,5 @@ version: "1.73" unicode: "f231" --- - - + diff --git a/src/_icons/brand-apple-arcade.svg b/src/_icons/brand-apple-arcade.svg index 12cbeb183..a189440a8 100644 --- a/src/_icons/brand-apple-arcade.svg +++ b/src/_icons/brand-apple-arcade.svg @@ -5,8 +5,5 @@ version: "1.32" unicode: "ed69" --- - - - - + diff --git a/src/_icons/brand-apple-podcast.svg b/src/_icons/brand-apple-podcast.svg index 012c092c1..0e67f6ce5 100644 --- a/src/_icons/brand-apple-podcast.svg +++ b/src/_icons/brand-apple-podcast.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1e6" --- - - - + diff --git a/src/_icons/brand-apple.svg b/src/_icons/brand-apple.svg index 075ac7d08..956095fb3 100644 --- a/src/_icons/brand-apple.svg +++ b/src/_icons/brand-apple.svg @@ -5,6 +5,5 @@ version: "1.9" unicode: "ec17" --- - - + diff --git a/src/_icons/brand-appstore.svg b/src/_icons/brand-appstore.svg index fa88d2066..1a716f14c 100644 --- a/src/_icons/brand-appstore.svg +++ b/src/_icons/brand-appstore.svg @@ -5,8 +5,5 @@ version: "1.26" unicode: "ed24" --- - - - - + diff --git a/src/_icons/brand-asana.svg b/src/_icons/brand-asana.svg index 106ded23f..0f314bf41 100644 --- a/src/_icons/brand-asana.svg +++ b/src/_icons/brand-asana.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edc5" --- - - - + diff --git a/src/_icons/brand-backbone.svg b/src/_icons/brand-backbone.svg index d18a455b1..e53cd9a47 100644 --- a/src/_icons/brand-backbone.svg +++ b/src/_icons/brand-backbone.svg @@ -5,6 +5,5 @@ unicode: "f325" version: "1.86" --- - - + diff --git a/src/_icons/brand-badoo.svg b/src/_icons/brand-badoo.svg index 0a1587947..a447fe08a 100644 --- a/src/_icons/brand-badoo.svg +++ b/src/_icons/brand-badoo.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f206" --- - - + diff --git a/src/_icons/brand-baidu.svg b/src/_icons/brand-baidu.svg index 6a3141a8e..8d9b7ee78 100644 --- a/src/_icons/brand-baidu.svg +++ b/src/_icons/brand-baidu.svg @@ -4,9 +4,5 @@ unicode: "f5e9" version: "1.113" --- - - - - - + diff --git a/src/_icons/brand-bandlab.svg b/src/_icons/brand-bandlab.svg index f23147bf3..5c235ee67 100644 --- a/src/_icons/brand-bandlab.svg +++ b/src/_icons/brand-bandlab.svg @@ -4,6 +4,5 @@ unicode: "f5fa" version: "1.114" --- - - + diff --git a/src/_icons/brand-beats.svg b/src/_icons/brand-beats.svg index 228ce6205..a10463445 100644 --- a/src/_icons/brand-beats.svg +++ b/src/_icons/brand-beats.svg @@ -5,7 +5,5 @@ version: "1.71" unicode: "f208" --- - - - + diff --git a/src/_icons/brand-behance.svg b/src/_icons/brand-behance.svg index 4d042bdbd..2f6d67599 100644 --- a/src/_icons/brand-behance.svg +++ b/src/_icons/brand-behance.svg @@ -5,8 +5,5 @@ version: "1.13" unicode: "ec6e" --- - - - - + diff --git a/src/_icons/brand-binance.svg b/src/_icons/brand-binance.svg index bae70cf29..4b74b9066 100644 --- a/src/_icons/brand-binance.svg +++ b/src/_icons/brand-binance.svg @@ -5,9 +5,5 @@ unicode: "f5a0" version: "1.110" --- - - - - - + diff --git a/src/_icons/brand-bitbucket.svg b/src/_icons/brand-bitbucket.svg index 6ddbd9eb6..ed20ce01f 100644 --- a/src/_icons/brand-bitbucket.svg +++ b/src/_icons/brand-bitbucket.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edc7" --- - - + diff --git a/src/_icons/brand-blackbery.svg b/src/_icons/brand-blackbery.svg index 546955b93..8e66c0f10 100644 --- a/src/_icons/brand-blackbery.svg +++ b/src/_icons/brand-blackbery.svg @@ -5,11 +5,5 @@ unicode: "f568" version: "1.107" --- - - - - - - - + diff --git a/src/_icons/brand-blender.svg b/src/_icons/brand-blender.svg index 3994734a0..57093d925 100644 --- a/src/_icons/brand-blender.svg +++ b/src/_icons/brand-blender.svg @@ -5,9 +5,5 @@ unicode: "f326" version: "1.86" --- - - - - - + diff --git a/src/_icons/brand-blogger.svg b/src/_icons/brand-blogger.svg index f9f428fd4..d833c764c 100644 --- a/src/_icons/brand-blogger.svg +++ b/src/_icons/brand-blogger.svg @@ -5,7 +5,5 @@ unicode: "f35a" version: "1.89" --- - - - + diff --git a/src/_icons/brand-booking.svg b/src/_icons/brand-booking.svg index eb50523f4..6b4a3048f 100644 --- a/src/_icons/brand-booking.svg +++ b/src/_icons/brand-booking.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edc8" --- - - - + diff --git a/src/_icons/brand-bootstrap.svg b/src/_icons/brand-bootstrap.svg index b8f007071..6140a269e 100644 --- a/src/_icons/brand-bootstrap.svg +++ b/src/_icons/brand-bootstrap.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef3e" --- - - - + diff --git a/src/_icons/brand-bumble.svg b/src/_icons/brand-bumble.svg index 99d055728..4c33702e6 100644 --- a/src/_icons/brand-bumble.svg +++ b/src/_icons/brand-bumble.svg @@ -4,8 +4,5 @@ unicode: "f5fb" version: "1.114" --- - - - - + diff --git a/src/_icons/brand-bunpo.svg b/src/_icons/brand-bunpo.svg index f88e92f35..8cf135e73 100644 --- a/src/_icons/brand-bunpo.svg +++ b/src/_icons/brand-bunpo.svg @@ -5,5 +5,5 @@ unicode: "f4cf" version: "1.99" --- - + diff --git a/src/_icons/brand-c-sharp.svg b/src/_icons/brand-c-sharp.svg index 7abaa9aad..2d98847e7 100644 --- a/src/_icons/brand-c-sharp.svg +++ b/src/_icons/brand-c-sharp.svg @@ -4,9 +4,5 @@ version: "1.53" unicode: "f003" --- - - - - - + diff --git a/src/_icons/brand-carbon.svg b/src/_icons/brand-carbon.svg index 9945c910e..d2ad87ba8 100644 --- a/src/_icons/brand-carbon.svg +++ b/src/_icons/brand-carbon.svg @@ -4,6 +4,5 @@ unicode: "f348" version: "1.88" --- - - + diff --git a/src/_icons/brand-chrome.svg b/src/_icons/brand-chrome.svg index e66b5ac33..2aeaeee8a 100644 --- a/src/_icons/brand-chrome.svg +++ b/src/_icons/brand-chrome.svg @@ -5,9 +5,5 @@ version: "1.9" unicode: "ec18" --- - - - - - + diff --git a/src/_icons/brand-citymapper.svg b/src/_icons/brand-citymapper.svg index 737ed75ef..cad19b1ca 100644 --- a/src/_icons/brand-citymapper.svg +++ b/src/_icons/brand-citymapper.svg @@ -4,8 +4,5 @@ unicode: "f5fc" version: "1.114" --- - - - - + diff --git a/src/_icons/brand-codepen.svg b/src/_icons/brand-codepen.svg index 54b53dfd8..4dd602fa2 100644 --- a/src/_icons/brand-codepen.svg +++ b/src/_icons/brand-codepen.svg @@ -5,10 +5,5 @@ version: "1.13" unicode: "ec6f" --- - - - - - - + diff --git a/src/_icons/brand-codesandbox.svg b/src/_icons/brand-codesandbox.svg index 3623661dc..42846406f 100644 --- a/src/_icons/brand-codesandbox.svg +++ b/src/_icons/brand-codesandbox.svg @@ -5,11 +5,5 @@ version: "1.32" unicode: "ed6a" --- - - - - - - - + diff --git a/src/_icons/brand-cohost.svg b/src/_icons/brand-cohost.svg index 943a08864..7287a1ca5 100644 --- a/src/_icons/brand-cohost.svg +++ b/src/_icons/brand-cohost.svg @@ -5,7 +5,5 @@ unicode: "f5d5" version: "1.112" --- - - - + diff --git a/src/_icons/brand-coinbase.svg b/src/_icons/brand-coinbase.svg index ea9c51007..9ff552111 100644 --- a/src/_icons/brand-coinbase.svg +++ b/src/_icons/brand-coinbase.svg @@ -5,5 +5,5 @@ version: "1.71" unicode: "f209" --- - + diff --git a/src/_icons/brand-comedy-central.svg b/src/_icons/brand-comedy-central.svg index 70e4a5bda..b48a62a26 100644 --- a/src/_icons/brand-comedy-central.svg +++ b/src/_icons/brand-comedy-central.svg @@ -5,6 +5,5 @@ version: "1.72" unicode: "f217" --- - - + diff --git a/src/_icons/brand-coreos.svg b/src/_icons/brand-coreos.svg index df5771cfc..1b7dd339e 100644 --- a/src/_icons/brand-coreos.svg +++ b/src/_icons/brand-coreos.svg @@ -4,7 +4,5 @@ unicode: "f5fd" version: "1.114" --- - - - + diff --git a/src/_icons/brand-couchdb.svg b/src/_icons/brand-couchdb.svg index c61fed1c1..d7ac3551d 100644 --- a/src/_icons/brand-couchdb.svg +++ b/src/_icons/brand-couchdb.svg @@ -4,9 +4,5 @@ unicode: "f60f" version: "1.115" --- - - - - - + diff --git a/src/_icons/brand-couchsurfing.svg b/src/_icons/brand-couchsurfing.svg index c0c136172..cb8dca42d 100644 --- a/src/_icons/brand-couchsurfing.svg +++ b/src/_icons/brand-couchsurfing.svg @@ -5,6 +5,5 @@ unicode: "f392" version: "1.92" --- - - + diff --git a/src/_icons/brand-cpp.svg b/src/_icons/brand-cpp.svg index 785f22ef2..28ac3e42f 100644 --- a/src/_icons/brand-cpp.svg +++ b/src/_icons/brand-cpp.svg @@ -4,9 +4,5 @@ unicode: "f5fe" version: "1.114" --- - - - - - + diff --git a/src/_icons/brand-css3.svg b/src/_icons/brand-css3.svg index 381cc6381..01a53c507 100644 --- a/src/_icons/brand-css3.svg +++ b/src/_icons/brand-css3.svg @@ -5,6 +5,5 @@ version: "1.32" unicode: "ed6b" --- - - + diff --git a/src/_icons/brand-ctemplar.svg b/src/_icons/brand-ctemplar.svg index ff687b0b9..f11ad452a 100644 --- a/src/_icons/brand-ctemplar.svg +++ b/src/_icons/brand-ctemplar.svg @@ -5,8 +5,5 @@ unicode: "f4d0" version: "1.99" --- - - - - + diff --git a/src/_icons/brand-cucumber.svg b/src/_icons/brand-cucumber.svg index 2893d7b2d..3a33e07e4 100644 --- a/src/_icons/brand-cucumber.svg +++ b/src/_icons/brand-cucumber.svg @@ -5,12 +5,5 @@ version: "1.45" unicode: "ef6c" --- - - - - - - - - + diff --git a/src/_icons/brand-cupra.svg b/src/_icons/brand-cupra.svg index ecd199a1c..00cb6acd1 100644 --- a/src/_icons/brand-cupra.svg +++ b/src/_icons/brand-cupra.svg @@ -5,6 +5,5 @@ unicode: "f4d1" version: "1.99" --- - - + diff --git a/src/_icons/brand-cypress.svg b/src/_icons/brand-cypress.svg index d2e3424b1..f1d17f168 100644 --- a/src/_icons/brand-cypress.svg +++ b/src/_icons/brand-cypress.svg @@ -5,7 +5,5 @@ unicode: "f333" version: "1.86" --- - - - + diff --git a/src/_icons/brand-d3.svg b/src/_icons/brand-d3.svg index 7874ddb86..5f22e038e 100644 --- a/src/_icons/brand-d3.svg +++ b/src/_icons/brand-d3.svg @@ -5,9 +5,5 @@ version: "1.75" unicode: "f24e" --- - - - - - + diff --git a/src/_icons/brand-days-counter.svg b/src/_icons/brand-days-counter.svg index 74e017bcf..dbf2a4af9 100644 --- a/src/_icons/brand-days-counter.svg +++ b/src/_icons/brand-days-counter.svg @@ -5,7 +5,5 @@ unicode: "f4d2" version: "1.99" --- - - - + diff --git a/src/_icons/brand-debian.svg b/src/_icons/brand-debian.svg index 6437a0992..c24d12ee0 100644 --- a/src/_icons/brand-debian.svg +++ b/src/_icons/brand-debian.svg @@ -5,6 +5,5 @@ version: "1.44" unicode: "ef57" --- - - + diff --git a/src/_icons/brand-deliveroo.svg b/src/_icons/brand-deliveroo.svg index 60f0e7d37..3f8e093fa 100644 --- a/src/_icons/brand-deliveroo.svg +++ b/src/_icons/brand-deliveroo.svg @@ -5,7 +5,5 @@ unicode: "f4d3" version: "1.99" --- - - - + diff --git a/src/_icons/brand-deno.svg b/src/_icons/brand-deno.svg index 69b3c12cb..a710c3f06 100644 --- a/src/_icons/brand-deno.svg +++ b/src/_icons/brand-deno.svg @@ -5,7 +5,5 @@ version: "1.75" unicode: "f24f" --- - - - + diff --git a/src/_icons/brand-denodo.svg b/src/_icons/brand-denodo.svg index 58c808441..9ea2b4f71 100644 --- a/src/_icons/brand-denodo.svg +++ b/src/_icons/brand-denodo.svg @@ -4,11 +4,5 @@ unicode: "f610" version: "1.115" --- - - - - - - - + diff --git a/src/_icons/brand-dingtalk.svg b/src/_icons/brand-dingtalk.svg index 76878d80c..ad1062ad5 100644 --- a/src/_icons/brand-dingtalk.svg +++ b/src/_icons/brand-dingtalk.svg @@ -4,6 +4,5 @@ unicode: "f5ea" version: "1.113" --- - - + diff --git a/src/_icons/brand-discord.svg b/src/_icons/brand-discord.svg index 24d8f79e3..6ebfc616f 100644 --- a/src/_icons/brand-discord.svg +++ b/src/_icons/brand-discord.svg @@ -5,10 +5,5 @@ version: "1.21" unicode: "ece3" --- - - - - - - + diff --git a/src/_icons/brand-disney.svg b/src/_icons/brand-disney.svg index 7bd7cabb5..a5676da29 100644 --- a/src/_icons/brand-disney.svg +++ b/src/_icons/brand-disney.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f20a" --- - - + diff --git a/src/_icons/brand-disqus.svg b/src/_icons/brand-disqus.svg index bc41b6117..6382151c8 100644 --- a/src/_icons/brand-disqus.svg +++ b/src/_icons/brand-disqus.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edc9" --- - - + diff --git a/src/_icons/brand-django.svg b/src/_icons/brand-django.svg index 309160688..0f98f6ac4 100644 --- a/src/_icons/brand-django.svg +++ b/src/_icons/brand-django.svg @@ -5,8 +5,5 @@ unicode: "f349" version: "1.88" --- - - - - + diff --git a/src/_icons/brand-docker.svg b/src/_icons/brand-docker.svg index 60801f57a..93f98e2bc 100644 --- a/src/_icons/brand-docker.svg +++ b/src/_icons/brand-docker.svg @@ -5,13 +5,5 @@ version: "1.36" unicode: "edca" --- - - - - - - - - - + diff --git a/src/_icons/brand-doctrine.svg b/src/_icons/brand-doctrine.svg index 3676c73d8..78296f938 100644 --- a/src/_icons/brand-doctrine.svg +++ b/src/_icons/brand-doctrine.svg @@ -5,8 +5,5 @@ version: "1.45" unicode: "ef6d" --- - - - - + diff --git a/src/_icons/brand-dolby-digital.svg b/src/_icons/brand-dolby-digital.svg index 59d1c0cf8..732a2b53c 100644 --- a/src/_icons/brand-dolby-digital.svg +++ b/src/_icons/brand-dolby-digital.svg @@ -5,6 +5,5 @@ unicode: "f4d4" version: "1.99" --- - - + diff --git a/src/_icons/brand-douban.svg b/src/_icons/brand-douban.svg index 14f376584..7a4d4e136 100644 --- a/src/_icons/brand-douban.svg +++ b/src/_icons/brand-douban.svg @@ -4,9 +4,5 @@ unicode: "f5ff" version: "1.114" --- - - - - - + diff --git a/src/_icons/brand-dribbble.svg b/src/_icons/brand-dribbble.svg index e73b8ce43..fd5d925b2 100644 --- a/src/_icons/brand-dribbble.svg +++ b/src/_icons/brand-dribbble.svg @@ -5,8 +5,5 @@ version: "1.18" unicode: "ec19" --- - - - - + diff --git a/src/_icons/brand-drops.svg b/src/_icons/brand-drops.svg index a55e6378b..1dce9f7ee 100644 --- a/src/_icons/brand-drops.svg +++ b/src/_icons/brand-drops.svg @@ -5,6 +5,5 @@ unicode: "f4d5" version: "1.99" --- - - + diff --git a/src/_icons/brand-drupal.svg b/src/_icons/brand-drupal.svg index 0d3559a9b..fda40ba62 100644 --- a/src/_icons/brand-drupal.svg +++ b/src/_icons/brand-drupal.svg @@ -5,6 +5,5 @@ unicode: "f393" version: "1.92" --- - - + diff --git a/src/_icons/brand-edge.svg b/src/_icons/brand-edge.svg index 249e23fb3..44470b3f3 100644 --- a/src/_icons/brand-edge.svg +++ b/src/_icons/brand-edge.svg @@ -5,8 +5,5 @@ version: "1.23" unicode: "ecfc" --- - - - - + diff --git a/src/_icons/brand-elastic.svg b/src/_icons/brand-elastic.svg index 1bf362f26..423bb606c 100644 --- a/src/_icons/brand-elastic.svg +++ b/src/_icons/brand-elastic.svg @@ -4,10 +4,5 @@ unicode: "f611" version: "1.115" --- - - - - - - + diff --git a/src/_icons/brand-envato.svg b/src/_icons/brand-envato.svg index 28e1f6088..1f060a628 100644 --- a/src/_icons/brand-envato.svg +++ b/src/_icons/brand-envato.svg @@ -5,6 +5,5 @@ unicode: "f394" version: "1.92" --- - - + diff --git a/src/_icons/brand-etsy.svg b/src/_icons/brand-etsy.svg index 0f7121ad1..5300f1a1e 100644 --- a/src/_icons/brand-etsy.svg +++ b/src/_icons/brand-etsy.svg @@ -4,7 +4,5 @@ unicode: "f654" version: "1.119" --- - - - + diff --git a/src/_icons/brand-evernote.svg b/src/_icons/brand-evernote.svg index 4f5c34246..c285c5bfa 100644 --- a/src/_icons/brand-evernote.svg +++ b/src/_icons/brand-evernote.svg @@ -4,7 +4,5 @@ unicode: "f600" version: "1.114" --- - - - + diff --git a/src/_icons/brand-figma.svg b/src/_icons/brand-figma.svg index a328e93b4..6ae4d3601 100644 --- a/src/_icons/brand-figma.svg +++ b/src/_icons/brand-figma.svg @@ -5,7 +5,5 @@ version: "1.16" unicode: "ec93" --- - - - + diff --git a/src/_icons/brand-finder.svg b/src/_icons/brand-finder.svg index 4cca0b838..9de5d8e83 100644 --- a/src/_icons/brand-finder.svg +++ b/src/_icons/brand-finder.svg @@ -5,9 +5,5 @@ version: "1.72" unicode: "f218" --- - - - - - + diff --git a/src/_icons/brand-firebase.svg b/src/_icons/brand-firebase.svg index 10ecc563e..8dbfb0592 100644 --- a/src/_icons/brand-firebase.svg +++ b/src/_icons/brand-firebase.svg @@ -5,7 +5,5 @@ version: "1.45" unicode: "ef6e" --- - - - + diff --git a/src/_icons/brand-firefox.svg b/src/_icons/brand-firefox.svg index c6f788b5b..dd43a064d 100644 --- a/src/_icons/brand-firefox.svg +++ b/src/_icons/brand-firefox.svg @@ -5,6 +5,5 @@ version: "1.23" unicode: "ecfd" --- - - + diff --git a/src/_icons/brand-flickr.svg b/src/_icons/brand-flickr.svg index 44e10ca82..4e2ce2cb3 100644 --- a/src/_icons/brand-flickr.svg +++ b/src/_icons/brand-flickr.svg @@ -5,6 +5,5 @@ version: "1.23" unicode: "ecfe" --- - - + diff --git a/src/_icons/brand-flightradar24.svg b/src/_icons/brand-flightradar24.svg index 36920a104..bbd126f0a 100644 --- a/src/_icons/brand-flightradar24.svg +++ b/src/_icons/brand-flightradar24.svg @@ -5,8 +5,5 @@ unicode: "f4d6" version: "1.99" --- - - - - + diff --git a/src/_icons/brand-flutter.svg b/src/_icons/brand-flutter.svg index 542cc1941..b06753705 100644 --- a/src/_icons/brand-flutter.svg +++ b/src/_icons/brand-flutter.svg @@ -5,6 +5,5 @@ unicode: "f395" version: "1.92" --- - - + diff --git a/src/_icons/brand-foursquare.svg b/src/_icons/brand-foursquare.svg index 4023ff69f..0da125c13 100644 --- a/src/_icons/brand-foursquare.svg +++ b/src/_icons/brand-foursquare.svg @@ -5,6 +5,5 @@ version: "1.23" unicode: "ecff" --- - - + diff --git a/src/_icons/brand-funimation.svg b/src/_icons/brand-funimation.svg index fc9f33584..7cfe65e5f 100644 --- a/src/_icons/brand-funimation.svg +++ b/src/_icons/brand-funimation.svg @@ -4,6 +4,5 @@ unicode: "f655" version: "1.119" --- - - + diff --git a/src/_icons/brand-gatsby.svg b/src/_icons/brand-gatsby.svg index 8bbaecd46..a1125d1c5 100644 --- a/src/_icons/brand-gatsby.svg +++ b/src/_icons/brand-gatsby.svg @@ -5,6 +5,5 @@ unicode: "f396" version: "1.92" --- - - + diff --git a/src/_icons/brand-git.svg b/src/_icons/brand-git.svg index 7cd593e28..64c986c11 100644 --- a/src/_icons/brand-git.svg +++ b/src/_icons/brand-git.svg @@ -5,11 +5,5 @@ version: "1.45" unicode: "ef6f" --- - - - - - - - + diff --git a/src/_icons/brand-github-copilot.svg b/src/_icons/brand-github-copilot.svg index ca3acf9f9..ce06b4d6d 100644 --- a/src/_icons/brand-github-copilot.svg +++ b/src/_icons/brand-github-copilot.svg @@ -5,11 +5,5 @@ unicode: "f4a8" version: "1.97" --- - - - - - - - + diff --git a/src/_icons/brand-gmail.svg b/src/_icons/brand-gmail.svg index 3a4c3ae5c..3dd170327 100644 --- a/src/_icons/brand-gmail.svg +++ b/src/_icons/brand-gmail.svg @@ -5,8 +5,5 @@ version: "1.48" unicode: "efa2" --- - - - - + diff --git a/src/_icons/brand-google-analytics.svg b/src/_icons/brand-google-analytics.svg index 404cc34e1..aacc4a13b 100644 --- a/src/_icons/brand-google-analytics.svg +++ b/src/_icons/brand-google-analytics.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edcb" --- - - - + diff --git a/src/_icons/brand-google-big-query.svg b/src/_icons/brand-google-big-query.svg index f9d5c6ce6..078316b5b 100644 --- a/src/_icons/brand-google-big-query.svg +++ b/src/_icons/brand-google-big-query.svg @@ -4,7 +4,5 @@ unicode: "f612" version: "1.115" --- - - - + diff --git a/src/_icons/brand-google-drive.svg b/src/_icons/brand-google-drive.svg index e1f8bc2c7..b5f14cd1a 100644 --- a/src/_icons/brand-google-drive.svg +++ b/src/_icons/brand-google-drive.svg @@ -5,7 +5,5 @@ version: "1.9" unicode: "ec1e" --- - - - + diff --git a/src/_icons/brand-google-home.svg b/src/_icons/brand-google-home.svg index 1dc01c42d..c534b72d8 100644 --- a/src/_icons/brand-google-home.svg +++ b/src/_icons/brand-google-home.svg @@ -4,9 +4,5 @@ unicode: "f601" version: "1.114" --- - - - - - + diff --git a/src/_icons/brand-google-one.svg b/src/_icons/brand-google-one.svg index 1aa73ea4d..a2025166b 100644 --- a/src/_icons/brand-google-one.svg +++ b/src/_icons/brand-google-one.svg @@ -5,6 +5,5 @@ version: "1.73" unicode: "f232" --- - - + diff --git a/src/_icons/brand-google-photos.svg b/src/_icons/brand-google-photos.svg index 29115117e..53a192fc8 100644 --- a/src/_icons/brand-google-photos.svg +++ b/src/_icons/brand-google-photos.svg @@ -5,8 +5,5 @@ version: "1.71" unicode: "f20c" --- - - - - + diff --git a/src/_icons/brand-google-play.svg b/src/_icons/brand-google-play.svg index 5ea547dd0..a3b521672 100644 --- a/src/_icons/brand-google-play.svg +++ b/src/_icons/brand-google-play.svg @@ -5,7 +5,5 @@ version: "1.26" unicode: "ed25" --- - - - + diff --git a/src/_icons/brand-google-podcasts.svg b/src/_icons/brand-google-podcasts.svg index d5f426efe..a80f5731c 100644 --- a/src/_icons/brand-google-podcasts.svg +++ b/src/_icons/brand-google-podcasts.svg @@ -4,13 +4,5 @@ unicode: "f656" version: "1.119" --- - - - - - - - - - + diff --git a/src/_icons/brand-grammarly.svg b/src/_icons/brand-grammarly.svg index 5f05dbed2..3893dc931 100644 --- a/src/_icons/brand-grammarly.svg +++ b/src/_icons/brand-grammarly.svg @@ -5,7 +5,5 @@ unicode: "f32b" version: "1.86" --- - - - + diff --git a/src/_icons/brand-graphql.svg b/src/_icons/brand-graphql.svg index 6fbe68267..1d0a5add4 100644 --- a/src/_icons/brand-graphql.svg +++ b/src/_icons/brand-graphql.svg @@ -5,19 +5,5 @@ unicode: "f32c" version: "1.86" --- - - - - - - - - - - - - - - - + diff --git a/src/_icons/brand-grindr.svg b/src/_icons/brand-grindr.svg index 5bd822993..4eca56845 100644 --- a/src/_icons/brand-grindr.svg +++ b/src/_icons/brand-grindr.svg @@ -5,7 +5,5 @@ version: "1.71" unicode: "f20d" --- - - - + diff --git a/src/_icons/brand-guardian.svg b/src/_icons/brand-guardian.svg index 8f51a6172..c77efe900 100644 --- a/src/_icons/brand-guardian.svg +++ b/src/_icons/brand-guardian.svg @@ -5,10 +5,5 @@ unicode: "f4fb" version: "1.101" --- - - - - - - + diff --git a/src/_icons/brand-gumroad.svg b/src/_icons/brand-gumroad.svg index 737130972..9acffb25a 100644 --- a/src/_icons/brand-gumroad.svg +++ b/src/_icons/brand-gumroad.svg @@ -4,7 +4,5 @@ unicode: "f5d6" version: "1.112" --- - - - + diff --git a/src/_icons/brand-hbo.svg b/src/_icons/brand-hbo.svg index a6695e51e..c3c26bad0 100644 --- a/src/_icons/brand-hbo.svg +++ b/src/_icons/brand-hbo.svg @@ -4,10 +4,5 @@ unicode: "f657" version: "1.119" --- - - - - - - + diff --git a/src/_icons/brand-headlessui.svg b/src/_icons/brand-headlessui.svg index 1e830d1e3..6a5b13d5f 100644 --- a/src/_icons/brand-headlessui.svg +++ b/src/_icons/brand-headlessui.svg @@ -5,6 +5,5 @@ unicode: "f32d" version: "1.86" --- - - + diff --git a/src/_icons/brand-hipchat.svg b/src/_icons/brand-hipchat.svg index 4a5dade0f..f69502e69 100644 --- a/src/_icons/brand-hipchat.svg +++ b/src/_icons/brand-hipchat.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edcd" --- - - + diff --git a/src/_icons/brand-html5.svg b/src/_icons/brand-html5.svg index b6fb57fec..0af1f214f 100644 --- a/src/_icons/brand-html5.svg +++ b/src/_icons/brand-html5.svg @@ -5,6 +5,5 @@ version: "1.32" unicode: "ed6c" --- - - + diff --git a/src/_icons/brand-inertia.svg b/src/_icons/brand-inertia.svg index 4d9ee2dfa..4ea081368 100644 --- a/src/_icons/brand-inertia.svg +++ b/src/_icons/brand-inertia.svg @@ -5,6 +5,5 @@ unicode: "f34a" version: "1.88" --- - - + diff --git a/src/_icons/brand-instagram.svg b/src/_icons/brand-instagram.svg index a0797b1e0..a9208bd02 100644 --- a/src/_icons/brand-instagram.svg +++ b/src/_icons/brand-instagram.svg @@ -5,7 +5,5 @@ version: "1.9" unicode: "ec20" --- - - - + diff --git a/src/_icons/brand-intercom.svg b/src/_icons/brand-intercom.svg index e89609797..32d6bc747 100644 --- a/src/_icons/brand-intercom.svg +++ b/src/_icons/brand-intercom.svg @@ -5,10 +5,5 @@ version: "1.68" unicode: "f1cf" --- - - - - - - + diff --git a/src/_icons/brand-javascript.svg b/src/_icons/brand-javascript.svg index 5c6b9ace7..c7728fabc 100644 --- a/src/_icons/brand-javascript.svg +++ b/src/_icons/brand-javascript.svg @@ -5,7 +5,5 @@ version: "1.40" unicode: "ef0c" --- - - - + diff --git a/src/_icons/brand-kickstarter.svg b/src/_icons/brand-kickstarter.svg index 0fc0fe1f7..72d2dd03b 100644 --- a/src/_icons/brand-kickstarter.svg +++ b/src/_icons/brand-kickstarter.svg @@ -5,5 +5,5 @@ version: "1.36" unicode: "edce" --- - + diff --git a/src/_icons/brand-kotlin.svg b/src/_icons/brand-kotlin.svg index a42b5d4c2..19b04b59c 100644 --- a/src/_icons/brand-kotlin.svg +++ b/src/_icons/brand-kotlin.svg @@ -5,8 +5,5 @@ version: "1.32" unicode: "ed6d" --- - - - - + diff --git a/src/_icons/brand-laravel.svg b/src/_icons/brand-laravel.svg index 659d8c6b5..d12cd7fea 100644 --- a/src/_icons/brand-laravel.svg +++ b/src/_icons/brand-laravel.svg @@ -5,12 +5,5 @@ unicode: "f34b" version: "1.88" --- - - - - - - - - + diff --git a/src/_icons/brand-lastfm.svg b/src/_icons/brand-lastfm.svg index a13e163e4..d5598f8b8 100644 --- a/src/_icons/brand-lastfm.svg +++ b/src/_icons/brand-lastfm.svg @@ -5,5 +5,5 @@ category: Brand unicode: "f001" --- - + diff --git a/src/_icons/brand-linkedin.svg b/src/_icons/brand-linkedin.svg index ca4e72135..47b92979f 100644 --- a/src/_icons/brand-linkedin.svg +++ b/src/_icons/brand-linkedin.svg @@ -5,9 +5,5 @@ version: "1.15" unicode: "ec8c" --- - - - - - + diff --git a/src/_icons/brand-linktree.svg b/src/_icons/brand-linktree.svg index 29dd79159..83733264f 100644 --- a/src/_icons/brand-linktree.svg +++ b/src/_icons/brand-linktree.svg @@ -5,6 +5,5 @@ version: "1.69" unicode: "f1e7" --- - - + diff --git a/src/_icons/brand-loom.svg b/src/_icons/brand-loom.svg index 2d0cb8e15..1b7c8edae 100644 --- a/src/_icons/brand-loom.svg +++ b/src/_icons/brand-loom.svg @@ -5,8 +5,5 @@ version: "1.45" unicode: "ef70" --- - - - - + diff --git a/src/_icons/brand-mailgun.svg b/src/_icons/brand-mailgun.svg index 4624e7aaa..daa8c4c4e 100644 --- a/src/_icons/brand-mailgun.svg +++ b/src/_icons/brand-mailgun.svg @@ -5,8 +5,5 @@ unicode: "f32e" version: "1.86" --- - - - - + diff --git a/src/_icons/brand-mantine.svg b/src/_icons/brand-mantine.svg index b9356d07a..dfe2bd833 100644 --- a/src/_icons/brand-mantine.svg +++ b/src/_icons/brand-mantine.svg @@ -5,9 +5,5 @@ unicode: "f32f" version: "1.86" --- - - - - - + diff --git a/src/_icons/brand-mastercard.svg b/src/_icons/brand-mastercard.svg index f3230192f..978b9ac75 100644 --- a/src/_icons/brand-mastercard.svg +++ b/src/_icons/brand-mastercard.svg @@ -5,7 +5,5 @@ version: "1.43" unicode: "ef49" --- - - - + diff --git a/src/_icons/brand-mastodon.svg b/src/_icons/brand-mastodon.svg index 8e2e88a1a..45a3999f3 100644 --- a/src/_icons/brand-mastodon.svg +++ b/src/_icons/brand-mastodon.svg @@ -5,6 +5,5 @@ version: "1.75" unicode: "f250" --- - - + diff --git a/src/_icons/brand-matrix.svg b/src/_icons/brand-matrix.svg index ada89073a..872e4b065 100644 --- a/src/_icons/brand-matrix.svg +++ b/src/_icons/brand-matrix.svg @@ -4,9 +4,5 @@ unicode: "f5eb" version: "1.113" --- - - - - - + diff --git a/src/_icons/brand-medium.svg b/src/_icons/brand-medium.svg index 9ac299725..5853eac21 100644 --- a/src/_icons/brand-medium.svg +++ b/src/_icons/brand-medium.svg @@ -5,10 +5,5 @@ version: "1.13" unicode: "ec70" --- - - - - - - + diff --git a/src/_icons/brand-mercedes.svg b/src/_icons/brand-mercedes.svg index 5e6223094..5eaf36654 100644 --- a/src/_icons/brand-mercedes.svg +++ b/src/_icons/brand-mercedes.svg @@ -5,8 +5,5 @@ version: "1.59" unicode: "f072" --- - - - - + diff --git a/src/_icons/brand-messenger.svg b/src/_icons/brand-messenger.svg index 547f523a1..11e3add69 100644 --- a/src/_icons/brand-messenger.svg +++ b/src/_icons/brand-messenger.svg @@ -5,6 +5,5 @@ version: "1.13" unicode: "ec71" --- - - + diff --git a/src/_icons/brand-meta.svg b/src/_icons/brand-meta.svg index 09fbf0113..1e0c32469 100644 --- a/src/_icons/brand-meta.svg +++ b/src/_icons/brand-meta.svg @@ -5,6 +5,5 @@ version: "1.49" unicode: "efb0" --- - - + diff --git a/src/_icons/brand-miniprogram.svg b/src/_icons/brand-miniprogram.svg index 9e17b9c40..868c001fb 100644 --- a/src/_icons/brand-miniprogram.svg +++ b/src/_icons/brand-miniprogram.svg @@ -4,6 +4,5 @@ unicode: "f602" version: "1.114" --- - - + diff --git a/src/_icons/brand-mixpanel.svg b/src/_icons/brand-mixpanel.svg index b07a39df6..4a6a129ea 100644 --- a/src/_icons/brand-mixpanel.svg +++ b/src/_icons/brand-mixpanel.svg @@ -5,7 +5,5 @@ unicode: "f397" version: "1.92" --- - - - + diff --git a/src/_icons/brand-monday.svg b/src/_icons/brand-monday.svg index 0fdbc60c1..bf7575471 100644 --- a/src/_icons/brand-monday.svg +++ b/src/_icons/brand-monday.svg @@ -5,7 +5,5 @@ version: "1.72" unicode: "f219" --- - - - + diff --git a/src/_icons/brand-mongodb.svg b/src/_icons/brand-mongodb.svg index 800a77531..4419b2038 100644 --- a/src/_icons/brand-mongodb.svg +++ b/src/_icons/brand-mongodb.svg @@ -4,6 +4,5 @@ unicode: "f613" version: "1.115" --- - - + diff --git a/src/_icons/brand-my-oppo.svg b/src/_icons/brand-my-oppo.svg index 13d4c005c..b3e915dca 100644 --- a/src/_icons/brand-my-oppo.svg +++ b/src/_icons/brand-my-oppo.svg @@ -5,6 +5,5 @@ unicode: "f4d7" version: "1.99" --- - - + diff --git a/src/_icons/brand-mysql.svg b/src/_icons/brand-mysql.svg index 9f0dbfd9a..8a3bb2944 100644 --- a/src/_icons/brand-mysql.svg +++ b/src/_icons/brand-mysql.svg @@ -4,6 +4,5 @@ unicode: "f614" version: "1.115" --- - - + diff --git a/src/_icons/brand-nem.svg b/src/_icons/brand-nem.svg index 0821d4eb8..0f54f6a0e 100644 --- a/src/_icons/brand-nem.svg +++ b/src/_icons/brand-nem.svg @@ -5,7 +5,5 @@ unicode: "f5a1" version: "1.110" --- - - - + diff --git a/src/_icons/brand-netbeans.svg b/src/_icons/brand-netbeans.svg index 3d846dc71..ee46f0a05 100644 --- a/src/_icons/brand-netbeans.svg +++ b/src/_icons/brand-netbeans.svg @@ -5,11 +5,5 @@ version: "1.45" unicode: "ef71" --- - - - - - - - + diff --git a/src/_icons/brand-netease-music.svg b/src/_icons/brand-netease-music.svg index ac9ddb438..13609523b 100644 --- a/src/_icons/brand-netease-music.svg +++ b/src/_icons/brand-netease-music.svg @@ -4,5 +4,5 @@ unicode: "f604" version: "1.114" --- - + diff --git a/src/_icons/brand-netflix.svg b/src/_icons/brand-netflix.svg index 4b6e60ecb..ac0fce24d 100644 --- a/src/_icons/brand-netflix.svg +++ b/src/_icons/brand-netflix.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edcf" --- - - - + diff --git a/src/_icons/brand-nexo.svg b/src/_icons/brand-nexo.svg index 3df66f224..20bafd26a 100644 --- a/src/_icons/brand-nexo.svg +++ b/src/_icons/brand-nexo.svg @@ -5,6 +5,5 @@ unicode: "f5a2" version: "1.110" --- - - + diff --git a/src/_icons/brand-nextcloud.svg b/src/_icons/brand-nextcloud.svg index 34ab936c0..54bc4e5e4 100644 --- a/src/_icons/brand-nextcloud.svg +++ b/src/_icons/brand-nextcloud.svg @@ -5,7 +5,5 @@ unicode: "f4d8" version: "1.99" --- - - - + diff --git a/src/_icons/brand-nextjs.svg b/src/_icons/brand-nextjs.svg index bfefc51c2..e14a8d3d1 100644 --- a/src/_icons/brand-nextjs.svg +++ b/src/_icons/brand-nextjs.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0dd" --- - - + diff --git a/src/_icons/brand-nord-vpn.svg b/src/_icons/brand-nord-vpn.svg index 37574ae4a..f8fa23967 100644 --- a/src/_icons/brand-nord-vpn.svg +++ b/src/_icons/brand-nord-vpn.svg @@ -5,6 +5,5 @@ unicode: "f37f" version: "1.91" --- - - + diff --git a/src/_icons/brand-notion.svg b/src/_icons/brand-notion.svg index b4ef67fe8..1ee7b67ce 100644 --- a/src/_icons/brand-notion.svg +++ b/src/_icons/brand-notion.svg @@ -5,10 +5,5 @@ version: "1.46" unicode: "ef7b" --- - - - - - - + diff --git a/src/_icons/brand-npm.svg b/src/_icons/brand-npm.svg index a8c654acb..ee78455c6 100644 --- a/src/_icons/brand-npm.svg +++ b/src/_icons/brand-npm.svg @@ -5,11 +5,5 @@ unicode: "f569" version: "1.107" --- - - - - - - - + diff --git a/src/_icons/brand-nuxt.svg b/src/_icons/brand-nuxt.svg index f323862f0..fa05a7e09 100644 --- a/src/_icons/brand-nuxt.svg +++ b/src/_icons/brand-nuxt.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0de" --- - - + diff --git a/src/_icons/brand-nytimes.svg b/src/_icons/brand-nytimes.svg index 2b6c49e8e..966ab2d1e 100644 --- a/src/_icons/brand-nytimes.svg +++ b/src/_icons/brand-nytimes.svg @@ -5,9 +5,5 @@ version: "1.47" unicode: "ef8d" --- - - - - - + diff --git a/src/_icons/brand-ok-ru.svg b/src/_icons/brand-ok-ru.svg index 43493205c..03c8f4e94 100644 --- a/src/_icons/brand-ok-ru.svg +++ b/src/_icons/brand-ok-ru.svg @@ -5,9 +5,5 @@ unicode: "f399" version: "1.92" --- - - - - - + diff --git a/src/_icons/brand-onedrive.svg b/src/_icons/brand-onedrive.svg index b153b40e9..6571908fc 100644 --- a/src/_icons/brand-onedrive.svg +++ b/src/_icons/brand-onedrive.svg @@ -4,5 +4,5 @@ unicode: "f5d7" version: "1.112" --- - + diff --git a/src/_icons/brand-onlyfans.svg b/src/_icons/brand-onlyfans.svg index 700b90eff..7a91e22f5 100644 --- a/src/_icons/brand-onlyfans.svg +++ b/src/_icons/brand-onlyfans.svg @@ -4,7 +4,5 @@ unicode: "f605" version: "1.114" --- - - - + diff --git a/src/_icons/brand-openvpn.svg b/src/_icons/brand-openvpn.svg index 6a1adf73d..9e3544dee 100644 --- a/src/_icons/brand-openvpn.svg +++ b/src/_icons/brand-openvpn.svg @@ -5,6 +5,5 @@ unicode: "f39a" version: "1.92" --- - - + diff --git a/src/_icons/brand-opera.svg b/src/_icons/brand-opera.svg index 7aacb6647..da772157c 100644 --- a/src/_icons/brand-opera.svg +++ b/src/_icons/brand-opera.svg @@ -5,6 +5,5 @@ version: "1.9" unicode: "ec21" --- - - + diff --git a/src/_icons/brand-patreon.svg b/src/_icons/brand-patreon.svg index 9853b5a56..e8b5a4447 100644 --- a/src/_icons/brand-patreon.svg +++ b/src/_icons/brand-patreon.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edd2" --- - - + diff --git a/src/_icons/brand-paypay.svg b/src/_icons/brand-paypay.svg index 76d1dc0aa..51e8e0cc7 100644 --- a/src/_icons/brand-paypay.svg +++ b/src/_icons/brand-paypay.svg @@ -4,7 +4,5 @@ unicode: "f5ec" version: "1.113" --- - - - + diff --git a/src/_icons/brand-peanut.svg b/src/_icons/brand-peanut.svg index 2857dc694..687a72252 100644 --- a/src/_icons/brand-peanut.svg +++ b/src/_icons/brand-peanut.svg @@ -5,5 +5,5 @@ unicode: "f39b" version: "1.92" --- - + diff --git a/src/_icons/brand-pepsi.svg b/src/_icons/brand-pepsi.svg index a7a282124..98e31d459 100644 --- a/src/_icons/brand-pepsi.svg +++ b/src/_icons/brand-pepsi.svg @@ -5,7 +5,5 @@ version: "1.76" unicode: "f261" --- - - - + diff --git a/src/_icons/brand-php.svg b/src/_icons/brand-php.svg index 680c49f8d..1131121be 100644 --- a/src/_icons/brand-php.svg +++ b/src/_icons/brand-php.svg @@ -5,9 +5,5 @@ version: "1.45" unicode: "ef72" --- - - - - - + diff --git a/src/_icons/brand-picsart.svg b/src/_icons/brand-picsart.svg index df89fe1c9..ae305b93b 100644 --- a/src/_icons/brand-picsart.svg +++ b/src/_icons/brand-picsart.svg @@ -5,7 +5,5 @@ unicode: "f4d9" version: "1.99" --- - - - + diff --git a/src/_icons/brand-pinterest.svg b/src/_icons/brand-pinterest.svg index 3dc972919..5d80397d3 100644 --- a/src/_icons/brand-pinterest.svg +++ b/src/_icons/brand-pinterest.svg @@ -5,7 +5,5 @@ version: "1.15" unicode: "ec8d" --- - - - + diff --git a/src/_icons/brand-pocket.svg b/src/_icons/brand-pocket.svg index 7fb44e8e4..653b46d8c 100644 --- a/src/_icons/brand-pocket.svg +++ b/src/_icons/brand-pocket.svg @@ -5,6 +5,5 @@ version: "1.23" unicode: "ed00" --- - - + diff --git a/src/_icons/brand-powershell.svg b/src/_icons/brand-powershell.svg index 6355e8e65..c6aacf148 100644 --- a/src/_icons/brand-powershell.svg +++ b/src/_icons/brand-powershell.svg @@ -4,7 +4,5 @@ unicode: "f5ed" version: "1.113" --- - - - + diff --git a/src/_icons/brand-prisma.svg b/src/_icons/brand-prisma.svg index bddacba1c..f87c03a37 100644 --- a/src/_icons/brand-prisma.svg +++ b/src/_icons/brand-prisma.svg @@ -5,6 +5,5 @@ unicode: "f499" version: "1.96" --- - - + diff --git a/src/_icons/brand-producthunt.svg b/src/_icons/brand-producthunt.svg index fa71bae37..20d0badf6 100644 --- a/src/_icons/brand-producthunt.svg +++ b/src/_icons/brand-producthunt.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edd3" --- - - + diff --git a/src/_icons/brand-pushbullet.svg b/src/_icons/brand-pushbullet.svg index c3367bcbe..01789a06c 100644 --- a/src/_icons/brand-pushbullet.svg +++ b/src/_icons/brand-pushbullet.svg @@ -5,7 +5,5 @@ unicode: "f330" version: "1.86" --- - - - + diff --git a/src/_icons/brand-pushover.svg b/src/_icons/brand-pushover.svg index 168aaaa9b..b04232f3e 100644 --- a/src/_icons/brand-pushover.svg +++ b/src/_icons/brand-pushover.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f20e" --- - - + diff --git a/src/_icons/brand-python.svg b/src/_icons/brand-python.svg index 466565ccb..874faf2dc 100644 --- a/src/_icons/brand-python.svg +++ b/src/_icons/brand-python.svg @@ -5,9 +5,5 @@ version: "1.23" unicode: "ed01" --- - - - - - + diff --git a/src/_icons/brand-qq.svg b/src/_icons/brand-qq.svg index 658726859..fddc42063 100644 --- a/src/_icons/brand-qq.svg +++ b/src/_icons/brand-qq.svg @@ -4,10 +4,5 @@ unicode: "f606" version: "1.114" --- - - - - - - + diff --git a/src/_icons/brand-react-native.svg b/src/_icons/brand-react-native.svg index f46f7c884..ea2b9054f 100644 --- a/src/_icons/brand-react-native.svg +++ b/src/_icons/brand-react-native.svg @@ -5,11 +5,5 @@ version: "1.45" unicode: "ef73" --- - - - - - - - + diff --git a/src/_icons/brand-react.svg b/src/_icons/brand-react.svg index 6aa292a77..9c88ebcef 100644 --- a/src/_icons/brand-react.svg +++ b/src/_icons/brand-react.svg @@ -5,11 +5,5 @@ unicode: "f34c" version: "1.88" --- - - - - - - - + diff --git a/src/_icons/brand-reason.svg b/src/_icons/brand-reason.svg index 1c7c3a7ba..a715e0ecc 100644 --- a/src/_icons/brand-reason.svg +++ b/src/_icons/brand-reason.svg @@ -4,9 +4,5 @@ unicode: "f49a" version: "1.96" --- - - - - - + diff --git a/src/_icons/brand-reddit.svg b/src/_icons/brand-reddit.svg index 346a88b17..5b3d0985b 100644 --- a/src/_icons/brand-reddit.svg +++ b/src/_icons/brand-reddit.svg @@ -5,10 +5,5 @@ version: "1.15" unicode: "ec8e" --- - - - - - - + diff --git a/src/_icons/brand-redhat.svg b/src/_icons/brand-redhat.svg index 48337e159..431b79c0a 100644 --- a/src/_icons/brand-redhat.svg +++ b/src/_icons/brand-redhat.svg @@ -5,6 +5,5 @@ unicode: "f331" version: "1.86" --- - - + diff --git a/src/_icons/brand-redux.svg b/src/_icons/brand-redux.svg index 96a28780d..28418675e 100644 --- a/src/_icons/brand-redux.svg +++ b/src/_icons/brand-redux.svg @@ -5,10 +5,5 @@ version: "1.93" unicode: "f3a8" --- - - - - - - + diff --git a/src/_icons/brand-revolut.svg b/src/_icons/brand-revolut.svg index 5866cde6a..a3c9fb8f9 100644 --- a/src/_icons/brand-revolut.svg +++ b/src/_icons/brand-revolut.svg @@ -5,6 +5,5 @@ unicode: "f4da" version: "1.99" --- - - + diff --git a/src/_icons/brand-safari.svg b/src/_icons/brand-safari.svg index 07ecc5b15..98a5b0674 100644 --- a/src/_icons/brand-safari.svg +++ b/src/_icons/brand-safari.svg @@ -5,6 +5,5 @@ version: "1.9" unicode: "ec23" --- - - + diff --git a/src/_icons/brand-samsungpass.svg b/src/_icons/brand-samsungpass.svg index a6c63e2d4..cf15f16e0 100644 --- a/src/_icons/brand-samsungpass.svg +++ b/src/_icons/brand-samsungpass.svg @@ -5,7 +5,5 @@ unicode: "f4db" version: "1.99" --- - - - + diff --git a/src/_icons/brand-sass.svg b/src/_icons/brand-sass.svg index 06d95a558..e11764342 100644 --- a/src/_icons/brand-sass.svg +++ b/src/_icons/brand-sass.svg @@ -5,6 +5,5 @@ version: "1.36" unicode: "edd4" --- - - + diff --git a/src/_icons/brand-sentry.svg b/src/_icons/brand-sentry.svg index 3a94e03d4..e33ac6694 100644 --- a/src/_icons/brand-sentry.svg +++ b/src/_icons/brand-sentry.svg @@ -5,5 +5,5 @@ version: "1.36" unicode: "edd5" --- - + diff --git a/src/_icons/brand-shazam.svg b/src/_icons/brand-shazam.svg index f55c1ca8e..f0a5314fe 100644 --- a/src/_icons/brand-shazam.svg +++ b/src/_icons/brand-shazam.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edd6" --- - - - + diff --git a/src/_icons/brand-shopee.svg b/src/_icons/brand-shopee.svg index 4821c5380..d1911338c 100644 --- a/src/_icons/brand-shopee.svg +++ b/src/_icons/brand-shopee.svg @@ -5,7 +5,5 @@ version: "1.75" unicode: "f252" --- - - - + diff --git a/src/_icons/brand-skype.svg b/src/_icons/brand-skype.svg index 58056856e..50010d73a 100644 --- a/src/_icons/brand-skype.svg +++ b/src/_icons/brand-skype.svg @@ -5,6 +5,5 @@ version: "1.23" unicode: "ed02" --- - - + diff --git a/src/_icons/brand-slack.svg b/src/_icons/brand-slack.svg index a95c1b22b..ad012ab13 100644 --- a/src/_icons/brand-slack.svg +++ b/src/_icons/brand-slack.svg @@ -5,8 +5,5 @@ version: "1.13" unicode: "ec72" --- - - - - + diff --git a/src/_icons/brand-snapseed.svg b/src/_icons/brand-snapseed.svg index 09a56e0e5..e7f3dca19 100644 --- a/src/_icons/brand-snapseed.svg +++ b/src/_icons/brand-snapseed.svg @@ -5,6 +5,5 @@ version: "1.75" unicode: "f253" --- - - + diff --git a/src/_icons/brand-snowflake.svg b/src/_icons/brand-snowflake.svg index bec324bc2..7f969e118 100644 --- a/src/_icons/brand-snowflake.svg +++ b/src/_icons/brand-snowflake.svg @@ -4,11 +4,5 @@ unicode: "f615" version: "1.115" --- - - - - - - - + diff --git a/src/_icons/brand-socket-io.svg b/src/_icons/brand-socket-io.svg index 8c4b080cb..134e844f8 100644 --- a/src/_icons/brand-socket-io.svg +++ b/src/_icons/brand-socket-io.svg @@ -5,7 +5,5 @@ unicode: "f49b" version: "1.96" --- - - - + diff --git a/src/_icons/brand-solidjs.svg b/src/_icons/brand-solidjs.svg index be2b1dd68..763491811 100644 --- a/src/_icons/brand-solidjs.svg +++ b/src/_icons/brand-solidjs.svg @@ -4,11 +4,5 @@ unicode: "f5ee" version: "1.113" --- - - - - - - - + diff --git a/src/_icons/brand-soundcloud.svg b/src/_icons/brand-soundcloud.svg index 8e61c3d85..04f4206bc 100644 --- a/src/_icons/brand-soundcloud.svg +++ b/src/_icons/brand-soundcloud.svg @@ -5,8 +5,5 @@ version: "1.32" unicode: "ed6e" --- - - - - + diff --git a/src/_icons/brand-spacehey.svg b/src/_icons/brand-spacehey.svg index 1afad6158..e14a03035 100644 --- a/src/_icons/brand-spacehey.svg +++ b/src/_icons/brand-spacehey.svg @@ -5,7 +5,5 @@ unicode: "f4fc" version: "1.101" --- - - - + diff --git a/src/_icons/brand-spotify.svg b/src/_icons/brand-spotify.svg index 52c4eccc2..f082ab4e9 100644 --- a/src/_icons/brand-spotify.svg +++ b/src/_icons/brand-spotify.svg @@ -5,8 +5,5 @@ version: "1.23" unicode: "ed03" --- - - - - + diff --git a/src/_icons/brand-stackoverflow.svg b/src/_icons/brand-stackoverflow.svg index db4e8b5ce..45ea630cd 100644 --- a/src/_icons/brand-stackoverflow.svg +++ b/src/_icons/brand-stackoverflow.svg @@ -5,9 +5,5 @@ version: "1.43" unicode: "ef58" --- - - - - - + diff --git a/src/_icons/brand-stackshare.svg b/src/_icons/brand-stackshare.svg index 0067e4abf..6c5628380 100644 --- a/src/_icons/brand-stackshare.svg +++ b/src/_icons/brand-stackshare.svg @@ -4,9 +4,5 @@ unicode: "f607" version: "1.114" --- - - - - - + diff --git a/src/_icons/brand-steam.svg b/src/_icons/brand-steam.svg index fdee11a60..dc7a01acb 100644 --- a/src/_icons/brand-steam.svg +++ b/src/_icons/brand-steam.svg @@ -5,6 +5,5 @@ version: "1.32" unicode: "ed6f" --- - - + diff --git a/src/_icons/brand-storybook.svg b/src/_icons/brand-storybook.svg index e0e3840a1..81a2ef6bc 100644 --- a/src/_icons/brand-storybook.svg +++ b/src/_icons/brand-storybook.svg @@ -5,7 +5,5 @@ unicode: "f332" version: "1.86" --- - - - + diff --git a/src/_icons/brand-stripe.svg b/src/_icons/brand-stripe.svg index 5fb47ad76..57a706cda 100644 --- a/src/_icons/brand-stripe.svg +++ b/src/_icons/brand-stripe.svg @@ -5,5 +5,5 @@ version: "1.36" unicode: "edd7" --- - + diff --git a/src/_icons/brand-sublime-text.svg b/src/_icons/brand-sublime-text.svg index 5377a9657..fd52556bc 100644 --- a/src/_icons/brand-sublime-text.svg +++ b/src/_icons/brand-sublime-text.svg @@ -5,8 +5,5 @@ version: "1.45" unicode: "ef74" --- - - - - + diff --git a/src/_icons/brand-superhuman.svg b/src/_icons/brand-superhuman.svg index 31f0e19ee..cdec20fa4 100644 --- a/src/_icons/brand-superhuman.svg +++ b/src/_icons/brand-superhuman.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f50c" --- - - - + diff --git a/src/_icons/brand-supernova.svg b/src/_icons/brand-supernova.svg index c2dbcabfc..2f2ff545c 100644 --- a/src/_icons/brand-supernova.svg +++ b/src/_icons/brand-supernova.svg @@ -5,9 +5,5 @@ unicode: "f49c" version: "1.96" --- - - - - - + diff --git a/src/_icons/brand-surfshark.svg b/src/_icons/brand-surfshark.svg index c7651f4f2..422333bec 100644 --- a/src/_icons/brand-surfshark.svg +++ b/src/_icons/brand-surfshark.svg @@ -5,6 +5,5 @@ version: "1.75" unicode: "f255" --- - - + diff --git a/src/_icons/brand-svelte.svg b/src/_icons/brand-svelte.svg index 79b6e3d4d..93746b017 100644 --- a/src/_icons/brand-svelte.svg +++ b/src/_icons/brand-svelte.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0df" --- - - + diff --git a/src/_icons/brand-symfony.svg b/src/_icons/brand-symfony.svg index fb1966d8b..0abb08241 100644 --- a/src/_icons/brand-symfony.svg +++ b/src/_icons/brand-symfony.svg @@ -4,7 +4,5 @@ unicode: "f616" version: "1.115" --- - - - + diff --git a/src/_icons/brand-tabler.svg b/src/_icons/brand-tabler.svg index 3113ecdb2..32536fac0 100644 --- a/src/_icons/brand-tabler.svg +++ b/src/_icons/brand-tabler.svg @@ -5,7 +5,5 @@ version: "1.15" unicode: "ec8f" --- - - - + diff --git a/src/_icons/brand-taobao.svg b/src/_icons/brand-taobao.svg index 049742ac5..ffd3c9d1a 100644 --- a/src/_icons/brand-taobao.svg +++ b/src/_icons/brand-taobao.svg @@ -4,14 +4,5 @@ unicode: "f5ef" version: "1.113" --- - - - - - - - - - - + diff --git a/src/_icons/brand-ted.svg b/src/_icons/brand-ted.svg index a99dfe613..29eddded6 100644 --- a/src/_icons/brand-ted.svg +++ b/src/_icons/brand-ted.svg @@ -4,9 +4,5 @@ unicode: "f658" version: "1.119" --- - - - - - + diff --git a/src/_icons/brand-tether.svg b/src/_icons/brand-tether.svg index 8773f5dc4..d8ba75f20 100644 --- a/src/_icons/brand-tether.svg +++ b/src/_icons/brand-tether.svg @@ -5,7 +5,5 @@ unicode: "f5a3" version: "1.110" --- - - - + diff --git a/src/_icons/brand-threejs.svg b/src/_icons/brand-threejs.svg index 37d6e5151..6e9a1a439 100644 --- a/src/_icons/brand-threejs.svg +++ b/src/_icons/brand-threejs.svg @@ -4,8 +4,5 @@ unicode: "f5f0" version: "1.113" --- - - - - + diff --git a/src/_icons/brand-torchain.svg b/src/_icons/brand-torchain.svg index bb3fe43e6..d69f275c6 100644 --- a/src/_icons/brand-torchain.svg +++ b/src/_icons/brand-torchain.svg @@ -5,6 +5,5 @@ unicode: "f5a4" version: "1.110" --- - - + diff --git a/src/_icons/brand-toyota.svg b/src/_icons/brand-toyota.svg index f03c56dc7..d826a9304 100644 --- a/src/_icons/brand-toyota.svg +++ b/src/_icons/brand-toyota.svg @@ -5,7 +5,5 @@ version: "1.76" unicode: "f262" --- - - - + diff --git a/src/_icons/brand-trello.svg b/src/_icons/brand-trello.svg index 93688325c..79b00c793 100644 --- a/src/_icons/brand-trello.svg +++ b/src/_icons/brand-trello.svg @@ -5,7 +5,5 @@ unicode: "f39d" version: "1.92" --- - - - + diff --git a/src/_icons/brand-tripadvisor.svg b/src/_icons/brand-tripadvisor.svg index 82b80c602..bbf3e4610 100644 --- a/src/_icons/brand-tripadvisor.svg +++ b/src/_icons/brand-tripadvisor.svg @@ -5,10 +5,5 @@ category: Brand unicode: "f002" --- - - - - - - + diff --git a/src/_icons/brand-twilio.svg b/src/_icons/brand-twilio.svg index 5ddd2349c..501eae20f 100644 --- a/src/_icons/brand-twilio.svg +++ b/src/_icons/brand-twilio.svg @@ -4,9 +4,5 @@ unicode: "f617" version: "1.115" --- - - - - - + diff --git a/src/_icons/brand-twitch.svg b/src/_icons/brand-twitch.svg index 239b1d7fc..9e724481b 100644 --- a/src/_icons/brand-twitch.svg +++ b/src/_icons/brand-twitch.svg @@ -5,7 +5,5 @@ version: "1.23" unicode: "ed05" --- - - - + diff --git a/src/_icons/brand-twitter.svg b/src/_icons/brand-twitter.svg index ad95754d1..64335f95d 100644 --- a/src/_icons/brand-twitter.svg +++ b/src/_icons/brand-twitter.svg @@ -5,5 +5,5 @@ version: "1.18" unicode: "ec27" --- - + diff --git a/src/_icons/brand-typescript.svg b/src/_icons/brand-typescript.svg index dbae2cb2d..15426521d 100644 --- a/src/_icons/brand-typescript.svg +++ b/src/_icons/brand-typescript.svg @@ -4,8 +4,5 @@ unicode: "f5f1" version: "1.113" --- - - - - + diff --git a/src/_icons/brand-uber.svg b/src/_icons/brand-uber.svg index 8e51504e3..cfccf30b8 100644 --- a/src/_icons/brand-uber.svg +++ b/src/_icons/brand-uber.svg @@ -5,7 +5,5 @@ version: "1.45" unicode: "ef75" --- - - - + diff --git a/src/_icons/brand-ubuntu.svg b/src/_icons/brand-ubuntu.svg index 591718ff4..91fefb1e0 100644 --- a/src/_icons/brand-ubuntu.svg +++ b/src/_icons/brand-ubuntu.svg @@ -5,8 +5,5 @@ version: "1.44" unicode: "ef59" --- - - - - + diff --git a/src/_icons/brand-unity.svg b/src/_icons/brand-unity.svg index b32a4af16..a1eb7d78a 100644 --- a/src/_icons/brand-unity.svg +++ b/src/_icons/brand-unity.svg @@ -5,9 +5,5 @@ unicode: "f49d" version: "1.96" --- - - - - - + diff --git a/src/_icons/brand-upwork.svg b/src/_icons/brand-upwork.svg index 013e709ed..a68d7201a 100644 --- a/src/_icons/brand-upwork.svg +++ b/src/_icons/brand-upwork.svg @@ -5,5 +5,5 @@ unicode: "f39e" version: "1.92" --- - + diff --git a/src/_icons/brand-valorant.svg b/src/_icons/brand-valorant.svg index 2834ccb9f..336d9cdab 100644 --- a/src/_icons/brand-valorant.svg +++ b/src/_icons/brand-valorant.svg @@ -5,6 +5,5 @@ unicode: "f39f" version: "1.92" --- - - + diff --git a/src/_icons/brand-vimeo.svg b/src/_icons/brand-vimeo.svg index 3e3f33e2a..d7800a9c4 100644 --- a/src/_icons/brand-vimeo.svg +++ b/src/_icons/brand-vimeo.svg @@ -5,5 +5,5 @@ version: "1.23" unicode: "ed06" --- - + diff --git a/src/_icons/brand-vinted.svg b/src/_icons/brand-vinted.svg index 3208aa828..8554f4f3b 100644 --- a/src/_icons/brand-vinted.svg +++ b/src/_icons/brand-vinted.svg @@ -5,5 +5,5 @@ version: "1.71" unicode: "f20f" --- - + diff --git a/src/_icons/brand-visa.svg b/src/_icons/brand-visa.svg index dda2dfecb..ffa7e68ff 100644 --- a/src/_icons/brand-visa.svg +++ b/src/_icons/brand-visa.svg @@ -5,9 +5,5 @@ unicode: "f380" version: "1.91" --- - - - - - + diff --git a/src/_icons/brand-vite.svg b/src/_icons/brand-vite.svg index 9ad311791..102bed0f7 100644 --- a/src/_icons/brand-vite.svg +++ b/src/_icons/brand-vite.svg @@ -4,6 +4,5 @@ unicode: "f5f2" version: "1.113" --- - - + diff --git a/src/_icons/brand-vk.svg b/src/_icons/brand-vk.svg index 51589264b..c719b699a 100644 --- a/src/_icons/brand-vk.svg +++ b/src/_icons/brand-vk.svg @@ -5,5 +5,5 @@ version: "1.32" unicode: "ed72" --- - + diff --git a/src/_icons/brand-volkswagen.svg b/src/_icons/brand-volkswagen.svg index f521e1248..e144bd7d6 100644 --- a/src/_icons/brand-volkswagen.svg +++ b/src/_icons/brand-volkswagen.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f50e" --- - - - + diff --git a/src/_icons/brand-vsco.svg b/src/_icons/brand-vsco.svg index 6f055758e..ecaaf9a76 100644 --- a/src/_icons/brand-vsco.svg +++ b/src/_icons/brand-vsco.svg @@ -5,14 +5,5 @@ unicode: "f334" version: "1.86" --- - - - - - - - - - - + diff --git a/src/_icons/brand-vscode.svg b/src/_icons/brand-vscode.svg index f8c925162..234d3a851 100644 --- a/src/_icons/brand-vscode.svg +++ b/src/_icons/brand-vscode.svg @@ -5,7 +5,5 @@ unicode: "f3a0" version: "1.92" --- - - - + diff --git a/src/_icons/brand-vue.svg b/src/_icons/brand-vue.svg index 95347cebf..656269299 100644 --- a/src/_icons/brand-vue.svg +++ b/src/_icons/brand-vue.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0e0" --- - - + diff --git a/src/_icons/brand-walmart.svg b/src/_icons/brand-walmart.svg index 4c121e967..a83e79b56 100644 --- a/src/_icons/brand-walmart.svg +++ b/src/_icons/brand-walmart.svg @@ -5,10 +5,5 @@ version: "1.71" unicode: "f211" --- - - - - - - + diff --git a/src/_icons/brand-waze.svg b/src/_icons/brand-waze.svg index 3544574a0..4d3a07b5d 100644 --- a/src/_icons/brand-waze.svg +++ b/src/_icons/brand-waze.svg @@ -4,10 +4,5 @@ unicode: "f5d8" version: "1.112" --- - - - - - - + diff --git a/src/_icons/brand-webflow.svg b/src/_icons/brand-webflow.svg index f65568154..b30993613 100644 --- a/src/_icons/brand-webflow.svg +++ b/src/_icons/brand-webflow.svg @@ -5,5 +5,5 @@ version: "1.82" unicode: "f2d2" --- - + diff --git a/src/_icons/brand-wechat.svg b/src/_icons/brand-wechat.svg index da1a5097a..09635c831 100644 --- a/src/_icons/brand-wechat.svg +++ b/src/_icons/brand-wechat.svg @@ -4,10 +4,5 @@ unicode: "f5f3" version: "1.113" --- - - - - - - + diff --git a/src/_icons/brand-weibo.svg b/src/_icons/brand-weibo.svg index 893695ad1..ece47b9ff 100644 --- a/src/_icons/brand-weibo.svg +++ b/src/_icons/brand-weibo.svg @@ -4,6 +4,5 @@ unicode: "f609" version: "1.114" --- - - + diff --git a/src/_icons/brand-whatsapp.svg b/src/_icons/brand-whatsapp.svg index d40f5c8d0..c6c48f3b9 100644 --- a/src/_icons/brand-whatsapp.svg +++ b/src/_icons/brand-whatsapp.svg @@ -5,6 +5,5 @@ version: "1.13" unicode: "ec74" --- - - + diff --git a/src/_icons/brand-windows.svg b/src/_icons/brand-windows.svg index 1457708fe..9f5034964 100644 --- a/src/_icons/brand-windows.svg +++ b/src/_icons/brand-windows.svg @@ -5,7 +5,5 @@ version: "1.20" unicode: "ecd8" --- - - - + diff --git a/src/_icons/brand-windy.svg b/src/_icons/brand-windy.svg index 7903ca9de..bfcc57da5 100644 --- a/src/_icons/brand-windy.svg +++ b/src/_icons/brand-windy.svg @@ -5,6 +5,5 @@ unicode: "f4dd" version: "1.99" --- - - + diff --git a/src/_icons/brand-wish.svg b/src/_icons/brand-wish.svg index 7fe4538cb..bb1e48a0d 100644 --- a/src/_icons/brand-wish.svg +++ b/src/_icons/brand-wish.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f212" --- - - + diff --git a/src/_icons/brand-wix.svg b/src/_icons/brand-wix.svg index 46a6c118d..b80d77ab7 100644 --- a/src/_icons/brand-wix.svg +++ b/src/_icons/brand-wix.svg @@ -5,9 +5,5 @@ unicode: "f3a1" version: "1.92" --- - - - - - + diff --git a/src/_icons/brand-wordpress.svg b/src/_icons/brand-wordpress.svg index 8e7f92ab5..974d239e3 100644 --- a/src/_icons/brand-wordpress.svg +++ b/src/_icons/brand-wordpress.svg @@ -5,10 +5,5 @@ version: "1.82" unicode: "f2d3" --- - - - - - - + diff --git a/src/_icons/brand-xbox.svg b/src/_icons/brand-xbox.svg index 831fff287..c30699926 100644 --- a/src/_icons/brand-xbox.svg +++ b/src/_icons/brand-xbox.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f298" --- - - - + diff --git a/src/_icons/brand-xing.svg b/src/_icons/brand-xing.svg index abad34c70..578282162 100644 --- a/src/_icons/brand-xing.svg +++ b/src/_icons/brand-xing.svg @@ -5,6 +5,5 @@ version: "1.72" unicode: "f21a" --- - - + diff --git a/src/_icons/brand-yahoo.svg b/src/_icons/brand-yahoo.svg index 6e7b8fec9..0a6fc187b 100644 --- a/src/_icons/brand-yahoo.svg +++ b/src/_icons/brand-yahoo.svg @@ -5,11 +5,5 @@ version: "1.32" unicode: "ed73" --- - - - - - - - + diff --git a/src/_icons/brand-yatse.svg b/src/_icons/brand-yatse.svg index e91a40501..51066e33c 100644 --- a/src/_icons/brand-yatse.svg +++ b/src/_icons/brand-yatse.svg @@ -5,5 +5,5 @@ version: "1.71" unicode: "f213" --- - + diff --git a/src/_icons/brand-ycombinator.svg b/src/_icons/brand-ycombinator.svg index 3b97ecdde..75cbcf286 100644 --- a/src/_icons/brand-ycombinator.svg +++ b/src/_icons/brand-ycombinator.svg @@ -5,7 +5,5 @@ version: "1.36" unicode: "edd9" --- - - - + diff --git a/src/_icons/brand-youtube-kids.svg b/src/_icons/brand-youtube-kids.svg index 1ad249cb9..64a29251b 100644 --- a/src/_icons/brand-youtube-kids.svg +++ b/src/_icons/brand-youtube-kids.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f214" --- - - + diff --git a/src/_icons/brand-youtube.svg b/src/_icons/brand-youtube.svg index 6cf0d14dc..eb5de6564 100644 --- a/src/_icons/brand-youtube.svg +++ b/src/_icons/brand-youtube.svg @@ -5,6 +5,5 @@ version: "1.15" unicode: "ec90" --- - - + diff --git a/src/_icons/brand-zalando.svg b/src/_icons/brand-zalando.svg index ba68cf7ea..e50e796dd 100644 --- a/src/_icons/brand-zalando.svg +++ b/src/_icons/brand-zalando.svg @@ -5,5 +5,5 @@ unicode: "f49e" version: "1.96" --- - + diff --git a/src/_icons/brand-zapier.svg b/src/_icons/brand-zapier.svg index cfc2816b4..1f49316f2 100644 --- a/src/_icons/brand-zapier.svg +++ b/src/_icons/brand-zapier.svg @@ -5,12 +5,5 @@ unicode: "f49f" version: "1.96" --- - - - - - - - - + diff --git a/src/_icons/brand-zhihu.svg b/src/_icons/brand-zhihu.svg index 7a024d424..35e3c2f15 100644 --- a/src/_icons/brand-zhihu.svg +++ b/src/_icons/brand-zhihu.svg @@ -4,10 +4,5 @@ unicode: "f60a" version: "1.114" --- - - - - - - + diff --git a/src/_icons/brand-zoom.svg b/src/_icons/brand-zoom.svg index 3a4805b2e..92a4d882a 100644 --- a/src/_icons/brand-zoom.svg +++ b/src/_icons/brand-zoom.svg @@ -5,6 +5,5 @@ version: "1.71" unicode: "f215" --- - - + diff --git a/src/_icons/brand-zulip.svg b/src/_icons/brand-zulip.svg index 9ca02ce45..9cd0bf652 100644 --- a/src/_icons/brand-zulip.svg +++ b/src/_icons/brand-zulip.svg @@ -5,6 +5,5 @@ unicode: "f4de" version: "1.99" --- - - + diff --git a/src/_icons/bread-off.svg b/src/_icons/bread-off.svg index d29b42d2b..99e9785a7 100644 --- a/src/_icons/bread-off.svg +++ b/src/_icons/bread-off.svg @@ -5,6 +5,5 @@ unicode: "f3cb" version: "1.94" --- - - + diff --git a/src/_icons/bread.svg b/src/_icons/bread.svg index 4219ca5c1..233637bcd 100644 --- a/src/_icons/bread.svg +++ b/src/_icons/bread.svg @@ -5,5 +5,5 @@ version: "1.48" unicode: "efa3" --- - + diff --git a/src/_icons/briefcase-off.svg b/src/_icons/briefcase-off.svg index bf1f51039..50ab91d68 100644 --- a/src/_icons/briefcase-off.svg +++ b/src/_icons/briefcase-off.svg @@ -4,9 +4,5 @@ unicode: "f3cc" version: "1.94" --- - - - - - + diff --git a/src/_icons/briefcase.svg b/src/_icons/briefcase.svg index 006ad2b9b..f25fe9408 100644 --- a/src/_icons/briefcase.svg +++ b/src/_icons/briefcase.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "ea46" --- - - - - + diff --git a/src/_icons/brightness-2.svg b/src/_icons/brightness-2.svg index 63eccc58c..bc7c5d4f1 100644 --- a/src/_icons/brightness-2.svg +++ b/src/_icons/brightness-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee19" --- - - + diff --git a/src/_icons/brightness-down.svg b/src/_icons/brightness-down.svg index 7e5593e35..31be2b3b7 100644 --- a/src/_icons/brightness-down.svg +++ b/src/_icons/brightness-down.svg @@ -5,13 +5,5 @@ version: "1.3" unicode: "eb7d" --- - - - - - - - - - + diff --git a/src/_icons/brightness-half.svg b/src/_icons/brightness-half.svg index 50641c700..e4acd31ee 100644 --- a/src/_icons/brightness-half.svg +++ b/src/_icons/brightness-half.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee1a" --- - - + diff --git a/src/_icons/brightness-off.svg b/src/_icons/brightness-off.svg index ebbb6602d..0ae50fac6 100644 --- a/src/_icons/brightness-off.svg +++ b/src/_icons/brightness-off.svg @@ -5,10 +5,5 @@ unicode: "f3cd" version: "1.94" --- - - - - - - + diff --git a/src/_icons/brightness-up.svg b/src/_icons/brightness-up.svg index 8f4e628b8..4a8d24942 100644 --- a/src/_icons/brightness-up.svg +++ b/src/_icons/brightness-up.svg @@ -5,13 +5,5 @@ version: "1.3" unicode: "eb7e" --- - - - - - - - - - + diff --git a/src/_icons/brightness.svg b/src/_icons/brightness.svg index d143d34a5..67ccb4ce8 100644 --- a/src/_icons/brightness.svg +++ b/src/_icons/brightness.svg @@ -5,9 +5,5 @@ version: "1.3" unicode: "eb7f" --- - - - - - + diff --git a/src/_icons/broadcast-off.svg b/src/_icons/broadcast-off.svg index 3631e4653..fa1e021bc 100644 --- a/src/_icons/broadcast-off.svg +++ b/src/_icons/broadcast-off.svg @@ -5,8 +5,5 @@ version: "1.69" unicode: "f1e8" --- - - - - + diff --git a/src/_icons/broadcast.svg b/src/_icons/broadcast.svg index b0ae1e277..841ac86d3 100644 --- a/src/_icons/broadcast.svg +++ b/src/_icons/broadcast.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1e9" --- - - - + diff --git a/src/_icons/browser-check.svg b/src/_icons/browser-check.svg index ffba5bf49..de68727a4 100644 --- a/src/_icons/browser-check.svg +++ b/src/_icons/browser-check.svg @@ -5,8 +5,5 @@ version: "1.51" unicode: "efd6" --- - - - - + diff --git a/src/_icons/browser-off.svg b/src/_icons/browser-off.svg index e19d112fe..4bfc973a4 100644 --- a/src/_icons/browser-off.svg +++ b/src/_icons/browser-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0c1" --- - - - + diff --git a/src/_icons/browser-plus.svg b/src/_icons/browser-plus.svg index 720674160..9dac05e03 100644 --- a/src/_icons/browser-plus.svg +++ b/src/_icons/browser-plus.svg @@ -5,9 +5,5 @@ version: "1.51" unicode: "efd7" --- - - - - - + diff --git a/src/_icons/browser-x.svg b/src/_icons/browser-x.svg index cb84a9850..4eb096fb4 100644 --- a/src/_icons/browser-x.svg +++ b/src/_icons/browser-x.svg @@ -5,9 +5,5 @@ version: "1.51" unicode: "efd8" --- - - - - - + diff --git a/src/_icons/browser.svg b/src/_icons/browser.svg index 7c339af58..144833cc8 100644 --- a/src/_icons/browser.svg +++ b/src/_icons/browser.svg @@ -5,7 +5,5 @@ version: "1.5" unicode: "ebb7" --- - - - + diff --git a/src/_icons/brush-off.svg b/src/_icons/brush-off.svg index 7de066672..fa8f10ef3 100644 --- a/src/_icons/brush-off.svg +++ b/src/_icons/brush-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0c2" --- - - - - + diff --git a/src/_icons/brush.svg b/src/_icons/brush.svg index a1ae4743f..0b972f7f5 100644 --- a/src/_icons/brush.svg +++ b/src/_icons/brush.svg @@ -5,8 +5,5 @@ version: "1.5" unicode: "ebb8" --- - - - - + diff --git a/src/_icons/bucket-droplet.svg b/src/_icons/bucket-droplet.svg index d9389c680..435a04d4b 100644 --- a/src/_icons/bucket-droplet.svg +++ b/src/_icons/bucket-droplet.svg @@ -5,7 +5,5 @@ unicode: "f56a" version: "1.107" --- - - - + diff --git a/src/_icons/bucket-off.svg b/src/_icons/bucket-off.svg index d8578a037..56ba02237 100644 --- a/src/_icons/bucket-off.svg +++ b/src/_icons/bucket-off.svg @@ -1,11 +1,9 @@ --- tags: [collection, container, water, liquid] +category: Design version: "1.65" unicode: "f103" -category: Design --- - - - + diff --git a/src/_icons/bucket.svg b/src/_icons/bucket.svg index 13b0616ab..84e97c29c 100644 --- a/src/_icons/bucket.svg +++ b/src/_icons/bucket.svg @@ -5,6 +5,5 @@ unicode: "ea47" category: Design --- - - + diff --git a/src/_icons/bug-off.svg b/src/_icons/bug-off.svg index e7d908dde..e1296a14f 100644 --- a/src/_icons/bug-off.svg +++ b/src/_icons/bug-off.svg @@ -5,13 +5,5 @@ version: "1.63" unicode: "f0c3" --- - - - - - - - - - + diff --git a/src/_icons/bug.svg b/src/_icons/bug.svg index 4b86452a3..2eb152a85 100644 --- a/src/_icons/bug.svg +++ b/src/_icons/bug.svg @@ -5,13 +5,5 @@ version: "1.1" unicode: "ea48" --- - - - - - - - - - + diff --git a/src/_icons/building-arch.svg b/src/_icons/building-arch.svg index e49d96480..98e381ba5 100644 --- a/src/_icons/building-arch.svg +++ b/src/_icons/building-arch.svg @@ -5,7 +5,5 @@ version: "1.1" unicode: "ea49" --- - - - + diff --git a/src/_icons/building-bank.svg b/src/_icons/building-bank.svg index 404c386f0..150c6de0b 100644 --- a/src/_icons/building-bank.svg +++ b/src/_icons/building-bank.svg @@ -5,12 +5,5 @@ version: "1.7" unicode: "ebe2" --- - - - - - - - - + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg index b37abe7f0..5d40de0d4 100644 --- a/src/_icons/building-bridge.svg +++ b/src/_icons/building-bridge.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ea4b" --- - - - - - + diff --git a/src/_icons/building-broadcast-tower.svg b/src/_icons/building-broadcast-tower.svg index 223149d89..b6533af58 100644 --- a/src/_icons/building-broadcast-tower.svg +++ b/src/_icons/building-broadcast-tower.svg @@ -5,9 +5,5 @@ unicode: "f4be" version: "1.98" --- - - - - - + diff --git a/src/_icons/building-carousel.svg b/src/_icons/building-carousel.svg index 220d969d0..3a31e6ced 100644 --- a/src/_icons/building-carousel.svg +++ b/src/_icons/building-carousel.svg @@ -5,11 +5,5 @@ version: "1.34" unicode: "ed87" --- - - - - - - - + diff --git a/src/_icons/building-castle.svg b/src/_icons/building-castle.svg index d56a23ce7..19fcc9606 100644 --- a/src/_icons/building-castle.svg +++ b/src/_icons/building-castle.svg @@ -5,6 +5,5 @@ version: "1.34" unicode: "ed88" --- - - + diff --git a/src/_icons/building-church.svg b/src/_icons/building-church.svg index 4f2fb02e4..68c0a68b1 100644 --- a/src/_icons/building-church.svg +++ b/src/_icons/building-church.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ea4c" --- - - - - - + diff --git a/src/_icons/building-circus.svg b/src/_icons/building-circus.svg index 2b43f9909..73de34664 100644 --- a/src/_icons/building-circus.svg +++ b/src/_icons/building-circus.svg @@ -5,10 +5,5 @@ unicode: "f4bf" version: "1.98" --- - - - - - - + diff --git a/src/_icons/building-community.svg b/src/_icons/building-community.svg index 3973ac27a..7bb66147b 100644 --- a/src/_icons/building-community.svg +++ b/src/_icons/building-community.svg @@ -5,9 +5,5 @@ version: "1.8" unicode: "ebf6" --- - - - - - + diff --git a/src/_icons/building-cottage.svg b/src/_icons/building-cottage.svg index 873ccebd4..d5d7ea81b 100644 --- a/src/_icons/building-cottage.svg +++ b/src/_icons/building-cottage.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee1b" --- - - - - + diff --git a/src/_icons/building-estate.svg b/src/_icons/building-estate.svg index 2e5e2c8ea..3e1aacd1a 100644 --- a/src/_icons/building-estate.svg +++ b/src/_icons/building-estate.svg @@ -5,11 +5,5 @@ unicode: "f5a5" version: "1.110" --- - - - - - - - + diff --git a/src/_icons/building-factory-2.svg b/src/_icons/building-factory-2.svg index 2e3097003..96e2aecaf 100644 --- a/src/_icons/building-factory-2.svg +++ b/src/_icons/building-factory-2.svg @@ -5,9 +5,5 @@ version: "1.60" unicode: "f082" --- - - - - - + diff --git a/src/_icons/building-factory.svg b/src/_icons/building-factory.svg index 73ea6b7ec..07e50eecd 100644 --- a/src/_icons/building-factory.svg +++ b/src/_icons/building-factory.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee1c" --- - - - - + diff --git a/src/_icons/building-fortress.svg b/src/_icons/building-fortress.svg index 5cc13259b..9dca9c4bf 100644 --- a/src/_icons/building-fortress.svg +++ b/src/_icons/building-fortress.svg @@ -5,11 +5,5 @@ version: "1.34" unicode: "ed89" --- - - - - - - - + diff --git a/src/_icons/building-hospital.svg b/src/_icons/building-hospital.svg index ac820b489..6b27556dd 100644 --- a/src/_icons/building-hospital.svg +++ b/src/_icons/building-hospital.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ea4d" --- - - - - - + diff --git a/src/_icons/building-lighthouse.svg b/src/_icons/building-lighthouse.svg index 50509376d..8ba6ce3e4 100644 --- a/src/_icons/building-lighthouse.svg +++ b/src/_icons/building-lighthouse.svg @@ -5,8 +5,5 @@ version: "1.34" unicode: "ed8a" --- - - - - + diff --git a/src/_icons/building-monument.svg b/src/_icons/building-monument.svg index 3af4786bf..43e57a6a8 100644 --- a/src/_icons/building-monument.svg +++ b/src/_icons/building-monument.svg @@ -5,7 +5,5 @@ version: "1.26" unicode: "ed26" --- - - - + diff --git a/src/_icons/building-pavilion.svg b/src/_icons/building-pavilion.svg index e7d1a4e44..949cc8f23 100644 --- a/src/_icons/building-pavilion.svg +++ b/src/_icons/building-pavilion.svg @@ -5,8 +5,5 @@ version: "1.8" unicode: "ebf7" --- - - - - + diff --git a/src/_icons/building-skyscraper.svg b/src/_icons/building-skyscraper.svg index a0fd0a852..82baeac26 100644 --- a/src/_icons/building-skyscraper.svg +++ b/src/_icons/building-skyscraper.svg @@ -5,11 +5,5 @@ version: "1.8" unicode: "ec39" --- - - - - - - - + diff --git a/src/_icons/building-stadium.svg b/src/_icons/building-stadium.svg index 0eacf64e4..b0205499c 100644 --- a/src/_icons/building-stadium.svg +++ b/src/_icons/building-stadium.svg @@ -4,8 +4,5 @@ unicode: "f641" version: "1.118" --- - - - - + diff --git a/src/_icons/building-store.svg b/src/_icons/building-store.svg index 38ccb8f5b..f8ce48515 100644 --- a/src/_icons/building-store.svg +++ b/src/_icons/building-store.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ea4e" --- - - - - - + diff --git a/src/_icons/building-tunnel.svg b/src/_icons/building-tunnel.svg index 02e870fc2..c7d654021 100644 --- a/src/_icons/building-tunnel.svg +++ b/src/_icons/building-tunnel.svg @@ -5,13 +5,5 @@ unicode: "f5a6" version: "1.110" --- - - - - - - - - - + diff --git a/src/_icons/building-warehouse.svg b/src/_icons/building-warehouse.svg index ff1e4ce38..56a74d238 100644 --- a/src/_icons/building-warehouse.svg +++ b/src/_icons/building-warehouse.svg @@ -5,7 +5,5 @@ version: "1.7" unicode: "ebe3" --- - - - + diff --git a/src/_icons/building-wind-turbine.svg b/src/_icons/building-wind-turbine.svg index 9d1c38ab5..b85a0f255 100644 --- a/src/_icons/building-wind-turbine.svg +++ b/src/_icons/building-wind-turbine.svg @@ -5,11 +5,5 @@ unicode: "f4c0" version: "1.98" --- - - - - - - - + diff --git a/src/_icons/building.svg b/src/_icons/building.svg index 6687b5211..03b79b2f4 100644 --- a/src/_icons/building.svg +++ b/src/_icons/building.svg @@ -5,12 +5,5 @@ version: "1.1" unicode: "ea4f" --- - - - - - - - - + diff --git a/src/_icons/bulb-filled.svg b/src/_icons/bulb-filled.svg new file mode 100644 index 000000000..5f10fa889 --- /dev/null +++ b/src/_icons/bulb-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66a" +--- + + + diff --git a/src/_icons/bulb-off.svg b/src/_icons/bulb-off.svg index 93994259d..453541478 100644 --- a/src/_icons/bulb-off.svg +++ b/src/_icons/bulb-off.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "ea50" --- - - - - + diff --git a/src/_icons/bulb.svg b/src/_icons/bulb.svg index 4a0798e9e..492eb88ab 100644 --- a/src/_icons/bulb.svg +++ b/src/_icons/bulb.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "ea51" --- - - - + diff --git a/src/_icons/bulldozer.svg b/src/_icons/bulldozer.svg index 47e28d9e3..9fe6007b9 100644 --- a/src/_icons/bulldozer.svg +++ b/src/_icons/bulldozer.svg @@ -5,12 +5,5 @@ version: "1.34" unicode: "ee1d" --- - - - - - - - - + diff --git a/src/_icons/bus-off.svg b/src/_icons/bus-off.svg index c0306a186..195c9fb9f 100644 --- a/src/_icons/bus-off.svg +++ b/src/_icons/bus-off.svg @@ -5,12 +5,5 @@ unicode: "f3ce" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/bus-stop.svg b/src/_icons/bus-stop.svg index e51843251..4f8407a16 100644 --- a/src/_icons/bus-stop.svg +++ b/src/_icons/bus-stop.svg @@ -5,12 +5,5 @@ version: "1.82" unicode: "f2d4" --- - - - - - - - - + diff --git a/src/_icons/bus.svg b/src/_icons/bus.svg index ea2a385fb..a71aba130 100644 --- a/src/_icons/bus.svg +++ b/src/_icons/bus.svg @@ -5,11 +5,5 @@ version: "1.7" unicode: "ebe4" --- - - - - - - - + diff --git a/src/_icons/businessplan.svg b/src/_icons/businessplan.svg index c522e903c..24ada4543 100644 --- a/src/_icons/businessplan.svg +++ b/src/_icons/businessplan.svg @@ -4,10 +4,5 @@ version: "1.39" unicode: "ee1e" --- - - - - - - + diff --git a/src/_icons/butterfly.svg b/src/_icons/butterfly.svg index 9fb8a3c11..0971cf02f 100644 --- a/src/_icons/butterfly.svg +++ b/src/_icons/butterfly.svg @@ -5,7 +5,5 @@ category: Nature unicode: "efd9" --- - - - + diff --git a/src/_icons/cactus-off.svg b/src/_icons/cactus-off.svg index 93f83c270..b2b1e60b8 100644 --- a/src/_icons/cactus-off.svg +++ b/src/_icons/cactus-off.svg @@ -5,9 +5,5 @@ unicode: "f3cf" version: "1.94" --- - - - - - + diff --git a/src/_icons/cactus.svg b/src/_icons/cactus.svg index 4ba3d5a72..de0e54c53 100644 --- a/src/_icons/cactus.svg +++ b/src/_icons/cactus.svg @@ -5,8 +5,5 @@ version: "1.72" unicode: "f21b" --- - - - - + diff --git a/src/_icons/cake-off.svg b/src/_icons/cake-off.svg index e1e49ff57..a655d817d 100644 --- a/src/_icons/cake-off.svg +++ b/src/_icons/cake-off.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f104" --- - - - - + diff --git a/src/_icons/cake.svg b/src/_icons/cake.svg index bfdc2a54c..3e22e990d 100644 --- a/src/_icons/cake.svg +++ b/src/_icons/cake.svg @@ -4,7 +4,5 @@ version: "1.54" unicode: "f00f" --- - - - + diff --git a/src/_icons/calculator-off.svg b/src/_icons/calculator-off.svg index 63ccf737a..8ddecfa2c 100644 --- a/src/_icons/calculator-off.svg +++ b/src/_icons/calculator-off.svg @@ -4,12 +4,5 @@ version: "1.63" unicode: "f0c4" --- - - - - - - - - + diff --git a/src/_icons/calculator.svg b/src/_icons/calculator.svg index 4e95d704e..dc21dd307 100644 --- a/src/_icons/calculator.svg +++ b/src/_icons/calculator.svg @@ -4,12 +4,5 @@ version: "1.3" unicode: "eb80" --- - - - - - - - - + diff --git a/src/_icons/calendar-due.svg b/src/_icons/calendar-due.svg index b79cadc10..5197babb2 100644 --- a/src/_icons/calendar-due.svg +++ b/src/_icons/calendar-due.svg @@ -3,9 +3,5 @@ unicode: "f621" version: "1.116" --- - - - - - + diff --git a/src/_icons/calendar-event.svg b/src/_icons/calendar-event.svg index 3b453dcf9..748d86480 100644 --- a/src/_icons/calendar-event.svg +++ b/src/_icons/calendar-event.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "ea52" --- - - - - - + diff --git a/src/_icons/calendar-minus.svg b/src/_icons/calendar-minus.svg index 166d74fcb..c9fe19003 100644 --- a/src/_icons/calendar-minus.svg +++ b/src/_icons/calendar-minus.svg @@ -5,9 +5,5 @@ version: "1.5" unicode: "ebb9" --- - - - - - + diff --git a/src/_icons/calendar-off.svg b/src/_icons/calendar-off.svg index fb428340d..1e2dc2f4f 100644 --- a/src/_icons/calendar-off.svg +++ b/src/_icons/calendar-off.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ee1f" --- - - - - - - - + diff --git a/src/_icons/calendar-plus.svg b/src/_icons/calendar-plus.svg index 13fe315b5..381483125 100644 --- a/src/_icons/calendar-plus.svg +++ b/src/_icons/calendar-plus.svg @@ -5,10 +5,5 @@ version: "1.5" unicode: "ebba" --- - - - - - - + diff --git a/src/_icons/calendar-stats.svg b/src/_icons/calendar-stats.svg index 5f257c736..19fe779c2 100644 --- a/src/_icons/calendar-stats.svg +++ b/src/_icons/calendar-stats.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee20" --- - - - - - - + diff --git a/src/_icons/calendar-time.svg b/src/_icons/calendar-time.svg index fbd8d4bb3..953b0efad 100644 --- a/src/_icons/calendar-time.svg +++ b/src/_icons/calendar-time.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee21" --- - - - - - - + diff --git a/src/_icons/calendar.svg b/src/_icons/calendar.svg index a9312b8f0..844986057 100644 --- a/src/_icons/calendar.svg +++ b/src/_icons/calendar.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "ea53" --- - - - - - - + diff --git a/src/_icons/camera-minus.svg b/src/_icons/camera-minus.svg index bc72d4e47..c1a2c0aca 100644 --- a/src/_icons/camera-minus.svg +++ b/src/_icons/camera-minus.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec3a" --- - - - + diff --git a/src/_icons/camera-off.svg b/src/_icons/camera-off.svg index 9a7ef3d9c..3423483ca 100644 --- a/src/_icons/camera-off.svg +++ b/src/_icons/camera-off.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ecee" --- - - - + diff --git a/src/_icons/camera-plus.svg b/src/_icons/camera-plus.svg index 506b4b3f2..308b8eea6 100644 --- a/src/_icons/camera-plus.svg +++ b/src/_icons/camera-plus.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec3b" --- - - - - + diff --git a/src/_icons/camera-rotate.svg b/src/_icons/camera-rotate.svg index 6f155cc62..f17e76951 100644 --- a/src/_icons/camera-rotate.svg +++ b/src/_icons/camera-rotate.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee22" --- - - - - + diff --git a/src/_icons/camera-selfie.svg b/src/_icons/camera-selfie.svg index 2d91fc7c7..6b05c29ec 100644 --- a/src/_icons/camera-selfie.svg +++ b/src/_icons/camera-selfie.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee23" --- - - - - + diff --git a/src/_icons/camera.svg b/src/_icons/camera.svg index d00e54e8e..2789e4520 100644 --- a/src/_icons/camera.svg +++ b/src/_icons/camera.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea54" --- - - + diff --git a/src/_icons/campfire.svg b/src/_icons/campfire.svg index 4c0826056..22736a3a9 100644 --- a/src/_icons/campfire.svg +++ b/src/_icons/campfire.svg @@ -4,7 +4,5 @@ unicode: "f5a7" version: "1.110" --- - - - + diff --git a/src/_icons/candle.svg b/src/_icons/candle.svg index 550f053c3..f369b1353 100644 --- a/src/_icons/candle.svg +++ b/src/_icons/candle.svg @@ -4,6 +4,5 @@ version: "1.50" unicode: "efc6" --- - - + diff --git a/src/_icons/candy-off.svg b/src/_icons/candy-off.svg index 1270c596f..3841c97b2 100644 --- a/src/_icons/candy-off.svg +++ b/src/_icons/candy-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0c5" --- - - - - + diff --git a/src/_icons/candy.svg b/src/_icons/candy.svg index f58ced0d0..d22e4db49 100644 --- a/src/_icons/candy.svg +++ b/src/_icons/candy.svg @@ -5,7 +5,5 @@ version: "1.40" unicode: "ef0d" --- - - - + diff --git a/src/_icons/cannabis.svg b/src/_icons/cannabis.svg index 583f8ea87..1c5d340b5 100644 --- a/src/_icons/cannabis.svg +++ b/src/_icons/cannabis.svg @@ -4,6 +4,5 @@ unicode: "f4c1" version: "1.98" --- - - + diff --git a/src/_icons/capture-off.svg b/src/_icons/capture-off.svg index f5b487526..94ebce015 100644 --- a/src/_icons/capture-off.svg +++ b/src/_icons/capture-off.svg @@ -5,10 +5,5 @@ version: "1.63" unicode: "f0c6" --- - - - - - - + diff --git a/src/_icons/capture.svg b/src/_icons/capture.svg index 4927b92d8..1cd164c44 100644 --- a/src/_icons/capture.svg +++ b/src/_icons/capture.svg @@ -5,9 +5,5 @@ version: "1.11" unicode: "ec3c" --- - - - - - + diff --git a/src/_icons/car-crane.svg b/src/_icons/car-crane.svg index 7bff94e2f..66507f665 100644 --- a/src/_icons/car-crane.svg +++ b/src/_icons/car-crane.svg @@ -5,11 +5,5 @@ version: "1.41" unicode: "ef25" --- - - - - - - - + diff --git a/src/_icons/car-crash.svg b/src/_icons/car-crash.svg index 0cb4319e4..11388c387 100644 --- a/src/_icons/car-crash.svg +++ b/src/_icons/car-crash.svg @@ -5,10 +5,5 @@ version: "1.48" unicode: "efa4" --- - - - - - - + diff --git a/src/_icons/car-off.svg b/src/_icons/car-off.svg index a41678316..028461049 100644 --- a/src/_icons/car-off.svg +++ b/src/_icons/car-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0c7" --- - - - - + diff --git a/src/_icons/car-turbine.svg b/src/_icons/car-turbine.svg index 675352c74..f187917fb 100644 --- a/src/_icons/car-turbine.svg +++ b/src/_icons/car-turbine.svg @@ -5,13 +5,5 @@ unicode: "f4fd" version: "1.101" --- - - - - - - - - - + diff --git a/src/_icons/car.svg b/src/_icons/car.svg index dc471249b..acb90dfc1 100644 --- a/src/_icons/car.svg +++ b/src/_icons/car.svg @@ -5,7 +5,5 @@ version: "1.5" unicode: "ebbb" --- - - - + diff --git a/src/_icons/caravan.svg b/src/_icons/caravan.svg index 26637580a..c85a09476 100644 --- a/src/_icons/caravan.svg +++ b/src/_icons/caravan.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec7c" --- - - - - + diff --git a/src/_icons/cardboards-off.svg b/src/_icons/cardboards-off.svg index 99f4f3395..08fa587b6 100644 --- a/src/_icons/cardboards-off.svg +++ b/src/_icons/cardboards-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0c8" --- - - - - + diff --git a/src/_icons/cardboards.svg b/src/_icons/cardboards.svg index 43fad4661..7a708d32a 100644 --- a/src/_icons/cardboards.svg +++ b/src/_icons/cardboards.svg @@ -5,7 +5,5 @@ version: "1.33" unicode: "ed74" --- - - - + diff --git a/src/_icons/cards.svg b/src/_icons/cards.svg index 8e162e48a..76ac978c0 100644 --- a/src/_icons/cards.svg +++ b/src/_icons/cards.svg @@ -4,7 +4,5 @@ version: "1.102" unicode: "f510" --- - - - + diff --git a/src/_icons/carousel-horizontal.svg b/src/_icons/carousel-horizontal.svg index 1d27e40d3..f0a393c9b 100644 --- a/src/_icons/carousel-horizontal.svg +++ b/src/_icons/carousel-horizontal.svg @@ -3,7 +3,5 @@ unicode: "f659" version: "1.119" --- - - - + diff --git a/src/_icons/carousel-vertical.svg b/src/_icons/carousel-vertical.svg index 41831747a..def29a37a 100644 --- a/src/_icons/carousel-vertical.svg +++ b/src/_icons/carousel-vertical.svg @@ -3,7 +3,5 @@ unicode: "f65a" version: "1.119" --- - - - + diff --git a/src/_icons/carrot-off.svg b/src/_icons/carrot-off.svg index b21273d4e..3a6df1727 100644 --- a/src/_icons/carrot-off.svg +++ b/src/_icons/carrot-off.svg @@ -5,9 +5,5 @@ unicode: "f3d0" version: "1.94" --- - - - - - + diff --git a/src/_icons/carrot.svg b/src/_icons/carrot.svg index e628cc4d3..50d7e5c0d 100644 --- a/src/_icons/carrot.svg +++ b/src/_icons/carrot.svg @@ -5,9 +5,5 @@ version: "1.72" unicode: "f21c" --- - - - - - + diff --git a/src/_icons/cash-banknote-off.svg b/src/_icons/cash-banknote-off.svg index 9da4ed3e6..5f61d6e21 100644 --- a/src/_icons/cash-banknote-off.svg +++ b/src/_icons/cash-banknote-off.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee24" --- - - - - - + diff --git a/src/_icons/cash-banknote.svg b/src/_icons/cash-banknote.svg index 1e42daf47..8bfd16409 100644 --- a/src/_icons/cash-banknote.svg +++ b/src/_icons/cash-banknote.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee25" --- - - - - + diff --git a/src/_icons/cash-off.svg b/src/_icons/cash-off.svg index a90223e3a..cd627186a 100644 --- a/src/_icons/cash-off.svg +++ b/src/_icons/cash-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f105" --- - - - - + diff --git a/src/_icons/cash.svg b/src/_icons/cash.svg index a71b60aed..0c59f765c 100644 --- a/src/_icons/cash.svg +++ b/src/_icons/cash.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea55" --- - - - + diff --git a/src/_icons/cast-off.svg b/src/_icons/cast-off.svg index 3c81ea6dd..fce8c44a5 100644 --- a/src/_icons/cast-off.svg +++ b/src/_icons/cast-off.svg @@ -5,9 +5,5 @@ version: "1.63" unicode: "f0c9" --- - - - - - + diff --git a/src/_icons/cast.svg b/src/_icons/cast.svg index 6642270f8..4f46a6001 100644 --- a/src/_icons/cast.svg +++ b/src/_icons/cast.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea56" --- - - - - + diff --git a/src/_icons/cat.svg b/src/_icons/cat.svg index 61e9e5d59..83bfb96ec 100644 --- a/src/_icons/cat.svg +++ b/src/_icons/cat.svg @@ -4,10 +4,5 @@ unicode: "f65b" version: "1.119" --- - - - - - - + diff --git a/src/_icons/category-2.svg b/src/_icons/category-2.svg index d38c499ff..0bd505e65 100644 --- a/src/_icons/category-2.svg +++ b/src/_icons/category-2.svg @@ -5,8 +5,5 @@ version: "1.70" unicode: "f1f5" --- - - - - + diff --git a/src/_icons/category.svg b/src/_icons/category.svg index b25898375..426d53d16 100644 --- a/src/_icons/category.svg +++ b/src/_icons/category.svg @@ -5,8 +5,5 @@ version: "1.70" unicode: "f1f6" --- - - - - + diff --git a/src/_icons/ce-off.svg b/src/_icons/ce-off.svg index 2495c2b1e..a6177bc8a 100644 --- a/src/_icons/ce-off.svg +++ b/src/_icons/ce-off.svg @@ -5,10 +5,5 @@ version: "1.63" unicode: "f0ca" --- - - - - - - + diff --git a/src/_icons/ce.svg b/src/_icons/ce.svg index 4eae45e37..fa00495d9 100644 --- a/src/_icons/ce.svg +++ b/src/_icons/ce.svg @@ -5,7 +5,5 @@ version: "1.33" unicode: "ed75" --- - - - + diff --git a/src/_icons/cell-signal-2.svg b/src/_icons/cell-signal-2.svg index f7dc781e9..a75cdb6b8 100644 --- a/src/_icons/cell-signal-2.svg +++ b/src/_icons/cell-signal-2.svg @@ -5,6 +5,5 @@ category: Devices unicode: "f084" --- - - + diff --git a/src/_icons/cell-signal-3.svg b/src/_icons/cell-signal-3.svg index f6e44ce5f..73f9f275a 100644 --- a/src/_icons/cell-signal-3.svg +++ b/src/_icons/cell-signal-3.svg @@ -5,6 +5,5 @@ category: Devices unicode: "f085" --- - - + diff --git a/src/_icons/cell-signal-4.svg b/src/_icons/cell-signal-4.svg index 33c6edb86..67da0b906 100644 --- a/src/_icons/cell-signal-4.svg +++ b/src/_icons/cell-signal-4.svg @@ -5,6 +5,5 @@ category: Devices unicode: "f086" --- - - + diff --git a/src/_icons/cell-signal-5.svg b/src/_icons/cell-signal-5.svg index b329c32db..b40531cb5 100644 --- a/src/_icons/cell-signal-5.svg +++ b/src/_icons/cell-signal-5.svg @@ -5,8 +5,5 @@ category: Devices unicode: "f087" --- - - - - + diff --git a/src/_icons/cell-signal-off.svg b/src/_icons/cell-signal-off.svg index 0dec8ec16..06aaba15a 100644 --- a/src/_icons/cell-signal-off.svg +++ b/src/_icons/cell-signal-off.svg @@ -5,6 +5,5 @@ category: Devices unicode: "f088" --- - - + diff --git a/src/_icons/cell.svg b/src/_icons/cell.svg index ad9c3b8b5..de23a3ef7 100644 --- a/src/_icons/cell.svg +++ b/src/_icons/cell.svg @@ -4,7 +4,5 @@ version: "1.58" unicode: "f05f" --- - - - + diff --git a/src/_icons/certificate-2-off.svg b/src/_icons/certificate-2-off.svg index 99039c6c2..fffea64e5 100644 --- a/src/_icons/certificate-2-off.svg +++ b/src/_icons/certificate-2-off.svg @@ -5,9 +5,5 @@ version: "1.63" unicode: "f0cb" --- - - - - - + diff --git a/src/_icons/certificate-2.svg b/src/_icons/certificate-2.svg index 00a2da6d6..58c28e54f 100644 --- a/src/_icons/certificate-2.svg +++ b/src/_icons/certificate-2.svg @@ -5,8 +5,5 @@ version: "1.59" unicode: "f073" --- - - - - + diff --git a/src/_icons/certificate-off.svg b/src/_icons/certificate-off.svg index 216567aef..100ef24c5 100644 --- a/src/_icons/certificate-off.svg +++ b/src/_icons/certificate-off.svg @@ -5,11 +5,5 @@ version: "1.63" unicode: "f0cc" --- - - - - - - - + diff --git a/src/_icons/certificate.svg b/src/_icons/certificate.svg index 1c3cb6fd5..74dd46109 100644 --- a/src/_icons/certificate.svg +++ b/src/_icons/certificate.svg @@ -5,10 +5,5 @@ version: "1.33" unicode: "ed76" --- - - - - - - + diff --git a/src/_icons/chair-director.svg b/src/_icons/chair-director.svg index be8b522ba..1e8bad8a3 100644 --- a/src/_icons/chair-director.svg +++ b/src/_icons/chair-director.svg @@ -4,11 +4,5 @@ version: "1.82" unicode: "f2d5" --- - - - - - - - + diff --git a/src/_icons/chalkboard-off.svg b/src/_icons/chalkboard-off.svg index 7a0a0b3bd..df5e9e7e6 100644 --- a/src/_icons/chalkboard-off.svg +++ b/src/_icons/chalkboard-off.svg @@ -5,7 +5,5 @@ unicode: "f3d1" version: "1.94" --- - - - + diff --git a/src/_icons/chalkboard.svg b/src/_icons/chalkboard.svg index 5f0590849..5456a29f3 100644 --- a/src/_icons/chalkboard.svg +++ b/src/_icons/chalkboard.svg @@ -5,6 +5,5 @@ unicode: "f34d" version: "1.88" --- - - + diff --git a/src/_icons/charging-pile.svg b/src/_icons/charging-pile.svg index a45c8c58b..42f525be1 100644 --- a/src/_icons/charging-pile.svg +++ b/src/_icons/charging-pile.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee26" --- - - - - - - + diff --git a/src/_icons/chart-arcs-3.svg b/src/_icons/chart-arcs-3.svg index 417d7ef08..b6bbae9e1 100644 --- a/src/_icons/chart-arcs-3.svg +++ b/src/_icons/chart-arcs-3.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee27" --- - - - + diff --git a/src/_icons/chart-arcs.svg b/src/_icons/chart-arcs.svg index bf1580257..0f309d2cf 100644 --- a/src/_icons/chart-arcs.svg +++ b/src/_icons/chart-arcs.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee28" --- - - - + diff --git a/src/_icons/chart-area-filled.svg b/src/_icons/chart-area-filled.svg new file mode 100644 index 000000000..1c811ad3b --- /dev/null +++ b/src/_icons/chart-area-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66b" +--- + + + + diff --git a/src/_icons/chart-area-line-filled.svg b/src/_icons/chart-area-line-filled.svg new file mode 100644 index 000000000..cb6a62886 --- /dev/null +++ b/src/_icons/chart-area-line-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66c" +--- + + + + diff --git a/src/_icons/chart-area-line.svg b/src/_icons/chart-area-line.svg index 7b6f4316d..a0394a843 100644 --- a/src/_icons/chart-area-line.svg +++ b/src/_icons/chart-area-line.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea57" --- - - + diff --git a/src/_icons/chart-area.svg b/src/_icons/chart-area.svg index eb18983d8..342b4c11d 100644 --- a/src/_icons/chart-area.svg +++ b/src/_icons/chart-area.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea58" --- - - + diff --git a/src/_icons/chart-arrows-vertical.svg b/src/_icons/chart-arrows-vertical.svg index 5d31b87ac..2c525caef 100644 --- a/src/_icons/chart-arrows-vertical.svg +++ b/src/_icons/chart-arrows-vertical.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ee29" --- - - - - - - - + diff --git a/src/_icons/chart-arrows.svg b/src/_icons/chart-arrows.svg index de518746a..de2aaa4b7 100644 --- a/src/_icons/chart-arrows.svg +++ b/src/_icons/chart-arrows.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ee2a" --- - - - - - - - + diff --git a/src/_icons/chart-bar-off.svg b/src/_icons/chart-bar-off.svg index c06f7ba17..2ee270247 100644 --- a/src/_icons/chart-bar-off.svg +++ b/src/_icons/chart-bar-off.svg @@ -5,9 +5,5 @@ unicode: "f3d2" version: "1.94" --- - - - - - + diff --git a/src/_icons/chart-bar.svg b/src/_icons/chart-bar.svg index 8e6192bc7..bb65c068e 100644 --- a/src/_icons/chart-bar.svg +++ b/src/_icons/chart-bar.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea59" --- - - - - + diff --git a/src/_icons/chart-bubble-filled.svg b/src/_icons/chart-bubble-filled.svg new file mode 100644 index 000000000..b26f950f9 --- /dev/null +++ b/src/_icons/chart-bubble-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66d" +--- + + + diff --git a/src/_icons/chart-bubble.svg b/src/_icons/chart-bubble.svg index 2adf8a66d..5ba8c53f5 100644 --- a/src/_icons/chart-bubble.svg +++ b/src/_icons/chart-bubble.svg @@ -5,7 +5,5 @@ version: "1.13" unicode: "ec75" --- - - - + diff --git a/src/_icons/chart-candle-filled.svg b/src/_icons/chart-candle-filled.svg new file mode 100644 index 000000000..57310f50e --- /dev/null +++ b/src/_icons/chart-candle-filled.svg @@ -0,0 +1,13 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66e" +--- + + + + + + + + diff --git a/src/_icons/chart-candle.svg b/src/_icons/chart-candle.svg index 2477d3c1f..b1a3503e9 100644 --- a/src/_icons/chart-candle.svg +++ b/src/_icons/chart-candle.svg @@ -5,13 +5,5 @@ version: "1.0" unicode: "ea5a" --- - - - - - - - - - + diff --git a/src/_icons/chart-circles.svg b/src/_icons/chart-circles.svg index 81b398b9c..b39d74cce 100644 --- a/src/_icons/chart-circles.svg +++ b/src/_icons/chart-circles.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee2b" --- - - + diff --git a/src/_icons/chart-donut-2.svg b/src/_icons/chart-donut-2.svg index 981e8f7e2..47869793a 100644 --- a/src/_icons/chart-donut-2.svg +++ b/src/_icons/chart-donut-2.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee2c" --- - - - + diff --git a/src/_icons/chart-donut-3.svg b/src/_icons/chart-donut-3.svg index c7a7b2256..5aa45398d 100644 --- a/src/_icons/chart-donut-3.svg +++ b/src/_icons/chart-donut-3.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee2d" --- - - - - + diff --git a/src/_icons/chart-donut-4.svg b/src/_icons/chart-donut-4.svg index a7e2b24d5..9fe42e4a7 100644 --- a/src/_icons/chart-donut-4.svg +++ b/src/_icons/chart-donut-4.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee2e" --- - - - - - + diff --git a/src/_icons/chart-donut-filled.svg b/src/_icons/chart-donut-filled.svg new file mode 100644 index 000000000..a64fcdd99 --- /dev/null +++ b/src/_icons/chart-donut-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f66f" +--- + + + + diff --git a/src/_icons/chart-donut.svg b/src/_icons/chart-donut.svg index 6df937121..3e1e18be8 100644 --- a/src/_icons/chart-donut.svg +++ b/src/_icons/chart-donut.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea5b" --- - - + diff --git a/src/_icons/chart-dots-2.svg b/src/_icons/chart-dots-2.svg index ed67dfaef..009b055f6 100644 --- a/src/_icons/chart-dots-2.svg +++ b/src/_icons/chart-dots-2.svg @@ -5,11 +5,5 @@ version: "1.61" unicode: "f097" --- - - - - - - - + diff --git a/src/_icons/chart-dots-3.svg b/src/_icons/chart-dots-3.svg index 132e17367..7005b84cf 100644 --- a/src/_icons/chart-dots-3.svg +++ b/src/_icons/chart-dots-3.svg @@ -5,11 +5,5 @@ version: "1.61" unicode: "f098" --- - - - - - - - + diff --git a/src/_icons/chart-dots.svg b/src/_icons/chart-dots.svg index a829ca45e..2c77a7005 100644 --- a/src/_icons/chart-dots.svg +++ b/src/_icons/chart-dots.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee2f" --- - - - - - - + diff --git a/src/_icons/chart-grid-dots.svg b/src/_icons/chart-grid-dots.svg index f3d9e16bd..20799837c 100644 --- a/src/_icons/chart-grid-dots.svg +++ b/src/_icons/chart-grid-dots.svg @@ -5,22 +5,5 @@ unicode: "f4c2" version: "1.98" --- - - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/chart-histogram.svg b/src/_icons/chart-histogram.svg index 3c9abf02c..a66edf806 100644 --- a/src/_icons/chart-histogram.svg +++ b/src/_icons/chart-histogram.svg @@ -3,10 +3,5 @@ unicode: "f65c" version: "1.119" --- - - - - - - + diff --git a/src/_icons/chart-infographic.svg b/src/_icons/chart-infographic.svg index 440ec50e4..3bcf357d5 100644 --- a/src/_icons/chart-infographic.svg +++ b/src/_icons/chart-infographic.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee30" --- - - - - - - + diff --git a/src/_icons/chart-line.svg b/src/_icons/chart-line.svg index ccc3ad94f..b3bb2d25f 100644 --- a/src/_icons/chart-line.svg +++ b/src/_icons/chart-line.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea5c" --- - - + diff --git a/src/_icons/chart-pie-2.svg b/src/_icons/chart-pie-2.svg index 6bee2365b..57d057621 100644 --- a/src/_icons/chart-pie-2.svg +++ b/src/_icons/chart-pie-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee31" --- - - + diff --git a/src/_icons/chart-pie-3.svg b/src/_icons/chart-pie-3.svg index 50a7ce45f..7e14e538d 100644 --- a/src/_icons/chart-pie-3.svg +++ b/src/_icons/chart-pie-3.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee32" --- - - - + diff --git a/src/_icons/chart-pie-4.svg b/src/_icons/chart-pie-4.svg index c13b2e17d..731c86f26 100644 --- a/src/_icons/chart-pie-4.svg +++ b/src/_icons/chart-pie-4.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee33" --- - - - - + diff --git a/src/_icons/chart-pie-filled.svg b/src/_icons/chart-pie-filled.svg new file mode 100644 index 000000000..c3da59a47 --- /dev/null +++ b/src/_icons/chart-pie-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f670" +--- + + + + diff --git a/src/_icons/chart-pie-off.svg b/src/_icons/chart-pie-off.svg index 69dfaa31f..c16c77272 100644 --- a/src/_icons/chart-pie-off.svg +++ b/src/_icons/chart-pie-off.svg @@ -5,7 +5,5 @@ unicode: "f3d3" version: "1.94" --- - - - + diff --git a/src/_icons/chart-pie.svg b/src/_icons/chart-pie.svg index 980a4de24..132177ed2 100644 --- a/src/_icons/chart-pie.svg +++ b/src/_icons/chart-pie.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea5d" --- - - + diff --git a/src/_icons/chart-ppf.svg b/src/_icons/chart-ppf.svg index e2e88dc12..cfe13ed4e 100644 --- a/src/_icons/chart-ppf.svg +++ b/src/_icons/chart-ppf.svg @@ -4,6 +4,5 @@ unicode: "f618" version: "1.115" --- - - + diff --git a/src/_icons/chart-radar.svg b/src/_icons/chart-radar.svg index 1bcba787b..504ecf3a3 100644 --- a/src/_icons/chart-radar.svg +++ b/src/_icons/chart-radar.svg @@ -5,9 +5,5 @@ version: "1.33" unicode: "ed77" --- - - - - - + diff --git a/src/_icons/chart-sankey.svg b/src/_icons/chart-sankey.svg index 680f79e3f..5a262c370 100644 --- a/src/_icons/chart-sankey.svg +++ b/src/_icons/chart-sankey.svg @@ -4,7 +4,5 @@ unicode: "f619" version: "1.115" --- - - - + diff --git a/src/_icons/chart-treemap.svg b/src/_icons/chart-treemap.svg index 9a6293bbe..2fd70bd15 100644 --- a/src/_icons/chart-treemap.svg +++ b/src/_icons/chart-treemap.svg @@ -4,10 +4,5 @@ unicode: "f381" version: "1.91" --- - - - - - - + diff --git a/src/_icons/checkbox.svg b/src/_icons/checkbox.svg index d47c35882..38818e202 100644 --- a/src/_icons/checkbox.svg +++ b/src/_icons/checkbox.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "eba6" --- - - + diff --git a/src/_icons/checklist.svg b/src/_icons/checklist.svg index 919d3efbb..23b5ae763 100644 --- a/src/_icons/checklist.svg +++ b/src/_icons/checklist.svg @@ -4,8 +4,5 @@ version: "1.59" unicode: "f074" --- - - - - + diff --git a/src/_icons/checks.svg b/src/_icons/checks.svg index 3c7e6489f..02da71a16 100644 --- a/src/_icons/checks.svg +++ b/src/_icons/checks.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "ebaa" --- - - + diff --git a/src/_icons/checkup-list.svg b/src/_icons/checkup-list.svg index 46a7c2752..7d5e983e5 100644 --- a/src/_icons/checkup-list.svg +++ b/src/_icons/checkup-list.svg @@ -5,9 +5,5 @@ version: "1.44" unicode: "ef5a" --- - - - - - + diff --git a/src/_icons/cheese.svg b/src/_icons/cheese.svg index 1b36d8db0..1173cd467 100644 --- a/src/_icons/cheese.svg +++ b/src/_icons/cheese.svg @@ -5,9 +5,5 @@ version: "1.41" unicode: "ef26" --- - - - - - + diff --git a/src/_icons/chef-hat-off.svg b/src/_icons/chef-hat-off.svg index 3cf9f5bdf..57a271324 100644 --- a/src/_icons/chef-hat-off.svg +++ b/src/_icons/chef-hat-off.svg @@ -4,7 +4,5 @@ unicode: "f3d4" version: "1.94" --- - - - + diff --git a/src/_icons/chef-hat.svg b/src/_icons/chef-hat.svg index 4643b02b6..8e626d752 100644 --- a/src/_icons/chef-hat.svg +++ b/src/_icons/chef-hat.svg @@ -4,6 +4,5 @@ version: "1.72" unicode: "f21d" --- - - + diff --git a/src/_icons/cherry.svg b/src/_icons/cherry.svg index 68f92f4d2..984979e6c 100644 --- a/src/_icons/cherry.svg +++ b/src/_icons/cherry.svg @@ -4,9 +4,5 @@ version: "1.102" unicode: "f511" --- - - - - - + diff --git a/src/_icons/chess-bishop.svg b/src/_icons/chess-bishop.svg index 0a117a213..1c7606336 100644 --- a/src/_icons/chess-bishop.svg +++ b/src/_icons/chess-bishop.svg @@ -5,9 +5,5 @@ version: "1.107" category: Sport --- - - - - - + diff --git a/src/_icons/chess-king.svg b/src/_icons/chess-king.svg index 5bacc64d0..a947365eb 100644 --- a/src/_icons/chess-king.svg +++ b/src/_icons/chess-king.svg @@ -5,8 +5,5 @@ version: "1.107" category: Sport --- - - - - + diff --git a/src/_icons/chess-knight.svg b/src/_icons/chess-knight.svg index 4b171f69c..60ae8a199 100644 --- a/src/_icons/chess-knight.svg +++ b/src/_icons/chess-knight.svg @@ -5,6 +5,5 @@ version: "1.107" category: Sport --- - - + diff --git a/src/_icons/chess-queen.svg b/src/_icons/chess-queen.svg index 10ba8f264..0cb57e88a 100644 --- a/src/_icons/chess-queen.svg +++ b/src/_icons/chess-queen.svg @@ -5,9 +5,5 @@ version: "1.107" category: Sport --- - - - - - + diff --git a/src/_icons/chess-rook.svg b/src/_icons/chess-rook.svg index d8908cd09..022a6693e 100644 --- a/src/_icons/chess-rook.svg +++ b/src/_icons/chess-rook.svg @@ -5,9 +5,5 @@ version: "1.107" category: Sport --- - - - - - + diff --git a/src/_icons/chess.svg b/src/_icons/chess.svg index aa974589d..e4b4d3abe 100644 --- a/src/_icons/chess.svg +++ b/src/_icons/chess.svg @@ -5,7 +5,5 @@ unicode: "f382" version: "1.91" --- - - - + diff --git a/src/_icons/chevron-down.svg b/src/_icons/chevron-down.svg index 440866fd0..dde35f5b6 100644 --- a/src/_icons/chevron-down.svg +++ b/src/_icons/chevron-down.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea5f" --- - + diff --git a/src/_icons/chevron-left.svg b/src/_icons/chevron-left.svg index bd363f2ff..083c6f42a 100644 --- a/src/_icons/chevron-left.svg +++ b/src/_icons/chevron-left.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea60" --- - + diff --git a/src/_icons/chevron-right.svg b/src/_icons/chevron-right.svg index 260edcbab..d37d8b082 100644 --- a/src/_icons/chevron-right.svg +++ b/src/_icons/chevron-right.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea61" --- - + diff --git a/src/_icons/chevron-up.svg b/src/_icons/chevron-up.svg index 7927f9467..82dcf6a2d 100644 --- a/src/_icons/chevron-up.svg +++ b/src/_icons/chevron-up.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea62" --- - + diff --git a/src/_icons/chevrons-down-left.svg b/src/_icons/chevrons-down-left.svg index c3d6256de..06a672e74 100644 --- a/src/_icons/chevrons-down-left.svg +++ b/src/_icons/chevrons-down-left.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed0d" --- - - + diff --git a/src/_icons/chevrons-down-right.svg b/src/_icons/chevrons-down-right.svg index 6ac68a84e..2fbfc95da 100644 --- a/src/_icons/chevrons-down-right.svg +++ b/src/_icons/chevrons-down-right.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed0e" --- - - + diff --git a/src/_icons/chevrons-down.svg b/src/_icons/chevrons-down.svg index 9bbd87e87..f3e23d90a 100644 --- a/src/_icons/chevrons-down.svg +++ b/src/_icons/chevrons-down.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea63" --- - - + diff --git a/src/_icons/chevrons-left.svg b/src/_icons/chevrons-left.svg index 5e42c38da..757563bff 100644 --- a/src/_icons/chevrons-left.svg +++ b/src/_icons/chevrons-left.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea64" --- - - + diff --git a/src/_icons/chevrons-right.svg b/src/_icons/chevrons-right.svg index bc786665f..1cb80d951 100644 --- a/src/_icons/chevrons-right.svg +++ b/src/_icons/chevrons-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea65" --- - - + diff --git a/src/_icons/chevrons-up-left.svg b/src/_icons/chevrons-up-left.svg index f725430ef..f51143c34 100644 --- a/src/_icons/chevrons-up-left.svg +++ b/src/_icons/chevrons-up-left.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed0f" --- - - + diff --git a/src/_icons/chevrons-up-right.svg b/src/_icons/chevrons-up-right.svg index 3b3ee3267..a9516574f 100644 --- a/src/_icons/chevrons-up-right.svg +++ b/src/_icons/chevrons-up-right.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed10" --- - - + diff --git a/src/_icons/chevrons-up.svg b/src/_icons/chevrons-up.svg index 5240a093a..143af4f37 100644 --- a/src/_icons/chevrons-up.svg +++ b/src/_icons/chevrons-up.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea66" --- - - + diff --git a/src/_icons/chisel.svg b/src/_icons/chisel.svg index 4ebdcb1d3..04b7b9a7d 100644 --- a/src/_icons/chisel.svg +++ b/src/_icons/chisel.svg @@ -4,7 +4,5 @@ unicode: "f383" version: "1.91" --- - - - + diff --git a/src/_icons/christmas-tree-off.svg b/src/_icons/christmas-tree-off.svg index 7b3883339..f0a00ce69 100644 --- a/src/_icons/christmas-tree-off.svg +++ b/src/_icons/christmas-tree-off.svg @@ -5,7 +5,5 @@ unicode: "f3d5" version: "1.94" --- - - - + diff --git a/src/_icons/christmas-tree.svg b/src/_icons/christmas-tree.svg index 90361066c..80617d3fa 100644 --- a/src/_icons/christmas-tree.svg +++ b/src/_icons/christmas-tree.svg @@ -5,6 +5,5 @@ version: "1.33" unicode: "ed78" --- - - + diff --git a/src/_icons/circle-caret-down.svg b/src/_icons/circle-caret-down.svg index fd1aa623c..bcca5ca94 100644 --- a/src/_icons/circle-caret-down.svg +++ b/src/_icons/circle-caret-down.svg @@ -5,6 +5,5 @@ unicode: "f4a9" version: "1.97" --- - - + diff --git a/src/_icons/circle-caret-left.svg b/src/_icons/circle-caret-left.svg index 6ee5e4e91..5f9b8a760 100644 --- a/src/_icons/circle-caret-left.svg +++ b/src/_icons/circle-caret-left.svg @@ -5,6 +5,5 @@ unicode: "f4aa" version: "1.97" --- - - + diff --git a/src/_icons/circle-caret-right.svg b/src/_icons/circle-caret-right.svg index 3e8db3301..21331a230 100644 --- a/src/_icons/circle-caret-right.svg +++ b/src/_icons/circle-caret-right.svg @@ -5,6 +5,5 @@ unicode: "f4ab" version: "1.97" --- - - + diff --git a/src/_icons/circle-caret-up.svg b/src/_icons/circle-caret-up.svg index 838ec77cb..46ab5842f 100644 --- a/src/_icons/circle-caret-up.svg +++ b/src/_icons/circle-caret-up.svg @@ -5,6 +5,5 @@ unicode: "f4ac" version: "1.97" --- - - + diff --git a/src/_icons/circle-check.svg b/src/_icons/circle-check.svg index 287fdec1c..649c87439 100644 --- a/src/_icons/circle-check.svg +++ b/src/_icons/circle-check.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea67" --- - - + diff --git a/src/_icons/circle-chevron-down.svg b/src/_icons/circle-chevron-down.svg index 155be25e3..d873dbab2 100644 --- a/src/_icons/circle-chevron-down.svg +++ b/src/_icons/circle-chevron-down.svg @@ -4,6 +4,5 @@ unicode: "f622" version: "1.116" --- - - + diff --git a/src/_icons/circle-chevron-left.svg b/src/_icons/circle-chevron-left.svg index 0583cf2ee..637793b12 100644 --- a/src/_icons/circle-chevron-left.svg +++ b/src/_icons/circle-chevron-left.svg @@ -4,6 +4,5 @@ unicode: "f623" version: "1.116" --- - - + diff --git a/src/_icons/circle-chevron-right.svg b/src/_icons/circle-chevron-right.svg index 4cf5f34db..3f088dbcc 100644 --- a/src/_icons/circle-chevron-right.svg +++ b/src/_icons/circle-chevron-right.svg @@ -4,6 +4,5 @@ unicode: "f624" version: "1.116" --- - - + diff --git a/src/_icons/circle-chevron-up.svg b/src/_icons/circle-chevron-up.svg index 78c3b835b..166c51d70 100644 --- a/src/_icons/circle-chevron-up.svg +++ b/src/_icons/circle-chevron-up.svg @@ -4,6 +4,5 @@ unicode: "f625" version: "1.116" --- - - + diff --git a/src/_icons/circle-chevrons-down.svg b/src/_icons/circle-chevrons-down.svg index 30074076f..891377ac2 100644 --- a/src/_icons/circle-chevrons-down.svg +++ b/src/_icons/circle-chevrons-down.svg @@ -4,7 +4,5 @@ unicode: "f642" version: "1.118" --- - - - + diff --git a/src/_icons/circle-chevrons-left.svg b/src/_icons/circle-chevrons-left.svg index 2d246a4f6..7cd687cf2 100644 --- a/src/_icons/circle-chevrons-left.svg +++ b/src/_icons/circle-chevrons-left.svg @@ -4,7 +4,5 @@ unicode: "f643" version: "1.118" --- - - - + diff --git a/src/_icons/circle-chevrons-right.svg b/src/_icons/circle-chevrons-right.svg index 6425e7b3e..dc0d3a363 100644 --- a/src/_icons/circle-chevrons-right.svg +++ b/src/_icons/circle-chevrons-right.svg @@ -4,7 +4,5 @@ unicode: "f644" version: "1.118" --- - - - + diff --git a/src/_icons/circle-chevrons-up.svg b/src/_icons/circle-chevrons-up.svg index 982cb7dd9..6d6693b85 100644 --- a/src/_icons/circle-chevrons-up.svg +++ b/src/_icons/circle-chevrons-up.svg @@ -4,7 +4,5 @@ unicode: "f645" version: "1.118" --- - - - + diff --git a/src/_icons/circle-dashed.svg b/src/_icons/circle-dashed.svg index 4170ed187..5c391f662 100644 --- a/src/_icons/circle-dashed.svg +++ b/src/_icons/circle-dashed.svg @@ -4,12 +4,5 @@ version: "1.26" unicode: "ed27" --- - - - - - - - - + diff --git a/src/_icons/circle-dot.svg b/src/_icons/circle-dot.svg index 565a7ef30..b0897d226 100644 --- a/src/_icons/circle-dot.svg +++ b/src/_icons/circle-dot.svg @@ -4,6 +4,5 @@ version: "1.49" unicode: "efb1" --- - - + diff --git a/src/_icons/circle-dotted.svg b/src/_icons/circle-dotted.svg index 4370f799f..5375d1fe4 100644 --- a/src/_icons/circle-dotted.svg +++ b/src/_icons/circle-dotted.svg @@ -4,16 +4,5 @@ version: "1.26" unicode: "ed28" --- - - - - - - - - - - - - + diff --git a/src/_icons/circle-filled.svg b/src/_icons/circle-filled.svg new file mode 100644 index 000000000..8fc23caba --- /dev/null +++ b/src/_icons/circle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f671" +--- + + + diff --git a/src/_icons/circle-half-2.svg b/src/_icons/circle-half-2.svg index ade17c196..e2287a196 100644 --- a/src/_icons/circle-half-2.svg +++ b/src/_icons/circle-half-2.svg @@ -5,9 +5,5 @@ version: "1.52" unicode: "eff3" --- - - - - - + diff --git a/src/_icons/circle-half-vertical.svg b/src/_icons/circle-half-vertical.svg index dd1ad2904..cbe1582b5 100644 --- a/src/_icons/circle-half-vertical.svg +++ b/src/_icons/circle-half-vertical.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "ee3e" --- - - + diff --git a/src/_icons/circle-half.svg b/src/_icons/circle-half.svg index 1021d9ce5..99f440edf 100644 --- a/src/_icons/circle-half.svg +++ b/src/_icons/circle-half.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "ee3f" --- - - + diff --git a/src/_icons/circle-key.svg b/src/_icons/circle-key.svg index 03afe8e5d..2c6f62521 100644 --- a/src/_icons/circle-key.svg +++ b/src/_icons/circle-key.svg @@ -3,8 +3,5 @@ unicode: "f633" version: "1.117" --- - - - - + diff --git a/src/_icons/circle-letter-a.svg b/src/_icons/circle-letter-a.svg index 87ae52579..e6785daea 100644 --- a/src/_icons/circle-letter-a.svg +++ b/src/_icons/circle-letter-a.svg @@ -5,7 +5,5 @@ unicode: "f441" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-b.svg b/src/_icons/circle-letter-b.svg index ad8575113..caebebae3 100644 --- a/src/_icons/circle-letter-b.svg +++ b/src/_icons/circle-letter-b.svg @@ -5,6 +5,5 @@ unicode: "f442" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-c.svg b/src/_icons/circle-letter-c.svg index b738db775..b1c35b6ec 100644 --- a/src/_icons/circle-letter-c.svg +++ b/src/_icons/circle-letter-c.svg @@ -5,6 +5,5 @@ unicode: "f443" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-d.svg b/src/_icons/circle-letter-d.svg index 2045d4cec..380cffa8a 100644 --- a/src/_icons/circle-letter-d.svg +++ b/src/_icons/circle-letter-d.svg @@ -5,6 +5,5 @@ unicode: "f444" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-e.svg b/src/_icons/circle-letter-e.svg index c74f79c4a..2c85377ad 100644 --- a/src/_icons/circle-letter-e.svg +++ b/src/_icons/circle-letter-e.svg @@ -5,7 +5,5 @@ unicode: "f445" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-f.svg b/src/_icons/circle-letter-f.svg index 157ebff40..fd834fd28 100644 --- a/src/_icons/circle-letter-f.svg +++ b/src/_icons/circle-letter-f.svg @@ -5,7 +5,5 @@ unicode: "f446" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-g.svg b/src/_icons/circle-letter-g.svg index 15b08538b..5eaa4d57e 100644 --- a/src/_icons/circle-letter-g.svg +++ b/src/_icons/circle-letter-g.svg @@ -5,6 +5,5 @@ unicode: "f447" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-h.svg b/src/_icons/circle-letter-h.svg index 2bace6512..1db98585c 100644 --- a/src/_icons/circle-letter-h.svg +++ b/src/_icons/circle-letter-h.svg @@ -5,7 +5,5 @@ unicode: "f448" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-i.svg b/src/_icons/circle-letter-i.svg index 488116c53..1d89b480d 100644 --- a/src/_icons/circle-letter-i.svg +++ b/src/_icons/circle-letter-i.svg @@ -5,6 +5,5 @@ unicode: "f449" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-j.svg b/src/_icons/circle-letter-j.svg index ef848b271..2374132df 100644 --- a/src/_icons/circle-letter-j.svg +++ b/src/_icons/circle-letter-j.svg @@ -5,6 +5,5 @@ unicode: "f44a" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-k.svg b/src/_icons/circle-letter-k.svg index ed7533199..53bdb1de5 100644 --- a/src/_icons/circle-letter-k.svg +++ b/src/_icons/circle-letter-k.svg @@ -5,8 +5,5 @@ unicode: "f44b" version: "1.95" --- - - - - + diff --git a/src/_icons/circle-letter-l.svg b/src/_icons/circle-letter-l.svg index 432e39f6f..76472c863 100644 --- a/src/_icons/circle-letter-l.svg +++ b/src/_icons/circle-letter-l.svg @@ -5,6 +5,5 @@ unicode: "f44c" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-m.svg b/src/_icons/circle-letter-m.svg index 8ea9a5c4d..a0efe2d16 100644 --- a/src/_icons/circle-letter-m.svg +++ b/src/_icons/circle-letter-m.svg @@ -5,6 +5,5 @@ unicode: "f44d" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-n.svg b/src/_icons/circle-letter-n.svg index 0fcb5478f..2dc47ccc1 100644 --- a/src/_icons/circle-letter-n.svg +++ b/src/_icons/circle-letter-n.svg @@ -5,6 +5,5 @@ unicode: "f44e" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-o.svg b/src/_icons/circle-letter-o.svg index f76c1262a..8654b1207 100644 --- a/src/_icons/circle-letter-o.svg +++ b/src/_icons/circle-letter-o.svg @@ -5,6 +5,5 @@ unicode: "f44f" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-p.svg b/src/_icons/circle-letter-p.svg index 5d835b890..604d9f5dd 100644 --- a/src/_icons/circle-letter-p.svg +++ b/src/_icons/circle-letter-p.svg @@ -5,6 +5,5 @@ unicode: "f450" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-q.svg b/src/_icons/circle-letter-q.svg index 3fc77e0ba..d5d547838 100644 --- a/src/_icons/circle-letter-q.svg +++ b/src/_icons/circle-letter-q.svg @@ -5,7 +5,5 @@ unicode: "f451" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-r.svg b/src/_icons/circle-letter-r.svg index bab3d6a7c..419c1eb50 100644 --- a/src/_icons/circle-letter-r.svg +++ b/src/_icons/circle-letter-r.svg @@ -5,6 +5,5 @@ unicode: "f452" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-s.svg b/src/_icons/circle-letter-s.svg index 8f21a9db9..d03cc0d63 100644 --- a/src/_icons/circle-letter-s.svg +++ b/src/_icons/circle-letter-s.svg @@ -5,6 +5,5 @@ unicode: "f453" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-t.svg b/src/_icons/circle-letter-t.svg index 76354f1b6..2a224891e 100644 --- a/src/_icons/circle-letter-t.svg +++ b/src/_icons/circle-letter-t.svg @@ -5,7 +5,5 @@ unicode: "f454" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-u.svg b/src/_icons/circle-letter-u.svg index 533a08de1..fe9b43e36 100644 --- a/src/_icons/circle-letter-u.svg +++ b/src/_icons/circle-letter-u.svg @@ -5,6 +5,5 @@ unicode: "f455" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-v.svg b/src/_icons/circle-letter-v.svg index 78895fceb..e1fa29ba4 100644 --- a/src/_icons/circle-letter-v.svg +++ b/src/_icons/circle-letter-v.svg @@ -5,6 +5,5 @@ unicode: "f4ad" version: "1.97" --- - - + diff --git a/src/_icons/circle-letter-w.svg b/src/_icons/circle-letter-w.svg index 2fd0c761f..fe3bd5d9c 100644 --- a/src/_icons/circle-letter-w.svg +++ b/src/_icons/circle-letter-w.svg @@ -5,6 +5,5 @@ unicode: "f456" version: "1.95" --- - - + diff --git a/src/_icons/circle-letter-x.svg b/src/_icons/circle-letter-x.svg index 52f4c39a9..e0b7fe959 100644 --- a/src/_icons/circle-letter-x.svg +++ b/src/_icons/circle-letter-x.svg @@ -5,7 +5,5 @@ category: Letters unicode: "f4ae" --- - - - + diff --git a/src/_icons/circle-letter-y.svg b/src/_icons/circle-letter-y.svg index da34521bc..fb2a6e73c 100644 --- a/src/_icons/circle-letter-y.svg +++ b/src/_icons/circle-letter-y.svg @@ -5,7 +5,5 @@ unicode: "f457" version: "1.95" --- - - - + diff --git a/src/_icons/circle-letter-z.svg b/src/_icons/circle-letter-z.svg index 8a8f6b50e..42bad1ba4 100644 --- a/src/_icons/circle-letter-z.svg +++ b/src/_icons/circle-letter-z.svg @@ -5,6 +5,5 @@ unicode: "f458" version: "1.95" --- - - + diff --git a/src/_icons/circle-minus.svg b/src/_icons/circle-minus.svg index cda5179b8..079a594a9 100644 --- a/src/_icons/circle-minus.svg +++ b/src/_icons/circle-minus.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea68" --- - - + diff --git a/src/_icons/circle-number-0.svg b/src/_icons/circle-number-0.svg index cd8fc278e..3808a4470 100644 --- a/src/_icons/circle-number-0.svg +++ b/src/_icons/circle-number-0.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee34" --- - - + diff --git a/src/_icons/circle-number-1.svg b/src/_icons/circle-number-1.svg index b7176ce63..8df4ba948 100644 --- a/src/_icons/circle-number-1.svg +++ b/src/_icons/circle-number-1.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee35" --- - - + diff --git a/src/_icons/circle-number-2.svg b/src/_icons/circle-number-2.svg index 96324ac40..4aeb5e2d8 100644 --- a/src/_icons/circle-number-2.svg +++ b/src/_icons/circle-number-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee36" --- - - + diff --git a/src/_icons/circle-number-3.svg b/src/_icons/circle-number-3.svg index 9f505c348..1168e0a57 100644 --- a/src/_icons/circle-number-3.svg +++ b/src/_icons/circle-number-3.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee37" --- - - + diff --git a/src/_icons/circle-number-4.svg b/src/_icons/circle-number-4.svg index 59d97dbf6..96f634325 100644 --- a/src/_icons/circle-number-4.svg +++ b/src/_icons/circle-number-4.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee38" --- - - - + diff --git a/src/_icons/circle-number-5.svg b/src/_icons/circle-number-5.svg index d8c84db7e..a94ec3856 100644 --- a/src/_icons/circle-number-5.svg +++ b/src/_icons/circle-number-5.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee39" --- - - + diff --git a/src/_icons/circle-number-6.svg b/src/_icons/circle-number-6.svg index eccfabe33..dbbb55b8d 100644 --- a/src/_icons/circle-number-6.svg +++ b/src/_icons/circle-number-6.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee3a" --- - - + diff --git a/src/_icons/circle-number-7.svg b/src/_icons/circle-number-7.svg index 93afed374..e45649067 100644 --- a/src/_icons/circle-number-7.svg +++ b/src/_icons/circle-number-7.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee3b" --- - - + diff --git a/src/_icons/circle-number-8.svg b/src/_icons/circle-number-8.svg index f6011e5bb..f6e2403cf 100644 --- a/src/_icons/circle-number-8.svg +++ b/src/_icons/circle-number-8.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee3c" --- - - + diff --git a/src/_icons/circle-number-9.svg b/src/_icons/circle-number-9.svg index adfa1ec56..08f89ea84 100644 --- a/src/_icons/circle-number-9.svg +++ b/src/_icons/circle-number-9.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee3d" --- - - + diff --git a/src/_icons/circle-off.svg b/src/_icons/circle-off.svg index c5714d668..395350944 100644 --- a/src/_icons/circle-off.svg +++ b/src/_icons/circle-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee40" --- - - + diff --git a/src/_icons/circle-plus.svg b/src/_icons/circle-plus.svg index 8f2f7c8cd..5d8878502 100644 --- a/src/_icons/circle-plus.svg +++ b/src/_icons/circle-plus.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "ea69" --- - - - + diff --git a/src/_icons/circle-rectangle-off.svg b/src/_icons/circle-rectangle-off.svg index 4ad3dca0f..41c086d95 100644 --- a/src/_icons/circle-rectangle-off.svg +++ b/src/_icons/circle-rectangle-off.svg @@ -4,7 +4,5 @@ version: "1.63" unicode: "f0cd" --- - - - + diff --git a/src/_icons/circle-rectangle.svg b/src/_icons/circle-rectangle.svg index cced5d63f..0e34d3df9 100644 --- a/src/_icons/circle-rectangle.svg +++ b/src/_icons/circle-rectangle.svg @@ -4,6 +4,5 @@ version: "1.54" unicode: "f010" --- - - + diff --git a/src/_icons/circle-square.svg b/src/_icons/circle-square.svg index 7ffbf586b..59b8ad108 100644 --- a/src/_icons/circle-square.svg +++ b/src/_icons/circle-square.svg @@ -5,6 +5,5 @@ version: "1.21" unicode: "ece4" --- - - + diff --git a/src/_icons/circle-triangle.svg b/src/_icons/circle-triangle.svg index 82e5acc43..275fc0af4 100644 --- a/src/_icons/circle-triangle.svg +++ b/src/_icons/circle-triangle.svg @@ -4,6 +4,5 @@ version: "1.54" unicode: "f011" --- - - + diff --git a/src/_icons/circle-x.svg b/src/_icons/circle-x.svg index 603dc96c5..3fdfed906 100644 --- a/src/_icons/circle-x.svg +++ b/src/_icons/circle-x.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "ea6a" --- - - + diff --git a/src/_icons/circle.svg b/src/_icons/circle.svg index f84df1269..ffce73952 100644 --- a/src/_icons/circle.svg +++ b/src/_icons/circle.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea6b" --- - + diff --git a/src/_icons/circles-filled.svg b/src/_icons/circles-filled.svg new file mode 100644 index 000000000..25aad9a94 --- /dev/null +++ b/src/_icons/circles-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f672" +--- + + + diff --git a/src/_icons/circles-relation.svg b/src/_icons/circles-relation.svg index 9b0ff4135..bf8b45bf9 100644 --- a/src/_icons/circles-relation.svg +++ b/src/_icons/circles-relation.svg @@ -4,6 +4,5 @@ unicode: "f4c3" version: "1.98" --- - - + diff --git a/src/_icons/circles.svg b/src/_icons/circles.svg index f46208dd5..762004405 100644 --- a/src/_icons/circles.svg +++ b/src/_icons/circles.svg @@ -5,7 +5,5 @@ version: "1.21" unicode: "ece5" --- - - - + diff --git a/src/_icons/circuit-ammeter.svg b/src/_icons/circuit-ammeter.svg index 46f9d982e..09441abc2 100644 --- a/src/_icons/circuit-ammeter.svg +++ b/src/_icons/circuit-ammeter.svg @@ -5,9 +5,5 @@ version: "1.77" unicode: "f271" --- - - - - - + diff --git a/src/_icons/circuit-battery.svg b/src/_icons/circuit-battery.svg index 770b0b892..957c5eddf 100644 --- a/src/_icons/circuit-battery.svg +++ b/src/_icons/circuit-battery.svg @@ -5,10 +5,5 @@ version: "1.77" unicode: "f272" --- - - - - - - + diff --git a/src/_icons/circuit-bulb.svg b/src/_icons/circuit-bulb.svg index 32849c1d6..a1d2b57a6 100644 --- a/src/_icons/circuit-bulb.svg +++ b/src/_icons/circuit-bulb.svg @@ -5,9 +5,5 @@ version: "1.77" unicode: "f273" --- - - - - - + diff --git a/src/_icons/circuit-capacitor-polarized.svg b/src/_icons/circuit-capacitor-polarized.svg index ac5e323b8..9f30f8498 100644 --- a/src/_icons/circuit-capacitor-polarized.svg +++ b/src/_icons/circuit-capacitor-polarized.svg @@ -5,10 +5,5 @@ version: "1.77" unicode: "f274" --- - - - - - - + diff --git a/src/_icons/circuit-capacitor.svg b/src/_icons/circuit-capacitor.svg index 8f342166e..96ca448c9 100644 --- a/src/_icons/circuit-capacitor.svg +++ b/src/_icons/circuit-capacitor.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f275" --- - - - - + diff --git a/src/_icons/circuit-cell-plus.svg b/src/_icons/circuit-cell-plus.svg index b306a6060..43b6836b5 100644 --- a/src/_icons/circuit-cell-plus.svg +++ b/src/_icons/circuit-cell-plus.svg @@ -5,10 +5,5 @@ version: "1.77" unicode: "f276" --- - - - - - - + diff --git a/src/_icons/circuit-cell.svg b/src/_icons/circuit-cell.svg index e09904d03..99c15aa51 100644 --- a/src/_icons/circuit-cell.svg +++ b/src/_icons/circuit-cell.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f277" --- - - - - + diff --git a/src/_icons/circuit-changeover.svg b/src/_icons/circuit-changeover.svg index 318a84cb7..dfc49b5a1 100644 --- a/src/_icons/circuit-changeover.svg +++ b/src/_icons/circuit-changeover.svg @@ -5,11 +5,5 @@ version: "1.77" unicode: "f278" --- - - - - - - - + diff --git a/src/_icons/circuit-diode-zener.svg b/src/_icons/circuit-diode-zener.svg index c456c6c4c..1d8352af6 100644 --- a/src/_icons/circuit-diode-zener.svg +++ b/src/_icons/circuit-diode-zener.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f279" --- - - - - + diff --git a/src/_icons/circuit-diode.svg b/src/_icons/circuit-diode.svg index bc7200758..bcdc23973 100644 --- a/src/_icons/circuit-diode.svg +++ b/src/_icons/circuit-diode.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f27a" --- - - - - + diff --git a/src/_icons/circuit-ground-digital.svg b/src/_icons/circuit-ground-digital.svg index 39e15f6a8..091fd8a31 100644 --- a/src/_icons/circuit-ground-digital.svg +++ b/src/_icons/circuit-ground-digital.svg @@ -5,6 +5,5 @@ version: "1.77" unicode: "f27b" --- - - + diff --git a/src/_icons/circuit-ground.svg b/src/_icons/circuit-ground.svg index 4d53a277f..1fc8fb966 100644 --- a/src/_icons/circuit-ground.svg +++ b/src/_icons/circuit-ground.svg @@ -5,8 +5,5 @@ version: "1.74" unicode: "f27c" --- - - - - + diff --git a/src/_icons/circuit-motor.svg b/src/_icons/circuit-motor.svg index e552534c8..c703b90b7 100644 --- a/src/_icons/circuit-motor.svg +++ b/src/_icons/circuit-motor.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f27e" --- - - - - + diff --git a/src/_icons/circuit-pushbutton.svg b/src/_icons/circuit-pushbutton.svg index e8f607d1e..c846a672a 100644 --- a/src/_icons/circuit-pushbutton.svg +++ b/src/_icons/circuit-pushbutton.svg @@ -5,10 +5,5 @@ version: "1.77" unicode: "f27f" --- - - - - - - + diff --git a/src/_icons/circuit-switch-closed.svg b/src/_icons/circuit-switch-closed.svg index 0cc06aca0..da10b3803 100644 --- a/src/_icons/circuit-switch-closed.svg +++ b/src/_icons/circuit-switch-closed.svg @@ -5,9 +5,5 @@ version: "1.77" unicode: "f281" --- - - - - - + diff --git a/src/_icons/circuit-switch-open.svg b/src/_icons/circuit-switch-open.svg index 57b8a4d54..80ff2a261 100644 --- a/src/_icons/circuit-switch-open.svg +++ b/src/_icons/circuit-switch-open.svg @@ -5,9 +5,5 @@ version: "1.77" unicode: "f282" --- - - - - - + diff --git a/src/_icons/circuit-voltmeter.svg b/src/_icons/circuit-voltmeter.svg index 0c01b2d75..5f18587a3 100644 --- a/src/_icons/circuit-voltmeter.svg +++ b/src/_icons/circuit-voltmeter.svg @@ -5,8 +5,5 @@ version: "1.77" unicode: "f283" --- - - - - + diff --git a/src/_icons/clear-all.svg b/src/_icons/clear-all.svg index 7c0ed4900..f04714f3b 100644 --- a/src/_icons/clear-all.svg +++ b/src/_icons/clear-all.svg @@ -4,7 +4,5 @@ version: "1.39" unicode: "ee41" --- - - - + diff --git a/src/_icons/clear-formatting.svg b/src/_icons/clear-formatting.svg index 409958d3e..6058f68b7 100644 --- a/src/_icons/clear-formatting.svg +++ b/src/_icons/clear-formatting.svg @@ -5,8 +5,5 @@ version: "1.7" unicode: "ebe5" --- - - - - + diff --git a/src/_icons/click.svg b/src/_icons/click.svg index 021ec4575..fc2f0d2b9 100644 --- a/src/_icons/click.svg +++ b/src/_icons/click.svg @@ -4,10 +4,5 @@ version: "1.5" unicode: "ebbc" --- - - - - - - + diff --git a/src/_icons/clipboard-check.svg b/src/_icons/clipboard-check.svg index 1f3bdc5e2..3f79314a4 100644 --- a/src/_icons/clipboard-check.svg +++ b/src/_icons/clipboard-check.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea6c" --- - - - + diff --git a/src/_icons/clipboard-copy.svg b/src/_icons/clipboard-copy.svg index c8f03fed9..d5221f53f 100644 --- a/src/_icons/clipboard-copy.svg +++ b/src/_icons/clipboard-copy.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f299" --- - - - + diff --git a/src/_icons/clipboard-data.svg b/src/_icons/clipboard-data.svg index 266ae3467..5502eb199 100644 --- a/src/_icons/clipboard-data.svg +++ b/src/_icons/clipboard-data.svg @@ -5,10 +5,5 @@ unicode: "f563" version: "1.106" --- - - - - - - + diff --git a/src/_icons/clipboard-heart.svg b/src/_icons/clipboard-heart.svg index 55b71e72b..58fca1356 100644 --- a/src/_icons/clipboard-heart.svg +++ b/src/_icons/clipboard-heart.svg @@ -5,7 +5,5 @@ unicode: "f34e" version: "1.88" --- - - - + diff --git a/src/_icons/clipboard-list.svg b/src/_icons/clipboard-list.svg index 8afefd616..09fe742b7 100644 --- a/src/_icons/clipboard-list.svg +++ b/src/_icons/clipboard-list.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "ea6d" --- - - - - - - + diff --git a/src/_icons/clipboard-off.svg b/src/_icons/clipboard-off.svg index c14e9e312..078efd206 100644 --- a/src/_icons/clipboard-off.svg +++ b/src/_icons/clipboard-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0ce" --- - - - + diff --git a/src/_icons/clipboard-plus.svg b/src/_icons/clipboard-plus.svg index 8e2c31b2e..3b96fb965 100644 --- a/src/_icons/clipboard-plus.svg +++ b/src/_icons/clipboard-plus.svg @@ -5,8 +5,5 @@ version: "1.49" unicode: "efb2" --- - - - - + diff --git a/src/_icons/clipboard-text.svg b/src/_icons/clipboard-text.svg index 1a73ad519..d43817b04 100644 --- a/src/_icons/clipboard-text.svg +++ b/src/_icons/clipboard-text.svg @@ -5,8 +5,5 @@ version: "1.60" unicode: "f089" --- - - - - + diff --git a/src/_icons/clipboard-typography.svg b/src/_icons/clipboard-typography.svg index 9c5a9ed31..2d0ea548d 100644 --- a/src/_icons/clipboard-typography.svg +++ b/src/_icons/clipboard-typography.svg @@ -5,9 +5,5 @@ unicode: "f34f" version: "1.88" --- - - - - - + diff --git a/src/_icons/clipboard-x.svg b/src/_icons/clipboard-x.svg index 5e1ecc976..65c47690e 100644 --- a/src/_icons/clipboard-x.svg +++ b/src/_icons/clipboard-x.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea6e" --- - - - + diff --git a/src/_icons/clipboard.svg b/src/_icons/clipboard.svg index e77e4f022..3abb559ba 100644 --- a/src/_icons/clipboard.svg +++ b/src/_icons/clipboard.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea6f" --- - - + diff --git a/src/_icons/clock-2.svg b/src/_icons/clock-2.svg index 8fc3cf0e9..46cf47a1d 100644 --- a/src/_icons/clock-2.svg +++ b/src/_icons/clock-2.svg @@ -5,9 +5,5 @@ version: "1.61" unicode: "f099" --- - - - - - + diff --git a/src/_icons/clock-cancel.svg b/src/_icons/clock-cancel.svg index 81ec4cdad..0924d8a83 100644 --- a/src/_icons/clock-cancel.svg +++ b/src/_icons/clock-cancel.svg @@ -5,8 +5,5 @@ version: "1.105" unicode: "f546" --- - - - - + diff --git a/src/_icons/clock-edit.svg b/src/_icons/clock-edit.svg index b05ec4784..89a613447 100644 --- a/src/_icons/clock-edit.svg +++ b/src/_icons/clock-edit.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f547" --- - - - + diff --git a/src/_icons/clock-hour-1.svg b/src/_icons/clock-hour-1.svg index 0ff51963d..2646bc04c 100644 --- a/src/_icons/clock-hour-1.svg +++ b/src/_icons/clock-hour-1.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f313" --- - - - + diff --git a/src/_icons/clock-hour-10.svg b/src/_icons/clock-hour-10.svg index 87f4b4fc1..375935f2b 100644 --- a/src/_icons/clock-hour-10.svg +++ b/src/_icons/clock-hour-10.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f314" --- - - - + diff --git a/src/_icons/clock-hour-11.svg b/src/_icons/clock-hour-11.svg index 0d2bdc146..4251c9973 100644 --- a/src/_icons/clock-hour-11.svg +++ b/src/_icons/clock-hour-11.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f315" --- - - - + diff --git a/src/_icons/clock-hour-12.svg b/src/_icons/clock-hour-12.svg index 42fa8cfa8..0593e32f9 100644 --- a/src/_icons/clock-hour-12.svg +++ b/src/_icons/clock-hour-12.svg @@ -5,6 +5,5 @@ version: "1.85" unicode: "f316" --- - - + diff --git a/src/_icons/clock-hour-2.svg b/src/_icons/clock-hour-2.svg index bdc1222cd..254097ab4 100644 --- a/src/_icons/clock-hour-2.svg +++ b/src/_icons/clock-hour-2.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f317" --- - - - + diff --git a/src/_icons/clock-hour-3.svg b/src/_icons/clock-hour-3.svg index 395966d1e..8ccc9a360 100644 --- a/src/_icons/clock-hour-3.svg +++ b/src/_icons/clock-hour-3.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f318" --- - - - + diff --git a/src/_icons/clock-hour-4.svg b/src/_icons/clock-hour-4.svg index 43ee32337..ec8f9ba8a 100644 --- a/src/_icons/clock-hour-4.svg +++ b/src/_icons/clock-hour-4.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f319" --- - - - + diff --git a/src/_icons/clock-hour-5.svg b/src/_icons/clock-hour-5.svg index 010fc647b..e4565fd7b 100644 --- a/src/_icons/clock-hour-5.svg +++ b/src/_icons/clock-hour-5.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f31a" --- - - - + diff --git a/src/_icons/clock-hour-6.svg b/src/_icons/clock-hour-6.svg index e79f48d3b..16cc4684e 100644 --- a/src/_icons/clock-hour-6.svg +++ b/src/_icons/clock-hour-6.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f31b" --- - - - + diff --git a/src/_icons/clock-hour-7.svg b/src/_icons/clock-hour-7.svg index 461d527d5..7721b39db 100644 --- a/src/_icons/clock-hour-7.svg +++ b/src/_icons/clock-hour-7.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f31c" --- - - - + diff --git a/src/_icons/clock-hour-8.svg b/src/_icons/clock-hour-8.svg index dfa6e8adc..b86141830 100644 --- a/src/_icons/clock-hour-8.svg +++ b/src/_icons/clock-hour-8.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f31d" --- - - - + diff --git a/src/_icons/clock-hour-9.svg b/src/_icons/clock-hour-9.svg index f90b7aa10..ccacbec9b 100644 --- a/src/_icons/clock-hour-9.svg +++ b/src/_icons/clock-hour-9.svg @@ -5,7 +5,5 @@ version: "1.85" unicode: "f31e" --- - - - + diff --git a/src/_icons/clock-off.svg b/src/_icons/clock-off.svg index 5003da842..a035337d8 100644 --- a/src/_icons/clock-off.svg +++ b/src/_icons/clock-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0cf" --- - - - + diff --git a/src/_icons/clock-pause.svg b/src/_icons/clock-pause.svg index da40573ef..f2db6c641 100644 --- a/src/_icons/clock-pause.svg +++ b/src/_icons/clock-pause.svg @@ -5,8 +5,5 @@ version: "1.105" unicode: "f548" --- - - - - + diff --git a/src/_icons/clock-play.svg b/src/_icons/clock-play.svg index 0d5d51ef0..6e247cfdf 100644 --- a/src/_icons/clock-play.svg +++ b/src/_icons/clock-play.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f549" --- - - - + diff --git a/src/_icons/clock-record.svg b/src/_icons/clock-record.svg index 9c2cf04f9..95dea7f8c 100644 --- a/src/_icons/clock-record.svg +++ b/src/_icons/clock-record.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f54a" --- - - - + diff --git a/src/_icons/clock-stop.svg b/src/_icons/clock-stop.svg index 1dd4c2674..1e9342a61 100644 --- a/src/_icons/clock-stop.svg +++ b/src/_icons/clock-stop.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f54b" --- - - - + diff --git a/src/_icons/clock.svg b/src/_icons/clock.svg index e20ff289c..1d9ab04ab 100644 --- a/src/_icons/clock.svg +++ b/src/_icons/clock.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea70" --- - - + diff --git a/src/_icons/clothes-rack-off.svg b/src/_icons/clothes-rack-off.svg index f5953c421..182dae3cb 100644 --- a/src/_icons/clothes-rack-off.svg +++ b/src/_icons/clothes-rack-off.svg @@ -4,9 +4,5 @@ unicode: "f3d6" version: "1.94" --- - - - - - + diff --git a/src/_icons/clothes-rack.svg b/src/_icons/clothes-rack.svg index 290bc27f7..fdc721a17 100644 --- a/src/_icons/clothes-rack.svg +++ b/src/_icons/clothes-rack.svg @@ -4,8 +4,5 @@ version: "1.78" unicode: "f285" --- - - - - + diff --git a/src/_icons/cloud-computing.svg b/src/_icons/cloud-computing.svg index ee3c420c0..878a11042 100644 --- a/src/_icons/cloud-computing.svg +++ b/src/_icons/cloud-computing.svg @@ -4,8 +4,5 @@ version: "1.68" unicode: "f1d0" --- - - - - + diff --git a/src/_icons/cloud-data-connection.svg b/src/_icons/cloud-data-connection.svg index 3bf8b6353..4a6ba2d7d 100644 --- a/src/_icons/cloud-data-connection.svg +++ b/src/_icons/cloud-data-connection.svg @@ -4,9 +4,5 @@ version: "1.68" unicode: "f1d1" --- - - - - - + diff --git a/src/_icons/cloud-download.svg b/src/_icons/cloud-download.svg index 60de715bc..3de84147d 100644 --- a/src/_icons/cloud-download.svg +++ b/src/_icons/cloud-download.svg @@ -5,7 +5,5 @@ category: System unicode: "ea71" --- - - - + diff --git a/src/_icons/cloud-filled.svg b/src/_icons/cloud-filled.svg new file mode 100644 index 000000000..9b68c635c --- /dev/null +++ b/src/_icons/cloud-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f673" +--- + + + diff --git a/src/_icons/cloud-fog.svg b/src/_icons/cloud-fog.svg index 9fa21a17b..fa0f94936 100644 --- a/src/_icons/cloud-fog.svg +++ b/src/_icons/cloud-fog.svg @@ -5,6 +5,5 @@ version: "1.20" unicode: "ecd9" --- - - + diff --git a/src/_icons/cloud-lock-open.svg b/src/_icons/cloud-lock-open.svg index 51219a75c..ee15614fb 100644 --- a/src/_icons/cloud-lock-open.svg +++ b/src/_icons/cloud-lock-open.svg @@ -5,7 +5,5 @@ version: "1.51" unicode: "efda" --- - - - + diff --git a/src/_icons/cloud-lock.svg b/src/_icons/cloud-lock.svg index 70cc877b3..8c7a9817b 100644 --- a/src/_icons/cloud-lock.svg +++ b/src/_icons/cloud-lock.svg @@ -5,7 +5,5 @@ version: "1.51" unicode: "efdb" --- - - - + diff --git a/src/_icons/cloud-off.svg b/src/_icons/cloud-off.svg index d0b1c02a7..94e24044c 100644 --- a/src/_icons/cloud-off.svg +++ b/src/_icons/cloud-off.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed3e" --- - - + diff --git a/src/_icons/cloud-rain.svg b/src/_icons/cloud-rain.svg index 20e61f250..07d371dd6 100644 --- a/src/_icons/cloud-rain.svg +++ b/src/_icons/cloud-rain.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea72" --- - - + diff --git a/src/_icons/cloud-snow.svg b/src/_icons/cloud-snow.svg index e1fa67e6a..faafb3442 100644 --- a/src/_icons/cloud-snow.svg +++ b/src/_icons/cloud-snow.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea73" --- - - + diff --git a/src/_icons/cloud-storm.svg b/src/_icons/cloud-storm.svg index ea96281f3..ff5c6aa16 100644 --- a/src/_icons/cloud-storm.svg +++ b/src/_icons/cloud-storm.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea74" --- - - + diff --git a/src/_icons/cloud-upload.svg b/src/_icons/cloud-upload.svg index 9055014cb..5709a32c2 100644 --- a/src/_icons/cloud-upload.svg +++ b/src/_icons/cloud-upload.svg @@ -5,7 +5,5 @@ category: System unicode: "ea75" --- - - - + diff --git a/src/_icons/cloud.svg b/src/_icons/cloud.svg index 4c6eadadf..bd25320be 100644 --- a/src/_icons/cloud.svg +++ b/src/_icons/cloud.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "ea76" --- - + diff --git a/src/_icons/clover-2.svg b/src/_icons/clover-2.svg index 96cbd947b..75f5a42be 100644 --- a/src/_icons/clover-2.svg +++ b/src/_icons/clover-2.svg @@ -4,9 +4,5 @@ version: "1.72" unicode: "f21e" --- - - - - - + diff --git a/src/_icons/clover.svg b/src/_icons/clover.svg index 163fd7bc7..3d7e62ad7 100644 --- a/src/_icons/clover.svg +++ b/src/_icons/clover.svg @@ -4,8 +4,5 @@ version: "1.69" unicode: "f1ea" --- - - - - + diff --git a/src/_icons/clubs-filled.svg b/src/_icons/clubs-filled.svg new file mode 100644 index 000000000..a28200eb3 --- /dev/null +++ b/src/_icons/clubs-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f674" +--- + + + diff --git a/src/_icons/clubs.svg b/src/_icons/clubs.svg index 3817b7632..f3fd80e0f 100644 --- a/src/_icons/clubs.svg +++ b/src/_icons/clubs.svg @@ -5,5 +5,5 @@ version: "1.52" unicode: "eff4" --- - + diff --git a/src/_icons/code-asterix.svg b/src/_icons/code-asterix.svg index c34fe17dd..1cac23e5e 100644 --- a/src/_icons/code-asterix.svg +++ b/src/_icons/code-asterix.svg @@ -5,12 +5,5 @@ version: "1.85" unicode: "f312" --- - - - - - - - - + diff --git a/src/_icons/code-circle-2.svg b/src/_icons/code-circle-2.svg index c1b7145c8..664df587b 100644 --- a/src/_icons/code-circle-2.svg +++ b/src/_icons/code-circle-2.svg @@ -5,8 +5,5 @@ unicode: "f4fe" version: "1.101" --- - - - - + diff --git a/src/_icons/code-circle.svg b/src/_icons/code-circle.svg index 95c220c19..55c581973 100644 --- a/src/_icons/code-circle.svg +++ b/src/_icons/code-circle.svg @@ -5,7 +5,5 @@ unicode: "f4ff" version: "1.101" --- - - - + diff --git a/src/_icons/code-dots.svg b/src/_icons/code-dots.svg index dbf0bdb30..2ad2d1849 100644 --- a/src/_icons/code-dots.svg +++ b/src/_icons/code-dots.svg @@ -4,9 +4,5 @@ unicode: "f61a" version: "1.115" --- - - - - - + diff --git a/src/_icons/code-minus.svg b/src/_icons/code-minus.svg index 46fb0a13f..008be867b 100644 --- a/src/_icons/code-minus.svg +++ b/src/_icons/code-minus.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee42" --- - - - + diff --git a/src/_icons/code-off.svg b/src/_icons/code-off.svg index 05fd3ae67..e8358ede3 100644 --- a/src/_icons/code-off.svg +++ b/src/_icons/code-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0d0" --- - - - - + diff --git a/src/_icons/code-plus.svg b/src/_icons/code-plus.svg index c2adc9ee4..709315d10 100644 --- a/src/_icons/code-plus.svg +++ b/src/_icons/code-plus.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee43" --- - - - - + diff --git a/src/_icons/code.svg b/src/_icons/code.svg index 524508596..0b40ce42e 100644 --- a/src/_icons/code.svg +++ b/src/_icons/code.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea77" --- - - - + diff --git a/src/_icons/coffee-off.svg b/src/_icons/coffee-off.svg index af74887f9..5ce5c102a 100644 --- a/src/_icons/coffee-off.svg +++ b/src/_icons/coffee-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f106" --- - - - - - - + diff --git a/src/_icons/coffee.svg b/src/_icons/coffee.svg index a354622f3..cd2e8c455 100644 --- a/src/_icons/coffee.svg +++ b/src/_icons/coffee.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef0e" --- - - - - - + diff --git a/src/_icons/coffin.svg b/src/_icons/coffin.svg index 37a5db3e8..e25a1457b 100644 --- a/src/_icons/coffin.svg +++ b/src/_icons/coffin.svg @@ -4,8 +4,5 @@ unicode: "f579" version: "1.108" --- - - - - + diff --git a/src/_icons/coin-bitcoin.svg b/src/_icons/coin-bitcoin.svg index c74e7eb04..04f0e6d20 100644 --- a/src/_icons/coin-bitcoin.svg +++ b/src/_icons/coin-bitcoin.svg @@ -5,10 +5,5 @@ version: "1.81" unicode: "f2be" --- - - - - - - + diff --git a/src/_icons/coin-euro.svg b/src/_icons/coin-euro.svg index afdd36c8e..b211693c7 100644 --- a/src/_icons/coin-euro.svg +++ b/src/_icons/coin-euro.svg @@ -5,8 +5,5 @@ version: "1.81" unicode: "f2bf" --- - - - - + diff --git a/src/_icons/coin-monero.svg b/src/_icons/coin-monero.svg index 3cef08634..1d4071793 100644 --- a/src/_icons/coin-monero.svg +++ b/src/_icons/coin-monero.svg @@ -5,6 +5,5 @@ unicode: "f4a0" version: "1.96" --- - - + diff --git a/src/_icons/coin-off.svg b/src/_icons/coin-off.svg index c87cd23ee..8b80d2f44 100644 --- a/src/_icons/coin-off.svg +++ b/src/_icons/coin-off.svg @@ -5,8 +5,5 @@ version: "1.63" unicode: "f0d1" --- - - - - + diff --git a/src/_icons/coin-pound.svg b/src/_icons/coin-pound.svg index 1312b09e8..f7c1c1ace 100644 --- a/src/_icons/coin-pound.svg +++ b/src/_icons/coin-pound.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2c0" --- - - - + diff --git a/src/_icons/coin-rupee.svg b/src/_icons/coin-rupee.svg index 01febb0ed..e038d18fc 100644 --- a/src/_icons/coin-rupee.svg +++ b/src/_icons/coin-rupee.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2c1" --- - - - + diff --git a/src/_icons/coin-yen.svg b/src/_icons/coin-yen.svg index 4a35cb173..0f72c662e 100644 --- a/src/_icons/coin-yen.svg +++ b/src/_icons/coin-yen.svg @@ -5,9 +5,5 @@ version: "1.81" unicode: "f2c2" --- - - - - - + diff --git a/src/_icons/coin-yuan.svg b/src/_icons/coin-yuan.svg index 405f9247d..8132f2390 100644 --- a/src/_icons/coin-yuan.svg +++ b/src/_icons/coin-yuan.svg @@ -5,8 +5,5 @@ version: "1.81" unicode: "f2c3" --- - - - - + diff --git a/src/_icons/coin.svg b/src/_icons/coin.svg index 4e82a1bd5..63ad7bc5b 100644 --- a/src/_icons/coin.svg +++ b/src/_icons/coin.svg @@ -5,7 +5,5 @@ category: E-commerce unicode: "eb82" --- - - - + diff --git a/src/_icons/coins.svg b/src/_icons/coins.svg index 48c813374..94be0c9bd 100644 --- a/src/_icons/coins.svg +++ b/src/_icons/coins.svg @@ -3,9 +3,5 @@ unicode: "f65d" version: "1.119" --- - - - - - + diff --git a/src/_icons/color-filter.svg b/src/_icons/color-filter.svg index 3fdab1423..8c6283258 100644 --- a/src/_icons/color-filter.svg +++ b/src/_icons/color-filter.svg @@ -5,7 +5,5 @@ unicode: "f5a8" version: "1.110" --- - - - + diff --git a/src/_icons/color-picker-off.svg b/src/_icons/color-picker-off.svg index 9170c14ad..ace4ccfe8 100644 --- a/src/_icons/color-picker-off.svg +++ b/src/_icons/color-picker-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0d2" --- - - - + diff --git a/src/_icons/color-picker.svg b/src/_icons/color-picker.svg index c721cf261..f240e24a1 100644 --- a/src/_icons/color-picker.svg +++ b/src/_icons/color-picker.svg @@ -5,6 +5,5 @@ version: "1.7" unicode: "ebe6" --- - - + diff --git a/src/_icons/color-swatch-off.svg b/src/_icons/color-swatch-off.svg index 1a742d628..c9ffddaad 100644 --- a/src/_icons/color-swatch-off.svg +++ b/src/_icons/color-swatch-off.svg @@ -5,9 +5,5 @@ version: "1.63" unicode: "f0d3" --- - - - - - + diff --git a/src/_icons/color-swatch.svg b/src/_icons/color-swatch.svg index 9a6953d80..9fd63814b 100644 --- a/src/_icons/color-swatch.svg +++ b/src/_icons/color-swatch.svg @@ -5,8 +5,5 @@ version: "1.2" unicode: "eb61" --- - - - - + diff --git a/src/_icons/column-insert-left.svg b/src/_icons/column-insert-left.svg index 9354275a5..c8be598be 100644 --- a/src/_icons/column-insert-left.svg +++ b/src/_icons/column-insert-left.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee44" --- - - - + diff --git a/src/_icons/column-insert-right.svg b/src/_icons/column-insert-right.svg index 8b2787428..cf8273723 100644 --- a/src/_icons/column-insert-right.svg +++ b/src/_icons/column-insert-right.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee45" --- - - - + diff --git a/src/_icons/columns-off.svg b/src/_icons/columns-off.svg index 099e58cd9..a735bd9a2 100644 --- a/src/_icons/columns-off.svg +++ b/src/_icons/columns-off.svg @@ -5,13 +5,5 @@ version: "1.63" unicode: "f0d4" --- - - - - - - - - - + diff --git a/src/_icons/columns.svg b/src/_icons/columns.svg index 27aaf98df..1e6da9641 100644 --- a/src/_icons/columns.svg +++ b/src/_icons/columns.svg @@ -5,12 +5,5 @@ version: "1.3" unicode: "eb83" --- - - - - - - - - + diff --git a/src/_icons/comet.svg b/src/_icons/comet.svg index 80f2473cc..ebed3544b 100644 --- a/src/_icons/comet.svg +++ b/src/_icons/comet.svg @@ -5,8 +5,5 @@ version: "1.13" unicode: "ec76" --- - - - - + diff --git a/src/_icons/command-off.svg b/src/_icons/command-off.svg index 28b145567..700ba695e 100644 --- a/src/_icons/command-off.svg +++ b/src/_icons/command-off.svg @@ -5,6 +5,5 @@ unicode: "f3d7" version: "1.94" --- - - + diff --git a/src/_icons/compass-off.svg b/src/_icons/compass-off.svg index 5d390cc45..f80ff31e7 100644 --- a/src/_icons/compass-off.svg +++ b/src/_icons/compass-off.svg @@ -5,11 +5,5 @@ version: "1.63" unicode: "f0d5" --- - - - - - - - + diff --git a/src/_icons/compass.svg b/src/_icons/compass.svg index 720257263..3ad2cc024 100644 --- a/src/_icons/compass.svg +++ b/src/_icons/compass.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "ea79" --- - - - - - - + diff --git a/src/_icons/components-off.svg b/src/_icons/components-off.svg index 8e4e25efc..898926390 100644 --- a/src/_icons/components-off.svg +++ b/src/_icons/components-off.svg @@ -5,9 +5,5 @@ version: "1.63" unicode: "f0d6" --- - - - - - + diff --git a/src/_icons/components.svg b/src/_icons/components.svg index 4ecc452fb..183389bd1 100644 --- a/src/_icons/components.svg +++ b/src/_icons/components.svg @@ -5,8 +5,5 @@ version: "1.48" unicode: "efa5" --- - - - - + diff --git a/src/_icons/cone-2.svg b/src/_icons/cone-2.svg index b96caa7ad..af6e17bfe 100644 --- a/src/_icons/cone-2.svg +++ b/src/_icons/cone-2.svg @@ -4,6 +4,5 @@ version: "1.51" unicode: "efdc" --- - - + diff --git a/src/_icons/cone-off.svg b/src/_icons/cone-off.svg index 9cf156921..5ac9f4065 100644 --- a/src/_icons/cone-off.svg +++ b/src/_icons/cone-off.svg @@ -4,7 +4,5 @@ unicode: "f3d8" version: "1.94" --- - - - + diff --git a/src/_icons/cone.svg b/src/_icons/cone.svg index 92bd3f58e..9322dc575 100644 --- a/src/_icons/cone.svg +++ b/src/_icons/cone.svg @@ -4,6 +4,5 @@ version: "1.51" unicode: "efdd" --- - - + diff --git a/src/_icons/confetti-off.svg b/src/_icons/confetti-off.svg index 6b45598bf..19f325d01 100644 --- a/src/_icons/confetti-off.svg +++ b/src/_icons/confetti-off.svg @@ -4,15 +4,5 @@ unicode: "f3d9" version: "1.94" --- - - - - - - - - - - - + diff --git a/src/_icons/confetti.svg b/src/_icons/confetti.svg index de06f8948..6451c8519 100644 --- a/src/_icons/confetti.svg +++ b/src/_icons/confetti.svg @@ -4,14 +4,5 @@ version: "1.39" unicode: "ee46" --- - - - - - - - - - - + diff --git a/src/_icons/confucius.svg b/src/_icons/confucius.svg index e3aa81f93..6f7ba116b 100644 --- a/src/_icons/confucius.svg +++ b/src/_icons/confucius.svg @@ -5,8 +5,5 @@ unicode: "f58a" version: "1.109" --- - - - - + diff --git a/src/_icons/container-off.svg b/src/_icons/container-off.svg index 5083d6c29..b2d29acbf 100644 --- a/src/_icons/container-off.svg +++ b/src/_icons/container-off.svg @@ -5,16 +5,5 @@ version: "1.65" unicode: "f107" --- - - - - - - - - - - - - + diff --git a/src/_icons/container.svg b/src/_icons/container.svg index 19889b33d..2b57f6907 100644 --- a/src/_icons/container.svg +++ b/src/_icons/container.svg @@ -5,15 +5,5 @@ version: "1.39" unicode: "ee47" --- - - - - - - - - - - - + diff --git a/src/_icons/contrast-2-off.svg b/src/_icons/contrast-2-off.svg index 046e78026..5fef76858 100644 --- a/src/_icons/contrast-2-off.svg +++ b/src/_icons/contrast-2-off.svg @@ -5,7 +5,5 @@ unicode: "f3da" version: "1.94" --- - - - + diff --git a/src/_icons/contrast-2.svg b/src/_icons/contrast-2.svg index 381b5c197..cafe5da00 100644 --- a/src/_icons/contrast-2.svg +++ b/src/_icons/contrast-2.svg @@ -5,6 +5,5 @@ version: "1.50" unicode: "efc7" --- - - + diff --git a/src/_icons/contrast-off.svg b/src/_icons/contrast-off.svg index 01f07b429..4377661c2 100644 --- a/src/_icons/contrast-off.svg +++ b/src/_icons/contrast-off.svg @@ -5,7 +5,5 @@ unicode: "f3db" version: "1.94" --- - - - + diff --git a/src/_icons/contrast.svg b/src/_icons/contrast.svg index 25f340bb2..2a2804943 100644 --- a/src/_icons/contrast.svg +++ b/src/_icons/contrast.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec4e" --- - - + diff --git a/src/_icons/cooker.svg b/src/_icons/cooker.svg index 9f7bc934f..6958ac08d 100644 --- a/src/_icons/cooker.svg +++ b/src/_icons/cooker.svg @@ -4,10 +4,5 @@ unicode: "f57a" version: "1.108" --- - - - - - - + diff --git a/src/_icons/cookie-man.svg b/src/_icons/cookie-man.svg index 85d02b1db..f6bde6950 100644 --- a/src/_icons/cookie-man.svg +++ b/src/_icons/cookie-man.svg @@ -4,10 +4,5 @@ unicode: "f4c4" version: "1.98" --- - - - - - - + diff --git a/src/_icons/cookie-off.svg b/src/_icons/cookie-off.svg index 02e25f3b4..a88dd6f36 100644 --- a/src/_icons/cookie-off.svg +++ b/src/_icons/cookie-off.svg @@ -5,9 +5,5 @@ version: "1.63" unicode: "f0d7" --- - - - - - + diff --git a/src/_icons/cookie.svg b/src/_icons/cookie.svg index bfb1a3d65..cf729f45d 100644 --- a/src/_icons/cookie.svg +++ b/src/_icons/cookie.svg @@ -5,10 +5,5 @@ version: "1.40" unicode: "ef0f" --- - - - - - - + diff --git a/src/_icons/copy-off.svg b/src/_icons/copy-off.svg index 53675fea2..d56c825e0 100644 --- a/src/_icons/copy-off.svg +++ b/src/_icons/copy-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0d8" --- - - - + diff --git a/src/_icons/copy.svg b/src/_icons/copy.svg index f1e35653e..621b48b64 100644 --- a/src/_icons/copy.svg +++ b/src/_icons/copy.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea7a" --- - - + diff --git a/src/_icons/copyleft-off.svg b/src/_icons/copyleft-off.svg index 2e292dccb..4906de8c2 100644 --- a/src/_icons/copyleft-off.svg +++ b/src/_icons/copyleft-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0d9" --- - - - + diff --git a/src/_icons/copyleft.svg b/src/_icons/copyleft.svg index c5985506f..00f8970a6 100644 --- a/src/_icons/copyleft.svg +++ b/src/_icons/copyleft.svg @@ -5,6 +5,5 @@ version: "1.11" unicode: "ec3d" --- - - + diff --git a/src/_icons/copyright-off.svg b/src/_icons/copyright-off.svg index 5d59228ca..3c2832100 100644 --- a/src/_icons/copyright-off.svg +++ b/src/_icons/copyright-off.svg @@ -5,7 +5,5 @@ version: "1.63" unicode: "f0da" --- - - - + diff --git a/src/_icons/copyright.svg b/src/_icons/copyright.svg index 41f54a489..e229d32e1 100644 --- a/src/_icons/copyright.svg +++ b/src/_icons/copyright.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea7b" --- - - + diff --git a/src/_icons/corner-down-left-double.svg b/src/_icons/corner-down-left-double.svg index 9420b6102..c125345f8 100644 --- a/src/_icons/corner-down-left-double.svg +++ b/src/_icons/corner-down-left-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee48" --- - - + diff --git a/src/_icons/corner-down-right-double.svg b/src/_icons/corner-down-right-double.svg index 73fcd5f54..008e014c4 100644 --- a/src/_icons/corner-down-right-double.svg +++ b/src/_icons/corner-down-right-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee49" --- - - + diff --git a/src/_icons/corner-left-down-double.svg b/src/_icons/corner-left-down-double.svg index cf609c526..7057cd056 100644 --- a/src/_icons/corner-left-down-double.svg +++ b/src/_icons/corner-left-down-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4a" --- - - + diff --git a/src/_icons/corner-left-up-double.svg b/src/_icons/corner-left-up-double.svg index eb2e1f66c..99ab089bf 100644 --- a/src/_icons/corner-left-up-double.svg +++ b/src/_icons/corner-left-up-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4b" --- - - + diff --git a/src/_icons/corner-right-down-double.svg b/src/_icons/corner-right-down-double.svg index 27969e384..aaca8a068 100644 --- a/src/_icons/corner-right-down-double.svg +++ b/src/_icons/corner-right-down-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4c" --- - - + diff --git a/src/_icons/corner-right-up-double.svg b/src/_icons/corner-right-up-double.svg index 211857f34..0eea6716b 100644 --- a/src/_icons/corner-right-up-double.svg +++ b/src/_icons/corner-right-up-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4d" --- - - + diff --git a/src/_icons/corner-up-left-double.svg b/src/_icons/corner-up-left-double.svg index 5734b1ee2..f5c3aaa01 100644 --- a/src/_icons/corner-up-left-double.svg +++ b/src/_icons/corner-up-left-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4e" --- - - + diff --git a/src/_icons/corner-up-right-double.svg b/src/_icons/corner-up-right-double.svg index 198be44ab..68c5a86bc 100644 --- a/src/_icons/corner-up-right-double.svg +++ b/src/_icons/corner-up-right-double.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee4f" --- - - + diff --git a/src/_icons/cpu-2.svg b/src/_icons/cpu-2.svg index 6e1bd77cc..1a2f3c029 100644 --- a/src/_icons/cpu-2.svg +++ b/src/_icons/cpu-2.svg @@ -5,14 +5,5 @@ version: "1.59" unicode: "f075" --- - - - - - - - - - - + diff --git a/src/_icons/cpu-off.svg b/src/_icons/cpu-off.svg index 7771a0403..d13c2c7ae 100644 --- a/src/_icons/cpu-off.svg +++ b/src/_icons/cpu-off.svg @@ -5,15 +5,5 @@ version: "1.65" unicode: "f108" --- - - - - - - - - - - - + diff --git a/src/_icons/cpu.svg b/src/_icons/cpu.svg index 040c32dc6..12705d6e4 100644 --- a/src/_icons/cpu.svg +++ b/src/_icons/cpu.svg @@ -5,14 +5,5 @@ version: "1.47" unicode: "ef8e" --- - - - - - - - - - - + diff --git a/src/_icons/crane-off.svg b/src/_icons/crane-off.svg index 9533216da..99dd8dc30 100644 --- a/src/_icons/crane-off.svg +++ b/src/_icons/crane-off.svg @@ -5,12 +5,5 @@ version: "1.65" unicode: "f109" --- - - - - - - - - + diff --git a/src/_icons/crane.svg b/src/_icons/crane.svg index 00a625ef5..397745a38 100644 --- a/src/_icons/crane.svg +++ b/src/_icons/crane.svg @@ -5,8 +5,5 @@ version: "1.41" unicode: "ef27" --- - - - - + diff --git a/src/_icons/creative-commons-by.svg b/src/_icons/creative-commons-by.svg index 72993a28b..e14916081 100644 --- a/src/_icons/creative-commons-by.svg +++ b/src/_icons/creative-commons-by.svg @@ -4,7 +4,5 @@ version: "1.72" unicode: "f21f" --- - - - + diff --git a/src/_icons/creative-commons-nc.svg b/src/_icons/creative-commons-nc.svg index fddcf7c44..f5fb11771 100644 --- a/src/_icons/creative-commons-nc.svg +++ b/src/_icons/creative-commons-nc.svg @@ -4,10 +4,5 @@ version: "1.72" unicode: "f220" --- - - - - - - + diff --git a/src/_icons/creative-commons-nd.svg b/src/_icons/creative-commons-nd.svg index f51a8d816..3c6c5f863 100644 --- a/src/_icons/creative-commons-nd.svg +++ b/src/_icons/creative-commons-nd.svg @@ -4,7 +4,5 @@ version: "1.72" unicode: "f221" --- - - - + diff --git a/src/_icons/creative-commons-off.svg b/src/_icons/creative-commons-off.svg index 4d27d9e36..a8c886c20 100644 --- a/src/_icons/creative-commons-off.svg +++ b/src/_icons/creative-commons-off.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f10a" --- - - - - + diff --git a/src/_icons/creative-commons-sa.svg b/src/_icons/creative-commons-sa.svg index 7b4ca759a..673867b83 100644 --- a/src/_icons/creative-commons-sa.svg +++ b/src/_icons/creative-commons-sa.svg @@ -4,7 +4,5 @@ version: "1.72" unicode: "f222" --- - - - + diff --git a/src/_icons/creative-commons-zero.svg b/src/_icons/creative-commons-zero.svg index 71bed4586..d1952e7cc 100644 --- a/src/_icons/creative-commons-zero.svg +++ b/src/_icons/creative-commons-zero.svg @@ -4,7 +4,5 @@ version: "1.72" unicode: "f223" --- - - - + diff --git a/src/_icons/creative-commons.svg b/src/_icons/creative-commons.svg index 7ca325629..159f85749 100644 --- a/src/_icons/creative-commons.svg +++ b/src/_icons/creative-commons.svg @@ -4,7 +4,5 @@ tags: [licence, license] unicode: "efb3" --- - - - + diff --git a/src/_icons/credit-card-off.svg b/src/_icons/credit-card-off.svg index d64f03ddf..68dc81e5a 100644 --- a/src/_icons/credit-card-off.svg +++ b/src/_icons/credit-card-off.svg @@ -4,11 +4,5 @@ version: "1.24" unicode: "ed11" --- - - - - - - - + diff --git a/src/_icons/credit-card.svg b/src/_icons/credit-card.svg index 864ec47fd..d56d61b2d 100644 --- a/src/_icons/credit-card.svg +++ b/src/_icons/credit-card.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "ea84" --- - - - - + diff --git a/src/_icons/cricket.svg b/src/_icons/cricket.svg index d43488d16..6901d476b 100644 --- a/src/_icons/cricket.svg +++ b/src/_icons/cricket.svg @@ -5,7 +5,5 @@ version: "1.61" unicode: "f09a" --- - - - + diff --git a/src/_icons/crop.svg b/src/_icons/crop.svg index f66a9cbf9..142591d54 100644 --- a/src/_icons/crop.svg +++ b/src/_icons/crop.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea85" --- - - + diff --git a/src/_icons/cross-filled.svg b/src/_icons/cross-filled.svg new file mode 100644 index 000000000..a8bea3fb5 --- /dev/null +++ b/src/_icons/cross-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f675" +--- + + + diff --git a/src/_icons/cross-off.svg b/src/_icons/cross-off.svg index 844150d81..a95d963e6 100644 --- a/src/_icons/cross-off.svg +++ b/src/_icons/cross-off.svg @@ -5,6 +5,5 @@ version: "1.65" unicode: "f10b" --- - - + diff --git a/src/_icons/crosshair.svg b/src/_icons/crosshair.svg index 57136ae44..5e81fc357 100644 --- a/src/_icons/crosshair.svg +++ b/src/_icons/crosshair.svg @@ -4,10 +4,5 @@ version: "1.11" unicode: "ec3e" --- - - - - - - + diff --git a/src/_icons/crown-off.svg b/src/_icons/crown-off.svg index 309cfb804..8c190fd46 100644 --- a/src/_icons/crown-off.svg +++ b/src/_icons/crown-off.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "ee50" --- - - + diff --git a/src/_icons/crutches-off.svg b/src/_icons/crutches-off.svg index f2d8de6e1..dfc60187b 100644 --- a/src/_icons/crutches-off.svg +++ b/src/_icons/crutches-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f10c" --- - - - - - - + diff --git a/src/_icons/crutches.svg b/src/_icons/crutches.svg index 797ea1989..3ba7e2862 100644 --- a/src/_icons/crutches.svg +++ b/src/_icons/crutches.svg @@ -5,9 +5,5 @@ version: "1.44" unicode: "ef5b" --- - - - - - + diff --git a/src/_icons/crystal-ball.svg b/src/_icons/crystal-ball.svg index 4b1a8b2a4..8e62d2fb1 100644 --- a/src/_icons/crystal-ball.svg +++ b/src/_icons/crystal-ball.svg @@ -4,7 +4,5 @@ unicode: "f57b" version: "1.108" --- - - - + diff --git a/src/_icons/cube-send.svg b/src/_icons/cube-send.svg index 980b3ce63..ba640b3b2 100644 --- a/src/_icons/cube-send.svg +++ b/src/_icons/cube-send.svg @@ -3,10 +3,5 @@ unicode: "f61b" version: "1.115" --- - - - - - - + diff --git a/src/_icons/cube-unfolded.svg b/src/_icons/cube-unfolded.svg index fefeff98d..55baa4c18 100644 --- a/src/_icons/cube-unfolded.svg +++ b/src/_icons/cube-unfolded.svg @@ -3,6 +3,5 @@ unicode: "f61c" version: "1.115" --- - - + diff --git a/src/_icons/cup-off.svg b/src/_icons/cup-off.svg index adaa515da..4be9b42e6 100644 --- a/src/_icons/cup-off.svg +++ b/src/_icons/cup-off.svg @@ -5,9 +5,5 @@ version: "1.65" unicode: "f10d" --- - - - - - + diff --git a/src/_icons/cup.svg b/src/_icons/cup.svg index fbdfd25ad..45dc90073 100644 --- a/src/_icons/cup.svg +++ b/src/_icons/cup.svg @@ -5,8 +5,5 @@ version: "1.41" unicode: "ef28" --- - - - - + diff --git a/src/_icons/curling.svg b/src/_icons/curling.svg index 3139cfd2a..e849c2dd4 100644 --- a/src/_icons/curling.svg +++ b/src/_icons/curling.svg @@ -5,7 +5,5 @@ version: "1.50" unicode: "efc8" --- - - - + diff --git a/src/_icons/currency-afghani.svg b/src/_icons/currency-afghani.svg index 01e37c135..585fc2850 100644 --- a/src/_icons/currency-afghani.svg +++ b/src/_icons/currency-afghani.svg @@ -4,7 +4,5 @@ unicode: "f65e" version: "1.119" --- - - - + diff --git a/src/_icons/currency-bahraini.svg b/src/_icons/currency-bahraini.svg index 297f59da8..be601ce6a 100644 --- a/src/_icons/currency-bahraini.svg +++ b/src/_icons/currency-bahraini.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee51" --- - - - - + diff --git a/src/_icons/currency-baht.svg b/src/_icons/currency-baht.svg index 1ab7f4b6a..cf5eaaa7c 100644 --- a/src/_icons/currency-baht.svg +++ b/src/_icons/currency-baht.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "f08a" --- - - - - - + diff --git a/src/_icons/currency-bitcoin.svg b/src/_icons/currency-bitcoin.svg index edb06c107..e0b63d150 100644 --- a/src/_icons/currency-bitcoin.svg +++ b/src/_icons/currency-bitcoin.svg @@ -5,11 +5,5 @@ version: "1.4" unicode: "ebab" --- - - - - - - - + diff --git a/src/_icons/currency-cent.svg b/src/_icons/currency-cent.svg index fbab5efa3..1dcfb22b5 100644 --- a/src/_icons/currency-cent.svg +++ b/src/_icons/currency-cent.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee53" --- - - - + diff --git a/src/_icons/currency-dinar.svg b/src/_icons/currency-dinar.svg index 93259c9f6..24d1b06c0 100644 --- a/src/_icons/currency-dinar.svg +++ b/src/_icons/currency-dinar.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee54" --- - - - - + diff --git a/src/_icons/currency-dirham.svg b/src/_icons/currency-dirham.svg index a3cae5f28..0559df2ea 100644 --- a/src/_icons/currency-dirham.svg +++ b/src/_icons/currency-dirham.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee55" --- - - - - - + diff --git a/src/_icons/currency-dogecoin.svg b/src/_icons/currency-dogecoin.svg index 1ee878e6f..43964e835 100644 --- a/src/_icons/currency-dogecoin.svg +++ b/src/_icons/currency-dogecoin.svg @@ -5,7 +5,5 @@ version: "1.43" unicode: "ef4b" --- - - - + diff --git a/src/_icons/currency-dollar-australian.svg b/src/_icons/currency-dollar-australian.svg index e9093cb01..236b3e0bd 100644 --- a/src/_icons/currency-dollar-australian.svg +++ b/src/_icons/currency-dollar-australian.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee56" --- - - - - - + diff --git a/src/_icons/currency-dollar-brunei.svg b/src/_icons/currency-dollar-brunei.svg index 2e973cf4a..91089ccff 100644 --- a/src/_icons/currency-dollar-brunei.svg +++ b/src/_icons/currency-dollar-brunei.svg @@ -5,8 +5,5 @@ unicode: "f36c" version: "1.90" --- - - - - + diff --git a/src/_icons/currency-dollar-canadian.svg b/src/_icons/currency-dollar-canadian.svg index fe4deac6e..c7a647f4e 100644 --- a/src/_icons/currency-dollar-canadian.svg +++ b/src/_icons/currency-dollar-canadian.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee57" --- - - - - + diff --git a/src/_icons/currency-dollar-guyanese.svg b/src/_icons/currency-dollar-guyanese.svg index a1974903f..8fa9622b3 100644 --- a/src/_icons/currency-dollar-guyanese.svg +++ b/src/_icons/currency-dollar-guyanese.svg @@ -5,8 +5,5 @@ unicode: "f36d" version: "1.90" --- - - - - + diff --git a/src/_icons/currency-dollar-off.svg b/src/_icons/currency-dollar-off.svg index 1c166a99a..124081010 100644 --- a/src/_icons/currency-dollar-off.svg +++ b/src/_icons/currency-dollar-off.svg @@ -5,7 +5,5 @@ unicode: "f3dc" version: "1.94" --- - - - + diff --git a/src/_icons/currency-dollar-singapore.svg b/src/_icons/currency-dollar-singapore.svg index 65ffb8055..d65d380b8 100644 --- a/src/_icons/currency-dollar-singapore.svg +++ b/src/_icons/currency-dollar-singapore.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee58" --- - - - - + diff --git a/src/_icons/currency-dollar-zimbabwean.svg b/src/_icons/currency-dollar-zimbabwean.svg index 9accf5f85..895d85915 100644 --- a/src/_icons/currency-dollar-zimbabwean.svg +++ b/src/_icons/currency-dollar-zimbabwean.svg @@ -5,8 +5,5 @@ unicode: "f36e" version: "1.90" --- - - - - + diff --git a/src/_icons/currency-dollar.svg b/src/_icons/currency-dollar.svg index 609f4ed2d..3ac6d06a8 100644 --- a/src/_icons/currency-dollar.svg +++ b/src/_icons/currency-dollar.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb84" --- - - + diff --git a/src/_icons/currency-dong.svg b/src/_icons/currency-dong.svg index e9b937ed5..2113bc0b0 100644 --- a/src/_icons/currency-dong.svg +++ b/src/_icons/currency-dong.svg @@ -5,8 +5,5 @@ unicode: "f36f" version: "1.90" --- - - - - + diff --git a/src/_icons/currency-dram.svg b/src/_icons/currency-dram.svg index 62e09e495..8c2bb8d90 100644 --- a/src/_icons/currency-dram.svg +++ b/src/_icons/currency-dram.svg @@ -5,7 +5,5 @@ unicode: "f370" version: "1.90" --- - - - + diff --git a/src/_icons/currency-ethereum.svg b/src/_icons/currency-ethereum.svg index 43b99757a..6dc97abb6 100644 --- a/src/_icons/currency-ethereum.svg +++ b/src/_icons/currency-ethereum.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee59" --- - - + diff --git a/src/_icons/currency-euro-off.svg b/src/_icons/currency-euro-off.svg index 0b14d90cd..534af8440 100644 --- a/src/_icons/currency-euro-off.svg +++ b/src/_icons/currency-euro-off.svg @@ -5,7 +5,5 @@ unicode: "f3dd" version: "1.94" --- - - - + diff --git a/src/_icons/currency-euro.svg b/src/_icons/currency-euro.svg index 7dbba5296..e457332f6 100644 --- a/src/_icons/currency-euro.svg +++ b/src/_icons/currency-euro.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb85" --- - - + diff --git a/src/_icons/currency-forint.svg b/src/_icons/currency-forint.svg index a71625b9e..f076d0742 100644 --- a/src/_icons/currency-forint.svg +++ b/src/_icons/currency-forint.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee5a" --- - - - - + diff --git a/src/_icons/currency-frank.svg b/src/_icons/currency-frank.svg index 824ff5d9e..90776bbcc 100644 --- a/src/_icons/currency-frank.svg +++ b/src/_icons/currency-frank.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee5b" --- - - - + diff --git a/src/_icons/currency-guarani.svg b/src/_icons/currency-guarani.svg index 1ef00e84d..851000757 100644 --- a/src/_icons/currency-guarani.svg +++ b/src/_icons/currency-guarani.svg @@ -5,6 +5,5 @@ unicode: "f371" version: "1.90" --- - - + diff --git a/src/_icons/currency-hryvnia.svg b/src/_icons/currency-hryvnia.svg index 7587c3842..fd38dddbd 100644 --- a/src/_icons/currency-hryvnia.svg +++ b/src/_icons/currency-hryvnia.svg @@ -5,7 +5,5 @@ unicode: "f372" version: "1.90" --- - - - + diff --git a/src/_icons/currency-kip.svg b/src/_icons/currency-kip.svg index f89de0075..191e017a0 100644 --- a/src/_icons/currency-kip.svg +++ b/src/_icons/currency-kip.svg @@ -5,7 +5,5 @@ unicode: "f373" version: "1.90" --- - - - + diff --git a/src/_icons/currency-krone-czech.svg b/src/_icons/currency-krone-czech.svg index e382eb7f9..b6f09115d 100644 --- a/src/_icons/currency-krone-czech.svg +++ b/src/_icons/currency-krone-czech.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee5c" --- - - - - - + diff --git a/src/_icons/currency-krone-danish.svg b/src/_icons/currency-krone-danish.svg index 6aaa08456..deb1ca8ce 100644 --- a/src/_icons/currency-krone-danish.svg +++ b/src/_icons/currency-krone-danish.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee5d" --- - - - - - - + diff --git a/src/_icons/currency-krone-swedish.svg b/src/_icons/currency-krone-swedish.svg index 69b428507..42ef51ee3 100644 --- a/src/_icons/currency-krone-swedish.svg +++ b/src/_icons/currency-krone-swedish.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee5e" --- - - - - - + diff --git a/src/_icons/currency-lari.svg b/src/_icons/currency-lari.svg index 6b4a00181..d0fc6eef6 100644 --- a/src/_icons/currency-lari.svg +++ b/src/_icons/currency-lari.svg @@ -5,8 +5,5 @@ unicode: "f374" version: "1.90" --- - - - - + diff --git a/src/_icons/currency-lira.svg b/src/_icons/currency-lira.svg index b56bc5e96..1408923c6 100644 --- a/src/_icons/currency-lira.svg +++ b/src/_icons/currency-lira.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee60" --- - - - + diff --git a/src/_icons/currency-litecoin.svg b/src/_icons/currency-litecoin.svg index cb383e4ef..00eaa7716 100644 --- a/src/_icons/currency-litecoin.svg +++ b/src/_icons/currency-litecoin.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee61" --- - - + diff --git a/src/_icons/currency-lyd.svg b/src/_icons/currency-lyd.svg index dc4dc9560..7e69f75e4 100644 --- a/src/_icons/currency-lyd.svg +++ b/src/_icons/currency-lyd.svg @@ -5,7 +5,5 @@ unicode: "f375" version: "1.90" --- - - - + diff --git a/src/_icons/currency-manat.svg b/src/_icons/currency-manat.svg index c6c2e98c0..3845de8de 100644 --- a/src/_icons/currency-manat.svg +++ b/src/_icons/currency-manat.svg @@ -5,6 +5,5 @@ unicode: "f376" version: "1.90" --- - - + diff --git a/src/_icons/currency-naira.svg b/src/_icons/currency-naira.svg index db314d777..5d4971a7d 100644 --- a/src/_icons/currency-naira.svg +++ b/src/_icons/currency-naira.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee62" --- - - - + diff --git a/src/_icons/currency-off.svg b/src/_icons/currency-off.svg index f23c5dfed..541355dfb 100644 --- a/src/_icons/currency-off.svg +++ b/src/_icons/currency-off.svg @@ -5,10 +5,5 @@ unicode: "f3de" version: "1.94" --- - - - - - - + diff --git a/src/_icons/currency-paanga.svg b/src/_icons/currency-paanga.svg index a9dfb5792..3213f67c2 100644 --- a/src/_icons/currency-paanga.svg +++ b/src/_icons/currency-paanga.svg @@ -5,9 +5,5 @@ unicode: "f378" version: "1.90" --- - - - - - + diff --git a/src/_icons/currency-peso.svg b/src/_icons/currency-peso.svg index 266080d7d..c532b25fd 100644 --- a/src/_icons/currency-peso.svg +++ b/src/_icons/currency-peso.svg @@ -4,7 +4,5 @@ unicode: "f65f" version: "1.119" --- - - - + diff --git a/src/_icons/currency-pound-off.svg b/src/_icons/currency-pound-off.svg index 03456d618..11e9ccc10 100644 --- a/src/_icons/currency-pound-off.svg +++ b/src/_icons/currency-pound-off.svg @@ -5,6 +5,5 @@ unicode: "f3df" version: "1.94" --- - - + diff --git a/src/_icons/currency-quetzal.svg b/src/_icons/currency-quetzal.svg index 545123b43..f4b0d552a 100644 --- a/src/_icons/currency-quetzal.svg +++ b/src/_icons/currency-quetzal.svg @@ -5,6 +5,5 @@ unicode: "f379" version: "1.90" --- - - + diff --git a/src/_icons/currency-real.svg b/src/_icons/currency-real.svg index 68b2cb783..1cfdd0bc6 100644 --- a/src/_icons/currency-real.svg +++ b/src/_icons/currency-real.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee63" --- - - - - + diff --git a/src/_icons/currency-renminbi.svg b/src/_icons/currency-renminbi.svg index bc2f202ba..a0b897e3c 100644 --- a/src/_icons/currency-renminbi.svg +++ b/src/_icons/currency-renminbi.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee64" --- - - - - + diff --git a/src/_icons/currency-ripple.svg b/src/_icons/currency-ripple.svg index b13bc8b19..c82956df1 100644 --- a/src/_icons/currency-ripple.svg +++ b/src/_icons/currency-ripple.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee65" --- - - - - - + diff --git a/src/_icons/currency-riyal.svg b/src/_icons/currency-riyal.svg index babd2f278..8e7b0ebed 100644 --- a/src/_icons/currency-riyal.svg +++ b/src/_icons/currency-riyal.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee66" --- - - - + diff --git a/src/_icons/currency-rubel.svg b/src/_icons/currency-rubel.svg index f024c6641..6eda31033 100644 --- a/src/_icons/currency-rubel.svg +++ b/src/_icons/currency-rubel.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee67" --- - - + diff --git a/src/_icons/currency-rufiyaa.svg b/src/_icons/currency-rufiyaa.svg index a7afdcf8f..68c092330 100644 --- a/src/_icons/currency-rufiyaa.svg +++ b/src/_icons/currency-rufiyaa.svg @@ -5,7 +5,5 @@ unicode: "f37a" version: "1.90" --- - - - + diff --git a/src/_icons/currency-rupee-nepalese.svg b/src/_icons/currency-rupee-nepalese.svg index 86d419f54..62b254dad 100644 --- a/src/_icons/currency-rupee-nepalese.svg +++ b/src/_icons/currency-rupee-nepalese.svg @@ -5,6 +5,5 @@ unicode: "f37b" version: "1.90" --- - - + diff --git a/src/_icons/currency-rupee.svg b/src/_icons/currency-rupee.svg index 2f215158f..895595b09 100644 --- a/src/_icons/currency-rupee.svg +++ b/src/_icons/currency-rupee.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "ebad" --- - - + diff --git a/src/_icons/currency-shekel.svg b/src/_icons/currency-shekel.svg index 59276946d..245c32cd5 100644 --- a/src/_icons/currency-shekel.svg +++ b/src/_icons/currency-shekel.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee68" --- - - + diff --git a/src/_icons/currency-solana.svg b/src/_icons/currency-solana.svg index 9c5389ae3..bcc04b66e 100644 --- a/src/_icons/currency-solana.svg +++ b/src/_icons/currency-solana.svg @@ -5,7 +5,5 @@ unicode: "f4a1" version: "1.96" --- - - - + diff --git a/src/_icons/currency-som.svg b/src/_icons/currency-som.svg index 56615c9dc..c56532cbd 100644 --- a/src/_icons/currency-som.svg +++ b/src/_icons/currency-som.svg @@ -5,6 +5,5 @@ unicode: "f37c" version: "1.90" --- - - + diff --git a/src/_icons/currency-taka.svg b/src/_icons/currency-taka.svg index c46ae5841..7e7087fe5 100644 --- a/src/_icons/currency-taka.svg +++ b/src/_icons/currency-taka.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee69" --- - - - + diff --git a/src/_icons/currency-tenge.svg b/src/_icons/currency-tenge.svg index 0b7bc141d..7fa635a33 100644 --- a/src/_icons/currency-tenge.svg +++ b/src/_icons/currency-tenge.svg @@ -5,7 +5,5 @@ unicode: "f37d" version: "1.90" --- - - - + diff --git a/src/_icons/currency-tugrik.svg b/src/_icons/currency-tugrik.svg index 6fc2b74d8..62418741d 100644 --- a/src/_icons/currency-tugrik.svg +++ b/src/_icons/currency-tugrik.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee6a" --- - - - - + diff --git a/src/_icons/currency-won.svg b/src/_icons/currency-won.svg index 184b17dc4..e9065c20a 100644 --- a/src/_icons/currency-won.svg +++ b/src/_icons/currency-won.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee6b" --- - - - + diff --git a/src/_icons/currency-yen-off.svg b/src/_icons/currency-yen-off.svg index 197a242ca..ac1a5b88c 100644 --- a/src/_icons/currency-yen-off.svg +++ b/src/_icons/currency-yen-off.svg @@ -5,8 +5,5 @@ unicode: "f3e0" version: "1.94" --- - - - - + diff --git a/src/_icons/currency-yen.svg b/src/_icons/currency-yen.svg index f1eb5df5c..29cf6ab0c 100644 --- a/src/_icons/currency-yen.svg +++ b/src/_icons/currency-yen.svg @@ -5,7 +5,5 @@ version: "1.4" unicode: "ebae" --- - - - + diff --git a/src/_icons/currency-yuan.svg b/src/_icons/currency-yuan.svg index 062b1a3c9..45df8bbc6 100644 --- a/src/_icons/currency-yuan.svg +++ b/src/_icons/currency-yuan.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f29a" --- - - - + diff --git a/src/_icons/currency-zloty.svg b/src/_icons/currency-zloty.svg index ba3f0eeaa..c483e17ef 100644 --- a/src/_icons/currency-zloty.svg +++ b/src/_icons/currency-zloty.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee6c" --- - - - + diff --git a/src/_icons/currency.svg b/src/_icons/currency.svg index fd1fb8e32..30cf2a778 100644 --- a/src/_icons/currency.svg +++ b/src/_icons/currency.svg @@ -5,9 +5,5 @@ version: "1.48" unicode: "efa6" --- - - - - - + diff --git a/src/_icons/current-location-off.svg b/src/_icons/current-location-off.svg index 228f0b075..dfd5b216f 100644 --- a/src/_icons/current-location-off.svg +++ b/src/_icons/current-location-off.svg @@ -5,11 +5,5 @@ version: "1.65" unicode: "f10e" --- - - - - - - - + diff --git a/src/_icons/current-location.svg b/src/_icons/current-location.svg index 6f128f66b..929462b10 100644 --- a/src/_icons/current-location.svg +++ b/src/_icons/current-location.svg @@ -5,10 +5,5 @@ version: "1.22" unicode: "ecef" --- - - - - - - + diff --git a/src/_icons/cursor-off.svg b/src/_icons/cursor-off.svg index 45ad695fd..6afc9158a 100644 --- a/src/_icons/cursor-off.svg +++ b/src/_icons/cursor-off.svg @@ -4,7 +4,5 @@ version: "1.65" unicode: "f10f" --- - - - + diff --git a/src/_icons/cursor-text.svg b/src/_icons/cursor-text.svg index 158a1c57a..a1a2cb207 100644 --- a/src/_icons/cursor-text.svg +++ b/src/_icons/cursor-text.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee6d" --- - - - + diff --git a/src/_icons/cut.svg b/src/_icons/cut.svg index 4cddf3d5b..cebabb1c5 100644 --- a/src/_icons/cut.svg +++ b/src/_icons/cut.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea86" --- - - - - + diff --git a/src/_icons/cylinder.svg b/src/_icons/cylinder.svg index 4313953e0..3d1d27db0 100644 --- a/src/_icons/cylinder.svg +++ b/src/_icons/cylinder.svg @@ -5,6 +5,5 @@ version: "1.105" unicode: "f54c" --- - - + diff --git a/src/_icons/dashboard-off.svg b/src/_icons/dashboard-off.svg index 11fb60660..9de3bddb1 100644 --- a/src/_icons/dashboard-off.svg +++ b/src/_icons/dashboard-off.svg @@ -5,8 +5,5 @@ unicode: "f3e1" version: "1.94" --- - - - - + diff --git a/src/_icons/dashboard.svg b/src/_icons/dashboard.svg index 466152272..600d18562 100644 --- a/src/_icons/dashboard.svg +++ b/src/_icons/dashboard.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea87" --- - - - + diff --git a/src/_icons/database-export.svg b/src/_icons/database-export.svg index 6d7301f92..aa37b5304 100644 --- a/src/_icons/database-export.svg +++ b/src/_icons/database-export.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee6e" --- - - - + diff --git a/src/_icons/database-import.svg b/src/_icons/database-import.svg index 2666b0cf4..94c643f0e 100644 --- a/src/_icons/database-import.svg +++ b/src/_icons/database-import.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee6f" --- - - - + diff --git a/src/_icons/database-off.svg b/src/_icons/database-off.svg index f88ff2b39..23602df82 100644 --- a/src/_icons/database-off.svg +++ b/src/_icons/database-off.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee70" --- - - - - + diff --git a/src/_icons/database.svg b/src/_icons/database.svg index 9f4e62158..32d856686 100644 --- a/src/_icons/database.svg +++ b/src/_icons/database.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea88" --- - - - + diff --git a/src/_icons/deer.svg b/src/_icons/deer.svg index f812de61c..43daff734 100644 --- a/src/_icons/deer.svg +++ b/src/_icons/deer.svg @@ -5,15 +5,5 @@ unicode: "f4c5" version: "1.98" --- - - - - - - - - - - - + diff --git a/src/_icons/dental-broken.svg b/src/_icons/dental-broken.svg index f966af290..05ffb4d72 100644 --- a/src/_icons/dental-broken.svg +++ b/src/_icons/dental-broken.svg @@ -4,6 +4,5 @@ version: "1.78" unicode: "f286" --- - - + diff --git a/src/_icons/dental-off.svg b/src/_icons/dental-off.svg index 36bd0d13c..b8d7f2591 100644 --- a/src/_icons/dental-off.svg +++ b/src/_icons/dental-off.svg @@ -5,7 +5,5 @@ version: "1.65" unicode: "f110" --- - - - + diff --git a/src/_icons/dental.svg b/src/_icons/dental.svg index 2b9055283..122f440c0 100644 --- a/src/_icons/dental.svg +++ b/src/_icons/dental.svg @@ -5,6 +5,5 @@ version: "1.55" unicode: "f025" --- - - + diff --git a/src/_icons/details-off.svg b/src/_icons/details-off.svg index a54e72f5b..b91c3aa2e 100644 --- a/src/_icons/details-off.svg +++ b/src/_icons/details-off.svg @@ -4,8 +4,5 @@ unicode: "f3e2" version: "1.94" --- - - - - + diff --git a/src/_icons/details.svg b/src/_icons/details.svg index a7c9400a0..56ad8921d 100644 --- a/src/_icons/details.svg +++ b/src/_icons/details.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "ee71" --- - - + diff --git a/src/_icons/device-airpods-case.svg b/src/_icons/device-airpods-case.svg index ea8396c39..cb4b437c4 100644 --- a/src/_icons/device-airpods-case.svg +++ b/src/_icons/device-airpods-case.svg @@ -4,7 +4,5 @@ unicode: "f646" version: "1.118" --- - - - + diff --git a/src/_icons/device-airpods.svg b/src/_icons/device-airpods.svg index ea8ff5cb4..d26aa009f 100644 --- a/src/_icons/device-airpods.svg +++ b/src/_icons/device-airpods.svg @@ -5,6 +5,5 @@ unicode: "f5a9" version: "1.110" --- - - + diff --git a/src/_icons/device-analytics.svg b/src/_icons/device-analytics.svg index 8b4c88ee2..1623dda65 100644 --- a/src/_icons/device-analytics.svg +++ b/src/_icons/device-analytics.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee72" --- - - - - - + diff --git a/src/_icons/device-audio-tape.svg b/src/_icons/device-audio-tape.svg index 1a2761c9e..8ba8f8451 100644 --- a/src/_icons/device-audio-tape.svg +++ b/src/_icons/device-audio-tape.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee73" --- - - - - + diff --git a/src/_icons/device-camera-phone.svg b/src/_icons/device-camera-phone.svg index fe8d264cf..88aa2baac 100644 --- a/src/_icons/device-camera-phone.svg +++ b/src/_icons/device-camera-phone.svg @@ -5,7 +5,5 @@ version: "1.73" unicode: "f233" --- - - - + diff --git a/src/_icons/device-cctv-off.svg b/src/_icons/device-cctv-off.svg index 654484d28..7c4408867 100644 --- a/src/_icons/device-cctv-off.svg +++ b/src/_icons/device-cctv-off.svg @@ -5,9 +5,5 @@ unicode: "f3e3" version: "1.94" --- - - - - - + diff --git a/src/_icons/device-cctv.svg b/src/_icons/device-cctv.svg index 1fc27d377..38b8a3b11 100644 --- a/src/_icons/device-cctv.svg +++ b/src/_icons/device-cctv.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee74" --- - - - - + diff --git a/src/_icons/device-computer-camera-off.svg b/src/_icons/device-computer-camera-off.svg index 82e0ed318..8ef1087a2 100644 --- a/src/_icons/device-computer-camera-off.svg +++ b/src/_icons/device-computer-camera-off.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee75" --- - - - - + diff --git a/src/_icons/device-computer-camera.svg b/src/_icons/device-computer-camera.svg index 97f385bbb..a0b96f141 100644 --- a/src/_icons/device-computer-camera.svg +++ b/src/_icons/device-computer-camera.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee76" --- - - - + diff --git a/src/_icons/device-desktop-analytics.svg b/src/_icons/device-desktop-analytics.svg index 0c8f90d1e..8ef48e0e4 100644 --- a/src/_icons/device-desktop-analytics.svg +++ b/src/_icons/device-desktop-analytics.svg @@ -5,12 +5,5 @@ version: "1.39" unicode: "ee77" --- - - - - - - - - + diff --git a/src/_icons/device-desktop-off.svg b/src/_icons/device-desktop-off.svg index 6b41446bc..8ad8d94d4 100644 --- a/src/_icons/device-desktop-off.svg +++ b/src/_icons/device-desktop-off.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee78" --- - - - - - + diff --git a/src/_icons/device-desktop.svg b/src/_icons/device-desktop.svg index 0d9439568..976bec09c 100644 --- a/src/_icons/device-desktop.svg +++ b/src/_icons/device-desktop.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea89" --- - - - - + diff --git a/src/_icons/device-floppy.svg b/src/_icons/device-floppy.svg index cb0e46545..fef8c7b14 100644 --- a/src/_icons/device-floppy.svg +++ b/src/_icons/device-floppy.svg @@ -5,7 +5,5 @@ version: "1.2" unicode: "eb62" --- - - - + diff --git a/src/_icons/device-gamepad-2.svg b/src/_icons/device-gamepad-2.svg index 782edb902..b469e3f93 100644 --- a/src/_icons/device-gamepad-2.svg +++ b/src/_icons/device-gamepad-2.svg @@ -5,9 +5,5 @@ version: "1.68" unicode: "f1d2" --- - - - - - + diff --git a/src/_icons/device-gamepad.svg b/src/_icons/device-gamepad.svg index 0de5d443f..0c6a1967d 100644 --- a/src/_icons/device-gamepad.svg +++ b/src/_icons/device-gamepad.svg @@ -5,8 +5,5 @@ version: "1.2" unicode: "eb63" --- - - - - + diff --git a/src/_icons/device-heart-monitor.svg b/src/_icons/device-heart-monitor.svg index 270eb9d12..9e71d02cf 100644 --- a/src/_icons/device-heart-monitor.svg +++ b/src/_icons/device-heart-monitor.svg @@ -5,9 +5,5 @@ category: Devices unicode: "f060" --- - - - - - + diff --git a/src/_icons/device-ipad-horizontal.svg b/src/_icons/device-ipad-horizontal.svg index 69aada470..aeacee60b 100644 --- a/src/_icons/device-ipad-horizontal.svg +++ b/src/_icons/device-ipad-horizontal.svg @@ -4,6 +4,5 @@ unicode: "f647" version: "1.118" --- - - + diff --git a/src/_icons/device-ipad.svg b/src/_icons/device-ipad.svg index b0a796a44..933408dd2 100644 --- a/src/_icons/device-ipad.svg +++ b/src/_icons/device-ipad.svg @@ -4,6 +4,5 @@ unicode: "f648" version: "1.118" --- - - + diff --git a/src/_icons/device-landline-phone.svg b/src/_icons/device-landline-phone.svg index 64f26b3bb..ebdcc5382 100644 --- a/src/_icons/device-landline-phone.svg +++ b/src/_icons/device-landline-phone.svg @@ -4,13 +4,5 @@ unicode: "f649" version: "1.118" --- - - - - - - - - - + diff --git a/src/_icons/device-laptop-off.svg b/src/_icons/device-laptop-off.svg index 9a02e1d62..68f16674e 100644 --- a/src/_icons/device-laptop-off.svg +++ b/src/_icons/device-laptop-off.svg @@ -5,7 +5,5 @@ version: "1.58" unicode: "f061" --- - - - + diff --git a/src/_icons/device-laptop.svg b/src/_icons/device-laptop.svg index 12ef7c3ee..d18aeed37 100644 --- a/src/_icons/device-laptop.svg +++ b/src/_icons/device-laptop.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb64" --- - - + diff --git a/src/_icons/device-mobile-charging.svg b/src/_icons/device-mobile-charging.svg index d7f559e23..8e219f69c 100644 --- a/src/_icons/device-mobile-charging.svg +++ b/src/_icons/device-mobile-charging.svg @@ -5,7 +5,5 @@ version: "1.72" unicode: "f224" --- - - - + diff --git a/src/_icons/device-mobile-message.svg b/src/_icons/device-mobile-message.svg index 6d3e23a13..e1cf76f44 100644 --- a/src/_icons/device-mobile-message.svg +++ b/src/_icons/device-mobile-message.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee79" --- - - - + diff --git a/src/_icons/device-mobile-off.svg b/src/_icons/device-mobile-off.svg index 7e1768b03..d975affcb 100644 --- a/src/_icons/device-mobile-off.svg +++ b/src/_icons/device-mobile-off.svg @@ -5,8 +5,5 @@ version: "1.58" unicode: "f062" --- - - - - + diff --git a/src/_icons/device-mobile-rotated.svg b/src/_icons/device-mobile-rotated.svg index f29319daa..7216c444a 100644 --- a/src/_icons/device-mobile-rotated.svg +++ b/src/_icons/device-mobile-rotated.svg @@ -5,7 +5,5 @@ version: "1.20" unicode: "ecdb" --- - - - + diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index db84e3629..ca30b9e3a 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb86" --- - - - - + diff --git a/src/_icons/device-mobile.svg b/src/_icons/device-mobile.svg index c39c8f37b..80fad555b 100644 --- a/src/_icons/device-mobile.svg +++ b/src/_icons/device-mobile.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea8a" --- - - - + diff --git a/src/_icons/device-nintendo-off.svg b/src/_icons/device-nintendo-off.svg index e1bd8e719..5eb2d89ff 100644 --- a/src/_icons/device-nintendo-off.svg +++ b/src/_icons/device-nintendo-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f111" --- - - - - + diff --git a/src/_icons/device-nintendo.svg b/src/_icons/device-nintendo.svg index 786e03562..2484463f7 100644 --- a/src/_icons/device-nintendo.svg +++ b/src/_icons/device-nintendo.svg @@ -5,8 +5,5 @@ version: "1.55" unicode: "f026" --- - - - - + diff --git a/src/_icons/device-sd-card.svg b/src/_icons/device-sd-card.svg index af83fed8d..d6d358023 100644 --- a/src/_icons/device-sd-card.svg +++ b/src/_icons/device-sd-card.svg @@ -5,8 +5,5 @@ unicode: "f384" version: "1.91" --- - - - - + diff --git a/src/_icons/device-sim-1.svg b/src/_icons/device-sim-1.svg index 787b9f9d3..12fd342f1 100644 --- a/src/_icons/device-sim-1.svg +++ b/src/_icons/device-sim-1.svg @@ -5,6 +5,5 @@ unicode: "f4af" version: "1.97" --- - - + diff --git a/src/_icons/device-sim-2.svg b/src/_icons/device-sim-2.svg index a8b998e26..c42155a85 100644 --- a/src/_icons/device-sim-2.svg +++ b/src/_icons/device-sim-2.svg @@ -5,6 +5,5 @@ unicode: "f4b0" version: "1.97" --- - - + diff --git a/src/_icons/device-sim-3.svg b/src/_icons/device-sim-3.svg index fcee6f6db..d452d5356 100644 --- a/src/_icons/device-sim-3.svg +++ b/src/_icons/device-sim-3.svg @@ -5,6 +5,5 @@ unicode: "f4b1" version: "1.97" --- - - + diff --git a/src/_icons/device-sim.svg b/src/_icons/device-sim.svg index bfdda5d1a..2934cdd04 100644 --- a/src/_icons/device-sim.svg +++ b/src/_icons/device-sim.svg @@ -5,11 +5,5 @@ unicode: "f4b2" version: "1.97" --- - - - - - - - + diff --git a/src/_icons/device-speaker-off.svg b/src/_icons/device-speaker-off.svg index d5466805e..e75d896d7 100644 --- a/src/_icons/device-speaker-off.svg +++ b/src/_icons/device-speaker-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f112" --- - - - - + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg index 106f4e98a..75415b62d 100644 --- a/src/_icons/device-speaker.svg +++ b/src/_icons/device-speaker.svg @@ -5,7 +5,5 @@ version: "1.1" unicode: "ea8b" --- - - - + diff --git a/src/_icons/device-tablet-off.svg b/src/_icons/device-tablet-off.svg index a3386474a..335eb40e1 100644 --- a/src/_icons/device-tablet-off.svg +++ b/src/_icons/device-tablet-off.svg @@ -5,7 +5,5 @@ version: "1.58" unicode: "f063" --- - - - + diff --git a/src/_icons/device-tablet.svg b/src/_icons/device-tablet.svg index 3d40a91ea..ffeceec63 100644 --- a/src/_icons/device-tablet.svg +++ b/src/_icons/device-tablet.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea8c" --- - - + diff --git a/src/_icons/device-tv-off.svg b/src/_icons/device-tv-off.svg index 4872af9b7..e7e8b06cc 100644 --- a/src/_icons/device-tv-off.svg +++ b/src/_icons/device-tv-off.svg @@ -5,7 +5,5 @@ version: "1.58" unicode: "f064" --- - - - + diff --git a/src/_icons/device-tv-old.svg b/src/_icons/device-tv-old.svg index 509a192d3..035bc095b 100644 --- a/src/_icons/device-tv-old.svg +++ b/src/_icons/device-tv-old.svg @@ -5,9 +5,5 @@ version: "1.68" unicode: "f1d3" --- - - - - - + diff --git a/src/_icons/device-tv.svg b/src/_icons/device-tv.svg index 2b7b81c28..95cf13553 100644 --- a/src/_icons/device-tv.svg +++ b/src/_icons/device-tv.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea8d" --- - - + diff --git a/src/_icons/device-watch-off.svg b/src/_icons/device-watch-off.svg index 7ec03cfc4..e5652252a 100644 --- a/src/_icons/device-watch-off.svg +++ b/src/_icons/device-watch-off.svg @@ -5,8 +5,5 @@ version: "1.58" unicode: "f065" --- - - - - + diff --git a/src/_icons/device-watch-stats-2.svg b/src/_icons/device-watch-stats-2.svg index cd567c1c2..d1328f81b 100644 --- a/src/_icons/device-watch-stats-2.svg +++ b/src/_icons/device-watch-stats-2.svg @@ -5,8 +5,5 @@ version: "1.46" unicode: "ef7c" --- - - - - + diff --git a/src/_icons/device-watch-stats.svg b/src/_icons/device-watch-stats.svg index 1fbc200c7..4b146e299 100644 --- a/src/_icons/device-watch-stats.svg +++ b/src/_icons/device-watch-stats.svg @@ -5,10 +5,5 @@ version: "1.46" unicode: "ef7d" --- - - - - - - + diff --git a/src/_icons/device-watch.svg b/src/_icons/device-watch.svg index 49dfe9296..401020965 100644 --- a/src/_icons/device-watch.svg +++ b/src/_icons/device-watch.svg @@ -5,7 +5,5 @@ version: "1.8" unicode: "ebf9" --- - - - + diff --git a/src/_icons/devices-2.svg b/src/_icons/devices-2.svg index bd76bbb2b..f161493af 100644 --- a/src/_icons/devices-2.svg +++ b/src/_icons/devices-2.svg @@ -5,10 +5,5 @@ version: "1.26" unicode: "ed29" --- - - - - - - + diff --git a/src/_icons/devices-off.svg b/src/_icons/devices-off.svg index 354d99c60..2a53fff75 100644 --- a/src/_icons/devices-off.svg +++ b/src/_icons/devices-off.svg @@ -5,8 +5,5 @@ unicode: "f3e4" version: "1.94" --- - - - - + diff --git a/src/_icons/devices-pc-off.svg b/src/_icons/devices-pc-off.svg index 250096847..f43f44944 100644 --- a/src/_icons/devices-pc-off.svg +++ b/src/_icons/devices-pc-off.svg @@ -5,11 +5,5 @@ version: "1.65" unicode: "f113" --- - - - - - - - + diff --git a/src/_icons/devices-pc.svg b/src/_icons/devices-pc.svg index 951983bca..be1affd5a 100644 --- a/src/_icons/devices-pc.svg +++ b/src/_icons/devices-pc.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee7a" --- - - - - - - + diff --git a/src/_icons/devices.svg b/src/_icons/devices.svg index 3b2c968c3..9d174e98b 100644 --- a/src/_icons/devices.svg +++ b/src/_icons/devices.svg @@ -5,7 +5,5 @@ version: "1.3" unicode: "eb87" --- - - - + diff --git a/src/_icons/dialpad-off.svg b/src/_icons/dialpad-off.svg index eecba48c9..a3bbd9c5d 100644 --- a/src/_icons/dialpad-off.svg +++ b/src/_icons/dialpad-off.svg @@ -4,12 +4,5 @@ version: "1.65" unicode: "f114" --- - - - - - - - - + diff --git a/src/_icons/dialpad.svg b/src/_icons/dialpad.svg index d8bbfcfa4..0f96d1c5a 100644 --- a/src/_icons/dialpad.svg +++ b/src/_icons/dialpad.svg @@ -4,11 +4,5 @@ version: "1.58" unicode: "f067" --- - - - - - - - + diff --git a/src/_icons/diamond-off.svg b/src/_icons/diamond-off.svg index 1e6136832..2b55dde15 100644 --- a/src/_icons/diamond-off.svg +++ b/src/_icons/diamond-off.svg @@ -4,7 +4,5 @@ version: "1.65" unicode: "f115" --- - - - + diff --git a/src/_icons/diamond.svg b/src/_icons/diamond.svg index 31eb17442..eb65a566c 100644 --- a/src/_icons/diamond.svg +++ b/src/_icons/diamond.svg @@ -4,6 +4,5 @@ version: "1.2" unicode: "eb65" --- - - + diff --git a/src/_icons/diamonds-filled.svg b/src/_icons/diamonds-filled.svg new file mode 100644 index 000000000..49cc6e385 --- /dev/null +++ b/src/_icons/diamonds-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f676" +--- + + + diff --git a/src/_icons/diamonds.svg b/src/_icons/diamonds.svg index b735d2785..8c093c1c3 100644 --- a/src/_icons/diamonds.svg +++ b/src/_icons/diamonds.svg @@ -5,5 +5,5 @@ version: "1.52" unicode: "eff5" --- - + diff --git a/src/_icons/dice-1.svg b/src/_icons/dice-1.svg index 0a62b13d5..6af560b74 100644 --- a/src/_icons/dice-1.svg +++ b/src/_icons/dice-1.svg @@ -4,6 +4,5 @@ version: "1.60" unicode: "f08b" --- - - + diff --git a/src/_icons/dice-2.svg b/src/_icons/dice-2.svg index 344eda0b8..98ccb231e 100644 --- a/src/_icons/dice-2.svg +++ b/src/_icons/dice-2.svg @@ -4,7 +4,5 @@ version: "1.60" unicode: "f08c" --- - - - + diff --git a/src/_icons/dice-3.svg b/src/_icons/dice-3.svg index 266c88e6d..ef2568b59 100644 --- a/src/_icons/dice-3.svg +++ b/src/_icons/dice-3.svg @@ -4,8 +4,5 @@ version: "1.60" unicode: "f08d" --- - - - - + diff --git a/src/_icons/dice-4.svg b/src/_icons/dice-4.svg index 925d25dad..2a61d2ea8 100644 --- a/src/_icons/dice-4.svg +++ b/src/_icons/dice-4.svg @@ -4,9 +4,5 @@ version: "1.60" unicode: "f08e" --- - - - - - + diff --git a/src/_icons/dice-5.svg b/src/_icons/dice-5.svg index d38549402..6d51aec56 100644 --- a/src/_icons/dice-5.svg +++ b/src/_icons/dice-5.svg @@ -4,10 +4,5 @@ version: "1.60" unicode: "f08f" --- - - - - - - + diff --git a/src/_icons/dice-6.svg b/src/_icons/dice-6.svg index 48a20f112..2a5be04ad 100644 --- a/src/_icons/dice-6.svg +++ b/src/_icons/dice-6.svg @@ -4,11 +4,5 @@ version: "1.60" unicode: "f090" --- - - - - - - - + diff --git a/src/_icons/dice.svg b/src/_icons/dice.svg index 848c107a6..7795674ea 100644 --- a/src/_icons/dice.svg +++ b/src/_icons/dice.svg @@ -4,9 +4,5 @@ version: "1.2" unicode: "eb66" --- - - - - - + diff --git a/src/_icons/dimensions.svg b/src/_icons/dimensions.svg index b714abcac..b95e8e80e 100644 --- a/src/_icons/dimensions.svg +++ b/src/_icons/dimensions.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ee7b" --- - - - - - - - + diff --git a/src/_icons/direction-horizontal.svg b/src/_icons/direction-horizontal.svg index 521185cc7..c0ec56de3 100644 --- a/src/_icons/direction-horizontal.svg +++ b/src/_icons/direction-horizontal.svg @@ -4,6 +4,5 @@ version: "1.8" unicode: "ebfa" --- - - + diff --git a/src/_icons/direction-sign-off.svg b/src/_icons/direction-sign-off.svg index 8c38e2977..38431a179 100644 --- a/src/_icons/direction-sign-off.svg +++ b/src/_icons/direction-sign-off.svg @@ -4,8 +4,5 @@ unicode: "f3e5" version: "1.94" --- - - - - + diff --git a/src/_icons/direction-sign.svg b/src/_icons/direction-sign.svg index 9c6d2d822..d658cc049 100644 --- a/src/_icons/direction-sign.svg +++ b/src/_icons/direction-sign.svg @@ -4,7 +4,5 @@ version: "1.70" unicode: "f1f7" --- - - - + diff --git a/src/_icons/direction.svg b/src/_icons/direction.svg index e35b1c6ba..4bca056de 100644 --- a/src/_icons/direction.svg +++ b/src/_icons/direction.svg @@ -4,6 +4,5 @@ version: "1.8" unicode: "ebfb" --- - - + diff --git a/src/_icons/directions-off.svg b/src/_icons/directions-off.svg index 898915683..ca944eadc 100644 --- a/src/_icons/directions-off.svg +++ b/src/_icons/directions-off.svg @@ -5,11 +5,5 @@ version: "1.65" unicode: "f116" --- - - - - - - - + diff --git a/src/_icons/directions.svg b/src/_icons/directions.svg index 7468f5323..deb056bea 100644 --- a/src/_icons/directions.svg +++ b/src/_icons/directions.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "ea8e" --- - - - - - - + diff --git a/src/_icons/disabled-2.svg b/src/_icons/disabled-2.svg index 33e67b4cd..420526742 100644 --- a/src/_icons/disabled-2.svg +++ b/src/_icons/disabled-2.svg @@ -5,7 +5,5 @@ version: "1.4" unicode: "ebaf" --- - - - + diff --git a/src/_icons/disabled-off.svg b/src/_icons/disabled-off.svg index 9c74f025a..13d72c80b 100644 --- a/src/_icons/disabled-off.svg +++ b/src/_icons/disabled-off.svg @@ -5,9 +5,5 @@ version: "1.65" unicode: "f117" --- - - - - - + diff --git a/src/_icons/disabled.svg b/src/_icons/disabled.svg index f08ae96b3..cb51c01c5 100644 --- a/src/_icons/disabled.svg +++ b/src/_icons/disabled.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea8f" --- - - - - + diff --git a/src/_icons/disc-golf.svg b/src/_icons/disc-golf.svg index 856c7b2f7..cb6944887 100644 --- a/src/_icons/disc-golf.svg +++ b/src/_icons/disc-golf.svg @@ -5,13 +5,5 @@ unicode: "f385" version: "1.91" --- - - - - - - - - - + diff --git a/src/_icons/disc-off.svg b/src/_icons/disc-off.svg index 2c87e5617..50e79277d 100644 --- a/src/_icons/disc-off.svg +++ b/src/_icons/disc-off.svg @@ -5,9 +5,5 @@ version: "1.65" unicode: "f118" --- - - - - - + diff --git a/src/_icons/disc.svg b/src/_icons/disc.svg index 9549196c8..d09321977 100644 --- a/src/_icons/disc.svg +++ b/src/_icons/disc.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea90" --- - - - - + diff --git a/src/_icons/discount-2-off.svg b/src/_icons/discount-2-off.svg index e9d3a4595..4a2496f89 100644 --- a/src/_icons/discount-2-off.svg +++ b/src/_icons/discount-2-off.svg @@ -5,9 +5,5 @@ unicode: "f3e6" version: "1.94" --- - - - - - + diff --git a/src/_icons/discount-2.svg b/src/_icons/discount-2.svg index ff1399354..60575c222 100644 --- a/src/_icons/discount-2.svg +++ b/src/_icons/discount-2.svg @@ -5,8 +5,5 @@ version: "1.5" unicode: "ee7c" --- - - - - + diff --git a/src/_icons/discount-check.svg b/src/_icons/discount-check.svg index 961e2a1b1..7eb0923aa 100644 --- a/src/_icons/discount-check.svg +++ b/src/_icons/discount-check.svg @@ -4,6 +4,5 @@ version: "1.70" unicode: "f1f8" --- - - + diff --git a/src/_icons/discount-off.svg b/src/_icons/discount-off.svg index 38f3698ff..a8df8c797 100644 --- a/src/_icons/discount-off.svg +++ b/src/_icons/discount-off.svg @@ -5,9 +5,5 @@ unicode: "f3e7" version: "1.94" --- - - - - - + diff --git a/src/_icons/discount.svg b/src/_icons/discount.svg index 274b1da56..def4b5be5 100644 --- a/src/_icons/discount.svg +++ b/src/_icons/discount.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "ebbd" --- - - - - + diff --git a/src/_icons/divide.svg b/src/_icons/divide.svg index 212981c9c..59168feb0 100644 --- a/src/_icons/divide.svg +++ b/src/_icons/divide.svg @@ -5,7 +5,5 @@ version: "1.31" unicode: "ed5c" --- - - - + diff --git a/src/_icons/dna-2-off.svg b/src/_icons/dna-2-off.svg index 47b8491f4..cfb468d48 100644 --- a/src/_icons/dna-2-off.svg +++ b/src/_icons/dna-2-off.svg @@ -5,11 +5,5 @@ version: "1.65" unicode: "f119" --- - - - - - - - + diff --git a/src/_icons/dna-2.svg b/src/_icons/dna-2.svg index f99b4f4d2..de3b63faf 100644 --- a/src/_icons/dna-2.svg +++ b/src/_icons/dna-2.svg @@ -5,10 +5,5 @@ version: "1.44" unicode: "ef5c" --- - - - - - - + diff --git a/src/_icons/dna-off.svg b/src/_icons/dna-off.svg index c0adba328..d62d2e095 100644 --- a/src/_icons/dna-off.svg +++ b/src/_icons/dna-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f11a" --- - - - - + diff --git a/src/_icons/dna.svg b/src/_icons/dna.svg index ba0b0dc40..7d10b710b 100644 --- a/src/_icons/dna.svg +++ b/src/_icons/dna.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee7d" --- - - - + diff --git a/src/_icons/dog-bowl.svg b/src/_icons/dog-bowl.svg index 28b6ef678..ae31c705a 100644 --- a/src/_icons/dog-bowl.svg +++ b/src/_icons/dog-bowl.svg @@ -5,7 +5,5 @@ version: "1.41" unicode: "ef29" --- - - - + diff --git a/src/_icons/dog.svg b/src/_icons/dog.svg index 092d52ba7..5fc803d82 100644 --- a/src/_icons/dog.svg +++ b/src/_icons/dog.svg @@ -4,12 +4,5 @@ unicode: "f660" version: "1.119" --- - - - - - - - - + diff --git a/src/_icons/door-enter.svg b/src/_icons/door-enter.svg index 9e44a2fc6..fc0c3de3f 100644 --- a/src/_icons/door-enter.svg +++ b/src/_icons/door-enter.svg @@ -4,8 +4,5 @@ version: "1.43" unicode: "ef4c" --- - - - - + diff --git a/src/_icons/door-exit.svg b/src/_icons/door-exit.svg index 9b75ff920..8a44ddfd9 100644 --- a/src/_icons/door-exit.svg +++ b/src/_icons/door-exit.svg @@ -4,8 +4,5 @@ version: "1.43" unicode: "ef4d" --- - - - - + diff --git a/src/_icons/door-off.svg b/src/_icons/door-off.svg index 007402986..e04a2dd6b 100644 --- a/src/_icons/door-off.svg +++ b/src/_icons/door-off.svg @@ -4,9 +4,5 @@ version: "1.65" unicode: "f11b" --- - - - - - + diff --git a/src/_icons/door.svg b/src/_icons/door.svg index 641d37a16..3c68fca4b 100644 --- a/src/_icons/door.svg +++ b/src/_icons/door.svg @@ -4,7 +4,5 @@ version: "1.43" unicode: "ef4e" --- - - - + diff --git a/src/_icons/dots-circle-horizontal.svg b/src/_icons/dots-circle-horizontal.svg index 7ab2a803f..6e9bb7240 100644 --- a/src/_icons/dots-circle-horizontal.svg +++ b/src/_icons/dots-circle-horizontal.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea91" --- - - - - + diff --git a/src/_icons/dots-diagonal-2.svg b/src/_icons/dots-diagonal-2.svg index ff8e6b1c4..daf531340 100644 --- a/src/_icons/dots-diagonal-2.svg +++ b/src/_icons/dots-diagonal-2.svg @@ -6,7 +6,5 @@ version: "1.0" unicode: "ea92" --- - - - + diff --git a/src/_icons/dots-diagonal.svg b/src/_icons/dots-diagonal.svg index d47e7862b..af0e3b0cb 100644 --- a/src/_icons/dots-diagonal.svg +++ b/src/_icons/dots-diagonal.svg @@ -6,7 +6,5 @@ version: "1.0" unicode: "ea93" --- - - - + diff --git a/src/_icons/dots-vertical.svg b/src/_icons/dots-vertical.svg index c16aa0112..772495ae2 100644 --- a/src/_icons/dots-vertical.svg +++ b/src/_icons/dots-vertical.svg @@ -6,7 +6,5 @@ version: "1.0" unicode: "ea94" --- - - - + diff --git a/src/_icons/dots.svg b/src/_icons/dots.svg index 2c6d5cdea..46e9af530 100644 --- a/src/_icons/dots.svg +++ b/src/_icons/dots.svg @@ -6,7 +6,5 @@ version: "1.0" unicode: "ea95" --- - - - + diff --git a/src/_icons/download-off.svg b/src/_icons/download-off.svg index 7e125e052..337f97e89 100644 --- a/src/_icons/download-off.svg +++ b/src/_icons/download-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f11c" --- - - - - + diff --git a/src/_icons/download.svg b/src/_icons/download.svg index 116330ffb..b0b40a823 100644 --- a/src/_icons/download.svg +++ b/src/_icons/download.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea96" --- - - - + diff --git a/src/_icons/drag-drop-2.svg b/src/_icons/drag-drop-2.svg index 9088e2fce..a69679dad 100644 --- a/src/_icons/drag-drop-2.svg +++ b/src/_icons/drag-drop-2.svg @@ -5,12 +5,5 @@ version: "1.3" unicode: "eb88" --- - - - - - - - - + diff --git a/src/_icons/drag-drop.svg b/src/_icons/drag-drop.svg index b81d6d6ee..b41b5334a 100644 --- a/src/_icons/drag-drop.svg +++ b/src/_icons/drag-drop.svg @@ -5,13 +5,5 @@ category: Design unicode: "eb89" --- - - - - - - - - - + diff --git a/src/_icons/drone-off.svg b/src/_icons/drone-off.svg index 1ee00562c..81228bbf0 100644 --- a/src/_icons/drone-off.svg +++ b/src/_icons/drone-off.svg @@ -5,14 +5,5 @@ version: "1.39" unicode: "ee7e" --- - - - - - - - - - - + diff --git a/src/_icons/drone.svg b/src/_icons/drone.svg index 655447a0b..77691c1ee 100644 --- a/src/_icons/drone.svg +++ b/src/_icons/drone.svg @@ -5,13 +5,5 @@ version: "1.33" unicode: "ed79" --- - - - - - - - - - + diff --git a/src/_icons/drop-circle.svg b/src/_icons/drop-circle.svg index 6a3b0707f..541c32204 100644 --- a/src/_icons/drop-circle.svg +++ b/src/_icons/drop-circle.svg @@ -4,6 +4,5 @@ version: "1.51" unicode: "efde" --- - - + diff --git a/src/_icons/droplet-filled-2.svg b/src/_icons/droplet-filled-2.svg index a34001f8f..6febf1750 100644 --- a/src/_icons/droplet-filled-2.svg +++ b/src/_icons/droplet-filled-2.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee7f" --- - - - - + diff --git a/src/_icons/droplet-filled.svg b/src/_icons/droplet-filled.svg index cb3438aec..f75652c43 100644 --- a/src/_icons/droplet-filled.svg +++ b/src/_icons/droplet-filled.svg @@ -1,12 +1,8 @@ --- -tags: [water, rain, liquid, fill] -category: Design -version: "1.39" -unicode: "ee80" +category: Filled +version: "2.0.0" +unicode: "f677" --- - - - - + diff --git a/src/_icons/droplet-half-2.svg b/src/_icons/droplet-half-2.svg index 90d0c0dfa..4f84b7f63 100644 --- a/src/_icons/droplet-half-2.svg +++ b/src/_icons/droplet-half-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee81" --- - - + diff --git a/src/_icons/droplet-half-filled.svg b/src/_icons/droplet-half-filled.svg new file mode 100644 index 000000000..5b34f08a1 --- /dev/null +++ b/src/_icons/droplet-half-filled.svg @@ -0,0 +1,9 @@ +--- +tags: [water, rain, liquid, fill] +category: Design +version: "1.39" +unicode: "ee80" +--- + + + diff --git a/src/_icons/droplet-half.svg b/src/_icons/droplet-half.svg index 93bb91df5..cd68d8806 100644 --- a/src/_icons/droplet-half.svg +++ b/src/_icons/droplet-half.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee82" --- - - + diff --git a/src/_icons/droplet-off.svg b/src/_icons/droplet-off.svg index a54a1b442..cc7d6fff5 100644 --- a/src/_icons/droplet-off.svg +++ b/src/_icons/droplet-off.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee83" --- - - - + diff --git a/src/_icons/e-passport.svg b/src/_icons/e-passport.svg index 86259ee83..d5f4a4016 100644 --- a/src/_icons/e-passport.svg +++ b/src/_icons/e-passport.svg @@ -4,8 +4,5 @@ unicode: "f4df" version: "1.99" --- - - - - + diff --git a/src/_icons/ear-off.svg b/src/_icons/ear-off.svg index 8749a71d1..c70a06449 100644 --- a/src/_icons/ear-off.svg +++ b/src/_icons/ear-off.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee84" --- - - - + diff --git a/src/_icons/ear.svg b/src/_icons/ear.svg index b5f54eb83..d3a2ab35e 100644 --- a/src/_icons/ear.svg +++ b/src/_icons/ear.svg @@ -5,6 +5,5 @@ version: "1.6" unicode: "ebce" --- - - + diff --git a/src/_icons/ease-in-control-point.svg b/src/_icons/ease-in-control-point.svg index 7c9b336b1..099471226 100644 --- a/src/_icons/ease-in-control-point.svg +++ b/src/_icons/ease-in-control-point.svg @@ -5,8 +5,5 @@ unicode: "f570" version: "1.107" --- - - - - + diff --git a/src/_icons/ease-in-out-control-points.svg b/src/_icons/ease-in-out-control-points.svg index 445123655..47589a034 100644 --- a/src/_icons/ease-in-out-control-points.svg +++ b/src/_icons/ease-in-out-control-points.svg @@ -5,11 +5,5 @@ unicode: "f571" version: "1.107" --- - - - - - - - + diff --git a/src/_icons/ease-out-control-point.svg b/src/_icons/ease-out-control-point.svg index e31156d40..34838e11f 100644 --- a/src/_icons/ease-out-control-point.svg +++ b/src/_icons/ease-out-control-point.svg @@ -5,8 +5,5 @@ unicode: "f574" version: "1.107" --- - - - - + diff --git a/src/_icons/edit-circle-off.svg b/src/_icons/edit-circle-off.svg index ab559e34a..a3fbd278d 100644 --- a/src/_icons/edit-circle-off.svg +++ b/src/_icons/edit-circle-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f11d" --- - - - - + diff --git a/src/_icons/edit-circle.svg b/src/_icons/edit-circle.svg index dadcfc98f..9c794077b 100644 --- a/src/_icons/edit-circle.svg +++ b/src/_icons/edit-circle.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee85" --- - - - + diff --git a/src/_icons/edit-off.svg b/src/_icons/edit-off.svg index d7d23dc3b..5cc94de18 100644 --- a/src/_icons/edit-off.svg +++ b/src/_icons/edit-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f11e" --- - - - - + diff --git a/src/_icons/edit.svg b/src/_icons/edit.svg index 0df8774e4..a388c9f7a 100644 --- a/src/_icons/edit.svg +++ b/src/_icons/edit.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea98" --- - - - + diff --git a/src/_icons/egg-cracked.svg b/src/_icons/egg-cracked.svg index bd7190677..f0447e50a 100644 --- a/src/_icons/egg-cracked.svg +++ b/src/_icons/egg-cracked.svg @@ -5,6 +5,5 @@ version: "1.82" unicode: "f2d6" --- - - + diff --git a/src/_icons/egg-filled.svg b/src/_icons/egg-filled.svg new file mode 100644 index 000000000..ecd07952e --- /dev/null +++ b/src/_icons/egg-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f678" +--- + + + diff --git a/src/_icons/egg-fried.svg b/src/_icons/egg-fried.svg index 9b5f305a0..19586e53b 100644 --- a/src/_icons/egg-fried.svg +++ b/src/_icons/egg-fried.svg @@ -5,6 +5,5 @@ unicode: "f386" version: "1.91" --- - - + diff --git a/src/_icons/egg-off.svg b/src/_icons/egg-off.svg index de412a4ef..59837437e 100644 --- a/src/_icons/egg-off.svg +++ b/src/_icons/egg-off.svg @@ -5,7 +5,5 @@ version: "1.65" unicode: "f11f" --- - - - + diff --git a/src/_icons/egg.svg b/src/_icons/egg.svg index fce684e57..20c62c718 100644 --- a/src/_icons/egg.svg +++ b/src/_icons/egg.svg @@ -5,5 +5,5 @@ version: "1.3" unicode: "eb8a" --- - + diff --git a/src/_icons/eggs.svg b/src/_icons/eggs.svg index 33fc6a338..662cb74d5 100644 --- a/src/_icons/eggs.svg +++ b/src/_icons/eggs.svg @@ -5,6 +5,5 @@ unicode: "f500" version: "1.101" --- - - + diff --git a/src/_icons/elevator-off.svg b/src/_icons/elevator-off.svg index d9e9765c8..608343d13 100644 --- a/src/_icons/elevator-off.svg +++ b/src/_icons/elevator-off.svg @@ -4,8 +4,5 @@ unicode: "f3e8" version: "1.94" --- - - - - + diff --git a/src/_icons/elevator.svg b/src/_icons/elevator.svg index 192829259..fb77456d5 100644 --- a/src/_icons/elevator.svg +++ b/src/_icons/elevator.svg @@ -4,7 +4,5 @@ version: "1.51" unicode: "efdf" --- - - - + diff --git a/src/_icons/emergency-bed.svg b/src/_icons/emergency-bed.svg index 2cd5dbf16..8c5d876a7 100644 --- a/src/_icons/emergency-bed.svg +++ b/src/_icons/emergency-bed.svg @@ -5,11 +5,5 @@ version: "1.44" unicode: "ef5d" --- - - - - - - - + diff --git a/src/_icons/empathize-off.svg b/src/_icons/empathize-off.svg index 638d35249..e42a62873 100644 --- a/src/_icons/empathize-off.svg +++ b/src/_icons/empathize-off.svg @@ -5,7 +5,5 @@ unicode: "f3e9" version: "1.94" --- - - - + diff --git a/src/_icons/empathize.svg b/src/_icons/empathize.svg index ca9d18e55..69b8a72ab 100644 --- a/src/_icons/empathize.svg +++ b/src/_icons/empathize.svg @@ -5,6 +5,5 @@ version: "1.79" unicode: "f29b" --- - - + diff --git a/src/_icons/emphasis.svg b/src/_icons/emphasis.svg index 393778e9a..2a9e5f358 100644 --- a/src/_icons/emphasis.svg +++ b/src/_icons/emphasis.svg @@ -5,9 +5,5 @@ version: "1.6" unicode: "ebcf" --- - - - - - + diff --git a/src/_icons/engine-off.svg b/src/_icons/engine-off.svg index f2ec75693..7711666a7 100644 --- a/src/_icons/engine-off.svg +++ b/src/_icons/engine-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f120" --- - - - - - - + diff --git a/src/_icons/engine.svg b/src/_icons/engine.svg index 9f9ce7872..a59b3b94c 100644 --- a/src/_icons/engine.svg +++ b/src/_icons/engine.svg @@ -5,9 +5,5 @@ version: "1.46" unicode: "ef7e" --- - - - - - + diff --git a/src/_icons/equal-double.svg b/src/_icons/equal-double.svg index cd72d6b53..133f4a4ca 100644 --- a/src/_icons/equal-double.svg +++ b/src/_icons/equal-double.svg @@ -5,8 +5,5 @@ unicode: "f4e1" version: "1.100" --- - - - - + diff --git a/src/_icons/equal-not.svg b/src/_icons/equal-not.svg index 86f3d412d..91713a5c2 100644 --- a/src/_icons/equal-not.svg +++ b/src/_icons/equal-not.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee86" --- - - - + diff --git a/src/_icons/equal.svg b/src/_icons/equal.svg index 95d5b3812..62f1823ce 100644 --- a/src/_icons/equal.svg +++ b/src/_icons/equal.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee87" --- - - + diff --git a/src/_icons/eraser-off.svg b/src/_icons/eraser-off.svg index bae4124bf..230e13fbd 100644 --- a/src/_icons/eraser-off.svg +++ b/src/_icons/eraser-off.svg @@ -5,7 +5,5 @@ version: "1.65" unicode: "f121" --- - - - + diff --git a/src/_icons/eraser.svg b/src/_icons/eraser.svg index cbfbc1093..e66e4a187 100644 --- a/src/_icons/eraser.svg +++ b/src/_icons/eraser.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb8b" --- - - + diff --git a/src/_icons/error-404-off.svg b/src/_icons/error-404-off.svg index 738b6a55f..0979136fb 100644 --- a/src/_icons/error-404-off.svg +++ b/src/_icons/error-404-off.svg @@ -4,10 +4,5 @@ version: "1.65" unicode: "f122" --- - - - - - - + diff --git a/src/_icons/error-404.svg b/src/_icons/error-404.svg index 181da33f5..407f15b3a 100644 --- a/src/_icons/error-404.svg +++ b/src/_icons/error-404.svg @@ -4,9 +4,5 @@ version: "1.55" unicode: "f027" --- - - - - - + diff --git a/src/_icons/exchange-off.svg b/src/_icons/exchange-off.svg index 1f03f81b9..c687c5e4b 100644 --- a/src/_icons/exchange-off.svg +++ b/src/_icons/exchange-off.svg @@ -4,11 +4,5 @@ version: "1.65" unicode: "f123" --- - - - - - - - + diff --git a/src/_icons/exchange.svg b/src/_icons/exchange.svg index 6ac14655b..11e0afa2f 100644 --- a/src/_icons/exchange.svg +++ b/src/_icons/exchange.svg @@ -4,8 +4,5 @@ version: "1.7" unicode: "ebe7" --- - - - - + diff --git a/src/_icons/exclamation-circle.svg b/src/_icons/exclamation-circle.svg index acb142bb4..5bd395d51 100644 --- a/src/_icons/exclamation-circle.svg +++ b/src/_icons/exclamation-circle.svg @@ -3,7 +3,5 @@ unicode: "f634" version: "1.117" --- - - - + diff --git a/src/_icons/exclamation-mark-off.svg b/src/_icons/exclamation-mark-off.svg index 07fada696..1ecdeb94b 100644 --- a/src/_icons/exclamation-mark-off.svg +++ b/src/_icons/exclamation-mark-off.svg @@ -4,7 +4,5 @@ version: "1.65" unicode: "f124" --- - - - + diff --git a/src/_icons/exclamation-mark.svg b/src/_icons/exclamation-mark.svg index 95ab15834..1a9a90361 100644 --- a/src/_icons/exclamation-mark.svg +++ b/src/_icons/exclamation-mark.svg @@ -4,6 +4,5 @@ version: "1.49" unicode: "efb4" --- - - + diff --git a/src/_icons/explicit-off.svg b/src/_icons/explicit-off.svg index 7f5189f13..26a8ec597 100644 --- a/src/_icons/explicit-off.svg +++ b/src/_icons/explicit-off.svg @@ -4,8 +4,5 @@ unicode: "f3ea" version: "1.94" --- - - - - + diff --git a/src/_icons/explicit.svg b/src/_icons/explicit.svg index ea9976d72..db6f13ea2 100644 --- a/src/_icons/explicit.svg +++ b/src/_icons/explicit.svg @@ -4,7 +4,5 @@ version: "1.75" unicode: "f256" --- - - - + diff --git a/src/_icons/exposure-minus-1.svg b/src/_icons/exposure-minus-1.svg index 69286d1fb..16d7ae964 100644 --- a/src/_icons/exposure-minus-1.svg +++ b/src/_icons/exposure-minus-1.svg @@ -5,6 +5,5 @@ version: "1.79" unicode: "f29d" --- - - + diff --git a/src/_icons/exposure-minus-2.svg b/src/_icons/exposure-minus-2.svg index 9b6106b09..4d8cdf2c4 100644 --- a/src/_icons/exposure-minus-2.svg +++ b/src/_icons/exposure-minus-2.svg @@ -5,6 +5,5 @@ version: "1.79" unicode: "f29e" --- - - + diff --git a/src/_icons/exposure-off.svg b/src/_icons/exposure-off.svg index e77eb579e..e1f1a1ae8 100644 --- a/src/_icons/exposure-off.svg +++ b/src/_icons/exposure-off.svg @@ -5,9 +5,5 @@ unicode: "f3eb" version: "1.94" --- - - - - - + diff --git a/src/_icons/exposure-plus-1.svg b/src/_icons/exposure-plus-1.svg index 4d7a99034..479c2dd3f 100644 --- a/src/_icons/exposure-plus-1.svg +++ b/src/_icons/exposure-plus-1.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f29f" --- - - - + diff --git a/src/_icons/exposure-plus-2.svg b/src/_icons/exposure-plus-2.svg index 8b4d2c6ea..2e5f38b74 100644 --- a/src/_icons/exposure-plus-2.svg +++ b/src/_icons/exposure-plus-2.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f2a0" --- - - - + diff --git a/src/_icons/exposure.svg b/src/_icons/exposure.svg index 9bafc459f..ebd52f20c 100644 --- a/src/_icons/exposure.svg +++ b/src/_icons/exposure.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb8c" --- - - - - + diff --git a/src/_icons/external-link-off.svg b/src/_icons/external-link-off.svg index 8eafd1d5e..b77308b8d 100644 --- a/src/_icons/external-link-off.svg +++ b/src/_icons/external-link-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f125" --- - - - - + diff --git a/src/_icons/external-link.svg b/src/_icons/external-link.svg index 32f710d99..af90a3124 100644 --- a/src/_icons/external-link.svg +++ b/src/_icons/external-link.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea99" --- - - - + diff --git a/src/_icons/eye-check.svg b/src/_icons/eye-check.svg index b764a2ddc..9b1bbf64a 100644 --- a/src/_icons/eye-check.svg +++ b/src/_icons/eye-check.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ee88" --- - - - + diff --git a/src/_icons/eye-filled.svg b/src/_icons/eye-filled.svg new file mode 100644 index 000000000..324243d15 --- /dev/null +++ b/src/_icons/eye-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f679" +--- + + + diff --git a/src/_icons/eye-off.svg b/src/_icons/eye-off.svg index 23e8b7175..b985d4ab2 100644 --- a/src/_icons/eye-off.svg +++ b/src/_icons/eye-off.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ecf0" --- - - - + diff --git a/src/_icons/eye-table.svg b/src/_icons/eye-table.svg index f6f7eaf5c..2c6080dd5 100644 --- a/src/_icons/eye-table.svg +++ b/src/_icons/eye-table.svg @@ -5,13 +5,5 @@ version: "1.44" unicode: "ef5e" --- - - - - - - - - - + diff --git a/src/_icons/eye.svg b/src/_icons/eye.svg index e28a216ac..9584a6add 100644 --- a/src/_icons/eye.svg +++ b/src/_icons/eye.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ea9a" --- - - + diff --git a/src/_icons/eyeglass-2.svg b/src/_icons/eyeglass-2.svg index 451c00fd5..0314e571b 100644 --- a/src/_icons/eyeglass-2.svg +++ b/src/_icons/eyeglass-2.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee89" --- - - - - - + diff --git a/src/_icons/eyeglass-off.svg b/src/_icons/eyeglass-off.svg index 25ec33003..e47e9b03b 100644 --- a/src/_icons/eyeglass-off.svg +++ b/src/_icons/eyeglass-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f126" --- - - - - - - + diff --git a/src/_icons/eyeglass.svg b/src/_icons/eyeglass.svg index a2e6e6e17..e1ad5507b 100644 --- a/src/_icons/eyeglass.svg +++ b/src/_icons/eyeglass.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee8a" --- - - - - - + diff --git a/src/_icons/face-id-error.svg b/src/_icons/face-id-error.svg index 249ac117e..4d10efa14 100644 --- a/src/_icons/face-id-error.svg +++ b/src/_icons/face-id-error.svg @@ -4,11 +4,5 @@ version: "1.48" unicode: "efa7" --- - - - - - - - + diff --git a/src/_icons/face-id.svg b/src/_icons/face-id.svg index 9822b34da..79d63619d 100644 --- a/src/_icons/face-id.svg +++ b/src/_icons/face-id.svg @@ -4,11 +4,5 @@ version: "1.0" unicode: "ea9b" --- - - - - - - - + diff --git a/src/_icons/face-mask-off.svg b/src/_icons/face-mask-off.svg index ba551bd5c..6bfd8d271 100644 --- a/src/_icons/face-mask-off.svg +++ b/src/_icons/face-mask-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f127" --- - - - - - - + diff --git a/src/_icons/face-mask.svg b/src/_icons/face-mask.svg index 6da31042d..b116e3a96 100644 --- a/src/_icons/face-mask.svg +++ b/src/_icons/face-mask.svg @@ -5,9 +5,5 @@ version: "1.49" unicode: "efb5" --- - - - - - + diff --git a/src/_icons/fall.svg b/src/_icons/fall.svg index c908f6c41..004a3acbe 100644 --- a/src/_icons/fall.svg +++ b/src/_icons/fall.svg @@ -5,8 +5,5 @@ version: "1.18" unicode: "ecb9" --- - - - - + diff --git a/src/_icons/feather-off.svg b/src/_icons/feather-off.svg index 915cd572a..dee8ba293 100644 --- a/src/_icons/feather-off.svg +++ b/src/_icons/feather-off.svg @@ -5,12 +5,5 @@ version: "1.65" unicode: "f128" --- - - - - - - - - + diff --git a/src/_icons/feather.svg b/src/_icons/feather.svg index 9d8e82918..258bbd844 100644 --- a/src/_icons/feather.svg +++ b/src/_icons/feather.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee8b" --- - - + diff --git a/src/_icons/fence-off.svg b/src/_icons/fence-off.svg index 087f69ad7..dc9477c65 100644 --- a/src/_icons/fence-off.svg +++ b/src/_icons/fence-off.svg @@ -5,10 +5,5 @@ version: "1.65" unicode: "f129" --- - - - - - - + diff --git a/src/_icons/fence.svg b/src/_icons/fence.svg index c02dc3842..0257cc0b7 100644 --- a/src/_icons/fence.svg +++ b/src/_icons/fence.svg @@ -5,7 +5,5 @@ version: "1.41" unicode: "ef2a" --- - - - + diff --git a/src/_icons/fidget-spinner.svg b/src/_icons/fidget-spinner.svg index ca788c4b8..6b4776c3f 100644 --- a/src/_icons/fidget-spinner.svg +++ b/src/_icons/fidget-spinner.svg @@ -4,8 +4,5 @@ version: "1.58" unicode: "f068" --- - - - - + diff --git a/src/_icons/file-3d.svg b/src/_icons/file-3d.svg index 75a625ec6..aa51774ca 100644 --- a/src/_icons/file-3d.svg +++ b/src/_icons/file-3d.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f032" --- - - - - - + diff --git a/src/_icons/file-alert.svg b/src/_icons/file-alert.svg index 52f7aec52..211651da5 100644 --- a/src/_icons/file-alert.svg +++ b/src/_icons/file-alert.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "ede6" --- - - - - + diff --git a/src/_icons/file-analytics.svg b/src/_icons/file-analytics.svg index d795f4112..f386463bd 100644 --- a/src/_icons/file-analytics.svg +++ b/src/_icons/file-analytics.svg @@ -5,9 +5,5 @@ version: "1.37" unicode: "ede7" --- - - - - - + diff --git a/src/_icons/file-arrow-left.svg b/src/_icons/file-arrow-left.svg index 17907e8fe..eca2bdd55 100644 --- a/src/_icons/file-arrow-left.svg +++ b/src/_icons/file-arrow-left.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f033" --- - - - - + diff --git a/src/_icons/file-arrow-right.svg b/src/_icons/file-arrow-right.svg index c13252e73..4672c5544 100644 --- a/src/_icons/file-arrow-right.svg +++ b/src/_icons/file-arrow-right.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f034" --- - - - - + diff --git a/src/_icons/file-barcode.svg b/src/_icons/file-barcode.svg index 8676f8955..ac0e8c156 100644 --- a/src/_icons/file-barcode.svg +++ b/src/_icons/file-barcode.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f035" --- - - - - - + diff --git a/src/_icons/file-broken.svg b/src/_icons/file-broken.svg index 0353d5a0e..6f09395b0 100644 --- a/src/_icons/file-broken.svg +++ b/src/_icons/file-broken.svg @@ -5,12 +5,5 @@ unicode: "f501" version: "1.101" --- - - - - - - - - + diff --git a/src/_icons/file-certificate.svg b/src/_icons/file-certificate.svg index ffae073b0..9de6a6981 100644 --- a/src/_icons/file-certificate.svg +++ b/src/_icons/file-certificate.svg @@ -5,8 +5,5 @@ version: "1.29" unicode: "ed4d" --- - - - - + diff --git a/src/_icons/file-chart.svg b/src/_icons/file-chart.svg index 0568f2860..fe1217b8d 100644 --- a/src/_icons/file-chart.svg +++ b/src/_icons/file-chart.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f036" --- - - - - + diff --git a/src/_icons/file-check.svg b/src/_icons/file-check.svg index 77954c29c..395cde049 100644 --- a/src/_icons/file-check.svg +++ b/src/_icons/file-check.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea9c" --- - - - + diff --git a/src/_icons/file-code-2.svg b/src/_icons/file-code-2.svg index cacc84166..589978cf1 100644 --- a/src/_icons/file-code-2.svg +++ b/src/_icons/file-code-2.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "ede8" --- - - - - + diff --git a/src/_icons/file-code.svg b/src/_icons/file-code.svg index 4ad074b3a..b2dcb2dfa 100644 --- a/src/_icons/file-code.svg +++ b/src/_icons/file-code.svg @@ -5,8 +5,5 @@ version: "1.6" unicode: "ebd0" --- - - - - + diff --git a/src/_icons/file-database.svg b/src/_icons/file-database.svg index 14df91a76..1e71f15c1 100644 --- a/src/_icons/file-database.svg +++ b/src/_icons/file-database.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f037" --- - - - - + diff --git a/src/_icons/file-delta.svg b/src/_icons/file-delta.svg index 5fa859714..5e9d2d4cf 100644 --- a/src/_icons/file-delta.svg +++ b/src/_icons/file-delta.svg @@ -5,7 +5,5 @@ unicode: "f53d" version: "1.104" --- - - - + diff --git a/src/_icons/file-description.svg b/src/_icons/file-description.svg index ae0012193..e7cff247e 100644 --- a/src/_icons/file-description.svg +++ b/src/_icons/file-description.svg @@ -5,8 +5,5 @@ version: "1.55" unicode: "f028" --- - - - - + diff --git a/src/_icons/file-diff.svg b/src/_icons/file-diff.svg index 869919ccd..2977cdd90 100644 --- a/src/_icons/file-diff.svg +++ b/src/_icons/file-diff.svg @@ -5,9 +5,5 @@ version: "1.22" unicode: "ecf1" --- - - - - - + diff --git a/src/_icons/file-digit.svg b/src/_icons/file-digit.svg index b7a19e35b..6957147cb 100644 --- a/src/_icons/file-digit.svg +++ b/src/_icons/file-digit.svg @@ -5,8 +5,5 @@ version: "1.48" unicode: "efa8" --- - - - - + diff --git a/src/_icons/file-dislike.svg b/src/_icons/file-dislike.svg index 0a2440551..96895d546 100644 --- a/src/_icons/file-dislike.svg +++ b/src/_icons/file-dislike.svg @@ -5,8 +5,5 @@ version: "1.26" unicode: "ed2a" --- - - - - + diff --git a/src/_icons/file-dollar.svg b/src/_icons/file-dollar.svg index a98ec88f0..eb47477d0 100644 --- a/src/_icons/file-dollar.svg +++ b/src/_icons/file-dollar.svg @@ -5,8 +5,5 @@ version: "1.51" unicode: "efe0" --- - - - - + diff --git a/src/_icons/file-dots.svg b/src/_icons/file-dots.svg index 535dbded1..775272d15 100644 --- a/src/_icons/file-dots.svg +++ b/src/_icons/file-dots.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f038" --- - - - - - + diff --git a/src/_icons/file-download.svg b/src/_icons/file-download.svg index 050918b58..7c619eafe 100644 --- a/src/_icons/file-download.svg +++ b/src/_icons/file-download.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea9d" --- - - - - + diff --git a/src/_icons/file-euro.svg b/src/_icons/file-euro.svg index ffc00e167..0596b4ca7 100644 --- a/src/_icons/file-euro.svg +++ b/src/_icons/file-euro.svg @@ -5,8 +5,5 @@ version: "1.51" unicode: "efe1" --- - - - - + diff --git a/src/_icons/file-export.svg b/src/_icons/file-export.svg index c5ca73ff3..286b5d9dd 100644 --- a/src/_icons/file-export.svg +++ b/src/_icons/file-export.svg @@ -5,6 +5,5 @@ version: "1.37" unicode: "ede9" --- - - + diff --git a/src/_icons/file-function.svg b/src/_icons/file-function.svg index a6b35d26d..45954b7cd 100644 --- a/src/_icons/file-function.svg +++ b/src/_icons/file-function.svg @@ -5,8 +5,5 @@ unicode: "f53e" version: "1.104" --- - - - - + diff --git a/src/_icons/file-horizontal.svg b/src/_icons/file-horizontal.svg index adba93f8f..76483ef04 100644 --- a/src/_icons/file-horizontal.svg +++ b/src/_icons/file-horizontal.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "ebb0" --- - - + diff --git a/src/_icons/file-import.svg b/src/_icons/file-import.svg index 7d2d9e553..10199f55c 100644 --- a/src/_icons/file-import.svg +++ b/src/_icons/file-import.svg @@ -5,6 +5,5 @@ version: "1.37" unicode: "edea" --- - - + diff --git a/src/_icons/file-infinity.svg b/src/_icons/file-infinity.svg index e789d52aa..277cb5cb2 100644 --- a/src/_icons/file-infinity.svg +++ b/src/_icons/file-infinity.svg @@ -5,8 +5,5 @@ unicode: "f502" version: "1.101" --- - - - - + diff --git a/src/_icons/file-info.svg b/src/_icons/file-info.svg index 9dde38636..449fe1341 100644 --- a/src/_icons/file-info.svg +++ b/src/_icons/file-info.svg @@ -5,8 +5,5 @@ version: "1.38" unicode: "edec" --- - - - - + diff --git a/src/_icons/file-invoice.svg b/src/_icons/file-invoice.svg index 7e0bb38d5..61c2a3bbf 100644 --- a/src/_icons/file-invoice.svg +++ b/src/_icons/file-invoice.svg @@ -5,9 +5,5 @@ version: "1.2" unicode: "eb67" --- - - - - - + diff --git a/src/_icons/file-lambda.svg b/src/_icons/file-lambda.svg index 910d52b61..6e6223600 100644 --- a/src/_icons/file-lambda.svg +++ b/src/_icons/file-lambda.svg @@ -5,8 +5,5 @@ unicode: "f53f" version: "1.104" --- - - - - + diff --git a/src/_icons/file-like.svg b/src/_icons/file-like.svg index fcd837806..7e8a96b1a 100644 --- a/src/_icons/file-like.svg +++ b/src/_icons/file-like.svg @@ -5,8 +5,5 @@ version: "1.26" unicode: "ed2b" --- - - - - + diff --git a/src/_icons/file-minus.svg b/src/_icons/file-minus.svg index 67d247e93..6bcf1c518 100644 --- a/src/_icons/file-minus.svg +++ b/src/_icons/file-minus.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ea9e" --- - - - + diff --git a/src/_icons/file-music.svg b/src/_icons/file-music.svg index 576338006..fcebfd2e7 100644 --- a/src/_icons/file-music.svg +++ b/src/_icons/file-music.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "ea9f" --- - - - - + diff --git a/src/_icons/file-off.svg b/src/_icons/file-off.svg index 37067d2b8..77478b56c 100644 --- a/src/_icons/file-off.svg +++ b/src/_icons/file-off.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "ecf2" --- - - + diff --git a/src/_icons/file-orientation.svg b/src/_icons/file-orientation.svg index 833c81ddd..8cdbeabc0 100644 --- a/src/_icons/file-orientation.svg +++ b/src/_icons/file-orientation.svg @@ -5,9 +5,5 @@ version: "1.79" unicode: "f2a1" --- - - - - - + diff --git a/src/_icons/file-pencil.svg b/src/_icons/file-pencil.svg index 54d90cd66..fb189ae5f 100644 --- a/src/_icons/file-pencil.svg +++ b/src/_icons/file-pencil.svg @@ -5,7 +5,5 @@ version: "1.56" unicode: "f039" --- - - - + diff --git a/src/_icons/file-percent.svg b/src/_icons/file-percent.svg index 8e5443253..1440bbc51 100644 --- a/src/_icons/file-percent.svg +++ b/src/_icons/file-percent.svg @@ -5,9 +5,5 @@ unicode: "f540" version: "1.104" --- - - - - - + diff --git a/src/_icons/file-phone.svg b/src/_icons/file-phone.svg index 4833e3bb4..125d7cdf8 100644 --- a/src/_icons/file-phone.svg +++ b/src/_icons/file-phone.svg @@ -5,7 +5,5 @@ version: "1.20" unicode: "ecdc" --- - - - + diff --git a/src/_icons/file-plus.svg b/src/_icons/file-plus.svg index 1c8a1ec0d..cd0ebe229 100644 --- a/src/_icons/file-plus.svg +++ b/src/_icons/file-plus.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaa0" --- - - - - + diff --git a/src/_icons/file-power.svg b/src/_icons/file-power.svg index df493721a..37d63dca2 100644 --- a/src/_icons/file-power.svg +++ b/src/_icons/file-power.svg @@ -5,7 +5,5 @@ version: "1.56" unicode: "f03a" --- - - - + diff --git a/src/_icons/file-report.svg b/src/_icons/file-report.svg index fbcfd31c0..81c31bfab 100644 --- a/src/_icons/file-report.svg +++ b/src/_icons/file-report.svg @@ -5,8 +5,5 @@ version: "1.38" unicode: "eded" --- - - - - + diff --git a/src/_icons/file-rss.svg b/src/_icons/file-rss.svg index ab4879e2e..f3c5a0604 100644 --- a/src/_icons/file-rss.svg +++ b/src/_icons/file-rss.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f03b" --- - - - - - + diff --git a/src/_icons/file-scissors.svg b/src/_icons/file-scissors.svg index cd417da8b..1e9c2ebeb 100644 --- a/src/_icons/file-scissors.svg +++ b/src/_icons/file-scissors.svg @@ -5,10 +5,5 @@ version: "1.56" unicode: "f03c" --- - - - - - - + diff --git a/src/_icons/file-search.svg b/src/_icons/file-search.svg index b30d50fc9..9ba9dcce9 100644 --- a/src/_icons/file-search.svg +++ b/src/_icons/file-search.svg @@ -5,8 +5,5 @@ version: "1.31" unicode: "ed5d" --- - - - - + diff --git a/src/_icons/file-settings.svg b/src/_icons/file-settings.svg index 3242c4a4d..fa26d7182 100644 --- a/src/_icons/file-settings.svg +++ b/src/_icons/file-settings.svg @@ -5,13 +5,5 @@ version: "1.55" unicode: "f029" --- - - - - - - - - - + diff --git a/src/_icons/file-shredder.svg b/src/_icons/file-shredder.svg index c508a112f..3038d32ef 100644 --- a/src/_icons/file-shredder.svg +++ b/src/_icons/file-shredder.svg @@ -5,11 +5,5 @@ version: "1.0" unicode: "eaa1" --- - - - - - - - + diff --git a/src/_icons/file-signal.svg b/src/_icons/file-signal.svg index 749f67415..17a6f51f3 100644 --- a/src/_icons/file-signal.svg +++ b/src/_icons/file-signal.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f03d" --- - - - - + diff --git a/src/_icons/file-spreadsheet.svg b/src/_icons/file-spreadsheet.svg index 7057a1931..e44bd7ccd 100644 --- a/src/_icons/file-spreadsheet.svg +++ b/src/_icons/file-spreadsheet.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f03e" --- - - - - - + diff --git a/src/_icons/file-stack.svg b/src/_icons/file-stack.svg index a5b46fda7..2f674d1ba 100644 --- a/src/_icons/file-stack.svg +++ b/src/_icons/file-stack.svg @@ -5,9 +5,5 @@ unicode: "f503" version: "1.101" --- - - - - - + diff --git a/src/_icons/file-star.svg b/src/_icons/file-star.svg index c86909fe9..7d7764a8f 100644 --- a/src/_icons/file-star.svg +++ b/src/_icons/file-star.svg @@ -5,7 +5,5 @@ version: "1.56" unicode: "f03f" --- - - - + diff --git a/src/_icons/file-symlink.svg b/src/_icons/file-symlink.svg index 92da11f43..8fb6480da 100644 --- a/src/_icons/file-symlink.svg +++ b/src/_icons/file-symlink.svg @@ -5,8 +5,5 @@ version: "1.30" unicode: "ed53" --- - - - - + diff --git a/src/_icons/file-text.svg b/src/_icons/file-text.svg index 3544199c8..0862e4af2 100644 --- a/src/_icons/file-text.svg +++ b/src/_icons/file-text.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eaa2" --- - - - - - + diff --git a/src/_icons/file-time.svg b/src/_icons/file-time.svg index b14697a6c..d155701e1 100644 --- a/src/_icons/file-time.svg +++ b/src/_icons/file-time.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f040" --- - - - - + diff --git a/src/_icons/file-typography.svg b/src/_icons/file-typography.svg index 85d34027c..a0d150db7 100644 --- a/src/_icons/file-typography.svg +++ b/src/_icons/file-typography.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f041" --- - - - - - + diff --git a/src/_icons/file-unknown.svg b/src/_icons/file-unknown.svg index 5bfcce0e0..16084fdcb 100644 --- a/src/_icons/file-unknown.svg +++ b/src/_icons/file-unknown.svg @@ -5,8 +5,5 @@ version: "1.56" unicode: "f042" --- - - - - + diff --git a/src/_icons/file-upload.svg b/src/_icons/file-upload.svg index 411597994..1893e5ec4 100644 --- a/src/_icons/file-upload.svg +++ b/src/_icons/file-upload.svg @@ -5,8 +5,5 @@ version: "1.15" unicode: "ec91" --- - - - - + diff --git a/src/_icons/file-vector.svg b/src/_icons/file-vector.svg index bdc83d9fe..7e5d74b86 100644 --- a/src/_icons/file-vector.svg +++ b/src/_icons/file-vector.svg @@ -5,9 +5,5 @@ version: "1.56" unicode: "f043" --- - - - - - + diff --git a/src/_icons/file-x.svg b/src/_icons/file-x.svg index 31a5457eb..75e2ac4ee 100644 --- a/src/_icons/file-x.svg +++ b/src/_icons/file-x.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaa3" --- - - - + diff --git a/src/_icons/file-zip.svg b/src/_icons/file-zip.svg index 89bc04987..412efb166 100644 --- a/src/_icons/file-zip.svg +++ b/src/_icons/file-zip.svg @@ -5,12 +5,5 @@ version: "1.29" unicode: "ed4e" --- - - - - - - - - + diff --git a/src/_icons/file.svg b/src/_icons/file.svg index 42913a535..fafdb2e04 100644 --- a/src/_icons/file.svg +++ b/src/_icons/file.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaa4" --- - - + diff --git a/src/_icons/files-off.svg b/src/_icons/files-off.svg index 4e484b0bd..aa707a460 100644 --- a/src/_icons/files-off.svg +++ b/src/_icons/files-off.svg @@ -5,8 +5,5 @@ version: "1.38" unicode: "edee" --- - - - - + diff --git a/src/_icons/files.svg b/src/_icons/files.svg index 7cc890b55..27f3555bf 100644 --- a/src/_icons/files.svg +++ b/src/_icons/files.svg @@ -5,7 +5,5 @@ version: "1.38" unicode: "edef" --- - - - + diff --git a/src/_icons/filter-off.svg b/src/_icons/filter-off.svg index 633d9f626..324ab0542 100644 --- a/src/_icons/filter-off.svg +++ b/src/_icons/filter-off.svg @@ -5,6 +5,5 @@ version: "1.26" unicode: "ed2c" --- - - + diff --git a/src/_icons/fingerprint-off.svg b/src/_icons/fingerprint-off.svg index a337d37aa..ac9dd5bfa 100644 --- a/src/_icons/fingerprint-off.svg +++ b/src/_icons/fingerprint-off.svg @@ -4,10 +4,5 @@ version: "1.65" unicode: "f12a" --- - - - - - - + diff --git a/src/_icons/fingerprint.svg b/src/_icons/fingerprint.svg index 04b81688d..02909f9b1 100644 --- a/src/_icons/fingerprint.svg +++ b/src/_icons/fingerprint.svg @@ -4,9 +4,5 @@ version: "1.6" unicode: "ebd1" --- - - - - - + diff --git a/src/_icons/fire-hydrant-off.svg b/src/_icons/fire-hydrant-off.svg index 1fd572565..048c33512 100644 --- a/src/_icons/fire-hydrant-off.svg +++ b/src/_icons/fire-hydrant-off.svg @@ -4,9 +4,5 @@ unicode: "f3ec" version: "1.94" --- - - - - - + diff --git a/src/_icons/fire-hydrant.svg b/src/_icons/fire-hydrant.svg index 333b858da..e1d4a7e4f 100644 --- a/src/_icons/fire-hydrant.svg +++ b/src/_icons/fire-hydrant.svg @@ -4,8 +4,5 @@ version: "1.93" unicode: "f3a9" --- - - - - + diff --git a/src/_icons/firetruck.svg b/src/_icons/firetruck.svg index e21f90678..849c54684 100644 --- a/src/_icons/firetruck.svg +++ b/src/_icons/firetruck.svg @@ -5,11 +5,5 @@ version: "1.7" unicode: "ebe8" --- - - - - - - - + diff --git a/src/_icons/first-aid-kit-off.svg b/src/_icons/first-aid-kit-off.svg index 1142ead8f..cf90f4728 100644 --- a/src/_icons/first-aid-kit-off.svg +++ b/src/_icons/first-aid-kit-off.svg @@ -5,9 +5,5 @@ unicode: "f3ed" version: "1.94" --- - - - - - + diff --git a/src/_icons/first-aid-kit.svg b/src/_icons/first-aid-kit.svg index 765279fc6..a9d1778b2 100644 --- a/src/_icons/first-aid-kit.svg +++ b/src/_icons/first-aid-kit.svg @@ -5,8 +5,5 @@ version: "1.44" unicode: "ef5f" --- - - - - + diff --git a/src/_icons/fish-bone.svg b/src/_icons/fish-bone.svg index cb2eb80f9..5e63950f6 100644 --- a/src/_icons/fish-bone.svg +++ b/src/_icons/fish-bone.svg @@ -5,10 +5,5 @@ version: "1.78" unicode: "f287" --- - - - - - - + diff --git a/src/_icons/fish-hook-off.svg b/src/_icons/fish-hook-off.svg index b4aef370d..d6839faac 100644 --- a/src/_icons/fish-hook-off.svg +++ b/src/_icons/fish-hook-off.svg @@ -4,8 +4,5 @@ unicode: "f3ee" version: "1.94" --- - - - - + diff --git a/src/_icons/fish-hook.svg b/src/_icons/fish-hook.svg index b5a86f55c..0c5d4d8b4 100644 --- a/src/_icons/fish-hook.svg +++ b/src/_icons/fish-hook.svg @@ -4,7 +4,5 @@ version: "1.70" unicode: "f1f9" --- - - - + diff --git a/src/_icons/fish-off.svg b/src/_icons/fish-off.svg index 1b2307b8b..d1c44a0d4 100644 --- a/src/_icons/fish-off.svg +++ b/src/_icons/fish-off.svg @@ -5,9 +5,5 @@ version: "1.65" unicode: "f12b" --- - - - - - + diff --git a/src/_icons/fish.svg b/src/_icons/fish.svg index 5d2f83b2b..75379a0ed 100644 --- a/src/_icons/fish.svg +++ b/src/_icons/fish.svg @@ -5,8 +5,5 @@ version: "1.41" unicode: "ef2b" --- - - - - + diff --git a/src/_icons/flag-2-off.svg b/src/_icons/flag-2-off.svg index a8587baa8..81e3765a6 100644 --- a/src/_icons/flag-2-off.svg +++ b/src/_icons/flag-2-off.svg @@ -5,6 +5,5 @@ version: "1.65" unicode: "f12c" --- - - + diff --git a/src/_icons/flag-filled.svg b/src/_icons/flag-filled.svg new file mode 100644 index 000000000..c0be642f0 --- /dev/null +++ b/src/_icons/flag-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67a" +--- + + + diff --git a/src/_icons/flag-off.svg b/src/_icons/flag-off.svg index c82279fb8..25fdd741a 100644 --- a/src/_icons/flag-off.svg +++ b/src/_icons/flag-off.svg @@ -5,9 +5,5 @@ version: "1.65" unicode: "f12d" --- - - - - - + diff --git a/src/_icons/flag.svg b/src/_icons/flag.svg index f8b6f7234..b23083022 100644 --- a/src/_icons/flag.svg +++ b/src/_icons/flag.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaa6" --- - - - - + diff --git a/src/_icons/flame-off.svg b/src/_icons/flame-off.svg index 9727e18bf..6a6d8ba07 100644 --- a/src/_icons/flame-off.svg +++ b/src/_icons/flame-off.svg @@ -4,6 +4,5 @@ version: "1.65" unicode: "f12e" --- - - + diff --git a/src/_icons/flask-2-off.svg b/src/_icons/flask-2-off.svg index a729e1b91..e718cb5d3 100644 --- a/src/_icons/flask-2-off.svg +++ b/src/_icons/flask-2-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f12f" --- - - - - + diff --git a/src/_icons/flask-2.svg b/src/_icons/flask-2.svg index 276a3a596..531151783 100644 --- a/src/_icons/flask-2.svg +++ b/src/_icons/flask-2.svg @@ -5,7 +5,5 @@ version: "1.44" unicode: "ef60" --- - - - + diff --git a/src/_icons/flask-off.svg b/src/_icons/flask-off.svg index 1d7a1f642..71a670e3c 100644 --- a/src/_icons/flask-off.svg +++ b/src/_icons/flask-off.svg @@ -5,8 +5,5 @@ version: "1.65" unicode: "f130" --- - - - - + diff --git a/src/_icons/flask.svg b/src/_icons/flask.svg index 6984713bc..faac2fc08 100644 --- a/src/_icons/flask.svg +++ b/src/_icons/flask.svg @@ -5,7 +5,5 @@ version: "1.6" unicode: "ebd2" --- - - - + diff --git a/src/_icons/flip-flops.svg b/src/_icons/flip-flops.svg index 8ab6c321f..6fd0cc558 100644 --- a/src/_icons/flip-flops.svg +++ b/src/_icons/flip-flops.svg @@ -4,10 +4,5 @@ unicode: "f564" version: "1.106" --- - - - - - - + diff --git a/src/_icons/flip-horizontal.svg b/src/_icons/flip-horizontal.svg index c71784483..b89b41b5d 100644 --- a/src/_icons/flip-horizontal.svg +++ b/src/_icons/flip-horizontal.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaa7" --- - - - + diff --git a/src/_icons/flip-vertical.svg b/src/_icons/flip-vertical.svg index 80ad8d2a3..b24cf32f5 100644 --- a/src/_icons/flip-vertical.svg +++ b/src/_icons/flip-vertical.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaa8" --- - - - + diff --git a/src/_icons/float-center.svg b/src/_icons/float-center.svg index fa0faaa10..b387d6c68 100644 --- a/src/_icons/float-center.svg +++ b/src/_icons/float-center.svg @@ -5,11 +5,5 @@ version: "1.4" unicode: "ebb1" --- - - - - - - - + diff --git a/src/_icons/float-left.svg b/src/_icons/float-left.svg index 61b015979..6cee4602d 100644 --- a/src/_icons/float-left.svg +++ b/src/_icons/float-left.svg @@ -5,9 +5,5 @@ version: "1.4" unicode: "ebb2" --- - - - - - + diff --git a/src/_icons/float-none.svg b/src/_icons/float-none.svg index 9ac4a5afe..524696f76 100644 --- a/src/_icons/float-none.svg +++ b/src/_icons/float-none.svg @@ -5,7 +5,5 @@ version: "1.24" unicode: "ed13" --- - - - + diff --git a/src/_icons/float-right.svg b/src/_icons/float-right.svg index 382693a0d..a8f7ad9ba 100644 --- a/src/_icons/float-right.svg +++ b/src/_icons/float-right.svg @@ -5,9 +5,5 @@ version: "1.4" unicode: "ebb3" --- - - - - - + diff --git a/src/_icons/flower-off.svg b/src/_icons/flower-off.svg index 7c2bc6596..0f1e1ccc8 100644 --- a/src/_icons/flower-off.svg +++ b/src/_icons/flower-off.svg @@ -5,7 +5,5 @@ version: "1.65" unicode: "f131" --- - - - + diff --git a/src/_icons/flower.svg b/src/_icons/flower.svg index c0e4b8a22..367141373 100644 --- a/src/_icons/flower.svg +++ b/src/_icons/flower.svg @@ -5,6 +5,5 @@ version: "1.52" unicode: "eff6" --- - - + diff --git a/src/_icons/focus-2.svg b/src/_icons/focus-2.svg index d257b6b3d..c06d3d4cb 100644 --- a/src/_icons/focus-2.svg +++ b/src/_icons/focus-2.svg @@ -5,10 +5,5 @@ version: "1.6" unicode: "ebd3" --- - - - - - - + diff --git a/src/_icons/focus-centered.svg b/src/_icons/focus-centered.svg index cf9f567b7..52b5a34e3 100644 --- a/src/_icons/focus-centered.svg +++ b/src/_icons/focus-centered.svg @@ -4,9 +4,5 @@ version: "1.55" unicode: "f02a" --- - - - - - + diff --git a/src/_icons/focus.svg b/src/_icons/focus.svg index 9cd23700d..c658864cc 100644 --- a/src/_icons/focus.svg +++ b/src/_icons/focus.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb8d" --- - - + diff --git a/src/_icons/fold-down.svg b/src/_icons/fold-down.svg index ae06e55df..a6471381c 100644 --- a/src/_icons/fold-down.svg +++ b/src/_icons/fold-down.svg @@ -5,9 +5,5 @@ category: Arrows unicode: "ed54" --- - - - - - + diff --git a/src/_icons/fold-up.svg b/src/_icons/fold-up.svg index c2b7e946f..7bb49926c 100644 --- a/src/_icons/fold-up.svg +++ b/src/_icons/fold-up.svg @@ -5,9 +5,5 @@ category: Arrows unicode: "ed55" --- - - - - - + diff --git a/src/_icons/fold.svg b/src/_icons/fold.svg index f1f14bced..038dd61a5 100644 --- a/src/_icons/fold.svg +++ b/src/_icons/fold.svg @@ -5,10 +5,5 @@ category: Arrows unicode: "ed56" --- - - - - - - + diff --git a/src/_icons/folder-minus.svg b/src/_icons/folder-minus.svg index f1b74dde7..11c21c7e0 100644 --- a/src/_icons/folder-minus.svg +++ b/src/_icons/folder-minus.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaaa" --- - - + diff --git a/src/_icons/folder-off.svg b/src/_icons/folder-off.svg index 4b0832d2b..d8e52d3b4 100644 --- a/src/_icons/folder-off.svg +++ b/src/_icons/folder-off.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed14" --- - - + diff --git a/src/_icons/folder-plus.svg b/src/_icons/folder-plus.svg index 9eec457be..47a78c246 100644 --- a/src/_icons/folder-plus.svg +++ b/src/_icons/folder-plus.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaab" --- - - - + diff --git a/src/_icons/folder-x.svg b/src/_icons/folder-x.svg index c35237b5c..61dd36a3f 100644 --- a/src/_icons/folder-x.svg +++ b/src/_icons/folder-x.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaac" --- - - + diff --git a/src/_icons/folders-off.svg b/src/_icons/folders-off.svg index f102b4c9e..62641172f 100644 --- a/src/_icons/folders-off.svg +++ b/src/_icons/folders-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f133" --- - - - + diff --git a/src/_icons/folders.svg b/src/_icons/folders.svg index 389e4bcb3..97de8cbbb 100644 --- a/src/_icons/folders.svg +++ b/src/_icons/folders.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaae" --- - - + diff --git a/src/_icons/forbid-2.svg b/src/_icons/forbid-2.svg index 874d745d6..3afa0acda 100644 --- a/src/_icons/forbid-2.svg +++ b/src/_icons/forbid-2.svg @@ -4,6 +4,5 @@ version: "1.6" unicode: "ebd4" --- - - + diff --git a/src/_icons/forbid.svg b/src/_icons/forbid.svg index 4d04bd0ac..5c9c4aaa2 100644 --- a/src/_icons/forbid.svg +++ b/src/_icons/forbid.svg @@ -4,6 +4,5 @@ version: "1.6" unicode: "ebd5" --- - - + diff --git a/src/_icons/forklift.svg b/src/_icons/forklift.svg index 522f1d791..457ed5839 100644 --- a/src/_icons/forklift.svg +++ b/src/_icons/forklift.svg @@ -5,12 +5,5 @@ version: "1.7" unicode: "ebe9" --- - - - - - - - - + diff --git a/src/_icons/forms.svg b/src/_icons/forms.svg index 5655fcead..b017f6316 100644 --- a/src/_icons/forms.svg +++ b/src/_icons/forms.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "ee8f" --- - - - - - - + diff --git a/src/_icons/fountain-off.svg b/src/_icons/fountain-off.svg index 7cc3f1805..50e75e7b8 100644 --- a/src/_icons/fountain-off.svg +++ b/src/_icons/fountain-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f134" --- - - - - - - + diff --git a/src/_icons/fountain.svg b/src/_icons/fountain.svg index 4548a6ffd..5b2a1f3f9 100644 --- a/src/_icons/fountain.svg +++ b/src/_icons/fountain.svg @@ -5,9 +5,5 @@ version: "1.61" unicode: "f09b" --- - - - - - + diff --git a/src/_icons/frame-off.svg b/src/_icons/frame-off.svg index 9c6d04bb4..a1355547a 100644 --- a/src/_icons/frame-off.svg +++ b/src/_icons/frame-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f135" --- - - - - - + diff --git a/src/_icons/frame.svg b/src/_icons/frame.svg index 837d4d35e..f0c2396a8 100644 --- a/src/_icons/frame.svg +++ b/src/_icons/frame.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaaf" --- - - - - + diff --git a/src/_icons/free-rights.svg b/src/_icons/free-rights.svg index ce7abc663..2abc9a6c5 100644 --- a/src/_icons/free-rights.svg +++ b/src/_icons/free-rights.svg @@ -4,10 +4,5 @@ version: "1.49" unicode: "efb6" --- - - - - - - + diff --git a/src/_icons/fridge-off.svg b/src/_icons/fridge-off.svg index dcb81ef3e..fea4f9d37 100644 --- a/src/_icons/fridge-off.svg +++ b/src/_icons/fridge-off.svg @@ -5,8 +5,5 @@ unicode: "f3ef" version: "1.94" --- - - - - + diff --git a/src/_icons/fridge.svg b/src/_icons/fridge.svg index 401b00bf8..ab132c224 100644 --- a/src/_icons/fridge.svg +++ b/src/_icons/fridge.svg @@ -5,8 +5,5 @@ version: "1.70" unicode: "f1fa" --- - - - - + diff --git a/src/_icons/friends-off.svg b/src/_icons/friends-off.svg index 3e09a07dd..910ba32a3 100644 --- a/src/_icons/friends-off.svg +++ b/src/_icons/friends-off.svg @@ -4,9 +4,5 @@ version: "1.66" unicode: "f136" --- - - - - - + diff --git a/src/_icons/friends.svg b/src/_icons/friends.svg index eb29083f3..4f960b4b1 100644 --- a/src/_icons/friends.svg +++ b/src/_icons/friends.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eab0" --- - - - - + diff --git a/src/_icons/function-off.svg b/src/_icons/function-off.svg index f337d1a6a..2fb995398 100644 --- a/src/_icons/function-off.svg +++ b/src/_icons/function-off.svg @@ -5,8 +5,5 @@ unicode: "f3f0" version: "1.94" --- - - - - + diff --git a/src/_icons/function.svg b/src/_icons/function.svg index 160072b78..5a94f8128 100644 --- a/src/_icons/function.svg +++ b/src/_icons/function.svg @@ -5,7 +5,5 @@ version: "1.72" unicode: "f225" --- - - - + diff --git a/src/_icons/garden-cart-off.svg b/src/_icons/garden-cart-off.svg index 3953bb41f..f6e6707c5 100644 --- a/src/_icons/garden-cart-off.svg +++ b/src/_icons/garden-cart-off.svg @@ -5,8 +5,5 @@ unicode: "f3f1" version: "1.94" --- - - - - + diff --git a/src/_icons/garden-cart.svg b/src/_icons/garden-cart.svg index a7b8270cf..f204ddd82 100644 --- a/src/_icons/garden-cart.svg +++ b/src/_icons/garden-cart.svg @@ -5,7 +5,5 @@ version: "1.74" unicode: "f23e" --- - - - + diff --git a/src/_icons/gas-station-off.svg b/src/_icons/gas-station-off.svg index 665e04725..eb86de995 100644 --- a/src/_icons/gas-station-off.svg +++ b/src/_icons/gas-station-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f137" --- - - - - - - + diff --git a/src/_icons/gas-station.svg b/src/_icons/gas-station.svg index e8bc6df64..e5f9efe1c 100644 --- a/src/_icons/gas-station.svg +++ b/src/_icons/gas-station.svg @@ -6,9 +6,5 @@ version: "1.14" unicode: "ec7d" --- - - - - - + diff --git a/src/_icons/gauge-off.svg b/src/_icons/gauge-off.svg index 55a60a5fd..74c53c552 100644 --- a/src/_icons/gauge-off.svg +++ b/src/_icons/gauge-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f138" --- - - - - - + diff --git a/src/_icons/gauge.svg b/src/_icons/gauge.svg index b11a3a0f1..d3b71fe7a 100644 --- a/src/_icons/gauge.svg +++ b/src/_icons/gauge.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eab1" --- - - - - + diff --git a/src/_icons/gavel.svg b/src/_icons/gavel.svg index 5535bd0de..ee90f0879 100644 --- a/src/_icons/gavel.svg +++ b/src/_icons/gavel.svg @@ -4,9 +4,5 @@ version: "1.47" unicode: "ef90" --- - - - - - + diff --git a/src/_icons/gender-agender.svg b/src/_icons/gender-agender.svg index b646c8566..deca61f6f 100644 --- a/src/_icons/gender-agender.svg +++ b/src/_icons/gender-agender.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0e1" --- - - + diff --git a/src/_icons/gender-androgyne.svg b/src/_icons/gender-androgyne.svg index 504e1fd4c..d41c98c5d 100644 --- a/src/_icons/gender-androgyne.svg +++ b/src/_icons/gender-androgyne.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0e2" --- - - - - + diff --git a/src/_icons/gender-bigender.svg b/src/_icons/gender-bigender.svg index dfb89e1ae..a7c1f494a 100644 --- a/src/_icons/gender-bigender.svg +++ b/src/_icons/gender-bigender.svg @@ -5,9 +5,5 @@ version: "1.64" unicode: "f0e3" --- - - - - - + diff --git a/src/_icons/gender-demiboy.svg b/src/_icons/gender-demiboy.svg index 982e4a944..11df5ac75 100644 --- a/src/_icons/gender-demiboy.svg +++ b/src/_icons/gender-demiboy.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0e4" --- - - - + diff --git a/src/_icons/gender-demigirl.svg b/src/_icons/gender-demigirl.svg index 71546ce93..ef2cfa270 100644 --- a/src/_icons/gender-demigirl.svg +++ b/src/_icons/gender-demigirl.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0e5" --- - - - + diff --git a/src/_icons/gender-epicene.svg b/src/_icons/gender-epicene.svg index 0c19d052d..590e3824f 100644 --- a/src/_icons/gender-epicene.svg +++ b/src/_icons/gender-epicene.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0e6" --- - - - - + diff --git a/src/_icons/gender-female.svg b/src/_icons/gender-female.svg index 4c834d8d8..b06399422 100644 --- a/src/_icons/gender-female.svg +++ b/src/_icons/gender-female.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0e7" --- - - - + diff --git a/src/_icons/gender-femme.svg b/src/_icons/gender-femme.svg index c0092de9a..69fa0bc9c 100644 --- a/src/_icons/gender-femme.svg +++ b/src/_icons/gender-femme.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0e8" --- - - - + diff --git a/src/_icons/gender-genderfluid.svg b/src/_icons/gender-genderfluid.svg index 17a05c661..bf2537256 100644 --- a/src/_icons/gender-genderfluid.svg +++ b/src/_icons/gender-genderfluid.svg @@ -5,13 +5,5 @@ version: "1.64" unicode: "f0e9" --- - - - - - - - - - + diff --git a/src/_icons/gender-genderless.svg b/src/_icons/gender-genderless.svg index 53117d375..d8bd67a33 100644 --- a/src/_icons/gender-genderless.svg +++ b/src/_icons/gender-genderless.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0ea" --- - - - + diff --git a/src/_icons/gender-genderqueer.svg b/src/_icons/gender-genderqueer.svg index c07f0955c..1bed79a9e 100644 --- a/src/_icons/gender-genderqueer.svg +++ b/src/_icons/gender-genderqueer.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0eb" --- - - - - + diff --git a/src/_icons/gender-hermaphrodite.svg b/src/_icons/gender-hermaphrodite.svg index 6e6540472..8ac66a530 100644 --- a/src/_icons/gender-hermaphrodite.svg +++ b/src/_icons/gender-hermaphrodite.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0ec" --- - - - - + diff --git a/src/_icons/gender-intergender.svg b/src/_icons/gender-intergender.svg index 96a71dc74..eb21bfd88 100644 --- a/src/_icons/gender-intergender.svg +++ b/src/_icons/gender-intergender.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0ed" --- - - - - + diff --git a/src/_icons/gender-male.svg b/src/_icons/gender-male.svg index dc2333d0a..0cdf49fa2 100644 --- a/src/_icons/gender-male.svg +++ b/src/_icons/gender-male.svg @@ -5,8 +5,5 @@ version: "1.64" unicode: "f0ee" --- - - - - + diff --git a/src/_icons/gender-neutrois.svg b/src/_icons/gender-neutrois.svg index ee416f8e1..0ff9f0614 100644 --- a/src/_icons/gender-neutrois.svg +++ b/src/_icons/gender-neutrois.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0ef" --- - - + diff --git a/src/_icons/gender-third.svg b/src/_icons/gender-third.svg index b0f39058c..fc70a7900 100644 --- a/src/_icons/gender-third.svg +++ b/src/_icons/gender-third.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0f0" --- - - - + diff --git a/src/_icons/gender-transgender.svg b/src/_icons/gender-transgender.svg index df1c26da8..9c61485eb 100644 --- a/src/_icons/gender-transgender.svg +++ b/src/_icons/gender-transgender.svg @@ -5,12 +5,5 @@ version: "1.64" unicode: "f0f1" --- - - - - - - - - + diff --git a/src/_icons/gender-trasvesti.svg b/src/_icons/gender-trasvesti.svg index cc4893484..c67e72f1d 100644 --- a/src/_icons/gender-trasvesti.svg +++ b/src/_icons/gender-trasvesti.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0f2" --- - - - + diff --git a/src/_icons/geometry.svg b/src/_icons/geometry.svg index e13284917..2c1aeb66c 100644 --- a/src/_icons/geometry.svg +++ b/src/_icons/geometry.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee90" --- - - - - + diff --git a/src/_icons/ghost-2.svg b/src/_icons/ghost-2.svg index 70aa8ac69..671ede3d3 100644 --- a/src/_icons/ghost-2.svg +++ b/src/_icons/ghost-2.svg @@ -4,8 +4,5 @@ unicode: "f57c" version: "1.108" --- - - - - + diff --git a/src/_icons/ghost-off.svg b/src/_icons/ghost-off.svg index 07c21ba88..e87f7e766 100644 --- a/src/_icons/ghost-off.svg +++ b/src/_icons/ghost-off.svg @@ -4,8 +4,5 @@ unicode: "f3f2" version: "1.94" --- - - - - + diff --git a/src/_icons/ghost.svg b/src/_icons/ghost.svg index d50304582..5e3f6b00f 100644 --- a/src/_icons/ghost.svg +++ b/src/_icons/ghost.svg @@ -4,8 +4,5 @@ version: "1.3" unicode: "eb8e" --- - - - - + diff --git a/src/_icons/gif.svg b/src/_icons/gif.svg index 5653b2a90..8900fc90b 100644 --- a/src/_icons/gif.svg +++ b/src/_icons/gif.svg @@ -4,8 +4,5 @@ version: "1.75" unicode: "f257" --- - - - - + diff --git a/src/_icons/gift-card.svg b/src/_icons/gift-card.svg index a60d83d2c..def9561a1 100644 --- a/src/_icons/gift-card.svg +++ b/src/_icons/gift-card.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3aa" --- - - - + diff --git a/src/_icons/gift-off.svg b/src/_icons/gift-off.svg index be27f5d94..91e411567 100644 --- a/src/_icons/gift-off.svg +++ b/src/_icons/gift-off.svg @@ -4,9 +4,5 @@ unicode: "f3f3" version: "1.94" --- - - - - - + diff --git a/src/_icons/gift.svg b/src/_icons/gift.svg index 0e0369f41..78b24863d 100644 --- a/src/_icons/gift.svg +++ b/src/_icons/gift.svg @@ -4,8 +4,5 @@ version: "1.2" unicode: "eb68" --- - - - - + diff --git a/src/_icons/git-branch-deleted.svg b/src/_icons/git-branch-deleted.svg index 9eb407bc8..b8b9c5edd 100644 --- a/src/_icons/git-branch-deleted.svg +++ b/src/_icons/git-branch-deleted.svg @@ -5,11 +5,5 @@ unicode: "f57d" version: "1.108" --- - - - - - - - + diff --git a/src/_icons/git-branch.svg b/src/_icons/git-branch.svg index 48db45318..711cf8211 100644 --- a/src/_icons/git-branch.svg +++ b/src/_icons/git-branch.svg @@ -5,10 +5,5 @@ unicode: "eab2" category: Version control --- - - - - - - + diff --git a/src/_icons/git-cherry-pick.svg b/src/_icons/git-cherry-pick.svg index b4477db53..078fbea39 100644 --- a/src/_icons/git-cherry-pick.svg +++ b/src/_icons/git-cherry-pick.svg @@ -5,9 +5,5 @@ unicode: "f57e" version: "1.108" --- - - - - - + diff --git a/src/_icons/git-commit.svg b/src/_icons/git-commit.svg index f2e405a38..ea1fa8d42 100644 --- a/src/_icons/git-commit.svg +++ b/src/_icons/git-commit.svg @@ -5,7 +5,5 @@ unicode: "eab3" category: Version control --- - - - + diff --git a/src/_icons/git-compare.svg b/src/_icons/git-compare.svg index ed9678413..4c3d04460 100644 --- a/src/_icons/git-compare.svg +++ b/src/_icons/git-compare.svg @@ -5,10 +5,5 @@ unicode: "eab4" category: Version control --- - - - - - - + diff --git a/src/_icons/git-fork.svg b/src/_icons/git-fork.svg index 90057d5c5..63083474d 100644 --- a/src/_icons/git-fork.svg +++ b/src/_icons/git-fork.svg @@ -5,9 +5,5 @@ unicode: "eb8f" category: Version control --- - - - - - + diff --git a/src/_icons/git-merge.svg b/src/_icons/git-merge.svg index 6dc908ae8..d38de7709 100644 --- a/src/_icons/git-merge.svg +++ b/src/_icons/git-merge.svg @@ -5,9 +5,5 @@ unicode: "eab5" category: Version control --- - - - - - + diff --git a/src/_icons/git-pull-request-closed.svg b/src/_icons/git-pull-request-closed.svg index c37700ea2..bb8ea57dd 100644 --- a/src/_icons/git-pull-request-closed.svg +++ b/src/_icons/git-pull-request-closed.svg @@ -5,10 +5,5 @@ unicode: "ef7f" category: Version control --- - - - - - - + diff --git a/src/_icons/git-pull-request-draft.svg b/src/_icons/git-pull-request-draft.svg index b0b2f6ed3..c31fc2fe6 100644 --- a/src/_icons/git-pull-request-draft.svg +++ b/src/_icons/git-pull-request-draft.svg @@ -5,10 +5,5 @@ unicode: "efb7" category: Version control --- - - - - - - + diff --git a/src/_icons/git-pull-request.svg b/src/_icons/git-pull-request.svg index 57a19d2d6..ada64108e 100644 --- a/src/_icons/git-pull-request.svg +++ b/src/_icons/git-pull-request.svg @@ -5,10 +5,5 @@ unicode: "eab6" category: Version control --- - - - - - - + diff --git a/src/_icons/gizmo.svg b/src/_icons/gizmo.svg index 95b02b5e3..49de96ac7 100644 --- a/src/_icons/gizmo.svg +++ b/src/_icons/gizmo.svg @@ -4,9 +4,5 @@ version: "1.55" unicode: "f02b" --- - - - - - + diff --git a/src/_icons/glass-full.svg b/src/_icons/glass-full.svg index 6366381b7..c359de8f6 100644 --- a/src/_icons/glass-full.svg +++ b/src/_icons/glass-full.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eab7" --- - - - - + diff --git a/src/_icons/glass-off.svg b/src/_icons/glass-off.svg index 28d4e41af..0df9b20bf 100644 --- a/src/_icons/glass-off.svg +++ b/src/_icons/glass-off.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee91" --- - - - - + diff --git a/src/_icons/glass.svg b/src/_icons/glass.svg index 82515961e..dbdff6f60 100644 --- a/src/_icons/glass.svg +++ b/src/_icons/glass.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eab8" --- - - - + diff --git a/src/_icons/globe-off.svg b/src/_icons/globe-off.svg index 732b69469..1d753c524 100644 --- a/src/_icons/globe-off.svg +++ b/src/_icons/globe-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f139" --- - - - - - + diff --git a/src/_icons/globe.svg b/src/_icons/globe.svg index 369ccd64a..f3e51dfe5 100644 --- a/src/_icons/globe.svg +++ b/src/_icons/globe.svg @@ -5,8 +5,5 @@ version: "1.1" unicode: "eab9" --- - - - - + diff --git a/src/_icons/go-game.svg b/src/_icons/go-game.svg index 15751dae0..5cf604d39 100644 --- a/src/_icons/go-game.svg +++ b/src/_icons/go-game.svg @@ -4,14 +4,5 @@ version: "1.102" unicode: "f512" --- - - - - - - - - - - + diff --git a/src/_icons/golf-off.svg b/src/_icons/golf-off.svg index eacdcf2ca..6f73bc3e1 100644 --- a/src/_icons/golf-off.svg +++ b/src/_icons/golf-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f13a" --- - - - + diff --git a/src/_icons/golf.svg b/src/_icons/golf.svg index faa97e419..7ae15cba9 100644 --- a/src/_icons/golf.svg +++ b/src/_icons/golf.svg @@ -5,6 +5,5 @@ version: "1.34" unicode: "ed8c" --- - - + diff --git a/src/_icons/gps.svg b/src/_icons/gps.svg index f1984bf94..f7caee189 100644 --- a/src/_icons/gps.svg +++ b/src/_icons/gps.svg @@ -5,6 +5,5 @@ version: "1.33" unicode: "ed7a" --- - - + diff --git a/src/_icons/gradienter.svg b/src/_icons/gradienter.svg index 7867f21af..077755dea 100644 --- a/src/_icons/gradienter.svg +++ b/src/_icons/gradienter.svg @@ -3,7 +3,5 @@ version: "1.93" unicode: "f3ab" --- - - - + diff --git a/src/_icons/grain.svg b/src/_icons/grain.svg index 78964c175..495251390 100644 --- a/src/_icons/grain.svg +++ b/src/_icons/grain.svg @@ -4,12 +4,5 @@ version: "1.39" unicode: "ee92" --- - - - - - - - - + diff --git a/src/_icons/graph-off.svg b/src/_icons/graph-off.svg index 6c5bb89cf..08584dc06 100644 --- a/src/_icons/graph-off.svg +++ b/src/_icons/graph-off.svg @@ -4,7 +4,5 @@ unicode: "f3f4" version: "1.94" --- - - - + diff --git a/src/_icons/graph.svg b/src/_icons/graph.svg index 347301f26..6f17fb980 100644 --- a/src/_icons/graph.svg +++ b/src/_icons/graph.svg @@ -4,6 +4,5 @@ version: "1.78" unicode: "f288" --- - - + diff --git a/src/_icons/grave-2.svg b/src/_icons/grave-2.svg index 8d110b04b..59eac4952 100644 --- a/src/_icons/grave-2.svg +++ b/src/_icons/grave-2.svg @@ -4,8 +4,5 @@ unicode: "f57f" version: "1.108" --- - - - - + diff --git a/src/_icons/grave.svg b/src/_icons/grave.svg index c40238628..b3dd4c420 100644 --- a/src/_icons/grave.svg +++ b/src/_icons/grave.svg @@ -4,6 +4,5 @@ unicode: "f580" version: "1.108" --- - - + diff --git a/src/_icons/grid-dots.svg b/src/_icons/grid-dots.svg index d12a1ce58..96fcb1250 100644 --- a/src/_icons/grid-dots.svg +++ b/src/_icons/grid-dots.svg @@ -5,13 +5,5 @@ version: "1.0" unicode: "eaba" --- - - - - - - - - - + diff --git a/src/_icons/grid-pattern.svg b/src/_icons/grid-pattern.svg index 7b985c536..cb4b77d10 100644 --- a/src/_icons/grid-pattern.svg +++ b/src/_icons/grid-pattern.svg @@ -4,9 +4,5 @@ version: "1.50" unicode: "efc9" --- - - - - - + diff --git a/src/_icons/grill-fork.svg b/src/_icons/grill-fork.svg index 1cf0d33f3..e10409bfe 100644 --- a/src/_icons/grill-fork.svg +++ b/src/_icons/grill-fork.svg @@ -5,7 +5,5 @@ unicode: "f35b" version: "1.89" --- - - - + diff --git a/src/_icons/grill-off.svg b/src/_icons/grill-off.svg index 7278d6182..fab1e55a4 100644 --- a/src/_icons/grill-off.svg +++ b/src/_icons/grill-off.svg @@ -5,12 +5,5 @@ unicode: "f3f5" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/grill-spatula.svg b/src/_icons/grill-spatula.svg index ab5dc9af8..c3bf74c38 100644 --- a/src/_icons/grill-spatula.svg +++ b/src/_icons/grill-spatula.svg @@ -5,7 +5,5 @@ unicode: "f35c" version: "1.89" --- - - - + diff --git a/src/_icons/grill.svg b/src/_icons/grill.svg index 41d87772c..faef2f518 100644 --- a/src/_icons/grill.svg +++ b/src/_icons/grill.svg @@ -5,12 +5,5 @@ version: "1.48" unicode: "efa9" --- - - - - - - - - + diff --git a/src/_icons/grip-horizontal.svg b/src/_icons/grip-horizontal.svg index 4ac4185e5..625fc7ff3 100644 --- a/src/_icons/grip-horizontal.svg +++ b/src/_icons/grip-horizontal.svg @@ -5,10 +5,5 @@ version: "1.8" unicode: "ec00" --- - - - - - - + diff --git a/src/_icons/grip-vertical.svg b/src/_icons/grip-vertical.svg index be1ad8b78..0ab2f6b10 100644 --- a/src/_icons/grip-vertical.svg +++ b/src/_icons/grip-vertical.svg @@ -5,10 +5,5 @@ version: "1.8" unicode: "ec01" --- - - - - - - + diff --git a/src/_icons/guitar-pick-filled.svg b/src/_icons/guitar-pick-filled.svg new file mode 100644 index 000000000..b8662f1c0 --- /dev/null +++ b/src/_icons/guitar-pick-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67b" +--- + + + diff --git a/src/_icons/h-1.svg b/src/_icons/h-1.svg index 0d2332edf..b8cd18921 100644 --- a/src/_icons/h-1.svg +++ b/src/_icons/h-1.svg @@ -5,12 +5,5 @@ version: "1.16" unicode: "ec94" --- - - - - - - - - + diff --git a/src/_icons/h-2.svg b/src/_icons/h-2.svg index ce6965269..2feb0e573 100644 --- a/src/_icons/h-2.svg +++ b/src/_icons/h-2.svg @@ -5,12 +5,5 @@ version: "1.16" unicode: "ec95" --- - - - - - - - - + diff --git a/src/_icons/h-3.svg b/src/_icons/h-3.svg index 94e48a2f1..02c301f78 100644 --- a/src/_icons/h-3.svg +++ b/src/_icons/h-3.svg @@ -5,13 +5,5 @@ version: "1.16" unicode: "ec96" --- - - - - - - - - - + diff --git a/src/_icons/h-4.svg b/src/_icons/h-4.svg index e5c7b765e..67cf4b9ab 100644 --- a/src/_icons/h-4.svg +++ b/src/_icons/h-4.svg @@ -5,12 +5,5 @@ version: "1.16" unicode: "ec97" --- - - - - - - - - + diff --git a/src/_icons/h-5.svg b/src/_icons/h-5.svg index 5b2cdaa68..9caaa119e 100644 --- a/src/_icons/h-5.svg +++ b/src/_icons/h-5.svg @@ -5,12 +5,5 @@ version: "1.16" unicode: "ec98" --- - - - - - - - - + diff --git a/src/_icons/h-6.svg b/src/_icons/h-6.svg index 5ab0ab906..e024c3f21 100644 --- a/src/_icons/h-6.svg +++ b/src/_icons/h-6.svg @@ -5,13 +5,5 @@ version: "1.16" unicode: "ec99" --- - - - - - - - - - + diff --git a/src/_icons/hammer-off.svg b/src/_icons/hammer-off.svg index 960d208b8..2efedc86a 100644 --- a/src/_icons/hammer-off.svg +++ b/src/_icons/hammer-off.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f13c" --- - - - + diff --git a/src/_icons/hammer.svg b/src/_icons/hammer.svg index 21606b971..5463c1e51 100644 --- a/src/_icons/hammer.svg +++ b/src/_icons/hammer.svg @@ -4,6 +4,5 @@ version: "1.47" unicode: "ef91" --- - - + diff --git a/src/_icons/hand-click.svg b/src/_icons/hand-click.svg index 2b83deb20..9438de2e9 100644 --- a/src/_icons/hand-click.svg +++ b/src/_icons/hand-click.svg @@ -5,12 +5,5 @@ version: "1.43" unicode: "ef4f" --- - - - - - - - - + diff --git a/src/_icons/hand-finger-off.svg b/src/_icons/hand-finger-off.svg index a22634df2..004c1bf5c 100644 --- a/src/_icons/hand-finger-off.svg +++ b/src/_icons/hand-finger-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f13d" --- - - - - - - + diff --git a/src/_icons/hand-finger.svg b/src/_icons/hand-finger.svg index 50fb77d02..e5cf47bf7 100644 --- a/src/_icons/hand-finger.svg +++ b/src/_icons/hand-finger.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee94" --- - - - - + diff --git a/src/_icons/hand-grab.svg b/src/_icons/hand-grab.svg index 74a6fa1e1..5febedbe1 100644 --- a/src/_icons/hand-grab.svg +++ b/src/_icons/hand-grab.svg @@ -5,8 +5,5 @@ version: "1.60" unicode: "f091" --- - - - - + diff --git a/src/_icons/hand-little-finger.svg b/src/_icons/hand-little-finger.svg index c2ec33d55..4c949022f 100644 --- a/src/_icons/hand-little-finger.svg +++ b/src/_icons/hand-little-finger.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee95" --- - - - - + diff --git a/src/_icons/hand-middle-finger.svg b/src/_icons/hand-middle-finger.svg index 2dc93c6ba..6d22e1b4a 100644 --- a/src/_icons/hand-middle-finger.svg +++ b/src/_icons/hand-middle-finger.svg @@ -5,8 +5,5 @@ version: "1.10" unicode: "ec2d" --- - - - - + diff --git a/src/_icons/hand-move.svg b/src/_icons/hand-move.svg index 7e6730e9b..e97a3b53a 100644 --- a/src/_icons/hand-move.svg +++ b/src/_icons/hand-move.svg @@ -5,10 +5,5 @@ version: "1.43" unicode: "ef50" --- - - - - - - + diff --git a/src/_icons/hand-off.svg b/src/_icons/hand-off.svg index ede6f421b..1d54b204f 100644 --- a/src/_icons/hand-off.svg +++ b/src/_icons/hand-off.svg @@ -5,6 +5,5 @@ version: "1.24" unicode: "ed15" --- - - + diff --git a/src/_icons/hand-ring-finger.svg b/src/_icons/hand-ring-finger.svg index 3ec221922..dda639d43 100644 --- a/src/_icons/hand-ring-finger.svg +++ b/src/_icons/hand-ring-finger.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee96" --- - - - - + diff --git a/src/_icons/hand-rock.svg b/src/_icons/hand-rock.svg index 378b6bf73..96c18be09 100644 --- a/src/_icons/hand-rock.svg +++ b/src/_icons/hand-rock.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee97" --- - - - - + diff --git a/src/_icons/hand-sanitizer.svg b/src/_icons/hand-sanitizer.svg index c57dc59cc..1641f0dc7 100644 --- a/src/_icons/hand-sanitizer.svg +++ b/src/_icons/hand-sanitizer.svg @@ -3,9 +3,5 @@ unicode: "f5f4" version: "1.113" --- - - - - - + diff --git a/src/_icons/hand-stop.svg b/src/_icons/hand-stop.svg index aa2b99975..dcaa911b6 100644 --- a/src/_icons/hand-stop.svg +++ b/src/_icons/hand-stop.svg @@ -5,8 +5,5 @@ version: "1.10" unicode: "ec2e" --- - - - - + diff --git a/src/_icons/hand-three-fingers.svg b/src/_icons/hand-three-fingers.svg index 53ffbb021..2bc53d4a7 100644 --- a/src/_icons/hand-three-fingers.svg +++ b/src/_icons/hand-three-fingers.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee98" --- - - - - + diff --git a/src/_icons/hand-two-fingers.svg b/src/_icons/hand-two-fingers.svg index c487bf6e0..e46286ff6 100644 --- a/src/_icons/hand-two-fingers.svg +++ b/src/_icons/hand-two-fingers.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee99" --- - - - - + diff --git a/src/_icons/hanger-2.svg b/src/_icons/hanger-2.svg index b323b77aa..4645b159c 100644 --- a/src/_icons/hanger-2.svg +++ b/src/_icons/hanger-2.svg @@ -4,7 +4,5 @@ version: "1.61" unicode: "f09c" --- - - - + diff --git a/src/_icons/hanger-off.svg b/src/_icons/hanger-off.svg index b6d677b44..a2c6daf7f 100644 --- a/src/_icons/hanger-off.svg +++ b/src/_icons/hanger-off.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f13e" --- - - + diff --git a/src/_icons/hanger.svg b/src/_icons/hanger.svg index 1a93b57f7..919d1924a 100644 --- a/src/_icons/hanger.svg +++ b/src/_icons/hanger.svg @@ -4,5 +4,5 @@ version: "1.39" unicode: "ee9a" --- - + diff --git a/src/_icons/hash.svg b/src/_icons/hash.svg index 6d3a45e95..05d46ec3d 100644 --- a/src/_icons/hash.svg +++ b/src/_icons/hash.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eabc" --- - - - - + diff --git a/src/_icons/haze.svg b/src/_icons/haze.svg index 54f565276..b77a50cd0 100644 --- a/src/_icons/haze.svg +++ b/src/_icons/haze.svg @@ -5,12 +5,5 @@ version: "1.48" unicode: "efaa" --- - - - - - - - - + diff --git a/src/_icons/heading-off.svg b/src/_icons/heading-off.svg index 8005a1170..b8ac058bd 100644 --- a/src/_icons/heading-off.svg +++ b/src/_icons/heading-off.svg @@ -5,11 +5,5 @@ version: "1.66" unicode: "f13f" --- - - - - - - - + diff --git a/src/_icons/heading.svg b/src/_icons/heading.svg index 7e12785e2..9d907d6fa 100644 --- a/src/_icons/heading.svg +++ b/src/_icons/heading.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ee9b" --- - - - - - - - + diff --git a/src/_icons/headphones-off.svg b/src/_icons/headphones-off.svg index 4f78b30aa..fba9dcb70 100644 --- a/src/_icons/headphones-off.svg +++ b/src/_icons/headphones-off.svg @@ -5,8 +5,5 @@ version: "1.25" unicode: "ed1d" --- - - - - + diff --git a/src/_icons/headphones.svg b/src/_icons/headphones.svg index 1c6b6508c..84cd70316 100644 --- a/src/_icons/headphones.svg +++ b/src/_icons/headphones.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eabd" --- - - - + diff --git a/src/_icons/headset-off.svg b/src/_icons/headset-off.svg index c88a983a3..452f7cf71 100644 --- a/src/_icons/headset-off.svg +++ b/src/_icons/headset-off.svg @@ -5,9 +5,5 @@ unicode: "f3f6" version: "1.94" --- - - - - - + diff --git a/src/_icons/headset.svg b/src/_icons/headset.svg index f338dd50d..a773c91d6 100644 --- a/src/_icons/headset.svg +++ b/src/_icons/headset.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb90" --- - - - - + diff --git a/src/_icons/health-recognition.svg b/src/_icons/health-recognition.svg index 877d25914..88aa00099 100644 --- a/src/_icons/health-recognition.svg +++ b/src/_icons/health-recognition.svg @@ -4,9 +4,5 @@ version: "1.70" unicode: "f1fb" --- - - - - - + diff --git a/src/_icons/heart-broken.svg b/src/_icons/heart-broken.svg index 4257df836..8d5c0d746 100644 --- a/src/_icons/heart-broken.svg +++ b/src/_icons/heart-broken.svg @@ -5,6 +5,5 @@ category: Health unicode: "ecba" --- - - + diff --git a/src/_icons/heart-filled.svg b/src/_icons/heart-filled.svg new file mode 100644 index 000000000..fb3c12c71 --- /dev/null +++ b/src/_icons/heart-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67c" +--- + + + diff --git a/src/_icons/heart-handshake.svg b/src/_icons/heart-handshake.svg index 10f423345..8910d5446 100644 --- a/src/_icons/heart-handshake.svg +++ b/src/_icons/heart-handshake.svg @@ -4,8 +4,5 @@ version: "1.64" unicode: "f0f3" --- - - - - + diff --git a/src/_icons/heart-minus.svg b/src/_icons/heart-minus.svg index ad751041b..be48162b9 100644 --- a/src/_icons/heart-minus.svg +++ b/src/_icons/heart-minus.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f140" --- - - + diff --git a/src/_icons/heart-off.svg b/src/_icons/heart-off.svg index ad81e14cc..db0708ba7 100644 --- a/src/_icons/heart-off.svg +++ b/src/_icons/heart-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f141" --- - - + diff --git a/src/_icons/heart-plus.svg b/src/_icons/heart-plus.svg index de315e9a4..4fdca4833 100644 --- a/src/_icons/heart-plus.svg +++ b/src/_icons/heart-plus.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f142" --- - - - + diff --git a/src/_icons/heart-rate-monitor.svg b/src/_icons/heart-rate-monitor.svg index 5792c4497..84a01a4b4 100644 --- a/src/_icons/heart-rate-monitor.svg +++ b/src/_icons/heart-rate-monitor.svg @@ -5,9 +5,5 @@ version: "1.44" unicode: "ef61" --- - - - - - + diff --git a/src/_icons/heart.svg b/src/_icons/heart.svg index 9fe934ce3..cd6ea17a4 100644 --- a/src/_icons/heart.svg +++ b/src/_icons/heart.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "eabe" --- - + diff --git a/src/_icons/heartbeat.svg b/src/_icons/heartbeat.svg index 560c0bd29..0d9b11f42 100644 --- a/src/_icons/heartbeat.svg +++ b/src/_icons/heartbeat.svg @@ -5,6 +5,5 @@ version: "1.47" unicode: "ef92" --- - - + diff --git a/src/_icons/hearts-off.svg b/src/_icons/hearts-off.svg index 0b1b8ea24..ea01eb6fb 100644 --- a/src/_icons/hearts-off.svg +++ b/src/_icons/hearts-off.svg @@ -5,7 +5,5 @@ unicode: "f3f7" version: "1.94" --- - - - + diff --git a/src/_icons/hearts.svg b/src/_icons/hearts.svg index 97c986ac3..e9f157629 100644 --- a/src/_icons/hearts.svg +++ b/src/_icons/hearts.svg @@ -5,6 +5,5 @@ unicode: "f387" version: "1.91" --- - - + diff --git a/src/_icons/helicopter-landing.svg b/src/_icons/helicopter-landing.svg index dd8c3784a..b151ab3f3 100644 --- a/src/_icons/helicopter-landing.svg +++ b/src/_icons/helicopter-landing.svg @@ -5,8 +5,5 @@ version: "1.34" unicode: "ed8d" --- - - - - + diff --git a/src/_icons/helicopter.svg b/src/_icons/helicopter.svg index dbb563e75..ced3b4689 100644 --- a/src/_icons/helicopter.svg +++ b/src/_icons/helicopter.svg @@ -5,11 +5,5 @@ version: "1.34" unicode: "ed8e" --- - - - - - - - + diff --git a/src/_icons/helmet-off.svg b/src/_icons/helmet-off.svg index 2ea326c6f..5e0df75d3 100644 --- a/src/_icons/helmet-off.svg +++ b/src/_icons/helmet-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f143" --- - - - + diff --git a/src/_icons/helmet.svg b/src/_icons/helmet.svg index 3c6d43545..6e3968659 100644 --- a/src/_icons/helmet.svg +++ b/src/_icons/helmet.svg @@ -5,6 +5,5 @@ version: "1.50" unicode: "efca" --- - - + diff --git a/src/_icons/help-off.svg b/src/_icons/help-off.svg index d29f4a0da..b78e15450 100644 --- a/src/_icons/help-off.svg +++ b/src/_icons/help-off.svg @@ -4,8 +4,5 @@ unicode: "f3f8" version: "1.94" --- - - - - + diff --git a/src/_icons/help.svg b/src/_icons/help.svg index 52b50d462..754edcf4a 100644 --- a/src/_icons/help.svg +++ b/src/_icons/help.svg @@ -4,7 +4,5 @@ version: "1.1" unicode: "eabf" --- - - - + diff --git a/src/_icons/hexagon-3d.svg b/src/_icons/hexagon-3d.svg index 877f36e57..b349f45f9 100644 --- a/src/_icons/hexagon-3d.svg +++ b/src/_icons/hexagon-3d.svg @@ -4,11 +4,5 @@ unicode: "f4c7" version: "1.98" --- - - - - - - - + diff --git a/src/_icons/hexagon-filled.svg b/src/_icons/hexagon-filled.svg new file mode 100644 index 000000000..cf82c5119 --- /dev/null +++ b/src/_icons/hexagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67d" +--- + + + diff --git a/src/_icons/hexagon-letter-a.svg b/src/_icons/hexagon-letter-a.svg index 42e30cf04..f4d4d54a6 100644 --- a/src/_icons/hexagon-letter-a.svg +++ b/src/_icons/hexagon-letter-a.svg @@ -5,7 +5,5 @@ unicode: "f463" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-b.svg b/src/_icons/hexagon-letter-b.svg index 187e3a19c..5af22d008 100644 --- a/src/_icons/hexagon-letter-b.svg +++ b/src/_icons/hexagon-letter-b.svg @@ -5,6 +5,5 @@ unicode: "f464" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-c.svg b/src/_icons/hexagon-letter-c.svg index c1b251eb3..0cff0e640 100644 --- a/src/_icons/hexagon-letter-c.svg +++ b/src/_icons/hexagon-letter-c.svg @@ -5,6 +5,5 @@ unicode: "f465" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-d.svg b/src/_icons/hexagon-letter-d.svg index 03975636a..902e92334 100644 --- a/src/_icons/hexagon-letter-d.svg +++ b/src/_icons/hexagon-letter-d.svg @@ -5,6 +5,5 @@ unicode: "f466" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-e.svg b/src/_icons/hexagon-letter-e.svg index 5f67884c5..84badf302 100644 --- a/src/_icons/hexagon-letter-e.svg +++ b/src/_icons/hexagon-letter-e.svg @@ -5,7 +5,5 @@ unicode: "f467" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-f.svg b/src/_icons/hexagon-letter-f.svg index f2d443f0a..895269838 100644 --- a/src/_icons/hexagon-letter-f.svg +++ b/src/_icons/hexagon-letter-f.svg @@ -5,7 +5,5 @@ unicode: "f468" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-g.svg b/src/_icons/hexagon-letter-g.svg index cce22aba4..de704854b 100644 --- a/src/_icons/hexagon-letter-g.svg +++ b/src/_icons/hexagon-letter-g.svg @@ -5,6 +5,5 @@ unicode: "f469" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-h.svg b/src/_icons/hexagon-letter-h.svg index 80af27e83..e8bfa45c8 100644 --- a/src/_icons/hexagon-letter-h.svg +++ b/src/_icons/hexagon-letter-h.svg @@ -5,7 +5,5 @@ unicode: "f46a" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-i.svg b/src/_icons/hexagon-letter-i.svg index 1926ab3c4..6d4bb77e9 100644 --- a/src/_icons/hexagon-letter-i.svg +++ b/src/_icons/hexagon-letter-i.svg @@ -5,6 +5,5 @@ unicode: "f46b" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-j.svg b/src/_icons/hexagon-letter-j.svg index 6f70abdd9..7e55bb403 100644 --- a/src/_icons/hexagon-letter-j.svg +++ b/src/_icons/hexagon-letter-j.svg @@ -5,6 +5,5 @@ unicode: "f46c" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-k.svg b/src/_icons/hexagon-letter-k.svg index 0f94ea45a..b85c0e760 100644 --- a/src/_icons/hexagon-letter-k.svg +++ b/src/_icons/hexagon-letter-k.svg @@ -5,8 +5,5 @@ unicode: "f46d" version: "1.95" --- - - - - + diff --git a/src/_icons/hexagon-letter-l.svg b/src/_icons/hexagon-letter-l.svg index 3a8acab75..c1e1ed7f3 100644 --- a/src/_icons/hexagon-letter-l.svg +++ b/src/_icons/hexagon-letter-l.svg @@ -5,6 +5,5 @@ unicode: "f46e" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-m.svg b/src/_icons/hexagon-letter-m.svg index f3f2f3e8a..a0003ba65 100644 --- a/src/_icons/hexagon-letter-m.svg +++ b/src/_icons/hexagon-letter-m.svg @@ -5,6 +5,5 @@ unicode: "f46f" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-n.svg b/src/_icons/hexagon-letter-n.svg index 36eddee0e..2d771a7c1 100644 --- a/src/_icons/hexagon-letter-n.svg +++ b/src/_icons/hexagon-letter-n.svg @@ -5,6 +5,5 @@ unicode: "f470" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-o.svg b/src/_icons/hexagon-letter-o.svg index 7c7109e7e..1d1a8b3b3 100644 --- a/src/_icons/hexagon-letter-o.svg +++ b/src/_icons/hexagon-letter-o.svg @@ -5,6 +5,5 @@ unicode: "f471" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-p.svg b/src/_icons/hexagon-letter-p.svg index d0083c04f..a7afec0a9 100644 --- a/src/_icons/hexagon-letter-p.svg +++ b/src/_icons/hexagon-letter-p.svg @@ -5,6 +5,5 @@ unicode: "f472" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-q.svg b/src/_icons/hexagon-letter-q.svg index 310af86c4..b06b23fec 100644 --- a/src/_icons/hexagon-letter-q.svg +++ b/src/_icons/hexagon-letter-q.svg @@ -5,7 +5,5 @@ unicode: "f473" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-r.svg b/src/_icons/hexagon-letter-r.svg index d12faa409..8e6c67801 100644 --- a/src/_icons/hexagon-letter-r.svg +++ b/src/_icons/hexagon-letter-r.svg @@ -5,6 +5,5 @@ unicode: "f474" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-s.svg b/src/_icons/hexagon-letter-s.svg index 43316155e..37cd484fd 100644 --- a/src/_icons/hexagon-letter-s.svg +++ b/src/_icons/hexagon-letter-s.svg @@ -5,6 +5,5 @@ unicode: "f475" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-t.svg b/src/_icons/hexagon-letter-t.svg index 203c9b737..cd5e38244 100644 --- a/src/_icons/hexagon-letter-t.svg +++ b/src/_icons/hexagon-letter-t.svg @@ -5,7 +5,5 @@ unicode: "f476" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-u.svg b/src/_icons/hexagon-letter-u.svg index 82e768d72..bfcb4d3c6 100644 --- a/src/_icons/hexagon-letter-u.svg +++ b/src/_icons/hexagon-letter-u.svg @@ -5,6 +5,5 @@ unicode: "f477" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-v.svg b/src/_icons/hexagon-letter-v.svg index dbf62e3ff..ecb2c5e5d 100644 --- a/src/_icons/hexagon-letter-v.svg +++ b/src/_icons/hexagon-letter-v.svg @@ -5,6 +5,5 @@ unicode: "f4b3" version: "1.97" --- - - + diff --git a/src/_icons/hexagon-letter-w.svg b/src/_icons/hexagon-letter-w.svg index 87b823330..3ffddaf8c 100644 --- a/src/_icons/hexagon-letter-w.svg +++ b/src/_icons/hexagon-letter-w.svg @@ -5,6 +5,5 @@ unicode: "f478" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-letter-x.svg b/src/_icons/hexagon-letter-x.svg index bdc4e8d6e..3d37fb34a 100644 --- a/src/_icons/hexagon-letter-x.svg +++ b/src/_icons/hexagon-letter-x.svg @@ -5,7 +5,5 @@ unicode: "f479" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-y.svg b/src/_icons/hexagon-letter-y.svg index 4bee4e521..2b5520c2e 100644 --- a/src/_icons/hexagon-letter-y.svg +++ b/src/_icons/hexagon-letter-y.svg @@ -5,7 +5,5 @@ unicode: "f47a" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-letter-z.svg b/src/_icons/hexagon-letter-z.svg index 605f4a40e..f10deef69 100644 --- a/src/_icons/hexagon-letter-z.svg +++ b/src/_icons/hexagon-letter-z.svg @@ -5,6 +5,5 @@ unicode: "f47b" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-0.svg b/src/_icons/hexagon-number-0.svg index c1581486a..bdb66655e 100644 --- a/src/_icons/hexagon-number-0.svg +++ b/src/_icons/hexagon-number-0.svg @@ -5,6 +5,5 @@ unicode: "f459" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-1.svg b/src/_icons/hexagon-number-1.svg index 04d78030b..1c2cb785d 100644 --- a/src/_icons/hexagon-number-1.svg +++ b/src/_icons/hexagon-number-1.svg @@ -5,6 +5,5 @@ unicode: "f45a" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-2.svg b/src/_icons/hexagon-number-2.svg index 35efa92a3..d27858ed3 100644 --- a/src/_icons/hexagon-number-2.svg +++ b/src/_icons/hexagon-number-2.svg @@ -5,6 +5,5 @@ unicode: "f45b" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-3.svg b/src/_icons/hexagon-number-3.svg index db4641637..128e448d0 100644 --- a/src/_icons/hexagon-number-3.svg +++ b/src/_icons/hexagon-number-3.svg @@ -5,6 +5,5 @@ unicode: "f45c" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-4.svg b/src/_icons/hexagon-number-4.svg index c82eb916e..737985af8 100644 --- a/src/_icons/hexagon-number-4.svg +++ b/src/_icons/hexagon-number-4.svg @@ -5,7 +5,5 @@ unicode: "f45d" version: "1.95" --- - - - + diff --git a/src/_icons/hexagon-number-5.svg b/src/_icons/hexagon-number-5.svg index e3c0c0184..7a245afab 100644 --- a/src/_icons/hexagon-number-5.svg +++ b/src/_icons/hexagon-number-5.svg @@ -5,6 +5,5 @@ unicode: "f45e" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-6.svg b/src/_icons/hexagon-number-6.svg index 1030f38df..9fd86eeae 100644 --- a/src/_icons/hexagon-number-6.svg +++ b/src/_icons/hexagon-number-6.svg @@ -5,6 +5,5 @@ unicode: "f45f" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-7.svg b/src/_icons/hexagon-number-7.svg index 8f8d638c9..aed6e5b6d 100644 --- a/src/_icons/hexagon-number-7.svg +++ b/src/_icons/hexagon-number-7.svg @@ -5,6 +5,5 @@ unicode: "f460" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-8.svg b/src/_icons/hexagon-number-8.svg index 9663e20d4..bf22ba482 100644 --- a/src/_icons/hexagon-number-8.svg +++ b/src/_icons/hexagon-number-8.svg @@ -5,6 +5,5 @@ unicode: "f461" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-number-9.svg b/src/_icons/hexagon-number-9.svg index 1ad197d59..43bb42a55 100644 --- a/src/_icons/hexagon-number-9.svg +++ b/src/_icons/hexagon-number-9.svg @@ -5,6 +5,5 @@ unicode: "f462" version: "1.95" --- - - + diff --git a/src/_icons/hexagon-off.svg b/src/_icons/hexagon-off.svg index c5a919d8a..de259a080 100644 --- a/src/_icons/hexagon-off.svg +++ b/src/_icons/hexagon-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee9c" --- - - + diff --git a/src/_icons/hexagons-off.svg b/src/_icons/hexagons-off.svg index 9d3ed3420..ee36f802c 100644 --- a/src/_icons/hexagons-off.svg +++ b/src/_icons/hexagons-off.svg @@ -5,9 +5,5 @@ unicode: "f3f9" version: "1.94" --- - - - - - + diff --git a/src/_icons/hexagons.svg b/src/_icons/hexagons.svg index b08a9ae1e..ddf61e469 100644 --- a/src/_icons/hexagons.svg +++ b/src/_icons/hexagons.svg @@ -5,7 +5,5 @@ version: "1.61" unicode: "f09d" --- - - - + diff --git a/src/_icons/hierarchy-2.svg b/src/_icons/hierarchy-2.svg index 4e28f69db..d48834c0e 100644 --- a/src/_icons/hierarchy-2.svg +++ b/src/_icons/hierarchy-2.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee9d" --- - - - - - + diff --git a/src/_icons/hierarchy-3.svg b/src/_icons/hierarchy-3.svg index b30142069..b8259edda 100644 --- a/src/_icons/hierarchy-3.svg +++ b/src/_icons/hierarchy-3.svg @@ -5,16 +5,5 @@ version: "1.78" unicode: "f289" --- - - - - - - - - - - - - + diff --git a/src/_icons/hierarchy-off.svg b/src/_icons/hierarchy-off.svg index 5ac12baea..7f9ad4efa 100644 --- a/src/_icons/hierarchy-off.svg +++ b/src/_icons/hierarchy-off.svg @@ -5,10 +5,5 @@ unicode: "f3fa" version: "1.94" --- - - - - - - + diff --git a/src/_icons/hierarchy.svg b/src/_icons/hierarchy.svg index 711c10b27..7bdb28728 100644 --- a/src/_icons/hierarchy.svg +++ b/src/_icons/hierarchy.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "ee9e" --- - - - - - + diff --git a/src/_icons/highlight-off.svg b/src/_icons/highlight-off.svg index a503c4cf6..c2211d956 100644 --- a/src/_icons/highlight-off.svg +++ b/src/_icons/highlight-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f144" --- - - - - - + diff --git a/src/_icons/highlight.svg b/src/_icons/highlight.svg index 4a9217377..11840511a 100644 --- a/src/_icons/highlight.svg +++ b/src/_icons/highlight.svg @@ -5,8 +5,5 @@ version: "1.42" unicode: "ef3f" --- - - - - + diff --git a/src/_icons/history-off.svg b/src/_icons/history-off.svg index 16de8bc1c..ab9ee9b0b 100644 --- a/src/_icons/history-off.svg +++ b/src/_icons/history-off.svg @@ -5,6 +5,5 @@ unicode: "f3fb" version: "1.94" --- - - + diff --git a/src/_icons/history-toggle.svg b/src/_icons/history-toggle.svg index 06730e3c2..a1d986a6e 100644 --- a/src/_icons/history-toggle.svg +++ b/src/_icons/history-toggle.svg @@ -4,13 +4,5 @@ version: "1.70" unicode: "f1fc" --- - - - - - - - - - + diff --git a/src/_icons/history.svg b/src/_icons/history.svg index 7f21c14eb..33a7ddd66 100644 --- a/src/_icons/history.svg +++ b/src/_icons/history.svg @@ -5,6 +5,5 @@ version: "1.7" unicode: "ebea" --- - - + diff --git a/src/_icons/home-2.svg b/src/_icons/home-2.svg index f1c8b3e28..0df6a2e80 100644 --- a/src/_icons/home-2.svg +++ b/src/_icons/home-2.svg @@ -5,7 +5,5 @@ version: "1.1" unicode: "eac0" --- - - - + diff --git a/src/_icons/home-bolt.svg b/src/_icons/home-bolt.svg index 860ff713e..afbf284f2 100644 --- a/src/_icons/home-bolt.svg +++ b/src/_icons/home-bolt.svg @@ -5,7 +5,5 @@ unicode: "f336" version: "1.87" --- - - - + diff --git a/src/_icons/home-cancel.svg b/src/_icons/home-cancel.svg index d4bcc42e3..ab6648564 100644 --- a/src/_icons/home-cancel.svg +++ b/src/_icons/home-cancel.svg @@ -5,8 +5,5 @@ unicode: "f350" version: "1.88" --- - - - - + diff --git a/src/_icons/home-check.svg b/src/_icons/home-check.svg index a896a7a35..8763de3d3 100644 --- a/src/_icons/home-check.svg +++ b/src/_icons/home-check.svg @@ -5,7 +5,5 @@ unicode: "f337" version: "1.87" --- - - - + diff --git a/src/_icons/home-cog.svg b/src/_icons/home-cog.svg index 4efa70d5e..95c02edbb 100644 --- a/src/_icons/home-cog.svg +++ b/src/_icons/home-cog.svg @@ -5,13 +5,5 @@ unicode: "f338" version: "1.87" --- - - - - - - - - - + diff --git a/src/_icons/home-dollar.svg b/src/_icons/home-dollar.svg index 82a7e60ab..e820ecbcb 100644 --- a/src/_icons/home-dollar.svg +++ b/src/_icons/home-dollar.svg @@ -5,8 +5,5 @@ unicode: "f339" version: "1.87" --- - - - - + diff --git a/src/_icons/home-dot.svg b/src/_icons/home-dot.svg index ef6739eb0..ee8dd8467 100644 --- a/src/_icons/home-dot.svg +++ b/src/_icons/home-dot.svg @@ -5,7 +5,5 @@ unicode: "f33a" version: "1.87" --- - - - + diff --git a/src/_icons/home-down.svg b/src/_icons/home-down.svg index 71a9d0e21..c5ae5728a 100644 --- a/src/_icons/home-down.svg +++ b/src/_icons/home-down.svg @@ -5,8 +5,5 @@ unicode: "f33b" version: "1.87" --- - - - - + diff --git a/src/_icons/home-eco.svg b/src/_icons/home-eco.svg index 83d0d318f..aa3fa4265 100644 --- a/src/_icons/home-eco.svg +++ b/src/_icons/home-eco.svg @@ -5,8 +5,5 @@ unicode: "f351" version: "1.88" --- - - - - + diff --git a/src/_icons/home-edit.svg b/src/_icons/home-edit.svg index 89c17e003..bcbc7713d 100644 --- a/src/_icons/home-edit.svg +++ b/src/_icons/home-edit.svg @@ -5,7 +5,5 @@ unicode: "f352" version: "1.88" --- - - - + diff --git a/src/_icons/home-exclamation.svg b/src/_icons/home-exclamation.svg index aaea5b4cd..b3231ff90 100644 --- a/src/_icons/home-exclamation.svg +++ b/src/_icons/home-exclamation.svg @@ -5,8 +5,5 @@ unicode: "f33c" version: "1.87" --- - - - - + diff --git a/src/_icons/home-hand.svg b/src/_icons/home-hand.svg index b7048ddce..8efb9d2ca 100644 --- a/src/_icons/home-hand.svg +++ b/src/_icons/home-hand.svg @@ -4,7 +4,5 @@ unicode: "f504" version: "1.101" --- - - - + diff --git a/src/_icons/home-heart.svg b/src/_icons/home-heart.svg index 54751ce63..cf542a57a 100644 --- a/src/_icons/home-heart.svg +++ b/src/_icons/home-heart.svg @@ -5,7 +5,5 @@ unicode: "f353" version: "1.88" --- - - - + diff --git a/src/_icons/home-infinity.svg b/src/_icons/home-infinity.svg index be3ed3216..4b6baaec9 100644 --- a/src/_icons/home-infinity.svg +++ b/src/_icons/home-infinity.svg @@ -4,8 +4,5 @@ unicode: "f505" version: "1.101" --- - - - - + diff --git a/src/_icons/home-link.svg b/src/_icons/home-link.svg index e0e48e9c2..9d7e34fdb 100644 --- a/src/_icons/home-link.svg +++ b/src/_icons/home-link.svg @@ -5,10 +5,5 @@ unicode: "f354" version: "1.88" --- - - - - - - + diff --git a/src/_icons/home-minus.svg b/src/_icons/home-minus.svg index 7a520e3cc..48cd7b6da 100644 --- a/src/_icons/home-minus.svg +++ b/src/_icons/home-minus.svg @@ -5,7 +5,5 @@ unicode: "f33d" version: "1.87" --- - - - + diff --git a/src/_icons/home-move.svg b/src/_icons/home-move.svg index 65ca3516c..e012eb64c 100644 --- a/src/_icons/home-move.svg +++ b/src/_icons/home-move.svg @@ -5,8 +5,5 @@ unicode: "f33e" version: "1.87" --- - - - - + diff --git a/src/_icons/home-off.svg b/src/_icons/home-off.svg index f188ab44f..d4d915807 100644 --- a/src/_icons/home-off.svg +++ b/src/_icons/home-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f145" --- - - - - + diff --git a/src/_icons/home-plus.svg b/src/_icons/home-plus.svg index c42a10336..4de9b6778 100644 --- a/src/_icons/home-plus.svg +++ b/src/_icons/home-plus.svg @@ -5,8 +5,5 @@ unicode: "f33f" version: "1.87" --- - - - - + diff --git a/src/_icons/home-question.svg b/src/_icons/home-question.svg index 35175bd3d..1066205e8 100644 --- a/src/_icons/home-question.svg +++ b/src/_icons/home-question.svg @@ -5,8 +5,5 @@ unicode: "f340" version: "1.87" --- - - - - + diff --git a/src/_icons/home-ribbon.svg b/src/_icons/home-ribbon.svg index 770454838..26a3afc09 100644 --- a/src/_icons/home-ribbon.svg +++ b/src/_icons/home-ribbon.svg @@ -5,7 +5,5 @@ unicode: "f355" version: "1.88" --- - - - + diff --git a/src/_icons/home-search.svg b/src/_icons/home-search.svg index fe51b4c02..c6ff2e0a9 100644 --- a/src/_icons/home-search.svg +++ b/src/_icons/home-search.svg @@ -5,8 +5,5 @@ unicode: "f341" version: "1.87" --- - - - - + diff --git a/src/_icons/home-share.svg b/src/_icons/home-share.svg index 06a6d5b1f..00b85b8da 100644 --- a/src/_icons/home-share.svg +++ b/src/_icons/home-share.svg @@ -5,8 +5,5 @@ unicode: "f342" version: "1.87" --- - - - - + diff --git a/src/_icons/home-shield.svg b/src/_icons/home-shield.svg index 04a573ca8..1cdbd7cb9 100644 --- a/src/_icons/home-shield.svg +++ b/src/_icons/home-shield.svg @@ -5,7 +5,5 @@ unicode: "f343" version: "1.87" --- - - - + diff --git a/src/_icons/home-signal.svg b/src/_icons/home-signal.svg index 2ccecd187..8f4eff581 100644 --- a/src/_icons/home-signal.svg +++ b/src/_icons/home-signal.svg @@ -5,9 +5,5 @@ unicode: "f356" version: "1.88" --- - - - - - + diff --git a/src/_icons/home-star.svg b/src/_icons/home-star.svg index d13049832..43ffd4146 100644 --- a/src/_icons/home-star.svg +++ b/src/_icons/home-star.svg @@ -5,7 +5,5 @@ unicode: "f344" version: "1.87" --- - - - + diff --git a/src/_icons/home-stats.svg b/src/_icons/home-stats.svg index 45024db24..2ec4e1822 100644 --- a/src/_icons/home-stats.svg +++ b/src/_icons/home-stats.svg @@ -5,8 +5,5 @@ unicode: "f345" version: "1.87" --- - - - - + diff --git a/src/_icons/home-up.svg b/src/_icons/home-up.svg index d5d50b91c..babea143e 100644 --- a/src/_icons/home-up.svg +++ b/src/_icons/home-up.svg @@ -5,8 +5,5 @@ unicode: "f346" version: "1.87" --- - - - - + diff --git a/src/_icons/home-x.svg b/src/_icons/home-x.svg index a047a2298..401b8946a 100644 --- a/src/_icons/home-x.svg +++ b/src/_icons/home-x.svg @@ -5,8 +5,5 @@ unicode: "f347" version: "1.87" --- - - - - + diff --git a/src/_icons/home.svg b/src/_icons/home.svg index 0cc676c69..7801432e5 100644 --- a/src/_icons/home.svg +++ b/src/_icons/home.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eac1" --- - - - + diff --git a/src/_icons/horse-toy.svg b/src/_icons/horse-toy.svg index acf4e9b21..72f5174cf 100644 --- a/src/_icons/horse-toy.svg +++ b/src/_icons/horse-toy.svg @@ -4,8 +4,5 @@ version: "1.78" unicode: "f28a" --- - - - - + diff --git a/src/_icons/hourglass-empty.svg b/src/_icons/hourglass-empty.svg index 5d274e620..98d256836 100644 --- a/src/_icons/hourglass-empty.svg +++ b/src/_icons/hourglass-empty.svg @@ -5,6 +5,5 @@ category: System unicode: "f146" --- - - + diff --git a/src/_icons/hourglass-high.svg b/src/_icons/hourglass-high.svg index ff7f6b3c6..bb2c8b386 100644 --- a/src/_icons/hourglass-high.svg +++ b/src/_icons/hourglass-high.svg @@ -5,7 +5,5 @@ category: System unicode: "f092" --- - - - + diff --git a/src/_icons/hourglass-low.svg b/src/_icons/hourglass-low.svg index 508f504a4..53f202828 100644 --- a/src/_icons/hourglass-low.svg +++ b/src/_icons/hourglass-low.svg @@ -5,7 +5,5 @@ category: System unicode: "f093" --- - - - + diff --git a/src/_icons/hourglass-off.svg b/src/_icons/hourglass-off.svg index 4deca4d27..b76e5e182 100644 --- a/src/_icons/hourglass-off.svg +++ b/src/_icons/hourglass-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f147" --- - - - + diff --git a/src/_icons/hourglass.svg b/src/_icons/hourglass.svg index a52c5c54e..c5f442430 100644 --- a/src/_icons/hourglass.svg +++ b/src/_icons/hourglass.svg @@ -5,8 +5,5 @@ version: "1.47" unicode: "ef93" --- - - - - + diff --git a/src/_icons/ice-cream-2.svg b/src/_icons/ice-cream-2.svg index d07021f92..6d5b82d97 100644 --- a/src/_icons/ice-cream-2.svg +++ b/src/_icons/ice-cream-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee9f" --- - - + diff --git a/src/_icons/ice-cream-off.svg b/src/_icons/ice-cream-off.svg index c3afae7f5..051d36967 100644 --- a/src/_icons/ice-cream-off.svg +++ b/src/_icons/ice-cream-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f148" --- - - - - - + diff --git a/src/_icons/ice-cream.svg b/src/_icons/ice-cream.svg index dd6ac7b5a..4065d0e12 100644 --- a/src/_icons/ice-cream.svg +++ b/src/_icons/ice-cream.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eac2" --- - - - - + diff --git a/src/_icons/ice-skating.svg b/src/_icons/ice-skating.svg index 25c7ea3dd..6312b1ac7 100644 --- a/src/_icons/ice-skating.svg +++ b/src/_icons/ice-skating.svg @@ -5,8 +5,5 @@ version: "1.50" unicode: "efcb" --- - - - - + diff --git a/src/_icons/icons-off.svg b/src/_icons/icons-off.svg index be755dc0c..c0d938d2e 100644 --- a/src/_icons/icons-off.svg +++ b/src/_icons/icons-off.svg @@ -5,10 +5,5 @@ unicode: "f3fc" version: "1.94" --- - - - - - - + diff --git a/src/_icons/icons.svg b/src/_icons/icons.svg index df2059321..952df54cb 100644 --- a/src/_icons/icons.svg +++ b/src/_icons/icons.svg @@ -5,9 +5,5 @@ version: "1.68" unicode: "f1d4" --- - - - - - + diff --git a/src/_icons/id-badge-2.svg b/src/_icons/id-badge-2.svg index 36be8e955..9a4e9e3b5 100644 --- a/src/_icons/id-badge-2.svg +++ b/src/_icons/id-badge-2.svg @@ -4,9 +4,5 @@ version: "1.59" unicode: "f076" --- - - - - - + diff --git a/src/_icons/id-badge-off.svg b/src/_icons/id-badge-off.svg index 3c748c4c4..78e5c9192 100644 --- a/src/_icons/id-badge-off.svg +++ b/src/_icons/id-badge-off.svg @@ -4,9 +4,5 @@ unicode: "f3fd" version: "1.94" --- - - - - - + diff --git a/src/_icons/id-badge.svg b/src/_icons/id-badge.svg index 360b6cbfc..2bf77d8e1 100644 --- a/src/_icons/id-badge.svg +++ b/src/_icons/id-badge.svg @@ -4,8 +4,5 @@ version: "1.52" unicode: "eff7" --- - - - - + diff --git a/src/_icons/id-off.svg b/src/_icons/id-off.svg index c6cb24c1a..405f581df 100644 --- a/src/_icons/id-off.svg +++ b/src/_icons/id-off.svg @@ -4,10 +4,5 @@ version: "1.66" unicode: "f149" --- - - - - - - + diff --git a/src/_icons/id.svg b/src/_icons/id.svg index 8b8bdf898..5d2e254d4 100644 --- a/src/_icons/id.svg +++ b/src/_icons/id.svg @@ -4,9 +4,5 @@ version: "1.1" unicode: "eac3" --- - - - - - + diff --git a/src/_icons/inbox-off.svg b/src/_icons/inbox-off.svg index 1684031a7..8bcf59369 100644 --- a/src/_icons/inbox-off.svg +++ b/src/_icons/inbox-off.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f14a" --- - - - + diff --git a/src/_icons/inbox.svg b/src/_icons/inbox.svg index 3e436f889..4e1bc3e4e 100644 --- a/src/_icons/inbox.svg +++ b/src/_icons/inbox.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eac4" --- - - + diff --git a/src/_icons/indent-decrease.svg b/src/_icons/indent-decrease.svg index 0f35ea9d4..1efd79ebf 100644 --- a/src/_icons/indent-decrease.svg +++ b/src/_icons/indent-decrease.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb91" --- - - - - + diff --git a/src/_icons/indent-increase.svg b/src/_icons/indent-increase.svg index 2057bbd63..46ab06699 100644 --- a/src/_icons/indent-increase.svg +++ b/src/_icons/indent-increase.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb92" --- - - - - + diff --git a/src/_icons/infinity-off.svg b/src/_icons/infinity-off.svg index bd88211e2..06435e2ff 100644 --- a/src/_icons/infinity-off.svg +++ b/src/_icons/infinity-off.svg @@ -5,6 +5,5 @@ unicode: "f3fe" version: "1.94" --- - - + diff --git a/src/_icons/info-circle.svg b/src/_icons/info-circle.svg index c2a3d5c7d..d629e61bc 100644 --- a/src/_icons/info-circle.svg +++ b/src/_icons/info-circle.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eac5" --- - - - + diff --git a/src/_icons/info-square-rounded.svg b/src/_icons/info-square-rounded.svg index 90130d0bd..9a2be4588 100644 --- a/src/_icons/info-square-rounded.svg +++ b/src/_icons/info-square-rounded.svg @@ -3,7 +3,5 @@ unicode: "f635" version: "1.117" --- - - - + diff --git a/src/_icons/info-square.svg b/src/_icons/info-square.svg index 8bc3b397a..1d14c0574 100644 --- a/src/_icons/info-square.svg +++ b/src/_icons/info-square.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eac6" --- - - - + diff --git a/src/_icons/inner-shadow-bottom-left.svg b/src/_icons/inner-shadow-bottom-left.svg index 2d7c76234..5e576a05a 100644 --- a/src/_icons/inner-shadow-bottom-left.svg +++ b/src/_icons/inner-shadow-bottom-left.svg @@ -5,6 +5,5 @@ unicode: "f51e" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-bottom-right.svg b/src/_icons/inner-shadow-bottom-right.svg index a34c91e7b..36b6f1c82 100644 --- a/src/_icons/inner-shadow-bottom-right.svg +++ b/src/_icons/inner-shadow-bottom-right.svg @@ -5,6 +5,5 @@ unicode: "f51f" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-bottom.svg b/src/_icons/inner-shadow-bottom.svg index 19b289487..e95e3e491 100644 --- a/src/_icons/inner-shadow-bottom.svg +++ b/src/_icons/inner-shadow-bottom.svg @@ -5,6 +5,5 @@ unicode: "f520" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-left.svg b/src/_icons/inner-shadow-left.svg index fc6c1f355..07a05530f 100644 --- a/src/_icons/inner-shadow-left.svg +++ b/src/_icons/inner-shadow-left.svg @@ -5,6 +5,5 @@ unicode: "f521" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-right.svg b/src/_icons/inner-shadow-right.svg index 808fe6e05..9114029bb 100644 --- a/src/_icons/inner-shadow-right.svg +++ b/src/_icons/inner-shadow-right.svg @@ -5,6 +5,5 @@ unicode: "f522" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-top-left.svg b/src/_icons/inner-shadow-top-left.svg index 8c923adcc..af1596836 100644 --- a/src/_icons/inner-shadow-top-left.svg +++ b/src/_icons/inner-shadow-top-left.svg @@ -5,6 +5,5 @@ unicode: "f523" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-top-right.svg b/src/_icons/inner-shadow-top-right.svg index 5fd94e759..630ea45d1 100644 --- a/src/_icons/inner-shadow-top-right.svg +++ b/src/_icons/inner-shadow-top-right.svg @@ -5,6 +5,5 @@ unicode: "f524" version: "1.103" --- - - + diff --git a/src/_icons/inner-shadow-top.svg b/src/_icons/inner-shadow-top.svg index 5c9e5b139..0212f4ddc 100644 --- a/src/_icons/inner-shadow-top.svg +++ b/src/_icons/inner-shadow-top.svg @@ -5,6 +5,5 @@ unicode: "f525" version: "1.103" --- - - + diff --git a/src/_icons/input-search.svg b/src/_icons/input-search.svg index 9c1792aae..1df90cb3a 100644 --- a/src/_icons/input-search.svg +++ b/src/_icons/input-search.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f2a2" --- - - - + diff --git a/src/_icons/ironing-1.svg b/src/_icons/ironing-1.svg index 3a9cc5436..99ab70e19 100644 --- a/src/_icons/ironing-1.svg +++ b/src/_icons/ironing-1.svg @@ -5,6 +5,5 @@ unicode: "f2f4" version: "1.84" --- - - + diff --git a/src/_icons/ironing-2.svg b/src/_icons/ironing-2.svg index b1c69388e..15eeb0a42 100644 --- a/src/_icons/ironing-2.svg +++ b/src/_icons/ironing-2.svg @@ -5,7 +5,5 @@ unicode: "f2f5" version: "1.84" --- - - - + diff --git a/src/_icons/ironing-3.svg b/src/_icons/ironing-3.svg index 09c39d618..e7496e432 100644 --- a/src/_icons/ironing-3.svg +++ b/src/_icons/ironing-3.svg @@ -5,8 +5,5 @@ unicode: "f2f6" version: "1.84" --- - - - - + diff --git a/src/_icons/ironing-off.svg b/src/_icons/ironing-off.svg index c33302f58..5b58f2529 100644 --- a/src/_icons/ironing-off.svg +++ b/src/_icons/ironing-off.svg @@ -5,6 +5,5 @@ unicode: "f2f7" version: "1.84" --- - - + diff --git a/src/_icons/ironing-steam-off.svg b/src/_icons/ironing-steam-off.svg index 792efeef6..24fa90d6a 100644 --- a/src/_icons/ironing-steam-off.svg +++ b/src/_icons/ironing-steam-off.svg @@ -5,11 +5,5 @@ unicode: "f2f8" version: "1.84" --- - - - - - - - + diff --git a/src/_icons/ironing-steam.svg b/src/_icons/ironing-steam.svg index 386178592..42e66d082 100644 --- a/src/_icons/ironing-steam.svg +++ b/src/_icons/ironing-steam.svg @@ -5,8 +5,5 @@ unicode: "f2f9" version: "1.84" --- - - - - + diff --git a/src/_icons/italic.svg b/src/_icons/italic.svg index 97500c900..8bafde2a5 100644 --- a/src/_icons/italic.svg +++ b/src/_icons/italic.svg @@ -5,7 +5,5 @@ version: "1.3" unicode: "eb93" --- - - - + diff --git a/src/_icons/jacket.svg b/src/_icons/jacket.svg index 27774e9e7..0fe3c0063 100644 --- a/src/_icons/jacket.svg +++ b/src/_icons/jacket.svg @@ -3,9 +3,5 @@ unicode: "f661" version: "1.119" --- - - - - - + diff --git a/src/_icons/jetpack.svg b/src/_icons/jetpack.svg index 5daa292e0..fc927735a 100644 --- a/src/_icons/jetpack.svg +++ b/src/_icons/jetpack.svg @@ -4,10 +4,5 @@ unicode: "f581" version: "1.108" --- - - - - - - + diff --git a/src/_icons/jewish-star-filled.svg b/src/_icons/jewish-star-filled.svg new file mode 100644 index 000000000..b063d3c75 --- /dev/null +++ b/src/_icons/jewish-star-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67e" +--- + + + diff --git a/src/_icons/jewish-star.svg b/src/_icons/jewish-star.svg index dbe08c54f..09204c8d4 100644 --- a/src/_icons/jewish-star.svg +++ b/src/_icons/jewish-star.svg @@ -1,4 +1,5 @@ --- +category: Symbols tags: [judaism, israel, religion, bright] unicode: "f3ff" version: "1.94" diff --git a/src/_icons/jpg.svg b/src/_icons/jpg.svg index 1d0bc3b48..2bea1f439 100644 --- a/src/_icons/jpg.svg +++ b/src/_icons/jpg.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3ac" --- - - - + diff --git a/src/_icons/jump-rope.svg b/src/_icons/jump-rope.svg index 85fb29ddb..63567db70 100644 --- a/src/_icons/jump-rope.svg +++ b/src/_icons/jump-rope.svg @@ -5,7 +5,5 @@ version: "1.34" unicode: "ed8f" --- - - - + diff --git a/src/_icons/karate.svg b/src/_icons/karate.svg index 58565b8f9..0cee94dff 100644 --- a/src/_icons/karate.svg +++ b/src/_icons/karate.svg @@ -5,8 +5,5 @@ version: "1.27" unicode: "ed32" --- - - - - + diff --git a/src/_icons/kayak.svg b/src/_icons/kayak.svg index 4f1673156..f9cd2e438 100644 --- a/src/_icons/kayak.svg +++ b/src/_icons/kayak.svg @@ -5,10 +5,5 @@ version: "1.68" unicode: "f1d6" --- - - - - - - + diff --git a/src/_icons/kering.svg b/src/_icons/kering.svg index 4538e9f08..68f8b99e3 100644 --- a/src/_icons/kering.svg +++ b/src/_icons/kering.svg @@ -5,7 +5,5 @@ version: "1.49" unicode: "efb8" --- - - - + diff --git a/src/_icons/key-off.svg b/src/_icons/key-off.svg index 81aa1cad2..08939cf4f 100644 --- a/src/_icons/key-off.svg +++ b/src/_icons/key-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f14b" --- - - - - + diff --git a/src/_icons/key.svg b/src/_icons/key.svg index ef346ed07..152893678 100644 --- a/src/_icons/key.svg +++ b/src/_icons/key.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eac7" --- - - + diff --git a/src/_icons/keyboard-hide.svg b/src/_icons/keyboard-hide.svg index 37f3d02ea..b7c5a7a2d 100644 --- a/src/_icons/keyboard-hide.svg +++ b/src/_icons/keyboard-hide.svg @@ -5,13 +5,5 @@ version: "1.14" unicode: "ec7e" --- - - - - - - - - - + diff --git a/src/_icons/keyboard-off.svg b/src/_icons/keyboard-off.svg index a60496558..0a9a3d1ee 100644 --- a/src/_icons/keyboard-off.svg +++ b/src/_icons/keyboard-off.svg @@ -5,13 +5,5 @@ version: "1.39" unicode: "eea0" --- - - - - - - - - - + diff --git a/src/_icons/keyboard-show.svg b/src/_icons/keyboard-show.svg index 9c6d5da6c..6fcb7af2d 100644 --- a/src/_icons/keyboard-show.svg +++ b/src/_icons/keyboard-show.svg @@ -5,13 +5,5 @@ version: "1.14" unicode: "ec7f" --- - - - - - - - - - + diff --git a/src/_icons/keyboard.svg b/src/_icons/keyboard.svg index b2045dd43..5bc22bde7 100644 --- a/src/_icons/keyboard.svg +++ b/src/_icons/keyboard.svg @@ -5,12 +5,5 @@ version: "1.6" unicode: "ebd6" --- - - - - - - - - + diff --git a/src/_icons/keyframe-align-center.svg b/src/_icons/keyframe-align-center.svg index 3bc4d1a69..7ed9dc4c9 100644 --- a/src/_icons/keyframe-align-center.svg +++ b/src/_icons/keyframe-align-center.svg @@ -4,9 +4,5 @@ unicode: "f582" version: "1.108" --- - - - - - + diff --git a/src/_icons/keyframe-align-horizontal.svg b/src/_icons/keyframe-align-horizontal.svg index 4fd13a532..9e7aa7ab6 100644 --- a/src/_icons/keyframe-align-horizontal.svg +++ b/src/_icons/keyframe-align-horizontal.svg @@ -4,7 +4,5 @@ unicode: "f583" version: "1.108" --- - - - + diff --git a/src/_icons/keyframe-align-vertical.svg b/src/_icons/keyframe-align-vertical.svg index c2bd68e72..9eb238d0a 100644 --- a/src/_icons/keyframe-align-vertical.svg +++ b/src/_icons/keyframe-align-vertical.svg @@ -4,7 +4,5 @@ unicode: "f584" version: "1.108" --- - - - + diff --git a/src/_icons/keyframes.svg b/src/_icons/keyframes.svg index 613b09acb..2976695ee 100644 --- a/src/_icons/keyframes.svg +++ b/src/_icons/keyframes.svg @@ -4,7 +4,5 @@ unicode: "f585" version: "1.108" --- - - - + diff --git a/src/_icons/ladder-off.svg b/src/_icons/ladder-off.svg index 927ba75d1..f68125941 100644 --- a/src/_icons/ladder-off.svg +++ b/src/_icons/ladder-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f14c" --- - - - - - - - + diff --git a/src/_icons/ladder.svg b/src/_icons/ladder.svg index bb102d312..8a053e070 100644 --- a/src/_icons/ladder.svg +++ b/src/_icons/ladder.svg @@ -4,10 +4,5 @@ version: "1.51" unicode: "efe2" --- - - - - - - + diff --git a/src/_icons/lambda.svg b/src/_icons/lambda.svg index e7df4b3cd..3fe478d6e 100644 --- a/src/_icons/lambda.svg +++ b/src/_icons/lambda.svg @@ -4,6 +4,5 @@ unicode: "f541" version: "1.104" --- - - + diff --git a/src/_icons/lamp-2.svg b/src/_icons/lamp-2.svg index 7104cb82f..4419c92f4 100644 --- a/src/_icons/lamp-2.svg +++ b/src/_icons/lamp-2.svg @@ -4,9 +4,5 @@ version: "1.61" unicode: "f09e" --- - - - - - + diff --git a/src/_icons/lamp-off.svg b/src/_icons/lamp-off.svg index f5ce8ba8b..8e7cba68d 100644 --- a/src/_icons/lamp-off.svg +++ b/src/_icons/lamp-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f14d" --- - - - - + diff --git a/src/_icons/lamp.svg b/src/_icons/lamp.svg index 6baf3c4cd..30b956042 100644 --- a/src/_icons/lamp.svg +++ b/src/_icons/lamp.svg @@ -4,7 +4,5 @@ version: "1.48" unicode: "efab" --- - - - + diff --git a/src/_icons/language-hiragana.svg b/src/_icons/language-hiragana.svg index ad89732c9..cfe373e93 100644 --- a/src/_icons/language-hiragana.svg +++ b/src/_icons/language-hiragana.svg @@ -5,9 +5,5 @@ version: "1.45" unicode: "ef77" --- - - - - - + diff --git a/src/_icons/language-katakana.svg b/src/_icons/language-katakana.svg index 214d7b23b..bff589793 100644 --- a/src/_icons/language-katakana.svg +++ b/src/_icons/language-katakana.svg @@ -5,8 +5,5 @@ version: "1.45" unicode: "ef78" --- - - - - + diff --git a/src/_icons/language-off.svg b/src/_icons/language-off.svg index 0bff688b8..ca08be04a 100644 --- a/src/_icons/language-off.svg +++ b/src/_icons/language-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f14e" --- - - - - - - + diff --git a/src/_icons/language.svg b/src/_icons/language.svg index 254689e47..387e8778f 100644 --- a/src/_icons/language.svg +++ b/src/_icons/language.svg @@ -5,9 +5,5 @@ version: "1.5" unicode: "ebbe" --- - - - - - + diff --git a/src/_icons/lasso-off.svg b/src/_icons/lasso-off.svg index cdc5c2542..37f1355f8 100644 --- a/src/_icons/lasso-off.svg +++ b/src/_icons/lasso-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f14f" --- - - - - + diff --git a/src/_icons/lasso-polygon.svg b/src/_icons/lasso-polygon.svg index e590f4505..c73d9bb4a 100644 --- a/src/_icons/lasso-polygon.svg +++ b/src/_icons/lasso-polygon.svg @@ -5,7 +5,5 @@ unicode: "f388" version: "1.91" --- - - - + diff --git a/src/_icons/lasso.svg b/src/_icons/lasso.svg index 9cd96fd78..a6c78e050 100644 --- a/src/_icons/lasso.svg +++ b/src/_icons/lasso.svg @@ -5,7 +5,5 @@ version: "1.48" unicode: "efac" --- - - - + diff --git a/src/_icons/layers-difference.svg b/src/_icons/layers-difference.svg index eb9ef6707..6d0ce5b27 100644 --- a/src/_icons/layers-difference.svg +++ b/src/_icons/layers-difference.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eac8" --- - - - - - + diff --git a/src/_icons/layers-intersect-2.svg b/src/_icons/layers-intersect-2.svg index da2780232..c316c46c1 100644 --- a/src/_icons/layers-intersect-2.svg +++ b/src/_icons/layers-intersect-2.svg @@ -5,7 +5,5 @@ version: "1.52" unicode: "eff8" --- - - - + diff --git a/src/_icons/layers-intersect.svg b/src/_icons/layers-intersect.svg index 0e644d3f1..531add644 100644 --- a/src/_icons/layers-intersect.svg +++ b/src/_icons/layers-intersect.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eac9" --- - - + diff --git a/src/_icons/layers-linked.svg b/src/_icons/layers-linked.svg index f70d095ff..7eef975b0 100644 --- a/src/_icons/layers-linked.svg +++ b/src/_icons/layers-linked.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eea1" --- - - + diff --git a/src/_icons/layers-off.svg b/src/_icons/layers-off.svg index a8c8e4f27..5b2d81f7c 100644 --- a/src/_icons/layers-off.svg +++ b/src/_icons/layers-off.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f150" --- - - - + diff --git a/src/_icons/layers-subtract.svg b/src/_icons/layers-subtract.svg index c15e9179b..afbbe8e12 100644 --- a/src/_icons/layers-subtract.svg +++ b/src/_icons/layers-subtract.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaca" --- - - + diff --git a/src/_icons/layout-2.svg b/src/_icons/layout-2.svg index 13b9df6c9..bbe5fa47e 100644 --- a/src/_icons/layout-2.svg +++ b/src/_icons/layout-2.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eacc" --- - - - - + diff --git a/src/_icons/layout-align-bottom.svg b/src/_icons/layout-align-bottom.svg index 5bb9e9a26..b73537fb3 100644 --- a/src/_icons/layout-align-bottom.svg +++ b/src/_icons/layout-align-bottom.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eacd" --- - - + diff --git a/src/_icons/layout-align-center.svg b/src/_icons/layout-align-center.svg index 7c4c2b20c..ae4cc13ca 100644 --- a/src/_icons/layout-align-center.svg +++ b/src/_icons/layout-align-center.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eace" --- - - - + diff --git a/src/_icons/layout-align-left.svg b/src/_icons/layout-align-left.svg index aa4e1ad01..e17fc2fa9 100644 --- a/src/_icons/layout-align-left.svg +++ b/src/_icons/layout-align-left.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eacf" --- - - + diff --git a/src/_icons/layout-align-middle.svg b/src/_icons/layout-align-middle.svg index fefba7963..334f780a9 100644 --- a/src/_icons/layout-align-middle.svg +++ b/src/_icons/layout-align-middle.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ead0" --- - - - + diff --git a/src/_icons/layout-align-right.svg b/src/_icons/layout-align-right.svg index b98c3bcb6..aacd1a17e 100644 --- a/src/_icons/layout-align-right.svg +++ b/src/_icons/layout-align-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead1" --- - - + diff --git a/src/_icons/layout-align-top.svg b/src/_icons/layout-align-top.svg index 643dc9d37..1be5bc467 100644 --- a/src/_icons/layout-align-top.svg +++ b/src/_icons/layout-align-top.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead2" --- - - + diff --git a/src/_icons/layout-board-split.svg b/src/_icons/layout-board-split.svg index 1f29df66e..b8d2c38d3 100644 --- a/src/_icons/layout-board-split.svg +++ b/src/_icons/layout-board-split.svg @@ -5,9 +5,5 @@ version: "1.47" unicode: "ef94" --- - - - - - + diff --git a/src/_icons/layout-board.svg b/src/_icons/layout-board.svg index dd6ce722c..c3d1f1391 100644 --- a/src/_icons/layout-board.svg +++ b/src/_icons/layout-board.svg @@ -5,8 +5,5 @@ version: "1.47" unicode: "ef95" --- - - - - + diff --git a/src/_icons/layout-bottombar-collapse.svg b/src/_icons/layout-bottombar-collapse.svg index dbbbf246f..3c7532af3 100644 --- a/src/_icons/layout-bottombar-collapse.svg +++ b/src/_icons/layout-bottombar-collapse.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f28b" --- - - - + diff --git a/src/_icons/layout-bottombar-expand.svg b/src/_icons/layout-bottombar-expand.svg index 0f8f07004..8f0117986 100644 --- a/src/_icons/layout-bottombar-expand.svg +++ b/src/_icons/layout-bottombar-expand.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f28c" --- - - - + diff --git a/src/_icons/layout-bottombar.svg b/src/_icons/layout-bottombar.svg index b917dcfb4..b59bee48b 100644 --- a/src/_icons/layout-bottombar.svg +++ b/src/_icons/layout-bottombar.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "ead3" --- - - + diff --git a/src/_icons/layout-cards.svg b/src/_icons/layout-cards.svg index 19d380a09..e8a4cd8f0 100644 --- a/src/_icons/layout-cards.svg +++ b/src/_icons/layout-cards.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec13" --- - - + diff --git a/src/_icons/layout-collage.svg b/src/_icons/layout-collage.svg index 2ccf93325..481e308a6 100644 --- a/src/_icons/layout-collage.svg +++ b/src/_icons/layout-collage.svg @@ -5,7 +5,5 @@ unicode: "f389" version: "1.91" --- - - - + diff --git a/src/_icons/layout-columns.svg b/src/_icons/layout-columns.svg index e7b285a95..bbf2f65fa 100644 --- a/src/_icons/layout-columns.svg +++ b/src/_icons/layout-columns.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead4" --- - - + diff --git a/src/_icons/layout-dashboard.svg b/src/_icons/layout-dashboard.svg index 8ab54d402..8bb3dc317 100644 --- a/src/_icons/layout-dashboard.svg +++ b/src/_icons/layout-dashboard.svg @@ -5,8 +5,5 @@ version: "1.55" unicode: "f02c" --- - - - - + diff --git a/src/_icons/layout-distribute-horizontal.svg b/src/_icons/layout-distribute-horizontal.svg index 1959851b9..c4424b98e 100644 --- a/src/_icons/layout-distribute-horizontal.svg +++ b/src/_icons/layout-distribute-horizontal.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ead5" --- - - - + diff --git a/src/_icons/layout-distribute-vertical.svg b/src/_icons/layout-distribute-vertical.svg index ccd2a4122..357ff02c7 100644 --- a/src/_icons/layout-distribute-vertical.svg +++ b/src/_icons/layout-distribute-vertical.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "ead6" --- - - - + diff --git a/src/_icons/layout-grid-add.svg b/src/_icons/layout-grid-add.svg index 300b548d5..772bd4876 100644 --- a/src/_icons/layout-grid-add.svg +++ b/src/_icons/layout-grid-add.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "edb9" --- - - - - + diff --git a/src/_icons/layout-grid.svg b/src/_icons/layout-grid.svg index 8f42170e0..48bd53d8b 100644 --- a/src/_icons/layout-grid.svg +++ b/src/_icons/layout-grid.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "edba" --- - - - - + diff --git a/src/_icons/layout-kanban.svg b/src/_icons/layout-kanban.svg index e00d9b439..fb79ed201 100644 --- a/src/_icons/layout-kanban.svg +++ b/src/_icons/layout-kanban.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec3f" --- - - - - + diff --git a/src/_icons/layout-list.svg b/src/_icons/layout-list.svg index 347e5c21e..7ee15c488 100644 --- a/src/_icons/layout-list.svg +++ b/src/_icons/layout-list.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec14" --- - - + diff --git a/src/_icons/layout-navbar-collapse.svg b/src/_icons/layout-navbar-collapse.svg index e427e1585..2f8ef9d13 100644 --- a/src/_icons/layout-navbar-collapse.svg +++ b/src/_icons/layout-navbar-collapse.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f28d" --- - - - + diff --git a/src/_icons/layout-navbar-expand.svg b/src/_icons/layout-navbar-expand.svg index b0234a331..6ba38fb03 100644 --- a/src/_icons/layout-navbar-expand.svg +++ b/src/_icons/layout-navbar-expand.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f28e" --- - - - + diff --git a/src/_icons/layout-navbar.svg b/src/_icons/layout-navbar.svg index f66051151..e43158c50 100644 --- a/src/_icons/layout-navbar.svg +++ b/src/_icons/layout-navbar.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead7" --- - - + diff --git a/src/_icons/layout-off.svg b/src/_icons/layout-off.svg index b2f641f63..27d3b4d8f 100644 --- a/src/_icons/layout-off.svg +++ b/src/_icons/layout-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f151" --- - - - - + diff --git a/src/_icons/layout-rows.svg b/src/_icons/layout-rows.svg index 6d76c45b3..15815f8c4 100644 --- a/src/_icons/layout-rows.svg +++ b/src/_icons/layout-rows.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead8" --- - - + diff --git a/src/_icons/layout-sidebar-left-collapse.svg b/src/_icons/layout-sidebar-left-collapse.svg index 0aa3e4141..c13d1823e 100644 --- a/src/_icons/layout-sidebar-left-collapse.svg +++ b/src/_icons/layout-sidebar-left-collapse.svg @@ -5,7 +5,5 @@ category: Design unicode: "f004" --- - - - + diff --git a/src/_icons/layout-sidebar-left-expand.svg b/src/_icons/layout-sidebar-left-expand.svg index 9e028a9a1..0252d04ff 100644 --- a/src/_icons/layout-sidebar-left-expand.svg +++ b/src/_icons/layout-sidebar-left-expand.svg @@ -5,7 +5,5 @@ category: Design unicode: "f005" --- - - - + diff --git a/src/_icons/layout-sidebar-right-collapse.svg b/src/_icons/layout-sidebar-right-collapse.svg index 709368ff2..40caef9c0 100644 --- a/src/_icons/layout-sidebar-right-collapse.svg +++ b/src/_icons/layout-sidebar-right-collapse.svg @@ -5,7 +5,5 @@ category: Design unicode: "f006" --- - - - + diff --git a/src/_icons/layout-sidebar-right-expand.svg b/src/_icons/layout-sidebar-right-expand.svg index c6d789caa..90495f710 100644 --- a/src/_icons/layout-sidebar-right-expand.svg +++ b/src/_icons/layout-sidebar-right-expand.svg @@ -5,7 +5,5 @@ category: Design unicode: "f007" --- - - - + diff --git a/src/_icons/layout-sidebar-right.svg b/src/_icons/layout-sidebar-right.svg index 864f7ea15..5e2c2b55f 100644 --- a/src/_icons/layout-sidebar-right.svg +++ b/src/_icons/layout-sidebar-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "ead9" --- - - + diff --git a/src/_icons/layout-sidebar.svg b/src/_icons/layout-sidebar.svg index dd243ffbd..d5a92b16d 100644 --- a/src/_icons/layout-sidebar.svg +++ b/src/_icons/layout-sidebar.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eada" --- - - + diff --git a/src/_icons/layout.svg b/src/_icons/layout.svg index a9c8071ac..195e35c23 100644 --- a/src/_icons/layout.svg +++ b/src/_icons/layout.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eadb" --- - - - + diff --git a/src/_icons/leaf-off.svg b/src/_icons/leaf-off.svg index 68c8c74d9..f0c49d7e1 100644 --- a/src/_icons/leaf-off.svg +++ b/src/_icons/leaf-off.svg @@ -5,7 +5,5 @@ unicode: "f400" version: "1.94" --- - - - + diff --git a/src/_icons/leaf.svg b/src/_icons/leaf.svg index 60aa2385e..2c7642972 100644 --- a/src/_icons/leaf.svg +++ b/src/_icons/leaf.svg @@ -5,6 +5,5 @@ version: "1.29" unicode: "ed4f" --- - - + diff --git a/src/_icons/lego-off.svg b/src/_icons/lego-off.svg index 0e9eff5d1..2c36a4edf 100644 --- a/src/_icons/lego-off.svg +++ b/src/_icons/lego-off.svg @@ -4,8 +4,5 @@ unicode: "f401" version: "1.94" --- - - - - + diff --git a/src/_icons/lego.svg b/src/_icons/lego.svg index a27a3263e..aabcd44b0 100644 --- a/src/_icons/lego.svg +++ b/src/_icons/lego.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eadc" --- - - - - + diff --git a/src/_icons/lemon-2.svg b/src/_icons/lemon-2.svg index d79ae57c0..8f89906be 100644 --- a/src/_icons/lemon-2.svg +++ b/src/_icons/lemon-2.svg @@ -5,5 +5,5 @@ version: "1.46" unicode: "ef81" --- - + diff --git a/src/_icons/lemon.svg b/src/_icons/lemon.svg index b28aafde7..0e8dc11d4 100644 --- a/src/_icons/lemon.svg +++ b/src/_icons/lemon.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef10" --- - - - - - + diff --git a/src/_icons/letter-a.svg b/src/_icons/letter-a.svg index 8767d9bd9..6b0bc3df7 100644 --- a/src/_icons/letter-a.svg +++ b/src/_icons/letter-a.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec50" --- - - + diff --git a/src/_icons/letter-b.svg b/src/_icons/letter-b.svg index 5fc0dcdcb..f47388e77 100644 --- a/src/_icons/letter-b.svg +++ b/src/_icons/letter-b.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec51" --- - - + diff --git a/src/_icons/letter-case-lower.svg b/src/_icons/letter-case-lower.svg index 97b27bef4..4920c0b4e 100644 --- a/src/_icons/letter-case-lower.svg +++ b/src/_icons/letter-case-lower.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eea2" --- - - - - + diff --git a/src/_icons/letter-case-toggle.svg b/src/_icons/letter-case-toggle.svg index 1ab625a27..7135cc76d 100644 --- a/src/_icons/letter-case-toggle.svg +++ b/src/_icons/letter-case-toggle.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eea3" --- - - - - + diff --git a/src/_icons/letter-case-upper.svg b/src/_icons/letter-case-upper.svg index d199d3316..756c525d1 100644 --- a/src/_icons/letter-case-upper.svg +++ b/src/_icons/letter-case-upper.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eea4" --- - - - - + diff --git a/src/_icons/letter-case.svg b/src/_icons/letter-case.svg index 32b674512..226c83897 100644 --- a/src/_icons/letter-case.svg +++ b/src/_icons/letter-case.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eea5" --- - - - - + diff --git a/src/_icons/letter-e.svg b/src/_icons/letter-e.svg index 0560f3b84..765f710a8 100644 --- a/src/_icons/letter-e.svg +++ b/src/_icons/letter-e.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec54" --- - - + diff --git a/src/_icons/letter-f.svg b/src/_icons/letter-f.svg index 426d51378..a3cbb57a9 100644 --- a/src/_icons/letter-f.svg +++ b/src/_icons/letter-f.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec55" --- - - + diff --git a/src/_icons/letter-h.svg b/src/_icons/letter-h.svg index e0094a468..4b467a9cc 100644 --- a/src/_icons/letter-h.svg +++ b/src/_icons/letter-h.svg @@ -5,7 +5,5 @@ version: "1.12" unicode: "ec57" --- - - - + diff --git a/src/_icons/letter-i.svg b/src/_icons/letter-i.svg index 7df26dbb5..594b0d330 100644 --- a/src/_icons/letter-i.svg +++ b/src/_icons/letter-i.svg @@ -5,5 +5,5 @@ version: "1.12" unicode: "ec58" --- - + diff --git a/src/_icons/letter-k.svg b/src/_icons/letter-k.svg index b904685e7..b295963c4 100644 --- a/src/_icons/letter-k.svg +++ b/src/_icons/letter-k.svg @@ -5,7 +5,5 @@ version: "1.12" unicode: "ec5a" --- - - - + diff --git a/src/_icons/letter-q.svg b/src/_icons/letter-q.svg index 15133c533..b659b8707 100644 --- a/src/_icons/letter-q.svg +++ b/src/_icons/letter-q.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec60" --- - - + diff --git a/src/_icons/letter-r.svg b/src/_icons/letter-r.svg index 155356bbd..63dfaf05c 100644 --- a/src/_icons/letter-r.svg +++ b/src/_icons/letter-r.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec61" --- - - + diff --git a/src/_icons/letter-spacing.svg b/src/_icons/letter-spacing.svg index 839aa5c85..b8f8d97ae 100644 --- a/src/_icons/letter-spacing.svg +++ b/src/_icons/letter-spacing.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eea6" --- - - - - - + diff --git a/src/_icons/letter-t.svg b/src/_icons/letter-t.svg index 39c6f5b66..36ce938ad 100644 --- a/src/_icons/letter-t.svg +++ b/src/_icons/letter-t.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec63" --- - - + diff --git a/src/_icons/letter-x.svg b/src/_icons/letter-x.svg index 9a4fb98f2..e9fa244d2 100644 --- a/src/_icons/letter-x.svg +++ b/src/_icons/letter-x.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec67" --- - - + diff --git a/src/_icons/letter-y.svg b/src/_icons/letter-y.svg index a2fc6e13d..74ee4b732 100644 --- a/src/_icons/letter-y.svg +++ b/src/_icons/letter-y.svg @@ -5,6 +5,5 @@ version: "1.12" unicode: "ec68" --- - - + diff --git a/src/_icons/license-off.svg b/src/_icons/license-off.svg index cdac5ae96..e535b16f3 100644 --- a/src/_icons/license-off.svg +++ b/src/_icons/license-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f153" --- - - - - + diff --git a/src/_icons/license.svg b/src/_icons/license.svg index 2e983ab5a..a8c46e849 100644 --- a/src/_icons/license.svg +++ b/src/_icons/license.svg @@ -4,7 +4,5 @@ version: "1.5" unicode: "ebc0" --- - - - + diff --git a/src/_icons/lifebuoy-off.svg b/src/_icons/lifebuoy-off.svg index dc3e3329a..967092e87 100644 --- a/src/_icons/lifebuoy-off.svg +++ b/src/_icons/lifebuoy-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f154" --- - - - - - - - + diff --git a/src/_icons/lifebuoy.svg b/src/_icons/lifebuoy.svg index 6e1ce466c..28ef9f614 100644 --- a/src/_icons/lifebuoy.svg +++ b/src/_icons/lifebuoy.svg @@ -4,10 +4,5 @@ version: "1.0" unicode: "eadd" --- - - - - - - + diff --git a/src/_icons/line-dashed.svg b/src/_icons/line-dashed.svg index c0a28eb4d..538daef78 100644 --- a/src/_icons/line-dashed.svg +++ b/src/_icons/line-dashed.svg @@ -4,7 +4,5 @@ version: "1.39" unicode: "eea7" --- - - - + diff --git a/src/_icons/line-dotted.svg b/src/_icons/line-dotted.svg index 2b9a9c1b1..dde2c0359 100644 --- a/src/_icons/line-dotted.svg +++ b/src/_icons/line-dotted.svg @@ -4,9 +4,5 @@ version: "1.39" unicode: "eea8" --- - - - - - + diff --git a/src/_icons/line-height.svg b/src/_icons/line-height.svg index cdd61b635..eff4521b2 100644 --- a/src/_icons/line-height.svg +++ b/src/_icons/line-height.svg @@ -5,10 +5,5 @@ version: "1.3" unicode: "eb94" --- - - - - - - + diff --git a/src/_icons/line.svg b/src/_icons/line.svg index 3b2e2f718..b4ac3be28 100644 --- a/src/_icons/line.svg +++ b/src/_icons/line.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec40" --- - - - + diff --git a/src/_icons/link-off.svg b/src/_icons/link-off.svg index 47e2f3754..50628fd77 100644 --- a/src/_icons/link-off.svg +++ b/src/_icons/link-off.svg @@ -5,8 +5,5 @@ unicode: "f402" version: "1.94" --- - - - - + diff --git a/src/_icons/link.svg b/src/_icons/link.svg index ae26c8bd3..7f8985e0f 100644 --- a/src/_icons/link.svg +++ b/src/_icons/link.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eade" --- - - + diff --git a/src/_icons/list-check.svg b/src/_icons/list-check.svg index 7830aa57c..2bb52faca 100644 --- a/src/_icons/list-check.svg +++ b/src/_icons/list-check.svg @@ -5,10 +5,5 @@ version: "1.2" unicode: "eb6a" --- - - - - - - + diff --git a/src/_icons/list-details.svg b/src/_icons/list-details.svg index 57b5ab4fd..b2df2dd05 100644 --- a/src/_icons/list-details.svg +++ b/src/_icons/list-details.svg @@ -5,10 +5,5 @@ version: "1.42" unicode: "ef40" --- - - - - - - + diff --git a/src/_icons/list-numbers.svg b/src/_icons/list-numbers.svg index d9c57671c..f34f4139e 100644 --- a/src/_icons/list-numbers.svg +++ b/src/_icons/list-numbers.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef11" --- - - - - - + diff --git a/src/_icons/list-search.svg b/src/_icons/list-search.svg index 2259f8132..9ab46fadf 100644 --- a/src/_icons/list-search.svg +++ b/src/_icons/list-search.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eea9" --- - - - - - + diff --git a/src/_icons/list.svg b/src/_icons/list.svg index 0429927bc..219713d1e 100644 --- a/src/_icons/list.svg +++ b/src/_icons/list.svg @@ -5,10 +5,5 @@ version: "1.2" unicode: "eb6b" --- - - - - - - + diff --git a/src/_icons/live-photo-off.svg b/src/_icons/live-photo-off.svg index 3ea0971f6..5df3321e5 100644 --- a/src/_icons/live-photo-off.svg +++ b/src/_icons/live-photo-off.svg @@ -5,21 +5,5 @@ unicode: "f403" version: "1.94" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg index e83f43718..fd1d81402 100644 --- a/src/_icons/live-photo.svg +++ b/src/_icons/live-photo.svg @@ -5,20 +5,5 @@ version: "1.1" unicode: "eadf" --- - - - - - - - - - - - - - - - - + diff --git a/src/_icons/live-view.svg b/src/_icons/live-view.svg index 5b9a6848b..4ab8f0634 100644 --- a/src/_icons/live-view.svg +++ b/src/_icons/live-view.svg @@ -5,10 +5,5 @@ version: "1.12" unicode: "ec6b" --- - - - - - - + diff --git a/src/_icons/loader-3.svg b/src/_icons/loader-3.svg index f9bd13de1..b87de6586 100644 --- a/src/_icons/loader-3.svg +++ b/src/_icons/loader-3.svg @@ -4,6 +4,5 @@ version: "1.102" unicode: "f513" --- - - + diff --git a/src/_icons/loader-quarter.svg b/src/_icons/loader-quarter.svg index 742ffc1ec..731f33693 100644 --- a/src/_icons/loader-quarter.svg +++ b/src/_icons/loader-quarter.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "eca2" --- - - - + diff --git a/src/_icons/loader.svg b/src/_icons/loader.svg index 9daff637f..10877c431 100644 --- a/src/_icons/loader.svg +++ b/src/_icons/loader.svg @@ -5,12 +5,5 @@ version: "1.17" unicode: "eca3" --- - - - - - - - - + diff --git a/src/_icons/location-broken.svg b/src/_icons/location-broken.svg index ca9b0cc8e..7d72404ac 100644 --- a/src/_icons/location-broken.svg +++ b/src/_icons/location-broken.svg @@ -5,6 +5,5 @@ version: "1.81" unicode: "f2c4" --- - - + diff --git a/src/_icons/location-filled.svg b/src/_icons/location-filled.svg new file mode 100644 index 000000000..2e8048df1 --- /dev/null +++ b/src/_icons/location-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f67f" +--- + + + diff --git a/src/_icons/location-off.svg b/src/_icons/location-off.svg index c3b6b5f4a..2362d94d8 100644 --- a/src/_icons/location-off.svg +++ b/src/_icons/location-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f155" --- - - + diff --git a/src/_icons/lock-access-off.svg b/src/_icons/lock-access-off.svg index 83424f7f5..1720815a7 100644 --- a/src/_icons/lock-access-off.svg +++ b/src/_icons/lock-access-off.svg @@ -4,11 +4,5 @@ unicode: "f404" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/lock-access.svg b/src/_icons/lock-access.svg index af7a7dbf4..b2963df87 100644 --- a/src/_icons/lock-access.svg +++ b/src/_icons/lock-access.svg @@ -4,10 +4,5 @@ version: "1.39" unicode: "eeaa" --- - - - - - - + diff --git a/src/_icons/lock-off.svg b/src/_icons/lock-off.svg index 916308e26..a6f086196 100644 --- a/src/_icons/lock-off.svg +++ b/src/_icons/lock-off.svg @@ -5,8 +5,5 @@ version: "1.25" unicode: "ed1e" --- - - - - + diff --git a/src/_icons/lock-open-off.svg b/src/_icons/lock-open-off.svg index 1ff8aaac9..e2969b6a8 100644 --- a/src/_icons/lock-open-off.svg +++ b/src/_icons/lock-open-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f156" --- - - - - + diff --git a/src/_icons/lock-open.svg b/src/_icons/lock-open.svg index 3da76fffa..f83c402e2 100644 --- a/src/_icons/lock-open.svg +++ b/src/_icons/lock-open.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eae1" --- - - - + diff --git a/src/_icons/lock-square-rounded.svg b/src/_icons/lock-square-rounded.svg index 5b8be21ad..582e6a9fc 100644 --- a/src/_icons/lock-square-rounded.svg +++ b/src/_icons/lock-square-rounded.svg @@ -3,7 +3,5 @@ unicode: "f636" version: "1.117" --- - - - + diff --git a/src/_icons/lock-square.svg b/src/_icons/lock-square.svg index dda6f1d78..90572edf8 100644 --- a/src/_icons/lock-square.svg +++ b/src/_icons/lock-square.svg @@ -4,7 +4,5 @@ version: "1.43" unicode: "ef51" --- - - - + diff --git a/src/_icons/lock.svg b/src/_icons/lock.svg index 7834a602c..6c6282ad9 100644 --- a/src/_icons/lock.svg +++ b/src/_icons/lock.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eae2" --- - - - + diff --git a/src/_icons/logic-and.svg b/src/_icons/logic-and.svg index f29a1641e..51435c16c 100644 --- a/src/_icons/logic-and.svg +++ b/src/_icons/logic-and.svg @@ -5,8 +5,5 @@ version: "1.74" unicode: "f240" --- - - - - + diff --git a/src/_icons/logic-buffer.svg b/src/_icons/logic-buffer.svg index 1374e673d..d8fae6c1e 100644 --- a/src/_icons/logic-buffer.svg +++ b/src/_icons/logic-buffer.svg @@ -5,8 +5,5 @@ version: "1.74" unicode: "f241" --- - - - - + diff --git a/src/_icons/logic-nand.svg b/src/_icons/logic-nand.svg index 7650554fe..f8767f90c 100644 --- a/src/_icons/logic-nand.svg +++ b/src/_icons/logic-nand.svg @@ -5,9 +5,5 @@ version: "1.74" unicode: "f242" --- - - - - - + diff --git a/src/_icons/logic-nor.svg b/src/_icons/logic-nor.svg index e2cffbc5c..54a6098d9 100644 --- a/src/_icons/logic-nor.svg +++ b/src/_icons/logic-nor.svg @@ -5,9 +5,5 @@ version: "1.74" unicode: "f243" --- - - - - - + diff --git a/src/_icons/logic-not.svg b/src/_icons/logic-not.svg index b328b1381..e95f2445b 100644 --- a/src/_icons/logic-not.svg +++ b/src/_icons/logic-not.svg @@ -5,9 +5,5 @@ version: "1.74" unicode: "f244" --- - - - - - + diff --git a/src/_icons/logic-or.svg b/src/_icons/logic-or.svg index faaf6abfd..ccebc373f 100644 --- a/src/_icons/logic-or.svg +++ b/src/_icons/logic-or.svg @@ -5,8 +5,5 @@ version: "1.74" unicode: "f245" --- - - - - + diff --git a/src/_icons/logic-xnor.svg b/src/_icons/logic-xnor.svg index c7fe1db70..3353e7a8e 100644 --- a/src/_icons/logic-xnor.svg +++ b/src/_icons/logic-xnor.svg @@ -5,10 +5,5 @@ version: "1.74" unicode: "f246" --- - - - - - - + diff --git a/src/_icons/logic-xor.svg b/src/_icons/logic-xor.svg index 47387bc9b..20c67c95a 100644 --- a/src/_icons/logic-xor.svg +++ b/src/_icons/logic-xor.svg @@ -5,9 +5,5 @@ version: "1.74" unicode: "f247" --- - - - - - + diff --git a/src/_icons/login.svg b/src/_icons/login.svg index 681de39b2..0efe2a5e5 100644 --- a/src/_icons/login.svg +++ b/src/_icons/login.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "eba7" --- - - + diff --git a/src/_icons/logout.svg b/src/_icons/logout.svg index 7c62b5e3b..9bb6f7b7b 100644 --- a/src/_icons/logout.svg +++ b/src/_icons/logout.svg @@ -5,6 +5,5 @@ version: "1.4" unicode: "eba8" --- - - + diff --git a/src/_icons/lollipop-off.svg b/src/_icons/lollipop-off.svg index 8020505f1..11d8c17ae 100644 --- a/src/_icons/lollipop-off.svg +++ b/src/_icons/lollipop-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f157" --- - - - - - - - + diff --git a/src/_icons/lollipop.svg b/src/_icons/lollipop.svg index b716e24a6..ca1664302 100644 --- a/src/_icons/lollipop.svg +++ b/src/_icons/lollipop.svg @@ -4,10 +4,5 @@ version: "1.50" unicode: "efcc" --- - - - - - - + diff --git a/src/_icons/luggage-off.svg b/src/_icons/luggage-off.svg index e1a7be405..a703818b6 100644 --- a/src/_icons/luggage-off.svg +++ b/src/_icons/luggage-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f158" --- - - - - - - - + diff --git a/src/_icons/luggage.svg b/src/_icons/luggage.svg index 8d7afebf1..4ed9cd636 100644 --- a/src/_icons/luggage.svg +++ b/src/_icons/luggage.svg @@ -4,10 +4,5 @@ version: "1.48" unicode: "efad" --- - - - - - - + diff --git a/src/_icons/lungs-off.svg b/src/_icons/lungs-off.svg index a6e0adabf..fa436912c 100644 --- a/src/_icons/lungs-off.svg +++ b/src/_icons/lungs-off.svg @@ -5,9 +5,5 @@ unicode: "f405" version: "1.94" --- - - - - - + diff --git a/src/_icons/lungs.svg b/src/_icons/lungs.svg index b425bf079..7ed4610da 100644 --- a/src/_icons/lungs.svg +++ b/src/_icons/lungs.svg @@ -5,8 +5,5 @@ version: "1.44" unicode: "ef62" --- - - - - + diff --git a/src/_icons/macro-off.svg b/src/_icons/macro-off.svg index 43eb97524..d0d927dc5 100644 --- a/src/_icons/macro-off.svg +++ b/src/_icons/macro-off.svg @@ -5,10 +5,5 @@ unicode: "f406" version: "1.94" --- - - - - - - + diff --git a/src/_icons/macro.svg b/src/_icons/macro.svg index b1239cae6..79420d5bf 100644 --- a/src/_icons/macro.svg +++ b/src/_icons/macro.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eeab" --- - - - - - + diff --git a/src/_icons/magnet-off.svg b/src/_icons/magnet-off.svg index 802a79851..2b26cc78e 100644 --- a/src/_icons/magnet-off.svg +++ b/src/_icons/magnet-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f159" --- - - - - + diff --git a/src/_icons/magnet.svg b/src/_icons/magnet.svg index c1623b59f..551616fa4 100644 --- a/src/_icons/magnet.svg +++ b/src/_icons/magnet.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eae3" --- - - - + diff --git a/src/_icons/mail-fast.svg b/src/_icons/mail-fast.svg index d882ac5e4..f28dcd7d9 100644 --- a/src/_icons/mail-fast.svg +++ b/src/_icons/mail-fast.svg @@ -5,8 +5,5 @@ category: Communication unicode: "f069" --- - - - - + diff --git a/src/_icons/mail-forward.svg b/src/_icons/mail-forward.svg index 89f49d04d..1e437e6f5 100644 --- a/src/_icons/mail-forward.svg +++ b/src/_icons/mail-forward.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eeac" --- - - - - + diff --git a/src/_icons/mail-off.svg b/src/_icons/mail-off.svg index 11e5f9d8c..4e4e5bea0 100644 --- a/src/_icons/mail-off.svg +++ b/src/_icons/mail-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f15a" --- - - - + diff --git a/src/_icons/mail-opened.svg b/src/_icons/mail-opened.svg index f4253f038..a22c7578d 100644 --- a/src/_icons/mail-opened.svg +++ b/src/_icons/mail-opened.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eae4" --- - - - - + diff --git a/src/_icons/mail.svg b/src/_icons/mail.svg index 78dc2305a..2a74b7f4c 100644 --- a/src/_icons/mail.svg +++ b/src/_icons/mail.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eae5" --- - - + diff --git a/src/_icons/mailbox-off.svg b/src/_icons/mailbox-off.svg index 62ae0e188..ea3d797ee 100644 --- a/src/_icons/mailbox-off.svg +++ b/src/_icons/mailbox-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f15b" --- - - - - + diff --git a/src/_icons/mailbox.svg b/src/_icons/mailbox.svg index b2ce7eccf..31ab9ca16 100644 --- a/src/_icons/mailbox.svg +++ b/src/_icons/mailbox.svg @@ -4,7 +4,5 @@ version: "1.39" unicode: "eead" --- - - - + diff --git a/src/_icons/man.svg b/src/_icons/man.svg index 1dbb52130..8560fa179 100644 --- a/src/_icons/man.svg +++ b/src/_icons/man.svg @@ -4,10 +4,5 @@ version: "1.0" unicode: "eae6" --- - - - - - - + diff --git a/src/_icons/manual-gearbox.svg b/src/_icons/manual-gearbox.svg index 5ffa45781..77b86ed21 100644 --- a/src/_icons/manual-gearbox.svg +++ b/src/_icons/manual-gearbox.svg @@ -4,12 +4,5 @@ version: "1.33" unicode: "ed7b" --- - - - - - - - - + diff --git a/src/_icons/map-2.svg b/src/_icons/map-2.svg index ebea1c474..f646c13d5 100644 --- a/src/_icons/map-2.svg +++ b/src/_icons/map-2.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eae7" --- - - - - - + diff --git a/src/_icons/map-off.svg b/src/_icons/map-off.svg index a9c41a711..18a05652b 100644 --- a/src/_icons/map-off.svg +++ b/src/_icons/map-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f15c" --- - - - - + diff --git a/src/_icons/map-pin-filled.svg b/src/_icons/map-pin-filled.svg new file mode 100644 index 000000000..7a29bd97f --- /dev/null +++ b/src/_icons/map-pin-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f680" +--- + + + diff --git a/src/_icons/map-pin-off.svg b/src/_icons/map-pin-off.svg index e8d53d4d1..609e03ab3 100644 --- a/src/_icons/map-pin-off.svg +++ b/src/_icons/map-pin-off.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ecf3" --- - - - + diff --git a/src/_icons/map-pin.svg b/src/_icons/map-pin.svg index df55c4528..cf49a6d13 100644 --- a/src/_icons/map-pin.svg +++ b/src/_icons/map-pin.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eae8" --- - - + diff --git a/src/_icons/map-pins.svg b/src/_icons/map-pins.svg index c2f7118e5..9c484bad6 100644 --- a/src/_icons/map-pins.svg +++ b/src/_icons/map-pins.svg @@ -5,8 +5,5 @@ version: "1.31" unicode: "ed5e" --- - - - - + diff --git a/src/_icons/map-search.svg b/src/_icons/map-search.svg index ccf61803c..aed4f08e3 100644 --- a/src/_icons/map-search.svg +++ b/src/_icons/map-search.svg @@ -4,9 +4,5 @@ version: "1.46" unicode: "ef82" --- - - - - - + diff --git a/src/_icons/map.svg b/src/_icons/map.svg index 2776b74c4..e8596e5e5 100644 --- a/src/_icons/map.svg +++ b/src/_icons/map.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eae9" --- - - - + diff --git a/src/_icons/markdown-off.svg b/src/_icons/markdown-off.svg index ad2ba926b..e57ed9875 100644 --- a/src/_icons/markdown-off.svg +++ b/src/_icons/markdown-off.svg @@ -5,9 +5,5 @@ unicode: "f407" version: "1.94" --- - - - - - + diff --git a/src/_icons/markdown.svg b/src/_icons/markdown.svg index 0f852dafb..69b076533 100644 --- a/src/_icons/markdown.svg +++ b/src/_icons/markdown.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec41" --- - - - + diff --git a/src/_icons/marquee-off.svg b/src/_icons/marquee-off.svg index b96a956d5..6a930ddd4 100644 --- a/src/_icons/marquee-off.svg +++ b/src/_icons/marquee-off.svg @@ -4,17 +4,5 @@ version: "1.66" unicode: "f15d" --- - - - - - - - - - - - - - + diff --git a/src/_icons/mars.svg b/src/_icons/mars.svg index 3209cff6e..17bd04746 100644 --- a/src/_icons/mars.svg +++ b/src/_icons/mars.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec80" --- - - - - + diff --git a/src/_icons/mask-off.svg b/src/_icons/mask-off.svg index e48e01987..24b0fb31c 100644 --- a/src/_icons/mask-off.svg +++ b/src/_icons/mask-off.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eeaf" --- - - - + diff --git a/src/_icons/mask.svg b/src/_icons/mask.svg index 07821ffff..7f966577f 100644 --- a/src/_icons/mask.svg +++ b/src/_icons/mask.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeb0" --- - - + diff --git a/src/_icons/masks-theater-off.svg b/src/_icons/masks-theater-off.svg index fa463ecd1..f401caf70 100644 --- a/src/_icons/masks-theater-off.svg +++ b/src/_icons/masks-theater-off.svg @@ -4,11 +4,5 @@ unicode: "f408" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/masks-theater.svg b/src/_icons/masks-theater.svg index 38a894477..5fe74910b 100644 --- a/src/_icons/masks-theater.svg +++ b/src/_icons/masks-theater.svg @@ -4,12 +4,5 @@ version: "1.76" unicode: "f263" --- - - - - - - - - + diff --git a/src/_icons/massage.svg b/src/_icons/massage.svg index 157c973c9..ef044b722 100644 --- a/src/_icons/massage.svg +++ b/src/_icons/massage.svg @@ -5,9 +5,5 @@ category: Health unicode: "eeb1" --- - - - - - + diff --git a/src/_icons/matchstick.svg b/src/_icons/matchstick.svg index 625c77611..dbef90101 100644 --- a/src/_icons/matchstick.svg +++ b/src/_icons/matchstick.svg @@ -4,7 +4,5 @@ unicode: "f577" version: "1.107" --- - - - + diff --git a/src/_icons/math-1-divide-2.svg b/src/_icons/math-1-divide-2.svg index a94036831..377867c0a 100644 --- a/src/_icons/math-1-divide-2.svg +++ b/src/_icons/math-1-divide-2.svg @@ -5,7 +5,5 @@ unicode: "f4e2" version: "1.100" --- - - - + diff --git a/src/_icons/math-1-divide-3.svg b/src/_icons/math-1-divide-3.svg index 03983672e..38a1a6705 100644 --- a/src/_icons/math-1-divide-3.svg +++ b/src/_icons/math-1-divide-3.svg @@ -5,7 +5,5 @@ unicode: "f4e3" version: "1.100" --- - - - + diff --git a/src/_icons/math-avg.svg b/src/_icons/math-avg.svg index 896996708..00d343fb0 100644 --- a/src/_icons/math-avg.svg +++ b/src/_icons/math-avg.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0f4" --- - - + diff --git a/src/_icons/math-equal-greater.svg b/src/_icons/math-equal-greater.svg index 4e1f1a2fa..b1a70fb6b 100644 --- a/src/_icons/math-equal-greater.svg +++ b/src/_icons/math-equal-greater.svg @@ -5,6 +5,5 @@ unicode: "f4e4" version: "1.100" --- - - + diff --git a/src/_icons/math-equal-lower.svg b/src/_icons/math-equal-lower.svg index 45595416a..624118f24 100644 --- a/src/_icons/math-equal-lower.svg +++ b/src/_icons/math-equal-lower.svg @@ -5,6 +5,5 @@ unicode: "f4e5" version: "1.100" --- - - + diff --git a/src/_icons/math-function-off.svg b/src/_icons/math-function-off.svg index 5c81f560f..2607437a2 100644 --- a/src/_icons/math-function-off.svg +++ b/src/_icons/math-function-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f15e" --- - - - - - + diff --git a/src/_icons/math-function-y.svg b/src/_icons/math-function-y.svg index afbcb083f..f04749e59 100644 --- a/src/_icons/math-function-y.svg +++ b/src/_icons/math-function-y.svg @@ -5,8 +5,5 @@ unicode: "f4e6" version: "1.100" --- - - - - + diff --git a/src/_icons/math-function.svg b/src/_icons/math-function.svg index b25726bb0..7bdb2a39e 100644 --- a/src/_icons/math-function.svg +++ b/src/_icons/math-function.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eeb2" --- - - - - + diff --git a/src/_icons/math-integral-x.svg b/src/_icons/math-integral-x.svg index d76ec3171..92d7c9458 100644 --- a/src/_icons/math-integral-x.svg +++ b/src/_icons/math-integral-x.svg @@ -5,7 +5,5 @@ unicode: "f4e8" version: "1.100" --- - - - + diff --git a/src/_icons/math-integrals.svg b/src/_icons/math-integrals.svg index 30adbf94b..96a5f85b7 100644 --- a/src/_icons/math-integrals.svg +++ b/src/_icons/math-integrals.svg @@ -5,6 +5,5 @@ unicode: "f4ea" version: "1.100" --- - - + diff --git a/src/_icons/math-max.svg b/src/_icons/math-max.svg index 29035f6d4..19a55b967 100644 --- a/src/_icons/math-max.svg +++ b/src/_icons/math-max.svg @@ -5,6 +5,5 @@ version: "1.64" unicode: "f0f5" --- - - + diff --git a/src/_icons/math-min.svg b/src/_icons/math-min.svg index da6c81a37..c9f4956f2 100644 --- a/src/_icons/math-min.svg +++ b/src/_icons/math-min.svg @@ -5,7 +5,5 @@ version: "1.64" unicode: "f0f6" --- - - - + diff --git a/src/_icons/math-off.svg b/src/_icons/math-off.svg index 69f00cef9..655bd825b 100644 --- a/src/_icons/math-off.svg +++ b/src/_icons/math-off.svg @@ -5,9 +5,5 @@ unicode: "f409" version: "1.94" --- - - - - - + diff --git a/src/_icons/math-pi-divide-2.svg b/src/_icons/math-pi-divide-2.svg index aa763af3c..22f528075 100644 --- a/src/_icons/math-pi-divide-2.svg +++ b/src/_icons/math-pi-divide-2.svg @@ -5,9 +5,5 @@ unicode: "f4ed" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-pi.svg b/src/_icons/math-pi.svg index e1b05aeef..55645cfd8 100644 --- a/src/_icons/math-pi.svg +++ b/src/_icons/math-pi.svg @@ -5,7 +5,5 @@ unicode: "f4ee" version: "1.100" --- - - - + diff --git a/src/_icons/math-symbols.svg b/src/_icons/math-symbols.svg index 53dba2aed..469defdb8 100644 --- a/src/_icons/math-symbols.svg +++ b/src/_icons/math-symbols.svg @@ -5,13 +5,5 @@ version: "1.39" unicode: "eeb3" --- - - - - - - - - - + diff --git a/src/_icons/math-x-divide-2.svg b/src/_icons/math-x-divide-2.svg index f53a7dbb7..6e33497c8 100644 --- a/src/_icons/math-x-divide-2.svg +++ b/src/_icons/math-x-divide-2.svg @@ -5,8 +5,5 @@ unicode: "f4ef" version: "1.100" --- - - - - + diff --git a/src/_icons/math-x-divide-y-2.svg b/src/_icons/math-x-divide-y-2.svg index d671c6359..90625ee0a 100644 --- a/src/_icons/math-x-divide-y-2.svg +++ b/src/_icons/math-x-divide-y-2.svg @@ -5,9 +5,5 @@ unicode: "f4f0" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-x-divide-y.svg b/src/_icons/math-x-divide-y.svg index aacf8a195..e93c5002d 100644 --- a/src/_icons/math-x-divide-y.svg +++ b/src/_icons/math-x-divide-y.svg @@ -5,9 +5,5 @@ unicode: "f4f1" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-x-minus-x.svg b/src/_icons/math-x-minus-x.svg index 91920ee0e..7e9953f4e 100644 --- a/src/_icons/math-x-minus-x.svg +++ b/src/_icons/math-x-minus-x.svg @@ -5,9 +5,5 @@ unicode: "f4f2" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-x-minus-y.svg b/src/_icons/math-x-minus-y.svg index 90e66277e..a6ed99ea6 100644 --- a/src/_icons/math-x-minus-y.svg +++ b/src/_icons/math-x-minus-y.svg @@ -5,9 +5,5 @@ unicode: "f4f3" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-x-plus-x.svg b/src/_icons/math-x-plus-x.svg index d41c35d43..6019b8633 100644 --- a/src/_icons/math-x-plus-x.svg +++ b/src/_icons/math-x-plus-x.svg @@ -5,10 +5,5 @@ unicode: "f4f4" version: "1.100" --- - - - - - - + diff --git a/src/_icons/math-x-plus-y.svg b/src/_icons/math-x-plus-y.svg index 9f7a769b1..37d1132a8 100644 --- a/src/_icons/math-x-plus-y.svg +++ b/src/_icons/math-x-plus-y.svg @@ -5,10 +5,5 @@ unicode: "f4f5" version: "1.100" --- - - - - - - + diff --git a/src/_icons/math-xy.svg b/src/_icons/math-xy.svg index 11d753726..2ec8a931e 100644 --- a/src/_icons/math-xy.svg +++ b/src/_icons/math-xy.svg @@ -5,8 +5,5 @@ unicode: "f4f6" version: "1.100" --- - - - - + diff --git a/src/_icons/math-y-minus-y.svg b/src/_icons/math-y-minus-y.svg index 3731fb8e6..2e3405a97 100644 --- a/src/_icons/math-y-minus-y.svg +++ b/src/_icons/math-y-minus-y.svg @@ -5,9 +5,5 @@ unicode: "f4f7" version: "1.100" --- - - - - - + diff --git a/src/_icons/math-y-plus-y.svg b/src/_icons/math-y-plus-y.svg index ca74eac3b..c69807102 100644 --- a/src/_icons/math-y-plus-y.svg +++ b/src/_icons/math-y-plus-y.svg @@ -5,10 +5,5 @@ unicode: "f4f8" version: "1.100" --- - - - - - - + diff --git a/src/_icons/math.svg b/src/_icons/math.svg index 47e935507..463429a98 100644 --- a/src/_icons/math.svg +++ b/src/_icons/math.svg @@ -5,7 +5,5 @@ version: "1.7" unicode: "ebeb" --- - - - + diff --git a/src/_icons/maximize-off.svg b/src/_icons/maximize-off.svg index b680c5bf2..d32ece7d9 100644 --- a/src/_icons/maximize-off.svg +++ b/src/_icons/maximize-off.svg @@ -4,9 +4,5 @@ version: "1.66" unicode: "f15f" --- - - - - - + diff --git a/src/_icons/maximize.svg b/src/_icons/maximize.svg index 95a90cb0c..1ccb1147c 100644 --- a/src/_icons/maximize.svg +++ b/src/_icons/maximize.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eaea" --- - - - - + diff --git a/src/_icons/meat-off.svg b/src/_icons/meat-off.svg index 25bce0754..fba2d51b2 100644 --- a/src/_icons/meat-off.svg +++ b/src/_icons/meat-off.svg @@ -5,11 +5,5 @@ unicode: "f40a" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/meat.svg b/src/_icons/meat.svg index f33d69366..7b3bc9c02 100644 --- a/src/_icons/meat.svg +++ b/src/_icons/meat.svg @@ -5,8 +5,5 @@ version: "1.40" unicode: "ef12" --- - - - - + diff --git a/src/_icons/medal-2.svg b/src/_icons/medal-2.svg index f7a526e08..df3c19bfd 100644 --- a/src/_icons/medal-2.svg +++ b/src/_icons/medal-2.svg @@ -4,8 +4,5 @@ version: "1.50" unicode: "efcd" --- - - - - + diff --git a/src/_icons/medal.svg b/src/_icons/medal.svg index 57f1389ad..2ea5d27aa 100644 --- a/src/_icons/medal.svg +++ b/src/_icons/medal.svg @@ -4,6 +4,5 @@ version: "1.13" unicode: "ec78" --- - - + diff --git a/src/_icons/medical-cross-filled.svg b/src/_icons/medical-cross-filled.svg new file mode 100644 index 000000000..6c5847a4a --- /dev/null +++ b/src/_icons/medical-cross-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f681" +--- + + + diff --git a/src/_icons/medical-cross-off.svg b/src/_icons/medical-cross-off.svg index 7e79dfcca..b4debdba6 100644 --- a/src/_icons/medical-cross-off.svg +++ b/src/_icons/medical-cross-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f160" --- - - + diff --git a/src/_icons/medicine-syrup.svg b/src/_icons/medicine-syrup.svg index 8fd0d47b1..a1312245b 100644 --- a/src/_icons/medicine-syrup.svg +++ b/src/_icons/medicine-syrup.svg @@ -5,8 +5,5 @@ version: "1.44" unicode: "ef63" --- - - - - + diff --git a/src/_icons/menorah.svg b/src/_icons/menorah.svg index f023a318d..450aa6ffc 100644 --- a/src/_icons/menorah.svg +++ b/src/_icons/menorah.svg @@ -5,8 +5,5 @@ unicode: "f58c" version: "1.109" --- - - - - + diff --git a/src/_icons/menu-2.svg b/src/_icons/menu-2.svg index b74df17c5..c048386c9 100644 --- a/src/_icons/menu-2.svg +++ b/src/_icons/menu-2.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec42" --- - - - + diff --git a/src/_icons/menu-order.svg b/src/_icons/menu-order.svg index f2377ffb8..75ae89781 100644 --- a/src/_icons/menu-order.svg +++ b/src/_icons/menu-order.svg @@ -4,8 +4,5 @@ unicode: "f5f5" version: "1.113" --- - - - - + diff --git a/src/_icons/menu.svg b/src/_icons/menu.svg index f08dc29e5..70f30ec31 100644 --- a/src/_icons/menu.svg +++ b/src/_icons/menu.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaeb" --- - - + diff --git a/src/_icons/message-2-code.svg b/src/_icons/message-2-code.svg index b518fb5f1..572668ffd 100644 --- a/src/_icons/message-2-code.svg +++ b/src/_icons/message-2-code.svg @@ -5,7 +5,5 @@ version: "1.54" unicode: "f012" --- - - - + diff --git a/src/_icons/message-2-off.svg b/src/_icons/message-2-off.svg index a98a1d267..0399c3900 100644 --- a/src/_icons/message-2-off.svg +++ b/src/_icons/message-2-off.svg @@ -1,12 +1,9 @@ --- -tags: [comment, chat, reply] +tags: [comment, chat, reply, faq] category: Communication unicode: "f40b" version: "1.94" --- - - - - + diff --git a/src/_icons/message-2-share.svg b/src/_icons/message-2-share.svg index c54d764c6..ad088ada0 100644 --- a/src/_icons/message-2-share.svg +++ b/src/_icons/message-2-share.svg @@ -5,7 +5,5 @@ version: "1.59" unicode: "f077" --- - - - + diff --git a/src/_icons/message-2.svg b/src/_icons/message-2.svg index 27c78084f..fb0f40dcd 100644 --- a/src/_icons/message-2.svg +++ b/src/_icons/message-2.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaec" --- - - - + diff --git a/src/_icons/message-chatbot.svg b/src/_icons/message-chatbot.svg index c5eaacb81..91980aa59 100644 --- a/src/_icons/message-chatbot.svg +++ b/src/_icons/message-chatbot.svg @@ -5,8 +5,5 @@ unicode: "f38a" version: "1.91" --- - - - - + diff --git a/src/_icons/message-circle-2-filled.svg b/src/_icons/message-circle-2-filled.svg new file mode 100644 index 000000000..7cccc7250 --- /dev/null +++ b/src/_icons/message-circle-2-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f682" +--- + + + diff --git a/src/_icons/message-circle-off.svg b/src/_icons/message-circle-off.svg index 7a27ba2d6..8a559a009 100644 --- a/src/_icons/message-circle-off.svg +++ b/src/_icons/message-circle-off.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed40" --- - - + diff --git a/src/_icons/message-circle.svg b/src/_icons/message-circle.svg index 5a2b6f991..6d9713c33 100644 --- a/src/_icons/message-circle.svg +++ b/src/_icons/message-circle.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaed" --- - - - - + diff --git a/src/_icons/message-code.svg b/src/_icons/message-code.svg index ec0904014..71b954577 100644 --- a/src/_icons/message-code.svg +++ b/src/_icons/message-code.svg @@ -5,7 +5,5 @@ category: Communication unicode: "f013" --- - - - + diff --git a/src/_icons/message-dots.svg b/src/_icons/message-dots.svg index 24939f6b1..622ab2ad3 100644 --- a/src/_icons/message-dots.svg +++ b/src/_icons/message-dots.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaee" --- - - - - + diff --git a/src/_icons/message-forward.svg b/src/_icons/message-forward.svg index dbf378890..48fe62a82 100644 --- a/src/_icons/message-forward.svg +++ b/src/_icons/message-forward.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f28f" --- - - - + diff --git a/src/_icons/message-language.svg b/src/_icons/message-language.svg index db1525c7e..9324efb30 100644 --- a/src/_icons/message-language.svg +++ b/src/_icons/message-language.svg @@ -5,7 +5,5 @@ category: Communication unicode: "efae" --- - - - + diff --git a/src/_icons/message-off.svg b/src/_icons/message-off.svg index 965a47efd..a46fd3dfc 100644 --- a/src/_icons/message-off.svg +++ b/src/_icons/message-off.svg @@ -1,10 +1,9 @@ --- -tags: [comment, chat, reply, communication, conversation] +tags: [comment, chat, reply, communication, conversation, faq] category: Communication version: "1.28" unicode: "ed41" --- - - + diff --git a/src/_icons/message-plus.svg b/src/_icons/message-plus.svg index ccb0431f0..2334652e0 100644 --- a/src/_icons/message-plus.svg +++ b/src/_icons/message-plus.svg @@ -5,7 +5,5 @@ version: "1.16" unicode: "ec9a" --- - - - + diff --git a/src/_icons/message-report.svg b/src/_icons/message-report.svg index 036d68c29..2974524ae 100644 --- a/src/_icons/message-report.svg +++ b/src/_icons/message-report.svg @@ -5,7 +5,5 @@ version: "1.16" unicode: "ec9b" --- - - - + diff --git a/src/_icons/message-share.svg b/src/_icons/message-share.svg index c1fc2dfa1..e42389aaf 100644 --- a/src/_icons/message-share.svg +++ b/src/_icons/message-share.svg @@ -5,7 +5,5 @@ version: "1.59" unicode: "f078" --- - - - + diff --git a/src/_icons/message.svg b/src/_icons/message.svg index 0c0700cb1..13339dbb7 100644 --- a/src/_icons/message.svg +++ b/src/_icons/message.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaef" --- - - - + diff --git a/src/_icons/messages-off.svg b/src/_icons/messages-off.svg index c9be5e58a..32da2fd64 100644 --- a/src/_icons/messages-off.svg +++ b/src/_icons/messages-off.svg @@ -1,11 +1,9 @@ --- -tags: [chat, reply, comment, conversation, communication] +tags: [chat, reply, comment, conversation, communication, faq] category: Communication version: "1.28" unicode: "ed42" --- - - - + diff --git a/src/_icons/messages.svg b/src/_icons/messages.svg index 32d1bb36d..009c3e7ee 100644 --- a/src/_icons/messages.svg +++ b/src/_icons/messages.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb6c" --- - - + diff --git a/src/_icons/meteor-off.svg b/src/_icons/meteor-off.svg index 18577bdb4..5f38efec6 100644 --- a/src/_icons/meteor-off.svg +++ b/src/_icons/meteor-off.svg @@ -4,7 +4,5 @@ unicode: "f40c" version: "1.94" --- - - - + diff --git a/src/_icons/meteor.svg b/src/_icons/meteor.svg index 146cd5330..000e90b4a 100644 --- a/src/_icons/meteor.svg +++ b/src/_icons/meteor.svg @@ -4,6 +4,5 @@ version: "1.70" unicode: "f1fd" --- - - + diff --git a/src/_icons/mickey-filled.svg b/src/_icons/mickey-filled.svg new file mode 100644 index 000000000..245244c29 --- /dev/null +++ b/src/_icons/mickey-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f683" +--- + + + diff --git a/src/_icons/mickey.svg b/src/_icons/mickey.svg index 610b8fd69..cc9e9a4f9 100644 --- a/src/_icons/mickey.svg +++ b/src/_icons/mickey.svg @@ -4,7 +4,5 @@ version: "1.79" unicode: "f2a3" --- - - - + diff --git a/src/_icons/microphone-2-off.svg b/src/_icons/microphone-2-off.svg index 4a08c6ffd..004befbc1 100644 --- a/src/_icons/microphone-2-off.svg +++ b/src/_icons/microphone-2-off.svg @@ -5,7 +5,5 @@ unicode: "f40d" version: "1.94" --- - - - + diff --git a/src/_icons/microphone-2.svg b/src/_icons/microphone-2.svg index f5a79c082..7881396bc 100644 --- a/src/_icons/microphone-2.svg +++ b/src/_icons/microphone-2.svg @@ -5,6 +5,5 @@ version: "1.41" unicode: "ef2c" --- - - + diff --git a/src/_icons/microphone-off.svg b/src/_icons/microphone-off.svg index bf81b4b95..aff5d8c61 100644 --- a/src/_icons/microphone-off.svg +++ b/src/_icons/microphone-off.svg @@ -5,9 +5,5 @@ version: "1.24" unicode: "ed16" --- - - - - - + diff --git a/src/_icons/microphone.svg b/src/_icons/microphone.svg index d14cc9895..2ae3ac294 100644 --- a/src/_icons/microphone.svg +++ b/src/_icons/microphone.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaf0" --- - - - - + diff --git a/src/_icons/microscope-off.svg b/src/_icons/microscope-off.svg index b35e237d5..5a4ee39ba 100644 --- a/src/_icons/microscope-off.svg +++ b/src/_icons/microscope-off.svg @@ -5,12 +5,5 @@ unicode: "f40e" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/microscope.svg b/src/_icons/microscope.svg index 52165f40b..e1f9de9d3 100644 --- a/src/_icons/microscope.svg +++ b/src/_icons/microscope.svg @@ -5,11 +5,5 @@ version: "1.44" unicode: "ef64" --- - - - - - - - + diff --git a/src/_icons/microwave-off.svg b/src/_icons/microwave-off.svg index 2f2e54bf5..181093728 100644 --- a/src/_icons/microwave-off.svg +++ b/src/_icons/microwave-off.svg @@ -4,11 +4,5 @@ version: "1.76" unicode: "f264" --- - - - - - - - + diff --git a/src/_icons/microwave.svg b/src/_icons/microwave.svg index 6678d5505..72e0c4c8b 100644 --- a/src/_icons/microwave.svg +++ b/src/_icons/microwave.svg @@ -4,11 +4,5 @@ version: "1.74" unicode: "f248" --- - - - - - - - + diff --git a/src/_icons/military-award.svg b/src/_icons/military-award.svg index e66a327ce..6083f7f14 100644 --- a/src/_icons/military-award.svg +++ b/src/_icons/military-award.svg @@ -4,7 +4,5 @@ version: "1.50" unicode: "f079" --- - - - + diff --git a/src/_icons/military-rank.svg b/src/_icons/military-rank.svg index 027164048..583ba4128 100644 --- a/src/_icons/military-rank.svg +++ b/src/_icons/military-rank.svg @@ -4,8 +4,5 @@ version: "1.50" unicode: "efcf" --- - - - - + diff --git a/src/_icons/milk-off.svg b/src/_icons/milk-off.svg index d88908597..075781f22 100644 --- a/src/_icons/milk-off.svg +++ b/src/_icons/milk-off.svg @@ -5,8 +5,5 @@ unicode: "f40f" version: "1.94" --- - - - - + diff --git a/src/_icons/milk.svg b/src/_icons/milk.svg index 1ca607c07..d0e996dab 100644 --- a/src/_icons/milk.svg +++ b/src/_icons/milk.svg @@ -5,8 +5,5 @@ version: "1.40" unicode: "ef13" --- - - - - + diff --git a/src/_icons/milkshake.svg b/src/_icons/milkshake.svg index d1ebe865b..20b9e77b9 100644 --- a/src/_icons/milkshake.svg +++ b/src/_icons/milkshake.svg @@ -5,8 +5,5 @@ unicode: "f4c8" version: "1.98" --- - - - - + diff --git a/src/_icons/minimize.svg b/src/_icons/minimize.svg index 0b30a25d3..6264df9a4 100644 --- a/src/_icons/minimize.svg +++ b/src/_icons/minimize.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eaf1" --- - - - - + diff --git a/src/_icons/minus.svg b/src/_icons/minus.svg index 62bbf13c0..a6948b313 100644 --- a/src/_icons/minus.svg +++ b/src/_icons/minus.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "eaf2" --- - + diff --git a/src/_icons/mist-off.svg b/src/_icons/mist-off.svg index 0b480130b..a10f0d1e1 100644 --- a/src/_icons/mist-off.svg +++ b/src/_icons/mist-off.svg @@ -5,11 +5,5 @@ unicode: "f410" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/mist.svg b/src/_icons/mist.svg index 7dc18c457..5375ebecc 100644 --- a/src/_icons/mist.svg +++ b/src/_icons/mist.svg @@ -5,8 +5,5 @@ version: "1.10" unicode: "ec30" --- - - - - + diff --git a/src/_icons/moneybag.svg b/src/_icons/moneybag.svg index 2697c5c22..e99c47915 100644 --- a/src/_icons/moneybag.svg +++ b/src/_icons/moneybag.svg @@ -4,6 +4,5 @@ unicode: "f506" version: "1.101" --- - - + diff --git a/src/_icons/mood-angry.svg b/src/_icons/mood-angry.svg index b1e85dd7e..7a7f0e60c 100644 --- a/src/_icons/mood-angry.svg +++ b/src/_icons/mood-angry.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2de" --- - - - - + diff --git a/src/_icons/mood-annoyed-2.svg b/src/_icons/mood-annoyed-2.svg index 83afe974b..18dc08a8d 100644 --- a/src/_icons/mood-annoyed-2.svg +++ b/src/_icons/mood-annoyed-2.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2df" --- - - - - + diff --git a/src/_icons/mood-annoyed.svg b/src/_icons/mood-annoyed.svg index 6bc15383a..30ed797d9 100644 --- a/src/_icons/mood-annoyed.svg +++ b/src/_icons/mood-annoyed.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2e0" --- - - - - + diff --git a/src/_icons/mood-boy.svg b/src/_icons/mood-boy.svg index 1bd6c4241..7fbd58b12 100644 --- a/src/_icons/mood-boy.svg +++ b/src/_icons/mood-boy.svg @@ -5,10 +5,5 @@ version: "1.26" unicode: "ed2d" --- - - - - - - + diff --git a/src/_icons/mood-confuzed.svg b/src/_icons/mood-confuzed.svg index a56aeaa9f..f28e1861b 100644 --- a/src/_icons/mood-confuzed.svg +++ b/src/_icons/mood-confuzed.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaf3" --- - - - - + diff --git a/src/_icons/mood-crazy-happy.svg b/src/_icons/mood-crazy-happy.svg index b3ecdede0..1c3f23902 100644 --- a/src/_icons/mood-crazy-happy.svg +++ b/src/_icons/mood-crazy-happy.svg @@ -5,10 +5,5 @@ version: "1.34" unicode: "ed90" --- - - - - - - + diff --git a/src/_icons/mood-cry.svg b/src/_icons/mood-cry.svg index fee9f1886..5610a9d43 100644 --- a/src/_icons/mood-cry.svg +++ b/src/_icons/mood-cry.svg @@ -5,9 +5,5 @@ version: "1.18" unicode: "ecbb" --- - - - - - + diff --git a/src/_icons/mood-empty.svg b/src/_icons/mood-empty.svg index b3cc4185b..f02522995 100644 --- a/src/_icons/mood-empty.svg +++ b/src/_icons/mood-empty.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eeb5" --- - - - - + diff --git a/src/_icons/mood-happy.svg b/src/_icons/mood-happy.svg index 4be0fbf46..9a3b6ff67 100644 --- a/src/_icons/mood-happy.svg +++ b/src/_icons/mood-happy.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaf4" --- - - - - + diff --git a/src/_icons/mood-kid.svg b/src/_icons/mood-kid.svg index 54371b734..dad970027 100644 --- a/src/_icons/mood-kid.svg +++ b/src/_icons/mood-kid.svg @@ -5,9 +5,5 @@ version: "1.8" unicode: "ec03" --- - - - - - + diff --git a/src/_icons/mood-look-left.svg b/src/_icons/mood-look-left.svg index f05db8a45..8cf1d787c 100644 --- a/src/_icons/mood-look-left.svg +++ b/src/_icons/mood-look-left.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2c5" --- - - - + diff --git a/src/_icons/mood-look-right.svg b/src/_icons/mood-look-right.svg index 5bbdee0d3..4b4737174 100644 --- a/src/_icons/mood-look-right.svg +++ b/src/_icons/mood-look-right.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2c6" --- - - - + diff --git a/src/_icons/mood-nerd.svg b/src/_icons/mood-nerd.svg index e709b239c..32ff72b1c 100644 --- a/src/_icons/mood-nerd.svg +++ b/src/_icons/mood-nerd.svg @@ -5,11 +5,5 @@ version: "1.83" unicode: "f2e1" --- - - - - - - - + diff --git a/src/_icons/mood-nervous.svg b/src/_icons/mood-nervous.svg index fa3490acf..9db2e90ae 100644 --- a/src/_icons/mood-nervous.svg +++ b/src/_icons/mood-nervous.svg @@ -5,8 +5,5 @@ version: "1.47" unicode: "ef96" --- - - - - + diff --git a/src/_icons/mood-neutral.svg b/src/_icons/mood-neutral.svg index d0c29ca79..ce4bd13d3 100644 --- a/src/_icons/mood-neutral.svg +++ b/src/_icons/mood-neutral.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eaf5" --- - - - + diff --git a/src/_icons/mood-off.svg b/src/_icons/mood-off.svg index 6a65ddd6a..ead435270 100644 --- a/src/_icons/mood-off.svg +++ b/src/_icons/mood-off.svg @@ -4,9 +4,5 @@ version: "1.66" unicode: "f161" --- - - - - - + diff --git a/src/_icons/mood-sad-2.svg b/src/_icons/mood-sad-2.svg index 572019b7d..2bf67de7d 100644 --- a/src/_icons/mood-sad-2.svg +++ b/src/_icons/mood-sad-2.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2e2" --- - - - - + diff --git a/src/_icons/mood-sad-dizzy.svg b/src/_icons/mood-sad-dizzy.svg index f8ea18397..742bd4e21 100644 --- a/src/_icons/mood-sad-dizzy.svg +++ b/src/_icons/mood-sad-dizzy.svg @@ -5,10 +5,5 @@ version: "1.83" unicode: "f2e3" --- - - - - - - + diff --git a/src/_icons/mood-sad-squint.svg b/src/_icons/mood-sad-squint.svg index 9e1afb759..c8af3cbbf 100644 --- a/src/_icons/mood-sad-squint.svg +++ b/src/_icons/mood-sad-squint.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2e4" --- - - - - + diff --git a/src/_icons/mood-sad.svg b/src/_icons/mood-sad.svg index 5b0913784..0dd1e13fc 100644 --- a/src/_icons/mood-sad.svg +++ b/src/_icons/mood-sad.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaf6" --- - - - - + diff --git a/src/_icons/mood-sick.svg b/src/_icons/mood-sick.svg index 143b5b646..87634e197 100644 --- a/src/_icons/mood-sick.svg +++ b/src/_icons/mood-sick.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2e5" --- - - - - + diff --git a/src/_icons/mood-silence.svg b/src/_icons/mood-silence.svg index 9773265e4..3ba576964 100644 --- a/src/_icons/mood-silence.svg +++ b/src/_icons/mood-silence.svg @@ -5,11 +5,5 @@ version: "1.83" unicode: "f2e6" --- - - - - - - - + diff --git a/src/_icons/mood-sing.svg b/src/_icons/mood-sing.svg index efd2fd916..600f750f2 100644 --- a/src/_icons/mood-sing.svg +++ b/src/_icons/mood-sing.svg @@ -5,8 +5,5 @@ version: "1.81" unicode: "f2c7" --- - - - - + diff --git a/src/_icons/mood-smile-beam.svg b/src/_icons/mood-smile-beam.svg index 23efeda38..4b90e45a4 100644 --- a/src/_icons/mood-smile-beam.svg +++ b/src/_icons/mood-smile-beam.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2e7" --- - - - - + diff --git a/src/_icons/mood-smile-dizzy.svg b/src/_icons/mood-smile-dizzy.svg index acebd8814..0f58d5354 100644 --- a/src/_icons/mood-smile-dizzy.svg +++ b/src/_icons/mood-smile-dizzy.svg @@ -5,10 +5,5 @@ version: "1.83" unicode: "f2e8" --- - - - - - - + diff --git a/src/_icons/mood-smile.svg b/src/_icons/mood-smile.svg index be5e9c69b..829af0155 100644 --- a/src/_icons/mood-smile.svg +++ b/src/_icons/mood-smile.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eaf7" --- - - - - + diff --git a/src/_icons/mood-suprised.svg b/src/_icons/mood-suprised.svg index e0158d8a8..62ca5a097 100644 --- a/src/_icons/mood-suprised.svg +++ b/src/_icons/mood-suprised.svg @@ -5,8 +5,5 @@ version: "1.8" unicode: "ec04" --- - - - - + diff --git a/src/_icons/mood-tongue-wink-2.svg b/src/_icons/mood-tongue-wink-2.svg index 2db8b0914..55f5af1af 100644 --- a/src/_icons/mood-tongue-wink-2.svg +++ b/src/_icons/mood-tongue-wink-2.svg @@ -5,9 +5,5 @@ version: "1.83" unicode: "f2e9" --- - - - - - + diff --git a/src/_icons/mood-tongue-wink.svg b/src/_icons/mood-tongue-wink.svg index 48e048e58..17028224c 100644 --- a/src/_icons/mood-tongue-wink.svg +++ b/src/_icons/mood-tongue-wink.svg @@ -5,10 +5,5 @@ version: "1.83" unicode: "f2ea" --- - - - - - - + diff --git a/src/_icons/mood-tongue.svg b/src/_icons/mood-tongue.svg index 88d94c3c2..3b43b7a40 100644 --- a/src/_icons/mood-tongue.svg +++ b/src/_icons/mood-tongue.svg @@ -5,8 +5,5 @@ version: "1.3" unicode: "eb95" --- - - - - + diff --git a/src/_icons/mood-unamused.svg b/src/_icons/mood-unamused.svg index ece76dbf4..d97d2bec4 100644 --- a/src/_icons/mood-unamused.svg +++ b/src/_icons/mood-unamused.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2eb" --- - - - - + diff --git a/src/_icons/mood-wink-2.svg b/src/_icons/mood-wink-2.svg index 5fb35e282..6e9aed5ec 100644 --- a/src/_icons/mood-wink-2.svg +++ b/src/_icons/mood-wink-2.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2ec" --- - - - - + diff --git a/src/_icons/mood-wink.svg b/src/_icons/mood-wink.svg index a3454d5b3..f8cdac5f4 100644 --- a/src/_icons/mood-wink.svg +++ b/src/_icons/mood-wink.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2ed" --- - - - - + diff --git a/src/_icons/mood-wrrr.svg b/src/_icons/mood-wrrr.svg index b19238f28..1a9c347ea 100644 --- a/src/_icons/mood-wrrr.svg +++ b/src/_icons/mood-wrrr.svg @@ -5,8 +5,5 @@ version: "1.83" unicode: "f2ee" --- - - - - + diff --git a/src/_icons/mood-xd.svg b/src/_icons/mood-xd.svg index 3b29abbd1..913dc0c39 100644 --- a/src/_icons/mood-xd.svg +++ b/src/_icons/mood-xd.svg @@ -5,9 +5,5 @@ version: "1.83" unicode: "f2ef" --- - - - - - + diff --git a/src/_icons/moon-2.svg b/src/_icons/moon-2.svg index d6bd4b402..b544b5325 100644 --- a/src/_icons/moon-2.svg +++ b/src/_icons/moon-2.svg @@ -5,6 +5,5 @@ version: "1.21" unicode: "ece6" --- - - + diff --git a/src/_icons/moon-filled.svg b/src/_icons/moon-filled.svg new file mode 100644 index 000000000..79a8778e6 --- /dev/null +++ b/src/_icons/moon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f684" +--- + + + diff --git a/src/_icons/moon-off.svg b/src/_icons/moon-off.svg index 1ff100e77..a8d558299 100644 --- a/src/_icons/moon-off.svg +++ b/src/_icons/moon-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f162" --- - - + diff --git a/src/_icons/moon-stars.svg b/src/_icons/moon-stars.svg index 84dba5df6..e221836ad 100644 --- a/src/_icons/moon-stars.svg +++ b/src/_icons/moon-stars.svg @@ -5,7 +5,5 @@ version: "1.21" unicode: "ece7" --- - - - + diff --git a/src/_icons/moped.svg b/src/_icons/moped.svg index 35203042b..cec09c21f 100644 --- a/src/_icons/moped.svg +++ b/src/_icons/moped.svg @@ -5,7 +5,5 @@ version: "1.18" unicode: "ecbc" --- - - - + diff --git a/src/_icons/motorbike.svg b/src/_icons/motorbike.svg index 35c66ea07..f1dfb58d8 100644 --- a/src/_icons/motorbike.svg +++ b/src/_icons/motorbike.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eeb6" --- - - - - + diff --git a/src/_icons/mountain-off.svg b/src/_icons/mountain-off.svg index ea0d0a41b..ad75b7cec 100644 --- a/src/_icons/mountain-off.svg +++ b/src/_icons/mountain-off.svg @@ -4,7 +4,5 @@ unicode: "f411" version: "1.94" --- - - - + diff --git a/src/_icons/mountain.svg b/src/_icons/mountain.svg index 9b0dedd50..ab02015b2 100644 --- a/src/_icons/mountain.svg +++ b/src/_icons/mountain.svg @@ -4,6 +4,5 @@ version: "1.47" unicode: "ef97" --- - - + diff --git a/src/_icons/mouse-2.svg b/src/_icons/mouse-2.svg index 21872db81..6141bab74 100644 --- a/src/_icons/mouse-2.svg +++ b/src/_icons/mouse-2.svg @@ -5,7 +5,5 @@ version: "1.68" unicode: "f1d7" --- - - - + diff --git a/src/_icons/mouse-off.svg b/src/_icons/mouse-off.svg index 7b68cde7c..78148bb38 100644 --- a/src/_icons/mouse-off.svg +++ b/src/_icons/mouse-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f163" --- - - - + diff --git a/src/_icons/mouse.svg b/src/_icons/mouse.svg index 35c77aa72..dcd0460f2 100644 --- a/src/_icons/mouse.svg +++ b/src/_icons/mouse.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eaf9" --- - - + diff --git a/src/_icons/moustache.svg b/src/_icons/moustache.svg index 7ecd20519..9427ad430 100644 --- a/src/_icons/moustache.svg +++ b/src/_icons/moustache.svg @@ -4,6 +4,5 @@ unicode: "f4c9" version: "1.98" --- - - + diff --git a/src/_icons/movie-off.svg b/src/_icons/movie-off.svg index a2eee6d57..4394b4474 100644 --- a/src/_icons/movie-off.svg +++ b/src/_icons/movie-off.svg @@ -5,12 +5,5 @@ version: "1.66" unicode: "f164" --- - - - - - - - - + diff --git a/src/_icons/movie.svg b/src/_icons/movie.svg index 1177aea86..338a6ef70 100644 --- a/src/_icons/movie.svg +++ b/src/_icons/movie.svg @@ -5,12 +5,5 @@ version: "1.0" unicode: "eafa" --- - - - - - - - - + diff --git a/src/_icons/mug-off.svg b/src/_icons/mug-off.svg index f6dc400f1..78b27fe67 100644 --- a/src/_icons/mug-off.svg +++ b/src/_icons/mug-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f165" --- - - - + diff --git a/src/_icons/mug.svg b/src/_icons/mug.svg index 44bd279df..f2668ed14 100644 --- a/src/_icons/mug.svg +++ b/src/_icons/mug.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eafb" --- - - + diff --git a/src/_icons/multiplier-0-5x.svg b/src/_icons/multiplier-0-5x.svg index b333ed62f..3b3685a68 100644 --- a/src/_icons/multiplier-0-5x.svg +++ b/src/_icons/multiplier-0-5x.svg @@ -5,8 +5,5 @@ version: "1.42" unicode: "ef41" --- - - - - + diff --git a/src/_icons/multiplier-1-5x.svg b/src/_icons/multiplier-1-5x.svg index 59edba18b..260931108 100644 --- a/src/_icons/multiplier-1-5x.svg +++ b/src/_icons/multiplier-1-5x.svg @@ -5,9 +5,5 @@ version: "1.42" unicode: "ef42" --- - - - - - + diff --git a/src/_icons/multiplier-1x.svg b/src/_icons/multiplier-1x.svg index da0e3d12d..e9ab9e5b8 100644 --- a/src/_icons/multiplier-1x.svg +++ b/src/_icons/multiplier-1x.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef43" --- - - - + diff --git a/src/_icons/multiplier-2x.svg b/src/_icons/multiplier-2x.svg index 06b64f652..b7d93da3c 100644 --- a/src/_icons/multiplier-2x.svg +++ b/src/_icons/multiplier-2x.svg @@ -5,7 +5,5 @@ version: "1.42" unicode: "ef44" --- - - - + diff --git a/src/_icons/mushroom-off.svg b/src/_icons/mushroom-off.svg index d2a90e44a..361fa47ab 100644 --- a/src/_icons/mushroom-off.svg +++ b/src/_icons/mushroom-off.svg @@ -5,7 +5,5 @@ unicode: "f412" version: "1.94" --- - - - + diff --git a/src/_icons/mushroom.svg b/src/_icons/mushroom.svg index 928810861..73154c234 100644 --- a/src/_icons/mushroom.svg +++ b/src/_icons/mushroom.svg @@ -5,6 +5,5 @@ version: "1.40" unicode: "ef14" --- - - + diff --git a/src/_icons/music-off.svg b/src/_icons/music-off.svg index 010aaeb72..e6f7f5d64 100644 --- a/src/_icons/music-off.svg +++ b/src/_icons/music-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f166" --- - - - - - + diff --git a/src/_icons/music.svg b/src/_icons/music.svg index 569573221..68ca156ae 100644 --- a/src/_icons/music.svg +++ b/src/_icons/music.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eafc" --- - - - - + diff --git a/src/_icons/navigation-filled.svg b/src/_icons/navigation-filled.svg new file mode 100644 index 000000000..66ee4fae1 --- /dev/null +++ b/src/_icons/navigation-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f685" +--- + + + diff --git a/src/_icons/navigation-off.svg b/src/_icons/navigation-off.svg index e22ec7e26..d882280ac 100644 --- a/src/_icons/navigation-off.svg +++ b/src/_icons/navigation-off.svg @@ -5,6 +5,5 @@ unicode: "f413" version: "1.94" --- - - + diff --git a/src/_icons/needle-thread.svg b/src/_icons/needle-thread.svg index b847b7b66..9f2077cdf 100644 --- a/src/_icons/needle-thread.svg +++ b/src/_icons/needle-thread.svg @@ -4,9 +4,5 @@ unicode: "f507" version: "1.101" --- - - - - - + diff --git a/src/_icons/needle.svg b/src/_icons/needle.svg index 92629fe58..5db098d38 100644 --- a/src/_icons/needle.svg +++ b/src/_icons/needle.svg @@ -4,6 +4,5 @@ unicode: "f508" version: "1.101" --- - - + diff --git a/src/_icons/network-off.svg b/src/_icons/network-off.svg index bd7c5eec1..824455892 100644 --- a/src/_icons/network-off.svg +++ b/src/_icons/network-off.svg @@ -4,13 +4,5 @@ unicode: "f414" version: "1.94" --- - - - - - - - - - + diff --git a/src/_icons/network.svg b/src/_icons/network.svg index c89d669a3..f6dd79bd9 100644 --- a/src/_icons/network.svg +++ b/src/_icons/network.svg @@ -4,12 +4,5 @@ version: "1.61" unicode: "f09f" --- - - - - - - - - + diff --git a/src/_icons/new-section.svg b/src/_icons/new-section.svg index 9aecac94e..0705aced6 100644 --- a/src/_icons/new-section.svg +++ b/src/_icons/new-section.svg @@ -4,7 +4,5 @@ version: "1.5" unicode: "ebc1" --- - - - + diff --git a/src/_icons/news-off.svg b/src/_icons/news-off.svg index d31417852..e85faa377 100644 --- a/src/_icons/news-off.svg +++ b/src/_icons/news-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f167" --- - - - - + diff --git a/src/_icons/news.svg b/src/_icons/news.svg index 6f4d81678..94b3efc9c 100644 --- a/src/_icons/news.svg +++ b/src/_icons/news.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eafd" --- - - - - + diff --git a/src/_icons/nfc-off.svg b/src/_icons/nfc-off.svg index 7bb594b94..c3f357a71 100644 --- a/src/_icons/nfc-off.svg +++ b/src/_icons/nfc-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f168" --- - - - - + diff --git a/src/_icons/nfc.svg b/src/_icons/nfc.svg index cbd4d192a..9e1ab853b 100644 --- a/src/_icons/nfc.svg +++ b/src/_icons/nfc.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eeb7" --- - - - + diff --git a/src/_icons/no-copyright.svg b/src/_icons/no-copyright.svg index 97dba8fda..46d738397 100644 --- a/src/_icons/no-copyright.svg +++ b/src/_icons/no-copyright.svg @@ -4,8 +4,5 @@ version: "1.49" unicode: "efb9" --- - - - - + diff --git a/src/_icons/no-creative-commons.svg b/src/_icons/no-creative-commons.svg index 143ba7c8b..5a9a4c7aa 100644 --- a/src/_icons/no-creative-commons.svg +++ b/src/_icons/no-creative-commons.svg @@ -4,9 +4,5 @@ version: "1.49" unicode: "efba" --- - - - - - + diff --git a/src/_icons/no-derivatives.svg b/src/_icons/no-derivatives.svg index c9a8d592e..10b078ae7 100644 --- a/src/_icons/no-derivatives.svg +++ b/src/_icons/no-derivatives.svg @@ -4,7 +4,5 @@ version: "1.49" unicode: "efbb" --- - - - + diff --git a/src/_icons/north-star.svg b/src/_icons/north-star.svg index 5f4c65f37..68ee6846b 100644 --- a/src/_icons/north-star.svg +++ b/src/_icons/north-star.svg @@ -5,8 +5,5 @@ category: Map unicode: "f014" --- - - - - + diff --git a/src/_icons/note-off.svg b/src/_icons/note-off.svg index 175ee3d50..5ed56c38c 100644 --- a/src/_icons/note-off.svg +++ b/src/_icons/note-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f169" --- - - - + diff --git a/src/_icons/note.svg b/src/_icons/note.svg index 831ea2f76..0a25e075a 100644 --- a/src/_icons/note.svg +++ b/src/_icons/note.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb6d" --- - - + diff --git a/src/_icons/notebook-off.svg b/src/_icons/notebook-off.svg index 517637ea9..eb2d929f1 100644 --- a/src/_icons/notebook-off.svg +++ b/src/_icons/notebook-off.svg @@ -5,7 +5,5 @@ unicode: "f415" version: "1.94" --- - - - + diff --git a/src/_icons/notebook.svg b/src/_icons/notebook.svg index d7c386861..33cad790d 100644 --- a/src/_icons/notebook.svg +++ b/src/_icons/notebook.svg @@ -5,7 +5,5 @@ version: "1.3" unicode: "eb96" --- - - - + diff --git a/src/_icons/notes-off.svg b/src/_icons/notes-off.svg index 37dcac255..9afe7c0ff 100644 --- a/src/_icons/notes-off.svg +++ b/src/_icons/notes-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f16a" --- - - - - - + diff --git a/src/_icons/notes.svg b/src/_icons/notes.svg index b5c4a80a4..57a594cec 100644 --- a/src/_icons/notes.svg +++ b/src/_icons/notes.svg @@ -5,8 +5,5 @@ version: "1.2" unicode: "eb6e" --- - - - - + diff --git a/src/_icons/notification-off.svg b/src/_icons/notification-off.svg index fd6649a81..252be222a 100644 --- a/src/_icons/notification-off.svg +++ b/src/_icons/notification-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f16b" --- - - - + diff --git a/src/_icons/notification.svg b/src/_icons/notification.svg index 28494342c..1ef955185 100644 --- a/src/_icons/notification.svg +++ b/src/_icons/notification.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eafe" --- - - + diff --git a/src/_icons/number-0.svg b/src/_icons/number-0.svg index 571945689..37726a51e 100644 --- a/src/_icons/number-0.svg +++ b/src/_icons/number-0.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edf0" --- - - + diff --git a/src/_icons/number-3.svg b/src/_icons/number-3.svg index 4f2b6a561..1a77f8b8e 100644 --- a/src/_icons/number-3.svg +++ b/src/_icons/number-3.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edf3" --- - - + diff --git a/src/_icons/number-6.svg b/src/_icons/number-6.svg index 34ca90a4d..d82100372 100644 --- a/src/_icons/number-6.svg +++ b/src/_icons/number-6.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edf6" --- - - + diff --git a/src/_icons/number-8.svg b/src/_icons/number-8.svg index ec8d141ce..22b3f9276 100644 --- a/src/_icons/number-8.svg +++ b/src/_icons/number-8.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edf8" --- - - + diff --git a/src/_icons/number-9.svg b/src/_icons/number-9.svg index aed12547e..1e8febf2b 100644 --- a/src/_icons/number-9.svg +++ b/src/_icons/number-9.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edf9" --- - - + diff --git a/src/_icons/number.svg b/src/_icons/number.svg index be046e8a8..bd6dc5b4c 100644 --- a/src/_icons/number.svg +++ b/src/_icons/number.svg @@ -4,7 +4,5 @@ version: "1.70" unicode: "f1fe" --- - - - + diff --git a/src/_icons/numbers.svg b/src/_icons/numbers.svg index 0179744ca..27e7954d9 100644 --- a/src/_icons/numbers.svg +++ b/src/_icons/numbers.svg @@ -4,8 +4,5 @@ version: "1.54" unicode: "f015" --- - - - - + diff --git a/src/_icons/nurse.svg b/src/_icons/nurse.svg index 8b4a300ed..784d7f284 100644 --- a/src/_icons/nurse.svg +++ b/src/_icons/nurse.svg @@ -5,7 +5,5 @@ version: "1.44" unicode: "ef65" --- - - - + diff --git a/src/_icons/octagon-filled.svg b/src/_icons/octagon-filled.svg new file mode 100644 index 000000000..188b60fd7 --- /dev/null +++ b/src/_icons/octagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f686" +--- + + + diff --git a/src/_icons/octagon-off.svg b/src/_icons/octagon-off.svg index d469affea..4ba3ea932 100644 --- a/src/_icons/octagon-off.svg +++ b/src/_icons/octagon-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeb8" --- - - + diff --git a/src/_icons/old.svg b/src/_icons/old.svg index bf9621632..c955287cb 100644 --- a/src/_icons/old.svg +++ b/src/_icons/old.svg @@ -5,9 +5,5 @@ category: Health unicode: "eeb9" --- - - - - - + diff --git a/src/_icons/olympics-off.svg b/src/_icons/olympics-off.svg index b8b49917f..ea40f9111 100644 --- a/src/_icons/olympics-off.svg +++ b/src/_icons/olympics-off.svg @@ -5,10 +5,5 @@ unicode: "f416" version: "1.94" --- - - - - - - + diff --git a/src/_icons/olympics.svg b/src/_icons/olympics.svg index 480000f21..c87e56089 100644 --- a/src/_icons/olympics.svg +++ b/src/_icons/olympics.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eeba" --- - - - - - + diff --git a/src/_icons/om.svg b/src/_icons/om.svg index da2a9eb2e..398826aff 100644 --- a/src/_icons/om.svg +++ b/src/_icons/om.svg @@ -5,9 +5,5 @@ unicode: "f58d" version: "1.109" --- - - - - - + diff --git a/src/_icons/outbound.svg b/src/_icons/outbound.svg index f70730eeb..de40aedd9 100644 --- a/src/_icons/outbound.svg +++ b/src/_icons/outbound.svg @@ -4,7 +4,5 @@ version: "1.74" unicode: "f249" --- - - - + diff --git a/src/_icons/outlet.svg b/src/_icons/outlet.svg index 9c6c9fef4..b6a883397 100644 --- a/src/_icons/outlet.svg +++ b/src/_icons/outlet.svg @@ -4,7 +4,5 @@ version: "1.6" unicode: "ebd7" --- - - - + diff --git a/src/_icons/oval-filled.svg b/src/_icons/oval-filled.svg new file mode 100644 index 000000000..5f11c2fb8 --- /dev/null +++ b/src/_icons/oval-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f687" +--- + + + diff --git a/src/_icons/oval-vertical-filled.svg b/src/_icons/oval-vertical-filled.svg new file mode 100644 index 000000000..a07954af2 --- /dev/null +++ b/src/_icons/oval-vertical-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f688" +--- + + + diff --git a/src/_icons/oval.svg b/src/_icons/oval.svg index cdef22c4f..af8912fa3 100644 --- a/src/_icons/oval.svg +++ b/src/_icons/oval.svg @@ -5,5 +5,5 @@ version: "1.55" unicode: "f02e" --- - + diff --git a/src/_icons/overline.svg b/src/_icons/overline.svg index 95266483f..49307fa5f 100644 --- a/src/_icons/overline.svg +++ b/src/_icons/overline.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eebb" --- - - + diff --git a/src/_icons/package-off.svg b/src/_icons/package-off.svg index 3db504735..b5abadee7 100644 --- a/src/_icons/package-off.svg +++ b/src/_icons/package-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f16c" --- - - - - - - + diff --git a/src/_icons/package.svg b/src/_icons/package.svg index 4f7490950..6e6d71fec 100644 --- a/src/_icons/package.svg +++ b/src/_icons/package.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eaff" --- - - - - - + diff --git a/src/_icons/packages.svg b/src/_icons/packages.svg index 34ea19d8d..796c2b7be 100644 --- a/src/_icons/packages.svg +++ b/src/_icons/packages.svg @@ -4,13 +4,5 @@ version: "1.81" unicode: "f2c9" --- - - - - - - - - - + diff --git a/src/_icons/packge-export.svg b/src/_icons/packge-export.svg index 2b3a7f773..130c8f2f5 100644 --- a/src/_icons/packge-export.svg +++ b/src/_icons/packge-export.svg @@ -4,10 +4,5 @@ version: "1.59" unicode: "f07a" --- - - - - - - + diff --git a/src/_icons/packge-import.svg b/src/_icons/packge-import.svg index 9e7a33fbc..9a664c4ac 100644 --- a/src/_icons/packge-import.svg +++ b/src/_icons/packge-import.svg @@ -4,10 +4,5 @@ version: "1.59" unicode: "f07b" --- - - - - - - + diff --git a/src/_icons/pacman.svg b/src/_icons/pacman.svg index 487aee3ce..27e692c36 100644 --- a/src/_icons/pacman.svg +++ b/src/_icons/pacman.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "eebc" --- - - + diff --git a/src/_icons/page-break.svg b/src/_icons/page-break.svg index f18caae6e..29e986d65 100644 --- a/src/_icons/page-break.svg +++ b/src/_icons/page-break.svg @@ -4,8 +4,5 @@ version: "1.14" unicode: "ec81" --- - - - - + diff --git a/src/_icons/paint-off.svg b/src/_icons/paint-off.svg index 03aac53b9..eb79318df 100644 --- a/src/_icons/paint-off.svg +++ b/src/_icons/paint-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f16d" --- - - - - + diff --git a/src/_icons/paint.svg b/src/_icons/paint.svg index 8bbf1f50d..d426817e2 100644 --- a/src/_icons/paint.svg +++ b/src/_icons/paint.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb00" --- - - - + diff --git a/src/_icons/palette-off.svg b/src/_icons/palette-off.svg index b84ccb3ba..0e8f21be4 100644 --- a/src/_icons/palette-off.svg +++ b/src/_icons/palette-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f16e" --- - - - - - - + diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg index 7a34f7f45..17a4ff222 100644 --- a/src/_icons/palette.svg +++ b/src/_icons/palette.svg @@ -5,8 +5,5 @@ version: "1.1" unicode: "eb01" --- - - - - + diff --git a/src/_icons/panorama-horizontal-off.svg b/src/_icons/panorama-horizontal-off.svg index a1fc44ac0..b7b4dbe0a 100644 --- a/src/_icons/panorama-horizontal-off.svg +++ b/src/_icons/panorama-horizontal-off.svg @@ -5,6 +5,5 @@ unicode: "f417" version: "1.94" --- - - + diff --git a/src/_icons/panorama-horizontal.svg b/src/_icons/panorama-horizontal.svg index 854b995d7..c0d0fe30f 100644 --- a/src/_icons/panorama-horizontal.svg +++ b/src/_icons/panorama-horizontal.svg @@ -5,5 +5,5 @@ version: "1.27" unicode: "ed33" --- - + diff --git a/src/_icons/panorama-vertical-off.svg b/src/_icons/panorama-vertical-off.svg index bf663b700..6e92b82df 100644 --- a/src/_icons/panorama-vertical-off.svg +++ b/src/_icons/panorama-vertical-off.svg @@ -5,6 +5,5 @@ unicode: "f418" version: "1.94" --- - - + diff --git a/src/_icons/paper-bag-off.svg b/src/_icons/paper-bag-off.svg index 1939bbcf9..f4cb28045 100644 --- a/src/_icons/paper-bag-off.svg +++ b/src/_icons/paper-bag-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f16f" --- - - - - - + diff --git a/src/_icons/paper-bag.svg b/src/_icons/paper-bag.svg index 2d8b1343b..715cf8e63 100644 --- a/src/_icons/paper-bag.svg +++ b/src/_icons/paper-bag.svg @@ -5,8 +5,5 @@ version: "1.55" unicode: "f02f" --- - - - - + diff --git a/src/_icons/parachute-off.svg b/src/_icons/parachute-off.svg index 16ef0a9c2..a62bf6810 100644 --- a/src/_icons/parachute-off.svg +++ b/src/_icons/parachute-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f170" --- - - - - - + diff --git a/src/_icons/parachute.svg b/src/_icons/parachute.svg index a7435867f..2424f50b8 100644 --- a/src/_icons/parachute.svg +++ b/src/_icons/parachute.svg @@ -5,8 +5,5 @@ version: "1.33" unicode: "ed7c" --- - - - - + diff --git a/src/_icons/parentheses-off.svg b/src/_icons/parentheses-off.svg index 128f895a2..a5eb34128 100644 --- a/src/_icons/parentheses-off.svg +++ b/src/_icons/parentheses-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f171" --- - - - + diff --git a/src/_icons/parentheses.svg b/src/_icons/parentheses.svg index 388d524a2..6f804e97b 100644 --- a/src/_icons/parentheses.svg +++ b/src/_icons/parentheses.svg @@ -5,6 +5,5 @@ version: "1.6" unicode: "ebd8" --- - - + diff --git a/src/_icons/parking-off.svg b/src/_icons/parking-off.svg index f482d8a06..087b81e82 100644 --- a/src/_icons/parking-off.svg +++ b/src/_icons/parking-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f172" --- - - - + diff --git a/src/_icons/parking.svg b/src/_icons/parking.svg index 21180694b..cedfbb480 100644 --- a/src/_icons/parking.svg +++ b/src/_icons/parking.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb03" --- - - + diff --git a/src/_icons/password.svg b/src/_icons/password.svg index e348c5b3d..9bea7ef18 100644 --- a/src/_icons/password.svg +++ b/src/_icons/password.svg @@ -4,13 +4,5 @@ unicode: "f4ca" version: "1.98" --- - - - - - - - - - + diff --git a/src/_icons/paw-filled.svg b/src/_icons/paw-filled.svg new file mode 100644 index 000000000..6bad26213 --- /dev/null +++ b/src/_icons/paw-filled.svg @@ -0,0 +1,12 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f689" +--- + + + + + + + diff --git a/src/_icons/paw-off.svg b/src/_icons/paw-off.svg index 081249914..5c0bf17b0 100644 --- a/src/_icons/paw-off.svg +++ b/src/_icons/paw-off.svg @@ -4,10 +4,5 @@ unicode: "f419" version: "1.94" --- - - - - - - + diff --git a/src/_icons/paw.svg b/src/_icons/paw.svg index 9dfc5a5e6..7ed115b41 100644 --- a/src/_icons/paw.svg +++ b/src/_icons/paw.svg @@ -4,9 +4,5 @@ version: "1.52" unicode: "eff9" --- - - - - - + diff --git a/src/_icons/peace.svg b/src/_icons/peace.svg index 5cc97d183..2865fde3c 100644 --- a/src/_icons/peace.svg +++ b/src/_icons/peace.svg @@ -5,8 +5,5 @@ version: "1.18" unicode: "ecbe" --- - - - - + diff --git a/src/_icons/pencil-minus.svg b/src/_icons/pencil-minus.svg index 5b271f822..060e470be 100644 --- a/src/_icons/pencil-minus.svg +++ b/src/_icons/pencil-minus.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1eb" --- - - - + diff --git a/src/_icons/pencil-off.svg b/src/_icons/pencil-off.svg index d7e564ffd..08da2517d 100644 --- a/src/_icons/pencil-off.svg +++ b/src/_icons/pencil-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f173" --- - - - + diff --git a/src/_icons/pencil-plus.svg b/src/_icons/pencil-plus.svg index 6fc99043b..01cdc5f82 100644 --- a/src/_icons/pencil-plus.svg +++ b/src/_icons/pencil-plus.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1ec" --- - - - + diff --git a/src/_icons/pencil.svg b/src/_icons/pencil.svg index e49042d95..5bb9b1e09 100644 --- a/src/_icons/pencil.svg +++ b/src/_icons/pencil.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eb04" --- - - + diff --git a/src/_icons/pennant-2-filled.svg b/src/_icons/pennant-2-filled.svg new file mode 100644 index 000000000..f4a3bc22f --- /dev/null +++ b/src/_icons/pennant-2-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68a" +--- + + + diff --git a/src/_icons/pennant-2.svg b/src/_icons/pennant-2.svg index 218e43b71..ee3894389 100644 --- a/src/_icons/pennant-2.svg +++ b/src/_icons/pennant-2.svg @@ -5,7 +5,5 @@ version: "1.58" unicode: "f06a" --- - - - + diff --git a/src/_icons/pennant-filled.svg b/src/_icons/pennant-filled.svg new file mode 100644 index 000000000..e8406365e --- /dev/null +++ b/src/_icons/pennant-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68b" +--- + + + diff --git a/src/_icons/pennant-off.svg b/src/_icons/pennant-off.svg index e6de452ec..a1a76defe 100644 --- a/src/_icons/pennant-off.svg +++ b/src/_icons/pennant-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f174" --- - - - - + diff --git a/src/_icons/pennant.svg b/src/_icons/pennant.svg index d2c52de16..7a13af7e7 100644 --- a/src/_icons/pennant.svg +++ b/src/_icons/pennant.svg @@ -5,7 +5,5 @@ version: "1.33" unicode: "ed7d" --- - - - + diff --git a/src/_icons/pentagon-filled.svg b/src/_icons/pentagon-filled.svg new file mode 100644 index 000000000..bc619bb00 --- /dev/null +++ b/src/_icons/pentagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68c" +--- + + + diff --git a/src/_icons/pentagon-off.svg b/src/_icons/pentagon-off.svg index fc8fde23c..34b743fb5 100644 --- a/src/_icons/pentagon-off.svg +++ b/src/_icons/pentagon-off.svg @@ -5,6 +5,5 @@ unicode: "f41a" version: "1.94" --- - - + diff --git a/src/_icons/pentagon.svg b/src/_icons/pentagon.svg index 213c6720d..6dc6851a8 100644 --- a/src/_icons/pentagon.svg +++ b/src/_icons/pentagon.svg @@ -5,5 +5,5 @@ version: "1.51" unicode: "efe3" --- - + diff --git a/src/_icons/pentagram.svg b/src/_icons/pentagram.svg index 914e65004..2da061573 100644 --- a/src/_icons/pentagram.svg +++ b/src/_icons/pentagram.svg @@ -4,6 +4,5 @@ unicode: "f586" version: "1.108" --- - - + diff --git a/src/_icons/pepper-off.svg b/src/_icons/pepper-off.svg index af842c42d..9c2b20dd1 100644 --- a/src/_icons/pepper-off.svg +++ b/src/_icons/pepper-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f175" --- - - - + diff --git a/src/_icons/pepper.svg b/src/_icons/pepper.svg index 0ca5afd09..7efa06171 100644 --- a/src/_icons/pepper.svg +++ b/src/_icons/pepper.svg @@ -5,6 +5,5 @@ version: "1.40" unicode: "ef15" --- - - + diff --git a/src/_icons/percentage.svg b/src/_icons/percentage.svg index d6568616a..363c205e5 100644 --- a/src/_icons/percentage.svg +++ b/src/_icons/percentage.svg @@ -5,7 +5,5 @@ version: "1.22" unicode: "ecf4" --- - - - + diff --git a/src/_icons/perfume.svg b/src/_icons/perfume.svg index 86c823bd6..0d54c6243 100644 --- a/src/_icons/perfume.svg +++ b/src/_icons/perfume.svg @@ -4,9 +4,5 @@ unicode: "f509" version: "1.101" --- - - - - - + diff --git a/src/_icons/perspective-off.svg b/src/_icons/perspective-off.svg index 09b1fd0c9..ef332d42a 100644 --- a/src/_icons/perspective-off.svg +++ b/src/_icons/perspective-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f176" --- - - + diff --git a/src/_icons/phone-call.svg b/src/_icons/phone-call.svg index c08be864a..7c03e5fd7 100644 --- a/src/_icons/phone-call.svg +++ b/src/_icons/phone-call.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb05" --- - - - + diff --git a/src/_icons/phone-calling.svg b/src/_icons/phone-calling.svg index 52aadf565..7221d34ff 100644 --- a/src/_icons/phone-calling.svg +++ b/src/_icons/phone-calling.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec43" --- - - - - + diff --git a/src/_icons/phone-check.svg b/src/_icons/phone-check.svg index a9432db8d..44fe84de4 100644 --- a/src/_icons/phone-check.svg +++ b/src/_icons/phone-check.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec05" --- - - + diff --git a/src/_icons/phone-incoming.svg b/src/_icons/phone-incoming.svg index ce118b528..7266285de 100644 --- a/src/_icons/phone-incoming.svg +++ b/src/_icons/phone-incoming.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb06" --- - - - + diff --git a/src/_icons/phone-off.svg b/src/_icons/phone-off.svg index c0e8c3c70..05bd4acb8 100644 --- a/src/_icons/phone-off.svg +++ b/src/_icons/phone-off.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "ecf5" --- - - + diff --git a/src/_icons/phone-outgoing.svg b/src/_icons/phone-outgoing.svg index d25156c13..3b232a757 100644 --- a/src/_icons/phone-outgoing.svg +++ b/src/_icons/phone-outgoing.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb07" --- - - - + diff --git a/src/_icons/phone-pause.svg b/src/_icons/phone-pause.svg index f5f7a8222..caeb10a77 100644 --- a/src/_icons/phone-pause.svg +++ b/src/_icons/phone-pause.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb08" --- - - - + diff --git a/src/_icons/phone-plus.svg b/src/_icons/phone-plus.svg index e7a0b859f..9cab66db1 100644 --- a/src/_icons/phone-plus.svg +++ b/src/_icons/phone-plus.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec06" --- - - + diff --git a/src/_icons/phone-x.svg b/src/_icons/phone-x.svg index 89c6b5cc7..0b3e10fcc 100644 --- a/src/_icons/phone-x.svg +++ b/src/_icons/phone-x.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec07" --- - - + diff --git a/src/_icons/photo-cancel.svg b/src/_icons/photo-cancel.svg index 98c442eb6..1fdcb4d07 100644 --- a/src/_icons/photo-cancel.svg +++ b/src/_icons/photo-cancel.svg @@ -5,10 +5,5 @@ unicode: "f35d" version: "1.89" --- - - - - - - + diff --git a/src/_icons/photo-check.svg b/src/_icons/photo-check.svg index 0d780ff5d..6738b2c13 100644 --- a/src/_icons/photo-check.svg +++ b/src/_icons/photo-check.svg @@ -5,9 +5,5 @@ unicode: "f35e" version: "1.89" --- - - - - - + diff --git a/src/_icons/photo-down.svg b/src/_icons/photo-down.svg index d6ca23b93..07e0b24e7 100644 --- a/src/_icons/photo-down.svg +++ b/src/_icons/photo-down.svg @@ -5,10 +5,5 @@ unicode: "f35f" version: "1.89" --- - - - - - - + diff --git a/src/_icons/photo-edit.svg b/src/_icons/photo-edit.svg index 98d245b91..2fccce451 100644 --- a/src/_icons/photo-edit.svg +++ b/src/_icons/photo-edit.svg @@ -5,9 +5,5 @@ unicode: "f360" version: "1.89" --- - - - - - + diff --git a/src/_icons/photo-heart.svg b/src/_icons/photo-heart.svg index 5d7fe0a37..9140478ff 100644 --- a/src/_icons/photo-heart.svg +++ b/src/_icons/photo-heart.svg @@ -5,8 +5,5 @@ unicode: "f361" version: "1.89" --- - - - - + diff --git a/src/_icons/photo-minus.svg b/src/_icons/photo-minus.svg index 388373457..7f5af2fda 100644 --- a/src/_icons/photo-minus.svg +++ b/src/_icons/photo-minus.svg @@ -5,9 +5,5 @@ unicode: "f362" version: "1.89" --- - - - - - + diff --git a/src/_icons/photo-off.svg b/src/_icons/photo-off.svg index e7477c2f4..0ddeb2163 100644 --- a/src/_icons/photo-off.svg +++ b/src/_icons/photo-off.svg @@ -5,9 +5,5 @@ version: "1.22" unicode: "ecf6" --- - - - - - + diff --git a/src/_icons/photo-plus.svg b/src/_icons/photo-plus.svg index 88a2ed79b..dccc891df 100644 --- a/src/_icons/photo-plus.svg +++ b/src/_icons/photo-plus.svg @@ -5,10 +5,5 @@ unicode: "f363" version: "1.89" --- - - - - - - + diff --git a/src/_icons/photo-search.svg b/src/_icons/photo-search.svg index c0e49cc27..9f10ddcbd 100644 --- a/src/_icons/photo-search.svg +++ b/src/_icons/photo-search.svg @@ -5,9 +5,5 @@ unicode: "f364" version: "1.89" --- - - - - - + diff --git a/src/_icons/photo-shield.svg b/src/_icons/photo-shield.svg index d08c5ef7b..c5485bcab 100644 --- a/src/_icons/photo-shield.svg +++ b/src/_icons/photo-shield.svg @@ -5,8 +5,5 @@ unicode: "f365" version: "1.89" --- - - - - + diff --git a/src/_icons/photo-star.svg b/src/_icons/photo-star.svg index f30c4c675..6a07efd79 100644 --- a/src/_icons/photo-star.svg +++ b/src/_icons/photo-star.svg @@ -5,8 +5,5 @@ unicode: "f366" version: "1.89" --- - - - - + diff --git a/src/_icons/photo-up.svg b/src/_icons/photo-up.svg index 76148eed0..132486618 100644 --- a/src/_icons/photo-up.svg +++ b/src/_icons/photo-up.svg @@ -5,10 +5,5 @@ unicode: "f38b" version: "1.91" --- - - - - - - + diff --git a/src/_icons/photo-x.svg b/src/_icons/photo-x.svg index 3787e40e3..cef0fe8f4 100644 --- a/src/_icons/photo-x.svg +++ b/src/_icons/photo-x.svg @@ -5,9 +5,5 @@ unicode: "f367" version: "1.89" --- - - - - - + diff --git a/src/_icons/photo.svg b/src/_icons/photo.svg index 36f8302af..84b02c581 100644 --- a/src/_icons/photo.svg +++ b/src/_icons/photo.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb0a" --- - - - - + diff --git a/src/_icons/physotherapist.svg b/src/_icons/physotherapist.svg index 6d3251d96..d032b2c27 100644 --- a/src/_icons/physotherapist.svg +++ b/src/_icons/physotherapist.svg @@ -5,10 +5,5 @@ category: Health unicode: "eebe" --- - - - - - - + diff --git a/src/_icons/picture-in-picture-off.svg b/src/_icons/picture-in-picture-off.svg index 4d3fc7c77..5f7a9a74c 100644 --- a/src/_icons/picture-in-picture-off.svg +++ b/src/_icons/picture-in-picture-off.svg @@ -5,8 +5,5 @@ version: "1.28" unicode: "ed43" --- - - - - + diff --git a/src/_icons/picture-in-picture-on.svg b/src/_icons/picture-in-picture-on.svg index d43be4830..3ae104ab6 100644 --- a/src/_icons/picture-in-picture-on.svg +++ b/src/_icons/picture-in-picture-on.svg @@ -5,8 +5,5 @@ version: "1.28" unicode: "ed44" --- - - - - + diff --git a/src/_icons/picture-in-picture-top.svg b/src/_icons/picture-in-picture-top.svg index 001e334c3..5cb765893 100644 --- a/src/_icons/picture-in-picture-top.svg +++ b/src/_icons/picture-in-picture-top.svg @@ -4,6 +4,5 @@ version: "1.51" unicode: "efe4" --- - - + diff --git a/src/_icons/picture-in-picture.svg b/src/_icons/picture-in-picture.svg index 6fdee3dfc..f66934f0a 100644 --- a/src/_icons/picture-in-picture.svg +++ b/src/_icons/picture-in-picture.svg @@ -5,6 +5,5 @@ version: "1.27" unicode: "ed35" --- - - + diff --git a/src/_icons/pig-money.svg b/src/_icons/pig-money.svg index b183b7a00..60c8de315 100644 --- a/src/_icons/pig-money.svg +++ b/src/_icons/pig-money.svg @@ -5,7 +5,5 @@ unicode: "f38c" version: "1.91" --- - - - + diff --git a/src/_icons/pig-off.svg b/src/_icons/pig-off.svg index 822bdb78f..633bb51c3 100644 --- a/src/_icons/pig-off.svg +++ b/src/_icons/pig-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f177" --- - - - + diff --git a/src/_icons/pig.svg b/src/_icons/pig.svg index 3b35901df..a10208f34 100644 --- a/src/_icons/pig.svg +++ b/src/_icons/pig.svg @@ -5,6 +5,5 @@ version: "1.43" unicode: "ef52" --- - - + diff --git a/src/_icons/pilcrow.svg b/src/_icons/pilcrow.svg index 9d64ab1fb..98ad4f819 100644 --- a/src/_icons/pilcrow.svg +++ b/src/_icons/pilcrow.svg @@ -4,7 +4,5 @@ unicode: "f5f6" version: "1.113" --- - - - + diff --git a/src/_icons/pill-off.svg b/src/_icons/pill-off.svg index 9df25390b..7c6545803 100644 --- a/src/_icons/pill-off.svg +++ b/src/_icons/pill-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f178" --- - - - + diff --git a/src/_icons/pill.svg b/src/_icons/pill.svg index 9400092ad..6b5531e2a 100644 --- a/src/_icons/pill.svg +++ b/src/_icons/pill.svg @@ -5,6 +5,5 @@ tags: [drug, medication, illness, sickness, doctor, prescription] unicode: "ec44" --- - - + diff --git a/src/_icons/pills.svg b/src/_icons/pills.svg index 8b311e9d8..dcc9f35e4 100644 --- a/src/_icons/pills.svg +++ b/src/_icons/pills.svg @@ -5,8 +5,5 @@ version: "1.44" unicode: "ef66" --- - - - - + diff --git a/src/_icons/pin-filled.svg b/src/_icons/pin-filled.svg new file mode 100644 index 000000000..6bf9b3d68 --- /dev/null +++ b/src/_icons/pin-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68d" +--- + + + + diff --git a/src/_icons/pin.svg b/src/_icons/pin.svg index fe55ea5b8..99f312f8e 100644 --- a/src/_icons/pin.svg +++ b/src/_icons/pin.svg @@ -5,7 +5,5 @@ version: "1.16" unicode: "ec9c" --- - - - + diff --git a/src/_icons/ping-pong.svg b/src/_icons/ping-pong.svg index bb1305f9b..5800641c7 100644 --- a/src/_icons/ping-pong.svg +++ b/src/_icons/ping-pong.svg @@ -5,7 +5,5 @@ unicode: "f38d" version: "1.91" --- - - - + diff --git a/src/_icons/pinned-filled.svg b/src/_icons/pinned-filled.svg new file mode 100644 index 000000000..822359eac --- /dev/null +++ b/src/_icons/pinned-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68e" +--- + + + + diff --git a/src/_icons/pinned-off.svg b/src/_icons/pinned-off.svg index 198e82e98..501c98201 100644 --- a/src/_icons/pinned-off.svg +++ b/src/_icons/pinned-off.svg @@ -5,8 +5,5 @@ version: "1.31" unicode: "ed5f" --- - - - - + diff --git a/src/_icons/pinned.svg b/src/_icons/pinned.svg index c7fd2cc3b..44fd27dd9 100644 --- a/src/_icons/pinned.svg +++ b/src/_icons/pinned.svg @@ -5,7 +5,5 @@ version: "1.31" unicode: "ed60" --- - - - + diff --git a/src/_icons/pizza-off.svg b/src/_icons/pizza-off.svg index 309526416..60d8427c7 100644 --- a/src/_icons/pizza-off.svg +++ b/src/_icons/pizza-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f179" --- - - - - + diff --git a/src/_icons/pizza.svg b/src/_icons/pizza.svg index 274435f52..5c0e8dcef 100644 --- a/src/_icons/pizza.svg +++ b/src/_icons/pizza.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edbb" --- - - - - + diff --git a/src/_icons/placeholder.svg b/src/_icons/placeholder.svg index 7c2ccb36c..3f7eac0c8 100644 --- a/src/_icons/placeholder.svg +++ b/src/_icons/placeholder.svg @@ -3,7 +3,5 @@ unicode: "f626" version: "1.116" --- - - - + diff --git a/src/_icons/plane-arrival.svg b/src/_icons/plane-arrival.svg index 52d866ca9..d087ecfd0 100644 --- a/src/_icons/plane-arrival.svg +++ b/src/_icons/plane-arrival.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb99" --- - - + diff --git a/src/_icons/plane-departure.svg b/src/_icons/plane-departure.svg index a2f615044..ea820cbf4 100644 --- a/src/_icons/plane-departure.svg +++ b/src/_icons/plane-departure.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb9a" --- - - + diff --git a/src/_icons/plane-inflight.svg b/src/_icons/plane-inflight.svg index 1f4ada0d4..b50bd1cfb 100644 --- a/src/_icons/plane-inflight.svg +++ b/src/_icons/plane-inflight.svg @@ -5,6 +5,5 @@ version: "1.47" unicode: "ef98" --- - - + diff --git a/src/_icons/plane-off.svg b/src/_icons/plane-off.svg index 6ca542e73..be49a886b 100644 --- a/src/_icons/plane-off.svg +++ b/src/_icons/plane-off.svg @@ -5,6 +5,5 @@ version: "1.66" unicode: "f17a" --- - - + diff --git a/src/_icons/planet-off.svg b/src/_icons/planet-off.svg index 7bbcdc27b..9cc7f4539 100644 --- a/src/_icons/planet-off.svg +++ b/src/_icons/planet-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f17b" --- - - - + diff --git a/src/_icons/planet.svg b/src/_icons/planet.svg index c3d7c241c..57bca322d 100644 --- a/src/_icons/planet.svg +++ b/src/_icons/planet.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec08" --- - - + diff --git a/src/_icons/plant-2-off.svg b/src/_icons/plant-2-off.svg index fda5ae7a6..60698c53e 100644 --- a/src/_icons/plant-2-off.svg +++ b/src/_icons/plant-2-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f17c" --- - - - - - - + diff --git a/src/_icons/plant-2.svg b/src/_icons/plant-2.svg index dac9a6630..b993198d7 100644 --- a/src/_icons/plant-2.svg +++ b/src/_icons/plant-2.svg @@ -5,9 +5,5 @@ version: "1.33" unicode: "ed7e" --- - - - - - + diff --git a/src/_icons/plant-off.svg b/src/_icons/plant-off.svg index c5fd0c710..3f035267e 100644 --- a/src/_icons/plant-off.svg +++ b/src/_icons/plant-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f17d" --- - - - - - + diff --git a/src/_icons/plant.svg b/src/_icons/plant.svg index 5601dc882..3679125b3 100644 --- a/src/_icons/plant.svg +++ b/src/_icons/plant.svg @@ -5,8 +5,5 @@ version: "1.29" unicode: "ed50" --- - - - - + diff --git a/src/_icons/play-card-off.svg b/src/_icons/play-card-off.svg index f0900ed88..4286ab2c0 100644 --- a/src/_icons/play-card-off.svg +++ b/src/_icons/play-card-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f17e" --- - - - - + diff --git a/src/_icons/play-card.svg b/src/_icons/play-card.svg index d7a01075b..0702fc02c 100644 --- a/src/_icons/play-card.svg +++ b/src/_icons/play-card.svg @@ -4,8 +4,5 @@ version: "1.39" unicode: "eebf" --- - - - - + diff --git a/src/_icons/player-eject-filled.svg b/src/_icons/player-eject-filled.svg new file mode 100644 index 000000000..3e8356bac --- /dev/null +++ b/src/_icons/player-eject-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f68f" +--- + + + + diff --git a/src/_icons/player-eject.svg b/src/_icons/player-eject.svg index bf4f56285..92ab58baa 100644 --- a/src/_icons/player-eject.svg +++ b/src/_icons/player-eject.svg @@ -5,6 +5,5 @@ version: "1.49" unicode: "efbc" --- - - + diff --git a/src/_icons/player-pause-filled.svg b/src/_icons/player-pause-filled.svg new file mode 100644 index 000000000..dce63bf71 --- /dev/null +++ b/src/_icons/player-pause-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f690" +--- + + + + diff --git a/src/_icons/player-pause.svg b/src/_icons/player-pause.svg index 8cdbac6fc..4bc7685bf 100644 --- a/src/_icons/player-pause.svg +++ b/src/_icons/player-pause.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed45" --- - - + diff --git a/src/_icons/player-play-filled.svg b/src/_icons/player-play-filled.svg new file mode 100644 index 000000000..6000df03e --- /dev/null +++ b/src/_icons/player-play-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f691" +--- + + + diff --git a/src/_icons/player-record-filled.svg b/src/_icons/player-record-filled.svg new file mode 100644 index 000000000..98e998037 --- /dev/null +++ b/src/_icons/player-record-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f692" +--- + + + diff --git a/src/_icons/player-record.svg b/src/_icons/player-record.svg index b5b9763c8..763320ab6 100644 --- a/src/_icons/player-record.svg +++ b/src/_icons/player-record.svg @@ -5,5 +5,5 @@ version: "1.28" unicode: "ed47" --- - + diff --git a/src/_icons/player-skip-back-filled.svg b/src/_icons/player-skip-back-filled.svg new file mode 100644 index 000000000..9c82790f8 --- /dev/null +++ b/src/_icons/player-skip-back-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f693" +--- + + + + diff --git a/src/_icons/player-skip-back.svg b/src/_icons/player-skip-back.svg index ec0c657a2..5fb4dd5c7 100644 --- a/src/_icons/player-skip-back.svg +++ b/src/_icons/player-skip-back.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed48" --- - - + diff --git a/src/_icons/player-skip-forward-filled.svg b/src/_icons/player-skip-forward-filled.svg new file mode 100644 index 000000000..529ce0a2a --- /dev/null +++ b/src/_icons/player-skip-forward-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f694" +--- + + + + diff --git a/src/_icons/player-skip-forward.svg b/src/_icons/player-skip-forward.svg index c816906fa..d9980e8fc 100644 --- a/src/_icons/player-skip-forward.svg +++ b/src/_icons/player-skip-forward.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed49" --- - - + diff --git a/src/_icons/player-stop-filled.svg b/src/_icons/player-stop-filled.svg new file mode 100644 index 000000000..bfff536aa --- /dev/null +++ b/src/_icons/player-stop-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f695" +--- + + + diff --git a/src/_icons/player-stop.svg b/src/_icons/player-stop.svg index 1d3ce38e1..4fea8bf1f 100644 --- a/src/_icons/player-stop.svg +++ b/src/_icons/player-stop.svg @@ -5,5 +5,5 @@ version: "1.28" unicode: "ed4a" --- - + diff --git a/src/_icons/player-track-next-filled.svg b/src/_icons/player-track-next-filled.svg new file mode 100644 index 000000000..2dccbb8fa --- /dev/null +++ b/src/_icons/player-track-next-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f696" +--- + + + + diff --git a/src/_icons/player-track-next.svg b/src/_icons/player-track-next.svg index fd1049d33..ac36f0008 100644 --- a/src/_icons/player-track-next.svg +++ b/src/_icons/player-track-next.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed4b" --- - - + diff --git a/src/_icons/player-track-prev-filled.svg b/src/_icons/player-track-prev-filled.svg new file mode 100644 index 000000000..555a6747a --- /dev/null +++ b/src/_icons/player-track-prev-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f697" +--- + + + + diff --git a/src/_icons/player-track-prev.svg b/src/_icons/player-track-prev.svg index e0420245e..fc1726035 100644 --- a/src/_icons/player-track-prev.svg +++ b/src/_icons/player-track-prev.svg @@ -5,6 +5,5 @@ version: "1.28" unicode: "ed4c" --- - - + diff --git a/src/_icons/playlist-add.svg b/src/_icons/playlist-add.svg index 7734a89af..3bec7df59 100644 --- a/src/_icons/playlist-add.svg +++ b/src/_icons/playlist-add.svg @@ -4,9 +4,5 @@ version: "1.53" unicode: "f008" --- - - - - - + diff --git a/src/_icons/playlist-off.svg b/src/_icons/playlist-off.svg index 9669ff2a1..849f819fd 100644 --- a/src/_icons/playlist-off.svg +++ b/src/_icons/playlist-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f17f" --- - - - - - - + diff --git a/src/_icons/playlist-x.svg b/src/_icons/playlist-x.svg index 4f701d7fc..5faddfcd6 100644 --- a/src/_icons/playlist-x.svg +++ b/src/_icons/playlist-x.svg @@ -4,9 +4,5 @@ version: "1.53" unicode: "f009" --- - - - - - + diff --git a/src/_icons/playlist.svg b/src/_icons/playlist.svg index 3b430507a..2f7d1a06c 100644 --- a/src/_icons/playlist.svg +++ b/src/_icons/playlist.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eec0" --- - - - - - + diff --git a/src/_icons/playstation-circle.svg b/src/_icons/playstation-circle.svg index 7afd1a2a1..911a649c5 100644 --- a/src/_icons/playstation-circle.svg +++ b/src/_icons/playstation-circle.svg @@ -5,6 +5,5 @@ version: "1.80" unicode: "f2ad" --- - - + diff --git a/src/_icons/playstation-square.svg b/src/_icons/playstation-square.svg index 967a9d7bf..aa816450d 100644 --- a/src/_icons/playstation-square.svg +++ b/src/_icons/playstation-square.svg @@ -5,6 +5,5 @@ version: "1.80" unicode: "f2ae" --- - - + diff --git a/src/_icons/playstation-triangle.svg b/src/_icons/playstation-triangle.svg index 6fb3880aa..034d7c20a 100644 --- a/src/_icons/playstation-triangle.svg +++ b/src/_icons/playstation-triangle.svg @@ -5,6 +5,5 @@ version: "1.80" unicode: "f2af" --- - - + diff --git a/src/_icons/playstation-x.svg b/src/_icons/playstation-x.svg index fd90696a9..d49c9698c 100644 --- a/src/_icons/playstation-x.svg +++ b/src/_icons/playstation-x.svg @@ -5,7 +5,5 @@ version: "1.80" unicode: "f2b0" --- - - - + diff --git a/src/_icons/plug-connected-x.svg b/src/_icons/plug-connected-x.svg index ca7f1f383..7159dff3b 100644 --- a/src/_icons/plug-connected-x.svg +++ b/src/_icons/plug-connected-x.svg @@ -5,12 +5,5 @@ category: Devices unicode: "f0a0" --- - - - - - - - - + diff --git a/src/_icons/plug-connected.svg b/src/_icons/plug-connected.svg index 1e930488a..5672cbf89 100644 --- a/src/_icons/plug-connected.svg +++ b/src/_icons/plug-connected.svg @@ -5,10 +5,5 @@ category: Devices unicode: "f00a" --- - - - - - - + diff --git a/src/_icons/plug-off.svg b/src/_icons/plug-off.svg index 41e856b30..131311437 100644 --- a/src/_icons/plug-off.svg +++ b/src/_icons/plug-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f180" --- - - - - - + diff --git a/src/_icons/plug-x.svg b/src/_icons/plug-x.svg index 993a4be9e..d3b69158f 100644 --- a/src/_icons/plug-x.svg +++ b/src/_icons/plug-x.svg @@ -5,10 +5,5 @@ category: Devices unicode: "f0a1" --- - - - - - - + diff --git a/src/_icons/plug.svg b/src/_icons/plug.svg index ccda996b3..a29be4c9d 100644 --- a/src/_icons/plug.svg +++ b/src/_icons/plug.svg @@ -5,8 +5,5 @@ version: "1.6" unicode: "ebd9" --- - - - - + diff --git a/src/_icons/plus.svg b/src/_icons/plus.svg index 1b62a937f..c3762ef7c 100644 --- a/src/_icons/plus.svg +++ b/src/_icons/plus.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb0b" --- - - + diff --git a/src/_icons/png.svg b/src/_icons/png.svg index 8f9b0f780..a03c30ec9 100644 --- a/src/_icons/png.svg +++ b/src/_icons/png.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3ad" --- - - - + diff --git a/src/_icons/podium-off.svg b/src/_icons/podium-off.svg index 8169b0ddf..d15989e39 100644 --- a/src/_icons/podium-off.svg +++ b/src/_icons/podium-off.svg @@ -4,10 +4,5 @@ unicode: "f41b" version: "1.94" --- - - - - - - + diff --git a/src/_icons/podium.svg b/src/_icons/podium.svg index 6570c570b..f8fc42697 100644 --- a/src/_icons/podium.svg +++ b/src/_icons/podium.svg @@ -4,9 +4,5 @@ version: "1.68" unicode: "f1d8" --- - - - - - + diff --git a/src/_icons/point-filled.svg b/src/_icons/point-filled.svg new file mode 100644 index 000000000..e7231037a --- /dev/null +++ b/src/_icons/point-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f698" +--- + + + diff --git a/src/_icons/point-off.svg b/src/_icons/point-off.svg index 017028326..b1729d053 100644 --- a/src/_icons/point-off.svg +++ b/src/_icons/point-off.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f181" --- - - + diff --git a/src/_icons/point.svg b/src/_icons/point.svg index 9548c78f5..31b9ecf87 100644 --- a/src/_icons/point.svg +++ b/src/_icons/point.svg @@ -4,5 +4,5 @@ version: "1.0" unicode: "eb0c" --- - + diff --git a/src/_icons/pokeball-off.svg b/src/_icons/pokeball-off.svg index ac4df3336..e7bb31f01 100644 --- a/src/_icons/pokeball-off.svg +++ b/src/_icons/pokeball-off.svg @@ -5,8 +5,5 @@ unicode: "f41c" version: "1.94" --- - - - - + diff --git a/src/_icons/pokeball.svg b/src/_icons/pokeball.svg index 5eeb1e9fb..59822641b 100644 --- a/src/_icons/pokeball.svg +++ b/src/_icons/pokeball.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eec1" --- - - - - + diff --git a/src/_icons/poker-chip.svg b/src/_icons/poker-chip.svg index 00a2c4ae0..c40fed3df 100644 --- a/src/_icons/poker-chip.svg +++ b/src/_icons/poker-chip.svg @@ -4,14 +4,5 @@ version: "1.102" unicode: "f515" --- - - - - - - - - - - + diff --git a/src/_icons/polaroid.svg b/src/_icons/polaroid.svg index ce3f09fd6..f54e82b44 100644 --- a/src/_icons/polaroid.svg +++ b/src/_icons/polaroid.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eec2" --- - - - - - + diff --git a/src/_icons/polygon-off.svg b/src/_icons/polygon-off.svg index f248d673e..f250b339f 100644 --- a/src/_icons/polygon-off.svg +++ b/src/_icons/polygon-off.svg @@ -5,13 +5,5 @@ version: "1.66" unicode: "f182" --- - - - - - - - - - + diff --git a/src/_icons/polygon.svg b/src/_icons/polygon.svg index 6d6c2a1d5..e298dfe48 100644 --- a/src/_icons/polygon.svg +++ b/src/_icons/polygon.svg @@ -5,12 +5,5 @@ version: "1.50" unicode: "efd0" --- - - - - - - - - + diff --git a/src/_icons/poo.svg b/src/_icons/poo.svg index f2a4a72fc..fa653673a 100644 --- a/src/_icons/poo.svg +++ b/src/_icons/poo.svg @@ -4,8 +4,5 @@ version: "1.75" unicode: "f258" --- - - - - + diff --git a/src/_icons/pool-off.svg b/src/_icons/pool-off.svg index db892378b..93cab7fad 100644 --- a/src/_icons/pool-off.svg +++ b/src/_icons/pool-off.svg @@ -5,11 +5,5 @@ unicode: "f41d" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/pool.svg b/src/_icons/pool.svg index 145c3ba54..9036f9877 100644 --- a/src/_icons/pool.svg +++ b/src/_icons/pool.svg @@ -5,10 +5,5 @@ version: "1.34" unicode: "ed91" --- - - - - - - + diff --git a/src/_icons/power.svg b/src/_icons/power.svg index c00c2236a..0a0d57457 100644 --- a/src/_icons/power.svg +++ b/src/_icons/power.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb0d" --- - - + diff --git a/src/_icons/pray.svg b/src/_icons/pray.svg index 5343ed869..41f72d5cf 100644 --- a/src/_icons/pray.svg +++ b/src/_icons/pray.svg @@ -4,6 +4,5 @@ version: "1.18" unicode: "ecbf" --- - - + diff --git a/src/_icons/premium-rights.svg b/src/_icons/premium-rights.svg index 35bafc36f..042fe2592 100644 --- a/src/_icons/premium-rights.svg +++ b/src/_icons/premium-rights.svg @@ -4,8 +4,5 @@ version: "1.49" unicode: "efbd" --- - - - - + diff --git a/src/_icons/prescription.svg b/src/_icons/prescription.svg index cb6459a5d..bacd44c4f 100644 --- a/src/_icons/prescription.svg +++ b/src/_icons/prescription.svg @@ -5,7 +5,5 @@ version: "1.47" unicode: "ef99" --- - - - + diff --git a/src/_icons/presentation-analytics.svg b/src/_icons/presentation-analytics.svg index a1676b76d..fe57f32cb 100644 --- a/src/_icons/presentation-analytics.svg +++ b/src/_icons/presentation-analytics.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "eec3" --- - - - - - - - + diff --git a/src/_icons/presentation-off.svg b/src/_icons/presentation-off.svg index cbb843231..3737e452c 100644 --- a/src/_icons/presentation-off.svg +++ b/src/_icons/presentation-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f183" --- - - - - - - + diff --git a/src/_icons/presentation.svg b/src/_icons/presentation.svg index 91d602e38..f9ae9d3d9 100644 --- a/src/_icons/presentation.svg +++ b/src/_icons/presentation.svg @@ -5,9 +5,5 @@ version: "1.2" unicode: "eb70" --- - - - - - + diff --git a/src/_icons/printer-off.svg b/src/_icons/printer-off.svg index 184ea42f5..c91487f3b 100644 --- a/src/_icons/printer-off.svg +++ b/src/_icons/printer-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f184" --- - - - - + diff --git a/src/_icons/printer.svg b/src/_icons/printer.svg index ad5cd9f93..af22a43b5 100644 --- a/src/_icons/printer.svg +++ b/src/_icons/printer.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb0e" --- - - - + diff --git a/src/_icons/prison.svg b/src/_icons/prison.svg index 228910338..311512400 100644 --- a/src/_icons/prison.svg +++ b/src/_icons/prison.svg @@ -4,12 +4,5 @@ version: "1.45" unicode: "ef79" --- - - - - - - - - + diff --git a/src/_icons/prompt.svg b/src/_icons/prompt.svg index 84eed5fba..5cc939d70 100644 --- a/src/_icons/prompt.svg +++ b/src/_icons/prompt.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb0f" --- - - + diff --git a/src/_icons/propeller-off.svg b/src/_icons/propeller-off.svg index ec37e747a..f5a0e2daf 100644 --- a/src/_icons/propeller-off.svg +++ b/src/_icons/propeller-off.svg @@ -4,9 +4,5 @@ version: "1.66" unicode: "f185" --- - - - - - + diff --git a/src/_icons/propeller.svg b/src/_icons/propeller.svg index 3ac625fd1..fe1f3495b 100644 --- a/src/_icons/propeller.svg +++ b/src/_icons/propeller.svg @@ -4,8 +4,5 @@ version: "1.39" unicode: "eec4" --- - - - - + diff --git a/src/_icons/pumpkin-scary.svg b/src/_icons/pumpkin-scary.svg index 6c663e10e..a580af7b5 100644 --- a/src/_icons/pumpkin-scary.svg +++ b/src/_icons/pumpkin-scary.svg @@ -4,9 +4,5 @@ unicode: "f587" version: "1.108" --- - - - - - + diff --git a/src/_icons/puzzle-2.svg b/src/_icons/puzzle-2.svg index 1598bcc54..1406aa633 100644 --- a/src/_icons/puzzle-2.svg +++ b/src/_icons/puzzle-2.svg @@ -4,9 +4,5 @@ version: "1.46" unicode: "ef83" --- - - - - - + diff --git a/src/_icons/puzzle-filled.svg b/src/_icons/puzzle-filled.svg new file mode 100644 index 000000000..6d69489c7 --- /dev/null +++ b/src/_icons/puzzle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f699" +--- + + + diff --git a/src/_icons/puzzle-off.svg b/src/_icons/puzzle-off.svg index 9c79e3ed2..5aec677fe 100644 --- a/src/_icons/puzzle-off.svg +++ b/src/_icons/puzzle-off.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f186" --- - - + diff --git a/src/_icons/pyramid-off.svg b/src/_icons/pyramid-off.svg index 2786e5284..213a4da06 100644 --- a/src/_icons/pyramid-off.svg +++ b/src/_icons/pyramid-off.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f187" --- - - - + diff --git a/src/_icons/pyramid.svg b/src/_icons/pyramid.svg index 2d137dad7..63ed8e030 100644 --- a/src/_icons/pyramid.svg +++ b/src/_icons/pyramid.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "eec5" --- - - + diff --git a/src/_icons/qrcode-off.svg b/src/_icons/qrcode-off.svg index 64eec897f..0be9bdfc8 100644 --- a/src/_icons/qrcode-off.svg +++ b/src/_icons/qrcode-off.svg @@ -5,14 +5,5 @@ unicode: "f41e" version: "1.94" --- - - - - - - - - - - + diff --git a/src/_icons/qrcode.svg b/src/_icons/qrcode.svg index d02caff41..3d87d7469 100644 --- a/src/_icons/qrcode.svg +++ b/src/_icons/qrcode.svg @@ -5,16 +5,5 @@ version: "1.0" unicode: "eb11" --- - - - - - - - - - - - - + diff --git a/src/_icons/question-circle.svg b/src/_icons/question-circle.svg index c0aff0bbb..cbb2a72bf 100644 --- a/src/_icons/question-circle.svg +++ b/src/_icons/question-circle.svg @@ -3,7 +3,5 @@ unicode: "f637" version: "1.117" --- - - - + diff --git a/src/_icons/question-mark.svg b/src/_icons/question-mark.svg index d520a97bf..9eb764be9 100644 --- a/src/_icons/question-mark.svg +++ b/src/_icons/question-mark.svg @@ -4,6 +4,5 @@ version: "1.16" unicode: "ec9d" --- - - + diff --git a/src/_icons/quote-off.svg b/src/_icons/quote-off.svg index e159f0d48..f714de5fc 100644 --- a/src/_icons/quote-off.svg +++ b/src/_icons/quote-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f188" --- - - - + diff --git a/src/_icons/quote.svg b/src/_icons/quote.svg index 062fa81ac..4ec75be37 100644 --- a/src/_icons/quote.svg +++ b/src/_icons/quote.svg @@ -5,6 +5,5 @@ version: "1.49" unicode: "efbe" --- - - + diff --git a/src/_icons/radar-2.svg b/src/_icons/radar-2.svg index 739173292..8684f91b2 100644 --- a/src/_icons/radar-2.svg +++ b/src/_icons/radar-2.svg @@ -5,8 +5,5 @@ version: "1.54" unicode: "f016" --- - - - - + diff --git a/src/_icons/radar-off.svg b/src/_icons/radar-off.svg index 8afef7859..1e80daf19 100644 --- a/src/_icons/radar-off.svg +++ b/src/_icons/radar-off.svg @@ -5,8 +5,5 @@ unicode: "f41f" version: "1.94" --- - - - - + diff --git a/src/_icons/radar.svg b/src/_icons/radar.svg index 3f47b6b08..99405b4f7 100644 --- a/src/_icons/radar.svg +++ b/src/_icons/radar.svg @@ -5,7 +5,5 @@ category: Map unicode: "f017" --- - - - + diff --git a/src/_icons/radio-off.svg b/src/_icons/radio-off.svg index 1dea8cdd2..28357e0f9 100644 --- a/src/_icons/radio-off.svg +++ b/src/_icons/radio-off.svg @@ -5,9 +5,5 @@ unicode: "f420" version: "1.94" --- - - - - - + diff --git a/src/_icons/radio.svg b/src/_icons/radio.svg index 095a6b8f7..3a5bff3c6 100644 --- a/src/_icons/radio.svg +++ b/src/_icons/radio.svg @@ -5,9 +5,5 @@ version: "1.41" unicode: "ef2d" --- - - - - - + diff --git a/src/_icons/radioactive-off.svg b/src/_icons/radioactive-off.svg index 48b114078..876424103 100644 --- a/src/_icons/radioactive-off.svg +++ b/src/_icons/radioactive-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f189" --- - - - - + diff --git a/src/_icons/radioactive.svg b/src/_icons/radioactive.svg index 1c0a3b300..c4fa753e8 100644 --- a/src/_icons/radioactive.svg +++ b/src/_icons/radioactive.svg @@ -5,7 +5,5 @@ version: "1.18" unicode: "ecc0" --- - - - + diff --git a/src/_icons/rainbow-off.svg b/src/_icons/rainbow-off.svg index 68863c419..ebe6f64f9 100644 --- a/src/_icons/rainbow-off.svg +++ b/src/_icons/rainbow-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f18a" --- - - - - + diff --git a/src/_icons/rainbow.svg b/src/_icons/rainbow.svg index e159861ed..d7b18cc15 100644 --- a/src/_icons/rainbow.svg +++ b/src/_icons/rainbow.svg @@ -5,7 +5,5 @@ version: "1.35" unicode: "edbc" --- - - - + diff --git a/src/_icons/rating-12-plus.svg b/src/_icons/rating-12-plus.svg index 9c053902c..9200d0f65 100644 --- a/src/_icons/rating-12-plus.svg +++ b/src/_icons/rating-12-plus.svg @@ -5,9 +5,5 @@ category: Symbols unicode: "f266" --- - - - - - + diff --git a/src/_icons/rating-14-plus.svg b/src/_icons/rating-14-plus.svg index 7f5d8e0bb..ccee6f4fe 100644 --- a/src/_icons/rating-14-plus.svg +++ b/src/_icons/rating-14-plus.svg @@ -5,9 +5,5 @@ category: Symbols unicode: "f267" --- - - - - - + diff --git a/src/_icons/rating-16-plus.svg b/src/_icons/rating-16-plus.svg index 59279392f..ec8ac0d5b 100644 --- a/src/_icons/rating-16-plus.svg +++ b/src/_icons/rating-16-plus.svg @@ -5,10 +5,5 @@ category: Symbols unicode: "f268" --- - - - - - - + diff --git a/src/_icons/rating-18-plus.svg b/src/_icons/rating-18-plus.svg index e2310b593..9320ff010 100644 --- a/src/_icons/rating-18-plus.svg +++ b/src/_icons/rating-18-plus.svg @@ -5,10 +5,5 @@ category: Symbols unicode: "f269" --- - - - - - - + diff --git a/src/_icons/rating-21-plus.svg b/src/_icons/rating-21-plus.svg index 14f188e0f..bfdc95231 100644 --- a/src/_icons/rating-21-plus.svg +++ b/src/_icons/rating-21-plus.svg @@ -5,9 +5,5 @@ category: Symbols unicode: "f26a" --- - - - - - + diff --git a/src/_icons/razor-electric.svg b/src/_icons/razor-electric.svg index b746942a8..4bbfae288 100644 --- a/src/_icons/razor-electric.svg +++ b/src/_icons/razor-electric.svg @@ -4,10 +4,5 @@ unicode: "f4b4" version: "1.97" --- - - - - - - + diff --git a/src/_icons/razor.svg b/src/_icons/razor.svg index bfd7827fd..d131a4a3e 100644 --- a/src/_icons/razor.svg +++ b/src/_icons/razor.svg @@ -4,7 +4,5 @@ unicode: "f4b5" version: "1.97" --- - - - + diff --git a/src/_icons/receipt-2.svg b/src/_icons/receipt-2.svg index 42efba9d6..c55fb09c3 100644 --- a/src/_icons/receipt-2.svg +++ b/src/_icons/receipt-2.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edfa" --- - - + diff --git a/src/_icons/receipt-off.svg b/src/_icons/receipt-off.svg index 4f80ed6e1..543a108e3 100644 --- a/src/_icons/receipt-off.svg +++ b/src/_icons/receipt-off.svg @@ -5,10 +5,5 @@ version: "1.38" unicode: "edfb" --- - - - - - - + diff --git a/src/_icons/receipt-refund.svg b/src/_icons/receipt-refund.svg index bf3e6f339..cf4180da4 100644 --- a/src/_icons/receipt-refund.svg +++ b/src/_icons/receipt-refund.svg @@ -5,6 +5,5 @@ version: "1.38" unicode: "edfc" --- - - + diff --git a/src/_icons/receipt-tax.svg b/src/_icons/receipt-tax.svg index ccb5aaf93..fdd6fd888 100644 --- a/src/_icons/receipt-tax.svg +++ b/src/_icons/receipt-tax.svg @@ -5,8 +5,5 @@ version: "1.5" unicode: "edbd" --- - - - - + diff --git a/src/_icons/recharging.svg b/src/_icons/recharging.svg index 9a6877a0a..ba1b64d0a 100644 --- a/src/_icons/recharging.svg +++ b/src/_icons/recharging.svg @@ -4,14 +4,5 @@ version: "1.39" unicode: "eeca" --- - - - - - - - - - - + diff --git a/src/_icons/record-mail-off.svg b/src/_icons/record-mail-off.svg index dea1311e4..6a90ffb20 100644 --- a/src/_icons/record-mail-off.svg +++ b/src/_icons/record-mail-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f18b" --- - - - - + diff --git a/src/_icons/record-mail.svg b/src/_icons/record-mail.svg index 989842459..ef364afe1 100644 --- a/src/_icons/record-mail.svg +++ b/src/_icons/record-mail.svg @@ -4,7 +4,5 @@ version: "1.1" unicode: "eb12" --- - - - + diff --git a/src/_icons/rectangle-filled.svg b/src/_icons/rectangle-filled.svg new file mode 100644 index 000000000..584a42d77 --- /dev/null +++ b/src/_icons/rectangle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69a" +--- + + + diff --git a/src/_icons/rectangle-vertical-filled.svg b/src/_icons/rectangle-vertical-filled.svg new file mode 100644 index 000000000..02fb699eb --- /dev/null +++ b/src/_icons/rectangle-vertical-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69b" +--- + + + diff --git a/src/_icons/rectangle-vertical.svg b/src/_icons/rectangle-vertical.svg index 3c32982fc..511072d6c 100644 --- a/src/_icons/rectangle-vertical.svg +++ b/src/_icons/rectangle-vertical.svg @@ -5,5 +5,5 @@ version: "1.27" unicode: "ed36" --- - + diff --git a/src/_icons/rectangle.svg b/src/_icons/rectangle.svg index a3ffd40a9..48f7807d6 100644 --- a/src/_icons/rectangle.svg +++ b/src/_icons/rectangle.svg @@ -5,5 +5,5 @@ version: "1.27" unicode: "ed37" --- - + diff --git a/src/_icons/recycle-off.svg b/src/_icons/recycle-off.svg index c960538d0..cf76633ba 100644 --- a/src/_icons/recycle-off.svg +++ b/src/_icons/recycle-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f18c" --- - - - - + diff --git a/src/_icons/recycle.svg b/src/_icons/recycle.svg index 119afc001..b01d4bf1d 100644 --- a/src/_icons/recycle.svg +++ b/src/_icons/recycle.svg @@ -5,10 +5,5 @@ version: "1.3" unicode: "eb9b" --- - - - - - - + diff --git a/src/_icons/refresh-alert.svg b/src/_icons/refresh-alert.svg index 70e897694..a1ff9a7be 100644 --- a/src/_icons/refresh-alert.svg +++ b/src/_icons/refresh-alert.svg @@ -5,8 +5,5 @@ category: Arrows unicode: "ed57" --- - - - - + diff --git a/src/_icons/refresh-dot.svg b/src/_icons/refresh-dot.svg index a36a8568d..61051430a 100644 --- a/src/_icons/refresh-dot.svg +++ b/src/_icons/refresh-dot.svg @@ -4,7 +4,5 @@ version: "1.49" unicode: "efbf" --- - - - + diff --git a/src/_icons/refresh-off.svg b/src/_icons/refresh-off.svg index b85ce6cc4..6559a4263 100644 --- a/src/_icons/refresh-off.svg +++ b/src/_icons/refresh-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f18d" --- - - - + diff --git a/src/_icons/refresh.svg b/src/_icons/refresh.svg index 5e331eca5..12595e392 100644 --- a/src/_icons/refresh.svg +++ b/src/_icons/refresh.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb13" --- - - + diff --git a/src/_icons/regex-off.svg b/src/_icons/regex-off.svg index cc7ff980e..fcabf3605 100644 --- a/src/_icons/regex-off.svg +++ b/src/_icons/regex-off.svg @@ -5,12 +5,5 @@ unicode: "f421" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/regex.svg b/src/_icons/regex.svg index c5e86d5df..ce94055ce 100644 --- a/src/_icons/regex.svg +++ b/src/_icons/regex.svg @@ -5,11 +5,5 @@ version: "1.85" unicode: "f31f" --- - - - - - - - + diff --git a/src/_icons/registered.svg b/src/_icons/registered.svg index 2ee7d3596..c415f0e45 100644 --- a/src/_icons/registered.svg +++ b/src/_icons/registered.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb14" --- - - - + diff --git a/src/_icons/relation-many-to-many.svg b/src/_icons/relation-many-to-many.svg index 6623220b6..579d3de83 100644 --- a/src/_icons/relation-many-to-many.svg +++ b/src/_icons/relation-many-to-many.svg @@ -5,9 +5,5 @@ version: "1.33" unicode: "ed7f" --- - - - - - + diff --git a/src/_icons/relation-one-to-many.svg b/src/_icons/relation-one-to-many.svg index b15d38bcc..d34819dfd 100644 --- a/src/_icons/relation-one-to-many.svg +++ b/src/_icons/relation-one-to-many.svg @@ -5,9 +5,5 @@ version: "1.33" unicode: "ed80" --- - - - - - + diff --git a/src/_icons/relation-one-to-one.svg b/src/_icons/relation-one-to-one.svg index f4c7d32a8..cc37c36f1 100644 --- a/src/_icons/relation-one-to-one.svg +++ b/src/_icons/relation-one-to-one.svg @@ -5,9 +5,5 @@ version: "1.33" unicode: "ed81" --- - - - - - + diff --git a/src/_icons/reload.svg b/src/_icons/reload.svg index 816eb5999..4f63f1e58 100644 --- a/src/_icons/reload.svg +++ b/src/_icons/reload.svg @@ -5,6 +5,5 @@ version: "1.93" unicode: "f3ae" --- - - + diff --git a/src/_icons/repeat-off.svg b/src/_icons/repeat-off.svg index 79850fc3f..efcf4b4f5 100644 --- a/src/_icons/repeat-off.svg +++ b/src/_icons/repeat-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f18e" --- - - - + diff --git a/src/_icons/repeat-once.svg b/src/_icons/repeat-once.svg index 48f2f7f15..41539c464 100644 --- a/src/_icons/repeat-once.svg +++ b/src/_icons/repeat-once.svg @@ -5,7 +5,5 @@ version: "1.2" unicode: "eb71" --- - - - + diff --git a/src/_icons/repeat.svg b/src/_icons/repeat.svg index 714034d7d..ab7dbb5a5 100644 --- a/src/_icons/repeat.svg +++ b/src/_icons/repeat.svg @@ -5,6 +5,5 @@ version: "1.2" unicode: "eb72" --- - - + diff --git a/src/_icons/replace-filled.svg b/src/_icons/replace-filled.svg new file mode 100644 index 000000000..a4608b23a --- /dev/null +++ b/src/_icons/replace-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69c" +--- + + + + + diff --git a/src/_icons/replace-off.svg b/src/_icons/replace-off.svg index 4220913f7..8ba457d5c 100644 --- a/src/_icons/replace-off.svg +++ b/src/_icons/replace-off.svg @@ -4,9 +4,5 @@ unicode: "f422" version: "1.94" --- - - - - - + diff --git a/src/_icons/replace.svg b/src/_icons/replace.svg index 08fe41cb0..4232d0843 100644 --- a/src/_icons/replace.svg +++ b/src/_icons/replace.svg @@ -4,8 +4,5 @@ version: "1.5" unicode: "ebc7" --- - - - - + diff --git a/src/_icons/report-analytics.svg b/src/_icons/report-analytics.svg index 933319c7c..5f50b33f4 100644 --- a/src/_icons/report-analytics.svg +++ b/src/_icons/report-analytics.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eecb" --- - - - - - + diff --git a/src/_icons/report-medical.svg b/src/_icons/report-medical.svg index 57942c54b..9e3b660d1 100644 --- a/src/_icons/report-medical.svg +++ b/src/_icons/report-medical.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eecc" --- - - - - + diff --git a/src/_icons/report-money.svg b/src/_icons/report-money.svg index 9832d16cb..4b705e1cb 100644 --- a/src/_icons/report-money.svg +++ b/src/_icons/report-money.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eecd" --- - - - - + diff --git a/src/_icons/report-off.svg b/src/_icons/report-off.svg index 103434ce2..ae85564ae 100644 --- a/src/_icons/report-off.svg +++ b/src/_icons/report-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f18f" --- - - - + diff --git a/src/_icons/report-search.svg b/src/_icons/report-search.svg index 388288093..54fc6a844 100644 --- a/src/_icons/report-search.svg +++ b/src/_icons/report-search.svg @@ -5,11 +5,5 @@ version: "1.46" unicode: "ef84" --- - - - - - - - + diff --git a/src/_icons/report.svg b/src/_icons/report.svg index 2e69f29f4..bee87c4b5 100644 --- a/src/_icons/report.svg +++ b/src/_icons/report.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "eece" --- - - - - - - - + diff --git a/src/_icons/resize.svg b/src/_icons/resize.svg index 637c6e065..8234f6417 100644 --- a/src/_icons/resize.svg +++ b/src/_icons/resize.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eecf" --- - - + diff --git a/src/_icons/ribbon-health.svg b/src/_icons/ribbon-health.svg index 805f5fbcf..2f0e6bae5 100644 --- a/src/_icons/ribbon-health.svg +++ b/src/_icons/ribbon-health.svg @@ -5,5 +5,5 @@ unicode: "f58e" version: "1.109" --- - + diff --git a/src/_icons/ripple-off.svg b/src/_icons/ripple-off.svg index 618e84686..fd24374a3 100644 --- a/src/_icons/ripple-off.svg +++ b/src/_icons/ripple-off.svg @@ -4,8 +4,5 @@ version: "1.66" unicode: "f190" --- - - - - + diff --git a/src/_icons/ripple.svg b/src/_icons/ripple.svg index 935ff842e..44f782626 100644 --- a/src/_icons/ripple.svg +++ b/src/_icons/ripple.svg @@ -4,7 +4,5 @@ version: "1.33" unicode: "ed82" --- - - - + diff --git a/src/_icons/road-off.svg b/src/_icons/road-off.svg index a05275ff1..e0e81860d 100644 --- a/src/_icons/road-off.svg +++ b/src/_icons/road-off.svg @@ -5,10 +5,5 @@ version: "1.66" unicode: "f191" --- - - - - - - + diff --git a/src/_icons/road-sign.svg b/src/_icons/road-sign.svg index de897f7c4..73cf27424 100644 --- a/src/_icons/road-sign.svg +++ b/src/_icons/road-sign.svg @@ -5,7 +5,5 @@ version: "1.20" unicode: "ecdd" --- - - - + diff --git a/src/_icons/road.svg b/src/_icons/road.svg index 1597838a9..7f549b48e 100644 --- a/src/_icons/road.svg +++ b/src/_icons/road.svg @@ -5,9 +5,5 @@ version: "1.54" unicode: "f018" --- - - - - - + diff --git a/src/_icons/robot-off.svg b/src/_icons/robot-off.svg index 9b70c1bc5..4b4638d3d 100644 --- a/src/_icons/robot-off.svg +++ b/src/_icons/robot-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f192" --- - - - - - - - + diff --git a/src/_icons/robot.svg b/src/_icons/robot.svg index 57bce88dd..ebe976257 100644 --- a/src/_icons/robot.svg +++ b/src/_icons/robot.svg @@ -4,10 +4,5 @@ version: "1.53" unicode: "f00b" --- - - - - - - + diff --git a/src/_icons/rocket-off.svg b/src/_icons/rocket-off.svg index 7b7c52fc2..76834e8b5 100644 --- a/src/_icons/rocket-off.svg +++ b/src/_icons/rocket-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f193" --- - - - - + diff --git a/src/_icons/rocket.svg b/src/_icons/rocket.svg index b87463b5b..3fa1d3acd 100644 --- a/src/_icons/rocket.svg +++ b/src/_icons/rocket.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec45" --- - - - + diff --git a/src/_icons/roller-skating.svg b/src/_icons/roller-skating.svg index 4865a4abc..5139c0045 100644 --- a/src/_icons/roller-skating.svg +++ b/src/_icons/roller-skating.svg @@ -5,7 +5,5 @@ version: "1.50" unicode: "efd1" --- - - - + diff --git a/src/_icons/rollercoaster-off.svg b/src/_icons/rollercoaster-off.svg index dcfa8e3a0..5e3b7c6ab 100644 --- a/src/_icons/rollercoaster-off.svg +++ b/src/_icons/rollercoaster-off.svg @@ -5,12 +5,5 @@ unicode: "f423" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/rollercoaster.svg b/src/_icons/rollercoaster.svg index 763b1cb3c..7a4e96acf 100644 --- a/src/_icons/rollercoaster.svg +++ b/src/_icons/rollercoaster.svg @@ -5,11 +5,5 @@ category: Vehicles unicode: "f0a2" --- - - - - - - - + diff --git a/src/_icons/rosette-filled.svg b/src/_icons/rosette-filled.svg new file mode 100644 index 000000000..c488e631a --- /dev/null +++ b/src/_icons/rosette-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69d" +--- + + + diff --git a/src/_icons/rosette-number-0.svg b/src/_icons/rosette-number-0.svg index 871411f9e..24733c1c6 100644 --- a/src/_icons/rosette-number-0.svg +++ b/src/_icons/rosette-number-0.svg @@ -5,6 +5,5 @@ unicode: "f58f" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-1.svg b/src/_icons/rosette-number-1.svg index 2d67e758c..1f16a588f 100644 --- a/src/_icons/rosette-number-1.svg +++ b/src/_icons/rosette-number-1.svg @@ -5,6 +5,5 @@ unicode: "f590" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-2.svg b/src/_icons/rosette-number-2.svg index db39152b4..aea109233 100644 --- a/src/_icons/rosette-number-2.svg +++ b/src/_icons/rosette-number-2.svg @@ -5,6 +5,5 @@ unicode: "f591" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-3.svg b/src/_icons/rosette-number-3.svg index 16d7aabe6..31155743e 100644 --- a/src/_icons/rosette-number-3.svg +++ b/src/_icons/rosette-number-3.svg @@ -5,6 +5,5 @@ unicode: "f592" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-4.svg b/src/_icons/rosette-number-4.svg index e342afb48..0b1a672cf 100644 --- a/src/_icons/rosette-number-4.svg +++ b/src/_icons/rosette-number-4.svg @@ -5,7 +5,5 @@ unicode: "f593" version: "1.109" --- - - - + diff --git a/src/_icons/rosette-number-5.svg b/src/_icons/rosette-number-5.svg index 8d2d0df9b..7d34e1e43 100644 --- a/src/_icons/rosette-number-5.svg +++ b/src/_icons/rosette-number-5.svg @@ -5,6 +5,5 @@ unicode: "f594" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-6.svg b/src/_icons/rosette-number-6.svg index b1f25273b..a6a1fb3e9 100644 --- a/src/_icons/rosette-number-6.svg +++ b/src/_icons/rosette-number-6.svg @@ -5,6 +5,5 @@ unicode: "f595" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-7.svg b/src/_icons/rosette-number-7.svg index 7387636b6..0ee8db59b 100644 --- a/src/_icons/rosette-number-7.svg +++ b/src/_icons/rosette-number-7.svg @@ -5,6 +5,5 @@ unicode: "f596" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-8.svg b/src/_icons/rosette-number-8.svg index ad6704d77..8ecfa270c 100644 --- a/src/_icons/rosette-number-8.svg +++ b/src/_icons/rosette-number-8.svg @@ -5,6 +5,5 @@ unicode: "f597" version: "1.109" --- - - + diff --git a/src/_icons/rosette-number-9.svg b/src/_icons/rosette-number-9.svg index 578cdea8a..cb934f29c 100644 --- a/src/_icons/rosette-number-9.svg +++ b/src/_icons/rosette-number-9.svg @@ -5,6 +5,5 @@ unicode: "f598" version: "1.109" --- - - + diff --git a/src/_icons/rotate-2.svg b/src/_icons/rotate-2.svg index 0a38821f2..a2c8433b3 100644 --- a/src/_icons/rotate-2.svg +++ b/src/_icons/rotate-2.svg @@ -5,10 +5,5 @@ version: "1.4" unicode: "ebb4" --- - - - - - - + diff --git a/src/_icons/rotate-360.svg b/src/_icons/rotate-360.svg index 15d31b426..f22f3cc8e 100644 --- a/src/_icons/rotate-360.svg +++ b/src/_icons/rotate-360.svg @@ -5,6 +5,5 @@ version: "1.46" unicode: "ef85" --- - - + diff --git a/src/_icons/rotate-clockwise-2.svg b/src/_icons/rotate-clockwise-2.svg index ba38a1c0e..4662e3d02 100644 --- a/src/_icons/rotate-clockwise-2.svg +++ b/src/_icons/rotate-clockwise-2.svg @@ -5,10 +5,5 @@ version: "1.4" unicode: "ebb5" --- - - - - - - + diff --git a/src/_icons/rotate-dot.svg b/src/_icons/rotate-dot.svg index 5df60756d..b2b32027f 100644 --- a/src/_icons/rotate-dot.svg +++ b/src/_icons/rotate-dot.svg @@ -5,6 +5,5 @@ version: "1.51" unicode: "efe5" --- - - + diff --git a/src/_icons/rotate-rectangle.svg b/src/_icons/rotate-rectangle.svg index 5bf0172a7..e4861e51c 100644 --- a/src/_icons/rotate-rectangle.svg +++ b/src/_icons/rotate-rectangle.svg @@ -5,6 +5,5 @@ version: "1.8" unicode: "ec15" --- - - + diff --git a/src/_icons/route-2.svg b/src/_icons/route-2.svg index 806b26e17..0590fd0ad 100644 --- a/src/_icons/route-2.svg +++ b/src/_icons/route-2.svg @@ -4,9 +4,5 @@ unicode: "f4b6" version: "1.97" --- - - - - - + diff --git a/src/_icons/route-off.svg b/src/_icons/route-off.svg index 5580f126a..464dbefbc 100644 --- a/src/_icons/route-off.svg +++ b/src/_icons/route-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f194" --- - - - - + diff --git a/src/_icons/route.svg b/src/_icons/route.svg index ea2ef38df..b7ba098d2 100644 --- a/src/_icons/route.svg +++ b/src/_icons/route.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb17" --- - - - + diff --git a/src/_icons/router-off.svg b/src/_icons/router-off.svg index 3341fc432..c63fbcbfd 100644 --- a/src/_icons/router-off.svg +++ b/src/_icons/router-off.svg @@ -5,10 +5,5 @@ unicode: "f424" version: "1.94" --- - - - - - - + diff --git a/src/_icons/router.svg b/src/_icons/router.svg index 092c280b4..3a94a7e4a 100644 --- a/src/_icons/router.svg +++ b/src/_icons/router.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "eb18" --- - - - - - - + diff --git a/src/_icons/row-insert-bottom.svg b/src/_icons/row-insert-bottom.svg index 4c6c675a6..bd445f637 100644 --- a/src/_icons/row-insert-bottom.svg +++ b/src/_icons/row-insert-bottom.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eed0" --- - - - + diff --git a/src/_icons/row-insert-top.svg b/src/_icons/row-insert-top.svg index 37fb8f8da..d82ff5387 100644 --- a/src/_icons/row-insert-top.svg +++ b/src/_icons/row-insert-top.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eed1" --- - - - + diff --git a/src/_icons/rss.svg b/src/_icons/rss.svg index 4db059cff..d8e32e1f1 100644 --- a/src/_icons/rss.svg +++ b/src/_icons/rss.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb19" --- - - - + diff --git a/src/_icons/rubber-stamp-off.svg b/src/_icons/rubber-stamp-off.svg index 5e23d30d5..3674ad9c3 100644 --- a/src/_icons/rubber-stamp-off.svg +++ b/src/_icons/rubber-stamp-off.svg @@ -5,8 +5,5 @@ unicode: "f5aa" version: "1.110" --- - - - - + diff --git a/src/_icons/rubber-stamp.svg b/src/_icons/rubber-stamp.svg index 299ed5ade..912c6f417 100644 --- a/src/_icons/rubber-stamp.svg +++ b/src/_icons/rubber-stamp.svg @@ -5,6 +5,5 @@ unicode: "f5ab" version: "1.110" --- - - + \ No newline at end of file diff --git a/src/_icons/ruler-2-off.svg b/src/_icons/ruler-2-off.svg index 083c24cb4..f23626b9e 100644 --- a/src/_icons/ruler-2-off.svg +++ b/src/_icons/ruler-2-off.svg @@ -4,9 +4,5 @@ version: "1.66" unicode: "f195" --- - - - - - + diff --git a/src/_icons/ruler-2.svg b/src/_icons/ruler-2.svg index f95a14987..34e6d2cc1 100644 --- a/src/_icons/ruler-2.svg +++ b/src/_icons/ruler-2.svg @@ -4,9 +4,5 @@ version: "1.39" unicode: "eed2" --- - - - - - + diff --git a/src/_icons/ruler-3.svg b/src/_icons/ruler-3.svg index 588ac16a8..2fd461779 100644 --- a/src/_icons/ruler-3.svg +++ b/src/_icons/ruler-3.svg @@ -4,10 +4,5 @@ version: "1.78" unicode: "f290" --- - - - - - - + diff --git a/src/_icons/ruler-measure.svg b/src/_icons/ruler-measure.svg index 14c6d64b2..f7814f1b4 100644 --- a/src/_icons/ruler-measure.svg +++ b/src/_icons/ruler-measure.svg @@ -4,13 +4,5 @@ version: "1.78" unicode: "f291" --- - - - - - - - - - + diff --git a/src/_icons/ruler-off.svg b/src/_icons/ruler-off.svg index 88f7fa7a4..9c7a6f169 100644 --- a/src/_icons/ruler-off.svg +++ b/src/_icons/ruler-off.svg @@ -4,11 +4,5 @@ version: "1.66" unicode: "f196" --- - - - - - - - + diff --git a/src/_icons/ruler.svg b/src/_icons/ruler.svg index 03f955583..5f80c7db4 100644 --- a/src/_icons/ruler.svg +++ b/src/_icons/ruler.svg @@ -4,11 +4,5 @@ version: "1.1" unicode: "eb1a" --- - - - - - - - + diff --git a/src/_icons/run.svg b/src/_icons/run.svg index 4b38c2a8b..29ba32d5e 100644 --- a/src/_icons/run.svg +++ b/src/_icons/run.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec82" --- - - - - + diff --git a/src/_icons/s-turn-down.svg b/src/_icons/s-turn-down.svg index a688bae3e..f464d2bf3 100644 --- a/src/_icons/s-turn-down.svg +++ b/src/_icons/s-turn-down.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f516" --- - - - + diff --git a/src/_icons/s-turn-left.svg b/src/_icons/s-turn-left.svg index a3fc1216d..b308155c7 100644 --- a/src/_icons/s-turn-left.svg +++ b/src/_icons/s-turn-left.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f517" --- - - - + diff --git a/src/_icons/s-turn-right.svg b/src/_icons/s-turn-right.svg index 0cd475fae..45f338c39 100644 --- a/src/_icons/s-turn-right.svg +++ b/src/_icons/s-turn-right.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f518" --- - - - + diff --git a/src/_icons/s-turn-up.svg b/src/_icons/s-turn-up.svg index a533a1e85..17071a6ad 100644 --- a/src/_icons/s-turn-up.svg +++ b/src/_icons/s-turn-up.svg @@ -5,7 +5,5 @@ version: "1.102" unicode: "f519" --- - - - + diff --git a/src/_icons/sailboat-2.svg b/src/_icons/sailboat-2.svg index 2faa2b703..9ae6c7eee 100644 --- a/src/_icons/sailboat-2.svg +++ b/src/_icons/sailboat-2.svg @@ -4,9 +4,5 @@ unicode: "f5f7" version: "1.113" --- - - - - - + diff --git a/src/_icons/sailboat-off.svg b/src/_icons/sailboat-off.svg index 3687f377d..3de9d7fbd 100644 --- a/src/_icons/sailboat-off.svg +++ b/src/_icons/sailboat-off.svg @@ -5,9 +5,5 @@ unicode: "f425" version: "1.94" --- - - - - - + diff --git a/src/_icons/sailboat.svg b/src/_icons/sailboat.svg index 1e1ea3695..5f8c41554 100644 --- a/src/_icons/sailboat.svg +++ b/src/_icons/sailboat.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec83" --- - - - - + diff --git a/src/_icons/salad.svg b/src/_icons/salad.svg index 53a1fb21b..05136b0eb 100644 --- a/src/_icons/salad.svg +++ b/src/_icons/salad.svg @@ -5,9 +5,5 @@ unicode: "f50a" version: "1.101" --- - - - - - + diff --git a/src/_icons/salt.svg b/src/_icons/salt.svg index 28401bb29..e111c6557 100644 --- a/src/_icons/salt.svg +++ b/src/_icons/salt.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef16" --- - - - - - + diff --git a/src/_icons/satellite-off.svg b/src/_icons/satellite-off.svg index 7cd1ad9d8..45f528aac 100644 --- a/src/_icons/satellite-off.svg +++ b/src/_icons/satellite-off.svg @@ -5,11 +5,5 @@ version: "1.66" unicode: "f197" --- - - - - - - - + diff --git a/src/_icons/satellite.svg b/src/_icons/satellite.svg index 4a1d850ad..6314d65bb 100644 --- a/src/_icons/satellite.svg +++ b/src/_icons/satellite.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "eed3" --- - - - - - - + diff --git a/src/_icons/sausage.svg b/src/_icons/sausage.svg index 011f18b58..c9dbdf0d7 100644 --- a/src/_icons/sausage.svg +++ b/src/_icons/sausage.svg @@ -5,7 +5,5 @@ version: "1.40" unicode: "ef17" --- - - - + diff --git a/src/_icons/scale-off.svg b/src/_icons/scale-off.svg index 84eb276e3..fad6e830e 100644 --- a/src/_icons/scale-off.svg +++ b/src/_icons/scale-off.svg @@ -4,10 +4,5 @@ version: "1.66" unicode: "f198" --- - - - - - - + diff --git a/src/_icons/scale-outline-off.svg b/src/_icons/scale-outline-off.svg index bffffb5ad..431f0cc2a 100644 --- a/src/_icons/scale-outline-off.svg +++ b/src/_icons/scale-outline-off.svg @@ -4,7 +4,5 @@ version: "1.66" unicode: "f199" --- - - - + diff --git a/src/_icons/scale-outline.svg b/src/_icons/scale-outline.svg index a39b245fe..fb741ba62 100644 --- a/src/_icons/scale-outline.svg +++ b/src/_icons/scale-outline.svg @@ -4,6 +4,5 @@ version: "1.43" unicode: "ef53" --- - - + diff --git a/src/_icons/scale.svg b/src/_icons/scale.svg index 329609dad..c3b20228e 100644 --- a/src/_icons/scale.svg +++ b/src/_icons/scale.svg @@ -4,9 +4,5 @@ version: "1.1" unicode: "ebc2" --- - - - - - + diff --git a/src/_icons/scan-eye.svg b/src/_icons/scan-eye.svg index 734c5e483..5526bb8a3 100644 --- a/src/_icons/scan-eye.svg +++ b/src/_icons/scan-eye.svg @@ -4,11 +4,5 @@ version: "1.70" unicode: "f1ff" --- - - - - - - - + diff --git a/src/_icons/scan.svg b/src/_icons/scan.svg index a30ea4f15..f57055c9b 100644 --- a/src/_icons/scan.svg +++ b/src/_icons/scan.svg @@ -4,9 +4,5 @@ version: "1.5" unicode: "ebc8" --- - - - - - + diff --git a/src/_icons/schema-off.svg b/src/_icons/schema-off.svg index 3844c72a2..cb1a11d0f 100644 --- a/src/_icons/schema-off.svg +++ b/src/_icons/schema-off.svg @@ -5,12 +5,5 @@ unicode: "f426" version: "1.94" --- - - - - - - - - + diff --git a/src/_icons/schema.svg b/src/_icons/schema.svg index 63d06f59d..f38bf5b0c 100644 --- a/src/_icons/schema.svg +++ b/src/_icons/schema.svg @@ -5,11 +5,5 @@ category: Database unicode: "f200" --- - - - - - - - + diff --git a/src/_icons/school-bell.svg b/src/_icons/school-bell.svg index 4dfcdc502..accab9bbb 100644 --- a/src/_icons/school-bell.svg +++ b/src/_icons/school-bell.svg @@ -3,7 +3,5 @@ unicode: "f64a" version: "1.118" --- - - - + diff --git a/src/_icons/school-off.svg b/src/_icons/school-off.svg index 836528730..35ea063f1 100644 --- a/src/_icons/school-off.svg +++ b/src/_icons/school-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f19a" --- - - - + diff --git a/src/_icons/school.svg b/src/_icons/school.svg index 51545c84f..36eb7d36a 100644 --- a/src/_icons/school.svg +++ b/src/_icons/school.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "ecf7" --- - - + diff --git a/src/_icons/scissors-off.svg b/src/_icons/scissors-off.svg index 10554ab51..261617ed5 100644 --- a/src/_icons/scissors-off.svg +++ b/src/_icons/scissors-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f19b" --- - - - - + diff --git a/src/_icons/scissors.svg b/src/_icons/scissors.svg index 3739538a5..03ede99bd 100644 --- a/src/_icons/scissors.svg +++ b/src/_icons/scissors.svg @@ -5,8 +5,5 @@ version: "1.1" unicode: "eb1b" --- - - - - + diff --git a/src/_icons/scooter-electric.svg b/src/_icons/scooter-electric.svg index 5008ca4a7..1db0240ae 100644 --- a/src/_icons/scooter-electric.svg +++ b/src/_icons/scooter-electric.svg @@ -5,8 +5,5 @@ version: "1.12" unicode: "ecc1" --- - - - - + diff --git a/src/_icons/scooter.svg b/src/_icons/scooter.svg index 34e2ef2ce..4acda1abd 100644 --- a/src/_icons/scooter.svg +++ b/src/_icons/scooter.svg @@ -5,7 +5,5 @@ version: "1.12" unicode: "ec6c" --- - - - + diff --git a/src/_icons/screen-share-off.svg b/src/_icons/screen-share-off.svg index 8badb4d7c..45a4b2f34 100644 --- a/src/_icons/screen-share-off.svg +++ b/src/_icons/screen-share-off.svg @@ -5,9 +5,5 @@ version: "1.24" unicode: "ed17" --- - - - - - + diff --git a/src/_icons/screen-share.svg b/src/_icons/screen-share.svg index 861ca3afa..159ce70cf 100644 --- a/src/_icons/screen-share.svg +++ b/src/_icons/screen-share.svg @@ -5,10 +5,5 @@ version: "1.24" unicode: "ed18" --- - - - - - - + diff --git a/src/_icons/screenshot.svg b/src/_icons/screenshot.svg index 325db5890..d806d7437 100644 --- a/src/_icons/screenshot.svg +++ b/src/_icons/screenshot.svg @@ -4,13 +4,5 @@ version: "1.70" unicode: "f201" --- - - - - - - - - - + diff --git a/src/_icons/scribble-off.svg b/src/_icons/scribble-off.svg index 633ba55d4..f19146d85 100644 --- a/src/_icons/scribble-off.svg +++ b/src/_icons/scribble-off.svg @@ -4,6 +4,5 @@ unicode: "f427" version: "1.94" --- - - + diff --git a/src/_icons/script-minus.svg b/src/_icons/script-minus.svg index c7de6af82..ba33fc717 100644 --- a/src/_icons/script-minus.svg +++ b/src/_icons/script-minus.svg @@ -5,6 +5,5 @@ version: "1.82" unicode: "f2d7" --- - - + diff --git a/src/_icons/script-plus.svg b/src/_icons/script-plus.svg index 456a35f97..6d67e9a72 100644 --- a/src/_icons/script-plus.svg +++ b/src/_icons/script-plus.svg @@ -5,7 +5,5 @@ version: "1.82" unicode: "f2d8" --- - - - + diff --git a/src/_icons/script-x.svg b/src/_icons/script-x.svg index 824b5b308..eba6a0a47 100644 --- a/src/_icons/script-x.svg +++ b/src/_icons/script-x.svg @@ -5,6 +5,5 @@ version: "1.82" unicode: "f2d9" --- - - + diff --git a/src/_icons/scuba-mask-off.svg b/src/_icons/scuba-mask-off.svg index 7b6a33dd7..031d553d6 100644 --- a/src/_icons/scuba-mask-off.svg +++ b/src/_icons/scuba-mask-off.svg @@ -5,7 +5,5 @@ unicode: "f428" version: "1.94" --- - - - + diff --git a/src/_icons/scuba-mask.svg b/src/_icons/scuba-mask.svg index f5fd74b1f..890473bed 100644 --- a/src/_icons/scuba-mask.svg +++ b/src/_icons/scuba-mask.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eed4" --- - - + diff --git a/src/_icons/sdk.svg b/src/_icons/sdk.svg index 9758b866f..91362d847 100644 --- a/src/_icons/sdk.svg +++ b/src/_icons/sdk.svg @@ -4,9 +4,5 @@ version: "1.93" unicode: "f3af" --- - - - - - + diff --git a/src/_icons/search-off.svg b/src/_icons/search-off.svg index 467458125..29eafa68f 100644 --- a/src/_icons/search-off.svg +++ b/src/_icons/search-off.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f19c" --- - - + diff --git a/src/_icons/search.svg b/src/_icons/search.svg index 571530708..507cd138c 100644 --- a/src/_icons/search.svg +++ b/src/_icons/search.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb1c" --- - - + diff --git a/src/_icons/section-sign.svg b/src/_icons/section-sign.svg index c6ff9d5a9..725b90d9f 100644 --- a/src/_icons/section-sign.svg +++ b/src/_icons/section-sign.svg @@ -4,7 +4,5 @@ version: "1.54" unicode: "f019" --- - - - + diff --git a/src/_icons/section.svg b/src/_icons/section.svg index b90f507f9..bcabbf9a0 100644 --- a/src/_icons/section.svg +++ b/src/_icons/section.svg @@ -5,15 +5,5 @@ version: "1.39" unicode: "eed5" --- - - - - - - - - - - - + diff --git a/src/_icons/seeding-off.svg b/src/_icons/seeding-off.svg index 8633ea130..7dcf89b03 100644 --- a/src/_icons/seeding-off.svg +++ b/src/_icons/seeding-off.svg @@ -5,8 +5,5 @@ version: "1.66" unicode: "f19d" --- - - - - + diff --git a/src/_icons/seeding.svg b/src/_icons/seeding.svg index 076cbfa6e..8569ed20a 100644 --- a/src/_icons/seeding.svg +++ b/src/_icons/seeding.svg @@ -5,7 +5,5 @@ version: "1.29" unicode: "ed51" --- - - - + diff --git a/src/_icons/select.svg b/src/_icons/select.svg index 05450df6b..3047629a2 100644 --- a/src/_icons/select.svg +++ b/src/_icons/select.svg @@ -4,6 +4,5 @@ version: "1.16" unicode: "ec9e" --- - - + diff --git a/src/_icons/selector.svg b/src/_icons/selector.svg index 4161ec27b..5dc17f596 100644 --- a/src/_icons/selector.svg +++ b/src/_icons/selector.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb1d" --- - - + diff --git a/src/_icons/send-off.svg b/src/_icons/send-off.svg index 29f514e64..e7db26bc4 100644 --- a/src/_icons/send-off.svg +++ b/src/_icons/send-off.svg @@ -5,7 +5,5 @@ unicode: "f429" version: "1.94" --- - - - + diff --git a/src/_icons/send.svg b/src/_icons/send.svg index 2a75aa247..d960a91f6 100644 --- a/src/_icons/send.svg +++ b/src/_icons/send.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb1e" --- - - + diff --git a/src/_icons/seo.svg b/src/_icons/seo.svg index 6f7e2f005..f69441edf 100644 --- a/src/_icons/seo.svg +++ b/src/_icons/seo.svg @@ -4,8 +4,5 @@ version: "1.76" unicode: "f26b" --- - - - - + diff --git a/src/_icons/separator-horizontal.svg b/src/_icons/separator-horizontal.svg index 634eec66f..34a81f0ee 100644 --- a/src/_icons/separator-horizontal.svg +++ b/src/_icons/separator-horizontal.svg @@ -5,7 +5,5 @@ version: "1.13" unicode: "ec79" --- - - - + diff --git a/src/_icons/separator-vertical.svg b/src/_icons/separator-vertical.svg index 7afb20064..2d4ca1d7a 100644 --- a/src/_icons/separator-vertical.svg +++ b/src/_icons/separator-vertical.svg @@ -5,7 +5,5 @@ version: "1.13" unicode: "ec7a" --- - - - + diff --git a/src/_icons/separator.svg b/src/_icons/separator.svg index 912a6c0d5..eab9da9dc 100644 --- a/src/_icons/separator.svg +++ b/src/_icons/separator.svg @@ -5,7 +5,5 @@ version: "1.6" unicode: "ebda" --- - - - + diff --git a/src/_icons/server-2.svg b/src/_icons/server-2.svg index b8f5b4d20..10ad2b6f1 100644 --- a/src/_icons/server-2.svg +++ b/src/_icons/server-2.svg @@ -5,10 +5,5 @@ version: "1.59" unicode: "f07c" --- - - - - - - + diff --git a/src/_icons/server-bolt.svg b/src/_icons/server-bolt.svg index fff082c63..6b4e1e6dc 100644 --- a/src/_icons/server-bolt.svg +++ b/src/_icons/server-bolt.svg @@ -5,9 +5,5 @@ version: "1.85" unicode: "f320" --- - - - - - + diff --git a/src/_icons/server-cog.svg b/src/_icons/server-cog.svg index eb476945f..3afb1aa68 100644 --- a/src/_icons/server-cog.svg +++ b/src/_icons/server-cog.svg @@ -5,15 +5,5 @@ version: "1.85" unicode: "f321" --- - - - - - - - - - - - + diff --git a/src/_icons/server-off.svg b/src/_icons/server-off.svg index f0dc851c8..ea6bfaf18 100644 --- a/src/_icons/server-off.svg +++ b/src/_icons/server-off.svg @@ -5,9 +5,5 @@ version: "1.66" unicode: "f19e" --- - - - - - + diff --git a/src/_icons/server.svg b/src/_icons/server.svg index 36accf7ab..02e2ce0d9 100644 --- a/src/_icons/server.svg +++ b/src/_icons/server.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb1f" --- - - - - + diff --git a/src/_icons/servicemark.svg b/src/_icons/servicemark.svg index 7f5ba26a3..2b0333ac9 100644 --- a/src/_icons/servicemark.svg +++ b/src/_icons/servicemark.svg @@ -5,6 +5,5 @@ category: Symbols unicode: "ec09" --- - - + diff --git a/src/_icons/settings-2.svg b/src/_icons/settings-2.svg index 4d14049ba..294b5441c 100644 --- a/src/_icons/settings-2.svg +++ b/src/_icons/settings-2.svg @@ -4,6 +4,5 @@ unicode: "f5ac" version: "1.110" --- - - + diff --git a/src/_icons/settings-automation.svg b/src/_icons/settings-automation.svg index 0fe5ef5f9..341a7d1cb 100644 --- a/src/_icons/settings-automation.svg +++ b/src/_icons/settings-automation.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eed6" --- - - + diff --git a/src/_icons/settings-filled.svg b/src/_icons/settings-filled.svg new file mode 100644 index 000000000..8b1b3385c --- /dev/null +++ b/src/_icons/settings-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69e" +--- + + + diff --git a/src/_icons/settings-off.svg b/src/_icons/settings-off.svg index 9c83d341c..ff3432f87 100644 --- a/src/_icons/settings-off.svg +++ b/src/_icons/settings-off.svg @@ -5,7 +5,5 @@ version: "1.66" unicode: "f19f" --- - - - + diff --git a/src/_icons/settings.svg b/src/_icons/settings.svg index 0c703f232..2e660985e 100644 --- a/src/_icons/settings.svg +++ b/src/_icons/settings.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb20" --- - - + diff --git a/src/_icons/shadow-off.svg b/src/_icons/shadow-off.svg index cc4a5f70f..d5db2adc0 100644 --- a/src/_icons/shadow-off.svg +++ b/src/_icons/shadow-off.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "eed7" --- - - - - - - - + diff --git a/src/_icons/shadow.svg b/src/_icons/shadow.svg index 513bb3f71..853adbe5f 100644 --- a/src/_icons/shadow.svg +++ b/src/_icons/shadow.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "eed8" --- - - - - - - + diff --git a/src/_icons/shape-2.svg b/src/_icons/shape-2.svg index 7bb41e1a8..1b31e8c04 100644 --- a/src/_icons/shape-2.svg +++ b/src/_icons/shape-2.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eed9" --- - - - - - + diff --git a/src/_icons/shape-3.svg b/src/_icons/shape-3.svg index ec3344f66..e43a2714f 100644 --- a/src/_icons/shape-3.svg +++ b/src/_icons/shape-3.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eeda" --- - - - - - + diff --git a/src/_icons/shape-off.svg b/src/_icons/shape-off.svg index 994813ea6..1989900a9 100644 --- a/src/_icons/shape-off.svg +++ b/src/_icons/shape-off.svg @@ -5,13 +5,5 @@ version: "1.66" unicode: "f1a0" --- - - - - - - - - - + diff --git a/src/_icons/shape.svg b/src/_icons/shape.svg index 1ad69f3cb..d41b60fb1 100644 --- a/src/_icons/shape.svg +++ b/src/_icons/shape.svg @@ -5,12 +5,5 @@ version: "1.3" unicode: "eb9c" --- - - - - - - - - + diff --git a/src/_icons/share-off.svg b/src/_icons/share-off.svg index 39e0be9a2..ae9c07dcf 100644 --- a/src/_icons/share-off.svg +++ b/src/_icons/share-off.svg @@ -4,10 +4,5 @@ version: "1.66" unicode: "f1a1" --- - - - - - - + diff --git a/src/_icons/share.svg b/src/_icons/share.svg index 43afe3a34..c2892bf74 100644 --- a/src/_icons/share.svg +++ b/src/_icons/share.svg @@ -4,9 +4,5 @@ version: "1.0" unicode: "eb21" --- - - - - - + diff --git a/src/_icons/shield-check.svg b/src/_icons/shield-check.svg index 4c1437018..427101b9f 100644 --- a/src/_icons/shield-check.svg +++ b/src/_icons/shield-check.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb22" --- - - + diff --git a/src/_icons/shield-checkered.svg b/src/_icons/shield-checkered.svg index 1dc91239f..66972c1d9 100644 --- a/src/_icons/shield-checkered.svg +++ b/src/_icons/shield-checkered.svg @@ -5,7 +5,5 @@ version: "1.47" unicode: "ef9a" --- - - - + diff --git a/src/_icons/shield-chevron.svg b/src/_icons/shield-chevron.svg index 97675ebeb..9042b8eed 100644 --- a/src/_icons/shield-chevron.svg +++ b/src/_icons/shield-chevron.svg @@ -5,6 +5,5 @@ version: "1.47" unicode: "ef9b" --- - - + diff --git a/src/_icons/shield-filled.svg b/src/_icons/shield-filled.svg new file mode 100644 index 000000000..41ecebe3d --- /dev/null +++ b/src/_icons/shield-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f69f" +--- + + + diff --git a/src/_icons/shield-half-filled.svg b/src/_icons/shield-half-filled.svg index 27c11c18d..2e777a64f 100644 --- a/src/_icons/shield-half-filled.svg +++ b/src/_icons/shield-half-filled.svg @@ -5,11 +5,5 @@ unicode: "f357" version: "1.88" --- - - - - - - - + diff --git a/src/_icons/shield-half.svg b/src/_icons/shield-half.svg index 2152f1c80..1483f1925 100644 --- a/src/_icons/shield-half.svg +++ b/src/_icons/shield-half.svg @@ -5,6 +5,5 @@ unicode: "f358" version: "1.88" --- - - + diff --git a/src/_icons/shield-lock.svg b/src/_icons/shield-lock.svg index 955ee4e23..833aefcc4 100644 --- a/src/_icons/shield-lock.svg +++ b/src/_icons/shield-lock.svg @@ -5,7 +5,5 @@ version: "1.30" unicode: "ed58" --- - - - + diff --git a/src/_icons/shield-off.svg b/src/_icons/shield-off.svg index 7528b86f6..655dff6e4 100644 --- a/src/_icons/shield-off.svg +++ b/src/_icons/shield-off.svg @@ -5,6 +5,5 @@ version: "1.22" unicode: "ecf8" --- - - + diff --git a/src/_icons/shield-x.svg b/src/_icons/shield-x.svg index c01def6b1..da322fac6 100644 --- a/src/_icons/shield-x.svg +++ b/src/_icons/shield-x.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb23" --- - - + diff --git a/src/_icons/ship-off.svg b/src/_icons/ship-off.svg index a7e1f322e..e15f9db83 100644 --- a/src/_icons/ship-off.svg +++ b/src/_icons/ship-off.svg @@ -5,8 +5,5 @@ unicode: "f42a" version: "1.94" --- - - - - + diff --git a/src/_icons/ship.svg b/src/_icons/ship.svg index c7c332617..2bd4c445d 100644 --- a/src/_icons/ship.svg +++ b/src/_icons/ship.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec84" --- - - - - + diff --git a/src/_icons/shirt-filled.svg b/src/_icons/shirt-filled.svg new file mode 100644 index 000000000..4d1dfef8d --- /dev/null +++ b/src/_icons/shirt-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a0" +--- + + + diff --git a/src/_icons/shirt-off.svg b/src/_icons/shirt-off.svg index d4ec661f4..90e257430 100644 --- a/src/_icons/shirt-off.svg +++ b/src/_icons/shirt-off.svg @@ -4,6 +4,5 @@ version: "1.66" unicode: "f1a2" --- - - + diff --git a/src/_icons/shirt-sport.svg b/src/_icons/shirt-sport.svg index 664291df3..51fe3ad9d 100644 --- a/src/_icons/shirt-sport.svg +++ b/src/_icons/shirt-sport.svg @@ -4,6 +4,5 @@ version: "1.76" unicode: "f26c" --- - - + diff --git a/src/_icons/shoe-off.svg b/src/_icons/shoe-off.svg index 68f57b704..21fc34663 100644 --- a/src/_icons/shoe-off.svg +++ b/src/_icons/shoe-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1a4" --- - - - - + diff --git a/src/_icons/shoe.svg b/src/_icons/shoe.svg index ec6743b94..a5521d1bd 100644 --- a/src/_icons/shoe.svg +++ b/src/_icons/shoe.svg @@ -4,8 +4,5 @@ version: "1.50" unicode: "efd2" --- - - - - + diff --git a/src/_icons/shopping-bag.svg b/src/_icons/shopping-bag.svg index 3e119ce76..ed9c9daba 100644 --- a/src/_icons/shopping-bag.svg +++ b/src/_icons/shopping-bag.svg @@ -4,6 +4,5 @@ unicode: "f5f8" version: "1.113" --- - - + diff --git a/src/_icons/shopping-cart-discount.svg b/src/_icons/shopping-cart-discount.svg index 52f72b19e..f6bc6cb1d 100644 --- a/src/_icons/shopping-cart-discount.svg +++ b/src/_icons/shopping-cart-discount.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "eedb" --- - - - - - - - + diff --git a/src/_icons/shopping-cart-off.svg b/src/_icons/shopping-cart-off.svg index 111004611..d784e83c8 100644 --- a/src/_icons/shopping-cart-off.svg +++ b/src/_icons/shopping-cart-off.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eedc" --- - - - - - + diff --git a/src/_icons/shopping-cart-plus.svg b/src/_icons/shopping-cart-plus.svg index d62bc113c..37e2bbbb7 100644 --- a/src/_icons/shopping-cart-plus.svg +++ b/src/_icons/shopping-cart-plus.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eedd" --- - - - - - + diff --git a/src/_icons/shopping-cart-x.svg b/src/_icons/shopping-cart-x.svg index 01560f290..90e0ec194 100644 --- a/src/_icons/shopping-cart-x.svg +++ b/src/_icons/shopping-cart-x.svg @@ -5,10 +5,5 @@ version: "1.39" unicode: "eede" --- - - - - - - + diff --git a/src/_icons/shopping-cart.svg b/src/_icons/shopping-cart.svg index 75a133741..2a3c4f10a 100644 --- a/src/_icons/shopping-cart.svg +++ b/src/_icons/shopping-cart.svg @@ -5,8 +5,5 @@ version: "1.1" unicode: "eb25" --- - - - - + diff --git a/src/_icons/shovel.svg b/src/_icons/shovel.svg index 3e15bc497..4eb05940a 100644 --- a/src/_icons/shovel.svg +++ b/src/_icons/shovel.svg @@ -4,7 +4,5 @@ version: "1.68" unicode: "f1d9" --- - - - + diff --git a/src/_icons/shredder.svg b/src/_icons/shredder.svg index 659ba8e87..9cd49f568 100644 --- a/src/_icons/shredder.svg +++ b/src/_icons/shredder.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eedf" --- - - + diff --git a/src/_icons/sign-left-filled.svg b/src/_icons/sign-left-filled.svg new file mode 100644 index 000000000..c6f9b2841 --- /dev/null +++ b/src/_icons/sign-left-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a1" +--- + + + diff --git a/src/_icons/sign-left.svg b/src/_icons/sign-left.svg index 66ed7b35c..91a29b2a4 100644 --- a/src/_icons/sign-left.svg +++ b/src/_icons/sign-left.svg @@ -4,8 +4,5 @@ version: "1.58" unicode: "f06b" --- - - - - + diff --git a/src/_icons/sign-right-filled.svg b/src/_icons/sign-right-filled.svg new file mode 100644 index 000000000..276e8f699 --- /dev/null +++ b/src/_icons/sign-right-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a2" +--- + + + diff --git a/src/_icons/sign-right.svg b/src/_icons/sign-right.svg index eaa63c141..3bfe3c537 100644 --- a/src/_icons/sign-right.svg +++ b/src/_icons/sign-right.svg @@ -4,8 +4,5 @@ version: "1.58" unicode: "f06c" --- - - - - + diff --git a/src/_icons/signal-3g.svg b/src/_icons/signal-3g.svg index fe8f8440f..9a2d3cdfc 100644 --- a/src/_icons/signal-3g.svg +++ b/src/_icons/signal-3g.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1ee" --- - - - + diff --git a/src/_icons/signal-4g-plus.svg b/src/_icons/signal-4g-plus.svg index 0aeae7f37..dba268de8 100644 --- a/src/_icons/signal-4g-plus.svg +++ b/src/_icons/signal-4g-plus.svg @@ -5,9 +5,5 @@ version: "1.75" unicode: "f259" --- - - - - - + diff --git a/src/_icons/signal-4g.svg b/src/_icons/signal-4g.svg index 95370e622..2319aa137 100644 --- a/src/_icons/signal-4g.svg +++ b/src/_icons/signal-4g.svg @@ -5,7 +5,5 @@ version: "1.69" unicode: "f1ef" --- - - - + diff --git a/src/_icons/signal-5g.svg b/src/_icons/signal-5g.svg index f9d12e646..fbdc37d32 100644 --- a/src/_icons/signal-5g.svg +++ b/src/_icons/signal-5g.svg @@ -5,6 +5,5 @@ version: "1.69" unicode: "f1f0" --- - - + diff --git a/src/_icons/signature-off.svg b/src/_icons/signature-off.svg index 064b0e2c0..e7784928c 100644 --- a/src/_icons/signature-off.svg +++ b/src/_icons/signature-off.svg @@ -5,6 +5,5 @@ version: "1.67" unicode: "f1a5" --- - - + diff --git a/src/_icons/sitemap-off.svg b/src/_icons/sitemap-off.svg index d1060acee..781ed9be5 100644 --- a/src/_icons/sitemap-off.svg +++ b/src/_icons/sitemap-off.svg @@ -4,9 +4,5 @@ version: "1.67" unicode: "f1a6" --- - - - - - + diff --git a/src/_icons/sitemap.svg b/src/_icons/sitemap.svg index 508705f49..de8264b30 100644 --- a/src/_icons/sitemap.svg +++ b/src/_icons/sitemap.svg @@ -4,9 +4,5 @@ version: "1.3" unicode: "eb9d" --- - - - - - + diff --git a/src/_icons/skateboard-off.svg b/src/_icons/skateboard-off.svg index 060bbc858..544a76b50 100644 --- a/src/_icons/skateboard-off.svg +++ b/src/_icons/skateboard-off.svg @@ -5,8 +5,5 @@ unicode: "f42b" version: "1.94" --- - - - - + diff --git a/src/_icons/skateboard.svg b/src/_icons/skateboard.svg index c0ed55443..6df9fabf3 100644 --- a/src/_icons/skateboard.svg +++ b/src/_icons/skateboard.svg @@ -5,7 +5,5 @@ version: "1.18" unicode: "ecc2" --- - - - + diff --git a/src/_icons/skull.svg b/src/_icons/skull.svg index 9cfa4fd81..977b1a048 100644 --- a/src/_icons/skull.svg +++ b/src/_icons/skull.svg @@ -4,9 +4,5 @@ version: "1.78" unicode: "f292" --- - - - - - + diff --git a/src/_icons/slashes.svg b/src/_icons/slashes.svg index 851c24bd0..fa136d41c 100644 --- a/src/_icons/slashes.svg +++ b/src/_icons/slashes.svg @@ -4,6 +4,5 @@ unicode: "f588" version: "1.108" --- - - + diff --git a/src/_icons/sleigh.svg b/src/_icons/sleigh.svg index 80b1c2844..54aeb5188 100644 --- a/src/_icons/sleigh.svg +++ b/src/_icons/sleigh.svg @@ -5,8 +5,5 @@ version: "1.47" unicode: "ef9c" --- - - - - + diff --git a/src/_icons/slideshow.svg b/src/_icons/slideshow.svg index f8cfcd3fd..c3de14999 100644 --- a/src/_icons/slideshow.svg +++ b/src/_icons/slideshow.svg @@ -5,11 +5,5 @@ version: "1.5" unicode: "ebc9" --- - - - - - - - + diff --git a/src/_icons/smart-home-off.svg b/src/_icons/smart-home-off.svg index 96935dd97..e3dd6cb1b 100644 --- a/src/_icons/smart-home-off.svg +++ b/src/_icons/smart-home-off.svg @@ -5,7 +5,5 @@ version: "1.67" unicode: "f1a7" --- - - - + diff --git a/src/_icons/smart-home.svg b/src/_icons/smart-home.svg index 3f2c0c592..0e2ceb955 100644 --- a/src/_icons/smart-home.svg +++ b/src/_icons/smart-home.svg @@ -5,6 +5,5 @@ version: "1.20" unicode: "ecde" --- - - + diff --git a/src/_icons/smoking-no.svg b/src/_icons/smoking-no.svg index 5ea8beee1..e8ce71f09 100644 --- a/src/_icons/smoking-no.svg +++ b/src/_icons/smoking-no.svg @@ -5,8 +5,5 @@ category: Health unicode: "ecc3" --- - - - - + diff --git a/src/_icons/smoking.svg b/src/_icons/smoking.svg index db0b356a6..5cacf39a5 100644 --- a/src/_icons/smoking.svg +++ b/src/_icons/smoking.svg @@ -5,7 +5,5 @@ category: Health unicode: "ecc4" --- - - - + diff --git a/src/_icons/snowflake-off.svg b/src/_icons/snowflake-off.svg index b705ada51..b94b9f2c8 100644 --- a/src/_icons/snowflake-off.svg +++ b/src/_icons/snowflake-off.svg @@ -5,17 +5,5 @@ version: "1.67" unicode: "f1a8" --- - - - - - - - - - - - - - + diff --git a/src/_icons/snowflake.svg b/src/_icons/snowflake.svg index fcc825ee4..9773938a1 100644 --- a/src/_icons/snowflake.svg +++ b/src/_icons/snowflake.svg @@ -5,16 +5,5 @@ version: "1.8" unicode: "ec0b" --- - - - - - - - - - - - - + diff --git a/src/_icons/snowman.svg b/src/_icons/snowman.svg index 7164fa097..c3241a7f6 100644 --- a/src/_icons/snowman.svg +++ b/src/_icons/snowman.svg @@ -4,9 +4,5 @@ version: "1.76" unicode: "f26d" --- - - - - - + diff --git a/src/_icons/soccer-field.svg b/src/_icons/soccer-field.svg index e7f77f4e5..a74572e66 100644 --- a/src/_icons/soccer-field.svg +++ b/src/_icons/soccer-field.svg @@ -5,9 +5,5 @@ version: "1.34" unicode: "ed92" --- - - - - - + diff --git a/src/_icons/social-off.svg b/src/_icons/social-off.svg index 66849cbb0..c30775d2d 100644 --- a/src/_icons/social-off.svg +++ b/src/_icons/social-off.svg @@ -4,12 +4,5 @@ version: "1.67" unicode: "f1a9" --- - - - - - - - - + diff --git a/src/_icons/social.svg b/src/_icons/social.svg index 8593c4d1f..abbc56702 100644 --- a/src/_icons/social.svg +++ b/src/_icons/social.svg @@ -4,11 +4,5 @@ version: "1.7" unicode: "ebec" --- - - - - - - - + diff --git a/src/_icons/sock.svg b/src/_icons/sock.svg index 85de8f6d3..900cdf9a9 100644 --- a/src/_icons/sock.svg +++ b/src/_icons/sock.svg @@ -4,6 +4,5 @@ version: "1.39" unicode: "eee1" --- - - + diff --git a/src/_icons/sofa-off.svg b/src/_icons/sofa-off.svg index 1b573623e..f661ee52c 100644 --- a/src/_icons/sofa-off.svg +++ b/src/_icons/sofa-off.svg @@ -4,8 +4,5 @@ unicode: "f42c" version: "1.94" --- - - - - + diff --git a/src/_icons/sofa.svg b/src/_icons/sofa.svg index 5105db78a..69125706e 100644 --- a/src/_icons/sofa.svg +++ b/src/_icons/sofa.svg @@ -4,7 +4,5 @@ version: "1.48" unicode: "efaf" --- - - - + diff --git a/src/_icons/sort-0-9.svg b/src/_icons/sort-0-9.svg index 95b58ee90..fe912a164 100644 --- a/src/_icons/sort-0-9.svg +++ b/src/_icons/sort-0-9.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f54d" --- - - - + diff --git a/src/_icons/sort-9-0.svg b/src/_icons/sort-9-0.svg index 9a3493c28..fc1c44796 100644 --- a/src/_icons/sort-9-0.svg +++ b/src/_icons/sort-9-0.svg @@ -5,7 +5,5 @@ version: "1.105" unicode: "f54e" --- - - - + diff --git a/src/_icons/sort-a-z.svg b/src/_icons/sort-a-z.svg index 6ef71e6e1..faade8c0e 100644 --- a/src/_icons/sort-a-z.svg +++ b/src/_icons/sort-a-z.svg @@ -5,8 +5,5 @@ version: "1.105" unicode: "f54f" --- - - - - + diff --git a/src/_icons/sort-ascending-2.svg b/src/_icons/sort-ascending-2.svg index 8d453e254..90d0dacdc 100644 --- a/src/_icons/sort-ascending-2.svg +++ b/src/_icons/sort-ascending-2.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eee2" --- - - - - + diff --git a/src/_icons/sort-ascending-letters.svg b/src/_icons/sort-ascending-letters.svg index 6462f7359..115190e77 100644 --- a/src/_icons/sort-ascending-letters.svg +++ b/src/_icons/sort-ascending-letters.svg @@ -5,8 +5,5 @@ version: "1.40" unicode: "ef18" --- - - - - + diff --git a/src/_icons/sort-ascending-numbers.svg b/src/_icons/sort-ascending-numbers.svg index 33b4981e2..184eea868 100644 --- a/src/_icons/sort-ascending-numbers.svg +++ b/src/_icons/sort-ascending-numbers.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef19" --- - - - - - + diff --git a/src/_icons/sort-ascending.svg b/src/_icons/sort-ascending.svg index 8613ac2fb..8ca91a90c 100644 --- a/src/_icons/sort-ascending.svg +++ b/src/_icons/sort-ascending.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eb26" --- - - - - - + diff --git a/src/_icons/sort-descending-2.svg b/src/_icons/sort-descending-2.svg index 3a2296aff..7e26d6466 100644 --- a/src/_icons/sort-descending-2.svg +++ b/src/_icons/sort-descending-2.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eee3" --- - - - - + diff --git a/src/_icons/sort-descending-letters.svg b/src/_icons/sort-descending-letters.svg index 4ff2661fa..d52bc8d1e 100644 --- a/src/_icons/sort-descending-letters.svg +++ b/src/_icons/sort-descending-letters.svg @@ -5,8 +5,5 @@ version: "1.40" unicode: "ef1a" --- - - - - + diff --git a/src/_icons/sort-descending-numbers.svg b/src/_icons/sort-descending-numbers.svg index 1fd6b702f..87b631ab6 100644 --- a/src/_icons/sort-descending-numbers.svg +++ b/src/_icons/sort-descending-numbers.svg @@ -5,9 +5,5 @@ version: "1.40" unicode: "ef1b" --- - - - - - + diff --git a/src/_icons/sort-descending.svg b/src/_icons/sort-descending.svg index 291852411..70e7fb800 100644 --- a/src/_icons/sort-descending.svg +++ b/src/_icons/sort-descending.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eb27" --- - - - - - + diff --git a/src/_icons/sort-z-a.svg b/src/_icons/sort-z-a.svg index 6fbfd013f..cc45e1b9a 100644 --- a/src/_icons/sort-z-a.svg +++ b/src/_icons/sort-z-a.svg @@ -5,8 +5,5 @@ version: "1.105" unicode: "f550" --- - - - - + diff --git a/src/_icons/sos.svg b/src/_icons/sos.svg index 17d16990f..6fa7085fd 100644 --- a/src/_icons/sos.svg +++ b/src/_icons/sos.svg @@ -4,7 +4,5 @@ version: "1.74" unicode: "f24a" --- - - - + diff --git a/src/_icons/soup-off.svg b/src/_icons/soup-off.svg index 4e259a26c..e9e21e5e7 100644 --- a/src/_icons/soup-off.svg +++ b/src/_icons/soup-off.svg @@ -5,9 +5,5 @@ unicode: "f42d" version: "1.94" --- - - - - - + diff --git a/src/_icons/soup.svg b/src/_icons/soup.svg index c8a326c7f..80e69e9c7 100644 --- a/src/_icons/soup.svg +++ b/src/_icons/soup.svg @@ -5,8 +5,5 @@ version: "1.41" unicode: "ef2e" --- - - - - + diff --git a/src/_icons/source-code.svg b/src/_icons/source-code.svg index 48f167f0c..1c6c0fd07 100644 --- a/src/_icons/source-code.svg +++ b/src/_icons/source-code.svg @@ -4,7 +4,5 @@ unicode: "f4a2" version: "1.96" --- - - - + diff --git a/src/_icons/space-off.svg b/src/_icons/space-off.svg index 6fdf0d4ec..114a4758b 100644 --- a/src/_icons/space-off.svg +++ b/src/_icons/space-off.svg @@ -5,6 +5,5 @@ version: "1.67" unicode: "f1aa" --- - - + diff --git a/src/_icons/spacing-horizontal.svg b/src/_icons/spacing-horizontal.svg index cd5f095df..457d252cf 100644 --- a/src/_icons/spacing-horizontal.svg +++ b/src/_icons/spacing-horizontal.svg @@ -4,7 +4,5 @@ version: "1.43" unicode: "ef54" --- - - - + diff --git a/src/_icons/spacing-vertical.svg b/src/_icons/spacing-vertical.svg index 0a2d030db..f646e07f3 100644 --- a/src/_icons/spacing-vertical.svg +++ b/src/_icons/spacing-vertical.svg @@ -4,7 +4,5 @@ version: "1.43" unicode: "ef55" --- - - - + diff --git a/src/_icons/spade-filled.svg b/src/_icons/spade-filled.svg new file mode 100644 index 000000000..0615e0384 --- /dev/null +++ b/src/_icons/spade-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a3" +--- + + + diff --git a/src/_icons/speakerphone.svg b/src/_icons/speakerphone.svg index 6a495d956..b67282297 100644 --- a/src/_icons/speakerphone.svg +++ b/src/_icons/speakerphone.svg @@ -5,7 +5,5 @@ version: "1.31" unicode: "ed61" --- - - - + diff --git a/src/_icons/speedboat.svg b/src/_icons/speedboat.svg index d7afd0652..1090c1a89 100644 --- a/src/_icons/speedboat.svg +++ b/src/_icons/speedboat.svg @@ -5,7 +5,5 @@ version: "1.34" unicode: "ed93" --- - - - + diff --git a/src/_icons/spider.svg b/src/_icons/spider.svg index 278704f4a..ed7775d51 100644 --- a/src/_icons/spider.svg +++ b/src/_icons/spider.svg @@ -5,12 +5,5 @@ version: "1.78" unicode: "f293" --- - - - - - - - - + diff --git a/src/_icons/spiral-off.svg b/src/_icons/spiral-off.svg index 0b5ee00e7..4069f63af 100644 --- a/src/_icons/spiral-off.svg +++ b/src/_icons/spiral-off.svg @@ -4,6 +4,5 @@ unicode: "f42e" version: "1.94" --- - - + diff --git a/src/_icons/spiral.svg b/src/_icons/spiral.svg index 26900de2f..7c3f954ff 100644 --- a/src/_icons/spiral.svg +++ b/src/_icons/spiral.svg @@ -4,5 +4,5 @@ version: "1.78" unicode: "f294" --- - + diff --git a/src/_icons/sport-billard.svg b/src/_icons/sport-billard.svg index f39188514..2850b202f 100644 --- a/src/_icons/sport-billard.svg +++ b/src/_icons/sport-billard.svg @@ -5,7 +5,5 @@ category: Sport unicode: "eee4" --- - - - + diff --git a/src/_icons/spray.svg b/src/_icons/spray.svg index ba2d23df2..a0f2b4474 100644 --- a/src/_icons/spray.svg +++ b/src/_icons/spray.svg @@ -4,13 +4,5 @@ unicode: "f50b" version: "1.101" --- - - - - - - - - - + diff --git a/src/_icons/spy-off.svg b/src/_icons/spy-off.svg index 9659a684c..e8a59f360 100644 --- a/src/_icons/spy-off.svg +++ b/src/_icons/spy-off.svg @@ -4,10 +4,5 @@ unicode: "f42f" version: "1.94" --- - - - - - - + diff --git a/src/_icons/spy.svg b/src/_icons/spy.svg index f2016d401..736c793b5 100644 --- a/src/_icons/spy.svg +++ b/src/_icons/spy.svg @@ -4,9 +4,5 @@ version: "1.72" unicode: "f227" --- - - - - - + diff --git a/src/_icons/square-arrow-down.svg b/src/_icons/square-arrow-down.svg index 6d8f3968c..8792d17f7 100644 --- a/src/_icons/square-arrow-down.svg +++ b/src/_icons/square-arrow-down.svg @@ -5,7 +5,5 @@ unicode: "f4b7" version: "1.97" --- - - - + diff --git a/src/_icons/square-arrow-left.svg b/src/_icons/square-arrow-left.svg index 83e5b5fc0..745715f66 100644 --- a/src/_icons/square-arrow-left.svg +++ b/src/_icons/square-arrow-left.svg @@ -5,7 +5,5 @@ unicode: "f4b8" version: "1.97" --- - - - + diff --git a/src/_icons/square-arrow-right.svg b/src/_icons/square-arrow-right.svg index b29f69383..fd412ab16 100644 --- a/src/_icons/square-arrow-right.svg +++ b/src/_icons/square-arrow-right.svg @@ -5,7 +5,5 @@ unicode: "f4b9" version: "1.97" --- - - - + diff --git a/src/_icons/square-arrow-up.svg b/src/_icons/square-arrow-up.svg index 45cf1fb58..da0dd90f2 100644 --- a/src/_icons/square-arrow-up.svg +++ b/src/_icons/square-arrow-up.svg @@ -5,7 +5,5 @@ unicode: "f4ba" version: "1.97" --- - - - + diff --git a/src/_icons/square-asterisk.svg b/src/_icons/square-asterisk.svg index 0b0de597d..b0c5d1185 100644 --- a/src/_icons/square-asterisk.svg +++ b/src/_icons/square-asterisk.svg @@ -4,8 +4,5 @@ version: "1.54" unicode: "f01a" --- - - - - + diff --git a/src/_icons/square-check.svg b/src/_icons/square-check.svg index 78e330002..4110dc873 100644 --- a/src/_icons/square-check.svg +++ b/src/_icons/square-check.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb28" --- - - + diff --git a/src/_icons/square-chevron-down.svg b/src/_icons/square-chevron-down.svg index 76256705d..f420b60d8 100644 --- a/src/_icons/square-chevron-down.svg +++ b/src/_icons/square-chevron-down.svg @@ -4,6 +4,5 @@ unicode: "f627" version: "1.116" --- - - + diff --git a/src/_icons/square-chevron-left.svg b/src/_icons/square-chevron-left.svg index c3939f6e7..3022e766c 100644 --- a/src/_icons/square-chevron-left.svg +++ b/src/_icons/square-chevron-left.svg @@ -4,6 +4,5 @@ unicode: "f628" version: "1.116" --- - - + diff --git a/src/_icons/square-chevron-right.svg b/src/_icons/square-chevron-right.svg index 1839c4a98..51918cb1a 100644 --- a/src/_icons/square-chevron-right.svg +++ b/src/_icons/square-chevron-right.svg @@ -4,6 +4,5 @@ unicode: "f629" version: "1.116" --- - - + diff --git a/src/_icons/square-chevron-up.svg b/src/_icons/square-chevron-up.svg index adcea7fb4..99d4c11cc 100644 --- a/src/_icons/square-chevron-up.svg +++ b/src/_icons/square-chevron-up.svg @@ -4,6 +4,5 @@ unicode: "f62a" version: "1.116" --- - - + diff --git a/src/_icons/square-chevrons-down.svg b/src/_icons/square-chevrons-down.svg index 774d3c7c6..79e2b2847 100644 --- a/src/_icons/square-chevrons-down.svg +++ b/src/_icons/square-chevrons-down.svg @@ -4,7 +4,5 @@ unicode: "f64b" version: "1.118" --- - - - + diff --git a/src/_icons/square-chevrons-left.svg b/src/_icons/square-chevrons-left.svg index 283d10efe..ac1757ca4 100644 --- a/src/_icons/square-chevrons-left.svg +++ b/src/_icons/square-chevrons-left.svg @@ -4,7 +4,5 @@ unicode: "f64c" version: "1.118" --- - - - + diff --git a/src/_icons/square-chevrons-right.svg b/src/_icons/square-chevrons-right.svg index 092d6afce..3a632cdb4 100644 --- a/src/_icons/square-chevrons-right.svg +++ b/src/_icons/square-chevrons-right.svg @@ -4,7 +4,5 @@ unicode: "f64d" version: "1.118" --- - - - + diff --git a/src/_icons/square-chevrons-up.svg b/src/_icons/square-chevrons-up.svg index c40f05741..f35a4694a 100644 --- a/src/_icons/square-chevrons-up.svg +++ b/src/_icons/square-chevrons-up.svg @@ -4,7 +4,5 @@ unicode: "f64e" version: "1.118" --- - - - + diff --git a/src/_icons/square-dot.svg b/src/_icons/square-dot.svg index 3b3e32ce2..8176deb85 100644 --- a/src/_icons/square-dot.svg +++ b/src/_icons/square-dot.svg @@ -4,6 +4,5 @@ version: "1.30" unicode: "ed59" --- - - + diff --git a/src/_icons/square-f0.svg b/src/_icons/square-f0.svg index 30a426584..2c892fc0d 100644 --- a/src/_icons/square-f0.svg +++ b/src/_icons/square-f0.svg @@ -4,8 +4,5 @@ unicode: "f526" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f1.svg b/src/_icons/square-f1.svg index 6f5f5e04a..57f78cf05 100644 --- a/src/_icons/square-f1.svg +++ b/src/_icons/square-f1.svg @@ -4,8 +4,5 @@ unicode: "f527" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f2.svg b/src/_icons/square-f2.svg index 48ddb797b..1408edf14 100644 --- a/src/_icons/square-f2.svg +++ b/src/_icons/square-f2.svg @@ -4,8 +4,5 @@ unicode: "f528" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f3.svg b/src/_icons/square-f3.svg index bb5378a01..c55b5eb43 100644 --- a/src/_icons/square-f3.svg +++ b/src/_icons/square-f3.svg @@ -4,8 +4,5 @@ unicode: "f529" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f4.svg b/src/_icons/square-f4.svg index 7cea42166..ebac25e2b 100644 --- a/src/_icons/square-f4.svg +++ b/src/_icons/square-f4.svg @@ -4,9 +4,5 @@ unicode: "f52a" version: "1.103" --- - - - - - + diff --git a/src/_icons/square-f5.svg b/src/_icons/square-f5.svg index 3e52daf5f..1fca9d557 100644 --- a/src/_icons/square-f5.svg +++ b/src/_icons/square-f5.svg @@ -4,8 +4,5 @@ unicode: "f52b" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f6.svg b/src/_icons/square-f6.svg index d862c8e23..89b3d9746 100644 --- a/src/_icons/square-f6.svg +++ b/src/_icons/square-f6.svg @@ -4,8 +4,5 @@ unicode: "f52c" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f7.svg b/src/_icons/square-f7.svg index 4abca13e3..3e39c8bd0 100644 --- a/src/_icons/square-f7.svg +++ b/src/_icons/square-f7.svg @@ -4,8 +4,5 @@ unicode: "f52d" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f8.svg b/src/_icons/square-f8.svg index 4664938b3..183a10a7b 100644 --- a/src/_icons/square-f8.svg +++ b/src/_icons/square-f8.svg @@ -4,8 +4,5 @@ unicode: "f52e" version: "1.103" --- - - - - + diff --git a/src/_icons/square-f9.svg b/src/_icons/square-f9.svg index 4fe0c4bfc..a9c3aa0e2 100644 --- a/src/_icons/square-f9.svg +++ b/src/_icons/square-f9.svg @@ -4,8 +4,5 @@ unicode: "f52f" version: "1.103" --- - - - - + diff --git a/src/_icons/square-forbid-2.svg b/src/_icons/square-forbid-2.svg index 7d0c2be4a..459ef4e4d 100644 --- a/src/_icons/square-forbid-2.svg +++ b/src/_icons/square-forbid-2.svg @@ -4,6 +4,5 @@ version: "1.30" unicode: "ed5a" --- - - + diff --git a/src/_icons/square-forbid.svg b/src/_icons/square-forbid.svg index 1f30b5da6..81e105ee1 100644 --- a/src/_icons/square-forbid.svg +++ b/src/_icons/square-forbid.svg @@ -4,6 +4,5 @@ version: "1.30" unicode: "ed5b" --- - - + diff --git a/src/_icons/square-half.svg b/src/_icons/square-half.svg index 436597d82..31a58ad95 100644 --- a/src/_icons/square-half.svg +++ b/src/_icons/square-half.svg @@ -5,10 +5,5 @@ version: "1.52" unicode: "effb" --- - - - - - - + diff --git a/src/_icons/square-key.svg b/src/_icons/square-key.svg index 43de6eb25..52b3fc434 100644 --- a/src/_icons/square-key.svg +++ b/src/_icons/square-key.svg @@ -3,8 +3,5 @@ unicode: "f638" version: "1.117" --- - - - - + diff --git a/src/_icons/square-letter-a.svg b/src/_icons/square-letter-a.svg index d9f673afa..cf815d762 100644 --- a/src/_icons/square-letter-a.svg +++ b/src/_icons/square-letter-a.svg @@ -5,7 +5,5 @@ unicode: "f47c" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-b.svg b/src/_icons/square-letter-b.svg index bcc359aba..96f391796 100644 --- a/src/_icons/square-letter-b.svg +++ b/src/_icons/square-letter-b.svg @@ -5,6 +5,5 @@ unicode: "f47d" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-c.svg b/src/_icons/square-letter-c.svg index 8aeafb615..cdc8093ef 100644 --- a/src/_icons/square-letter-c.svg +++ b/src/_icons/square-letter-c.svg @@ -5,6 +5,5 @@ unicode: "f47e" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-d.svg b/src/_icons/square-letter-d.svg index 1ecb1a41a..81ef6796a 100644 --- a/src/_icons/square-letter-d.svg +++ b/src/_icons/square-letter-d.svg @@ -5,6 +5,5 @@ unicode: "f47f" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-e.svg b/src/_icons/square-letter-e.svg index 10e2fa636..63060ad38 100644 --- a/src/_icons/square-letter-e.svg +++ b/src/_icons/square-letter-e.svg @@ -5,7 +5,5 @@ unicode: "f480" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-f.svg b/src/_icons/square-letter-f.svg index 41abad7aa..0caa16bbe 100644 --- a/src/_icons/square-letter-f.svg +++ b/src/_icons/square-letter-f.svg @@ -5,7 +5,5 @@ unicode: "f481" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-g.svg b/src/_icons/square-letter-g.svg index ed4025f03..8949289eb 100644 --- a/src/_icons/square-letter-g.svg +++ b/src/_icons/square-letter-g.svg @@ -5,6 +5,5 @@ unicode: "f482" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-h.svg b/src/_icons/square-letter-h.svg index d1d66577a..2bd6d7ca7 100644 --- a/src/_icons/square-letter-h.svg +++ b/src/_icons/square-letter-h.svg @@ -5,7 +5,5 @@ unicode: "f483" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-i.svg b/src/_icons/square-letter-i.svg index 6daa2c647..13ad728bc 100644 --- a/src/_icons/square-letter-i.svg +++ b/src/_icons/square-letter-i.svg @@ -5,6 +5,5 @@ unicode: "f484" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-j.svg b/src/_icons/square-letter-j.svg index dbbf2f2ce..ed0a3747b 100644 --- a/src/_icons/square-letter-j.svg +++ b/src/_icons/square-letter-j.svg @@ -5,6 +5,5 @@ unicode: "f485" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-k.svg b/src/_icons/square-letter-k.svg index 56fe7f022..9b0852c0a 100644 --- a/src/_icons/square-letter-k.svg +++ b/src/_icons/square-letter-k.svg @@ -5,8 +5,5 @@ unicode: "f486" version: "1.95" --- - - - - + diff --git a/src/_icons/square-letter-l.svg b/src/_icons/square-letter-l.svg index 5170d0b87..7ea3e4a5f 100644 --- a/src/_icons/square-letter-l.svg +++ b/src/_icons/square-letter-l.svg @@ -5,6 +5,5 @@ unicode: "f487" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-m.svg b/src/_icons/square-letter-m.svg index 65193753b..8300f860f 100644 --- a/src/_icons/square-letter-m.svg +++ b/src/_icons/square-letter-m.svg @@ -5,6 +5,5 @@ unicode: "f488" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-n.svg b/src/_icons/square-letter-n.svg index f111b838c..6a0a124cd 100644 --- a/src/_icons/square-letter-n.svg +++ b/src/_icons/square-letter-n.svg @@ -5,6 +5,5 @@ unicode: "f489" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-o.svg b/src/_icons/square-letter-o.svg index ac7658d77..2612182cf 100644 --- a/src/_icons/square-letter-o.svg +++ b/src/_icons/square-letter-o.svg @@ -5,6 +5,5 @@ unicode: "f48a" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-p.svg b/src/_icons/square-letter-p.svg index 429cfe94a..1b3d5e1c9 100644 --- a/src/_icons/square-letter-p.svg +++ b/src/_icons/square-letter-p.svg @@ -5,6 +5,5 @@ unicode: "f48b" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-q.svg b/src/_icons/square-letter-q.svg index 24f4e5159..7b75a6f90 100644 --- a/src/_icons/square-letter-q.svg +++ b/src/_icons/square-letter-q.svg @@ -5,7 +5,5 @@ unicode: "f48c" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-r.svg b/src/_icons/square-letter-r.svg index 67cd37d20..a2feaf705 100644 --- a/src/_icons/square-letter-r.svg +++ b/src/_icons/square-letter-r.svg @@ -5,6 +5,5 @@ unicode: "f48d" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-s.svg b/src/_icons/square-letter-s.svg index 35668fae8..69eada1fe 100644 --- a/src/_icons/square-letter-s.svg +++ b/src/_icons/square-letter-s.svg @@ -5,6 +5,5 @@ unicode: "f48e" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-t.svg b/src/_icons/square-letter-t.svg index 8c472e472..44f79d02b 100644 --- a/src/_icons/square-letter-t.svg +++ b/src/_icons/square-letter-t.svg @@ -5,7 +5,5 @@ unicode: "f48f" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-u.svg b/src/_icons/square-letter-u.svg index c56d7e77d..3b2be1880 100644 --- a/src/_icons/square-letter-u.svg +++ b/src/_icons/square-letter-u.svg @@ -5,6 +5,5 @@ unicode: "f490" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-v.svg b/src/_icons/square-letter-v.svg index 330c45c59..e5c523181 100644 --- a/src/_icons/square-letter-v.svg +++ b/src/_icons/square-letter-v.svg @@ -5,6 +5,5 @@ unicode: "f4bb" version: "1.97" --- - - + diff --git a/src/_icons/square-letter-w.svg b/src/_icons/square-letter-w.svg index d29dd9141..c635e8002 100644 --- a/src/_icons/square-letter-w.svg +++ b/src/_icons/square-letter-w.svg @@ -5,6 +5,5 @@ unicode: "f491" version: "1.95" --- - - + diff --git a/src/_icons/square-letter-x.svg b/src/_icons/square-letter-x.svg index 14624f5b2..0e2678297 100644 --- a/src/_icons/square-letter-x.svg +++ b/src/_icons/square-letter-x.svg @@ -5,7 +5,5 @@ category: Letters unicode: "f4bc" --- - - - + diff --git a/src/_icons/square-letter-y.svg b/src/_icons/square-letter-y.svg index 3dcfc1507..27dab5ede 100644 --- a/src/_icons/square-letter-y.svg +++ b/src/_icons/square-letter-y.svg @@ -5,7 +5,5 @@ unicode: "f492" version: "1.95" --- - - - + diff --git a/src/_icons/square-letter-z.svg b/src/_icons/square-letter-z.svg index f3c7713ca..3178aa6f7 100644 --- a/src/_icons/square-letter-z.svg +++ b/src/_icons/square-letter-z.svg @@ -5,6 +5,5 @@ unicode: "f493" version: "1.95" --- - - + diff --git a/src/_icons/square-minus.svg b/src/_icons/square-minus.svg index 985f464c0..a0945611e 100644 --- a/src/_icons/square-minus.svg +++ b/src/_icons/square-minus.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb29" --- - - + diff --git a/src/_icons/square-number-0.svg b/src/_icons/square-number-0.svg index 41b9529f5..4a724d617 100644 --- a/src/_icons/square-number-0.svg +++ b/src/_icons/square-number-0.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eee5" --- - - + diff --git a/src/_icons/square-number-1.svg b/src/_icons/square-number-1.svg index 407f7c6ec..9cebccafc 100644 --- a/src/_icons/square-number-1.svg +++ b/src/_icons/square-number-1.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eee6" --- - - + diff --git a/src/_icons/square-number-2.svg b/src/_icons/square-number-2.svg index 020e50b19..856ab2d6a 100644 --- a/src/_icons/square-number-2.svg +++ b/src/_icons/square-number-2.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eee7" --- - - + diff --git a/src/_icons/square-number-3.svg b/src/_icons/square-number-3.svg index 8be9895b0..dea865201 100644 --- a/src/_icons/square-number-3.svg +++ b/src/_icons/square-number-3.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eee8" --- - - + diff --git a/src/_icons/square-number-4.svg b/src/_icons/square-number-4.svg index b83273017..84b19bbd6 100644 --- a/src/_icons/square-number-4.svg +++ b/src/_icons/square-number-4.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eee9" --- - - - + diff --git a/src/_icons/square-number-5.svg b/src/_icons/square-number-5.svg index 7dd367dba..5ea81485a 100644 --- a/src/_icons/square-number-5.svg +++ b/src/_icons/square-number-5.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeea" --- - - + diff --git a/src/_icons/square-number-6.svg b/src/_icons/square-number-6.svg index 40a1dbcae..b90ba29b1 100644 --- a/src/_icons/square-number-6.svg +++ b/src/_icons/square-number-6.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeeb" --- - - + diff --git a/src/_icons/square-number-7.svg b/src/_icons/square-number-7.svg index fd738930c..07bd4baed 100644 --- a/src/_icons/square-number-7.svg +++ b/src/_icons/square-number-7.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeec" --- - - + diff --git a/src/_icons/square-number-8.svg b/src/_icons/square-number-8.svg index d7446cef9..b01ba4774 100644 --- a/src/_icons/square-number-8.svg +++ b/src/_icons/square-number-8.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeed" --- - - + diff --git a/src/_icons/square-number-9.svg b/src/_icons/square-number-9.svg index a25c3aa94..962f88982 100644 --- a/src/_icons/square-number-9.svg +++ b/src/_icons/square-number-9.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeee" --- - - + diff --git a/src/_icons/square-off.svg b/src/_icons/square-off.svg index d96450581..18d07a949 100644 --- a/src/_icons/square-off.svg +++ b/src/_icons/square-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eeef" --- - - + diff --git a/src/_icons/square-plus.svg b/src/_icons/square-plus.svg index 657550750..91c9924ba 100644 --- a/src/_icons/square-plus.svg +++ b/src/_icons/square-plus.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb2a" --- - - - + diff --git a/src/_icons/square-root-2.svg b/src/_icons/square-root-2.svg index 9d7336eb1..f3ce3ce19 100644 --- a/src/_icons/square-root-2.svg +++ b/src/_icons/square-root-2.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eef0" --- - - - + diff --git a/src/_icons/square-rotated-filled.svg b/src/_icons/square-rotated-filled.svg new file mode 100644 index 000000000..04653e100 --- /dev/null +++ b/src/_icons/square-rotated-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a4" +--- + + + diff --git a/src/_icons/square-rotated-forbid-2.svg b/src/_icons/square-rotated-forbid-2.svg index 47edfebf5..f3c559d37 100644 --- a/src/_icons/square-rotated-forbid-2.svg +++ b/src/_icons/square-rotated-forbid-2.svg @@ -4,6 +4,5 @@ version: "1.54" unicode: "f01b" --- - - + diff --git a/src/_icons/square-rotated-forbid.svg b/src/_icons/square-rotated-forbid.svg index 47b09e718..a9560a66f 100644 --- a/src/_icons/square-rotated-forbid.svg +++ b/src/_icons/square-rotated-forbid.svg @@ -4,6 +4,5 @@ version: "1.54" unicode: "f01c" --- - - + diff --git a/src/_icons/square-rotated-off.svg b/src/_icons/square-rotated-off.svg index 45773e32e..f847f12de 100644 --- a/src/_icons/square-rotated-off.svg +++ b/src/_icons/square-rotated-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "eef2" --- - - + diff --git a/src/_icons/square-rounded-arrow-down.svg b/src/_icons/square-rounded-arrow-down.svg index fb953fdb9..a611af243 100644 --- a/src/_icons/square-rounded-arrow-down.svg +++ b/src/_icons/square-rounded-arrow-down.svg @@ -3,7 +3,5 @@ unicode: "f639" version: "1.117" --- - - - + diff --git a/src/_icons/square-rounded-arrow-left.svg b/src/_icons/square-rounded-arrow-left.svg index dce299372..b3e582eaf 100644 --- a/src/_icons/square-rounded-arrow-left.svg +++ b/src/_icons/square-rounded-arrow-left.svg @@ -3,7 +3,5 @@ unicode: "f63a" version: "1.117" --- - - - + diff --git a/src/_icons/square-rounded-arrow-right.svg b/src/_icons/square-rounded-arrow-right.svg index 162e01f48..293e08dab 100644 --- a/src/_icons/square-rounded-arrow-right.svg +++ b/src/_icons/square-rounded-arrow-right.svg @@ -3,7 +3,5 @@ unicode: "f63b" version: "1.117" --- - - - + diff --git a/src/_icons/square-rounded-arrow-up.svg b/src/_icons/square-rounded-arrow-up.svg index f1a22cb60..dd89d80bc 100644 --- a/src/_icons/square-rounded-arrow-up.svg +++ b/src/_icons/square-rounded-arrow-up.svg @@ -3,7 +3,5 @@ unicode: "f63c" version: "1.117" --- - - - + diff --git a/src/_icons/square-rounded-check.svg b/src/_icons/square-rounded-check.svg index e40c9ed32..5b7598272 100644 --- a/src/_icons/square-rounded-check.svg +++ b/src/_icons/square-rounded-check.svg @@ -3,6 +3,5 @@ unicode: "f63d" version: "1.117" --- - - + diff --git a/src/_icons/square-rounded-chevron-down.svg b/src/_icons/square-rounded-chevron-down.svg index fb2efeec8..c57e936f4 100644 --- a/src/_icons/square-rounded-chevron-down.svg +++ b/src/_icons/square-rounded-chevron-down.svg @@ -4,6 +4,5 @@ unicode: "f62b" version: "1.116" --- - - + diff --git a/src/_icons/square-rounded-chevron-left.svg b/src/_icons/square-rounded-chevron-left.svg index afe5481e4..0b8eee0ed 100644 --- a/src/_icons/square-rounded-chevron-left.svg +++ b/src/_icons/square-rounded-chevron-left.svg @@ -4,6 +4,5 @@ unicode: "f62c" version: "1.116" --- - - + diff --git a/src/_icons/square-rounded-chevron-right.svg b/src/_icons/square-rounded-chevron-right.svg index 5bcc02ddd..3c88ed8c7 100644 --- a/src/_icons/square-rounded-chevron-right.svg +++ b/src/_icons/square-rounded-chevron-right.svg @@ -4,6 +4,5 @@ unicode: "f62d" version: "1.116" --- - - + diff --git a/src/_icons/square-rounded-chevron-up.svg b/src/_icons/square-rounded-chevron-up.svg index 334e48db4..28164cd69 100644 --- a/src/_icons/square-rounded-chevron-up.svg +++ b/src/_icons/square-rounded-chevron-up.svg @@ -4,6 +4,5 @@ unicode: "f62e" version: "1.116" --- - - + diff --git a/src/_icons/square-rounded-chevrons-down.svg b/src/_icons/square-rounded-chevrons-down.svg index 5ec69b5bd..d153ca2c2 100644 --- a/src/_icons/square-rounded-chevrons-down.svg +++ b/src/_icons/square-rounded-chevrons-down.svg @@ -4,7 +4,5 @@ unicode: "f64f" version: "1.118" --- - - - + diff --git a/src/_icons/square-rounded-chevrons-left.svg b/src/_icons/square-rounded-chevrons-left.svg index c9b80aadd..9d30546d8 100644 --- a/src/_icons/square-rounded-chevrons-left.svg +++ b/src/_icons/square-rounded-chevrons-left.svg @@ -4,7 +4,5 @@ unicode: "f650" version: "1.118" --- - - - + diff --git a/src/_icons/square-rounded-chevrons-right.svg b/src/_icons/square-rounded-chevrons-right.svg index 19ed13d05..ffc86ab73 100644 --- a/src/_icons/square-rounded-chevrons-right.svg +++ b/src/_icons/square-rounded-chevrons-right.svg @@ -4,7 +4,5 @@ unicode: "f651" version: "1.118" --- - - - + diff --git a/src/_icons/square-rounded-chevrons-up.svg b/src/_icons/square-rounded-chevrons-up.svg index 9634e944c..e18eaf9dc 100644 --- a/src/_icons/square-rounded-chevrons-up.svg +++ b/src/_icons/square-rounded-chevrons-up.svg @@ -4,7 +4,5 @@ unicode: "f652" version: "1.118" --- - - - + diff --git a/src/_icons/square-rounded-filled.svg b/src/_icons/square-rounded-filled.svg new file mode 100644 index 000000000..f18741c04 --- /dev/null +++ b/src/_icons/square-rounded-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a5" +--- + + + diff --git a/src/_icons/square-rounded-letter-a.svg b/src/_icons/square-rounded-letter-a.svg index c24eed9a3..3adb9e03e 100644 --- a/src/_icons/square-rounded-letter-a.svg +++ b/src/_icons/square-rounded-letter-a.svg @@ -5,7 +5,5 @@ unicode: "f5ae" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-b.svg b/src/_icons/square-rounded-letter-b.svg index 94830c6bc..834d1d715 100644 --- a/src/_icons/square-rounded-letter-b.svg +++ b/src/_icons/square-rounded-letter-b.svg @@ -5,6 +5,5 @@ unicode: "f5af" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-c.svg b/src/_icons/square-rounded-letter-c.svg index ed70dd16d..876bdcc39 100644 --- a/src/_icons/square-rounded-letter-c.svg +++ b/src/_icons/square-rounded-letter-c.svg @@ -5,6 +5,5 @@ unicode: "f5b0" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-d.svg b/src/_icons/square-rounded-letter-d.svg index 41f71fccd..73d46dad2 100644 --- a/src/_icons/square-rounded-letter-d.svg +++ b/src/_icons/square-rounded-letter-d.svg @@ -5,6 +5,5 @@ unicode: "f5b1" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-e.svg b/src/_icons/square-rounded-letter-e.svg index 8862a112f..59512767e 100644 --- a/src/_icons/square-rounded-letter-e.svg +++ b/src/_icons/square-rounded-letter-e.svg @@ -5,7 +5,5 @@ unicode: "f5b2" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-f.svg b/src/_icons/square-rounded-letter-f.svg index 76da3fa71..8c2c37d86 100644 --- a/src/_icons/square-rounded-letter-f.svg +++ b/src/_icons/square-rounded-letter-f.svg @@ -5,7 +5,5 @@ unicode: "f5b3" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-g.svg b/src/_icons/square-rounded-letter-g.svg index 6de48df72..555c2ce7b 100644 --- a/src/_icons/square-rounded-letter-g.svg +++ b/src/_icons/square-rounded-letter-g.svg @@ -5,6 +5,5 @@ unicode: "f5b4" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-h.svg b/src/_icons/square-rounded-letter-h.svg index 6a7d7a408..7b66bd9fc 100644 --- a/src/_icons/square-rounded-letter-h.svg +++ b/src/_icons/square-rounded-letter-h.svg @@ -5,7 +5,5 @@ unicode: "f5b5" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-i.svg b/src/_icons/square-rounded-letter-i.svg index b8c029e3f..b1de6a70b 100644 --- a/src/_icons/square-rounded-letter-i.svg +++ b/src/_icons/square-rounded-letter-i.svg @@ -5,6 +5,5 @@ unicode: "f5b6" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-j.svg b/src/_icons/square-rounded-letter-j.svg index 13e38e4a0..a982a8082 100644 --- a/src/_icons/square-rounded-letter-j.svg +++ b/src/_icons/square-rounded-letter-j.svg @@ -5,6 +5,5 @@ unicode: "f5b7" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-k.svg b/src/_icons/square-rounded-letter-k.svg index ca705375b..43986bb66 100644 --- a/src/_icons/square-rounded-letter-k.svg +++ b/src/_icons/square-rounded-letter-k.svg @@ -5,8 +5,5 @@ unicode: "f5b8" version: "1.111" --- - - - - + diff --git a/src/_icons/square-rounded-letter-l.svg b/src/_icons/square-rounded-letter-l.svg index 8fa91685a..4c8bcd017 100644 --- a/src/_icons/square-rounded-letter-l.svg +++ b/src/_icons/square-rounded-letter-l.svg @@ -5,6 +5,5 @@ unicode: "f5b9" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-m.svg b/src/_icons/square-rounded-letter-m.svg index 6c5b85dbf..e6bf4383a 100644 --- a/src/_icons/square-rounded-letter-m.svg +++ b/src/_icons/square-rounded-letter-m.svg @@ -5,6 +5,5 @@ unicode: "f5ba" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-n.svg b/src/_icons/square-rounded-letter-n.svg index a7d9ac2c9..babc29e62 100644 --- a/src/_icons/square-rounded-letter-n.svg +++ b/src/_icons/square-rounded-letter-n.svg @@ -5,6 +5,5 @@ unicode: "f5bb" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-o.svg b/src/_icons/square-rounded-letter-o.svg index bec6aa0ae..a9cd3de88 100644 --- a/src/_icons/square-rounded-letter-o.svg +++ b/src/_icons/square-rounded-letter-o.svg @@ -5,6 +5,5 @@ unicode: "f5bc" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-p.svg b/src/_icons/square-rounded-letter-p.svg index 882b74e21..9e8e32856 100644 --- a/src/_icons/square-rounded-letter-p.svg +++ b/src/_icons/square-rounded-letter-p.svg @@ -5,6 +5,5 @@ unicode: "f5bd" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-q.svg b/src/_icons/square-rounded-letter-q.svg index 532bcfa04..f3e4b50b3 100644 --- a/src/_icons/square-rounded-letter-q.svg +++ b/src/_icons/square-rounded-letter-q.svg @@ -5,7 +5,5 @@ unicode: "f5be" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-r.svg b/src/_icons/square-rounded-letter-r.svg index caeb0219b..a3dd4b4e2 100644 --- a/src/_icons/square-rounded-letter-r.svg +++ b/src/_icons/square-rounded-letter-r.svg @@ -5,6 +5,5 @@ unicode: "f5bf" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-s.svg b/src/_icons/square-rounded-letter-s.svg index 48f1272b2..2fc5083d6 100644 --- a/src/_icons/square-rounded-letter-s.svg +++ b/src/_icons/square-rounded-letter-s.svg @@ -5,6 +5,5 @@ unicode: "f5c0" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-t.svg b/src/_icons/square-rounded-letter-t.svg index 19cfb49cf..c4816e84f 100644 --- a/src/_icons/square-rounded-letter-t.svg +++ b/src/_icons/square-rounded-letter-t.svg @@ -5,7 +5,5 @@ unicode: "f5c1" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-u.svg b/src/_icons/square-rounded-letter-u.svg index 3e0533655..1ef7b660b 100644 --- a/src/_icons/square-rounded-letter-u.svg +++ b/src/_icons/square-rounded-letter-u.svg @@ -5,6 +5,5 @@ unicode: "f5c2" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-v.svg b/src/_icons/square-rounded-letter-v.svg index d01425125..e0b3bc238 100644 --- a/src/_icons/square-rounded-letter-v.svg +++ b/src/_icons/square-rounded-letter-v.svg @@ -5,6 +5,5 @@ unicode: "f5c3" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-w.svg b/src/_icons/square-rounded-letter-w.svg index 1dcf04547..25fbffcb8 100644 --- a/src/_icons/square-rounded-letter-w.svg +++ b/src/_icons/square-rounded-letter-w.svg @@ -5,6 +5,5 @@ unicode: "f5c4" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-letter-x.svg b/src/_icons/square-rounded-letter-x.svg index 2181670ce..2b70e9c2f 100644 --- a/src/_icons/square-rounded-letter-x.svg +++ b/src/_icons/square-rounded-letter-x.svg @@ -5,7 +5,5 @@ unicode: "f5c5" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-y.svg b/src/_icons/square-rounded-letter-y.svg index 84854cf7e..bb13325b5 100644 --- a/src/_icons/square-rounded-letter-y.svg +++ b/src/_icons/square-rounded-letter-y.svg @@ -5,7 +5,5 @@ unicode: "f5c6" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-letter-z.svg b/src/_icons/square-rounded-letter-z.svg index 0340f25ac..ebad6ef80 100644 --- a/src/_icons/square-rounded-letter-z.svg +++ b/src/_icons/square-rounded-letter-z.svg @@ -5,6 +5,5 @@ unicode: "f5c7" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-minus.svg b/src/_icons/square-rounded-minus.svg index 5c24ff500..444b0e9e1 100644 --- a/src/_icons/square-rounded-minus.svg +++ b/src/_icons/square-rounded-minus.svg @@ -3,6 +3,5 @@ unicode: "f63e" version: "1.117" --- - - + diff --git a/src/_icons/square-rounded-number-0.svg b/src/_icons/square-rounded-number-0.svg index ce24fb745..66774decb 100644 --- a/src/_icons/square-rounded-number-0.svg +++ b/src/_icons/square-rounded-number-0.svg @@ -5,6 +5,5 @@ unicode: "f5c8" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-1.svg b/src/_icons/square-rounded-number-1.svg index 4f0457a7b..90558ee42 100644 --- a/src/_icons/square-rounded-number-1.svg +++ b/src/_icons/square-rounded-number-1.svg @@ -5,6 +5,5 @@ unicode: "f5c9" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-2.svg b/src/_icons/square-rounded-number-2.svg index a220146a7..f60307a87 100644 --- a/src/_icons/square-rounded-number-2.svg +++ b/src/_icons/square-rounded-number-2.svg @@ -5,6 +5,5 @@ unicode: "f5ca" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-3.svg b/src/_icons/square-rounded-number-3.svg index 5352c32e2..95569e7c4 100644 --- a/src/_icons/square-rounded-number-3.svg +++ b/src/_icons/square-rounded-number-3.svg @@ -5,6 +5,5 @@ unicode: "f5cb" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-4.svg b/src/_icons/square-rounded-number-4.svg index fe81817a6..af5713fad 100644 --- a/src/_icons/square-rounded-number-4.svg +++ b/src/_icons/square-rounded-number-4.svg @@ -5,7 +5,5 @@ unicode: "f5cc" version: "1.111" --- - - - + diff --git a/src/_icons/square-rounded-number-5.svg b/src/_icons/square-rounded-number-5.svg index 93a8b4cb7..3d66073d5 100644 --- a/src/_icons/square-rounded-number-5.svg +++ b/src/_icons/square-rounded-number-5.svg @@ -5,6 +5,5 @@ unicode: "f5cd" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-6.svg b/src/_icons/square-rounded-number-6.svg index 56aba99dc..e365c682a 100644 --- a/src/_icons/square-rounded-number-6.svg +++ b/src/_icons/square-rounded-number-6.svg @@ -5,6 +5,5 @@ unicode: "f5ce" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-7.svg b/src/_icons/square-rounded-number-7.svg index 83851bfd1..06224f1d7 100644 --- a/src/_icons/square-rounded-number-7.svg +++ b/src/_icons/square-rounded-number-7.svg @@ -5,6 +5,5 @@ unicode: "f5cf" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-8.svg b/src/_icons/square-rounded-number-8.svg index 7d6cb8e25..c0ab18306 100644 --- a/src/_icons/square-rounded-number-8.svg +++ b/src/_icons/square-rounded-number-8.svg @@ -5,6 +5,5 @@ unicode: "f5d0" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-number-9.svg b/src/_icons/square-rounded-number-9.svg index 1400f5de3..fb30a893a 100644 --- a/src/_icons/square-rounded-number-9.svg +++ b/src/_icons/square-rounded-number-9.svg @@ -5,6 +5,5 @@ unicode: "f5d1" version: "1.111" --- - - + diff --git a/src/_icons/square-rounded-plus.svg b/src/_icons/square-rounded-plus.svg index faa12b9a2..5ca3cc310 100644 --- a/src/_icons/square-rounded-plus.svg +++ b/src/_icons/square-rounded-plus.svg @@ -3,7 +3,5 @@ unicode: "f63f" version: "1.117" --- - - - + diff --git a/src/_icons/square-rounded-x.svg b/src/_icons/square-rounded-x.svg index e4ad3af1f..2ff79ec31 100644 --- a/src/_icons/square-rounded-x.svg +++ b/src/_icons/square-rounded-x.svg @@ -3,6 +3,5 @@ unicode: "f640" version: "1.117" --- - - + diff --git a/src/_icons/square-toggle-horizontal.svg b/src/_icons/square-toggle-horizontal.svg index 7b67cb71d..1e1146881 100644 --- a/src/_icons/square-toggle-horizontal.svg +++ b/src/_icons/square-toggle-horizontal.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eef3" --- - - - - - + diff --git a/src/_icons/square-toggle.svg b/src/_icons/square-toggle.svg index a3d051e77..fd30326a2 100644 --- a/src/_icons/square-toggle.svg +++ b/src/_icons/square-toggle.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eef4" --- - - - - - + diff --git a/src/_icons/square-x.svg b/src/_icons/square-x.svg index 0f5660cd6..9ca7437b1 100644 --- a/src/_icons/square-x.svg +++ b/src/_icons/square-x.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb2b" --- - - + diff --git a/src/_icons/square.svg b/src/_icons/square.svg index 79c571e21..99a7e4512 100644 --- a/src/_icons/square.svg +++ b/src/_icons/square.svg @@ -5,5 +5,5 @@ version: "1.0" unicode: "eb2c" --- - + diff --git a/src/_icons/squares-diagonal.svg b/src/_icons/squares-diagonal.svg index 75cd19fec..14c815f7d 100644 --- a/src/_icons/squares-diagonal.svg +++ b/src/_icons/squares-diagonal.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eef5" --- - - - + diff --git a/src/_icons/squares-filled.svg b/src/_icons/squares-filled.svg index d7894ce2e..7ef04edbf 100644 --- a/src/_icons/squares-filled.svg +++ b/src/_icons/squares-filled.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eef6" --- - - - - - + diff --git a/src/_icons/stack-2.svg b/src/_icons/stack-2.svg index dca0f43a7..5c8f7b73e 100644 --- a/src/_icons/stack-2.svg +++ b/src/_icons/stack-2.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "eef7" --- - - - + diff --git a/src/_icons/stack-3.svg b/src/_icons/stack-3.svg index 30bea7f29..5ace81a85 100644 --- a/src/_icons/stack-3.svg +++ b/src/_icons/stack-3.svg @@ -5,8 +5,5 @@ version: "1.47" unicode: "ef9d" --- - - - - + diff --git a/src/_icons/stack-pop.svg b/src/_icons/stack-pop.svg index fa2e24441..24a6e0229 100644 --- a/src/_icons/stack-pop.svg +++ b/src/_icons/stack-pop.svg @@ -5,8 +5,5 @@ version: "1.73" unicode: "f234" --- - - - - + diff --git a/src/_icons/stack-push.svg b/src/_icons/stack-push.svg index 56261074c..8f852f258 100644 --- a/src/_icons/stack-push.svg +++ b/src/_icons/stack-push.svg @@ -5,8 +5,5 @@ version: "1.73" unicode: "f235" --- - - - - + diff --git a/src/_icons/stack.svg b/src/_icons/stack.svg index a16937ac0..261f7e98b 100644 --- a/src/_icons/stack.svg +++ b/src/_icons/stack.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eb2d" --- - - + diff --git a/src/_icons/stairs-down.svg b/src/_icons/stairs-down.svg index 6a74dad44..da6717c54 100644 --- a/src/_icons/stairs-down.svg +++ b/src/_icons/stairs-down.svg @@ -5,6 +5,5 @@ version: "1.17" unicode: "eca4" --- - - + diff --git a/src/_icons/stairs-up.svg b/src/_icons/stairs-up.svg index a0858f4dc..586ddbadb 100644 --- a/src/_icons/stairs-up.svg +++ b/src/_icons/stairs-up.svg @@ -5,6 +5,5 @@ version: "1.17" unicode: "eca5" --- - - + diff --git a/src/_icons/star-filled.svg b/src/_icons/star-filled.svg new file mode 100644 index 000000000..d09ca4466 --- /dev/null +++ b/src/_icons/star-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a6" +--- + + + diff --git a/src/_icons/star-half-filled.svg b/src/_icons/star-half-filled.svg new file mode 100644 index 000000000..7dcda1549 --- /dev/null +++ b/src/_icons/star-half-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a7" +--- + + + diff --git a/src/_icons/star-off.svg b/src/_icons/star-off.svg index 438919685..676b9e0a3 100644 --- a/src/_icons/star-off.svg +++ b/src/_icons/star-off.svg @@ -5,6 +5,5 @@ version: "1.31" unicode: "ed62" --- - - + diff --git a/src/_icons/stars-filled.svg b/src/_icons/stars-filled.svg new file mode 100644 index 000000000..5f217d66d --- /dev/null +++ b/src/_icons/stars-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a8" +--- + + + diff --git a/src/_icons/stars-off.svg b/src/_icons/stars-off.svg index 126ec4878..a8647b26f 100644 --- a/src/_icons/stars-off.svg +++ b/src/_icons/stars-off.svg @@ -5,8 +5,5 @@ unicode: "f430" version: "1.94" --- - - - - + diff --git a/src/_icons/stars.svg b/src/_icons/stars.svg index 1598ea75b..b52a3f879 100644 --- a/src/_icons/stars.svg +++ b/src/_icons/stars.svg @@ -5,7 +5,5 @@ category: System unicode: "ed38" --- - - - + diff --git a/src/_icons/status-change.svg b/src/_icons/status-change.svg index 57d40647c..8b3c9424f 100644 --- a/src/_icons/status-change.svg +++ b/src/_icons/status-change.svg @@ -4,8 +4,5 @@ version: "1.93" unicode: "f3b0" --- - - - - + diff --git a/src/_icons/steam.svg b/src/_icons/steam.svg index 354d96c60..50e935313 100644 --- a/src/_icons/steam.svg +++ b/src/_icons/steam.svg @@ -4,12 +4,5 @@ version: "1.74" unicode: "f24b" --- - - - - - - - - + diff --git a/src/_icons/steering-wheel-off.svg b/src/_icons/steering-wheel-off.svg index c28905d3a..295d649f6 100644 --- a/src/_icons/steering-wheel-off.svg +++ b/src/_icons/steering-wheel-off.svg @@ -5,10 +5,5 @@ unicode: "f431" version: "1.94" --- - - - - - - + diff --git a/src/_icons/steering-wheel.svg b/src/_icons/steering-wheel.svg index 87a3ced9a..fc478601c 100644 --- a/src/_icons/steering-wheel.svg +++ b/src/_icons/steering-wheel.svg @@ -5,9 +5,5 @@ version: "1.13" unicode: "ec7b" --- - - - - - + diff --git a/src/_icons/step-into.svg b/src/_icons/step-into.svg index 2319fa257..d921f5a4f 100644 --- a/src/_icons/step-into.svg +++ b/src/_icons/step-into.svg @@ -5,8 +5,5 @@ version: "1.20" unicode: "ece0" --- - - - - + diff --git a/src/_icons/step-out.svg b/src/_icons/step-out.svg index 0973f18b6..4153d1088 100644 --- a/src/_icons/step-out.svg +++ b/src/_icons/step-out.svg @@ -5,8 +5,5 @@ version: "1.20" unicode: "ece1" --- - - - - + diff --git a/src/_icons/stereo-glasses.svg b/src/_icons/stereo-glasses.svg index d05de4893..4715047eb 100644 --- a/src/_icons/stereo-glasses.svg +++ b/src/_icons/stereo-glasses.svg @@ -4,9 +4,5 @@ unicode: "f4cb" version: "1.98" --- - - - - - + diff --git a/src/_icons/stethoscope-off.svg b/src/_icons/stethoscope-off.svg index c33651e25..de507b3c3 100644 --- a/src/_icons/stethoscope-off.svg +++ b/src/_icons/stethoscope-off.svg @@ -5,9 +5,5 @@ unicode: "f432" version: "1.94" --- - - - - - + diff --git a/src/_icons/stethoscope.svg b/src/_icons/stethoscope.svg index a2e322aaa..8c1c78a68 100644 --- a/src/_icons/stethoscope.svg +++ b/src/_icons/stethoscope.svg @@ -5,9 +5,5 @@ category: Health unicode: "edbe" --- - - - - - + diff --git a/src/_icons/sticker.svg b/src/_icons/sticker.svg index d01e75960..d8914e088 100644 --- a/src/_icons/sticker.svg +++ b/src/_icons/sticker.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb2f" --- - - + diff --git a/src/_icons/storm-off.svg b/src/_icons/storm-off.svg index e0b6edbb2..bc0f4080a 100644 --- a/src/_icons/storm-off.svg +++ b/src/_icons/storm-off.svg @@ -4,9 +4,5 @@ unicode: "f433" version: "1.94" --- - - - - - + diff --git a/src/_icons/storm.svg b/src/_icons/storm.svg index 7fb2ab8a4..3550deed1 100644 --- a/src/_icons/storm.svg +++ b/src/_icons/storm.svg @@ -4,8 +4,5 @@ version: "1.74" unicode: "f24c" --- - - - - + diff --git a/src/_icons/stretching.svg b/src/_icons/stretching.svg index 4e0ab135e..43369c9f6 100644 --- a/src/_icons/stretching.svg +++ b/src/_icons/stretching.svg @@ -5,7 +5,5 @@ version: "1.82" unicode: "f2db" --- - - - + diff --git a/src/_icons/strikethrough.svg b/src/_icons/strikethrough.svg index 67f9b75c3..4ebd1da0b 100644 --- a/src/_icons/strikethrough.svg +++ b/src/_icons/strikethrough.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb9e" --- - - + diff --git a/src/_icons/submarine.svg b/src/_icons/submarine.svg index 1622cfed8..5fb2d5899 100644 --- a/src/_icons/submarine.svg +++ b/src/_icons/submarine.svg @@ -5,7 +5,5 @@ version: "1.34" unicode: "ed94" --- - - - + diff --git a/src/_icons/subscript.svg b/src/_icons/subscript.svg index 5a61b7f0e..532b1e4f5 100644 --- a/src/_icons/subscript.svg +++ b/src/_icons/subscript.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eb9f" --- - - + diff --git a/src/_icons/subtask.svg b/src/_icons/subtask.svg index 0d68ac140..f8e18d2e0 100644 --- a/src/_icons/subtask.svg +++ b/src/_icons/subtask.svg @@ -4,9 +4,5 @@ version: "1.16" unicode: "ec9f" --- - - - - - + diff --git a/src/_icons/sum-off.svg b/src/_icons/sum-off.svg index 9dac8e353..52ac14e93 100644 --- a/src/_icons/sum-off.svg +++ b/src/_icons/sum-off.svg @@ -5,6 +5,5 @@ version: "1.67" unicode: "f1ab" --- - - + diff --git a/src/_icons/sun-filled.svg b/src/_icons/sun-filled.svg new file mode 100644 index 000000000..dd8775d06 --- /dev/null +++ b/src/_icons/sun-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6a9" +--- + + + + diff --git a/src/_icons/sun-high.svg b/src/_icons/sun-high.svg index 6994a9ac8..9c7f4ad2f 100644 --- a/src/_icons/sun-high.svg +++ b/src/_icons/sun-high.svg @@ -5,13 +5,5 @@ version: "1.73" unicode: "f236" --- - - - - - - - - - + diff --git a/src/_icons/sun-low.svg b/src/_icons/sun-low.svg index e9ec239fc..18fc37f8d 100644 --- a/src/_icons/sun-low.svg +++ b/src/_icons/sun-low.svg @@ -5,13 +5,5 @@ version: "1.73" unicode: "f237" --- - - - - - - - - - + diff --git a/src/_icons/sun-moon.svg b/src/_icons/sun-moon.svg index 803fcd0cf..7c1d6e15e 100644 --- a/src/_icons/sun-moon.svg +++ b/src/_icons/sun-moon.svg @@ -5,10 +5,5 @@ unicode: "f4a3" version: "1.96" --- - - - - - - + diff --git a/src/_icons/sun-off.svg b/src/_icons/sun-off.svg index 83f8dcedf..0d6f4dedc 100644 --- a/src/_icons/sun-off.svg +++ b/src/_icons/sun-off.svg @@ -5,7 +5,5 @@ version: "1.31" unicode: "ed63" --- - - - + diff --git a/src/_icons/sun-wind.svg b/src/_icons/sun-wind.svg index 2fe0308d4..566d76789 100644 --- a/src/_icons/sun-wind.svg +++ b/src/_icons/sun-wind.svg @@ -5,13 +5,5 @@ version: "1.73" unicode: "f238" --- - - - - - - - - - + diff --git a/src/_icons/sun.svg b/src/_icons/sun.svg index b87352d17..f7cbacb2f 100644 --- a/src/_icons/sun.svg +++ b/src/_icons/sun.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb30" --- - - + diff --git a/src/_icons/sunglasses.svg b/src/_icons/sunglasses.svg index f2437eb67..6a4685be0 100644 --- a/src/_icons/sunglasses.svg +++ b/src/_icons/sunglasses.svg @@ -5,11 +5,5 @@ version: "1.73" unicode: "f239" --- - - - - - - - + diff --git a/src/_icons/sunrise.svg b/src/_icons/sunrise.svg index a47d37823..54a795cf0 100644 --- a/src/_icons/sunrise.svg +++ b/src/_icons/sunrise.svg @@ -5,7 +5,5 @@ version: "1.10" unicode: "ef1c" --- - - - + diff --git a/src/_icons/sunset-2.svg b/src/_icons/sunset-2.svg index e0c221f9e..59cee7e0a 100644 --- a/src/_icons/sunset-2.svg +++ b/src/_icons/sunset-2.svg @@ -5,13 +5,5 @@ version: "1.73" unicode: "f23a" --- - - - - - - - - - + diff --git a/src/_icons/sunset.svg b/src/_icons/sunset.svg index e5df4aa76..7c84b40aa 100644 --- a/src/_icons/sunset.svg +++ b/src/_icons/sunset.svg @@ -5,7 +5,5 @@ version: "1.10" unicode: "ec31" --- - - - + diff --git a/src/_icons/superscript.svg b/src/_icons/superscript.svg index 25c06e165..6f63eb927 100644 --- a/src/_icons/superscript.svg +++ b/src/_icons/superscript.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eba0" --- - - + diff --git a/src/_icons/svg.svg b/src/_icons/svg.svg index bc04fc3d3..df5584c66 100644 --- a/src/_icons/svg.svg +++ b/src/_icons/svg.svg @@ -4,7 +4,5 @@ version: "1.75" unicode: "f25a" --- - - - + diff --git a/src/_icons/swimming.svg b/src/_icons/swimming.svg index 31ee643f4..3fc1dc1cd 100644 --- a/src/_icons/swimming.svg +++ b/src/_icons/swimming.svg @@ -5,7 +5,5 @@ version: "1.14" unicode: "ec92" --- - - - + diff --git a/src/_icons/swipe.svg b/src/_icons/swipe.svg index 9de0671a6..13469e177 100644 --- a/src/_icons/swipe.svg +++ b/src/_icons/swipe.svg @@ -4,6 +4,5 @@ version: "1.105" unicode: "f551" --- - - + diff --git a/src/_icons/switch-2.svg b/src/_icons/switch-2.svg index f170fcc0d..8495a185c 100644 --- a/src/_icons/switch-2.svg +++ b/src/_icons/switch-2.svg @@ -5,8 +5,5 @@ version: "1.35" unicode: "edbf" --- - - - - + diff --git a/src/_icons/switch-3.svg b/src/_icons/switch-3.svg index 25873e4d6..56b75e8bf 100644 --- a/src/_icons/switch-3.svg +++ b/src/_icons/switch-3.svg @@ -4,8 +4,5 @@ version: "1.35" unicode: "edc0" --- - - - - + diff --git a/src/_icons/switch-horizontal.svg b/src/_icons/switch-horizontal.svg index 34c5d91cf..0649a59f5 100644 --- a/src/_icons/switch-horizontal.svg +++ b/src/_icons/switch-horizontal.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb31" --- - - - - + diff --git a/src/_icons/switch-vertical.svg b/src/_icons/switch-vertical.svg index adb4361fa..0d2130904 100644 --- a/src/_icons/switch-vertical.svg +++ b/src/_icons/switch-vertical.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb32" --- - - - - + diff --git a/src/_icons/switch.svg b/src/_icons/switch.svg index f70e90953..761f1bb97 100644 --- a/src/_icons/switch.svg +++ b/src/_icons/switch.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eb33" --- - - - - - + diff --git a/src/_icons/sword-off.svg b/src/_icons/sword-off.svg index 6a2c7df5f..65d47b977 100644 --- a/src/_icons/sword-off.svg +++ b/src/_icons/sword-off.svg @@ -4,7 +4,5 @@ unicode: "f434" version: "1.94" --- - - - + diff --git a/src/_icons/sword.svg b/src/_icons/sword.svg index c17976107..9fecc399d 100644 --- a/src/_icons/sword.svg +++ b/src/_icons/sword.svg @@ -4,6 +4,5 @@ version: "1.55" unicode: "f030" --- - - + diff --git a/src/_icons/swords.svg b/src/_icons/swords.svg index 16b01e4ce..8451d24ff 100644 --- a/src/_icons/swords.svg +++ b/src/_icons/swords.svg @@ -4,8 +4,5 @@ version: "1.65" unicode: "f132" --- - - - - + diff --git a/src/_icons/table-alias.svg b/src/_icons/table-alias.svg index 9da386ca3..c70e664e0 100644 --- a/src/_icons/table-alias.svg +++ b/src/_icons/table-alias.svg @@ -5,8 +5,5 @@ version: "1.75" unicode: "f25b" --- - - - - + diff --git a/src/_icons/table-off.svg b/src/_icons/table-off.svg index ec5f68e37..4239296cd 100644 --- a/src/_icons/table-off.svg +++ b/src/_icons/table-off.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "eefa" --- - - - - + diff --git a/src/_icons/table-options.svg b/src/_icons/table-options.svg index 212e4d33a..f9a926050 100644 --- a/src/_icons/table-options.svg +++ b/src/_icons/table-options.svg @@ -5,14 +5,5 @@ version: "1.75" unicode: "f25c" --- - - - - - - - - - - + diff --git a/src/_icons/table-shortcut.svg b/src/_icons/table-shortcut.svg index e04e383c5..4c9989dce 100644 --- a/src/_icons/table-shortcut.svg +++ b/src/_icons/table-shortcut.svg @@ -5,9 +5,5 @@ version: "1.75" unicode: "f25d" --- - - - - - + diff --git a/src/_icons/table.svg b/src/_icons/table.svg index dbefca5da..aa2f14d9f 100644 --- a/src/_icons/table.svg +++ b/src/_icons/table.svg @@ -5,7 +5,5 @@ version: "1.3" unicode: "eba1" --- - - - + diff --git a/src/_icons/tag-off.svg b/src/_icons/tag-off.svg index 0fbb934aa..e8d57d2b2 100644 --- a/src/_icons/tag-off.svg +++ b/src/_icons/tag-off.svg @@ -5,7 +5,5 @@ version: "1.49" unicode: "efc0" --- - - - + diff --git a/src/_icons/tag.svg b/src/_icons/tag.svg index 4e0d2b743..8314dc2a3 100644 --- a/src/_icons/tag.svg +++ b/src/_icons/tag.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb34" --- - - + diff --git a/src/_icons/tags-off.svg b/src/_icons/tags-off.svg index f01cf5fb7..796c9ea74 100644 --- a/src/_icons/tags-off.svg +++ b/src/_icons/tags-off.svg @@ -5,8 +5,5 @@ version: "1.49" unicode: "efc1" --- - - - - + diff --git a/src/_icons/tags.svg b/src/_icons/tags.svg index 2f080fd63..15cf7e804 100644 --- a/src/_icons/tags.svg +++ b/src/_icons/tags.svg @@ -5,7 +5,5 @@ version: "1.46" unicode: "ef86" --- - - - + diff --git a/src/_icons/tallymark-1.svg b/src/_icons/tallymark-1.svg index 5942c941d..76769971d 100644 --- a/src/_icons/tallymark-1.svg +++ b/src/_icons/tallymark-1.svg @@ -5,5 +5,5 @@ version: "1.11" unicode: "ec46" --- - + diff --git a/src/_icons/tallymark-2.svg b/src/_icons/tallymark-2.svg index bd238ffb4..0730f8824 100644 --- a/src/_icons/tallymark-2.svg +++ b/src/_icons/tallymark-2.svg @@ -5,6 +5,5 @@ version: "1.11" unicode: "ec47" --- - - + diff --git a/src/_icons/tallymark-3.svg b/src/_icons/tallymark-3.svg index 4735b2083..108fd4c10 100644 --- a/src/_icons/tallymark-3.svg +++ b/src/_icons/tallymark-3.svg @@ -5,7 +5,5 @@ version: "1.11" unicode: "ec48" --- - - - + diff --git a/src/_icons/tallymark-4.svg b/src/_icons/tallymark-4.svg index 53ada9458..6e78f194f 100644 --- a/src/_icons/tallymark-4.svg +++ b/src/_icons/tallymark-4.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec49" --- - - - - + diff --git a/src/_icons/tallymarks.svg b/src/_icons/tallymarks.svg index 9af771389..95849a9cb 100644 --- a/src/_icons/tallymarks.svg +++ b/src/_icons/tallymarks.svg @@ -5,9 +5,5 @@ version: "1.11" unicode: "ec4a" --- - - - - - + diff --git a/src/_icons/tank.svg b/src/_icons/tank.svg index 8831ab82c..8fa281d0f 100644 --- a/src/_icons/tank.svg +++ b/src/_icons/tank.svg @@ -5,7 +5,5 @@ version: "1.34" unicode: "ed95" --- - - - + diff --git a/src/_icons/target-arrow.svg b/src/_icons/target-arrow.svg index 8df8fba3a..733a42e94 100644 --- a/src/_icons/target-arrow.svg +++ b/src/_icons/target-arrow.svg @@ -5,9 +5,5 @@ unicode: "f51a" category: Sport --- - - - - - + diff --git a/src/_icons/target-off.svg b/src/_icons/target-off.svg index 29efcaebc..ea2adc659 100644 --- a/src/_icons/target-off.svg +++ b/src/_icons/target-off.svg @@ -5,8 +5,5 @@ version: "1.67" unicode: "f1ad" --- - - - - + diff --git a/src/_icons/target.svg b/src/_icons/target.svg index d85c9b161..3236a539d 100644 --- a/src/_icons/target.svg +++ b/src/_icons/target.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb35" --- - - - + diff --git a/src/_icons/teapot.svg b/src/_icons/teapot.svg index 1c757f81d..0db50519e 100644 --- a/src/_icons/teapot.svg +++ b/src/_icons/teapot.svg @@ -4,7 +4,5 @@ version: "1.105" unicode: "f552" --- - - - + diff --git a/src/_icons/telescope-off.svg b/src/_icons/telescope-off.svg index f7a9f7717..d1d51e0ed 100644 --- a/src/_icons/telescope-off.svg +++ b/src/_icons/telescope-off.svg @@ -4,9 +4,5 @@ version: "1.67" unicode: "f1ae" --- - - - - - + diff --git a/src/_icons/telescope.svg b/src/_icons/telescope.svg index 2a261508c..60da30f07 100644 --- a/src/_icons/telescope.svg +++ b/src/_icons/telescope.svg @@ -4,8 +4,5 @@ version: "1.59" unicode: "f07d" --- - - - - + diff --git a/src/_icons/temperature-celsius.svg b/src/_icons/temperature-celsius.svg index 6ded35ebc..df9c7bae1 100644 --- a/src/_icons/temperature-celsius.svg +++ b/src/_icons/temperature-celsius.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eb36" --- - - + diff --git a/src/_icons/temperature-fahrenheit.svg b/src/_icons/temperature-fahrenheit.svg index e40e97901..c2d73a048 100644 --- a/src/_icons/temperature-fahrenheit.svg +++ b/src/_icons/temperature-fahrenheit.svg @@ -5,7 +5,5 @@ version: "1.1" unicode: "eb37" --- - - - + diff --git a/src/_icons/temperature-minus.svg b/src/_icons/temperature-minus.svg index 3b17466a0..9a13254f6 100644 --- a/src/_icons/temperature-minus.svg +++ b/src/_icons/temperature-minus.svg @@ -5,7 +5,5 @@ version: "1.7" unicode: "ebed" --- - - - + diff --git a/src/_icons/temperature-off.svg b/src/_icons/temperature-off.svg index bd9493eb9..5c961dc40 100644 --- a/src/_icons/temperature-off.svg +++ b/src/_icons/temperature-off.svg @@ -5,7 +5,5 @@ version: "1.67" unicode: "f1af" --- - - - + diff --git a/src/_icons/temperature-plus.svg b/src/_icons/temperature-plus.svg index 30d8827d5..b58cffa3c 100644 --- a/src/_icons/temperature-plus.svg +++ b/src/_icons/temperature-plus.svg @@ -5,8 +5,5 @@ version: "1.7" unicode: "ebee" --- - - - - + diff --git a/src/_icons/temperature.svg b/src/_icons/temperature.svg index 1482d2a3b..f446795e2 100644 --- a/src/_icons/temperature.svg +++ b/src/_icons/temperature.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eb38" --- - - + diff --git a/src/_icons/template-off.svg b/src/_icons/template-off.svg index f49f2ef84..94cf20d90 100644 --- a/src/_icons/template-off.svg +++ b/src/_icons/template-off.svg @@ -5,10 +5,5 @@ version: "1.67" unicode: "f1b0" --- - - - - - - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg index 2436c4694..49f5babc5 100644 --- a/src/_icons/template.svg +++ b/src/_icons/template.svg @@ -5,9 +5,5 @@ version: "1.1" unicode: "eb39" --- - - - - - + diff --git a/src/_icons/tent-off.svg b/src/_icons/tent-off.svg index 20f504f6a..1527704e1 100644 --- a/src/_icons/tent-off.svg +++ b/src/_icons/tent-off.svg @@ -5,6 +5,5 @@ unicode: "f435" version: "1.94" --- - - + diff --git a/src/_icons/terminal-2.svg b/src/_icons/terminal-2.svg index 31044aca3..b5e44fd83 100644 --- a/src/_icons/terminal-2.svg +++ b/src/_icons/terminal-2.svg @@ -4,7 +4,5 @@ version: "1.7" unicode: "ebef" --- - - - + diff --git a/src/_icons/terminal.svg b/src/_icons/terminal.svg index 3b463ce30..7524770a7 100644 --- a/src/_icons/terminal.svg +++ b/src/_icons/terminal.svg @@ -4,6 +4,5 @@ version: "1.6" unicode: "ebdc" --- - - + diff --git a/src/_icons/test-pipe-2.svg b/src/_icons/test-pipe-2.svg index 7e1e91b36..dff483226 100644 --- a/src/_icons/test-pipe-2.svg +++ b/src/_icons/test-pipe-2.svg @@ -4,7 +4,5 @@ version: "1.61" unicode: "f0a4" --- - - - + diff --git a/src/_icons/test-pipe-off.svg b/src/_icons/test-pipe-off.svg index a1086f7ca..439fbe7bd 100644 --- a/src/_icons/test-pipe-off.svg +++ b/src/_icons/test-pipe-off.svg @@ -4,9 +4,5 @@ version: "1.67" unicode: "f1b1" --- - - - - - + diff --git a/src/_icons/test-pipe.svg b/src/_icons/test-pipe.svg index e5a44b0e6..320b2fd62 100644 --- a/src/_icons/test-pipe.svg +++ b/src/_icons/test-pipe.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eb3a" --- - - - - + diff --git a/src/_icons/tex.svg b/src/_icons/tex.svg index b13ef7cc1..78f6a85e0 100644 --- a/src/_icons/tex.svg +++ b/src/_icons/tex.svg @@ -5,10 +5,5 @@ unicode: "f4e0" version: "1.99" --- - - - - - - + diff --git a/src/_icons/text-caption.svg b/src/_icons/text-caption.svg index a2cf3d730..ea487b2ff 100644 --- a/src/_icons/text-caption.svg +++ b/src/_icons/text-caption.svg @@ -5,7 +5,5 @@ unicode: "f4a4" version: "1.96" --- - - - + diff --git a/src/_icons/text-color.svg b/src/_icons/text-color.svg index b91c79046..73b5bac2f 100644 --- a/src/_icons/text-color.svg +++ b/src/_icons/text-color.svg @@ -5,7 +5,5 @@ version: "1.82" unicode: "f2dc" --- - - - + diff --git a/src/_icons/text-decrease.svg b/src/_icons/text-decrease.svg index 6b5815b0e..79f40d02e 100644 --- a/src/_icons/text-decrease.svg +++ b/src/_icons/text-decrease.svg @@ -5,7 +5,5 @@ version: "1.70" unicode: "f202" --- - - - + diff --git a/src/_icons/text-direction-ltr.svg b/src/_icons/text-direction-ltr.svg index ed7b93623..7e90fbf82 100644 --- a/src/_icons/text-direction-ltr.svg +++ b/src/_icons/text-direction-ltr.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eefc" --- - - - - - + diff --git a/src/_icons/text-direction-rtl.svg b/src/_icons/text-direction-rtl.svg index d5f52e1e4..befa5c243 100644 --- a/src/_icons/text-direction-rtl.svg +++ b/src/_icons/text-direction-rtl.svg @@ -5,9 +5,5 @@ version: "1.39" unicode: "eefd" --- - - - - - + diff --git a/src/_icons/text-increase.svg b/src/_icons/text-increase.svg index 491102d76..858afbd68 100644 --- a/src/_icons/text-increase.svg +++ b/src/_icons/text-increase.svg @@ -5,8 +5,5 @@ version: "1.70" unicode: "f203" --- - - - - + diff --git a/src/_icons/text-orientation.svg b/src/_icons/text-orientation.svg index 73effea51..da003b93b 100644 --- a/src/_icons/text-orientation.svg +++ b/src/_icons/text-orientation.svg @@ -5,9 +5,5 @@ version: "1.79" unicode: "f2a4" --- - - - - - + diff --git a/src/_icons/text-plus.svg b/src/_icons/text-plus.svg index 8af0cc7c9..13fdbd577 100644 --- a/src/_icons/text-plus.svg +++ b/src/_icons/text-plus.svg @@ -5,10 +5,5 @@ version: "1.79" unicode: "f2a5" --- - - - - - - + diff --git a/src/_icons/text-recognition.svg b/src/_icons/text-recognition.svg index f90663815..978af9f09 100644 --- a/src/_icons/text-recognition.svg +++ b/src/_icons/text-recognition.svg @@ -5,10 +5,5 @@ version: "1.70" unicode: "f204" --- - - - - - - + diff --git a/src/_icons/text-resize.svg b/src/_icons/text-resize.svg index 2a72b6d18..8a330c3e9 100644 --- a/src/_icons/text-resize.svg +++ b/src/_icons/text-resize.svg @@ -5,14 +5,5 @@ version: "1.46" unicode: "ef87" --- - - - - - - - - - - + diff --git a/src/_icons/text-size.svg b/src/_icons/text-size.svg index 889063d74..5e8f13505 100644 --- a/src/_icons/text-size.svg +++ b/src/_icons/text-size.svg @@ -5,10 +5,5 @@ version: "1.80" unicode: "f2b1" --- - - - - - - + diff --git a/src/_icons/text-spellcheck.svg b/src/_icons/text-spellcheck.svg index 946001f85..901ad1c39 100644 --- a/src/_icons/text-spellcheck.svg +++ b/src/_icons/text-spellcheck.svg @@ -5,7 +5,5 @@ version: "1.79" unicode: "f2a6" --- - - - + diff --git a/src/_icons/text-wrap-disabled.svg b/src/_icons/text-wrap-disabled.svg index 938babf4e..4060c90f9 100644 --- a/src/_icons/text-wrap-disabled.svg +++ b/src/_icons/text-wrap-disabled.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "eca7" --- - - - + diff --git a/src/_icons/text-wrap.svg b/src/_icons/text-wrap.svg index 6e9aa52ea..e1ab26eca 100644 --- a/src/_icons/text-wrap.svg +++ b/src/_icons/text-wrap.svg @@ -5,7 +5,5 @@ version: "1.6" unicode: "ebdd" --- - - - + diff --git a/src/_icons/texture.svg b/src/_icons/texture.svg index 9ff1c2d13..84f17a6cb 100644 --- a/src/_icons/texture.svg +++ b/src/_icons/texture.svg @@ -4,11 +4,5 @@ version: "1.102" unicode: "f51b" --- - - - - - - - + diff --git a/src/_icons/thermometer.svg b/src/_icons/thermometer.svg index a6aad25d2..27d587fd2 100644 --- a/src/_icons/thermometer.svg +++ b/src/_icons/thermometer.svg @@ -5,9 +5,5 @@ version: "1.44" unicode: "ef67" --- - - - - - + diff --git a/src/_icons/thumb-down-filled.svg b/src/_icons/thumb-down-filled.svg new file mode 100644 index 000000000..3e4d728de --- /dev/null +++ b/src/_icons/thumb-down-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6aa" +--- + + + diff --git a/src/_icons/thumb-down-off.svg b/src/_icons/thumb-down-off.svg index c47e3716f..63418376d 100644 --- a/src/_icons/thumb-down-off.svg +++ b/src/_icons/thumb-down-off.svg @@ -5,6 +5,5 @@ unicode: "f436" version: "1.94" --- - - + diff --git a/src/_icons/thumb-up-filled.svg b/src/_icons/thumb-up-filled.svg new file mode 100644 index 000000000..c4d46cd20 --- /dev/null +++ b/src/_icons/thumb-up-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6ab" +--- + + + diff --git a/src/_icons/thumb-up-off.svg b/src/_icons/thumb-up-off.svg index aa4bab836..17d10a425 100644 --- a/src/_icons/thumb-up-off.svg +++ b/src/_icons/thumb-up-off.svg @@ -5,6 +5,5 @@ unicode: "f437" version: "1.94" --- - - + diff --git a/src/_icons/tic-tac.svg b/src/_icons/tic-tac.svg index 5fbc10268..7a9b6222d 100644 --- a/src/_icons/tic-tac.svg +++ b/src/_icons/tic-tac.svg @@ -5,12 +5,5 @@ unicode: "f51c" category: Sport --- - - - - - - - - + diff --git a/src/_icons/ticket-off.svg b/src/_icons/ticket-off.svg index ae4bfd9c1..fbedc0a9e 100644 --- a/src/_icons/ticket-off.svg +++ b/src/_icons/ticket-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1b2" --- - - - - + diff --git a/src/_icons/ticket.svg b/src/_icons/ticket.svg index 6578b68f4..bffa0890e 100644 --- a/src/_icons/ticket.svg +++ b/src/_icons/ticket.svg @@ -4,8 +4,5 @@ version: "1.0" unicode: "eb3d" --- - - - - + diff --git a/src/_icons/tie.svg b/src/_icons/tie.svg index efdadd706..d2363e7ad 100644 --- a/src/_icons/tie.svg +++ b/src/_icons/tie.svg @@ -4,6 +4,5 @@ version: "1.59" unicode: "f07e" --- - - + diff --git a/src/_icons/tilt-shift-off.svg b/src/_icons/tilt-shift-off.svg index d92d612a6..ee0d8d3c2 100644 --- a/src/_icons/tilt-shift-off.svg +++ b/src/_icons/tilt-shift-off.svg @@ -5,14 +5,5 @@ version: "1.67" unicode: "f1b3" --- - - - - - - - - - - + diff --git a/src/_icons/tilt-shift.svg b/src/_icons/tilt-shift.svg index f6b68e540..b4ed12c2c 100644 --- a/src/_icons/tilt-shift.svg +++ b/src/_icons/tilt-shift.svg @@ -5,13 +5,5 @@ version: "1.39" unicode: "eefe" --- - - - - - - - - - + diff --git a/src/_icons/timeline-event-exclamation.svg b/src/_icons/timeline-event-exclamation.svg index 4cec6a99a..9b2934854 100644 --- a/src/_icons/timeline-event-exclamation.svg +++ b/src/_icons/timeline-event-exclamation.svg @@ -3,10 +3,5 @@ unicode: "f662" version: "1.119" --- - - - - - - + diff --git a/src/_icons/timeline-event-minus.svg b/src/_icons/timeline-event-minus.svg index e8bd05765..61ac58365 100644 --- a/src/_icons/timeline-event-minus.svg +++ b/src/_icons/timeline-event-minus.svg @@ -3,9 +3,5 @@ unicode: "f663" version: "1.119" --- - - - - - + diff --git a/src/_icons/timeline-event-plus.svg b/src/_icons/timeline-event-plus.svg index 23f8e9217..3f109167d 100644 --- a/src/_icons/timeline-event-plus.svg +++ b/src/_icons/timeline-event-plus.svg @@ -3,10 +3,5 @@ unicode: "f664" version: "1.119" --- - - - - - - + diff --git a/src/_icons/timeline-event-text.svg b/src/_icons/timeline-event-text.svg index 2986ce563..7f8850395 100644 --- a/src/_icons/timeline-event-text.svg +++ b/src/_icons/timeline-event-text.svg @@ -3,10 +3,5 @@ unicode: "f665" version: "1.119" --- - - - - - - + diff --git a/src/_icons/timeline-event-x.svg b/src/_icons/timeline-event-x.svg index d0815c903..f38464f7d 100644 --- a/src/_icons/timeline-event-x.svg +++ b/src/_icons/timeline-event-x.svg @@ -3,10 +3,5 @@ unicode: "f666" version: "1.119" --- - - - - - - + diff --git a/src/_icons/timeline-event.svg b/src/_icons/timeline-event.svg index 790b1ed5e..14591e8b2 100644 --- a/src/_icons/timeline-event.svg +++ b/src/_icons/timeline-event.svg @@ -4,8 +4,5 @@ version: "1.105" unicode: "f553" --- - - - - + diff --git a/src/_icons/timeline.svg b/src/_icons/timeline.svg index 5b5d3189b..ce670ac2d 100644 --- a/src/_icons/timeline.svg +++ b/src/_icons/timeline.svg @@ -4,9 +4,5 @@ version: "1.55" unicode: "f031" --- - - - - - + diff --git a/src/_icons/tir.svg b/src/_icons/tir.svg index a87831ef4..88f1b6ec6 100644 --- a/src/_icons/tir.svg +++ b/src/_icons/tir.svg @@ -5,9 +5,5 @@ version: "1.7" unicode: "ebf0" --- - - - - - + diff --git a/src/_icons/toggle-left.svg b/src/_icons/toggle-left.svg index 368ce55d0..e3672f285 100644 --- a/src/_icons/toggle-left.svg +++ b/src/_icons/toggle-left.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb3e" --- - - + diff --git a/src/_icons/toggle-right.svg b/src/_icons/toggle-right.svg index 0bc13047c..76104a9ad 100644 --- a/src/_icons/toggle-right.svg +++ b/src/_icons/toggle-right.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb3f" --- - - + diff --git a/src/_icons/toilet-paper-off.svg b/src/_icons/toilet-paper-off.svg index 721a60596..dbc7b98a8 100644 --- a/src/_icons/toilet-paper-off.svg +++ b/src/_icons/toilet-paper-off.svg @@ -4,10 +4,5 @@ version: "1.67" unicode: "f1b4" --- - - - - - - + diff --git a/src/_icons/toilet-paper.svg b/src/_icons/toilet-paper.svg index 339a3f670..57623410e 100644 --- a/src/_icons/toilet-paper.svg +++ b/src/_icons/toilet-paper.svg @@ -4,9 +4,5 @@ version: "1.50" unicode: "efd3" --- - - - - - + diff --git a/src/_icons/tools-kitchen-2-off.svg b/src/_icons/tools-kitchen-2-off.svg index 786a4efb1..b2fd39dea 100644 --- a/src/_icons/tools-kitchen-2-off.svg +++ b/src/_icons/tools-kitchen-2-off.svg @@ -5,9 +5,5 @@ version: "1.67" unicode: "f1b5" --- - - - - - + diff --git a/src/_icons/tools-kitchen-off.svg b/src/_icons/tools-kitchen-off.svg index 7dd30d188..b82d9e0da 100644 --- a/src/_icons/tools-kitchen-off.svg +++ b/src/_icons/tools-kitchen-off.svg @@ -5,10 +5,5 @@ version: "1.67" unicode: "f1b6" --- - - - - - - + diff --git a/src/_icons/tools-kitchen.svg b/src/_icons/tools-kitchen.svg index 2c04e5ec6..5df1a0959 100644 --- a/src/_icons/tools-kitchen.svg +++ b/src/_icons/tools-kitchen.svg @@ -5,9 +5,5 @@ version: "1.31" unicode: "ed64" --- - - - - - + diff --git a/src/_icons/tools-off.svg b/src/_icons/tools-off.svg index 09cb1efb9..5f0dff1b5 100644 --- a/src/_icons/tools-off.svg +++ b/src/_icons/tools-off.svg @@ -5,11 +5,5 @@ version: "1.67" unicode: "f1b7" --- - - - - - - - + diff --git a/src/_icons/tools.svg b/src/_icons/tools.svg index 2599c8405..89aa32396 100644 --- a/src/_icons/tools.svg +++ b/src/_icons/tools.svg @@ -5,10 +5,5 @@ version: "1.5" unicode: "ebca" --- - - - - - - + diff --git a/src/_icons/tooltip.svg b/src/_icons/tooltip.svg index 4316a973c..50c7b9902 100644 --- a/src/_icons/tooltip.svg +++ b/src/_icons/tooltip.svg @@ -5,6 +5,5 @@ version: "1.82" unicode: "f2dd" --- - - + diff --git a/src/_icons/topology-bus.svg b/src/_icons/topology-bus.svg index d0604cb6c..65ddf3f9d 100644 --- a/src/_icons/topology-bus.svg +++ b/src/_icons/topology-bus.svg @@ -4,11 +4,5 @@ unicode: "f5d9" version: "1.112" --- - - - - - - - + diff --git a/src/_icons/topology-complex.svg b/src/_icons/topology-complex.svg index 96a5136f3..55c7a8649 100644 --- a/src/_icons/topology-complex.svg +++ b/src/_icons/topology-complex.svg @@ -4,14 +4,5 @@ unicode: "f5da" version: "1.112" --- - - - - - - - - - - + diff --git a/src/_icons/topology-full-hierarchy.svg b/src/_icons/topology-full-hierarchy.svg index 519719655..1ba8c229f 100644 --- a/src/_icons/topology-full-hierarchy.svg +++ b/src/_icons/topology-full-hierarchy.svg @@ -4,17 +4,5 @@ unicode: "f5db" version: "1.112" --- - - - - - - - - - - - - - + diff --git a/src/_icons/topology-full.svg b/src/_icons/topology-full.svg index af4926b31..a6dbd7a75 100644 --- a/src/_icons/topology-full.svg +++ b/src/_icons/topology-full.svg @@ -4,14 +4,5 @@ unicode: "f5dc" version: "1.112" --- - - - - - - - - - - + diff --git a/src/_icons/topology-ring-2.svg b/src/_icons/topology-ring-2.svg index 5769c7215..c10ce541f 100644 --- a/src/_icons/topology-ring-2.svg +++ b/src/_icons/topology-ring-2.svg @@ -4,10 +4,5 @@ unicode: "f5dd" version: "1.112" --- - - - - - - + diff --git a/src/_icons/topology-ring-3.svg b/src/_icons/topology-ring-3.svg index 39768bd6a..1095935d9 100644 --- a/src/_icons/topology-ring-3.svg +++ b/src/_icons/topology-ring-3.svg @@ -4,12 +4,5 @@ unicode: "f5de" version: "1.112" --- - - - - - - - - + diff --git a/src/_icons/topology-ring.svg b/src/_icons/topology-ring.svg index 116247fe6..9f72d3c9b 100644 --- a/src/_icons/topology-ring.svg +++ b/src/_icons/topology-ring.svg @@ -4,12 +4,5 @@ unicode: "f5df" version: "1.112" --- - - - - - - - - + diff --git a/src/_icons/topology-star-2.svg b/src/_icons/topology-star-2.svg index edead9fa6..1495b77f8 100644 --- a/src/_icons/topology-star-2.svg +++ b/src/_icons/topology-star-2.svg @@ -4,13 +4,5 @@ unicode: "f5e0" version: "1.112" --- - - - - - - - - - + diff --git a/src/_icons/topology-star-3.svg b/src/_icons/topology-star-3.svg index 42245c406..a29f164e2 100644 --- a/src/_icons/topology-star-3.svg +++ b/src/_icons/topology-star-3.svg @@ -4,17 +4,5 @@ unicode: "f5e1" version: "1.112" --- - - - - - - - - - - - - - + diff --git a/src/_icons/topology-star-ring-2.svg b/src/_icons/topology-star-ring-2.svg index 7d78e400b..580959d9f 100644 --- a/src/_icons/topology-star-ring-2.svg +++ b/src/_icons/topology-star-ring-2.svg @@ -4,17 +4,5 @@ unicode: "f5e2" version: "1.112" --- - - - - - - - - - - - - - + diff --git a/src/_icons/topology-star-ring-3.svg b/src/_icons/topology-star-ring-3.svg index 51595cd78..3700522f9 100644 --- a/src/_icons/topology-star-ring-3.svg +++ b/src/_icons/topology-star-ring-3.svg @@ -4,23 +4,5 @@ unicode: "f5e3" version: "1.112" --- - - - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/topology-star-ring.svg b/src/_icons/topology-star-ring.svg index bfd4e4853..c14a350ad 100644 --- a/src/_icons/topology-star-ring.svg +++ b/src/_icons/topology-star-ring.svg @@ -4,17 +4,5 @@ unicode: "f5e4" version: "1.112" --- - - - - - - - - - - - - - + diff --git a/src/_icons/topology-star.svg b/src/_icons/topology-star.svg index 4c3511de7..db6edea18 100644 --- a/src/_icons/topology-star.svg +++ b/src/_icons/topology-star.svg @@ -4,13 +4,5 @@ unicode: "f5e5" version: "1.112" --- - - - - - - - - - + diff --git a/src/_icons/torii.svg b/src/_icons/torii.svg index cf696e815..930791baa 100644 --- a/src/_icons/torii.svg +++ b/src/_icons/torii.svg @@ -5,9 +5,5 @@ unicode: "f59b" version: "1.109" --- - - - - - + diff --git a/src/_icons/tornado.svg b/src/_icons/tornado.svg index 89aaa3b9c..4e6b4b054 100644 --- a/src/_icons/tornado.svg +++ b/src/_icons/tornado.svg @@ -5,9 +5,5 @@ version: "1.20" unicode: "ece2" --- - - - - - + diff --git a/src/_icons/tournament.svg b/src/_icons/tournament.svg index bc4f3211b..49ca7ba09 100644 --- a/src/_icons/tournament.svg +++ b/src/_icons/tournament.svg @@ -5,11 +5,5 @@ unicode: "ecd0" category: Sport --- - - - - - - - + diff --git a/src/_icons/tower-off.svg b/src/_icons/tower-off.svg index 80a560054..9aec2f449 100644 --- a/src/_icons/tower-off.svg +++ b/src/_icons/tower-off.svg @@ -5,7 +5,5 @@ version: "1.81" unicode: "f2ca" --- - - - + diff --git a/src/_icons/tower.svg b/src/_icons/tower.svg index 8cbb9abb7..c31c63b6b 100644 --- a/src/_icons/tower.svg +++ b/src/_icons/tower.svg @@ -5,6 +5,5 @@ version: "1.81" unicode: "f2cb" --- - - + diff --git a/src/_icons/tractor.svg b/src/_icons/tractor.svg index 09721cd29..805db370b 100644 --- a/src/_icons/tractor.svg +++ b/src/_icons/tractor.svg @@ -5,10 +5,5 @@ version: "1.8" unicode: "ec0d" --- - - - - - - + diff --git a/src/_icons/trademark.svg b/src/_icons/trademark.svg index c13d369fa..55231b9f6 100644 --- a/src/_icons/trademark.svg +++ b/src/_icons/trademark.svg @@ -5,6 +5,5 @@ category: Symbols unicode: "ec0e" --- - - + diff --git a/src/_icons/traffic-cone-off.svg b/src/_icons/traffic-cone-off.svg index 66397d91d..e7575c8e0 100644 --- a/src/_icons/traffic-cone-off.svg +++ b/src/_icons/traffic-cone-off.svg @@ -5,10 +5,5 @@ version: "1.67" unicode: "f1b8" --- - - - - - - + diff --git a/src/_icons/traffic-cone.svg b/src/_icons/traffic-cone.svg index aa6f60914..6e9e38be9 100644 --- a/src/_icons/traffic-cone.svg +++ b/src/_icons/traffic-cone.svg @@ -5,8 +5,5 @@ version: "1.8" unicode: "ec0f" --- - - - - + diff --git a/src/_icons/traffic-lights-off.svg b/src/_icons/traffic-lights-off.svg index 4eb1ecda4..abe3b1d89 100644 --- a/src/_icons/traffic-lights-off.svg +++ b/src/_icons/traffic-lights-off.svg @@ -5,9 +5,5 @@ version: "1.67" unicode: "f1b9" --- - - - - - + diff --git a/src/_icons/traffic-lights.svg b/src/_icons/traffic-lights.svg index 3c8c3cfd7..bc3b928bf 100644 --- a/src/_icons/traffic-lights.svg +++ b/src/_icons/traffic-lights.svg @@ -5,8 +5,5 @@ version: "1.27" unicode: "ed39" --- - - - - + diff --git a/src/_icons/train.svg b/src/_icons/train.svg index 29c6f9c77..0de1b7e5e 100644 --- a/src/_icons/train.svg +++ b/src/_icons/train.svg @@ -5,11 +5,5 @@ version: "1.34" unicode: "ed96" --- - - - - - - - + diff --git a/src/_icons/transfer-in.svg b/src/_icons/transfer-in.svg index c6f5805ce..358dae27c 100644 --- a/src/_icons/transfer-in.svg +++ b/src/_icons/transfer-in.svg @@ -5,7 +5,5 @@ version: "1.41" unicode: "ef2f" --- - - - + diff --git a/src/_icons/transfer-out.svg b/src/_icons/transfer-out.svg index b00768434..757f8ba1a 100644 --- a/src/_icons/transfer-out.svg +++ b/src/_icons/transfer-out.svg @@ -5,7 +5,5 @@ version: "1.41" unicode: "ef30" --- - - - + diff --git a/src/_icons/transform-filled.svg b/src/_icons/transform-filled.svg new file mode 100644 index 000000000..e91c4285f --- /dev/null +++ b/src/_icons/transform-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6ac" +--- + + + + diff --git a/src/_icons/transform.svg b/src/_icons/transform.svg index 18f43c841..e7dc1edd3 100644 --- a/src/_icons/transform.svg +++ b/src/_icons/transform.svg @@ -4,10 +4,5 @@ unicode: "f38e" version: "1.91" --- - - - - - - + diff --git a/src/_icons/transition-bottom.svg b/src/_icons/transition-bottom.svg index e82de4199..96fd9d2d8 100644 --- a/src/_icons/transition-bottom.svg +++ b/src/_icons/transition-bottom.svg @@ -5,8 +5,5 @@ version: "1.80" unicode: "f2b2" --- - - - - + diff --git a/src/_icons/transition-left.svg b/src/_icons/transition-left.svg index cc72710fb..788f9a615 100644 --- a/src/_icons/transition-left.svg +++ b/src/_icons/transition-left.svg @@ -5,8 +5,5 @@ version: "1.80" unicode: "f2b3" --- - - - - + diff --git a/src/_icons/transition-right.svg b/src/_icons/transition-right.svg index e01f2eb37..052859722 100644 --- a/src/_icons/transition-right.svg +++ b/src/_icons/transition-right.svg @@ -5,8 +5,5 @@ version: "1.80" unicode: "f2b4" --- - - - - + diff --git a/src/_icons/transition-top.svg b/src/_icons/transition-top.svg index f7dd6410f..991323dfb 100644 --- a/src/_icons/transition-top.svg +++ b/src/_icons/transition-top.svg @@ -5,8 +5,5 @@ version: "1.80" unicode: "f2b5" --- - - - - + diff --git a/src/_icons/trash-off.svg b/src/_icons/trash-off.svg index 37186a2ff..30fadbc27 100644 --- a/src/_icons/trash-off.svg +++ b/src/_icons/trash-off.svg @@ -5,11 +5,5 @@ version: "1.31" unicode: "ed65" --- - - - - - - - + diff --git a/src/_icons/trash-x.svg b/src/_icons/trash-x.svg index 4dbe2b9a7..03149f94a 100644 --- a/src/_icons/trash-x.svg +++ b/src/_icons/trash-x.svg @@ -4,8 +4,5 @@ version: "1.46" unicode: "ef88" --- - - - - + diff --git a/src/_icons/trash.svg b/src/_icons/trash.svg index a82cb03e9..049540420 100644 --- a/src/_icons/trash.svg +++ b/src/_icons/trash.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eb41" --- - - - - - + diff --git a/src/_icons/tree.svg b/src/_icons/tree.svg index b7ee06228..d731dcd3e 100644 --- a/src/_icons/tree.svg +++ b/src/_icons/tree.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ef01" --- - - - - + diff --git a/src/_icons/trees.svg b/src/_icons/trees.svg index 226d68fdf..6325d433a 100644 --- a/src/_icons/trees.svg +++ b/src/_icons/trees.svg @@ -5,10 +5,5 @@ version: "1.35" unicode: "ec10" --- - - - - - - + diff --git a/src/_icons/trekking.svg b/src/_icons/trekking.svg index a3bdcb06f..bed498f0d 100644 --- a/src/_icons/trekking.svg +++ b/src/_icons/trekking.svg @@ -5,10 +5,5 @@ unicode: "f5ad" version: "1.110" --- - - - - - - + diff --git a/src/_icons/trending-down-2.svg b/src/_icons/trending-down-2.svg index ec10ed6f1..b3820b8f7 100644 --- a/src/_icons/trending-down-2.svg +++ b/src/_icons/trending-down-2.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edc1" --- - - + diff --git a/src/_icons/trending-down-3.svg b/src/_icons/trending-down-3.svg index b93bdcdfa..c3feca86d 100644 --- a/src/_icons/trending-down-3.svg +++ b/src/_icons/trending-down-3.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edc2" --- - - + diff --git a/src/_icons/trending-down.svg b/src/_icons/trending-down.svg index a575b3406..6a653e7e4 100644 --- a/src/_icons/trending-down.svg +++ b/src/_icons/trending-down.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb42" --- - - + diff --git a/src/_icons/trending-up-2.svg b/src/_icons/trending-up-2.svg index f2f42f5a9..6b6f094df 100644 --- a/src/_icons/trending-up-2.svg +++ b/src/_icons/trending-up-2.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edc3" --- - - + diff --git a/src/_icons/trending-up-3.svg b/src/_icons/trending-up-3.svg index 2e4666e66..bb8756ec1 100644 --- a/src/_icons/trending-up-3.svg +++ b/src/_icons/trending-up-3.svg @@ -5,6 +5,5 @@ version: "1.35" unicode: "edc4" --- - - + diff --git a/src/_icons/trending-up.svg b/src/_icons/trending-up.svg index bdbb79d43..c6c43708a 100644 --- a/src/_icons/trending-up.svg +++ b/src/_icons/trending-up.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb43" --- - - + diff --git a/src/_icons/triangle-filled.svg b/src/_icons/triangle-filled.svg new file mode 100644 index 000000000..c4bdf5018 --- /dev/null +++ b/src/_icons/triangle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6ad" +--- + + + diff --git a/src/_icons/triangle-inverted-filled.svg b/src/_icons/triangle-inverted-filled.svg new file mode 100644 index 000000000..115dbe677 --- /dev/null +++ b/src/_icons/triangle-inverted-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6ae" +--- + + + diff --git a/src/_icons/triangle-off.svg b/src/_icons/triangle-off.svg index 4a69de96f..7c419617e 100644 --- a/src/_icons/triangle-off.svg +++ b/src/_icons/triangle-off.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ef02" --- - - + diff --git a/src/_icons/triangle-square-circle.svg b/src/_icons/triangle-square-circle.svg index 35ebb47ad..a68d38b0e 100644 --- a/src/_icons/triangle-square-circle.svg +++ b/src/_icons/triangle-square-circle.svg @@ -5,7 +5,5 @@ version: "1.21" unicode: "ece8" --- - - - + diff --git a/src/_icons/triangles.svg b/src/_icons/triangles.svg index a1bbf2eb5..cd0bdfba3 100644 --- a/src/_icons/triangles.svg +++ b/src/_icons/triangles.svg @@ -5,6 +5,5 @@ version: "1.61" unicode: "f0a5" --- - - + diff --git a/src/_icons/trident.svg b/src/_icons/trident.svg index a736c2a06..bc9240ae7 100644 --- a/src/_icons/trident.svg +++ b/src/_icons/trident.svg @@ -4,6 +4,5 @@ version: "1.18" unicode: "ecc5" --- - - + diff --git a/src/_icons/trolley.svg b/src/_icons/trolley.svg index cce265abe..0ee3fe1d4 100644 --- a/src/_icons/trolley.svg +++ b/src/_icons/trolley.svg @@ -5,9 +5,5 @@ unicode: "f4cc" version: "1.98" --- - - - - - + diff --git a/src/_icons/trophy-filled.svg b/src/_icons/trophy-filled.svg new file mode 100644 index 000000000..5e5879691 --- /dev/null +++ b/src/_icons/trophy-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6af" +--- + + + + diff --git a/src/_icons/trophy-off.svg b/src/_icons/trophy-off.svg index 8557f72d6..b925def84 100644 --- a/src/_icons/trophy-off.svg +++ b/src/_icons/trophy-off.svg @@ -4,11 +4,5 @@ unicode: "f438" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/trophy.svg b/src/_icons/trophy.svg index 9c4b9eedc..ad35b23cc 100644 --- a/src/_icons/trophy.svg +++ b/src/_icons/trophy.svg @@ -4,10 +4,5 @@ version: "1.0" unicode: "eb45" --- - - - - - - + diff --git a/src/_icons/trowel.svg b/src/_icons/trowel.svg index 3c23a1a62..1ecb037ff 100644 --- a/src/_icons/trowel.svg +++ b/src/_icons/trowel.svg @@ -4,7 +4,5 @@ unicode: "f368" version: "1.89" --- - - - + diff --git a/src/_icons/truck-delivery.svg b/src/_icons/truck-delivery.svg index 44a158830..f22b20027 100644 --- a/src/_icons/truck-delivery.svg +++ b/src/_icons/truck-delivery.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec4b" --- - - - - + diff --git a/src/_icons/truck-loading.svg b/src/_icons/truck-loading.svg index c5447b582..a8e920761 100644 --- a/src/_icons/truck-loading.svg +++ b/src/_icons/truck-loading.svg @@ -5,8 +5,5 @@ version: "1.68" unicode: "f1da" --- - - - - + diff --git a/src/_icons/truck-off.svg b/src/_icons/truck-off.svg index 1a018dfa5..80b3b16c1 100644 --- a/src/_icons/truck-off.svg +++ b/src/_icons/truck-off.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ef03" --- - - - - + diff --git a/src/_icons/truck-return.svg b/src/_icons/truck-return.svg index d8a6a2504..dec247490 100644 --- a/src/_icons/truck-return.svg +++ b/src/_icons/truck-return.svg @@ -5,9 +5,5 @@ version: "1.11" unicode: "ec4c" --- - - - - - + diff --git a/src/_icons/truck.svg b/src/_icons/truck.svg index 9833e9c7e..a32f4fc81 100644 --- a/src/_icons/truck.svg +++ b/src/_icons/truck.svg @@ -5,7 +5,5 @@ version: "1.5" unicode: "ebc4" --- - - - + diff --git a/src/_icons/txt.svg b/src/_icons/txt.svg index deac2730f..a01c9c890 100644 --- a/src/_icons/txt.svg +++ b/src/_icons/txt.svg @@ -4,10 +4,5 @@ version: "1.93" unicode: "f3b1" --- - - - - - - + diff --git a/src/_icons/typography-off.svg b/src/_icons/typography-off.svg index 46c9cae54..f666dc4d1 100644 --- a/src/_icons/typography-off.svg +++ b/src/_icons/typography-off.svg @@ -5,11 +5,5 @@ version: "1.67" unicode: "f1ba" --- - - - - - - - + diff --git a/src/_icons/typography.svg b/src/_icons/typography.svg index 830f808d9..11d84d35e 100644 --- a/src/_icons/typography.svg +++ b/src/_icons/typography.svg @@ -5,9 +5,5 @@ version: "1.5" unicode: "ebc5" --- - - - - - + diff --git a/src/_icons/ufo-off.svg b/src/_icons/ufo-off.svg index 553a7fed5..43d9aa6fd 100644 --- a/src/_icons/ufo-off.svg +++ b/src/_icons/ufo-off.svg @@ -4,12 +4,5 @@ version: "1.76" unicode: "f26e" --- - - - - - - - - + diff --git a/src/_icons/ufo.svg b/src/_icons/ufo.svg index 3b604861d..d173e28b7 100644 --- a/src/_icons/ufo.svg +++ b/src/_icons/ufo.svg @@ -4,11 +4,5 @@ version: "1.76" unicode: "f26f" --- - - - - - - - + diff --git a/src/_icons/umbrella-filled.svg b/src/_icons/umbrella-filled.svg new file mode 100644 index 000000000..0cad5c4cd --- /dev/null +++ b/src/_icons/umbrella-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6b0" +--- + + + + diff --git a/src/_icons/umbrella-off.svg b/src/_icons/umbrella-off.svg index e4c7b177e..891aedd6a 100644 --- a/src/_icons/umbrella-off.svg +++ b/src/_icons/umbrella-off.svg @@ -4,7 +4,5 @@ version: "1.67" unicode: "f1bb" --- - - - + diff --git a/src/_icons/umbrella.svg b/src/_icons/umbrella.svg index c47e10d2e..56cea06d3 100644 --- a/src/_icons/umbrella.svg +++ b/src/_icons/umbrella.svg @@ -4,6 +4,5 @@ version: "1.7" unicode: "ebf1" --- - - + diff --git a/src/_icons/underline.svg b/src/_icons/underline.svg index 06d145e46..af1e470ad 100644 --- a/src/_icons/underline.svg +++ b/src/_icons/underline.svg @@ -5,6 +5,5 @@ version: "1.1" unicode: "eba2" --- - - + diff --git a/src/_icons/unlink.svg b/src/_icons/unlink.svg index cfa253ccb..b1eff0f9f 100644 --- a/src/_icons/unlink.svg +++ b/src/_icons/unlink.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "eb46" --- - - - - - - + diff --git a/src/_icons/upload.svg b/src/_icons/upload.svg index 7db0ae18b..6567427b7 100644 --- a/src/_icons/upload.svg +++ b/src/_icons/upload.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb47" --- - - - + diff --git a/src/_icons/urgent.svg b/src/_icons/urgent.svg index 128605a77..c5b8cc705 100644 --- a/src/_icons/urgent.svg +++ b/src/_icons/urgent.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb48" --- - - - + diff --git a/src/_icons/usb.svg b/src/_icons/usb.svg index db86b1314..1ade4ae82 100644 --- a/src/_icons/usb.svg +++ b/src/_icons/usb.svg @@ -4,11 +4,5 @@ version: "1.53" unicode: "f00c" --- - - - - - - - + diff --git a/src/_icons/user-check.svg b/src/_icons/user-check.svg index 9267f0533..e2af33e03 100644 --- a/src/_icons/user-check.svg +++ b/src/_icons/user-check.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb49" --- - - - + diff --git a/src/_icons/user-circle.svg b/src/_icons/user-circle.svg index c1910f820..e5bb155e2 100644 --- a/src/_icons/user-circle.svg +++ b/src/_icons/user-circle.svg @@ -4,7 +4,5 @@ version: "1.44" unicode: "ef68" --- - - - + diff --git a/src/_icons/user-exclamation.svg b/src/_icons/user-exclamation.svg index 9b0ec63be..f3daa4892 100644 --- a/src/_icons/user-exclamation.svg +++ b/src/_icons/user-exclamation.svg @@ -4,8 +4,5 @@ version: "1.8" unicode: "ec12" --- - - - - + diff --git a/src/_icons/user-minus.svg b/src/_icons/user-minus.svg index 759452ce5..aa67db6c1 100644 --- a/src/_icons/user-minus.svg +++ b/src/_icons/user-minus.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb4a" --- - - - + diff --git a/src/_icons/user-off.svg b/src/_icons/user-off.svg index 65429928b..4b03951bd 100644 --- a/src/_icons/user-off.svg +++ b/src/_icons/user-off.svg @@ -4,7 +4,5 @@ version: "1.22" unicode: "ecf9" --- - - - + diff --git a/src/_icons/user-plus.svg b/src/_icons/user-plus.svg index 7b3704860..383bb9555 100644 --- a/src/_icons/user-plus.svg +++ b/src/_icons/user-plus.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb4b" --- - - - + diff --git a/src/_icons/user-search.svg b/src/_icons/user-search.svg index 36e4de779..2dbd373d2 100644 --- a/src/_icons/user-search.svg +++ b/src/_icons/user-search.svg @@ -4,8 +4,5 @@ version: "1.46" unicode: "ef89" --- - - - - + diff --git a/src/_icons/user-x.svg b/src/_icons/user-x.svg index 387d85b92..38c811cc4 100644 --- a/src/_icons/user-x.svg +++ b/src/_icons/user-x.svg @@ -4,7 +4,5 @@ version: "1.0" unicode: "eb4c" --- - - - + diff --git a/src/_icons/user.svg b/src/_icons/user.svg index 30068e21c..67e2869a6 100644 --- a/src/_icons/user.svg +++ b/src/_icons/user.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb4d" --- - - + diff --git a/src/_icons/users.svg b/src/_icons/users.svg index 5c9f88dfc..1aff630a7 100644 --- a/src/_icons/users.svg +++ b/src/_icons/users.svg @@ -4,8 +4,5 @@ version: "1.7" unicode: "ebf2" --- - - - - + diff --git a/src/_icons/uv-index.svg b/src/_icons/uv-index.svg index 665f380c8..ec11b2c1b 100644 --- a/src/_icons/uv-index.svg +++ b/src/_icons/uv-index.svg @@ -5,8 +5,5 @@ version: "1.93" unicode: "f3b2" --- - - - - + diff --git a/src/_icons/ux-circle.svg b/src/_icons/ux-circle.svg index d8b733e30..1caba17e5 100644 --- a/src/_icons/ux-circle.svg +++ b/src/_icons/ux-circle.svg @@ -5,8 +5,5 @@ unicode: "f369" version: "1.89" --- - - - - + diff --git a/src/_icons/vaccine-bottle-off.svg b/src/_icons/vaccine-bottle-off.svg index 4e767326c..8809ea22d 100644 --- a/src/_icons/vaccine-bottle-off.svg +++ b/src/_icons/vaccine-bottle-off.svg @@ -5,10 +5,5 @@ unicode: "f439" version: "1.94" --- - - - - - - + diff --git a/src/_icons/vaccine-bottle.svg b/src/_icons/vaccine-bottle.svg index c712051ae..56344d3e3 100644 --- a/src/_icons/vaccine-bottle.svg +++ b/src/_icons/vaccine-bottle.svg @@ -5,9 +5,5 @@ version: "1.44" unicode: "ef69" --- - - - - - + diff --git a/src/_icons/vaccine-off.svg b/src/_icons/vaccine-off.svg index 261bc9d3d..f499da3f4 100644 --- a/src/_icons/vaccine-off.svg +++ b/src/_icons/vaccine-off.svg @@ -5,11 +5,5 @@ version: "1.67" unicode: "f1bc" --- - - - - - - - + diff --git a/src/_icons/vaccine.svg b/src/_icons/vaccine.svg index d2d391dd9..1812d7349 100644 --- a/src/_icons/vaccine.svg +++ b/src/_icons/vaccine.svg @@ -5,11 +5,5 @@ version: "1.39" unicode: "ef04" --- - - - - - - - + diff --git a/src/_icons/vacuum-cleaner.svg b/src/_icons/vacuum-cleaner.svg index 8cf3bfe4b..4994ec084 100644 --- a/src/_icons/vacuum-cleaner.svg +++ b/src/_icons/vacuum-cleaner.svg @@ -3,7 +3,5 @@ unicode: "f5e6" version: "1.112" --- - - - + diff --git a/src/_icons/variable-minus.svg b/src/_icons/variable-minus.svg index af69b15a4..174bb3cb9 100644 --- a/src/_icons/variable-minus.svg +++ b/src/_icons/variable-minus.svg @@ -5,8 +5,5 @@ unicode: "f36a" version: "1.89" --- - - - - + diff --git a/src/_icons/variable-off.svg b/src/_icons/variable-off.svg index 2b6b87478..267bca7f5 100644 --- a/src/_icons/variable-off.svg +++ b/src/_icons/variable-off.svg @@ -5,9 +5,5 @@ version: "1.67" unicode: "f1bd" --- - - - - - + diff --git a/src/_icons/variable-plus.svg b/src/_icons/variable-plus.svg index 92b343ca7..041bdc810 100644 --- a/src/_icons/variable-plus.svg +++ b/src/_icons/variable-plus.svg @@ -5,8 +5,5 @@ unicode: "f36b" version: "1.89" --- - - - - + diff --git a/src/_icons/variable.svg b/src/_icons/variable.svg index 8b598c082..e6a1663bd 100644 --- a/src/_icons/variable.svg +++ b/src/_icons/variable.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ef05" --- - - + diff --git a/src/_icons/vector-bezier-2.svg b/src/_icons/vector-bezier-2.svg index 88aa17409..be38e6930 100644 --- a/src/_icons/vector-bezier-2.svg +++ b/src/_icons/vector-bezier-2.svg @@ -5,11 +5,5 @@ version: "1.27" unicode: "f1a3" --- - - - - - - - + diff --git a/src/_icons/vector-bezier-arc.svg b/src/_icons/vector-bezier-arc.svg index 10026832b..f4bca4127 100644 --- a/src/_icons/vector-bezier-arc.svg +++ b/src/_icons/vector-bezier-arc.svg @@ -5,11 +5,5 @@ unicode: "f4cd" version: "1.98" --- - - - - - - - + diff --git a/src/_icons/vector-bezier-circle.svg b/src/_icons/vector-bezier-circle.svg index 0d399c0a9..6efbd18dc 100644 --- a/src/_icons/vector-bezier-circle.svg +++ b/src/_icons/vector-bezier-circle.svg @@ -5,12 +5,5 @@ unicode: "f4ce" version: "1.98" --- - - - - - - - - + diff --git a/src/_icons/vector-bezier.svg b/src/_icons/vector-bezier.svg index d21506909..98e86fa01 100644 --- a/src/_icons/vector-bezier.svg +++ b/src/_icons/vector-bezier.svg @@ -5,13 +5,5 @@ version: "1.27" unicode: "ef1d" --- - - - - - - - - - + diff --git a/src/_icons/vector-off.svg b/src/_icons/vector-off.svg index f3eab7b40..272fa8f9f 100644 --- a/src/_icons/vector-off.svg +++ b/src/_icons/vector-off.svg @@ -5,13 +5,5 @@ version: "1.67" unicode: "f1be" --- - - - - - - - - - + diff --git a/src/_icons/vector-spline.svg b/src/_icons/vector-spline.svg index a33274540..94a7cd1ec 100644 --- a/src/_icons/vector-spline.svg +++ b/src/_icons/vector-spline.svg @@ -5,7 +5,5 @@ unicode: "f565" version: "1.106" --- - - - + diff --git a/src/_icons/vector-triangle-off.svg b/src/_icons/vector-triangle-off.svg index ac53a04e0..8bee25a20 100644 --- a/src/_icons/vector-triangle-off.svg +++ b/src/_icons/vector-triangle-off.svg @@ -5,11 +5,5 @@ version: "1.67" unicode: "f1bf" --- - - - - - - - + diff --git a/src/_icons/vector-triangle.svg b/src/_icons/vector-triangle.svg index 89639996b..4ce5a6f8d 100644 --- a/src/_icons/vector-triangle.svg +++ b/src/_icons/vector-triangle.svg @@ -5,10 +5,5 @@ version: "1.17" unicode: "eca8" --- - - - - - - + diff --git a/src/_icons/vector.svg b/src/_icons/vector.svg index 9f421f37a..a853dad08 100644 --- a/src/_icons/vector.svg +++ b/src/_icons/vector.svg @@ -5,12 +5,5 @@ version: "1.17" unicode: "eca9" --- - - - - - - - - + diff --git a/src/_icons/venus.svg b/src/_icons/venus.svg index 0dc6aba6a..b2cd8e81a 100644 --- a/src/_icons/venus.svg +++ b/src/_icons/venus.svg @@ -5,7 +5,5 @@ version: "1.14" unicode: "ec86" --- - - - + diff --git a/src/_icons/versions-filled.svg b/src/_icons/versions-filled.svg new file mode 100644 index 000000000..1fcb0cbf2 --- /dev/null +++ b/src/_icons/versions-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6b1" +--- + + + + diff --git a/src/_icons/versions-off.svg b/src/_icons/versions-off.svg index e85a4f714..158d30038 100644 --- a/src/_icons/versions-off.svg +++ b/src/_icons/versions-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1c0" --- - - - - + diff --git a/src/_icons/versions.svg b/src/_icons/versions.svg index d9f54b587..00e68a5db 100644 --- a/src/_icons/versions.svg +++ b/src/_icons/versions.svg @@ -4,7 +4,5 @@ version: "1.29" unicode: "ed52" --- - - - + diff --git a/src/_icons/video-minus.svg b/src/_icons/video-minus.svg index 8383732f8..a81a48dd8 100644 --- a/src/_icons/video-minus.svg +++ b/src/_icons/video-minus.svg @@ -5,7 +5,5 @@ version: "1.25" unicode: "ed1f" --- - - - + diff --git a/src/_icons/video-off.svg b/src/_icons/video-off.svg index 92b9a16e4..5a461986b 100644 --- a/src/_icons/video-off.svg +++ b/src/_icons/video-off.svg @@ -5,7 +5,5 @@ version: "1.25" unicode: "ed20" --- - - - + diff --git a/src/_icons/video-plus.svg b/src/_icons/video-plus.svg index ed0c3553f..a03a345c3 100644 --- a/src/_icons/video-plus.svg +++ b/src/_icons/video-plus.svg @@ -5,8 +5,5 @@ version: "1.25" unicode: "ed21" --- - - - - + diff --git a/src/_icons/video.svg b/src/_icons/video.svg index 84a635e81..3bf5b71c9 100644 --- a/src/_icons/video.svg +++ b/src/_icons/video.svg @@ -5,6 +5,5 @@ version: "1.25" unicode: "ed22" --- - - + diff --git a/src/_icons/view-360-off.svg b/src/_icons/view-360-off.svg index 0236e9fa1..bda6a4b5f 100644 --- a/src/_icons/view-360-off.svg +++ b/src/_icons/view-360-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1c1" --- - - - - + diff --git a/src/_icons/view-360.svg b/src/_icons/view-360.svg index 6b9a9737d..d061caa17 100644 --- a/src/_icons/view-360.svg +++ b/src/_icons/view-360.svg @@ -4,7 +4,5 @@ version: "1.33" unicode: "ed84" --- - - - + diff --git a/src/_icons/viewfinder-off.svg b/src/_icons/viewfinder-off.svg index a2ddf2f5d..20aaf1ea8 100644 --- a/src/_icons/viewfinder-off.svg +++ b/src/_icons/viewfinder-off.svg @@ -5,11 +5,5 @@ version: "1.67" unicode: "f1c2" --- - - - - - - - + diff --git a/src/_icons/viewfinder.svg b/src/_icons/viewfinder.svg index fc722d949..bc4fc6e57 100644 --- a/src/_icons/viewfinder.svg +++ b/src/_icons/viewfinder.svg @@ -5,10 +5,5 @@ version: "1.0" unicode: "eb4e" --- - - - - - - + diff --git a/src/_icons/viewport-narrow.svg b/src/_icons/viewport-narrow.svg index dd1ee5638..d602d0fa8 100644 --- a/src/_icons/viewport-narrow.svg +++ b/src/_icons/viewport-narrow.svg @@ -5,8 +5,5 @@ version: "1.7" unicode: "ebf3" --- - - - - + diff --git a/src/_icons/viewport-wide.svg b/src/_icons/viewport-wide.svg index f43524040..996ac239a 100644 --- a/src/_icons/viewport-wide.svg +++ b/src/_icons/viewport-wide.svg @@ -5,8 +5,5 @@ version: "1.7" unicode: "ebf4" --- - - - - + diff --git a/src/_icons/vinyl.svg b/src/_icons/vinyl.svg index ca6046b62..6ceeb36bf 100644 --- a/src/_icons/vinyl.svg +++ b/src/_icons/vinyl.svg @@ -5,8 +5,5 @@ category: Devices unicode: "f00d" --- - - - - + diff --git a/src/_icons/vip-off.svg b/src/_icons/vip-off.svg index 207d7301a..f6571a2a0 100644 --- a/src/_icons/vip-off.svg +++ b/src/_icons/vip-off.svg @@ -4,10 +4,5 @@ unicode: "f43a" version: "1.94" --- - - - - - - + diff --git a/src/_icons/vip.svg b/src/_icons/vip.svg index 2ae75f02a..9ec4aa499 100644 --- a/src/_icons/vip.svg +++ b/src/_icons/vip.svg @@ -4,9 +4,5 @@ version: "1.93" unicode: "f3b3" --- - - - - - + diff --git a/src/_icons/virus-off.svg b/src/_icons/virus-off.svg index 2d6966c04..e718d481a 100644 --- a/src/_icons/virus-off.svg +++ b/src/_icons/virus-off.svg @@ -5,21 +5,5 @@ version: "1.31" unicode: "ed66" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/virus-search.svg b/src/_icons/virus-search.svg index de31b20f9..12c68544e 100644 --- a/src/_icons/virus-search.svg +++ b/src/_icons/virus-search.svg @@ -5,21 +5,5 @@ category: Health unicode: "ed67" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/virus.svg b/src/_icons/virus.svg index e547f6bc4..ed213accd 100644 --- a/src/_icons/virus.svg +++ b/src/_icons/virus.svg @@ -5,21 +5,5 @@ version: "1.2" unicode: "eb74" --- - - - - - - - - - - - - - - - - - + diff --git a/src/_icons/vocabulary-off.svg b/src/_icons/vocabulary-off.svg index af01b7b87..0b9dd79a3 100644 --- a/src/_icons/vocabulary-off.svg +++ b/src/_icons/vocabulary-off.svg @@ -5,10 +5,5 @@ unicode: "f43b" version: "1.94" --- - - - - - - + diff --git a/src/_icons/vocabulary.svg b/src/_icons/vocabulary.svg index fd8f395e3..6170ecd9f 100644 --- a/src/_icons/vocabulary.svg +++ b/src/_icons/vocabulary.svg @@ -5,11 +5,5 @@ version: "1.40" unicode: "ef1e" --- - - - - - - - + diff --git a/src/_icons/volume-2.svg b/src/_icons/volume-2.svg index 49eac1242..3ec1cda2e 100644 --- a/src/_icons/volume-2.svg +++ b/src/_icons/volume-2.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb4f" --- - - + diff --git a/src/_icons/volume-3.svg b/src/_icons/volume-3.svg index d9a0f55b4..e618cdf78 100644 --- a/src/_icons/volume-3.svg +++ b/src/_icons/volume-3.svg @@ -5,6 +5,5 @@ version: "1.0" unicode: "eb50" --- - - + diff --git a/src/_icons/volume-off.svg b/src/_icons/volume-off.svg index 6105c7fae..e0c127894 100644 --- a/src/_icons/volume-off.svg +++ b/src/_icons/volume-off.svg @@ -5,8 +5,5 @@ version: "1.67" unicode: "f1c3" --- - - - - + diff --git a/src/_icons/volume.svg b/src/_icons/volume.svg index 1b92cdcdb..5bda9fc7e 100644 --- a/src/_icons/volume.svg +++ b/src/_icons/volume.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb51" --- - - - + diff --git a/src/_icons/walk.svg b/src/_icons/walk.svg index 98bb7c3d7..896d64b99 100644 --- a/src/_icons/walk.svg +++ b/src/_icons/walk.svg @@ -5,8 +5,5 @@ version: "1.14" unicode: "ec87" --- - - - - + diff --git a/src/_icons/wall-off.svg b/src/_icons/wall-off.svg index 003e2ddf0..38dd2e44c 100644 --- a/src/_icons/wall-off.svg +++ b/src/_icons/wall-off.svg @@ -4,13 +4,5 @@ unicode: "f43c" version: "1.94" --- - - - - - - - - - + diff --git a/src/_icons/wall.svg b/src/_icons/wall.svg index 199f6a69b..374cdfd40 100644 --- a/src/_icons/wall.svg +++ b/src/_icons/wall.svg @@ -4,13 +4,5 @@ version: "1.45" unicode: "ef7a" --- - - - - - - - - - + diff --git a/src/_icons/wallet-off.svg b/src/_icons/wallet-off.svg index ba949f146..7a8c57702 100644 --- a/src/_icons/wallet-off.svg +++ b/src/_icons/wallet-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1c4" --- - - - - + diff --git a/src/_icons/wallet.svg b/src/_icons/wallet.svg index 25ca9fa30..6e65c1624 100644 --- a/src/_icons/wallet.svg +++ b/src/_icons/wallet.svg @@ -4,6 +4,5 @@ version: "1.2" unicode: "eb75" --- - - + diff --git a/src/_icons/wallpaper-off.svg b/src/_icons/wallpaper-off.svg index 1b72c9cdf..ba7be0bc1 100644 --- a/src/_icons/wallpaper-off.svg +++ b/src/_icons/wallpaper-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1c5" --- - - - - + diff --git a/src/_icons/wallpaper.svg b/src/_icons/wallpaper.svg index 8aea4a506..31ef3c73d 100644 --- a/src/_icons/wallpaper.svg +++ b/src/_icons/wallpaper.svg @@ -4,7 +4,5 @@ version: "1.43" unicode: "ef56" --- - - - + diff --git a/src/_icons/wand-off.svg b/src/_icons/wand-off.svg index 4f874e6da..7f9b946e9 100644 --- a/src/_icons/wand-off.svg +++ b/src/_icons/wand-off.svg @@ -4,9 +4,5 @@ version: "1.67" unicode: "f1c6" --- - - - - - + diff --git a/src/_icons/wand.svg b/src/_icons/wand.svg index ee29c532a..377bc9182 100644 --- a/src/_icons/wand.svg +++ b/src/_icons/wand.svg @@ -4,8 +4,5 @@ version: "1.5" unicode: "ebcb" --- - - - - + diff --git a/src/_icons/wash-dry-1.svg b/src/_icons/wash-dry-1.svg index 80e37fcea..100913d2f 100644 --- a/src/_icons/wash-dry-1.svg +++ b/src/_icons/wash-dry-1.svg @@ -5,7 +5,5 @@ unicode: "f2fa" version: "1.84" --- - - - + diff --git a/src/_icons/wash-dry-2.svg b/src/_icons/wash-dry-2.svg index 049e34592..915fee1e8 100644 --- a/src/_icons/wash-dry-2.svg +++ b/src/_icons/wash-dry-2.svg @@ -5,8 +5,5 @@ unicode: "f2fb" version: "1.84" --- - - - - + diff --git a/src/_icons/wash-dry-3.svg b/src/_icons/wash-dry-3.svg index a937f6c44..fabd97287 100644 --- a/src/_icons/wash-dry-3.svg +++ b/src/_icons/wash-dry-3.svg @@ -5,9 +5,5 @@ unicode: "f2fc" version: "1.84" --- - - - - - + diff --git a/src/_icons/wash-dry-a.svg b/src/_icons/wash-dry-a.svg index 4f249e4b5..42e12f043 100644 --- a/src/_icons/wash-dry-a.svg +++ b/src/_icons/wash-dry-a.svg @@ -5,7 +5,5 @@ unicode: "f2fd" version: "1.84" --- - - - + diff --git a/src/_icons/wash-dry-dip.svg b/src/_icons/wash-dry-dip.svg index 09b210551..1b5fb5682 100644 --- a/src/_icons/wash-dry-dip.svg +++ b/src/_icons/wash-dry-dip.svg @@ -5,8 +5,5 @@ unicode: "f2fe" version: "1.84" --- - - - - + diff --git a/src/_icons/wash-dry-f.svg b/src/_icons/wash-dry-f.svg index b844c35e9..6bdb4edbf 100644 --- a/src/_icons/wash-dry-f.svg +++ b/src/_icons/wash-dry-f.svg @@ -5,7 +5,5 @@ unicode: "f2ff" version: "1.84" --- - - - + diff --git a/src/_icons/wash-dry-hang.svg b/src/_icons/wash-dry-hang.svg index a38b270e3..1fd538064 100644 --- a/src/_icons/wash-dry-hang.svg +++ b/src/_icons/wash-dry-hang.svg @@ -5,6 +5,5 @@ unicode: "f300" version: "1.84" --- - - + diff --git a/src/_icons/wash-dry-off.svg b/src/_icons/wash-dry-off.svg index f85930610..7306c8756 100644 --- a/src/_icons/wash-dry-off.svg +++ b/src/_icons/wash-dry-off.svg @@ -5,6 +5,5 @@ unicode: "f301" version: "1.84" --- - - + diff --git a/src/_icons/wash-dry-p.svg b/src/_icons/wash-dry-p.svg index aa8eb6696..2953a59c0 100644 --- a/src/_icons/wash-dry-p.svg +++ b/src/_icons/wash-dry-p.svg @@ -5,6 +5,5 @@ unicode: "f302" version: "1.84" --- - - + diff --git a/src/_icons/wash-dry-shade.svg b/src/_icons/wash-dry-shade.svg index 183f824c2..6a922b2d9 100644 --- a/src/_icons/wash-dry-shade.svg +++ b/src/_icons/wash-dry-shade.svg @@ -5,7 +5,5 @@ unicode: "f303" version: "1.84" --- - - - + diff --git a/src/_icons/wash-dry-w.svg b/src/_icons/wash-dry-w.svg index e1c3b8d6c..dda2fd06c 100644 --- a/src/_icons/wash-dry-w.svg +++ b/src/_icons/wash-dry-w.svg @@ -5,6 +5,5 @@ version: "1.85" unicode: "f322" --- - - + diff --git a/src/_icons/wash-dry.svg b/src/_icons/wash-dry.svg index 61d621587..b0aeebcb0 100644 --- a/src/_icons/wash-dry.svg +++ b/src/_icons/wash-dry.svg @@ -5,5 +5,5 @@ unicode: "f304" version: "1.84" --- - + diff --git a/src/_icons/wash-dryclean-off.svg b/src/_icons/wash-dryclean-off.svg index a42bad508..96919977f 100644 --- a/src/_icons/wash-dryclean-off.svg +++ b/src/_icons/wash-dryclean-off.svg @@ -5,6 +5,5 @@ version: "1.85" unicode: "f323" --- - - + diff --git a/src/_icons/wash-dryclean.svg b/src/_icons/wash-dryclean.svg index a759d563d..a8443bf0d 100644 --- a/src/_icons/wash-dryclean.svg +++ b/src/_icons/wash-dryclean.svg @@ -5,5 +5,5 @@ unicode: "f305" version: "1.84" --- - + diff --git a/src/_icons/wash-gentle.svg b/src/_icons/wash-gentle.svg index f4e91973e..8283f6a6d 100644 --- a/src/_icons/wash-gentle.svg +++ b/src/_icons/wash-gentle.svg @@ -5,8 +5,5 @@ unicode: "f306" version: "1.84" --- - - - - + diff --git a/src/_icons/wash-machine.svg b/src/_icons/wash-machine.svg index 27bffc5b2..67990fbb2 100644 --- a/src/_icons/wash-machine.svg +++ b/src/_icons/wash-machine.svg @@ -5,10 +5,5 @@ version: "1.75" unicode: "f25e" --- - - - - - - + diff --git a/src/_icons/wash-off.svg b/src/_icons/wash-off.svg index dc33fe31b..78c068635 100644 --- a/src/_icons/wash-off.svg +++ b/src/_icons/wash-off.svg @@ -5,7 +5,5 @@ unicode: "f307" version: "1.84" --- - - - + diff --git a/src/_icons/wash-press.svg b/src/_icons/wash-press.svg index b698ed796..1d6674a38 100644 --- a/src/_icons/wash-press.svg +++ b/src/_icons/wash-press.svg @@ -5,7 +5,5 @@ unicode: "f308" version: "1.84" --- - - - + diff --git a/src/_icons/wash-temperature-1.svg b/src/_icons/wash-temperature-1.svg index 43e61f44c..1df57d6ff 100644 --- a/src/_icons/wash-temperature-1.svg +++ b/src/_icons/wash-temperature-1.svg @@ -5,7 +5,5 @@ unicode: "f309" version: "1.84" --- - - - + diff --git a/src/_icons/wash-temperature-2.svg b/src/_icons/wash-temperature-2.svg index b7b981037..6ce98e6e4 100644 --- a/src/_icons/wash-temperature-2.svg +++ b/src/_icons/wash-temperature-2.svg @@ -5,8 +5,5 @@ unicode: "f30a" version: "1.84" --- - - - - + diff --git a/src/_icons/wash-temperature-3.svg b/src/_icons/wash-temperature-3.svg index ddbd02339..91b90c2ea 100644 --- a/src/_icons/wash-temperature-3.svg +++ b/src/_icons/wash-temperature-3.svg @@ -5,9 +5,5 @@ unicode: "f30b" version: "1.84" --- - - - - - + diff --git a/src/_icons/wash-temperature-4.svg b/src/_icons/wash-temperature-4.svg index 8fd8a9a87..7b1756c72 100644 --- a/src/_icons/wash-temperature-4.svg +++ b/src/_icons/wash-temperature-4.svg @@ -5,10 +5,5 @@ unicode: "f30c" version: "1.84" --- - - - - - - + diff --git a/src/_icons/wash-temperature-5.svg b/src/_icons/wash-temperature-5.svg index 309bf6aec..e4946bd72 100644 --- a/src/_icons/wash-temperature-5.svg +++ b/src/_icons/wash-temperature-5.svg @@ -5,11 +5,5 @@ unicode: "f30d" version: "1.84" --- - - - - - - - + diff --git a/src/_icons/wash-temperature-6.svg b/src/_icons/wash-temperature-6.svg index 26b74d19b..98ce1cd38 100644 --- a/src/_icons/wash-temperature-6.svg +++ b/src/_icons/wash-temperature-6.svg @@ -5,12 +5,5 @@ unicode: "f30e" version: "1.84" --- - - - - - - - - + diff --git a/src/_icons/wash-tumble-dry.svg b/src/_icons/wash-tumble-dry.svg index 770461435..ab14c75e9 100644 --- a/src/_icons/wash-tumble-dry.svg +++ b/src/_icons/wash-tumble-dry.svg @@ -5,6 +5,5 @@ unicode: "f30f" version: "1.84" --- - - + diff --git a/src/_icons/wash-tumble-off.svg b/src/_icons/wash-tumble-off.svg index e7d55fced..b866378d7 100644 --- a/src/_icons/wash-tumble-off.svg +++ b/src/_icons/wash-tumble-off.svg @@ -5,7 +5,5 @@ unicode: "f310" version: "1.84" --- - - - + diff --git a/src/_icons/wash.svg b/src/_icons/wash.svg index e34eb727c..301600a72 100644 --- a/src/_icons/wash.svg +++ b/src/_icons/wash.svg @@ -5,6 +5,5 @@ unicode: "f311" version: "1.84" --- - - + diff --git a/src/_icons/webhook-off.svg b/src/_icons/webhook-off.svg index ca456999c..20f05ab55 100644 --- a/src/_icons/webhook-off.svg +++ b/src/_icons/webhook-off.svg @@ -4,8 +4,5 @@ unicode: "f43d" version: "1.94" --- - - - - + diff --git a/src/_icons/webhook.svg b/src/_icons/webhook.svg index b2538cda8..3ac5fa088 100644 --- a/src/_icons/webhook.svg +++ b/src/_icons/webhook.svg @@ -4,7 +4,5 @@ version: "1.54" unicode: "f01e" --- - - - + diff --git a/src/_icons/weight.svg b/src/_icons/weight.svg index 8f18a2ca3..87df985fb 100644 --- a/src/_icons/weight.svg +++ b/src/_icons/weight.svg @@ -4,6 +4,5 @@ unicode: "f589" version: "1.108" --- - - + diff --git a/src/_icons/wheelchair-off.svg b/src/_icons/wheelchair-off.svg index d07fd53be..2572e02c7 100644 --- a/src/_icons/wheelchair-off.svg +++ b/src/_icons/wheelchair-off.svg @@ -5,11 +5,5 @@ unicode: "f43e" version: "1.94" --- - - - - - - - + diff --git a/src/_icons/wheelchair.svg b/src/_icons/wheelchair.svg index 8dfbc4825..3ca78ab0c 100644 --- a/src/_icons/wheelchair.svg +++ b/src/_icons/wheelchair.svg @@ -5,10 +5,5 @@ version: "1.68" unicode: "f1db" --- - - - - - - + diff --git a/src/_icons/whirl.svg b/src/_icons/whirl.svg index 83279ec53..cb3dd20fb 100644 --- a/src/_icons/whirl.svg +++ b/src/_icons/whirl.svg @@ -4,9 +4,5 @@ version: "1.102" unicode: "f51d" --- - - - - - + diff --git a/src/_icons/wifi-0.svg b/src/_icons/wifi-0.svg index 5a8ce6b87..ae484ad54 100644 --- a/src/_icons/wifi-0.svg +++ b/src/_icons/wifi-0.svg @@ -5,5 +5,5 @@ version: "1.3" unicode: "eba3" --- - + diff --git a/src/_icons/wifi-1.svg b/src/_icons/wifi-1.svg index 613fa7b8d..ee6d0be3b 100644 --- a/src/_icons/wifi-1.svg +++ b/src/_icons/wifi-1.svg @@ -5,6 +5,5 @@ version: "1.3" unicode: "eba4" --- - - + diff --git a/src/_icons/wifi-2.svg b/src/_icons/wifi-2.svg index c04a2a560..8a6568f73 100644 --- a/src/_icons/wifi-2.svg +++ b/src/_icons/wifi-2.svg @@ -5,7 +5,5 @@ version: "1.3" unicode: "eba5" --- - - - + diff --git a/src/_icons/wifi-off.svg b/src/_icons/wifi-off.svg index dafbad494..0f211b63d 100644 --- a/src/_icons/wifi-off.svg +++ b/src/_icons/wifi-off.svg @@ -5,9 +5,5 @@ version: "1.22" unicode: "ecfa" --- - - - - - + diff --git a/src/_icons/wifi.svg b/src/_icons/wifi.svg index a3e045345..756bb0ca2 100644 --- a/src/_icons/wifi.svg +++ b/src/_icons/wifi.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb52" --- - - - - + diff --git a/src/_icons/wind-off.svg b/src/_icons/wind-off.svg index cec1b4cb9..ff1e05343 100644 --- a/src/_icons/wind-off.svg +++ b/src/_icons/wind-off.svg @@ -5,9 +5,5 @@ version: "1.67" unicode: "f1c7" --- - - - - - + diff --git a/src/_icons/wind.svg b/src/_icons/wind.svg index 5fa8e154a..e6467fa5a 100644 --- a/src/_icons/wind.svg +++ b/src/_icons/wind.svg @@ -5,7 +5,5 @@ version: "1.10" unicode: "ec34" --- - - - + diff --git a/src/_icons/windmill-filled.svg b/src/_icons/windmill-filled.svg new file mode 100644 index 000000000..a2bbe1a13 --- /dev/null +++ b/src/_icons/windmill-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0.0" +unicode: "f6b2" +--- + + + diff --git a/src/_icons/windmill-off.svg b/src/_icons/windmill-off.svg index 837a95e5f..708f94e66 100644 --- a/src/_icons/windmill-off.svg +++ b/src/_icons/windmill-off.svg @@ -4,9 +4,5 @@ version: "1.67" unicode: "f1c8" --- - - - - - + diff --git a/src/_icons/windmill.svg b/src/_icons/windmill.svg index ef03ee8b2..4c3d9a239 100644 --- a/src/_icons/windmill.svg +++ b/src/_icons/windmill.svg @@ -4,8 +4,5 @@ version: "1.33" unicode: "ed85" --- - - - - + diff --git a/src/_icons/window-maximize.svg b/src/_icons/window-maximize.svg index 618eb1714..cb9eff759 100644 --- a/src/_icons/window-maximize.svg +++ b/src/_icons/window-maximize.svg @@ -5,8 +5,5 @@ version: "1.69" unicode: "f1f1" --- - - - - + diff --git a/src/_icons/window-minimize.svg b/src/_icons/window-minimize.svg index 194c86ca8..114be6816 100644 --- a/src/_icons/window-minimize.svg +++ b/src/_icons/window-minimize.svg @@ -5,8 +5,5 @@ version: "1.69" unicode: "f1f2" --- - - - - + diff --git a/src/_icons/window-off.svg b/src/_icons/window-off.svg index 7787ec369..2aad4e0d2 100644 --- a/src/_icons/window-off.svg +++ b/src/_icons/window-off.svg @@ -4,8 +4,5 @@ version: "1.67" unicode: "f1c9" --- - - - - + diff --git a/src/_icons/window.svg b/src/_icons/window.svg index e1d2d6d7f..13be3d867 100644 --- a/src/_icons/window.svg +++ b/src/_icons/window.svg @@ -4,7 +4,5 @@ version: "1.39" unicode: "ef06" --- - - - + diff --git a/src/_icons/windsock.svg b/src/_icons/windsock.svg index 1f6228852..a2c1014bb 100644 --- a/src/_icons/windsock.svg +++ b/src/_icons/windsock.svg @@ -4,9 +4,5 @@ version: "1.58" unicode: "f06d" --- - - - - - + diff --git a/src/_icons/wiper-wash.svg b/src/_icons/wiper-wash.svg index d3ab2743a..53138da32 100644 --- a/src/_icons/wiper-wash.svg +++ b/src/_icons/wiper-wash.svg @@ -5,13 +5,5 @@ version: "1.17" unicode: "ecaa" --- - - - - - - - - - + diff --git a/src/_icons/wiper.svg b/src/_icons/wiper.svg index 42b1bb2cb..f08c760bf 100644 --- a/src/_icons/wiper.svg +++ b/src/_icons/wiper.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecab" --- - - - + diff --git a/src/_icons/woman.svg b/src/_icons/woman.svg index 82c095b5f..f26467ebb 100644 --- a/src/_icons/woman.svg +++ b/src/_icons/woman.svg @@ -4,10 +4,5 @@ version: "1.0" unicode: "eb53" --- - - - - - - + diff --git a/src/_icons/wood.svg b/src/_icons/wood.svg index d64fff9f8..0cf9ec0f8 100644 --- a/src/_icons/wood.svg +++ b/src/_icons/wood.svg @@ -4,8 +4,5 @@ unicode: "f359" version: "1.88" --- - - - - + diff --git a/src/_icons/world-download.svg b/src/_icons/world-download.svg index 1ec09e883..9bbb08a87 100644 --- a/src/_icons/world-download.svg +++ b/src/_icons/world-download.svg @@ -5,10 +5,5 @@ version: "1.46" unicode: "ef8a" --- - - - - - - + diff --git a/src/_icons/world-latitude.svg b/src/_icons/world-latitude.svg index 64823d866..6738154ce 100644 --- a/src/_icons/world-latitude.svg +++ b/src/_icons/world-latitude.svg @@ -5,8 +5,5 @@ version: "1.26" unicode: "ed2e" --- - - - - + diff --git a/src/_icons/world-longitude.svg b/src/_icons/world-longitude.svg index 58a4e1d70..64042ba7d 100644 --- a/src/_icons/world-longitude.svg +++ b/src/_icons/world-longitude.svg @@ -5,8 +5,5 @@ version: "1.26" unicode: "ed2f" --- - - - - + diff --git a/src/_icons/world-off.svg b/src/_icons/world-off.svg index ec40c9f49..97920c050 100644 --- a/src/_icons/world-off.svg +++ b/src/_icons/world-off.svg @@ -5,9 +5,5 @@ version: "1.67" unicode: "f1ca" --- - - - - - + diff --git a/src/_icons/world-upload.svg b/src/_icons/world-upload.svg index 1dc14099b..76861f9f1 100644 --- a/src/_icons/world-upload.svg +++ b/src/_icons/world-upload.svg @@ -5,10 +5,5 @@ version: "1.46" unicode: "ef8b" --- - - - - - - + diff --git a/src/_icons/world-www.svg b/src/_icons/world-www.svg index b7ca8d298..96e5296c6 100644 --- a/src/_icons/world-www.svg +++ b/src/_icons/world-www.svg @@ -5,13 +5,5 @@ unicode: "f38f" version: "1.91" --- - - - - - - - - - + diff --git a/src/_icons/world.svg b/src/_icons/world.svg index deedf3c21..3d3dbc471 100644 --- a/src/_icons/world.svg +++ b/src/_icons/world.svg @@ -5,9 +5,5 @@ version: "1.0" unicode: "eb54" --- - - - - - + diff --git a/src/_icons/wrecking-ball.svg b/src/_icons/wrecking-ball.svg index f7367feb8..c16f9a4b0 100644 --- a/src/_icons/wrecking-ball.svg +++ b/src/_icons/wrecking-ball.svg @@ -5,12 +5,5 @@ version: "1.34" unicode: "ed97" --- - - - - - - - - + diff --git a/src/_icons/writing-off.svg b/src/_icons/writing-off.svg index 0e4c5ff02..1051a822f 100644 --- a/src/_icons/writing-off.svg +++ b/src/_icons/writing-off.svg @@ -5,8 +5,5 @@ version: "1.67" unicode: "f1cb" --- - - - - + diff --git a/src/_icons/writing-sign-off.svg b/src/_icons/writing-sign-off.svg index a9fcb0cb8..c82bee1e0 100644 --- a/src/_icons/writing-sign-off.svg +++ b/src/_icons/writing-sign-off.svg @@ -5,8 +5,5 @@ version: "1.67" unicode: "f1cc" --- - - - - + diff --git a/src/_icons/writing-sign.svg b/src/_icons/writing-sign.svg index 5ca8b2722..4580cd7e5 100644 --- a/src/_icons/writing-sign.svg +++ b/src/_icons/writing-sign.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ef07" --- - - - + diff --git a/src/_icons/writing.svg b/src/_icons/writing.svg index ac4ff3793..029f3a807 100644 --- a/src/_icons/writing.svg +++ b/src/_icons/writing.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ef08" --- - - - + diff --git a/src/_icons/x.svg b/src/_icons/x.svg index 2775f313f..aa9df8bb5 100644 --- a/src/_icons/x.svg +++ b/src/_icons/x.svg @@ -4,6 +4,5 @@ version: "1.0" unicode: "eb55" --- - - + diff --git a/src/_icons/xbox-a.svg b/src/_icons/xbox-a.svg index 35c775788..3a1cc4138 100644 --- a/src/_icons/xbox-a.svg +++ b/src/_icons/xbox-a.svg @@ -5,7 +5,5 @@ version: "1.80" unicode: "f2b6" --- - - - + diff --git a/src/_icons/xbox-b.svg b/src/_icons/xbox-b.svg index 0d24d9283..31ea06bdf 100644 --- a/src/_icons/xbox-b.svg +++ b/src/_icons/xbox-b.svg @@ -5,8 +5,5 @@ version: "1.80" unicode: "f2b7" --- - - - - + diff --git a/src/_icons/xbox-x.svg b/src/_icons/xbox-x.svg index 8f42de9e9..501c0e57d 100644 --- a/src/_icons/xbox-x.svg +++ b/src/_icons/xbox-x.svg @@ -5,7 +5,5 @@ version: "1.80" unicode: "f2b8" --- - - - + diff --git a/src/_icons/xbox-y.svg b/src/_icons/xbox-y.svg index b6798ead1..efcad7b07 100644 --- a/src/_icons/xbox-y.svg +++ b/src/_icons/xbox-y.svg @@ -5,7 +5,5 @@ version: "1.80" unicode: "f2b9" --- - - - + diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg index f188503e2..35855c6ca 100644 --- a/src/_icons/yin-yang.svg +++ b/src/_icons/yin-yang.svg @@ -5,8 +5,5 @@ version: "1.10" unicode: "ec35" --- - - - - + diff --git a/src/_icons/yoga.svg b/src/_icons/yoga.svg index 06c29c49c..e26402644 100644 --- a/src/_icons/yoga.svg +++ b/src/_icons/yoga.svg @@ -5,8 +5,5 @@ unicode: "f01f" category: Sport --- - - - - + diff --git a/src/_icons/zeppelin-off.svg b/src/_icons/zeppelin-off.svg index 55ef0dd8e..403f6b2c7 100644 --- a/src/_icons/zeppelin-off.svg +++ b/src/_icons/zeppelin-off.svg @@ -5,7 +5,5 @@ unicode: "f43f" version: "1.94" --- - - - + diff --git a/src/_icons/zeppelin.svg b/src/_icons/zeppelin.svg index 53c944a45..155238254 100644 --- a/src/_icons/zeppelin.svg +++ b/src/_icons/zeppelin.svg @@ -5,6 +5,5 @@ version: "1.76" unicode: "f270" --- - - + diff --git a/src/_icons/zip.svg b/src/_icons/zip.svg index 7192e24af..654ae166c 100644 --- a/src/_icons/zip.svg +++ b/src/_icons/zip.svg @@ -4,7 +4,5 @@ version: "1.93" unicode: "f3b4" --- - - - + diff --git a/src/_icons/zodiac-aquarius.svg b/src/_icons/zodiac-aquarius.svg index 78ae3f6e4..7600d8860 100644 --- a/src/_icons/zodiac-aquarius.svg +++ b/src/_icons/zodiac-aquarius.svg @@ -5,6 +5,5 @@ version: "1.17" unicode: "ecac" --- - - + diff --git a/src/_icons/zodiac-aries.svg b/src/_icons/zodiac-aries.svg index ff05fca7e..c380f9693 100644 --- a/src/_icons/zodiac-aries.svg +++ b/src/_icons/zodiac-aries.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecad" --- - - - + diff --git a/src/_icons/zodiac-cancer.svg b/src/_icons/zodiac-cancer.svg index 28f065cc8..5d8141cb5 100644 --- a/src/_icons/zodiac-cancer.svg +++ b/src/_icons/zodiac-cancer.svg @@ -5,8 +5,5 @@ version: "1.17" unicode: "ecae" --- - - - - + diff --git a/src/_icons/zodiac-capricorn.svg b/src/_icons/zodiac-capricorn.svg index 57294698c..349f04136 100644 --- a/src/_icons/zodiac-capricorn.svg +++ b/src/_icons/zodiac-capricorn.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecaf" --- - - - + diff --git a/src/_icons/zodiac-gemini.svg b/src/_icons/zodiac-gemini.svg index 994f8ca9f..fd8b4945f 100644 --- a/src/_icons/zodiac-gemini.svg +++ b/src/_icons/zodiac-gemini.svg @@ -5,8 +5,5 @@ version: "1.17" unicode: "ecb0" --- - - - - + diff --git a/src/_icons/zodiac-leo.svg b/src/_icons/zodiac-leo.svg index 57222462a..a17d5d591 100644 --- a/src/_icons/zodiac-leo.svg +++ b/src/_icons/zodiac-leo.svg @@ -5,9 +5,5 @@ version: "1.17" unicode: "ecb1" --- - - - - - + diff --git a/src/_icons/zodiac-libra.svg b/src/_icons/zodiac-libra.svg index 5928d1bb5..f7cf06fc0 100644 --- a/src/_icons/zodiac-libra.svg +++ b/src/_icons/zodiac-libra.svg @@ -5,6 +5,5 @@ version: "1.17" unicode: "ecb2" --- - - + diff --git a/src/_icons/zodiac-pisces.svg b/src/_icons/zodiac-pisces.svg index 1ad557629..46471d511 100644 --- a/src/_icons/zodiac-pisces.svg +++ b/src/_icons/zodiac-pisces.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecb3" --- - - - + diff --git a/src/_icons/zodiac-sagittarius.svg b/src/_icons/zodiac-sagittarius.svg index 723c6995b..d0014d11f 100644 --- a/src/_icons/zodiac-sagittarius.svg +++ b/src/_icons/zodiac-sagittarius.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecb4" --- - - - + diff --git a/src/_icons/zodiac-scorpio.svg b/src/_icons/zodiac-scorpio.svg index 442fb2cf3..ede8698ca 100644 --- a/src/_icons/zodiac-scorpio.svg +++ b/src/_icons/zodiac-scorpio.svg @@ -5,7 +5,5 @@ version: "1.17" unicode: "ecb5" --- - - - + diff --git a/src/_icons/zodiac-taurus.svg b/src/_icons/zodiac-taurus.svg index 39591933b..e54ac757e 100644 --- a/src/_icons/zodiac-taurus.svg +++ b/src/_icons/zodiac-taurus.svg @@ -5,6 +5,5 @@ version: "1.17" unicode: "ecb6" --- - - + diff --git a/src/_icons/zodiac-virgo.svg b/src/_icons/zodiac-virgo.svg index e76547ba9..4c7851fc7 100644 --- a/src/_icons/zodiac-virgo.svg +++ b/src/_icons/zodiac-virgo.svg @@ -5,8 +5,5 @@ version: "1.17" unicode: "ecb7" --- - - - - + diff --git a/src/_icons/zoom-cancel.svg b/src/_icons/zoom-cancel.svg index 14eb06acd..102c5ec67 100644 --- a/src/_icons/zoom-cancel.svg +++ b/src/_icons/zoom-cancel.svg @@ -5,8 +5,5 @@ version: "1.11" unicode: "ec4d" --- - - - - + diff --git a/src/_icons/zoom-check.svg b/src/_icons/zoom-check.svg index 9c2f7795c..f65f97c73 100644 --- a/src/_icons/zoom-check.svg +++ b/src/_icons/zoom-check.svg @@ -5,7 +5,5 @@ version: "1.39" unicode: "ef09" --- - - - + diff --git a/src/_icons/zoom-code.svg b/src/_icons/zoom-code.svg index 619f7c107..f4263ef07 100644 --- a/src/_icons/zoom-code.svg +++ b/src/_icons/zoom-code.svg @@ -5,8 +5,5 @@ version: "1.59" unicode: "f07f" --- - - - - + diff --git a/src/_icons/zoom-exclamation.svg b/src/_icons/zoom-exclamation.svg index 7bda2b6dc..1d240edb2 100644 --- a/src/_icons/zoom-exclamation.svg +++ b/src/_icons/zoom-exclamation.svg @@ -5,8 +5,5 @@ version: "1.59" unicode: "f080" --- - - - - + diff --git a/src/_icons/zoom-in-area.svg b/src/_icons/zoom-in-area.svg index 3da601bd5..082320c1e 100644 --- a/src/_icons/zoom-in-area.svg +++ b/src/_icons/zoom-in-area.svg @@ -5,13 +5,5 @@ version: "1.68" unicode: "f1dc" --- - - - - - - - - - + diff --git a/src/_icons/zoom-in.svg b/src/_icons/zoom-in.svg index ddf3503bb..3508ed30e 100644 --- a/src/_icons/zoom-in.svg +++ b/src/_icons/zoom-in.svg @@ -5,8 +5,5 @@ version: "1.0" unicode: "eb56" --- - - - - + diff --git a/src/_icons/zoom-money.svg b/src/_icons/zoom-money.svg index 42dec919e..3bebe7018 100644 --- a/src/_icons/zoom-money.svg +++ b/src/_icons/zoom-money.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ef0a" --- - - - - + diff --git a/src/_icons/zoom-out-area.svg b/src/_icons/zoom-out-area.svg index 8cb91ae23..ae056253d 100644 --- a/src/_icons/zoom-out-area.svg +++ b/src/_icons/zoom-out-area.svg @@ -5,12 +5,5 @@ version: "1.68" unicode: "f1dd" --- - - - - - - - - + diff --git a/src/_icons/zoom-out.svg b/src/_icons/zoom-out.svg index b98a91327..074e0e7cd 100644 --- a/src/_icons/zoom-out.svg +++ b/src/_icons/zoom-out.svg @@ -5,7 +5,5 @@ version: "1.0" unicode: "eb57" --- - - - + diff --git a/src/_icons/zoom-pan.svg b/src/_icons/zoom-pan.svg index ada193d7d..b5ffe994a 100644 --- a/src/_icons/zoom-pan.svg +++ b/src/_icons/zoom-pan.svg @@ -5,10 +5,5 @@ version: "1.68" unicode: "f1de" --- - - - - - - + diff --git a/src/_icons/zoom-question.svg b/src/_icons/zoom-question.svg index 04c6058c0..18f7dc101 100644 --- a/src/_icons/zoom-question.svg +++ b/src/_icons/zoom-question.svg @@ -5,8 +5,5 @@ version: "1.37" unicode: "edeb" --- - - - - + diff --git a/src/_icons/zoom-replace.svg b/src/_icons/zoom-replace.svg index 4e91f175b..98a6a3842 100644 --- a/src/_icons/zoom-replace.svg +++ b/src/_icons/zoom-replace.svg @@ -5,9 +5,5 @@ version: "1.79" unicode: "f2a7" --- - - - - - + diff --git a/src/_icons/zoom-reset.svg b/src/_icons/zoom-reset.svg index 813cdfe94..fb6cc5658 100644 --- a/src/_icons/zoom-reset.svg +++ b/src/_icons/zoom-reset.svg @@ -5,7 +5,5 @@ version: "1.78" unicode: "f295" --- - - - + diff --git a/src/_icons/zzz-off.svg b/src/_icons/zzz-off.svg index 9e14a5fbe..387b96b77 100644 --- a/src/_icons/zzz-off.svg +++ b/src/_icons/zzz-off.svg @@ -4,7 +4,5 @@ unicode: "f440" version: "1.94" --- - - - + diff --git a/src/_icons/zzz.svg b/src/_icons/zzz.svg index 37c945679..0480ec340 100644 --- a/src/_icons/zzz.svg +++ b/src/_icons/zzz.svg @@ -4,6 +4,5 @@ version: "1.72" unicode: "f228" --- - - + diff --git a/tabler-sprite-nostroke.svg b/tabler-sprite-nostroke.svg deleted file mode 100644 index 1883f4e2f..000000000 --- a/tabler-sprite-nostroke.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/tabler-sprite.svg b/tabler-sprite.svg deleted file mode 100644 index c4c01cd70..000000000 --- a/tabler-sprite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/tags.json b/tags.json index 9b3def877..e9c4e949e 100644 --- a/tags.json +++ b/tags.json @@ -2029,6 +2029,13 @@ "version": "1.106", "unicode": "f55a" }, + "badge-filled": { + "name": "badge-filled", + "category": "Filled", + "tags": ["badge", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f667" + }, "badge-hd": { "name": "badge-hd", "category": "", @@ -2372,6 +2379,13 @@ "version": "1.42", "unicode": "ef3c" }, + "battery-filled": { + "name": "battery-filled", + "category": "Filled", + "tags": ["battery", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f668" + }, "battery-off": { "name": "battery-off", "category": "Devices", @@ -2428,6 +2442,13 @@ "version": "1.48", "unicode": "efa1" }, + "bell-filled": { + "name": "bell-filled", + "category": "Filled", + "tags": ["bell", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f669" + }, "bell-minus": { "name": "bell-minus", "category": "System", @@ -5515,10 +5536,10 @@ "version": "1.26", "unicode": "ed26" }, - "building-pavilon": { - "name": "building-pavilon", + "building-pavilion": { + "name": "building-pavilion", "category": "Buildings", - "tags": ["building", "pavilon", "place", "party", "residence", "ornamentation", "icon", "stroke", "outline"], + "tags": ["building", "pavilion", "place", "party", "residence", "ornamentation", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ebf7" }, @@ -5571,6 +5592,13 @@ "version": "1.1", "unicode": "ea4f" }, + "bulb-filled": { + "name": "bulb-filled", + "category": "Filled", + "tags": ["bulb", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66a" + }, "bulb-off": { "name": "bulb-off", "category": "", @@ -6145,6 +6173,20 @@ "version": "1.39", "unicode": "ee28" }, + "chart-area-filled": { + "name": "chart-area-filled", + "category": "Filled", + "tags": ["chart", "area", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66b" + }, + "chart-area-line-filled": { + "name": "chart-area-line-filled", + "category": "Filled", + "tags": ["chart", "area", "line", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66c" + }, "chart-area-line": { "name": "chart-area-line", "category": "Charts", @@ -6187,6 +6229,13 @@ "version": "1.0", "unicode": "ea59" }, + "chart-bubble-filled": { + "name": "chart-bubble-filled", + "category": "Filled", + "tags": ["chart", "bubble", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66d" + }, "chart-bubble": { "name": "chart-bubble", "category": "Charts", @@ -6194,6 +6243,13 @@ "version": "1.13", "unicode": "ec75" }, + "chart-candle-filled": { + "name": "chart-candle-filled", + "category": "Filled", + "tags": ["chart", "candle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66e" + }, "chart-candle": { "name": "chart-candle", "category": "Charts", @@ -6229,6 +6285,13 @@ "version": "1.39", "unicode": "ee2e" }, + "chart-donut-filled": { + "name": "chart-donut-filled", + "category": "Filled", + "tags": ["chart", "donut", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f66f" + }, "chart-donut": { "name": "chart-donut", "category": "Charts", @@ -6306,6 +6369,13 @@ "version": "1.39", "unicode": "ee33" }, + "chart-pie-filled": { + "name": "chart-pie-filled", + "category": "Filled", + "tags": ["chart", "pie", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f670" + }, "chart-pie-off": { "name": "chart-pie-off", "category": "Charts", @@ -6698,6 +6768,13 @@ "version": "1.26", "unicode": "ed28" }, + "circle-filled": { + "name": "circle-filled", + "category": "Filled", + "tags": ["circle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f671" + }, "circle-half-2": { "name": "circle-half-2", "category": "Design", @@ -7041,6 +7118,13 @@ "version": "1.0", "unicode": "ea6b" }, + "circles-filled": { + "name": "circles-filled", + "category": "Filled", + "tags": ["circles", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f672" + }, "circles-relation": { "name": "circles-relation", "category": "", @@ -7468,6 +7552,13 @@ "version": "1.0", "unicode": "ea71" }, + "cloud-filled": { + "name": "cloud-filled", + "category": "Filled", + "tags": ["cloud", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f673" + }, "cloud-fog": { "name": "cloud-fog", "category": "Weather", @@ -7545,6 +7636,13 @@ "version": "1.69", "unicode": "f1ea" }, + "clubs-filled": { + "name": "clubs-filled", + "category": "Filled", + "tags": ["clubs", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f674" + }, "clubs": { "name": "clubs", "category": "Shapes", @@ -8189,6 +8287,13 @@ "version": "1.0", "unicode": "ea85" }, + "cross-filled": { + "name": "cross-filled", + "category": "Filled", + "tags": ["cross", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f675" + }, "cross-off": { "name": "cross-off", "category": "Symbols", @@ -9239,6 +9344,13 @@ "version": "1.2", "unicode": "eb65" }, + "diamonds-filled": { + "name": "diamonds-filled", + "category": "Filled", + "tags": ["diamonds", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f676" + }, "diamonds": { "name": "diamonds", "category": "Shapes", @@ -9591,10 +9703,10 @@ }, "droplet-filled": { "name": "droplet-filled", - "category": "Design", - "tags": ["droplet", "filled", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], - "version": "1.39", - "unicode": "ee80" + "category": "Filled", + "tags": ["droplet", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f677" }, "droplet-half-2": { "name": "droplet-half-2", @@ -9603,6 +9715,13 @@ "version": "1.39", "unicode": "ee81" }, + "droplet-half-filled": { + "name": "droplet-half-filled", + "category": "Design", + "tags": ["droplet", "half", "filled", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], + "version": "1.39", + "unicode": "ee80" + }, "droplet-half": { "name": "droplet-half", "category": "Design", @@ -9722,6 +9841,13 @@ "version": "1.82", "unicode": "f2d6" }, + "egg-filled": { + "name": "egg-filled", + "category": "Filled", + "tags": ["egg", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f678" + }, "egg-fried": { "name": "egg-fried", "category": "Food", @@ -9974,6 +10100,13 @@ "version": "1.39", "unicode": "ee88" }, + "eye-filled": { + "name": "eye-filled", + "category": "Filled", + "tags": ["eye", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f679" + }, "eye-off": { "name": "eye-off", "category": "Health", @@ -10646,6 +10779,13 @@ "version": "1.39", "unicode": "ee8d" }, + "flag-filled": { + "name": "flag-filled", + "category": "Filled", + "tags": ["flag", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67a" + }, "flag-off": { "name": "flag-off", "category": "Map", @@ -11444,6 +11584,13 @@ "version": "1.39", "unicode": "ee93" }, + "guitar-pick-filled": { + "name": "guitar-pick-filled", + "category": "Filled", + "tags": ["guitar", "pick", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67b" + }, "guitar-pick": { "name": "guitar-pick", "category": "", @@ -11696,6 +11843,13 @@ "version": "1.18", "unicode": "ecba" }, + "heart-filled": { + "name": "heart-filled", + "category": "Filled", + "tags": ["heart", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67c" + }, "heart-handshake": { "name": "heart-handshake", "category": "", @@ -11808,6 +11962,13 @@ "version": "1.98", "unicode": "f4c7" }, + "hexagon-filled": { + "name": "hexagon-filled", + "category": "Filled", + "tags": ["hexagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67d" + }, "hexagon-letter-a": { "name": "hexagon-letter-a", "category": "Letters", @@ -12676,9 +12837,16 @@ "version": "1.108", "unicode": "f581" }, + "jewish-star-filled": { + "name": "jewish-star-filled", + "category": "Filled", + "tags": ["jewish", "star", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67e" + }, "jewish-star": { "name": "jewish-star", - "category": "", + "category": "Symbols", "tags": ["jewish", "star", "judaism", "israel", "religion", "bright", "icon", "stroke", "outline"], "version": "1.94", "unicode": "f3ff" @@ -13593,6 +13761,13 @@ "version": "1.81", "unicode": "f2c4" }, + "location-filled": { + "name": "location-filled", + "category": "Filled", + "tags": ["location", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f67f" + }, "location-off": { "name": "location-off", "category": "Map", @@ -13880,6 +14055,13 @@ "version": "1.66", "unicode": "f15c" }, + "map-pin-filled": { + "name": "map-pin-filled", + "category": "Filled", + "tags": ["map", "pin", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f680" + }, "map-pin-off": { "name": "map-pin-off", "category": "Map", @@ -14258,6 +14440,13 @@ "version": "1.13", "unicode": "ec78" }, + "medical-cross-filled": { + "name": "medical-cross-filled", + "category": "Filled", + "tags": ["medical", "cross", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f681" + }, "medical-cross-off": { "name": "medical-cross-off", "category": "Map", @@ -14324,7 +14513,7 @@ "message-2-off": { "name": "message-2-off", "category": "Communication", - "tags": ["message", "2", "off", "comment", "chat", "reply", "icon", "stroke", "outline"], + "tags": ["message", "2", "off", "comment", "chat", "reply", "faq", "icon", "stroke", "outline"], "version": "1.94", "unicode": "f40b" }, @@ -14349,6 +14538,13 @@ "version": "1.91", "unicode": "f38a" }, + "message-circle-2-filled": { + "name": "message-circle-2-filled", + "category": "Filled", + "tags": ["message", "circle", "2", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f682" + }, "message-circle-2": { "name": "message-circle-2", "category": "Communication", @@ -14401,7 +14597,7 @@ "message-off": { "name": "message-off", "category": "Communication", - "tags": ["message", "off", "comment", "chat", "reply", "communication", "conversation", "icon", "stroke", "outline"], + "tags": ["message", "off", "comment", "chat", "reply", "communication", "conversation", "faq", "icon", "stroke", "outline"], "version": "1.28", "unicode": "ed41" }, @@ -14436,7 +14632,7 @@ "messages-off": { "name": "messages-off", "category": "Communication", - "tags": ["messages", "off", "chat", "reply", "comment", "conversation", "communication", "icon", "stroke", "outline"], + "tags": ["messages", "off", "chat", "reply", "comment", "conversation", "communication", "faq", "icon", "stroke", "outline"], "version": "1.28", "unicode": "ed42" }, @@ -14461,6 +14657,13 @@ "version": "1.70", "unicode": "f1fd" }, + "mickey-filled": { + "name": "mickey-filled", + "category": "Filled", + "tags": ["mickey", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f683" + }, "mickey": { "name": "mickey", "category": "", @@ -14853,6 +15056,13 @@ "version": "1.21", "unicode": "ece6" }, + "moon-filled": { + "name": "moon-filled", + "category": "Filled", + "tags": ["moon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f684" + }, "moon-off": { "name": "moon-off", "category": "Weather", @@ -15014,6 +15224,13 @@ "version": "1.0", "unicode": "eafc" }, + "navigation-filled": { + "name": "navigation-filled", + "category": "Filled", + "tags": ["navigation", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f685" + }, "navigation-off": { "name": "navigation-off", "category": "Map", @@ -15266,6 +15483,13 @@ "version": "1.44", "unicode": "ef65" }, + "octagon-filled": { + "name": "octagon-filled", + "category": "Filled", + "tags": ["octagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f686" + }, "octagon-off": { "name": "octagon-off", "category": "Shapes", @@ -15329,6 +15553,20 @@ "version": "1.6", "unicode": "ebd7" }, + "oval-filled": { + "name": "oval-filled", + "category": "Filled", + "tags": ["oval", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f687" + }, + "oval-vertical-filled": { + "name": "oval-vertical-filled", + "category": "Filled", + "tags": ["oval", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f688" + }, "oval-vertical": { "name": "oval-vertical", "category": "Shapes", @@ -15525,6 +15763,13 @@ "version": "1.98", "unicode": "f4ca" }, + "paw-filled": { + "name": "paw-filled", + "category": "Filled", + "tags": ["paw", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f689" + }, "paw-off": { "name": "paw-off", "category": "", @@ -15574,6 +15819,13 @@ "version": "1.1", "unicode": "eb04" }, + "pennant-2-filled": { + "name": "pennant-2-filled", + "category": "Filled", + "tags": ["pennant", "2", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68a" + }, "pennant-2": { "name": "pennant-2", "category": "Map", @@ -15581,6 +15833,13 @@ "version": "1.58", "unicode": "f06a" }, + "pennant-filled": { + "name": "pennant-filled", + "category": "Filled", + "tags": ["pennant", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68b" + }, "pennant-off": { "name": "pennant-off", "category": "Map", @@ -15595,6 +15854,13 @@ "version": "1.33", "unicode": "ed7d" }, + "pentagon-filled": { + "name": "pentagon-filled", + "category": "Filled", + "tags": ["pentagon", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68c" + }, "pentagon-off": { "name": "pentagon-off", "category": "Shapes", @@ -15910,6 +16176,13 @@ "version": "1.44", "unicode": "ef66" }, + "pin-filled": { + "name": "pin-filled", + "category": "Filled", + "tags": ["pin", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68d" + }, "pin": { "name": "pin", "category": "Map", @@ -15924,6 +16197,13 @@ "version": "1.91", "unicode": "f38d" }, + "pinned-filled": { + "name": "pinned-filled", + "category": "Filled", + "tags": ["pinned", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68e" + }, "pinned-off": { "name": "pinned-off", "category": "Map", @@ -16057,6 +16337,13 @@ "version": "1.39", "unicode": "eebf" }, + "player-eject-filled": { + "name": "player-eject-filled", + "category": "Filled", + "tags": ["player", "eject", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f68f" + }, "player-eject": { "name": "player-eject", "category": "Media", @@ -16064,6 +16351,13 @@ "version": "1.49", "unicode": "efbc" }, + "player-pause-filled": { + "name": "player-pause-filled", + "category": "Filled", + "tags": ["player", "pause", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f690" + }, "player-pause": { "name": "player-pause", "category": "Media", @@ -16071,6 +16365,13 @@ "version": "1.28", "unicode": "ed45" }, + "player-play-filled": { + "name": "player-play-filled", + "category": "Filled", + "tags": ["player", "play", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f691" + }, "player-play": { "name": "player-play", "category": "Media", @@ -16078,6 +16379,13 @@ "version": "1.28", "unicode": "ed46" }, + "player-record-filled": { + "name": "player-record-filled", + "category": "Filled", + "tags": ["player", "record", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f692" + }, "player-record": { "name": "player-record", "category": "Media", @@ -16085,6 +16393,13 @@ "version": "1.28", "unicode": "ed47" }, + "player-skip-back-filled": { + "name": "player-skip-back-filled", + "category": "Filled", + "tags": ["player", "skip", "back", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f693" + }, "player-skip-back": { "name": "player-skip-back", "category": "Media", @@ -16092,6 +16407,13 @@ "version": "1.28", "unicode": "ed48" }, + "player-skip-forward-filled": { + "name": "player-skip-forward-filled", + "category": "Filled", + "tags": ["player", "skip", "forward", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f694" + }, "player-skip-forward": { "name": "player-skip-forward", "category": "Media", @@ -16099,6 +16421,13 @@ "version": "1.28", "unicode": "ed49" }, + "player-stop-filled": { + "name": "player-stop-filled", + "category": "Filled", + "tags": ["player", "stop", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f695" + }, "player-stop": { "name": "player-stop", "category": "Media", @@ -16106,6 +16435,13 @@ "version": "1.28", "unicode": "ed4a" }, + "player-track-next-filled": { + "name": "player-track-next-filled", + "category": "Filled", + "tags": ["player", "track", "next", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f696" + }, "player-track-next": { "name": "player-track-next", "category": "Media", @@ -16113,6 +16449,13 @@ "version": "1.28", "unicode": "ed4b" }, + "player-track-prev-filled": { + "name": "player-track-prev-filled", + "category": "Filled", + "tags": ["player", "track", "prev", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f697" + }, "player-track-prev": { "name": "player-track-prev", "category": "Media", @@ -16239,6 +16582,13 @@ "version": "1.68", "unicode": "f1d8" }, + "point-filled": { + "name": "point-filled", + "category": "Filled", + "tags": ["point", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f698" + }, "point-off": { "name": "point-off", "category": "", @@ -16428,6 +16778,13 @@ "version": "1.46", "unicode": "ef83" }, + "puzzle-filled": { + "name": "puzzle-filled", + "category": "Filled", + "tags": ["puzzle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f699" + }, "puzzle-off": { "name": "puzzle-off", "category": "", @@ -16694,6 +17051,20 @@ "version": "1.1", "unicode": "eb12" }, + "rectangle-filled": { + "name": "rectangle-filled", + "category": "Filled", + "tags": ["rectangle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69a" + }, + "rectangle-vertical-filled": { + "name": "rectangle-vertical-filled", + "category": "Filled", + "tags": ["rectangle", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69b" + }, "rectangle-vertical": { "name": "rectangle-vertical", "category": "Shapes", @@ -16820,6 +17191,13 @@ "version": "1.2", "unicode": "eb72" }, + "replace-filled": { + "name": "replace-filled", + "category": "Filled", + "tags": ["replace", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69c" + }, "replace-off": { "name": "replace-off", "category": "", @@ -16974,6 +17352,13 @@ "version": "1.61", "unicode": "f0a2" }, + "rosette-filled": { + "name": "rosette-filled", + "category": "Filled", + "tags": ["rosette", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69d" + }, "rosette-number-0": { "name": "rosette-number-0", "category": "Numbers", @@ -17646,6 +18031,13 @@ "version": "1.39", "unicode": "eed6" }, + "settings-filled": { + "name": "settings-filled", + "category": "Filled", + "tags": ["settings", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69e" + }, "settings-off": { "name": "settings-off", "category": "System", @@ -17737,6 +18129,13 @@ "version": "1.47", "unicode": "ef9b" }, + "shield-filled": { + "name": "shield-filled", + "category": "Filled", + "tags": ["shield", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f69f" + }, "shield-half-filled": { "name": "shield-half-filled", "category": "System", @@ -17793,6 +18192,13 @@ "version": "1.14", "unicode": "ec84" }, + "shirt-filled": { + "name": "shirt-filled", + "category": "Filled", + "tags": ["shirt", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a0" + }, "shirt-off": { "name": "shirt-off", "category": "", @@ -17884,6 +18290,13 @@ "version": "1.39", "unicode": "eedf" }, + "sign-left-filled": { + "name": "sign-left-filled", + "category": "Filled", + "tags": ["sign", "left", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a1" + }, "sign-left": { "name": "sign-left", "category": "", @@ -17891,6 +18304,13 @@ "version": "1.58", "unicode": "f06b" }, + "sign-right-filled": { + "name": "sign-right-filled", + "category": "Filled", + "tags": ["sign", "right", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a2" + }, "sign-right": { "name": "sign-right", "category": "", @@ -18241,6 +18661,13 @@ "version": "1.43", "unicode": "ef55" }, + "spade-filled": { + "name": "spade-filled", + "category": "Filled", + "tags": ["spade", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a3" + }, "spade": { "name": "spade", "category": "Shapes", @@ -18801,6 +19228,13 @@ "version": "1.39", "unicode": "eef1" }, + "square-rotated-filled": { + "name": "square-rotated-filled", + "category": "Filled", + "tags": ["square", "rotated", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a4" + }, "square-rotated-forbid-2": { "name": "square-rotated-forbid-2", "category": "", @@ -18920,6 +19354,13 @@ "version": "1.118", "unicode": "f652" }, + "square-rounded-filled": { + "name": "square-rounded-filled", + "category": "Filled", + "tags": ["square", "rounded", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a5" + }, "square-rounded-letter-a": { "name": "square-rounded-letter-a", "category": "Letters", @@ -19298,6 +19739,20 @@ "version": "1.17", "unicode": "eca6" }, + "star-filled": { + "name": "star-filled", + "category": "Filled", + "tags": ["star", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a6" + }, + "star-half-filled": { + "name": "star-half-filled", + "category": "Filled", + "tags": ["star", "half", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a7" + }, "star-half": { "name": "star-half", "category": "System", @@ -19319,6 +19774,13 @@ "version": "1.0", "unicode": "eb2e" }, + "stars-filled": { + "name": "stars-filled", + "category": "Filled", + "tags": ["stars", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a8" + }, "stars-off": { "name": "stars-off", "category": "System", @@ -19466,6 +19928,13 @@ "version": "1.2", "unicode": "eb73" }, + "sun-filled": { + "name": "sun-filled", + "category": "Filled", + "tags": ["sun", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6a9" + }, "sun-high": { "name": "sun-high", "category": "Weather", @@ -20005,6 +20474,13 @@ "version": "1.44", "unicode": "ef67" }, + "thumb-down-filled": { + "name": "thumb-down-filled", + "category": "Filled", + "tags": ["thumb", "down", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6aa" + }, "thumb-down-off": { "name": "thumb-down-off", "category": "System", @@ -20019,6 +20495,13 @@ "version": "1.0", "unicode": "eb3b" }, + "thumb-up-filled": { + "name": "thumb-up-filled", + "category": "Filled", + "tags": ["thumb", "up", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ab" + }, "thumb-up-off": { "name": "thumb-up-off", "category": "System", @@ -20418,6 +20901,13 @@ "version": "1.41", "unicode": "ef30" }, + "transform-filled": { + "name": "transform-filled", + "category": "Filled", + "tags": ["transform", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ac" + }, "transform": { "name": "transform", "category": "", @@ -20537,6 +21027,20 @@ "version": "1.0", "unicode": "eb43" }, + "triangle-filled": { + "name": "triangle-filled", + "category": "Filled", + "tags": ["triangle", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ad" + }, + "triangle-inverted-filled": { + "name": "triangle-inverted-filled", + "category": "Filled", + "tags": ["triangle", "inverted", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6ae" + }, "triangle-inverted": { "name": "triangle-inverted", "category": "", @@ -20586,6 +21090,13 @@ "version": "1.98", "unicode": "f4cc" }, + "trophy-filled": { + "name": "trophy-filled", + "category": "Filled", + "tags": ["trophy", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6af" + }, "trophy-off": { "name": "trophy-off", "category": "", @@ -20677,6 +21188,13 @@ "version": "1.76", "unicode": "f26f" }, + "umbrella-filled": { + "name": "umbrella-filled", + "category": "Filled", + "tags": ["umbrella", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b0" + }, "umbrella-off": { "name": "umbrella-off", "category": "", @@ -20943,6 +21461,13 @@ "version": "1.14", "unicode": "ec86" }, + "versions-filled": { + "name": "versions-filled", + "category": "Filled", + "tags": ["versions", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b1" + }, "versions-off": { "name": "versions-off", "category": "", @@ -21475,6 +22000,13 @@ "version": "1.10", "unicode": "ec34" }, + "windmill-filled": { + "name": "windmill-filled", + "category": "Filled", + "tags": ["windmill", "filled", "icon", "stroke", "outline"], + "version": "2.0.0", + "unicode": "f6b2" + }, "windmill-off": { "name": "windmill-off", "category": "", diff --git a/test/test-preact/.gitignore b/test/test-preact/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/test/test-preact/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/test/test-preact/index.html b/test/test-preact/index.html new file mode 100644 index 000000000..ed0f5bbd7 --- /dev/null +++ b/test/test-preact/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + Preact + TS + + +
+ + + diff --git a/test/test-preact/package.json b/test/test-preact/package.json new file mode 100644 index 000000000..438b18356 --- /dev/null +++ b/test/test-preact/package.json @@ -0,0 +1,24 @@ +{ + "name": "test-preact", + "private": true, + "version": "2.0.0-beta.2", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "@tabler/icons-preact": "2.0.0-beta.2", + "preact": "^10.11.3" + }, + "devDependencies": { + "@babel/plugin-transform-react-jsx": "^7.20.7", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@preact/preset-vite": "^2.4.0", + "babel-plugin-transform-hook-names": "^1.0.2", + "typescript": "^4.9.3", + "vite": "^4.0.0" + } +} diff --git a/test/test-preact/public/vite.svg b/test/test-preact/public/vite.svg new file mode 100644 index 000000000..e7b8dfb1b --- /dev/null +++ b/test/test-preact/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/test/test-preact/src/app.css b/test/test-preact/src/app.css new file mode 100644 index 000000000..088ed3ace --- /dev/null +++ b/test/test-preact/src/app.css @@ -0,0 +1,25 @@ +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.preact:hover { + filter: drop-shadow(0 0 2em #673ab8aa); +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/test/test-preact/src/app.tsx b/test/test-preact/src/app.tsx new file mode 100644 index 000000000..fa48021b0 --- /dev/null +++ b/test/test-preact/src/app.tsx @@ -0,0 +1,18 @@ +import { useState } from 'preact/hooks' +import './app.css' + +import { IconHeart, IconHeartFilled, IconMoodSmile } from '@tabler/icons-preact' + + +export function App() { + const [active, setActive] = useState(false) + + return ( + + ) +} diff --git a/test/test-preact/src/assets/preact.svg b/test/test-preact/src/assets/preact.svg new file mode 100644 index 000000000..908f17def --- /dev/null +++ b/test/test-preact/src/assets/preact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/test/test-preact/src/index.css b/test/test-preact/src/index.css new file mode 100644 index 000000000..917888c1d --- /dev/null +++ b/test/test-preact/src/index.css @@ -0,0 +1,70 @@ +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/test/test-preact/src/main.tsx b/test/test-preact/src/main.tsx new file mode 100644 index 000000000..e0ce3e998 --- /dev/null +++ b/test/test-preact/src/main.tsx @@ -0,0 +1,5 @@ +import { render } from 'preact' +import { App } from './app' +import './index.css' + +render(, document.getElementById('app') as HTMLElement) diff --git a/test/test-preact/src/vite-env.d.ts b/test/test-preact/src/vite-env.d.ts new file mode 100644 index 000000000..11f02fe2a --- /dev/null +++ b/test/test-preact/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/test/test-preact/tsconfig.json b/test/test-preact/tsconfig.json new file mode 100644 index 000000000..9c1b1e0aa --- /dev/null +++ b/test/test-preact/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "jsxImportSource": "preact" + }, + "include": ["src"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/test/test-preact/tsconfig.node.json b/test/test-preact/tsconfig.node.json new file mode 100644 index 000000000..9d31e2aed --- /dev/null +++ b/test/test-preact/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/test/test-preact/vite.config.ts b/test/test-preact/vite.config.ts new file mode 100644 index 000000000..29b326faf --- /dev/null +++ b/test/test-preact/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import preact from '@preact/preset-vite' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [preact()], +}) diff --git a/test/test-react/.gitignore b/test/test-react/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/test/test-react/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/test/test-react/index.html b/test/test-react/index.html new file mode 100644 index 000000000..e0d1c8408 --- /dev/null +++ b/test/test-react/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + React + TS + + +
+ + + diff --git a/test/test-react/package.json b/test/test-react/package.json new file mode 100644 index 000000000..4326ef30b --- /dev/null +++ b/test/test-react/package.json @@ -0,0 +1,24 @@ +{ + "name": "test-react", + "private": true, + "version": "2.0.0-beta.2", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "@tabler/icons-react": "2.0.0-beta.2", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/react": "^18.0.26", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^3.0.0", + "typescript": "^4.9.3", + "vite": "^4.0.0" + } +} diff --git a/test/test-react/src/App.css b/test/test-react/src/App.css new file mode 100644 index 000000000..4014cd73b --- /dev/null +++ b/test/test-react/src/App.css @@ -0,0 +1,7 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + diff --git a/test/test-react/src/App.tsx b/test/test-react/src/App.tsx new file mode 100644 index 000000000..ea66b7cf9 --- /dev/null +++ b/test/test-react/src/App.tsx @@ -0,0 +1,18 @@ +import { useState } from 'react' +import './App.css' +import { IconHeart, IconHeartFilled, IconMoodSmile } from '@tabler/icons-react' + +function App() { + const [active, setActive] = useState(false) + + return ( + + ) +} + +export default App diff --git a/test/test-react/src/index.css b/test/test-react/src/index.css new file mode 100644 index 000000000..917888c1d --- /dev/null +++ b/test/test-react/src/index.css @@ -0,0 +1,70 @@ +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/test/test-react/src/main.tsx b/test/test-react/src/main.tsx new file mode 100644 index 000000000..791f139e2 --- /dev/null +++ b/test/test-react/src/main.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App' +import './index.css' + +ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( + + + , +) diff --git a/test/test-react/src/vite-env.d.ts b/test/test-react/src/vite-env.d.ts new file mode 100644 index 000000000..11f02fe2a --- /dev/null +++ b/test/test-react/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/test/test-react/tsconfig.json b/test/test-react/tsconfig.json new file mode 100644 index 000000000..3d0a51a86 --- /dev/null +++ b/test/test-react/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": ["src"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/test/test-react/tsconfig.node.json b/test/test-react/tsconfig.node.json new file mode 100644 index 000000000..9d31e2aed --- /dev/null +++ b/test/test-react/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/test/test-react/vite.config.ts b/test/test-react/vite.config.ts new file mode 100644 index 000000000..5a33944a9 --- /dev/null +++ b/test/test-react/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/test/test-svelte/.gitignore b/test/test-svelte/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/test/test-svelte/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/test/test-svelte/.vscode/extensions.json b/test/test-svelte/.vscode/extensions.json new file mode 100644 index 000000000..bdef82015 --- /dev/null +++ b/test/test-svelte/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["svelte.svelte-vscode"] +} diff --git a/test/test-svelte/README.md b/test/test-svelte/README.md new file mode 100644 index 000000000..e6cd94fce --- /dev/null +++ b/test/test-svelte/README.md @@ -0,0 +1,47 @@ +# Svelte + TS + Vite + +This template should help get you started developing with Svelte and TypeScript in Vite. + +## Recommended IDE Setup + +[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). + +## Need an official Svelte framework? + +Check out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also powered by Vite. Deploy anywhere with its serverless-first approach and adapt to various platforms, with out of the box support for TypeScript, SCSS, and Less, and easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more. + +## Technical considerations + +**Why use this over SvelteKit?** + +- It brings its own routing solution which might not be preferable for some users. +- It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app. + +This template contains as little as possible to get started with Vite + TypeScript + Svelte, while taking into account the developer experience with regards to HMR and intellisense. It demonstrates capabilities on par with the other `create-vite` templates and is a good starting point for beginners dipping their toes into a Vite + Svelte project. + +Should you later need the extended capabilities and extensibility provided by SvelteKit, the template has been structured similarly to SvelteKit so that it is easy to migrate. + +**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?** + +Setting `compilerOptions.types` shuts out all other types not explicitly listed in the configuration. Using triple-slash references keeps the default TypeScript setting of accepting type information from the entire workspace, while also adding `svelte` and `vite/client` type information. + +**Why include `.vscode/extensions.json`?** + +Other templates indirectly recommend extensions via the README, but this file allows VS Code to prompt the user to install the recommended extension upon opening the project. + +**Why enable `allowJs` in the TS template?** + +While `allowJs: false` would indeed prevent the use of `.js` files in the project, it does not prevent the use of JavaScript syntax in `.svelte` files. In addition, it would force `checkJs: false`, bringing the worst of both worlds: not being able to guarantee the entire codebase is TypeScript, and also having worse typechecking for the existing JavaScript. In addition, there are valid use cases in which a mixed codebase may be relevant. + +**Why is HMR not preserving my local component state?** + +HMR state preservation comes with a number of gotchas! It has been disabled by default in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often surprising behavior. You can read the details [here](https://github.com/rixo/svelte-hmr#svelte-hmr). + +If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR. + +```ts +// store.ts +// An extremely simple external store +import { writable } from 'svelte/store' +export default writable(0) +``` diff --git a/test/test-svelte/index.html b/test/test-svelte/index.html new file mode 100644 index 000000000..b5b125269 --- /dev/null +++ b/test/test-svelte/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + Svelte + TS + + +
+ + + diff --git a/test/test-svelte/package.json b/test/test-svelte/package.json new file mode 100644 index 000000000..d7d73c03a --- /dev/null +++ b/test/test-svelte/package.json @@ -0,0 +1,25 @@ +{ + "name": "test-svelte", + "private": true, + "version": "2.0.0-beta.2", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-check --tsconfig ./tsconfig.json", + "clean": "rm -rf dist" + }, + "dependencies": { + "@tabler/icons-svelte": "2.0.0-beta.2" + }, + "devDependencies": { + "@sveltejs/vite-plugin-svelte": "^2.0.0", + "@tsconfig/svelte": "^3.0.0", + "svelte": "^3.54.0", + "svelte-check": "^2.10.0", + "tslib": "^2.4.1", + "typescript": "^4.9.3", + "vite": "^4.0.0" + } +} diff --git a/test/test-svelte/src/App.svelte b/test/test-svelte/src/App.svelte new file mode 100644 index 000000000..6841d3b1d --- /dev/null +++ b/test/test-svelte/src/App.svelte @@ -0,0 +1,16 @@ + + +
+ + {#if active } + + {:else} + + {/if} + + +
+ diff --git a/test/test-svelte/src/app.css b/test/test-svelte/src/app.css new file mode 100644 index 000000000..bcc7233dd --- /dev/null +++ b/test/test-svelte/src/app.css @@ -0,0 +1,81 @@ +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +.card { + padding: 2em; +} + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/test/test-svelte/src/main.ts b/test/test-svelte/src/main.ts new file mode 100644 index 000000000..8a909a15a --- /dev/null +++ b/test/test-svelte/src/main.ts @@ -0,0 +1,8 @@ +import './app.css' +import App from './App.svelte' + +const app = new App({ + target: document.getElementById('app'), +}) + +export default app diff --git a/test/test-svelte/src/vite-env.d.ts b/test/test-svelte/src/vite-env.d.ts new file mode 100644 index 000000000..4078e7476 --- /dev/null +++ b/test/test-svelte/src/vite-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/test/test-svelte/svelte.config.js b/test/test-svelte/svelte.config.js new file mode 100644 index 000000000..b0683fd24 --- /dev/null +++ b/test/test-svelte/svelte.config.js @@ -0,0 +1,7 @@ +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte' + +export default { + // Consult https://svelte.dev/docs#compile-time-svelte-preprocess + // for more information about preprocessors + preprocess: vitePreprocess(), +} diff --git a/test/test-svelte/tsconfig.json b/test/test-svelte/tsconfig.json new file mode 100644 index 000000000..c4e1c5fe6 --- /dev/null +++ b/test/test-svelte/tsconfig.json @@ -0,0 +1,20 @@ +{ + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "resolveJsonModule": true, + /** + * Typecheck JS in `.svelte` and `.js` files by default. + * Disable checkJs if you'd like to use dynamic types in JS. + * Note that setting allowJs false does not prevent the use + * of JS in `.svelte` files. + */ + "allowJs": true, + "checkJs": true, + "isolatedModules": true + }, + "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/test/test-svelte/tsconfig.node.json b/test/test-svelte/tsconfig.node.json new file mode 100644 index 000000000..65dbdb96a --- /dev/null +++ b/test/test-svelte/tsconfig.node.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node" + }, + "include": ["vite.config.ts"] +} diff --git a/test/test-svelte/vite.config.ts b/test/test-svelte/vite.config.ts new file mode 100644 index 000000000..d70196943 --- /dev/null +++ b/test/test-svelte/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import { svelte } from '@sveltejs/vite-plugin-svelte' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [svelte()], +}) diff --git a/test/test-vue/.gitignore b/test/test-vue/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/test/test-vue/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/test/test-vue/.vscode/extensions.json b/test/test-vue/.vscode/extensions.json new file mode 100644 index 000000000..c0a6e5a48 --- /dev/null +++ b/test/test-vue/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] +} diff --git a/test/test-vue/README.md b/test/test-vue/README.md new file mode 100644 index 000000000..ef72fd524 --- /dev/null +++ b/test/test-vue/README.md @@ -0,0 +1,18 @@ +# Vue 3 + TypeScript + Vite + +This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 ` + + diff --git a/test/test-vue/package.json b/test/test-vue/package.json new file mode 100644 index 000000000..6d31b658a --- /dev/null +++ b/test/test-vue/package.json @@ -0,0 +1,22 @@ +{ + "name": "test-vue", + "private": true, + "version": "2.0.0-beta.2", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vue-tsc && vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "vue": "^3.2.45", + "@tabler/icons-vue": "2.0.0-beta.2" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.0.0", + "typescript": "^4.9.3", + "vite": "^4.0.0", + "vue-tsc": "^1.0.11" + } +} diff --git a/test/test-vue/public/vite.svg b/test/test-vue/public/vite.svg new file mode 100644 index 000000000..e7b8dfb1b --- /dev/null +++ b/test/test-vue/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/test/test-vue/src/App.vue b/test/test-vue/src/App.vue new file mode 100644 index 000000000..591088404 --- /dev/null +++ b/test/test-vue/src/App.vue @@ -0,0 +1,15 @@ + + + + diff --git a/test/test-vue/src/main.ts b/test/test-vue/src/main.ts new file mode 100644 index 000000000..2425c0f74 --- /dev/null +++ b/test/test-vue/src/main.ts @@ -0,0 +1,5 @@ +import { createApp } from 'vue' +import './style.css' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/test/test-vue/src/style.css b/test/test-vue/src/style.css new file mode 100644 index 000000000..0192f9aac --- /dev/null +++ b/test/test-vue/src/style.css @@ -0,0 +1,81 @@ +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/test/test-vue/src/vite-env.d.ts b/test/test-vue/src/vite-env.d.ts new file mode 100644 index 000000000..11f02fe2a --- /dev/null +++ b/test/test-vue/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/test/test-vue/tsconfig.json b/test/test-vue/tsconfig.json new file mode 100644 index 000000000..b557c4047 --- /dev/null +++ b/test/test-vue/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "Node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ESNext", "DOM"], + "skipLibCheck": true, + "noEmit": true + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/test/test-vue/tsconfig.node.json b/test/test-vue/tsconfig.node.json new file mode 100644 index 000000000..9d31e2aed --- /dev/null +++ b/test/test-vue/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/test/test-vue/vite.config.ts b/test/test-vue/vite.config.ts new file mode 100644 index 000000000..05c17402a --- /dev/null +++ b/test/test-vue/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [vue()], +}) diff --git a/turbo.json b/turbo.json new file mode 100644 index 000000000..bc6b29816 --- /dev/null +++ b/turbo.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://turbo.build/schema.json", + "pipeline": { + "build": { + "outputs": [ + "dist/**" + ], + "dependsOn": ["^build"] + }, + "lint": {}, + "dev": { + "cache": false, + "persistent": true + }, + "clean": { + "cache": false + }, + "test": { + "dependsOn": [] + } + } +}